blob: 0ef44aa116c78a3f0d8e9b0d7a200e2ab344fddf [file] [log] [blame]
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001/*
2 * Copyright (c) 1991, 1992 Paul Kranenburg <pk@cs.few.eur.nl>
3 * Copyright (c) 1993 Branko Lankester <branko@hacktic.nl>
4 * Copyright (c) 1993, 1994, 1995, 1996 Rick Sladkey <jrs@world.std.com>
Wichert Akkerman4dc8a2a1999-12-23 14:20:14 +00005 * Copyright (c) 1996-1999 Wichert Akkerman <wichert@cistron.nl>
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00006 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. The name of the author may not be used to endorse or promote products
17 * derived from this software without specific prior written permission.
18 *
19 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
20 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
21 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
22 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
23 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
24 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
28 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000029 */
30
31#include "defs.h"
Denys Vlasenko3454e4b2011-05-23 21:29:03 +020032#include <stdarg.h>
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000033#include <sys/param.h>
34#include <fcntl.h>
35#include <sys/resource.h>
36#include <sys/wait.h>
37#include <sys/stat.h>
38#include <pwd.h>
39#include <grp.h>
Roland McGrath70b08532004-04-09 00:25:21 +000040#include <dirent.h>
Denys Vlasenkof7db5dd2012-01-28 01:16:02 +010041#include <sys/utsname.h>
Dmitry V. Levin882478a2013-05-13 18:43:28 +000042#ifdef HAVE_PRCTL
43# include <sys/prctl.h>
44#endif
Denys Vlasenko84703742012-02-25 02:38:52 +010045#if defined(IA64)
Wichert Akkerman7b3346b2001-10-09 23:47:38 +000046# include <asm/ptrace_offsets.h>
47#endif
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +010048/* In some libc, these aren't declared. Do it ourself: */
Denys Vlasenko96d5a762008-12-29 19:13:27 +000049extern char **environ;
Denys Vlasenko418d66a2009-01-17 01:52:54 +000050extern int optind;
51extern char *optarg;
Denys Vlasenko96d5a762008-12-29 19:13:27 +000052
Luca Clementi327064b2013-07-23 00:11:35 -070053#ifdef USE_LIBUNWIND
54/* if this is true do the stack trace for every system call */
55bool stack_trace_enabled = false;
56#endif
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +010057
58#if defined __NR_tkill
59# define my_tkill(tid, sig) syscall(__NR_tkill, (tid), (sig))
60#else
61 /* kill() may choose arbitrarily the target task of the process group
62 while we later wait on a that specific TID. PID process waits become
63 TID task specific waits for a process under ptrace(2). */
Denys Vlasenko978fbc92012-09-13 10:28:43 +020064# warning "tkill(2) not available, risk of strace hangs!"
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +010065# define my_tkill(tid, sig) kill((tid), (sig))
66#endif
67
Denys Vlasenko5c9d8f42013-02-19 15:30:12 +010068/* Glue for systems without a MMU that cannot provide fork() */
69#if !defined(HAVE_FORK)
70# undef NOMMU_SYSTEM
71# define NOMMU_SYSTEM 1
72#endif
73#if NOMMU_SYSTEM
74# define fork() vfork()
75#endif
76
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +010077cflag_t cflag = CFLAG_NONE;
78unsigned int followfork = 0;
Denys Vlasenkof44cce42011-06-21 14:34:10 +020079unsigned int ptrace_setoptions = 0;
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +010080unsigned int xflag = 0;
Denys Vlasenko8d4ca0c2013-02-06 13:18:42 +010081bool need_fork_exec_workarounds = 0;
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +010082bool debug_flag = 0;
83bool Tflag = 0;
Anton Blancharda34dead2013-07-12 12:22:06 +020084bool iflag = 0;
Mark Hillse53bf232014-05-28 17:52:40 +010085bool count_wallclock = 0;
Daniel P. Berrange01997cf2013-05-13 11:30:55 +010086unsigned int qflag = 0;
Denys Vlasenko3454e4b2011-05-23 21:29:03 +020087/* Which WSTOPSIG(status) value marks syscall traps? */
Denys Vlasenko75422762011-05-27 14:36:01 +020088static unsigned int syscall_trap_sig = SIGTRAP;
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +010089static unsigned int tflag = 0;
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +010090static bool rflag = 0;
91static bool print_pid_pfx = 0;
Denys Vlasenkob51581e2012-01-29 16:53:03 +010092
93/* -I n */
94enum {
95 INTR_NOT_SET = 0,
96 INTR_ANYWHERE = 1, /* don't block/ignore any signals */
97 INTR_WHILE_WAIT = 2, /* block fatal signals while decoding syscall. default */
98 INTR_NEVER = 3, /* block fatal signals. default if '-o FILE PROG' */
99 INTR_BLOCK_TSTP_TOO = 4, /* block fatal signals and SIGTSTP (^Z) */
100 NUM_INTR_OPTS
101};
102static int opt_intr;
103/* We play with signal mask only if this mode is active: */
104#define interactive (opt_intr == INTR_WHILE_WAIT)
105
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +0000106/*
107 * daemonized_tracer supports -D option.
108 * With this option, strace forks twice.
109 * Unlike normal case, with -D *grandparent* process exec's,
110 * becoming a traced process. Child exits (this prevents traced process
111 * from having children it doesn't expect to have), and grandchild
112 * attaches to grandparent similarly to strace -p PID.
113 * This allows for more transparent interaction in cases
114 * when process and its parent are communicating via signals,
115 * wait() etc. Without -D, strace process gets lodged in between,
116 * disrupting parent<->child link.
117 */
118static bool daemonized_tracer = 0;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000119
Denys Vlasenko5c9d8f42013-02-19 15:30:12 +0100120#if USE_SEIZE
Denys Vlasenko31fa8a22012-01-29 02:01:44 +0100121static int post_attach_sigstop = TCB_IGNORE_ONE_SIGSTOP;
122# define use_seize (post_attach_sigstop == 0)
123#else
124# define post_attach_sigstop TCB_IGNORE_ONE_SIGSTOP
125# define use_seize 0
126#endif
127
Michal Ludvig17f8fb32002-11-06 13:17:21 +0000128/* Sometimes we want to print only succeeding syscalls. */
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +0100129bool not_failing_only = 0;
Michal Ludvig17f8fb32002-11-06 13:17:21 +0000130
Grant Edwards8a082772011-04-07 20:25:40 +0000131/* Show path associated with fd arguments */
Dmitry V. Levin45e7b182014-08-08 23:38:26 +0000132unsigned int show_fd_path = 0;
Grant Edwards8a082772011-04-07 20:25:40 +0000133
Denys Vlasenko61e7aad2012-03-15 13:44:17 +0100134static bool detach_on_execve = 0;
Denys Vlasenko2a3d2752013-05-14 16:07:46 +0200135/* Are we "strace PROG" and need to skip detach on first execve? */
136static bool skip_one_b_execve = 0;
137/* Are we "strace PROG" and need to hide everything until execve? */
138bool hide_log_until_execve = 0;
Denys Vlasenko61e7aad2012-03-15 13:44:17 +0100139
Dmitry V. Levina6809652008-11-10 17:14:58 +0000140static int exit_code = 0;
141static int strace_child = 0;
Denys Vlasenko75422762011-05-27 14:36:01 +0200142static int strace_tracer_pid = 0;
Roland McGratheb9e2e82009-06-02 16:49:22 -0700143
Dmitry V. Levinb9fe0112006-12-13 16:59:44 +0000144static char *username = NULL;
Denys Vlasenkoead73bd2011-06-24 22:49:58 +0200145static uid_t run_uid;
146static gid_t run_gid;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000147
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +0100148unsigned int max_strlen = DEFAULT_STRLEN;
Dmitry V. Levinccee1692012-03-25 21:49:48 +0000149static int acolumn = DEFAULT_ACOLUMN;
Denys Vlasenko102ec492011-08-25 01:27:59 +0200150static char *acolumn_spaces;
Denys Vlasenko6764f8f2012-03-22 09:56:20 +0100151
Dmitry V. Levinb9fe0112006-12-13 16:59:44 +0000152static char *outfname = NULL;
Denys Vlasenko6764f8f2012-03-22 09:56:20 +0100153/* If -ff, points to stderr. Else, it's our common output log */
154static FILE *shared_log;
155
Denys Vlasenko000b6012012-01-28 01:25:03 +0100156struct tcb *printing_tcp = NULL;
Denys Vlasenko6764f8f2012-03-22 09:56:20 +0100157static struct tcb *current_tcp;
158
Denys Vlasenkoead73bd2011-06-24 22:49:58 +0200159static struct tcb **tcbtab;
Denys Vlasenko2b60c352011-06-22 12:45:25 +0200160static unsigned int nprocs, tcbtabsize;
Denys Vlasenkoead73bd2011-06-24 22:49:58 +0200161static const char *progname;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000162
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +0100163unsigned os_release; /* generated from uname()'s u.release */
Denys Vlasenkof7db5dd2012-01-28 01:16:02 +0100164
Denys Vlasenko4a9ba982013-06-20 11:20:23 +0200165static void detach(struct tcb *tcp);
Andreas Schwabe5355de2009-10-27 16:56:43 +0100166static void cleanup(void);
167static void interrupt(int sig);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000168static sigset_t empty_set, blocked_set;
169
170#ifdef HAVE_SIG_ATOMIC_T
171static volatile sig_atomic_t interrupted;
Denys Vlasenkoa3559252012-01-29 16:43:51 +0100172#else
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000173static volatile int interrupted;
Denys Vlasenkoa3559252012-01-29 16:43:51 +0100174#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000175
Denys Vlasenko2c4fb902012-03-15 17:24:49 +0100176#ifndef HAVE_STRERROR
177
178#if !HAVE_DECL_SYS_ERRLIST
179extern int sys_nerr;
180extern char *sys_errlist[];
Denys Vlasenkoa6d91de2012-03-16 12:02:22 +0100181#endif
Denys Vlasenko2c4fb902012-03-15 17:24:49 +0100182
183const char *
184strerror(int err_no)
185{
186 static char buf[sizeof("Unknown error %d") + sizeof(int)*3];
187
188 if (err_no < 1 || err_no >= sys_nerr) {
189 sprintf(buf, "Unknown error %d", err_no);
190 return buf;
191 }
192 return sys_errlist[err_no];
193}
194
195#endif /* HAVE_STERRROR */
196
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000197static void
Denys Vlasenkocb2ad002011-06-23 13:05:29 +0200198usage(FILE *ofp, int exitval)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000199{
200 fprintf(ofp, "\
Denys Vlasenkoc5ccfa42012-03-26 13:10:50 +0200201usage: strace [-CdffhiqrtttTvVxxy] [-I n] [-e expr]...\n\
202 [-a column] [-o file] [-s strsize] [-P path]...\n\
203 -p pid... / [-D] [-E var=val]... [-u username] PROG [ARGS]\n\
204 or: strace -c[df] [-I n] [-e expr]... [-O overhead] [-S sortby]\n\
205 -p pid... / [-D] [-E var=val]... [-u username] PROG [ARGS]\n\
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000206-c -- count time, calls, and errors for each syscall and report summary\n\
Denys Vlasenkoc5ccfa42012-03-26 13:10:50 +0200207-C -- like -c but also print regular output\n\
Mark Hillse53bf232014-05-28 17:52:40 +0100208-w -- summarise syscall latency (default is system time)\n\
Denys Vlasenko3e084ac2012-03-15 13:39:05 +0100209-d -- enable debug output to stderr\n\
Denys Vlasenkob51581e2012-01-29 16:53:03 +0100210-D -- run tracer process as a detached grandchild, not as parent\n\
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000211-f -- follow forks, -ff -- with output into separate files\n\
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000212-i -- print instruction pointer at time of syscall\n\
213-q -- suppress messages about attaching, detaching, etc.\n\
214-r -- print relative timestamp, -t -- absolute timestamp, -tt -- with usecs\n\
Denys Vlasenkocdab1be2012-02-03 12:17:57 +0100215-T -- print time spent in each syscall\n\
216-v -- verbose mode: print unabbreviated argv, stat, termios, etc. args\n\
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000217-x -- print non-ascii strings in hex, -xx -- print all strings in hex\n\
Grant Edwards8a082772011-04-07 20:25:40 +0000218-y -- print paths associated with file descriptor arguments\n\
Denys Vlasenkoc5ccfa42012-03-26 13:10:50 +0200219-h -- print help message, -V -- print version\n\
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000220-a column -- alignment COLUMN for printing syscall results (default %d)\n\
Denys Vlasenko22efaf02013-02-27 12:15:19 +0100221-b execve -- detach on this syscall\n\
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000222-e expr -- a qualifying expression: option=[!]all or option=[!]val1[,val2]...\n\
Denys Vlasenko38e79bb2013-02-26 11:33:54 +0100223 options: trace, abbrev, verbose, raw, signal, read, write\n\
Denys Vlasenkoc5ccfa42012-03-26 13:10:50 +0200224-I interruptible --\n\
225 1: no signals are blocked\n\
226 2: fatal signals are blocked while decoding syscall (default)\n\
227 3: fatal signals are always blocked (default if '-o FILE PROG')\n\
228 4: fatal signals and SIGTSTP (^Z) are always blocked\n\
229 (useful to make 'strace -o FILE PROG' not stop on ^Z)\n\
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000230-o file -- send trace output to FILE instead of stderr\n\
231-O overhead -- set overhead for tracing syscalls to OVERHEAD usecs\n\
232-p pid -- trace process with process id PID, may be repeated\n\
233-s strsize -- limit length of print strings to STRSIZE chars (default %d)\n\
234-S sortby -- sort syscall counts by: time, calls, name, nothing (default %s)\n\
235-u username -- run command as username handling setuid and/or setgid\n\
Roland McGrathde6e5332003-01-24 04:31:23 +0000236-E var=val -- put var=val in the environment for command\n\
237-E var -- remove var from the environment for command\n\
Grant Edwards8a082772011-04-07 20:25:40 +0000238-P path -- trace accesses to path\n\
Denys Vlasenko61e7aad2012-03-15 13:44:17 +0100239"
Luca Clementi327064b2013-07-23 00:11:35 -0700240#ifdef USE_LIBUNWIND
Dmitry V. Levin2734a702014-06-18 15:34:27 +0000241"-k obtain stack trace between each syscall (experimental)\n\
Luca Clementi327064b2013-07-23 00:11:35 -0700242"
243#endif
Denys Vlasenko38e79bb2013-02-26 11:33:54 +0100244/* ancient, no one should use it
245-F -- attempt to follow vforks (deprecated, use -f)\n\
246 */
Denys Vlasenko61e7aad2012-03-15 13:44:17 +0100247/* this is broken, so don't document it
Michal Ludvig17f8fb32002-11-06 13:17:21 +0000248-z -- print only succeeding syscalls\n\
Denys Vlasenko61e7aad2012-03-15 13:44:17 +0100249 */
Roland McGrathde6e5332003-01-24 04:31:23 +0000250, DEFAULT_ACOLUMN, DEFAULT_STRLEN, DEFAULT_SORTBY);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000251 exit(exitval);
252}
253
Denys Vlasenko75422762011-05-27 14:36:01 +0200254static void die(void) __attribute__ ((noreturn));
255static void die(void)
256{
257 if (strace_tracer_pid == getpid()) {
258 cflag = 0;
259 cleanup();
260 }
261 exit(1);
262}
263
264static void verror_msg(int err_no, const char *fmt, va_list p)
Denys Vlasenko3454e4b2011-05-23 21:29:03 +0200265{
Denys Vlasenko82bb78c2012-01-24 10:17:18 +0100266 char *msg;
267
Dmitry V. Levin44d05322011-06-09 15:50:41 +0000268 fflush(NULL);
Denys Vlasenko82bb78c2012-01-24 10:17:18 +0100269
270 /* We want to print entire message with single fprintf to ensure
271 * message integrity if stderr is shared with other programs.
272 * Thus we use vasprintf + single fprintf.
273 */
274 msg = NULL;
Denys Vlasenkocfad5432012-01-24 12:48:02 +0100275 if (vasprintf(&msg, fmt, p) >= 0) {
Denys Vlasenko82bb78c2012-01-24 10:17:18 +0100276 if (err_no)
277 fprintf(stderr, "%s: %s: %s\n", progname, msg, strerror(err_no));
278 else
279 fprintf(stderr, "%s: %s\n", progname, msg);
280 free(msg);
281 } else {
282 /* malloc in vasprintf failed, try it without malloc */
283 fprintf(stderr, "%s: ", progname);
284 vfprintf(stderr, fmt, p);
285 if (err_no)
286 fprintf(stderr, ": %s\n", strerror(err_no));
287 else
288 putc('\n', stderr);
289 }
290 /* We don't switch stderr to buffered, thus fprintf(stderr)
291 * always flushes its output and this is not necessary: */
292 /* fflush(stderr); */
Denys Vlasenko75422762011-05-27 14:36:01 +0200293}
Denys Vlasenko3454e4b2011-05-23 21:29:03 +0200294
Denys Vlasenko75422762011-05-27 14:36:01 +0200295void error_msg(const char *fmt, ...)
296{
297 va_list p;
298 va_start(p, fmt);
299 verror_msg(0, fmt, p);
300 va_end(p);
301}
302
303void error_msg_and_die(const char *fmt, ...)
304{
305 va_list p;
306 va_start(p, fmt);
307 verror_msg(0, fmt, p);
308 die();
309}
310
311void perror_msg(const char *fmt, ...)
312{
313 va_list p;
314 va_start(p, fmt);
315 verror_msg(errno, fmt, p);
316 va_end(p);
317}
318
319void perror_msg_and_die(const char *fmt, ...)
320{
321 va_list p;
322 va_start(p, fmt);
323 verror_msg(errno, fmt, p);
324 die();
Denys Vlasenko3454e4b2011-05-23 21:29:03 +0200325}
326
Denys Vlasenko1d46ba52011-08-31 14:00:02 +0200327void die_out_of_memory(void)
328{
329 static bool recursed = 0;
330 if (recursed)
331 exit(1);
332 recursed = 1;
333 error_msg_and_die("Out of memory");
334}
335
Dmitry V. Levinccee1692012-03-25 21:49:48 +0000336static void
337error_opt_arg(int opt, const char *arg)
338{
339 error_msg_and_die("Invalid -%c argument: '%s'", opt, arg);
340}
341
Denys Vlasenko5c9d8f42013-02-19 15:30:12 +0100342#if USE_SEIZE
Denys Vlasenko31fa8a22012-01-29 02:01:44 +0100343static int
344ptrace_attach_or_seize(int pid)
345{
346 int r;
347 if (!use_seize)
Denys Vlasenkoc169d942013-07-10 14:33:05 +0200348 return ptrace(PTRACE_ATTACH, pid, 0L, 0L);
349 r = ptrace(PTRACE_SEIZE, pid, 0L, (unsigned long)ptrace_setoptions);
Denys Vlasenko31fa8a22012-01-29 02:01:44 +0100350 if (r)
351 return r;
Denys Vlasenkoc169d942013-07-10 14:33:05 +0200352 r = ptrace(PTRACE_INTERRUPT, pid, 0L, 0L);
Denys Vlasenko31fa8a22012-01-29 02:01:44 +0100353 return r;
354}
355#else
356# define ptrace_attach_or_seize(pid) ptrace(PTRACE_ATTACH, (pid), 0, 0)
357#endif
358
Denys Vlasenko852f98a2012-03-20 16:26:25 +0100359/*
360 * Used when we want to unblock stopped traced process.
361 * Should be only used with PTRACE_CONT, PTRACE_DETACH and PTRACE_SYSCALL.
362 * Returns 0 on success or if error was ESRCH
363 * (presumably process was killed while we talk to it).
364 * Otherwise prints error message and returns -1.
365 */
366static int
367ptrace_restart(int op, struct tcb *tcp, int sig)
368{
369 int err;
370 const char *msg;
371
372 errno = 0;
373 ptrace(op, tcp->pid, (void *) 0, (long) sig);
374 err = errno;
Denys Vlasenko23506752012-03-21 10:32:49 +0100375 if (!err)
Denys Vlasenko852f98a2012-03-20 16:26:25 +0100376 return 0;
377
Denys Vlasenko852f98a2012-03-20 16:26:25 +0100378 msg = "SYSCALL";
379 if (op == PTRACE_CONT)
380 msg = "CONT";
381 if (op == PTRACE_DETACH)
382 msg = "DETACH";
383#ifdef PTRACE_LISTEN
384 if (op == PTRACE_LISTEN)
385 msg = "LISTEN";
386#endif
Denys Vlasenko23506752012-03-21 10:32:49 +0100387 /*
388 * Why curcol != 0? Otherwise sometimes we get this:
389 *
390 * 10252 kill(10253, SIGKILL) = 0
391 * <ptrace(SYSCALL,10252):No such process>10253 ...next decode...
392 *
393 * 10252 died after we retrieved syscall exit data,
394 * but before we tried to restart it. Log looks ugly.
395 */
Denys Vlasenko6764f8f2012-03-22 09:56:20 +0100396 if (current_tcp && current_tcp->curcol != 0) {
Denys Vlasenko23506752012-03-21 10:32:49 +0100397 tprintf(" <ptrace(%s):%s>\n", msg, strerror(err));
398 line_ended();
399 }
400 if (err == ESRCH)
401 return 0;
402 errno = err;
Denys Vlasenko852f98a2012-03-20 16:26:25 +0100403 perror_msg("ptrace(PTRACE_%s,pid:%d,sig:%d)", msg, tcp->pid, sig);
404 return -1;
405}
406
Denys Vlasenko1f532ab2011-06-22 13:11:23 +0200407static void
Dmitry V. Levin10de62b2006-12-13 21:45:31 +0000408set_cloexec_flag(int fd)
409{
Denys Vlasenko1f532ab2011-06-22 13:11:23 +0200410 int flags, newflags;
Dmitry V. Levin10de62b2006-12-13 21:45:31 +0000411
Denys Vlasenko1f532ab2011-06-22 13:11:23 +0200412 flags = fcntl(fd, F_GETFD);
413 if (flags < 0) {
414 /* Can happen only if fd is bad.
415 * Should never happen: if it does, we have a bug
416 * in the caller. Therefore we just abort
417 * instead of propagating the error.
418 */
419 perror_msg_and_die("fcntl(%d, F_GETFD)", fd);
Dmitry V. Levin10de62b2006-12-13 21:45:31 +0000420 }
421
422 newflags = flags | FD_CLOEXEC;
423 if (flags == newflags)
Denys Vlasenko1f532ab2011-06-22 13:11:23 +0200424 return;
Dmitry V. Levin10de62b2006-12-13 21:45:31 +0000425
Denys Vlasenko1f532ab2011-06-22 13:11:23 +0200426 fcntl(fd, F_SETFD, newflags); /* never fails */
Dmitry V. Levin10de62b2006-12-13 21:45:31 +0000427}
428
Denys Vlasenko75fe85c2012-03-09 15:15:24 +0100429static void kill_save_errno(pid_t pid, int sig)
430{
431 int saved_errno = errno;
432
433 (void) kill(pid, sig);
434 errno = saved_errno;
435}
436
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100437/*
438 * When strace is setuid executable, we have to swap uids
439 * before and after filesystem and process management operations.
440 */
441static void
442swap_uid(void)
443{
444 int euid = geteuid(), uid = getuid();
445
446 if (euid != uid && setreuid(euid, uid) < 0) {
447 perror_msg_and_die("setreuid");
448 }
449}
450
Dmitry V. Levin0506f0f2013-11-12 22:34:42 +0000451#ifdef _LARGEFILE64_SOURCE
Dmitry V. Levind3541302014-02-26 00:01:00 +0000452# ifdef HAVE_FOPEN64
453# define fopen_for_output fopen64
454# else
455# define fopen_for_output fopen
456# endif
Dmitry V. Levinc8938e02013-03-20 21:40:15 +0000457# define struct_stat struct stat64
458# define stat_file stat64
459# define struct_dirent struct dirent64
460# define read_dir readdir64
461# define struct_rlimit struct rlimit64
462# define set_rlimit setrlimit64
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100463#else
464# define fopen_for_output fopen
Dmitry V. Levinc8938e02013-03-20 21:40:15 +0000465# define struct_stat struct stat
466# define stat_file stat
467# define struct_dirent struct dirent
468# define read_dir readdir
469# define struct_rlimit struct rlimit
470# define set_rlimit setrlimit
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100471#endif
472
473static FILE *
474strace_fopen(const char *path)
475{
476 FILE *fp;
477
478 swap_uid();
479 fp = fopen_for_output(path, "w");
480 if (!fp)
481 perror_msg_and_die("Can't fopen '%s'", path);
482 swap_uid();
483 set_cloexec_flag(fileno(fp));
484 return fp;
485}
486
487static int popen_pid = 0;
488
489#ifndef _PATH_BSHELL
490# define _PATH_BSHELL "/bin/sh"
491#endif
492
493/*
494 * We cannot use standard popen(3) here because we have to distinguish
495 * popen child process from other processes we trace, and standard popen(3)
496 * does not export its child's pid.
497 */
498static FILE *
499strace_popen(const char *command)
500{
501 FILE *fp;
Denys Vlasenko519af5a2013-07-02 11:31:24 +0200502 int pid;
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100503 int fds[2];
504
505 swap_uid();
506 if (pipe(fds) < 0)
507 perror_msg_and_die("pipe");
508
509 set_cloexec_flag(fds[1]); /* never fails */
510
Denys Vlasenko519af5a2013-07-02 11:31:24 +0200511 pid = vfork();
512 if (pid < 0)
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100513 perror_msg_and_die("vfork");
514
Denys Vlasenko519af5a2013-07-02 11:31:24 +0200515 if (pid == 0) {
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100516 /* child */
517 close(fds[1]);
518 if (fds[0] != 0) {
519 if (dup2(fds[0], 0))
520 perror_msg_and_die("dup2");
521 close(fds[0]);
522 }
523 execl(_PATH_BSHELL, "sh", "-c", command, NULL);
524 perror_msg_and_die("Can't execute '%s'", _PATH_BSHELL);
525 }
526
527 /* parent */
Denys Vlasenko519af5a2013-07-02 11:31:24 +0200528 popen_pid = pid;
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100529 close(fds[0]);
530 swap_uid();
531 fp = fdopen(fds[1], "w");
532 if (!fp)
533 die_out_of_memory();
534 return fp;
535}
536
Denys Vlasenko2e856a12012-03-12 23:02:26 +0100537void
538tprintf(const char *fmt, ...)
539{
540 va_list args;
541
542 va_start(args, fmt);
Denys Vlasenko6764f8f2012-03-22 09:56:20 +0100543 if (current_tcp) {
Denys Vlasenko6e4f3c12012-04-16 18:22:19 +0200544 int n = strace_vfprintf(current_tcp->outf, fmt, args);
Denys Vlasenko2e856a12012-03-12 23:02:26 +0100545 if (n < 0) {
Denys Vlasenko6764f8f2012-03-22 09:56:20 +0100546 if (current_tcp->outf != stderr)
Dmitry V. Levin9a71bcd2012-09-17 23:20:54 +0000547 perror_msg("%s", outfname);
Denys Vlasenko2e856a12012-03-12 23:02:26 +0100548 } else
Denys Vlasenko6764f8f2012-03-22 09:56:20 +0100549 current_tcp->curcol += n;
Denys Vlasenko2e856a12012-03-12 23:02:26 +0100550 }
551 va_end(args);
552}
553
Dmitry V. Levind3541302014-02-26 00:01:00 +0000554#ifndef HAVE_FPUTS_UNLOCKED
555# define fputs_unlocked fputs
556#endif
557
Denys Vlasenko2e856a12012-03-12 23:02:26 +0100558void
559tprints(const char *str)
560{
Denys Vlasenko6764f8f2012-03-22 09:56:20 +0100561 if (current_tcp) {
Denys Vlasenko142aee02012-04-16 18:10:15 +0200562 int n = fputs_unlocked(str, current_tcp->outf);
Denys Vlasenko2e856a12012-03-12 23:02:26 +0100563 if (n >= 0) {
Denys Vlasenko6764f8f2012-03-22 09:56:20 +0100564 current_tcp->curcol += strlen(str);
Denys Vlasenko2e856a12012-03-12 23:02:26 +0100565 return;
566 }
Denys Vlasenko6764f8f2012-03-22 09:56:20 +0100567 if (current_tcp->outf != stderr)
Dmitry V. Levin9a71bcd2012-09-17 23:20:54 +0000568 perror_msg("%s", outfname);
Denys Vlasenko2e856a12012-03-12 23:02:26 +0100569 }
570}
571
572void
Denys Vlasenko7de265d2012-03-13 11:44:31 +0100573line_ended(void)
574{
Denys Vlasenko6764f8f2012-03-22 09:56:20 +0100575 if (current_tcp) {
576 current_tcp->curcol = 0;
577 fflush(current_tcp->outf);
578 }
579 if (printing_tcp) {
580 printing_tcp->curcol = 0;
581 printing_tcp = NULL;
582 }
Denys Vlasenko7de265d2012-03-13 11:44:31 +0100583}
584
585void
Denys Vlasenko2e856a12012-03-12 23:02:26 +0100586printleader(struct tcb *tcp)
587{
Denys Vlasenko7de265d2012-03-13 11:44:31 +0100588 /* If -ff, "previous tcb we printed" is always the same as current,
589 * because we have per-tcb output files.
590 */
591 if (followfork >= 2)
592 printing_tcp = tcp;
593
Denys Vlasenko2e856a12012-03-12 23:02:26 +0100594 if (printing_tcp) {
Denys Vlasenko6764f8f2012-03-22 09:56:20 +0100595 current_tcp = printing_tcp;
Denys Vlasenko7de265d2012-03-13 11:44:31 +0100596 if (printing_tcp->curcol != 0 && (followfork < 2 || printing_tcp == tcp)) {
597 /*
598 * case 1: we have a shared log (i.e. not -ff), and last line
599 * wasn't finished (same or different tcb, doesn't matter).
600 * case 2: split log, we are the same tcb, but our last line
601 * didn't finish ("SIGKILL nuked us after syscall entry" etc).
602 */
Denys Vlasenko2e856a12012-03-12 23:02:26 +0100603 tprints(" <unfinished ...>\n");
Denys Vlasenko7de265d2012-03-13 11:44:31 +0100604 printing_tcp->curcol = 0;
Denys Vlasenko2e856a12012-03-12 23:02:26 +0100605 }
606 }
607
608 printing_tcp = tcp;
Denys Vlasenko6764f8f2012-03-22 09:56:20 +0100609 current_tcp = tcp;
610 current_tcp->curcol = 0;
Denys Vlasenko2e856a12012-03-12 23:02:26 +0100611
612 if (print_pid_pfx)
613 tprintf("%-5d ", tcp->pid);
614 else if (nprocs > 1 && !outfname)
615 tprintf("[pid %5u] ", tcp->pid);
616
617 if (tflag) {
618 char str[sizeof("HH:MM:SS")];
619 struct timeval tv, dtv;
620 static struct timeval otv;
621
622 gettimeofday(&tv, NULL);
623 if (rflag) {
624 if (otv.tv_sec == 0)
625 otv = tv;
626 tv_sub(&dtv, &tv, &otv);
627 tprintf("%6ld.%06ld ",
628 (long) dtv.tv_sec, (long) dtv.tv_usec);
629 otv = tv;
630 }
631 else if (tflag > 2) {
632 tprintf("%ld.%06ld ",
633 (long) tv.tv_sec, (long) tv.tv_usec);
634 }
635 else {
636 time_t local = tv.tv_sec;
637 strftime(str, sizeof(str), "%T", localtime(&local));
638 if (tflag > 1)
639 tprintf("%s.%06ld ", str, (long) tv.tv_usec);
640 else
641 tprintf("%s ", str);
642 }
643 }
644 if (iflag)
Denys Vlasenko5a2483b2013-07-01 12:49:14 +0200645 print_pc(tcp);
Denys Vlasenko2e856a12012-03-12 23:02:26 +0100646}
647
648void
649tabto(void)
650{
Denys Vlasenko6764f8f2012-03-22 09:56:20 +0100651 if (current_tcp->curcol < acolumn)
652 tprints(acolumn_spaces + current_tcp->curcol);
Denys Vlasenko2e856a12012-03-12 23:02:26 +0100653}
654
Denys Vlasenko3db3b262012-03-16 15:15:14 +0100655/* Should be only called directly *after successful attach* to a tracee.
656 * Otherwise, "strace -oFILE -ff -p<nonexistant_pid>"
657 * may create bogus empty FILE.<nonexistant_pid>, and then die.
658 */
Denys Vlasenko3d5ed412011-06-22 13:17:16 +0200659static void
Dmitry V. Levin10de62b2006-12-13 21:45:31 +0000660newoutf(struct tcb *tcp)
661{
Denys Vlasenko6764f8f2012-03-22 09:56:20 +0100662 tcp->outf = shared_log; /* if not -ff mode, the same file is for all */
Denys Vlasenko3db3b262012-03-16 15:15:14 +0100663 if (followfork >= 2) {
Denys Vlasenko7a8bf062009-01-29 20:38:20 +0000664 char name[520 + sizeof(int) * 3];
Denys Vlasenko7a8bf062009-01-29 20:38:20 +0000665 sprintf(name, "%.512s.%u", outfname, tcp->pid);
Denys Vlasenko3d5ed412011-06-22 13:17:16 +0200666 tcp->outf = strace_fopen(name);
Dmitry V. Levin10de62b2006-12-13 21:45:31 +0000667 }
Dmitry V. Levin10de62b2006-12-13 21:45:31 +0000668}
669
Denys Vlasenko558e5122012-03-12 23:32:16 +0100670static void
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100671expand_tcbtab(void)
672{
673 /* Allocate some more TCBs and expand the table.
674 We don't want to relocate the TCBs because our
675 callers have pointers and it would be a pain.
676 So tcbtab is a table of pointers. Since we never
677 free the TCBs, we allocate a single chunk of many. */
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +0000678 unsigned int i = tcbtabsize;
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100679 struct tcb *newtcbs = calloc(tcbtabsize, sizeof(newtcbs[0]));
680 struct tcb **newtab = realloc(tcbtab, tcbtabsize * 2 * sizeof(tcbtab[0]));
681 if (!newtab || !newtcbs)
682 die_out_of_memory();
683 tcbtabsize *= 2;
684 tcbtab = newtab;
685 while (i < tcbtabsize)
686 tcbtab[i++] = newtcbs++;
687}
688
689static struct tcb *
Denys Vlasenko3db3b262012-03-16 15:15:14 +0100690alloctcb(int pid)
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100691{
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +0000692 unsigned int i;
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100693 struct tcb *tcp;
694
695 if (nprocs == tcbtabsize)
696 expand_tcbtab();
697
698 for (i = 0; i < tcbtabsize; i++) {
699 tcp = tcbtab[i];
Denys Vlasenkofadbf662013-06-26 14:14:29 +0200700 if (!tcp->pid) {
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100701 memset(tcp, 0, sizeof(*tcp));
702 tcp->pid = pid;
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100703#if SUPPORTED_PERSONALITIES > 1
704 tcp->currpers = current_personality;
705#endif
Luca Clementi327064b2013-07-23 00:11:35 -0700706
707#ifdef USE_LIBUNWIND
708 if (stack_trace_enabled)
Masatake YAMATO61413922014-04-16 15:33:02 +0900709 unwind_tcb_init(tcp);
Luca Clementi327064b2013-07-23 00:11:35 -0700710#endif
711
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100712 nprocs++;
713 if (debug_flag)
714 fprintf(stderr, "new tcb for pid %d, active tcbs:%d\n", tcp->pid, nprocs);
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100715 return tcp;
716 }
717 }
Denys Vlasenko3db3b262012-03-16 15:15:14 +0100718 error_msg_and_die("bug in alloctcb");
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100719}
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100720
721static void
722droptcb(struct tcb *tcp)
723{
724 if (tcp->pid == 0)
725 return;
726
Masatake YAMATO2b09df92014-04-16 15:33:08 +0900727#ifdef USE_LIBUNWIND
728 if (stack_trace_enabled) {
729 unwind_tcb_fin(tcp);
730 }
731#endif
732
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100733 nprocs--;
734 if (debug_flag)
735 fprintf(stderr, "dropped tcb for pid %d, %d remain\n", tcp->pid, nprocs);
736
737 if (tcp->outf) {
Denys Vlasenko8511f2a2012-03-22 09:35:51 +0100738 if (followfork >= 2) {
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100739 if (tcp->curcol != 0)
740 fprintf(tcp->outf, " <detached ...>\n");
741 fclose(tcp->outf);
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100742 } else {
743 if (printing_tcp == tcp && tcp->curcol != 0)
744 fprintf(tcp->outf, " <detached ...>\n");
745 fflush(tcp->outf);
746 }
747 }
748
Denys Vlasenko6764f8f2012-03-22 09:56:20 +0100749 if (current_tcp == tcp)
750 current_tcp = NULL;
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100751 if (printing_tcp == tcp)
752 printing_tcp = NULL;
753
754 memset(tcp, 0, sizeof(*tcp));
755}
756
Denys Vlasenkof1669e72013-06-18 18:09:39 +0200757/* Detach traced process.
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100758 * Never call DETACH twice on the same process as both unattached and
759 * attached-unstopped processes give the same ESRCH. For unattached process we
760 * would SIGSTOP it and wait for its SIGSTOP notification forever.
761 */
Denys Vlasenko4a9ba982013-06-20 11:20:23 +0200762static void
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100763detach(struct tcb *tcp)
764{
765 int error;
Denys Vlasenkoe2567d52013-06-21 16:11:10 +0200766 int status;
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100767
768 if (tcp->flags & TCB_BPTSET)
769 clearbpt(tcp);
770
771 /*
772 * Linux wrongly insists the child be stopped
773 * before detaching. Arghh. We go through hoops
774 * to make a clean break of things.
775 */
776#if defined(SPARC)
Denys Vlasenko978fbc92012-09-13 10:28:43 +0200777# undef PTRACE_DETACH
778# define PTRACE_DETACH PTRACE_SUNDETACH
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100779#endif
780
Denys Vlasenkoe2567d52013-06-21 16:11:10 +0200781 if (!(tcp->flags & TCB_ATTACHED))
782 goto drop;
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100783
Denys Vlasenkoe2567d52013-06-21 16:11:10 +0200784 /* We attached but possibly didn't see the expected SIGSTOP.
785 * We must catch exactly one as otherwise the detached process
786 * would be left stopped (process state T).
787 */
788 if (tcp->flags & TCB_IGNORE_ONE_SIGSTOP)
789 goto wait_loop;
790
791 error = ptrace(PTRACE_DETACH, tcp->pid, 0, 0);
792 if (!error) {
793 /* On a clear day, you can see forever. */
794 goto drop;
795 }
796 if (errno != ESRCH) {
797 /* Shouldn't happen. */
798 perror_msg("detach: ptrace(PTRACE_DETACH,%u)", tcp->pid);
799 goto drop;
800 }
801 /* ESRCH: process is either not stopped or doesn't exist. */
802 if (my_tkill(tcp->pid, 0) < 0) {
803 if (errno != ESRCH)
804 /* Shouldn't happen. */
805 perror_msg("detach: tkill(%u,0)", tcp->pid);
806 /* else: process doesn't exist. */
807 goto drop;
808 }
809 /* Process is not stopped, need to stop it. */
810 if (use_seize) {
811 /*
812 * With SEIZE, tracee can be in group-stop already.
813 * In this state sending it another SIGSTOP does nothing.
814 * Need to use INTERRUPT.
815 * Testcase: trying to ^C a "strace -p <stopped_process>".
816 */
817 error = ptrace(PTRACE_INTERRUPT, tcp->pid, 0, 0);
818 if (!error)
819 goto wait_loop;
820 if (errno != ESRCH)
821 perror_msg("detach: ptrace(PTRACE_INTERRUPT,%u)", tcp->pid);
822 }
823 else {
824 error = my_tkill(tcp->pid, SIGSTOP);
825 if (!error)
826 goto wait_loop;
827 if (errno != ESRCH)
828 perror_msg("detach: tkill(%u,SIGSTOP)", tcp->pid);
829 }
830 /* Either process doesn't exist, or some weird error. */
831 goto drop;
832
Denys Vlasenkoa2de9da2013-06-21 15:50:41 +0200833 wait_loop:
Denys Vlasenkoe2567d52013-06-21 16:11:10 +0200834 /* We end up here in three cases:
835 * 1. We sent PTRACE_INTERRUPT (use_seize case)
836 * 2. We sent SIGSTOP (!use_seize)
837 * 3. Attach SIGSTOP was already pending (TCB_IGNORE_ONE_SIGSTOP set)
838 */
839 for (;;) {
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +0000840 unsigned int sig;
Denys Vlasenkoe2567d52013-06-21 16:11:10 +0200841 if (waitpid(tcp->pid, &status, __WALL) < 0) {
842 if (errno == EINTR)
843 continue;
844 /*
845 * if (errno == ECHILD) break;
846 * ^^^ WRONG! We expect this PID to exist,
847 * and want to emit a message otherwise:
848 */
849 perror_msg("detach: waitpid(%u)", tcp->pid);
850 break;
851 }
852 if (!WIFSTOPPED(status)) {
853 /*
854 * Tracee exited or was killed by signal.
855 * We shouldn't normally reach this place:
856 * we don't want to consume exit status.
857 * Consider "strace -p PID" being ^C-ed:
858 * we want merely to detach from PID.
859 *
860 * However, we _can_ end up here if tracee
861 * was SIGKILLed.
862 */
863 break;
864 }
865 sig = WSTOPSIG(status);
866 if (debug_flag)
867 fprintf(stderr, "detach wait: event:%d sig:%d\n",
868 (unsigned)status >> 16, sig);
869 if (use_seize) {
870 unsigned event = (unsigned)status >> 16;
871 if (event == PTRACE_EVENT_STOP /*&& sig == SIGTRAP*/) {
Denys Vlasenkofdfa47a2013-06-20 12:10:21 +0200872 /*
Denys Vlasenkoe2567d52013-06-21 16:11:10 +0200873 * sig == SIGTRAP: PTRACE_INTERRUPT stop.
874 * sig == other: process was already stopped
875 * with this stopping sig (see tests/detach-stopped).
876 * Looks like re-injecting this sig is not necessary
877 * in DETACH for the tracee to remain stopped.
Denys Vlasenkofdfa47a2013-06-20 12:10:21 +0200878 */
Denys Vlasenkoe2567d52013-06-21 16:11:10 +0200879 sig = 0;
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100880 }
Denys Vlasenkoe2567d52013-06-21 16:11:10 +0200881 /*
882 * PTRACE_INTERRUPT is not guaranteed to produce
883 * the above event if other ptrace-stop is pending.
884 * See tests/detach-sleeping testcase:
885 * strace got SIGINT while tracee is sleeping.
886 * We sent PTRACE_INTERRUPT.
887 * We see syscall exit, not PTRACE_INTERRUPT stop.
888 * We won't get PTRACE_INTERRUPT stop
889 * if we would CONT now. Need to DETACH.
890 */
Denys Vlasenko69e27ef2013-06-19 15:31:39 +0200891 if (sig == syscall_trap_sig)
892 sig = 0;
Denys Vlasenkoe2567d52013-06-21 16:11:10 +0200893 /* else: not sure in which case we can be here.
894 * Signal stop? Inject it while detaching.
895 */
896 ptrace_restart(PTRACE_DETACH, tcp, sig);
897 break;
898 }
899 /* Note: this check has to be after use_seize check */
900 /* (else, in use_seize case SIGSTOP will be mistreated) */
901 if (sig == SIGSTOP) {
902 /* Detach, suppressing SIGSTOP */
903 ptrace_restart(PTRACE_DETACH, tcp, 0);
904 break;
905 }
906 if (sig == syscall_trap_sig)
907 sig = 0;
908 /* Can't detach just yet, may need to wait for SIGSTOP */
909 error = ptrace_restart(PTRACE_CONT, tcp, sig);
910 if (error < 0) {
911 /* Should not happen.
912 * Note: ptrace_restart returns 0 on ESRCH, so it's not it.
913 * ptrace_restart already emitted error message.
914 */
915 break;
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100916 }
917 }
918
Denys Vlasenkoe2567d52013-06-21 16:11:10 +0200919 drop:
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100920 if (!qflag && (tcp->flags & TCB_ATTACHED))
921 fprintf(stderr, "Process %u detached\n", tcp->pid);
922
923 droptcb(tcp);
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100924}
925
926static void
Denys Vlasenko558e5122012-03-12 23:32:16 +0100927process_opt_p_list(char *opt)
Denys Vlasenkoe8172b72012-03-09 13:01:04 +0100928{
929 while (*opt) {
930 /*
931 * We accept -p PID,PID; -p "`pidof PROG`"; -p "`pgrep PROG`".
932 * pidof uses space as delim, pgrep uses newline. :(
933 */
934 int pid;
Denys Vlasenkoe8172b72012-03-09 13:01:04 +0100935 char *delim = opt + strcspn(opt, ", \n\t");
936 char c = *delim;
937
938 *delim = '\0';
Dmitry V. Levinccee1692012-03-25 21:49:48 +0000939 pid = string_to_uint(opt);
Denys Vlasenkoe8172b72012-03-09 13:01:04 +0100940 if (pid <= 0) {
Dmitry V. Levinccee1692012-03-25 21:49:48 +0000941 error_msg_and_die("Invalid process id: '%s'", opt);
Denys Vlasenkoe8172b72012-03-09 13:01:04 +0100942 }
943 if (pid == strace_tracer_pid) {
Dmitry V. Levinccee1692012-03-25 21:49:48 +0000944 error_msg_and_die("I'm sorry, I can't let you do that, Dave.");
Denys Vlasenkoe8172b72012-03-09 13:01:04 +0100945 }
946 *delim = c;
Denys Vlasenko3db3b262012-03-16 15:15:14 +0100947 alloctcb(pid);
Denys Vlasenkoe8172b72012-03-09 13:01:04 +0100948 if (c == '\0')
949 break;
950 opt = delim + 1;
951 }
952}
953
Roland McGrath02203312007-06-11 22:06:31 +0000954static void
955startup_attach(void)
956{
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +0000957 unsigned int tcbi;
Roland McGrath02203312007-06-11 22:06:31 +0000958 struct tcb *tcp;
959
960 /*
961 * Block user interruptions as we would leave the traced
962 * process stopped (process state T) if we would terminate in
Denys Vlasenko2e968c02011-09-01 10:23:09 +0200963 * between PTRACE_ATTACH and wait4() on SIGSTOP.
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200964 * We rely on cleanup() from this point on.
Roland McGrath02203312007-06-11 22:06:31 +0000965 */
966 if (interactive)
967 sigprocmask(SIG_BLOCK, &blocked_set, NULL);
968
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +0000969 if (daemonized_tracer) {
970 pid_t pid = fork();
971 if (pid < 0) {
Denys Vlasenko014ca3a2011-09-02 16:19:30 +0200972 perror_msg_and_die("fork");
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +0000973 }
974 if (pid) { /* parent */
975 /*
Denys Vlasenko75422762011-05-27 14:36:01 +0200976 * Wait for grandchild to attach to straced process
977 * (grandparent). Grandchild SIGKILLs us after it attached.
978 * Grandparent's wait() is unblocked by our death,
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +0000979 * it proceeds to exec the straced program.
980 */
981 pause();
982 _exit(0); /* paranoia */
983 }
Denys Vlasenko75422762011-05-27 14:36:01 +0200984 /* grandchild */
985 /* We will be the tracer process. Remember our new pid: */
986 strace_tracer_pid = getpid();
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +0000987 }
988
Roland McGrath02203312007-06-11 22:06:31 +0000989 for (tcbi = 0; tcbi < tcbtabsize; tcbi++) {
990 tcp = tcbtab[tcbi];
Denys Vlasenko44f87ef2011-08-17 15:18:21 +0200991
Denys Vlasenkofadbf662013-06-26 14:14:29 +0200992 if (!tcp->pid)
Denys Vlasenko75fe85c2012-03-09 15:15:24 +0100993 continue;
994
Denys Vlasenkod116a732011-09-05 14:01:33 +0200995 /* Is this a process we should attach to, but not yet attached? */
Denys Vlasenko75fe85c2012-03-09 15:15:24 +0100996 if (tcp->flags & TCB_ATTACHED)
997 continue; /* no, we already attached it */
Denys Vlasenkod116a732011-09-05 14:01:33 +0200998
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +0000999 if (followfork && !daemonized_tracer) {
Denys Vlasenko7a8bf062009-01-29 20:38:20 +00001000 char procdir[sizeof("/proc/%d/task") + sizeof(int) * 3];
Roland McGrath02203312007-06-11 22:06:31 +00001001 DIR *dir;
1002
1003 sprintf(procdir, "/proc/%d/task", tcp->pid);
1004 dir = opendir(procdir);
1005 if (dir != NULL) {
1006 unsigned int ntid = 0, nerr = 0;
Dmitry V. Levinc8938e02013-03-20 21:40:15 +00001007 struct_dirent *de;
Denys Vlasenko381dbc22011-09-05 13:59:39 +02001008
Dmitry V. Levinc8938e02013-03-20 21:40:15 +00001009 while ((de = read_dir(dir)) != NULL) {
Denys Vlasenko381dbc22011-09-05 13:59:39 +02001010 struct tcb *cur_tcp;
1011 int tid;
1012
Denys Vlasenko7a8bf062009-01-29 20:38:20 +00001013 if (de->d_fileno == 0)
Roland McGrath02203312007-06-11 22:06:31 +00001014 continue;
Dmitry V. Levinccee1692012-03-25 21:49:48 +00001015 /* we trust /proc filesystem */
Roland McGrath02203312007-06-11 22:06:31 +00001016 tid = atoi(de->d_name);
1017 if (tid <= 0)
1018 continue;
1019 ++ntid;
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001020 if (ptrace_attach_or_seize(tid) < 0) {
Roland McGrath02203312007-06-11 22:06:31 +00001021 ++nerr;
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001022 if (debug_flag)
Denys Vlasenkof95397a2011-06-24 16:51:16 +02001023 fprintf(stderr, "attach to pid %d failed\n", tid);
Denys Vlasenko381dbc22011-09-05 13:59:39 +02001024 continue;
Denys Vlasenkof95397a2011-06-24 16:51:16 +02001025 }
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001026 if (debug_flag)
Denys Vlasenko381dbc22011-09-05 13:59:39 +02001027 fprintf(stderr, "attach to pid %d succeeded\n", tid);
1028 cur_tcp = tcp;
1029 if (tid != tcp->pid)
1030 cur_tcp = alloctcb(tid);
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001031 cur_tcp->flags |= TCB_ATTACHED | TCB_STARTUP | post_attach_sigstop;
Denys Vlasenko3db3b262012-03-16 15:15:14 +01001032 newoutf(cur_tcp);
Roland McGrath02203312007-06-11 22:06:31 +00001033 }
1034 closedir(dir);
Denys Vlasenko381dbc22011-09-05 13:59:39 +02001035 if (interactive) {
1036 sigprocmask(SIG_SETMASK, &empty_set, NULL);
1037 if (interrupted)
1038 goto ret;
1039 sigprocmask(SIG_BLOCK, &blocked_set, NULL);
1040 }
Denys Vlasenko7a8bf062009-01-29 20:38:20 +00001041 ntid -= nerr;
1042 if (ntid == 0) {
Denys Vlasenko905e8e02013-02-26 12:30:09 +01001043 perror_msg("attach: ptrace(PTRACE_ATTACH, ...)");
Roland McGrath02203312007-06-11 22:06:31 +00001044 droptcb(tcp);
1045 continue;
1046 }
1047 if (!qflag) {
Denys Vlasenko7a8bf062009-01-29 20:38:20 +00001048 fprintf(stderr, ntid > 1
Denys Vlasenko3db3b262012-03-16 15:15:14 +01001049? "Process %u attached with %u threads\n"
1050: "Process %u attached\n",
Denys Vlasenko44f87ef2011-08-17 15:18:21 +02001051 tcp->pid, ntid);
Roland McGrath02203312007-06-11 22:06:31 +00001052 }
Denys Vlasenko75fe85c2012-03-09 15:15:24 +01001053 if (!(tcp->flags & TCB_ATTACHED)) {
Denys Vlasenkof88837a2011-09-05 14:05:46 +02001054 /* -p PID, we failed to attach to PID itself
1055 * but did attach to some of its sibling threads.
1056 * Drop PID's tcp.
1057 */
1058 droptcb(tcp);
1059 }
Roland McGrath02203312007-06-11 22:06:31 +00001060 continue;
Denys Vlasenko7a8bf062009-01-29 20:38:20 +00001061 } /* if (opendir worked) */
1062 } /* if (-f) */
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001063 if (ptrace_attach_or_seize(tcp->pid) < 0) {
Denys Vlasenko905e8e02013-02-26 12:30:09 +01001064 perror_msg("attach: ptrace(PTRACE_ATTACH, ...)");
Roland McGrath02203312007-06-11 22:06:31 +00001065 droptcb(tcp);
1066 continue;
1067 }
Denys Vlasenko75fe85c2012-03-09 15:15:24 +01001068 tcp->flags |= TCB_ATTACHED | TCB_STARTUP | post_attach_sigstop;
Denys Vlasenko3db3b262012-03-16 15:15:14 +01001069 newoutf(tcp);
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001070 if (debug_flag)
Denys Vlasenkof95397a2011-06-24 16:51:16 +02001071 fprintf(stderr, "attach to pid %d (main) succeeded\n", tcp->pid);
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +00001072
1073 if (daemonized_tracer) {
1074 /*
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +00001075 * Make parent go away.
1076 * Also makes grandparent's wait() unblock.
1077 */
1078 kill(getppid(), SIGKILL);
1079 }
1080
Roland McGrath02203312007-06-11 22:06:31 +00001081 if (!qflag)
1082 fprintf(stderr,
Denys Vlasenko9c3861d2012-03-16 15:21:49 +01001083 "Process %u attached\n",
Roland McGrath02203312007-06-11 22:06:31 +00001084 tcp->pid);
Denys Vlasenkof95397a2011-06-24 16:51:16 +02001085 } /* for each tcbtab[] */
Roland McGrath02203312007-06-11 22:06:31 +00001086
Denys Vlasenko44f87ef2011-08-17 15:18:21 +02001087 ret:
Roland McGrath02203312007-06-11 22:06:31 +00001088 if (interactive)
1089 sigprocmask(SIG_SETMASK, &empty_set, NULL);
1090}
1091
Denys Vlasenkof909c8d2013-02-19 16:30:31 +01001092/* Stack-o-phobic exec helper, in the hope to work around
1093 * NOMMU + "daemonized tracer" difficulty.
1094 */
1095struct exec_params {
1096 int fd_to_close;
1097 uid_t run_euid;
1098 gid_t run_egid;
1099 char **argv;
1100 char *pathname;
1101};
1102static struct exec_params params_for_tracee;
1103static void __attribute__ ((noinline, noreturn))
1104exec_or_die(void)
1105{
1106 struct exec_params *params = &params_for_tracee;
1107
1108 if (params->fd_to_close >= 0)
1109 close(params->fd_to_close);
1110 if (!daemonized_tracer && !use_seize) {
1111 if (ptrace(PTRACE_TRACEME, 0L, 0L, 0L) < 0) {
1112 perror_msg_and_die("ptrace(PTRACE_TRACEME, ...)");
1113 }
1114 }
1115
1116 if (username != NULL) {
1117 /*
1118 * It is important to set groups before we
1119 * lose privileges on setuid.
1120 */
1121 if (initgroups(username, run_gid) < 0) {
1122 perror_msg_and_die("initgroups");
1123 }
1124 if (setregid(run_gid, params->run_egid) < 0) {
1125 perror_msg_and_die("setregid");
1126 }
1127 if (setreuid(run_uid, params->run_euid) < 0) {
1128 perror_msg_and_die("setreuid");
1129 }
1130 }
1131 else if (geteuid() != 0)
1132 if (setreuid(run_uid, run_uid) < 0) {
1133 perror_msg_and_die("setreuid");
1134 }
1135
1136 if (!daemonized_tracer) {
1137 /*
1138 * Induce a ptrace stop. Tracer (our parent)
1139 * will resume us with PTRACE_SYSCALL and display
1140 * the immediately following execve syscall.
1141 * Can't do this on NOMMU systems, we are after
1142 * vfork: parent is blocked, stopping would deadlock.
1143 */
1144 if (!NOMMU_SYSTEM)
1145 kill(getpid(), SIGSTOP);
1146 } else {
1147 alarm(3);
1148 /* we depend on SIGCHLD set to SIG_DFL by init code */
1149 /* if it happens to be SIG_IGN'ed, wait won't block */
1150 wait(NULL);
1151 alarm(0);
1152 }
1153
1154 execv(params->pathname, params->argv);
1155 perror_msg_and_die("exec");
1156}
1157
Roland McGrath02203312007-06-11 22:06:31 +00001158static void
Denys Vlasenko12014262011-05-30 14:00:14 +02001159startup_child(char **argv)
Roland McGrath02203312007-06-11 22:06:31 +00001160{
Dmitry V. Levinc8938e02013-03-20 21:40:15 +00001161 struct_stat statbuf;
Roland McGrath02203312007-06-11 22:06:31 +00001162 const char *filename;
1163 char pathname[MAXPATHLEN];
Denys Vlasenkof909c8d2013-02-19 16:30:31 +01001164 int pid;
Roland McGrath02203312007-06-11 22:06:31 +00001165 struct tcb *tcp;
1166
1167 filename = argv[0];
1168 if (strchr(filename, '/')) {
1169 if (strlen(filename) > sizeof pathname - 1) {
1170 errno = ENAMETOOLONG;
Denys Vlasenkocb2ad002011-06-23 13:05:29 +02001171 perror_msg_and_die("exec");
Roland McGrath02203312007-06-11 22:06:31 +00001172 }
1173 strcpy(pathname, filename);
1174 }
1175#ifdef USE_DEBUGGING_EXEC
1176 /*
1177 * Debuggers customarily check the current directory
1178 * first regardless of the path but doing that gives
1179 * security geeks a panic attack.
1180 */
Dmitry V. Levinc8938e02013-03-20 21:40:15 +00001181 else if (stat_file(filename, &statbuf) == 0)
Roland McGrath02203312007-06-11 22:06:31 +00001182 strcpy(pathname, filename);
1183#endif /* USE_DEBUGGING_EXEC */
1184 else {
Dmitry V. Levin30145dd2010-09-06 22:08:24 +00001185 const char *path;
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +00001186 size_t m, n, len;
Roland McGrath02203312007-06-11 22:06:31 +00001187
1188 for (path = getenv("PATH"); path && *path; path += m) {
Denys Vlasenko4f3df072012-01-29 22:38:35 +01001189 const char *colon = strchr(path, ':');
1190 if (colon) {
1191 n = colon - path;
Roland McGrath02203312007-06-11 22:06:31 +00001192 m = n + 1;
1193 }
1194 else
1195 m = n = strlen(path);
1196 if (n == 0) {
1197 if (!getcwd(pathname, MAXPATHLEN))
1198 continue;
1199 len = strlen(pathname);
1200 }
1201 else if (n > sizeof pathname - 1)
1202 continue;
1203 else {
1204 strncpy(pathname, path, n);
1205 len = n;
1206 }
1207 if (len && pathname[len - 1] != '/')
1208 pathname[len++] = '/';
1209 strcpy(pathname + len, filename);
Dmitry V. Levinc8938e02013-03-20 21:40:15 +00001210 if (stat_file(pathname, &statbuf) == 0 &&
Roland McGrath02203312007-06-11 22:06:31 +00001211 /* Accept only regular files
1212 with some execute bits set.
1213 XXX not perfect, might still fail */
1214 S_ISREG(statbuf.st_mode) &&
1215 (statbuf.st_mode & 0111))
1216 break;
1217 }
1218 }
Dmitry V. Levinc8938e02013-03-20 21:40:15 +00001219 if (stat_file(pathname, &statbuf) < 0) {
Denys Vlasenkocb2ad002011-06-23 13:05:29 +02001220 perror_msg_and_die("Can't stat '%s'", filename);
Roland McGrath02203312007-06-11 22:06:31 +00001221 }
Denys Vlasenkof909c8d2013-02-19 16:30:31 +01001222
1223 params_for_tracee.fd_to_close = (shared_log != stderr) ? fileno(shared_log) : -1;
1224 params_for_tracee.run_euid = (statbuf.st_mode & S_ISUID) ? statbuf.st_uid : run_uid;
1225 params_for_tracee.run_egid = (statbuf.st_mode & S_ISGID) ? statbuf.st_gid : run_gid;
1226 params_for_tracee.argv = argv;
1227 /*
1228 * On NOMMU, can be safely freed only after execve in tracee.
1229 * It's hard to know when that happens, so we just leak it.
1230 */
Denys Vlasenko05f32512013-02-26 12:00:34 +01001231 params_for_tracee.pathname = NOMMU_SYSTEM ? strdup(pathname) : pathname;
Denys Vlasenkof909c8d2013-02-19 16:30:31 +01001232
Dmitry V. Levin882478a2013-05-13 18:43:28 +00001233#if defined HAVE_PRCTL && defined PR_SET_PTRACER && defined PR_SET_PTRACER_ANY
1234 if (daemonized_tracer)
1235 prctl(PR_SET_PTRACER, PR_SET_PTRACER_ANY);
1236#endif
1237
Denys Vlasenkoe8681c92013-06-26 14:27:11 +02001238 pid = fork();
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +00001239 if (pid < 0) {
Denys Vlasenkocb2ad002011-06-23 13:05:29 +02001240 perror_msg_and_die("fork");
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +00001241 }
Denys Vlasenkof909c8d2013-02-19 16:30:31 +01001242 if ((pid != 0 && daemonized_tracer)
1243 || (pid == 0 && !daemonized_tracer)
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +00001244 ) {
Denys Vlasenkof909c8d2013-02-19 16:30:31 +01001245 /* We are to become the tracee. Two cases:
1246 * -D: we are parent
1247 * not -D: we are child
1248 */
1249 exec_or_die();
Roland McGrath02203312007-06-11 22:06:31 +00001250 }
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +00001251
Denys Vlasenko2e968c02011-09-01 10:23:09 +02001252 /* We are the tracer */
Denys Vlasenko75422762011-05-27 14:36:01 +02001253
Denys Vlasenko2e968c02011-09-01 10:23:09 +02001254 if (!daemonized_tracer) {
Denys Vlasenkoe8681c92013-06-26 14:27:11 +02001255 strace_child = pid;
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001256 if (!use_seize) {
1257 /* child did PTRACE_TRACEME, nothing to do in parent */
1258 } else {
Denys Vlasenko5c9d8f42013-02-19 15:30:12 +01001259 if (!NOMMU_SYSTEM) {
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001260 /* Wait until child stopped itself */
1261 int status;
1262 while (waitpid(pid, &status, WSTOPPED) < 0) {
1263 if (errno == EINTR)
1264 continue;
1265 perror_msg_and_die("waitpid");
1266 }
1267 if (!WIFSTOPPED(status) || WSTOPSIG(status) != SIGSTOP) {
Denys Vlasenko75fe85c2012-03-09 15:15:24 +01001268 kill_save_errno(pid, SIGKILL);
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001269 perror_msg_and_die("Unexpected wait status %x", status);
1270 }
1271 }
Denys Vlasenko5c9d8f42013-02-19 15:30:12 +01001272 /* Else: NOMMU case, we have no way to sync.
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001273 * Just attach to it as soon as possible.
1274 * This means that we may miss a few first syscalls...
1275 */
1276
1277 if (ptrace_attach_or_seize(pid)) {
Denys Vlasenko75fe85c2012-03-09 15:15:24 +01001278 kill_save_errno(pid, SIGKILL);
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001279 perror_msg_and_die("Can't attach to %d", pid);
1280 }
Denys Vlasenko5c9d8f42013-02-19 15:30:12 +01001281 if (!NOMMU_SYSTEM)
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001282 kill(pid, SIGCONT);
1283 }
Denys Vlasenko2e968c02011-09-01 10:23:09 +02001284 tcp = alloctcb(pid);
Denys Vlasenko5c9d8f42013-02-19 15:30:12 +01001285 if (!NOMMU_SYSTEM)
Denys Vlasenkofadbf662013-06-26 14:14:29 +02001286 tcp->flags |= TCB_ATTACHED | TCB_STARTUP | post_attach_sigstop;
Denys Vlasenkof88837a2011-09-05 14:05:46 +02001287 else
Denys Vlasenkofadbf662013-06-26 14:14:29 +02001288 tcp->flags |= TCB_ATTACHED | TCB_STARTUP;
Denys Vlasenko3db3b262012-03-16 15:15:14 +01001289 newoutf(tcp);
Denys Vlasenko2e968c02011-09-01 10:23:09 +02001290 }
1291 else {
Denys Vlasenko05f32512013-02-26 12:00:34 +01001292 /* With -D, we are *child* here, IOW: different pid. Fetch it: */
Denys Vlasenko2e968c02011-09-01 10:23:09 +02001293 strace_tracer_pid = getpid();
1294 /* The tracee is our parent: */
1295 pid = getppid();
Denys Vlasenkof2025022012-03-09 15:29:45 +01001296 alloctcb(pid);
1297 /* attaching will be done later, by startup_attach */
Denys Vlasenko3db3b262012-03-16 15:15:14 +01001298 /* note: we don't do newoutf(tcp) here either! */
Denys Vlasenko5c9d8f42013-02-19 15:30:12 +01001299
Denys Vlasenkof909c8d2013-02-19 16:30:31 +01001300 /* NOMMU BUG! -D mode is active, we (child) return,
1301 * and we will scribble over parent's stack!
1302 * When parent later unpauses, it segfaults.
1303 *
1304 * We work around it
1305 * (1) by declaring exec_or_die() NORETURN,
1306 * hopefully compiler will just jump to it
1307 * instead of call (won't push anything to stack),
1308 * (2) by trying very hard in exec_or_die()
1309 * to not use any stack,
1310 * (3) having a really big (MAXPATHLEN) stack object
1311 * in this function, which creates a "buffer" between
1312 * child's and parent's stack pointers.
1313 * This may save us if (1) and (2) failed
1314 * and compiler decided to use stack in exec_or_die() anyway
1315 * (happens on i386 because of stack parameter passing).
Denys Vlasenko05f32512013-02-26 12:00:34 +01001316 *
1317 * A cleaner solution is to use makecontext + setcontext
1318 * to create a genuine separate stack and execute on it.
Denys Vlasenkof909c8d2013-02-19 16:30:31 +01001319 */
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +00001320 }
Roland McGrath02203312007-06-11 22:06:31 +00001321}
1322
Wang Chaob13c0de2010-11-12 17:25:19 +08001323/*
Dmitry V. Levinb1467442010-12-02 20:56:43 +00001324 * Test whether the kernel support PTRACE_O_TRACECLONE et al options.
Wang Chaob13c0de2010-11-12 17:25:19 +08001325 * First fork a new child, call ptrace with PTRACE_SETOPTIONS on it,
Dmitry V. Levinb1467442010-12-02 20:56:43 +00001326 * and then see which options are supported by the kernel.
Wang Chaob13c0de2010-11-12 17:25:19 +08001327 */
Denys Vlasenko8d4ca0c2013-02-06 13:18:42 +01001328static int
Denys Vlasenko3454e4b2011-05-23 21:29:03 +02001329test_ptrace_setoptions_followfork(void)
Wang Chaob13c0de2010-11-12 17:25:19 +08001330{
Dmitry V. Levin2fabd0e2011-02-19 21:33:50 +00001331 int pid, expected_grandchild = 0, found_grandchild = 0;
1332 const unsigned int test_options = PTRACE_O_TRACECLONE |
1333 PTRACE_O_TRACEFORK |
1334 PTRACE_O_TRACEVFORK;
Wang Chaob13c0de2010-11-12 17:25:19 +08001335
Denys Vlasenko05f32512013-02-26 12:00:34 +01001336 /* Need fork for test. NOMMU has no forks */
1337 if (NOMMU_SYSTEM)
1338 goto worked; /* be bold, and pretend that test succeeded */
1339
Denys Vlasenko5d645812011-08-20 12:48:18 +02001340 pid = fork();
1341 if (pid < 0)
Dmitry V. Levin04f8b482011-08-16 18:57:29 +00001342 perror_msg_and_die("fork");
Denys Vlasenko5d645812011-08-20 12:48:18 +02001343 if (pid == 0) {
Dmitry V. Levin04f8b482011-08-16 18:57:29 +00001344 pid = getpid();
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001345 if (ptrace(PTRACE_TRACEME, 0L, 0L, 0L) < 0)
Dmitry V. Levin04f8b482011-08-16 18:57:29 +00001346 perror_msg_and_die("%s: PTRACE_TRACEME doesn't work",
1347 __func__);
Denys Vlasenko4c65c442012-03-08 11:54:10 +01001348 kill_save_errno(pid, SIGSTOP);
Dmitry V. Levin04f8b482011-08-16 18:57:29 +00001349 if (fork() < 0)
1350 perror_msg_and_die("fork");
1351 _exit(0);
Wang Chaob13c0de2010-11-12 17:25:19 +08001352 }
Dmitry V. Levinb1467442010-12-02 20:56:43 +00001353
1354 while (1) {
1355 int status, tracee_pid;
1356
Dmitry V. Levin04f8b482011-08-16 18:57:29 +00001357 errno = 0;
Dmitry V. Levinb1467442010-12-02 20:56:43 +00001358 tracee_pid = wait(&status);
Dmitry V. Levin04f8b482011-08-16 18:57:29 +00001359 if (tracee_pid <= 0) {
Dmitry V. Levinb1467442010-12-02 20:56:43 +00001360 if (errno == EINTR)
1361 continue;
Denys Vlasenko4c65c442012-03-08 11:54:10 +01001362 if (errno == ECHILD)
Dmitry V. Levinb1467442010-12-02 20:56:43 +00001363 break;
Dmitry V. Levin04f8b482011-08-16 18:57:29 +00001364 kill_save_errno(pid, SIGKILL);
1365 perror_msg_and_die("%s: unexpected wait result %d",
1366 __func__, tracee_pid);
1367 }
1368 if (WIFEXITED(status)) {
1369 if (WEXITSTATUS(status)) {
1370 if (tracee_pid != pid)
1371 kill_save_errno(pid, SIGKILL);
1372 error_msg_and_die("%s: unexpected exit status %u",
1373 __func__, WEXITSTATUS(status));
1374 }
1375 continue;
1376 }
1377 if (WIFSIGNALED(status)) {
1378 if (tracee_pid != pid)
1379 kill_save_errno(pid, SIGKILL);
1380 error_msg_and_die("%s: unexpected signal %u",
1381 __func__, WTERMSIG(status));
1382 }
1383 if (!WIFSTOPPED(status)) {
1384 if (tracee_pid != pid)
1385 kill_save_errno(tracee_pid, SIGKILL);
Denys Vlasenko4c65c442012-03-08 11:54:10 +01001386 kill_save_errno(pid, SIGKILL);
Dmitry V. Levin04f8b482011-08-16 18:57:29 +00001387 error_msg_and_die("%s: unexpected wait status %x",
1388 __func__, status);
Dmitry V. Levinb1467442010-12-02 20:56:43 +00001389 }
1390 if (tracee_pid != pid) {
Dmitry V. Levin2fabd0e2011-02-19 21:33:50 +00001391 found_grandchild = tracee_pid;
Dmitry V. Levin04f8b482011-08-16 18:57:29 +00001392 if (ptrace(PTRACE_CONT, tracee_pid, 0, 0) < 0) {
1393 kill_save_errno(tracee_pid, SIGKILL);
1394 kill_save_errno(pid, SIGKILL);
1395 perror_msg_and_die("PTRACE_CONT doesn't work");
Wang Chaob13c0de2010-11-12 17:25:19 +08001396 }
Dmitry V. Levin04f8b482011-08-16 18:57:29 +00001397 continue;
1398 }
1399 switch (WSTOPSIG(status)) {
1400 case SIGSTOP:
1401 if (ptrace(PTRACE_SETOPTIONS, pid, 0, test_options) < 0
1402 && errno != EINVAL && errno != EIO)
1403 perror_msg("PTRACE_SETOPTIONS");
1404 break;
1405 case SIGTRAP:
1406 if (status >> 16 == PTRACE_EVENT_FORK) {
1407 long msg = 0;
1408
1409 if (ptrace(PTRACE_GETEVENTMSG, pid,
1410 NULL, (long) &msg) == 0)
1411 expected_grandchild = msg;
1412 }
1413 break;
1414 }
1415 if (ptrace(PTRACE_SYSCALL, pid, 0, 0) < 0) {
1416 kill_save_errno(pid, SIGKILL);
1417 perror_msg_and_die("PTRACE_SYSCALL doesn't work");
Wang Chaob13c0de2010-11-12 17:25:19 +08001418 }
1419 }
Dmitry V. Levin04f8b482011-08-16 18:57:29 +00001420 if (expected_grandchild && expected_grandchild == found_grandchild) {
Denys Vlasenko05f32512013-02-26 12:00:34 +01001421 worked:
Denys Vlasenkof44cce42011-06-21 14:34:10 +02001422 ptrace_setoptions |= test_options;
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001423 if (debug_flag)
Dmitry V. Levin04f8b482011-08-16 18:57:29 +00001424 fprintf(stderr, "ptrace_setoptions = %#x\n",
1425 ptrace_setoptions);
Denys Vlasenko8d4ca0c2013-02-06 13:18:42 +01001426 return 0;
Dmitry V. Levin04f8b482011-08-16 18:57:29 +00001427 }
1428 error_msg("Test for PTRACE_O_TRACECLONE failed, "
1429 "giving up using this feature.");
Denys Vlasenko8d4ca0c2013-02-06 13:18:42 +01001430 return 1;
Wang Chaob13c0de2010-11-12 17:25:19 +08001431}
Denys Vlasenko3454e4b2011-05-23 21:29:03 +02001432
1433/*
1434 * Test whether the kernel support PTRACE_O_TRACESYSGOOD.
1435 * First fork a new child, call ptrace(PTRACE_SETOPTIONS) on it,
1436 * and then see whether it will stop with (SIGTRAP | 0x80).
1437 *
1438 * Use of this option enables correct handling of user-generated SIGTRAPs,
1439 * and SIGTRAPs generated by special instructions such as int3 on x86:
Denys Vlasenko329fa392014-04-10 09:57:17 +02001440
1441# compile with: gcc -nostartfiles -nostdlib -o int3 int3.S
1442_start: .globl _start
1443 int3
1444 movl $42, %ebx
1445 movl $1, %eax
1446 int $0x80
Denys Vlasenko3454e4b2011-05-23 21:29:03 +02001447 */
Denys Vlasenko8d4ca0c2013-02-06 13:18:42 +01001448static int
Denys Vlasenko3454e4b2011-05-23 21:29:03 +02001449test_ptrace_setoptions_for_all(void)
1450{
Dmitry V. Levin04f8b482011-08-16 18:57:29 +00001451 const unsigned int test_options = PTRACE_O_TRACESYSGOOD |
1452 PTRACE_O_TRACEEXEC;
Denys Vlasenko3454e4b2011-05-23 21:29:03 +02001453 int pid;
1454 int it_worked = 0;
1455
Denys Vlasenko05f32512013-02-26 12:00:34 +01001456 /* Need fork for test. NOMMU has no forks */
Denys Vlasenko5c9d8f42013-02-19 15:30:12 +01001457 if (NOMMU_SYSTEM)
Denys Vlasenko05f32512013-02-26 12:00:34 +01001458 goto worked; /* be bold, and pretend that test succeeded */
Mike Frysinger7ff5ed92012-04-05 01:52:25 -04001459
Denys Vlasenko3454e4b2011-05-23 21:29:03 +02001460 pid = fork();
1461 if (pid < 0)
Denys Vlasenko75422762011-05-27 14:36:01 +02001462 perror_msg_and_die("fork");
Denys Vlasenko3454e4b2011-05-23 21:29:03 +02001463
1464 if (pid == 0) {
1465 pid = getpid();
1466 if (ptrace(PTRACE_TRACEME, 0L, 0L, 0L) < 0)
Denys Vlasenko75422762011-05-27 14:36:01 +02001467 /* Note: exits with exitcode 1 */
Dmitry V. Levin04f8b482011-08-16 18:57:29 +00001468 perror_msg_and_die("%s: PTRACE_TRACEME doesn't work",
1469 __func__);
Denys Vlasenko3454e4b2011-05-23 21:29:03 +02001470 kill(pid, SIGSTOP);
1471 _exit(0); /* parent should see entry into this syscall */
1472 }
1473
1474 while (1) {
1475 int status, tracee_pid;
1476
1477 errno = 0;
1478 tracee_pid = wait(&status);
1479 if (tracee_pid <= 0) {
1480 if (errno == EINTR)
1481 continue;
Dmitry V. Levin04f8b482011-08-16 18:57:29 +00001482 kill_save_errno(pid, SIGKILL);
1483 perror_msg_and_die("%s: unexpected wait result %d",
1484 __func__, tracee_pid);
Denys Vlasenko3454e4b2011-05-23 21:29:03 +02001485 }
Denys Vlasenko75422762011-05-27 14:36:01 +02001486 if (WIFEXITED(status)) {
1487 if (WEXITSTATUS(status) == 0)
1488 break;
Dmitry V. Levin04f8b482011-08-16 18:57:29 +00001489 error_msg_and_die("%s: unexpected exit status %u",
1490 __func__, WEXITSTATUS(status));
1491 }
1492 if (WIFSIGNALED(status)) {
1493 error_msg_and_die("%s: unexpected signal %u",
1494 __func__, WTERMSIG(status));
Denys Vlasenko75422762011-05-27 14:36:01 +02001495 }
Denys Vlasenko3454e4b2011-05-23 21:29:03 +02001496 if (!WIFSTOPPED(status)) {
1497 kill(pid, SIGKILL);
Dmitry V. Levin04f8b482011-08-16 18:57:29 +00001498 error_msg_and_die("%s: unexpected wait status %x",
1499 __func__, status);
Denys Vlasenko3454e4b2011-05-23 21:29:03 +02001500 }
1501 if (WSTOPSIG(status) == SIGSTOP) {
1502 /*
1503 * We don't check "options aren't accepted" error.
1504 * If it happens, we'll never get (SIGTRAP | 0x80),
1505 * and thus will decide to not use the option.
1506 * IOW: the outcome of the test will be correct.
1507 */
Dmitry V. Levin04f8b482011-08-16 18:57:29 +00001508 if (ptrace(PTRACE_SETOPTIONS, pid, 0L, test_options) < 0
1509 && errno != EINVAL && errno != EIO)
1510 perror_msg("PTRACE_SETOPTIONS");
Denys Vlasenko3454e4b2011-05-23 21:29:03 +02001511 }
1512 if (WSTOPSIG(status) == (SIGTRAP | 0x80)) {
1513 it_worked = 1;
1514 }
1515 if (ptrace(PTRACE_SYSCALL, pid, 0L, 0L) < 0) {
Dmitry V. Levin04f8b482011-08-16 18:57:29 +00001516 kill_save_errno(pid, SIGKILL);
Denys Vlasenko75422762011-05-27 14:36:01 +02001517 perror_msg_and_die("PTRACE_SYSCALL doesn't work");
Denys Vlasenko3454e4b2011-05-23 21:29:03 +02001518 }
1519 }
1520
1521 if (it_worked) {
Denys Vlasenko05f32512013-02-26 12:00:34 +01001522 worked:
Denys Vlasenko75422762011-05-27 14:36:01 +02001523 syscall_trap_sig = (SIGTRAP | 0x80);
Denys Vlasenkof44cce42011-06-21 14:34:10 +02001524 ptrace_setoptions |= test_options;
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001525 if (debug_flag)
Denys Vlasenkof44cce42011-06-21 14:34:10 +02001526 fprintf(stderr, "ptrace_setoptions = %#x\n",
1527 ptrace_setoptions);
Denys Vlasenko8d4ca0c2013-02-06 13:18:42 +01001528 return 0;
Denys Vlasenko3454e4b2011-05-23 21:29:03 +02001529 }
1530
Dmitry V. Levin04f8b482011-08-16 18:57:29 +00001531 error_msg("Test for PTRACE_O_TRACESYSGOOD failed, "
1532 "giving up using this feature.");
Denys Vlasenko8d4ca0c2013-02-06 13:18:42 +01001533 return 1;
Denys Vlasenko3454e4b2011-05-23 21:29:03 +02001534}
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001535
Denys Vlasenko5c9d8f42013-02-19 15:30:12 +01001536#if USE_SEIZE
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001537static void
1538test_ptrace_seize(void)
1539{
1540 int pid;
1541
Denys Vlasenko05f32512013-02-26 12:00:34 +01001542 /* Need fork for test. NOMMU has no forks */
Denys Vlasenko5c9d8f42013-02-19 15:30:12 +01001543 if (NOMMU_SYSTEM) {
1544 post_attach_sigstop = 0; /* this sets use_seize to 1 */
1545 return;
1546 }
1547
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001548 pid = fork();
1549 if (pid < 0)
1550 perror_msg_and_die("fork");
1551
1552 if (pid == 0) {
1553 pause();
1554 _exit(0);
1555 }
1556
1557 /* PTRACE_SEIZE, unlike ATTACH, doesn't force tracee to trap. After
1558 * attaching tracee continues to run unless a trap condition occurs.
1559 * PTRACE_SEIZE doesn't affect signal or group stop state.
1560 */
Denys Vlasenko26bc0602012-07-10 16:36:32 +02001561 if (ptrace(PTRACE_SEIZE, pid, 0, 0) == 0) {
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001562 post_attach_sigstop = 0; /* this sets use_seize to 1 */
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001563 } else if (debug_flag) {
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001564 fprintf(stderr, "PTRACE_SEIZE doesn't work\n");
1565 }
1566
1567 kill(pid, SIGKILL);
1568
1569 while (1) {
1570 int status, tracee_pid;
1571
1572 errno = 0;
1573 tracee_pid = waitpid(pid, &status, 0);
1574 if (tracee_pid <= 0) {
1575 if (errno == EINTR)
1576 continue;
1577 perror_msg_and_die("%s: unexpected wait result %d",
1578 __func__, tracee_pid);
1579 }
1580 if (WIFSIGNALED(status)) {
1581 return;
1582 }
1583 error_msg_and_die("%s: unexpected wait status %x",
1584 __func__, status);
1585 }
1586}
Denys Vlasenko978fbc92012-09-13 10:28:43 +02001587#else /* !USE_SEIZE */
1588# define test_ptrace_seize() ((void)0)
1589#endif
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001590
Denys Vlasenko6e0bfd12012-03-15 14:36:28 +01001591static unsigned
Denys Vlasenkof7db5dd2012-01-28 01:16:02 +01001592get_os_release(void)
1593{
Denys Vlasenko6e0bfd12012-03-15 14:36:28 +01001594 unsigned rel;
1595 const char *p;
Denys Vlasenkof7db5dd2012-01-28 01:16:02 +01001596 struct utsname u;
1597 if (uname(&u) < 0)
1598 perror_msg_and_die("uname");
Denys Vlasenko6e0bfd12012-03-15 14:36:28 +01001599 /* u.release has this form: "3.2.9[-some-garbage]" */
1600 rel = 0;
1601 p = u.release;
1602 for (;;) {
1603 if (!(*p >= '0' && *p <= '9'))
1604 error_msg_and_die("Bad OS release string: '%s'", u.release);
1605 /* Note: this open-codes KERNEL_VERSION(): */
1606 rel = (rel << 8) | atoi(p);
1607 if (rel >= KERNEL_VERSION(1,0,0))
1608 break;
1609 while (*p >= '0' && *p <= '9')
1610 p++;
Dmitry V. Levin0dbc80d2012-05-14 23:42:10 +00001611 if (*p != '.') {
1612 if (rel >= KERNEL_VERSION(0,1,0)) {
1613 /* "X.Y-something" means "X.Y.0" */
1614 rel <<= 8;
1615 break;
1616 }
Denys Vlasenko6e0bfd12012-03-15 14:36:28 +01001617 error_msg_and_die("Bad OS release string: '%s'", u.release);
Dmitry V. Levin0dbc80d2012-05-14 23:42:10 +00001618 }
Denys Vlasenko6e0bfd12012-03-15 14:36:28 +01001619 p++;
1620 }
1621 return rel;
Denys Vlasenkof7db5dd2012-01-28 01:16:02 +01001622}
1623
Denys Vlasenkoecc8b972012-03-12 23:05:25 +01001624/*
1625 * Initialization part of main() was eating much stack (~0.5k),
1626 * which was unused after init.
1627 * We can reuse it if we move init code into a separate function.
1628 *
1629 * Don't want main() to inline us and defeat the reason
1630 * we have a separate function.
1631 */
1632static void __attribute__ ((noinline))
1633init(int argc, char *argv[])
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001634{
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001635 struct tcb *tcp;
Dmitry V. Levinccee1692012-03-25 21:49:48 +00001636 int c, i;
Dmitry V. Levin06350db2008-07-25 15:42:34 +00001637 int optF = 0;
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +00001638 unsigned int tcbi;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001639 struct sigaction sa;
1640
Dmitry V. Levin08b623e2007-10-08 21:04:41 +00001641 progname = argv[0] ? argv[0] : "strace";
1642
Denys Vlasenkoa5090542012-03-15 17:27:49 +01001643 /* Make sure SIGCHLD has the default action so that waitpid
1644 definitely works without losing track of children. The user
1645 should not have given us a bogus state to inherit, but he might
1646 have. Arguably we should detect SIG_IGN here and pass it on
1647 to children, but probably noone really needs that. */
1648 signal(SIGCHLD, SIG_DFL);
1649
Denys Vlasenko75422762011-05-27 14:36:01 +02001650 strace_tracer_pid = getpid();
1651
Denys Vlasenko6e0bfd12012-03-15 14:36:28 +01001652 os_release = get_os_release();
Denys Vlasenkof7db5dd2012-01-28 01:16:02 +01001653
Roland McGrathee9d4352002-12-18 04:16:10 +00001654 /* Allocate the initial tcbtab. */
1655 tcbtabsize = argc; /* Surely enough for all -p args. */
Denys Vlasenko4f12af22011-06-23 13:16:23 +02001656 tcbtab = calloc(tcbtabsize, sizeof(tcbtab[0]));
Denys Vlasenko1d46ba52011-08-31 14:00:02 +02001657 if (!tcbtab)
1658 die_out_of_memory();
Denys Vlasenko4f12af22011-06-23 13:16:23 +02001659 tcp = calloc(tcbtabsize, sizeof(*tcp));
Denys Vlasenko1d46ba52011-08-31 14:00:02 +02001660 if (!tcp)
1661 die_out_of_memory();
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +00001662 for (tcbi = 0; tcbi < tcbtabsize; tcbi++)
1663 tcbtab[tcbi] = tcp++;
Roland McGrathee9d4352002-12-18 04:16:10 +00001664
Denys Vlasenko6764f8f2012-03-22 09:56:20 +01001665 shared_log = stderr;
Roland McGrath138c6a32006-01-12 09:50:49 +00001666 set_sortby(DEFAULT_SORTBY);
1667 set_personality(DEFAULT_PERSONALITY);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001668 qualify("trace=all");
1669 qualify("abbrev=all");
1670 qualify("verbose=all");
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01001671#if DEFAULT_QUAL_FLAGS != (QUAL_TRACE | QUAL_ABBREV | QUAL_VERBOSE)
1672# error Bug in DEFAULT_QUAL_FLAGS
1673#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001674 qualify("signal=all");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001675 while ((c = getopt(argc, argv,
Mark Hillse53bf232014-05-28 17:52:40 +01001676 "+b:cCdfFhiqrtTvVwxyz"
Luca Clementi327064b2013-07-23 00:11:35 -07001677#ifdef USE_LIBUNWIND
1678 "k"
1679#endif
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +00001680 "D"
Denys Vlasenkob51581e2012-01-29 16:53:03 +01001681 "a:e:o:O:p:s:S:u:E:P:I:")) != EOF) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001682 switch (c) {
Denys Vlasenko61e7aad2012-03-15 13:44:17 +01001683 case 'b':
Denys Vlasenko22efaf02013-02-27 12:15:19 +01001684 if (strcmp(optarg, "execve") != 0)
1685 error_msg_and_die("Syscall '%s' for -b isn't supported",
1686 optarg);
Denys Vlasenko61e7aad2012-03-15 13:44:17 +01001687 detach_on_execve = 1;
1688 break;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001689 case 'c':
Dmitry V. Levine3a7ef52010-03-28 19:24:54 +00001690 if (cflag == CFLAG_BOTH) {
Denys Vlasenkoc5ccfa42012-03-26 13:10:50 +02001691 error_msg_and_die("-c and -C are mutually exclusive");
Dmitry V. Levine3a7ef52010-03-28 19:24:54 +00001692 }
1693 cflag = CFLAG_ONLY_STATS;
1694 break;
1695 case 'C':
1696 if (cflag == CFLAG_ONLY_STATS) {
Denys Vlasenkoc5ccfa42012-03-26 13:10:50 +02001697 error_msg_and_die("-c and -C are mutually exclusive");
Dmitry V. Levine3a7ef52010-03-28 19:24:54 +00001698 }
1699 cflag = CFLAG_BOTH;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001700 break;
1701 case 'd':
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001702 debug_flag = 1;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001703 break;
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +00001704 case 'D':
1705 daemonized_tracer = 1;
1706 break;
Roland McGrath41c48222008-07-18 00:25:10 +00001707 case 'F':
Dmitry V. Levin06350db2008-07-25 15:42:34 +00001708 optF = 1;
1709 break;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001710 case 'f':
1711 followfork++;
1712 break;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001713 case 'h':
1714 usage(stdout, 0);
1715 break;
1716 case 'i':
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001717 iflag = 1;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001718 break;
1719 case 'q':
Daniel P. Berrange01997cf2013-05-13 11:30:55 +01001720 qflag++;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001721 break;
1722 case 'r':
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001723 rflag = 1;
1724 /* fall through to tflag++ */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001725 case 't':
1726 tflag++;
1727 break;
1728 case 'T':
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001729 Tflag = 1;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001730 break;
Mark Hillse53bf232014-05-28 17:52:40 +01001731 case 'w':
1732 count_wallclock = 1;
1733 break;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001734 case 'x':
1735 xflag++;
1736 break;
Grant Edwards8a082772011-04-07 20:25:40 +00001737 case 'y':
Dmitry V. Levin45e7b182014-08-08 23:38:26 +00001738 show_fd_path++;
Grant Edwards8a082772011-04-07 20:25:40 +00001739 break;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001740 case 'v':
1741 qualify("abbrev=none");
1742 break;
1743 case 'V':
Roland McGrath9c9a2532003-02-20 02:56:29 +00001744 printf("%s -- version %s\n", PACKAGE_NAME, VERSION);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001745 exit(0);
1746 break;
Michal Ludvig17f8fb32002-11-06 13:17:21 +00001747 case 'z':
1748 not_failing_only = 1;
1749 break;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001750 case 'a':
Dmitry V. Levinccee1692012-03-25 21:49:48 +00001751 acolumn = string_to_uint(optarg);
Denys Vlasenko102ec492011-08-25 01:27:59 +02001752 if (acolumn < 0)
Dmitry V. Levinccee1692012-03-25 21:49:48 +00001753 error_opt_arg(c, optarg);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001754 break;
1755 case 'e':
1756 qualify(optarg);
1757 break;
1758 case 'o':
1759 outfname = strdup(optarg);
1760 break;
1761 case 'O':
Dmitry V. Levinccee1692012-03-25 21:49:48 +00001762 i = string_to_uint(optarg);
1763 if (i < 0)
1764 error_opt_arg(c, optarg);
1765 set_overhead(i);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001766 break;
1767 case 'p':
Denys Vlasenkoe8172b72012-03-09 13:01:04 +01001768 process_opt_p_list(optarg);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001769 break;
Grant Edwards8a082772011-04-07 20:25:40 +00001770 case 'P':
Denys Vlasenko7239dbc2013-03-05 15:46:34 +01001771 pathtrace_select(optarg);
Grant Edwards8a082772011-04-07 20:25:40 +00001772 break;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001773 case 's':
Dmitry V. Levinccee1692012-03-25 21:49:48 +00001774 i = string_to_uint(optarg);
1775 if (i < 0)
1776 error_opt_arg(c, optarg);
1777 max_strlen = i;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001778 break;
1779 case 'S':
1780 set_sortby(optarg);
1781 break;
1782 case 'u':
1783 username = strdup(optarg);
1784 break;
Luca Clementi327064b2013-07-23 00:11:35 -07001785#ifdef USE_LIBUNWIND
1786 case 'k':
1787 stack_trace_enabled = true;
1788 break;
1789#endif
Roland McGrathde6e5332003-01-24 04:31:23 +00001790 case 'E':
Denys Vlasenko1d46ba52011-08-31 14:00:02 +02001791 if (putenv(optarg) < 0)
1792 die_out_of_memory();
Roland McGrathde6e5332003-01-24 04:31:23 +00001793 break;
Denys Vlasenkob51581e2012-01-29 16:53:03 +01001794 case 'I':
Dmitry V. Levinccee1692012-03-25 21:49:48 +00001795 opt_intr = string_to_uint(optarg);
1796 if (opt_intr <= 0 || opt_intr >= NUM_INTR_OPTS)
1797 error_opt_arg(c, optarg);
Denys Vlasenkob51581e2012-01-29 16:53:03 +01001798 break;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001799 default:
1800 usage(stderr, 1);
1801 break;
1802 }
1803 }
Denys Vlasenko837399a2012-01-24 11:37:03 +01001804 argv += optind;
1805 /* argc -= optind; - no need, argc is not used below */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001806
Denys Vlasenko102ec492011-08-25 01:27:59 +02001807 acolumn_spaces = malloc(acolumn + 1);
1808 if (!acolumn_spaces)
Denys Vlasenko1d46ba52011-08-31 14:00:02 +02001809 die_out_of_memory();
Denys Vlasenko102ec492011-08-25 01:27:59 +02001810 memset(acolumn_spaces, ' ', acolumn);
1811 acolumn_spaces[acolumn] = '\0';
1812
Denys Vlasenko837399a2012-01-24 11:37:03 +01001813 /* Must have PROG [ARGS], or -p PID. Not both. */
Denys Vlasenkofd883382012-03-09 13:03:41 +01001814 if (!argv[0] == !nprocs)
Roland McGrathce0d1542003-11-11 21:24:23 +00001815 usage(stderr, 1);
1816
Denys Vlasenkofd883382012-03-09 13:03:41 +01001817 if (nprocs != 0 && daemonized_tracer) {
Denys Vlasenkoc5ccfa42012-03-26 13:10:50 +02001818 error_msg_and_die("-D and -p are mutually exclusive");
Wang Chaod322a4b2010-08-05 14:30:11 +08001819 }
1820
Dmitry V. Levin06350db2008-07-25 15:42:34 +00001821 if (!followfork)
1822 followfork = optF;
1823
Denys Vlasenko3db3b262012-03-16 15:15:14 +01001824 if (followfork >= 2 && cflag) {
Denys Vlasenkoc5ccfa42012-03-26 13:10:50 +02001825 error_msg_and_die("(-c or -C) and -ff are mutually exclusive");
Roland McGrathcb9def62006-04-25 07:48:03 +00001826 }
1827
Mark Hillse53bf232014-05-28 17:52:40 +01001828 if (count_wallclock && !cflag) {
1829 error_msg_and_die("-w must be given with (-c or -C)");
1830 }
1831
Dmitry V. Levin2727aae2014-06-03 13:20:05 +00001832 if (cflag == CFLAG_ONLY_STATS) {
1833 if (iflag)
1834 error_msg("-%c has no effect with -c", 'i');
1835#ifdef USE_LIBUNWIND
1836 if (stack_trace_enabled)
1837 error_msg("-%c has no effect with -c", 'k');
1838#endif
1839 if (rflag)
1840 error_msg("-%c has no effect with -c", 'r');
1841 if (tflag)
1842 error_msg("-%c has no effect with -c", 't');
1843 if (Tflag)
1844 error_msg("-%c has no effect with -c", 'T');
1845 if (show_fd_path)
1846 error_msg("-%c has no effect with -c", 'y');
1847 }
1848
1849#ifdef USE_LIBUNWIND
1850 if (stack_trace_enabled)
1851 unwind_init();
1852#endif
1853
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001854 /* See if they want to run as another user. */
1855 if (username != NULL) {
1856 struct passwd *pent;
1857
1858 if (getuid() != 0 || geteuid() != 0) {
Denys Vlasenkocb2ad002011-06-23 13:05:29 +02001859 error_msg_and_die("You must be root to use the -u option");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001860 }
Denys Vlasenko5d645812011-08-20 12:48:18 +02001861 pent = getpwnam(username);
1862 if (pent == NULL) {
Denys Vlasenkocb2ad002011-06-23 13:05:29 +02001863 error_msg_and_die("Cannot find user '%s'", username);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001864 }
1865 run_uid = pent->pw_uid;
1866 run_gid = pent->pw_gid;
1867 }
1868 else {
1869 run_uid = getuid();
1870 run_gid = getgid();
1871 }
1872
Denys Vlasenko8d4ca0c2013-02-06 13:18:42 +01001873 /*
1874 * On any reasonably recent Linux kernel (circa about 2.5.46)
1875 * need_fork_exec_workarounds should stay 0 after these tests:
1876 */
1877 /*need_fork_exec_workarounds = 0; - already is */
Dmitry V. Levin04f8b482011-08-16 18:57:29 +00001878 if (followfork)
Denys Vlasenko8d4ca0c2013-02-06 13:18:42 +01001879 need_fork_exec_workarounds = test_ptrace_setoptions_followfork();
1880 need_fork_exec_workarounds |= test_ptrace_setoptions_for_all();
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001881 test_ptrace_seize();
Dmitry V. Levin8044bc12010-12-07 12:50:49 +00001882
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001883 /* Check if they want to redirect the output. */
1884 if (outfname) {
Roland McGrath37b9a662003-11-07 02:26:54 +00001885 /* See if they want to pipe the output. */
1886 if (outfname[0] == '|' || outfname[0] == '!') {
1887 /*
1888 * We can't do the <outfname>.PID funny business
1889 * when using popen, so prohibit it.
1890 */
Denys Vlasenko3db3b262012-03-16 15:15:14 +01001891 if (followfork >= 2)
Denys Vlasenko7dd23382011-06-22 13:03:56 +02001892 error_msg_and_die("Piping the output and -ff are mutually exclusive");
Denys Vlasenko6764f8f2012-03-22 09:56:20 +01001893 shared_log = strace_popen(outfname + 1);
Roland McGrath37b9a662003-11-07 02:26:54 +00001894 }
Denys Vlasenko3db3b262012-03-16 15:15:14 +01001895 else if (followfork < 2)
Denys Vlasenko6764f8f2012-03-22 09:56:20 +01001896 shared_log = strace_fopen(outfname);
Denys Vlasenko328bf252012-03-12 23:34:13 +01001897 } else {
1898 /* -ff without -o FILE is the same as single -f */
Denys Vlasenko3db3b262012-03-16 15:15:14 +01001899 if (followfork >= 2)
Denys Vlasenko328bf252012-03-12 23:34:13 +01001900 followfork = 1;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001901 }
1902
Denys Vlasenkocb2ad002011-06-23 13:05:29 +02001903 if (!outfname || outfname[0] == '|' || outfname[0] == '!') {
Denys Vlasenkoa677da52012-01-24 11:31:51 +01001904 char *buf = malloc(BUFSIZ);
1905 if (!buf)
1906 die_out_of_memory();
Denys Vlasenko6764f8f2012-03-22 09:56:20 +01001907 setvbuf(shared_log, buf, _IOLBF, BUFSIZ);
Denys Vlasenkocb2ad002011-06-23 13:05:29 +02001908 }
Denys Vlasenko837399a2012-01-24 11:37:03 +01001909 if (outfname && argv[0]) {
Denys Vlasenkob51581e2012-01-29 16:53:03 +01001910 if (!opt_intr)
1911 opt_intr = INTR_NEVER;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001912 qflag = 1;
Roland McGrath36931052003-06-03 01:35:20 +00001913 }
Denys Vlasenkob51581e2012-01-29 16:53:03 +01001914 if (!opt_intr)
1915 opt_intr = INTR_WHILE_WAIT;
Wang Chaob13c0de2010-11-12 17:25:19 +08001916
Denys Vlasenkob51581e2012-01-29 16:53:03 +01001917 /* argv[0] -pPID -oFILE Default interactive setting
1918 * yes 0 0 INTR_WHILE_WAIT
1919 * no 1 0 INTR_WHILE_WAIT
1920 * yes 0 1 INTR_NEVER
1921 * no 1 1 INTR_WHILE_WAIT
Roland McGrath54cc1c82007-11-03 23:34:11 +00001922 */
1923
Denys Vlasenko5c9d8f42013-02-19 15:30:12 +01001924 sigemptyset(&empty_set);
1925 sigemptyset(&blocked_set);
1926
Denys Vlasenkof909c8d2013-02-19 16:30:31 +01001927 /* startup_child() must be called before the signal handlers get
1928 * installed below as they are inherited into the spawned process.
1929 * Also we do not need to be protected by them as during interruption
1930 * in the startup_child() mode we kill the spawned process anyway.
1931 */
Denys Vlasenko61e7aad2012-03-15 13:44:17 +01001932 if (argv[0]) {
Dmitry V. Levin1d2435b2013-05-14 22:35:46 +00001933 if (!NOMMU_SYSTEM || daemonized_tracer)
1934 hide_log_until_execve = 1;
Denys Vlasenko2a3d2752013-05-14 16:07:46 +02001935 skip_one_b_execve = 1;
Denys Vlasenko837399a2012-01-24 11:37:03 +01001936 startup_child(argv);
Denys Vlasenko61e7aad2012-03-15 13:44:17 +01001937 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001938
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001939 sa.sa_handler = SIG_IGN;
1940 sigemptyset(&sa.sa_mask);
1941 sa.sa_flags = 0;
Denys Vlasenkob51581e2012-01-29 16:53:03 +01001942 sigaction(SIGTTOU, &sa, NULL); /* SIG_IGN */
1943 sigaction(SIGTTIN, &sa, NULL); /* SIG_IGN */
1944 if (opt_intr != INTR_ANYWHERE) {
1945 if (opt_intr == INTR_BLOCK_TSTP_TOO)
1946 sigaction(SIGTSTP, &sa, NULL); /* SIG_IGN */
1947 /*
1948 * In interactive mode (if no -o OUTFILE, or -p PID is used),
1949 * fatal signals are blocked while syscall stop is processed,
1950 * and acted on in between, when waiting for new syscall stops.
1951 * In non-interactive mode, signals are ignored.
1952 */
1953 if (opt_intr == INTR_WHILE_WAIT) {
1954 sigaddset(&blocked_set, SIGHUP);
1955 sigaddset(&blocked_set, SIGINT);
1956 sigaddset(&blocked_set, SIGQUIT);
1957 sigaddset(&blocked_set, SIGPIPE);
1958 sigaddset(&blocked_set, SIGTERM);
1959 sa.sa_handler = interrupt;
Denys Vlasenkob51581e2012-01-29 16:53:03 +01001960 }
1961 /* SIG_IGN, or set handler for these */
1962 sigaction(SIGHUP, &sa, NULL);
1963 sigaction(SIGINT, &sa, NULL);
1964 sigaction(SIGQUIT, &sa, NULL);
1965 sigaction(SIGPIPE, &sa, NULL);
1966 sigaction(SIGTERM, &sa, NULL);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001967 }
Denys Vlasenkofd883382012-03-09 13:03:41 +01001968 if (nprocs != 0 || daemonized_tracer)
Roland McGrath02203312007-06-11 22:06:31 +00001969 startup_attach();
Roland McGrath02203312007-06-11 22:06:31 +00001970
Denys Vlasenkofd883382012-03-09 13:03:41 +01001971 /* Do we want pids printed in our -o OUTFILE?
1972 * -ff: no (every pid has its own file); or
1973 * -f: yes (there can be more pids in the future); or
1974 * -p PID1,PID2: yes (there are already more than one pid)
1975 */
1976 print_pid_pfx = (outfname && followfork < 2 && (followfork == 1 || nprocs > 1));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001977}
1978
Denys Vlasenkoeebb04d2012-01-27 15:24:48 +01001979static struct tcb *
Roland McGrath54e931f2010-09-14 18:59:20 -07001980pid2tcb(int pid)
1981{
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +00001982 unsigned int i;
Roland McGrath54e931f2010-09-14 18:59:20 -07001983
1984 if (pid <= 0)
1985 return NULL;
1986
1987 for (i = 0; i < tcbtabsize; i++) {
1988 struct tcb *tcp = tcbtab[i];
Denys Vlasenkofadbf662013-06-26 14:14:29 +02001989 if (tcp->pid == pid)
Roland McGrath54e931f2010-09-14 18:59:20 -07001990 return tcp;
1991 }
1992
1993 return NULL;
1994}
1995
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001996static void
Denys Vlasenko12014262011-05-30 14:00:14 +02001997cleanup(void)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001998{
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +00001999 unsigned int i;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002000 struct tcb *tcp;
Denys Vlasenko35218842012-01-29 21:17:56 +01002001 int fatal_sig;
2002
2003 /* 'interrupted' is a volatile object, fetch it only once */
2004 fatal_sig = interrupted;
2005 if (!fatal_sig)
2006 fatal_sig = SIGTERM;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002007
Roland McGrathee9d4352002-12-18 04:16:10 +00002008 for (i = 0; i < tcbtabsize; i++) {
2009 tcp = tcbtab[i];
Denys Vlasenkofadbf662013-06-26 14:14:29 +02002010 if (!tcp->pid)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002011 continue;
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01002012 if (debug_flag)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002013 fprintf(stderr,
2014 "cleanup: looking at pid %u\n", tcp->pid);
Denys Vlasenkofadbf662013-06-26 14:14:29 +02002015 if (tcp->pid == strace_child) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002016 kill(tcp->pid, SIGCONT);
Denys Vlasenkoa3559252012-01-29 16:43:51 +01002017 kill(tcp->pid, fatal_sig);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002018 }
Denys Vlasenko7de265d2012-03-13 11:44:31 +01002019 detach(tcp);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002020 }
2021 if (cflag)
Denys Vlasenko6764f8f2012-03-22 09:56:20 +01002022 call_summary(shared_log);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002023}
2024
2025static void
Denys Vlasenko12014262011-05-30 14:00:14 +02002026interrupt(int sig)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002027{
Denys Vlasenkoa3559252012-01-29 16:43:51 +01002028 interrupted = sig;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002029}
2030
Denys Vlasenkod0ffdf42013-07-01 13:02:33 +02002031static void
Denys Vlasenko12014262011-05-30 14:00:14 +02002032trace(void)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002033{
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002034 struct rusage ru;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002035
Denys Vlasenkod2e1f422013-07-08 11:28:27 +02002036 /* Used to be "while (nprocs != 0)", but in this testcase:
2037 * int main() { _exit(!!fork()); }
2038 * under strace -f, parent sometimes (rarely) manages
2039 * to exit before we see the first stop of the child,
2040 * and we are losing track of it:
2041 * 19923 clone(...) = 19924
2042 * 19923 exit_group(1) = ?
2043 * 19923 +++ exited with 1 +++
2044 * Waiting for ECHILD works better.
Denys Vlasenko7c41ce22013-07-08 13:55:04 +02002045 * (However, if -o|logger is in use, we can't do that.
2046 * Can work around that by double-forking the logger,
2047 * but that loses the ability to wait for its completion on exit.
2048 * Oh well...)
Denys Vlasenkod2e1f422013-07-08 11:28:27 +02002049 */
2050 while (1) {
Denys Vlasenkof7db5dd2012-01-28 01:16:02 +01002051 int pid;
2052 int wait_errno;
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +00002053 int status;
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01002054 int stopped;
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +00002055 unsigned int sig;
Denys Vlasenkof7db5dd2012-01-28 01:16:02 +01002056 unsigned event;
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +00002057 struct tcb *tcp;
Denys Vlasenkof7db5dd2012-01-28 01:16:02 +01002058
Denys Vlasenko222713a2009-03-17 14:29:59 +00002059 if (interrupted)
Denys Vlasenkod0ffdf42013-07-01 13:02:33 +02002060 return;
Denys Vlasenko725dd422013-06-20 11:06:58 +02002061
Denys Vlasenko7c41ce22013-07-08 13:55:04 +02002062 if (popen_pid != 0 && nprocs == 0)
2063 return;
2064
Roland McGratheb9e2e82009-06-02 16:49:22 -07002065 if (interactive)
2066 sigprocmask(SIG_SETMASK, &empty_set, NULL);
Denys Vlasenko725dd422013-06-20 11:06:58 +02002067 pid = wait4(-1, &status, __WALL, (cflag ? &ru : NULL));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002068 wait_errno = errno;
Roland McGratheb9e2e82009-06-02 16:49:22 -07002069 if (interactive)
2070 sigprocmask(SIG_BLOCK, &blocked_set, NULL);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002071
Denys Vlasenko26d1b1e2011-08-15 12:24:14 +02002072 if (pid < 0) {
Denys Vlasenko725dd422013-06-20 11:06:58 +02002073 if (wait_errno == EINTR)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002074 continue;
Denys Vlasenkod2e1f422013-07-08 11:28:27 +02002075 if (nprocs == 0 && wait_errno == ECHILD)
Denys Vlasenkod0ffdf42013-07-01 13:02:33 +02002076 return;
Denys Vlasenkod2e1f422013-07-08 11:28:27 +02002077 /* If nprocs > 0, ECHILD is not expected,
2078 * treat it as any other error here:
2079 */
Denys Vlasenko725dd422013-06-20 11:06:58 +02002080 errno = wait_errno;
Denys Vlasenkod0ffdf42013-07-01 13:02:33 +02002081 perror_msg_and_die("wait4(__WALL)");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002082 }
Denys Vlasenko725dd422013-06-20 11:06:58 +02002083
Dmitry V. Levin10de62b2006-12-13 21:45:31 +00002084 if (pid == popen_pid) {
Denys Vlasenkoc8511f02013-06-26 14:29:19 +02002085 if (!WIFSTOPPED(status))
Denys Vlasenko7dd23382011-06-22 13:03:56 +02002086 popen_pid = 0;
Dmitry V. Levin10de62b2006-12-13 21:45:31 +00002087 continue;
2088 }
Denys Vlasenkof7db5dd2012-01-28 01:16:02 +01002089
2090 event = ((unsigned)status >> 16);
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01002091 if (debug_flag) {
Denys Vlasenko1d5f12e2011-06-24 16:41:35 +02002092 char buf[sizeof("WIFEXITED,exitcode=%u") + sizeof(int)*3 /*paranoia:*/ + 16];
Denys Vlasenko1b2bfbc2013-06-21 16:41:50 +02002093 char evbuf[sizeof(",EVENT_VFORK_DONE (%u)") + sizeof(int)*3 /*paranoia:*/ + 16];
Denys Vlasenko1d5f12e2011-06-24 16:41:35 +02002094 strcpy(buf, "???");
2095 if (WIFSIGNALED(status))
2096#ifdef WCOREDUMP
2097 sprintf(buf, "WIFSIGNALED,%ssig=%s",
2098 WCOREDUMP(status) ? "core," : "",
2099 signame(WTERMSIG(status)));
2100#else
2101 sprintf(buf, "WIFSIGNALED,sig=%s",
2102 signame(WTERMSIG(status)));
2103#endif
2104 if (WIFEXITED(status))
2105 sprintf(buf, "WIFEXITED,exitcode=%u", WEXITSTATUS(status));
2106 if (WIFSTOPPED(status))
2107 sprintf(buf, "WIFSTOPPED,sig=%s", signame(WSTOPSIG(status)));
Denys Vlasenko5bd67c82011-08-15 11:36:09 +02002108#ifdef WIFCONTINUED
Denys Vlasenkoc8511f02013-06-26 14:29:19 +02002109 /* Should never be seen */
Denys Vlasenko1d5f12e2011-06-24 16:41:35 +02002110 if (WIFCONTINUED(status))
2111 strcpy(buf, "WIFCONTINUED");
Denys Vlasenko5bd67c82011-08-15 11:36:09 +02002112#endif
Denys Vlasenko67559ad2012-03-13 12:05:27 +01002113 evbuf[0] = '\0';
2114 if (event != 0) {
2115 static const char *const event_names[] = {
2116 [PTRACE_EVENT_CLONE] = "CLONE",
2117 [PTRACE_EVENT_FORK] = "FORK",
2118 [PTRACE_EVENT_VFORK] = "VFORK",
2119 [PTRACE_EVENT_VFORK_DONE] = "VFORK_DONE",
2120 [PTRACE_EVENT_EXEC] = "EXEC",
2121 [PTRACE_EVENT_EXIT] = "EXIT",
Denys Vlasenko4e020c02013-06-21 16:33:56 +02002122 /* [PTRACE_EVENT_STOP (=128)] would make biggish array */
Denys Vlasenko67559ad2012-03-13 12:05:27 +01002123 };
Denys Vlasenko1b2bfbc2013-06-21 16:41:50 +02002124 const char *e = "??";
Denys Vlasenko67559ad2012-03-13 12:05:27 +01002125 if (event < ARRAY_SIZE(event_names))
2126 e = event_names[event];
Denys Vlasenko4e020c02013-06-21 16:33:56 +02002127 else if (event == PTRACE_EVENT_STOP)
2128 e = "STOP";
Denys Vlasenko1b2bfbc2013-06-21 16:41:50 +02002129 sprintf(evbuf, ",EVENT_%s (%u)", e, event);
Denys Vlasenko67559ad2012-03-13 12:05:27 +01002130 }
Denys Vlasenko38eab5d2013-07-02 12:18:22 +02002131 fprintf(stderr, " [wait(0x%06x) = %u] %s%s\n", status, pid, buf, evbuf);
Denys Vlasenko1d5f12e2011-06-24 16:41:35 +02002132 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002133
Denys Vlasenkof7db5dd2012-01-28 01:16:02 +01002134 /* Look up 'pid' in our table. */
Denys Vlasenko5d645812011-08-20 12:48:18 +02002135 tcp = pid2tcb(pid);
Denys Vlasenkof7db5dd2012-01-28 01:16:02 +01002136
Denys Vlasenko8511f2a2012-03-22 09:35:51 +01002137 if (!tcp) {
Denys Vlasenkoc8511f02013-06-26 14:29:19 +02002138 if (!WIFSTOPPED(status)) {
2139 /* This can happen if we inherited
2140 * an unknown child. Example:
2141 * (sleep 1 & exec strace sleep 2)
2142 */
2143 error_msg("Exit of unknown pid %u seen", pid);
2144 continue;
2145 }
Roland McGrath41c48222008-07-18 00:25:10 +00002146 if (followfork) {
Denys Vlasenkoc8511f02013-06-26 14:29:19 +02002147 /* We assume it's a fork/vfork/clone child */
Denys Vlasenko418d66a2009-01-17 01:52:54 +00002148 tcp = alloctcb(pid);
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01002149 tcp->flags |= TCB_ATTACHED | TCB_STARTUP | post_attach_sigstop;
Denys Vlasenko3db3b262012-03-16 15:15:14 +01002150 newoutf(tcp);
Roland McGrathe85bbfe2003-01-09 06:53:31 +00002151 if (!qflag)
Denys Vlasenko833fb132011-08-17 11:30:56 +02002152 fprintf(stderr, "Process %d attached\n",
Roland McGrathe85bbfe2003-01-09 06:53:31 +00002153 pid);
Denys Vlasenko8511f2a2012-03-22 09:35:51 +01002154 } else {
Roland McGrathe85bbfe2003-01-09 06:53:31 +00002155 /* This can happen if a clone call used
Denys Vlasenkoc8511f02013-06-26 14:29:19 +02002156 * CLONE_PTRACE itself.
Denys Vlasenko71d3d292013-06-21 16:19:46 +02002157 */
Denys Vlasenkoc8511f02013-06-26 14:29:19 +02002158 ptrace(PTRACE_CONT, pid, (char *) 0, 0);
2159 error_msg("Stop of unknown pid %u seen, PTRACE_CONTed it", pid);
Denys Vlasenko71d3d292013-06-21 16:19:46 +02002160 continue;
Roland McGrathe85bbfe2003-01-09 06:53:31 +00002161 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002162 }
Denys Vlasenko7de265d2012-03-13 11:44:31 +01002163
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01002164 clear_regs();
2165 if (WIFSTOPPED(status))
2166 get_regs(pid);
2167
Denys Vlasenko8511f2a2012-03-22 09:35:51 +01002168 /* Under Linux, execve changes pid to thread leader's pid,
2169 * and we see this changed pid on EVENT_EXEC and later,
2170 * execve sysexit. Leader "disappears" without exit
2171 * notification. Let user know that, drop leader's tcb,
2172 * and fix up pid in execve thread's tcb.
2173 * Effectively, execve thread's tcb replaces leader's tcb.
2174 *
2175 * BTW, leader is 'stuck undead' (doesn't report WIFEXITED
2176 * on exit syscall) in multithreaded programs exactly
2177 * in order to handle this case.
2178 *
2179 * PTRACE_GETEVENTMSG returns old pid starting from Linux 3.0.
2180 * On 2.6 and earlier, it can return garbage.
2181 */
2182 if (event == PTRACE_EVENT_EXEC && os_release >= KERNEL_VERSION(3,0,0)) {
Denys Vlasenko6764f8f2012-03-22 09:56:20 +01002183 FILE *fp;
Denys Vlasenko8511f2a2012-03-22 09:35:51 +01002184 struct tcb *execve_thread;
2185 long old_pid = 0;
2186
2187 if (ptrace(PTRACE_GETEVENTMSG, pid, NULL, (long) &old_pid) < 0)
2188 goto dont_switch_tcbs;
Denys Vlasenko6162a3f2013-07-04 09:26:24 +02002189 /* Avoid truncation in pid2tcb() param passing */
Denys Vlasenko8511f2a2012-03-22 09:35:51 +01002190 if (old_pid <= 0 || old_pid == pid)
2191 goto dont_switch_tcbs;
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +00002192 if ((unsigned long) old_pid > UINT_MAX)
2193 goto dont_switch_tcbs;
Denys Vlasenko8511f2a2012-03-22 09:35:51 +01002194 execve_thread = pid2tcb(old_pid);
2195 /* It should be !NULL, but I feel paranoid */
2196 if (!execve_thread)
2197 goto dont_switch_tcbs;
2198
Denys Vlasenko8511f2a2012-03-22 09:35:51 +01002199 if (execve_thread->curcol != 0) {
2200 /*
2201 * One case we are here is -ff:
2202 * try "strace -oLOG -ff test/threaded_execve"
2203 */
2204 fprintf(execve_thread->outf, " <pid changed to %d ...>\n", pid);
Denys Vlasenko6764f8f2012-03-22 09:56:20 +01002205 /*execve_thread->curcol = 0; - no need, see code below */
Denys Vlasenko8511f2a2012-03-22 09:35:51 +01002206 }
2207 /* Swap output FILEs (needed for -ff) */
Denys Vlasenko6764f8f2012-03-22 09:56:20 +01002208 fp = execve_thread->outf;
2209 execve_thread->outf = tcp->outf;
2210 tcp->outf = fp;
Denys Vlasenko8511f2a2012-03-22 09:35:51 +01002211 /* And their column positions */
Denys Vlasenko6764f8f2012-03-22 09:56:20 +01002212 execve_thread->curcol = tcp->curcol;
2213 tcp->curcol = 0;
Denys Vlasenko8511f2a2012-03-22 09:35:51 +01002214 /* Drop leader, but close execve'd thread outfile (if -ff) */
2215 droptcb(tcp);
2216 /* Switch to the thread, reusing leader's outfile and pid */
2217 tcp = execve_thread;
2218 tcp->pid = pid;
2219 if (cflag != CFLAG_ONLY_STATS) {
2220 printleader(tcp);
2221 tprintf("+++ superseded by execve in pid %lu +++\n", old_pid);
2222 line_ended();
2223 tcp->flags |= TCB_REPRINT;
2224 }
2225 }
2226 dont_switch_tcbs:
2227
Denys Vlasenko2a3d2752013-05-14 16:07:46 +02002228 if (event == PTRACE_EVENT_EXEC) {
2229 if (detach_on_execve && !skip_one_b_execve)
2230 detach(tcp); /* do "-b execve" thingy */
2231 skip_one_b_execve = 0;
Denys Vlasenko8511f2a2012-03-22 09:35:51 +01002232 }
2233
Denys Vlasenko7de265d2012-03-13 11:44:31 +01002234 /* Set current output file */
Denys Vlasenko6764f8f2012-03-22 09:56:20 +01002235 current_tcp = tcp;
Denys Vlasenko7de265d2012-03-13 11:44:31 +01002236
Denys Vlasenko13d22f12011-06-24 23:01:57 +02002237 if (cflag) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002238 tv_sub(&tcp->dtime, &ru.ru_stime, &tcp->stime);
2239 tcp->stime = ru.ru_stime;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002240 }
Roland McGratheb9e2e82009-06-02 16:49:22 -07002241
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002242 if (WIFSIGNALED(status)) {
Dmitry V. Levina6809652008-11-10 17:14:58 +00002243 if (pid == strace_child)
2244 exit_code = 0x100 | WTERMSIG(status);
Dmitry V. Levine3a7ef52010-03-28 19:24:54 +00002245 if (cflag != CFLAG_ONLY_STATS
Denys Vlasenkoa9fe13c2013-02-22 13:26:10 +01002246 && (qual_flags[WTERMSIG(status)] & QUAL_SIGNAL)
2247 ) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002248 printleader(tcp);
Denys Vlasenko13d22f12011-06-24 23:01:57 +02002249#ifdef WCOREDUMP
Denys Vlasenko000b6012012-01-28 01:25:03 +01002250 tprintf("+++ killed by %s %s+++\n",
Roland McGrath2efe8792004-01-13 09:59:45 +00002251 signame(WTERMSIG(status)),
Denys Vlasenko13d22f12011-06-24 23:01:57 +02002252 WCOREDUMP(status) ? "(core dumped) " : "");
2253#else
Denys Vlasenko000b6012012-01-28 01:25:03 +01002254 tprintf("+++ killed by %s +++\n",
Denys Vlasenko13d22f12011-06-24 23:01:57 +02002255 signame(WTERMSIG(status)));
Roland McGrath2efe8792004-01-13 09:59:45 +00002256#endif
Denys Vlasenko7de265d2012-03-13 11:44:31 +01002257 line_ended();
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002258 }
2259 droptcb(tcp);
2260 continue;
2261 }
2262 if (WIFEXITED(status)) {
Dmitry V. Levina6809652008-11-10 17:14:58 +00002263 if (pid == strace_child)
2264 exit_code = WEXITSTATUS(status);
Daniel P. Berrange01997cf2013-05-13 11:30:55 +01002265 if (cflag != CFLAG_ONLY_STATS &&
2266 qflag < 2) {
Denys Vlasenko19cdada2011-08-17 10:45:32 +02002267 printleader(tcp);
Denys Vlasenko000b6012012-01-28 01:25:03 +01002268 tprintf("+++ exited with %d +++\n", WEXITSTATUS(status));
Denys Vlasenko7de265d2012-03-13 11:44:31 +01002269 line_ended();
Denys Vlasenko19cdada2011-08-17 10:45:32 +02002270 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002271 droptcb(tcp);
2272 continue;
2273 }
2274 if (!WIFSTOPPED(status)) {
2275 fprintf(stderr, "PANIC: pid %u not stopped\n", pid);
2276 droptcb(tcp);
2277 continue;
2278 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002279
Denys Vlasenkof88837a2011-09-05 14:05:46 +02002280 /* Is this the very first time we see this tracee stopped? */
2281 if (tcp->flags & TCB_STARTUP) {
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01002282 if (debug_flag)
Denys Vlasenkof88837a2011-09-05 14:05:46 +02002283 fprintf(stderr, "pid %d has TCB_STARTUP, initializing it\n", tcp->pid);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002284 tcp->flags &= ~TCB_STARTUP;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002285 if (tcp->flags & TCB_BPTSET) {
Roland McGrath02203312007-06-11 22:06:31 +00002286 /*
2287 * One example is a breakpoint inherited from
Denys Vlasenko2ecba322011-08-21 17:35:39 +02002288 * parent through fork().
Roland McGrath02203312007-06-11 22:06:31 +00002289 */
Denys Vlasenko6cda73f2011-09-02 16:23:53 +02002290 if (clearbpt(tcp) < 0) {
2291 /* Pretty fatal */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002292 droptcb(tcp);
Denys Vlasenkod0ffdf42013-07-01 13:02:33 +02002293 exit_code = 1;
2294 return;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002295 }
2296 }
Denys Vlasenkoc169d942013-07-10 14:33:05 +02002297 if (!use_seize && ptrace_setoptions) {
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01002298 if (debug_flag)
Denys Vlasenkoc169d942013-07-10 14:33:05 +02002299 fprintf(stderr, "setting opts 0x%x on pid %d\n", ptrace_setoptions, tcp->pid);
Denys Vlasenko44f87ef2011-08-17 15:18:21 +02002300 if (ptrace(PTRACE_SETOPTIONS, tcp->pid, NULL, ptrace_setoptions) < 0) {
2301 if (errno != ESRCH) {
2302 /* Should never happen, really */
2303 perror_msg_and_die("PTRACE_SETOPTIONS");
Denys Vlasenko3454e4b2011-05-23 21:29:03 +02002304 }
2305 }
2306 }
Denys Vlasenkof88837a2011-09-05 14:05:46 +02002307 }
2308
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01002309 sig = WSTOPSIG(status);
2310
Denys Vlasenkof7db5dd2012-01-28 01:16:02 +01002311 if (event != 0) {
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01002312 /* Ptrace event */
Denys Vlasenko5c9d8f42013-02-19 15:30:12 +01002313#if USE_SEIZE
Denys Vlasenko26bc0602012-07-10 16:36:32 +02002314 if (event == PTRACE_EVENT_STOP) {
Denys Vlasenko67038162012-01-29 16:46:46 +01002315 /*
2316 * PTRACE_INTERRUPT-stop or group-stop.
2317 * PTRACE_INTERRUPT-stop has sig == SIGTRAP here.
2318 */
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01002319 if (sig == SIGSTOP
2320 || sig == SIGTSTP
2321 || sig == SIGTTIN
2322 || sig == SIGTTOU
2323 ) {
2324 stopped = 1;
2325 goto show_stopsig;
2326 }
2327 }
2328#endif
Denys Vlasenkof88837a2011-09-05 14:05:46 +02002329 goto restart_tracee_with_sig_0;
2330 }
2331
Denys Vlasenkof88837a2011-09-05 14:05:46 +02002332 /* Is this post-attach SIGSTOP?
2333 * Interestingly, the process may stop
2334 * with STOPSIG equal to some other signal
2335 * than SIGSTOP if we happend to attach
2336 * just before the process takes a signal.
2337 */
2338 if (sig == SIGSTOP && (tcp->flags & TCB_IGNORE_ONE_SIGSTOP)) {
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01002339 if (debug_flag)
Denys Vlasenkof88837a2011-09-05 14:05:46 +02002340 fprintf(stderr, "ignored SIGSTOP on pid %d\n", tcp->pid);
2341 tcp->flags &= ~TCB_IGNORE_ONE_SIGSTOP;
Denys Vlasenko6cda73f2011-09-02 16:23:53 +02002342 goto restart_tracee_with_sig_0;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002343 }
2344
Denys Vlasenko6cda73f2011-09-02 16:23:53 +02002345 if (sig != syscall_trap_sig) {
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01002346 siginfo_t si;
2347
2348 /* Nonzero (true) if tracee is stopped by signal
2349 * (as opposed to "tracee received signal").
Denys Vlasenkoa44f9692012-03-21 11:06:20 +01002350 * TODO: shouldn't we check for errno == EINVAL too?
2351 * We can get ESRCH instead, you know...
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01002352 */
2353 stopped = (ptrace(PTRACE_GETSIGINFO, pid, 0, (long) &si) < 0);
Denys Vlasenko5c9d8f42013-02-19 15:30:12 +01002354#if USE_SEIZE
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01002355 show_stopsig:
Denys Vlasenko67038162012-01-29 16:46:46 +01002356#endif
Dmitry V. Levine3a7ef52010-03-28 19:24:54 +00002357 if (cflag != CFLAG_ONLY_STATS
Dmitry V. Levine8ff4c62013-05-28 20:27:10 +00002358 && !hide_log_until_execve
2359 && (qual_flags[sig] & QUAL_SIGNAL)
2360 ) {
Dmitry V. Levine8ff4c62013-05-28 20:27:10 +00002361 printleader(tcp);
2362 if (!stopped) {
2363 tprintf("--- %s ", signame(sig));
2364 printsiginfo(&si, verbose(tcp));
Denys Vlasenko5a2483b2013-07-01 12:49:14 +02002365 tprints(" ---\n");
Dmitry V. Levine8ff4c62013-05-28 20:27:10 +00002366 } else
Denys Vlasenko5a2483b2013-07-01 12:49:14 +02002367 tprintf("--- stopped by %s ---\n",
2368 signame(sig));
Dmitry V. Levine8ff4c62013-05-28 20:27:10 +00002369 line_ended();
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002370 }
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01002371
2372 if (!stopped)
2373 /* It's signal-delivery-stop. Inject the signal */
2374 goto restart_tracee;
2375
2376 /* It's group-stop */
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01002377 if (use_seize) {
2378 /*
2379 * This ends ptrace-stop, but does *not* end group-stop.
2380 * This makes stopping signals work properly on straced process
2381 * (that is, process really stops. It used to continue to run).
2382 */
2383 if (ptrace_restart(PTRACE_LISTEN, tcp, 0) < 0) {
Denys Vlasenkod0ffdf42013-07-01 13:02:33 +02002384 /* Note: ptrace_restart emitted error message */
2385 exit_code = 1;
2386 return;
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01002387 }
2388 continue;
2389 }
2390 /* We don't have PTRACE_LISTEN support... */
Denys Vlasenko6cda73f2011-09-02 16:23:53 +02002391 goto restart_tracee;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002392 }
Denys Vlasenko2ecba322011-08-21 17:35:39 +02002393
2394 /* We handled quick cases, we are permitted to interrupt now. */
Roland McGrath02203312007-06-11 22:06:31 +00002395 if (interrupted)
Denys Vlasenkod0ffdf42013-07-01 13:02:33 +02002396 return;
Denys Vlasenko2ecba322011-08-21 17:35:39 +02002397
2398 /* This should be syscall entry or exit.
2399 * (Or it still can be that pesky post-execve SIGTRAP!)
2400 * Handle it.
2401 */
Denys Vlasenko23506752012-03-21 10:32:49 +01002402 if (trace_syscall(tcp) < 0) {
2403 /* ptrace() failed in trace_syscall().
Roland McGratheb9e2e82009-06-02 16:49:22 -07002404 * Likely a result of process disappearing mid-flight.
Denys Vlasenko23506752012-03-21 10:32:49 +01002405 * Observed case: exit_group() or SIGKILL terminating
Denys Vlasenkof1e69032012-01-04 15:15:26 +01002406 * all processes in thread group.
Denys Vlasenko7de265d2012-03-13 11:44:31 +01002407 * We assume that ptrace error was caused by process death.
Denys Vlasenkof2025022012-03-09 15:29:45 +01002408 * We used to detach(tcp) here, but since we no longer
2409 * implement "detach before death" policy/hack,
2410 * we can let this process to report its death to us
2411 * normally, via WIFEXITED or WIFSIGNALED wait status.
2412 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002413 continue;
2414 }
Denys Vlasenko6cda73f2011-09-02 16:23:53 +02002415 restart_tracee_with_sig_0:
2416 sig = 0;
2417 restart_tracee:
Denys Vlasenko6cda73f2011-09-02 16:23:53 +02002418 if (ptrace_restart(PTRACE_SYSCALL, tcp, sig) < 0) {
Denys Vlasenkod0ffdf42013-07-01 13:02:33 +02002419 /* Note: ptrace_restart emitted error message */
2420 exit_code = 1;
2421 return;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002422 }
Denys Vlasenko7c41ce22013-07-08 13:55:04 +02002423 } /* while (1) */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002424}
Denys Vlasenkoecc8b972012-03-12 23:05:25 +01002425
2426int
2427main(int argc, char *argv[])
2428{
2429 init(argc, argv);
2430
2431 /* Run main tracing loop */
Denys Vlasenkod0ffdf42013-07-01 13:02:33 +02002432 trace();
Denys Vlasenkoecc8b972012-03-12 23:05:25 +01002433
2434 cleanup();
2435 fflush(NULL);
Dmitry V. Levincf534362012-07-12 20:54:46 +00002436 if (shared_log != stderr)
2437 fclose(shared_log);
2438 if (popen_pid) {
2439 while (waitpid(popen_pid, NULL, 0) < 0 && errno == EINTR)
2440 ;
2441 }
Denys Vlasenkoecc8b972012-03-12 23:05:25 +01002442 if (exit_code > 0xff) {
2443 /* Avoid potential core file clobbering. */
Dmitry V. Levinc8938e02013-03-20 21:40:15 +00002444 struct_rlimit rlim = {0, 0};
2445 set_rlimit(RLIMIT_CORE, &rlim);
Denys Vlasenkoecc8b972012-03-12 23:05:25 +01002446
2447 /* Child was killed by a signal, mimic that. */
2448 exit_code &= 0xff;
2449 signal(exit_code, SIG_DFL);
2450 raise(exit_code);
2451 /* Paranoia - what if this signal is not fatal?
2452 Exit with 128 + signo then. */
2453 exit_code += 128;
2454 }
2455
2456 return exit_code;
2457}