blob: 513d7cf486b388c90868ad36f1e61137d86c4f84 [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
Dmitry V. Levinfadf3792015-02-13 00:26:38 +000045
46#include "ptrace.h"
47
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
Dmitry V. Levin23ce9e42015-02-08 13:05:53 +000077const unsigned int syscall_trap_sig = SIGTRAP | 0x80;
78
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +010079cflag_t cflag = CFLAG_NONE;
80unsigned int followfork = 0;
Dmitry V. Levin23ce9e42015-02-08 13:05:53 +000081unsigned int ptrace_setoptions = PTRACE_O_TRACESYSGOOD | PTRACE_O_TRACEEXEC;
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +010082unsigned int xflag = 0;
83bool debug_flag = 0;
84bool Tflag = 0;
Anton Blancharda34dead2013-07-12 12:22:06 +020085bool iflag = 0;
Mark Hillse53bf232014-05-28 17:52:40 +010086bool count_wallclock = 0;
Daniel P. Berrange01997cf2013-05-13 11:30:55 +010087unsigned int qflag = 0;
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +010088static unsigned int tflag = 0;
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +010089static bool rflag = 0;
90static bool print_pid_pfx = 0;
Denys Vlasenkob51581e2012-01-29 16:53:03 +010091
92/* -I n */
93enum {
94 INTR_NOT_SET = 0,
95 INTR_ANYWHERE = 1, /* don't block/ignore any signals */
96 INTR_WHILE_WAIT = 2, /* block fatal signals while decoding syscall. default */
97 INTR_NEVER = 3, /* block fatal signals. default if '-o FILE PROG' */
98 INTR_BLOCK_TSTP_TOO = 4, /* block fatal signals and SIGTSTP (^Z) */
99 NUM_INTR_OPTS
100};
101static int opt_intr;
102/* We play with signal mask only if this mode is active: */
103#define interactive (opt_intr == INTR_WHILE_WAIT)
104
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +0000105/*
106 * daemonized_tracer supports -D option.
107 * With this option, strace forks twice.
108 * Unlike normal case, with -D *grandparent* process exec's,
109 * becoming a traced process. Child exits (this prevents traced process
110 * from having children it doesn't expect to have), and grandchild
111 * attaches to grandparent similarly to strace -p PID.
112 * This allows for more transparent interaction in cases
113 * when process and its parent are communicating via signals,
114 * wait() etc. Without -D, strace process gets lodged in between,
115 * disrupting parent<->child link.
116 */
117static bool daemonized_tracer = 0;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000118
Denys Vlasenko5c9d8f42013-02-19 15:30:12 +0100119#if USE_SEIZE
Denys Vlasenko31fa8a22012-01-29 02:01:44 +0100120static int post_attach_sigstop = TCB_IGNORE_ONE_SIGSTOP;
121# define use_seize (post_attach_sigstop == 0)
122#else
123# define post_attach_sigstop TCB_IGNORE_ONE_SIGSTOP
124# define use_seize 0
125#endif
126
Michal Ludvig17f8fb32002-11-06 13:17:21 +0000127/* Sometimes we want to print only succeeding syscalls. */
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +0100128bool not_failing_only = 0;
Michal Ludvig17f8fb32002-11-06 13:17:21 +0000129
Grant Edwards8a082772011-04-07 20:25:40 +0000130/* Show path associated with fd arguments */
Dmitry V. Levin45e7b182014-08-08 23:38:26 +0000131unsigned int show_fd_path = 0;
Grant Edwards8a082772011-04-07 20:25:40 +0000132
Denys Vlasenko61e7aad2012-03-15 13:44:17 +0100133static bool detach_on_execve = 0;
Denys Vlasenko2a3d2752013-05-14 16:07:46 +0200134/* Are we "strace PROG" and need to skip detach on first execve? */
135static bool skip_one_b_execve = 0;
136/* Are we "strace PROG" and need to hide everything until execve? */
137bool hide_log_until_execve = 0;
Denys Vlasenko61e7aad2012-03-15 13:44:17 +0100138
Dmitry V. Levina6809652008-11-10 17:14:58 +0000139static int exit_code = 0;
140static int strace_child = 0;
Denys Vlasenko75422762011-05-27 14:36:01 +0200141static int strace_tracer_pid = 0;
Roland McGratheb9e2e82009-06-02 16:49:22 -0700142
Dmitry V. Levinb9fe0112006-12-13 16:59:44 +0000143static char *username = NULL;
Denys Vlasenkoead73bd2011-06-24 22:49:58 +0200144static uid_t run_uid;
145static gid_t run_gid;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000146
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +0100147unsigned int max_strlen = DEFAULT_STRLEN;
Dmitry V. Levinccee1692012-03-25 21:49:48 +0000148static int acolumn = DEFAULT_ACOLUMN;
Denys Vlasenko102ec492011-08-25 01:27:59 +0200149static char *acolumn_spaces;
Denys Vlasenko6764f8f2012-03-22 09:56:20 +0100150
Dmitry V. Levinb9fe0112006-12-13 16:59:44 +0000151static char *outfname = NULL;
Denys Vlasenko6764f8f2012-03-22 09:56:20 +0100152/* If -ff, points to stderr. Else, it's our common output log */
153static FILE *shared_log;
154
Denys Vlasenko000b6012012-01-28 01:25:03 +0100155struct tcb *printing_tcp = NULL;
Denys Vlasenko6764f8f2012-03-22 09:56:20 +0100156static struct tcb *current_tcp;
157
Denys Vlasenkoead73bd2011-06-24 22:49:58 +0200158static struct tcb **tcbtab;
Denys Vlasenko2b60c352011-06-22 12:45:25 +0200159static unsigned int nprocs, tcbtabsize;
Denys Vlasenkoead73bd2011-06-24 22:49:58 +0200160static const char *progname;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000161
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +0100162unsigned os_release; /* generated from uname()'s u.release */
Denys Vlasenkof7db5dd2012-01-28 01:16:02 +0100163
Denys Vlasenko4a9ba982013-06-20 11:20:23 +0200164static void detach(struct tcb *tcp);
Andreas Schwabe5355de2009-10-27 16:56:43 +0100165static void cleanup(void);
166static void interrupt(int sig);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000167static sigset_t empty_set, blocked_set;
168
169#ifdef HAVE_SIG_ATOMIC_T
170static volatile sig_atomic_t interrupted;
Denys Vlasenkoa3559252012-01-29 16:43:51 +0100171#else
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000172static volatile int interrupted;
Denys Vlasenkoa3559252012-01-29 16:43:51 +0100173#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000174
Denys Vlasenko2c4fb902012-03-15 17:24:49 +0100175#ifndef HAVE_STRERROR
176
177#if !HAVE_DECL_SYS_ERRLIST
178extern int sys_nerr;
179extern char *sys_errlist[];
Denys Vlasenkoa6d91de2012-03-16 12:02:22 +0100180#endif
Denys Vlasenko2c4fb902012-03-15 17:24:49 +0100181
182const char *
183strerror(int err_no)
184{
185 static char buf[sizeof("Unknown error %d") + sizeof(int)*3];
186
187 if (err_no < 1 || err_no >= sys_nerr) {
188 sprintf(buf, "Unknown error %d", err_no);
189 return buf;
190 }
191 return sys_errlist[err_no];
192}
193
194#endif /* HAVE_STERRROR */
195
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000196static void
Denys Vlasenkocb2ad002011-06-23 13:05:29 +0200197usage(FILE *ofp, int exitval)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000198{
199 fprintf(ofp, "\
Denys Vlasenkoc5ccfa42012-03-26 13:10:50 +0200200usage: strace [-CdffhiqrtttTvVxxy] [-I n] [-e expr]...\n\
201 [-a column] [-o file] [-s strsize] [-P path]...\n\
202 -p pid... / [-D] [-E var=val]... [-u username] PROG [ARGS]\n\
203 or: strace -c[df] [-I n] [-e expr]... [-O overhead] [-S sortby]\n\
204 -p pid... / [-D] [-E var=val]... [-u username] PROG [ARGS]\n\
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000205-c -- count time, calls, and errors for each syscall and report summary\n\
Denys Vlasenkoc5ccfa42012-03-26 13:10:50 +0200206-C -- like -c but also print regular output\n\
Mark Hillse53bf232014-05-28 17:52:40 +0100207-w -- summarise syscall latency (default is system time)\n\
Denys Vlasenko3e084ac2012-03-15 13:39:05 +0100208-d -- enable debug output to stderr\n\
Denys Vlasenkob51581e2012-01-29 16:53:03 +0100209-D -- run tracer process as a detached grandchild, not as parent\n\
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000210-f -- follow forks, -ff -- with output into separate files\n\
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000211-i -- print instruction pointer at time of syscall\n\
212-q -- suppress messages about attaching, detaching, etc.\n\
213-r -- print relative timestamp, -t -- absolute timestamp, -tt -- with usecs\n\
Denys Vlasenkocdab1be2012-02-03 12:17:57 +0100214-T -- print time spent in each syscall\n\
215-v -- verbose mode: print unabbreviated argv, stat, termios, etc. args\n\
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000216-x -- print non-ascii strings in hex, -xx -- print all strings in hex\n\
Grant Edwards8a082772011-04-07 20:25:40 +0000217-y -- print paths associated with file descriptor arguments\n\
Dmitry V. Levin2f6510c2014-08-21 03:17:48 +0000218-yy -- print ip:port pairs associated with socket file descriptors\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);
Dmitry V. Levin23ce9e42015-02-08 13:05:53 +0000349 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
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100768 /*
769 * Linux wrongly insists the child be stopped
770 * before detaching. Arghh. We go through hoops
771 * to make a clean break of things.
772 */
773#if defined(SPARC)
Denys Vlasenko978fbc92012-09-13 10:28:43 +0200774# undef PTRACE_DETACH
775# define PTRACE_DETACH PTRACE_SUNDETACH
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100776#endif
777
Denys Vlasenkoe2567d52013-06-21 16:11:10 +0200778 if (!(tcp->flags & TCB_ATTACHED))
779 goto drop;
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100780
Denys Vlasenkoe2567d52013-06-21 16:11:10 +0200781 /* We attached but possibly didn't see the expected SIGSTOP.
782 * We must catch exactly one as otherwise the detached process
783 * would be left stopped (process state T).
784 */
785 if (tcp->flags & TCB_IGNORE_ONE_SIGSTOP)
786 goto wait_loop;
787
788 error = ptrace(PTRACE_DETACH, tcp->pid, 0, 0);
789 if (!error) {
790 /* On a clear day, you can see forever. */
791 goto drop;
792 }
793 if (errno != ESRCH) {
794 /* Shouldn't happen. */
795 perror_msg("detach: ptrace(PTRACE_DETACH,%u)", tcp->pid);
796 goto drop;
797 }
798 /* ESRCH: process is either not stopped or doesn't exist. */
799 if (my_tkill(tcp->pid, 0) < 0) {
800 if (errno != ESRCH)
801 /* Shouldn't happen. */
802 perror_msg("detach: tkill(%u,0)", tcp->pid);
803 /* else: process doesn't exist. */
804 goto drop;
805 }
806 /* Process is not stopped, need to stop it. */
807 if (use_seize) {
808 /*
809 * With SEIZE, tracee can be in group-stop already.
810 * In this state sending it another SIGSTOP does nothing.
811 * Need to use INTERRUPT.
812 * Testcase: trying to ^C a "strace -p <stopped_process>".
813 */
814 error = ptrace(PTRACE_INTERRUPT, tcp->pid, 0, 0);
815 if (!error)
816 goto wait_loop;
817 if (errno != ESRCH)
818 perror_msg("detach: ptrace(PTRACE_INTERRUPT,%u)", tcp->pid);
819 }
820 else {
821 error = my_tkill(tcp->pid, SIGSTOP);
822 if (!error)
823 goto wait_loop;
824 if (errno != ESRCH)
825 perror_msg("detach: tkill(%u,SIGSTOP)", tcp->pid);
826 }
827 /* Either process doesn't exist, or some weird error. */
828 goto drop;
829
Denys Vlasenkoa2de9da2013-06-21 15:50:41 +0200830 wait_loop:
Denys Vlasenkoe2567d52013-06-21 16:11:10 +0200831 /* We end up here in three cases:
832 * 1. We sent PTRACE_INTERRUPT (use_seize case)
833 * 2. We sent SIGSTOP (!use_seize)
834 * 3. Attach SIGSTOP was already pending (TCB_IGNORE_ONE_SIGSTOP set)
835 */
836 for (;;) {
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +0000837 unsigned int sig;
Denys Vlasenkoe2567d52013-06-21 16:11:10 +0200838 if (waitpid(tcp->pid, &status, __WALL) < 0) {
839 if (errno == EINTR)
840 continue;
841 /*
842 * if (errno == ECHILD) break;
843 * ^^^ WRONG! We expect this PID to exist,
844 * and want to emit a message otherwise:
845 */
846 perror_msg("detach: waitpid(%u)", tcp->pid);
847 break;
848 }
849 if (!WIFSTOPPED(status)) {
850 /*
851 * Tracee exited or was killed by signal.
852 * We shouldn't normally reach this place:
853 * we don't want to consume exit status.
854 * Consider "strace -p PID" being ^C-ed:
855 * we want merely to detach from PID.
856 *
857 * However, we _can_ end up here if tracee
858 * was SIGKILLed.
859 */
860 break;
861 }
862 sig = WSTOPSIG(status);
863 if (debug_flag)
864 fprintf(stderr, "detach wait: event:%d sig:%d\n",
865 (unsigned)status >> 16, sig);
866 if (use_seize) {
867 unsigned event = (unsigned)status >> 16;
868 if (event == PTRACE_EVENT_STOP /*&& sig == SIGTRAP*/) {
Denys Vlasenkofdfa47a2013-06-20 12:10:21 +0200869 /*
Denys Vlasenkoe2567d52013-06-21 16:11:10 +0200870 * sig == SIGTRAP: PTRACE_INTERRUPT stop.
871 * sig == other: process was already stopped
872 * with this stopping sig (see tests/detach-stopped).
873 * Looks like re-injecting this sig is not necessary
874 * in DETACH for the tracee to remain stopped.
Denys Vlasenkofdfa47a2013-06-20 12:10:21 +0200875 */
Denys Vlasenkoe2567d52013-06-21 16:11:10 +0200876 sig = 0;
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100877 }
Denys Vlasenkoe2567d52013-06-21 16:11:10 +0200878 /*
879 * PTRACE_INTERRUPT is not guaranteed to produce
880 * the above event if other ptrace-stop is pending.
881 * See tests/detach-sleeping testcase:
882 * strace got SIGINT while tracee is sleeping.
883 * We sent PTRACE_INTERRUPT.
884 * We see syscall exit, not PTRACE_INTERRUPT stop.
885 * We won't get PTRACE_INTERRUPT stop
886 * if we would CONT now. Need to DETACH.
887 */
Denys Vlasenko69e27ef2013-06-19 15:31:39 +0200888 if (sig == syscall_trap_sig)
889 sig = 0;
Denys Vlasenkoe2567d52013-06-21 16:11:10 +0200890 /* else: not sure in which case we can be here.
891 * Signal stop? Inject it while detaching.
892 */
893 ptrace_restart(PTRACE_DETACH, tcp, sig);
894 break;
895 }
896 /* Note: this check has to be after use_seize check */
897 /* (else, in use_seize case SIGSTOP will be mistreated) */
898 if (sig == SIGSTOP) {
899 /* Detach, suppressing SIGSTOP */
900 ptrace_restart(PTRACE_DETACH, tcp, 0);
901 break;
902 }
903 if (sig == syscall_trap_sig)
904 sig = 0;
905 /* Can't detach just yet, may need to wait for SIGSTOP */
906 error = ptrace_restart(PTRACE_CONT, tcp, sig);
907 if (error < 0) {
908 /* Should not happen.
909 * Note: ptrace_restart returns 0 on ESRCH, so it's not it.
910 * ptrace_restart already emitted error message.
911 */
912 break;
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100913 }
914 }
915
Denys Vlasenkoe2567d52013-06-21 16:11:10 +0200916 drop:
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100917 if (!qflag && (tcp->flags & TCB_ATTACHED))
918 fprintf(stderr, "Process %u detached\n", tcp->pid);
919
920 droptcb(tcp);
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100921}
922
923static void
Denys Vlasenko558e5122012-03-12 23:32:16 +0100924process_opt_p_list(char *opt)
Denys Vlasenkoe8172b72012-03-09 13:01:04 +0100925{
926 while (*opt) {
927 /*
928 * We accept -p PID,PID; -p "`pidof PROG`"; -p "`pgrep PROG`".
929 * pidof uses space as delim, pgrep uses newline. :(
930 */
931 int pid;
Denys Vlasenkoe8172b72012-03-09 13:01:04 +0100932 char *delim = opt + strcspn(opt, ", \n\t");
933 char c = *delim;
934
935 *delim = '\0';
Dmitry V. Levinccee1692012-03-25 21:49:48 +0000936 pid = string_to_uint(opt);
Denys Vlasenkoe8172b72012-03-09 13:01:04 +0100937 if (pid <= 0) {
Dmitry V. Levinccee1692012-03-25 21:49:48 +0000938 error_msg_and_die("Invalid process id: '%s'", opt);
Denys Vlasenkoe8172b72012-03-09 13:01:04 +0100939 }
940 if (pid == strace_tracer_pid) {
Dmitry V. Levinccee1692012-03-25 21:49:48 +0000941 error_msg_and_die("I'm sorry, I can't let you do that, Dave.");
Denys Vlasenkoe8172b72012-03-09 13:01:04 +0100942 }
943 *delim = c;
Denys Vlasenko3db3b262012-03-16 15:15:14 +0100944 alloctcb(pid);
Denys Vlasenkoe8172b72012-03-09 13:01:04 +0100945 if (c == '\0')
946 break;
947 opt = delim + 1;
948 }
949}
950
Roland McGrath02203312007-06-11 22:06:31 +0000951static void
952startup_attach(void)
953{
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +0000954 unsigned int tcbi;
Roland McGrath02203312007-06-11 22:06:31 +0000955 struct tcb *tcp;
956
957 /*
958 * Block user interruptions as we would leave the traced
959 * process stopped (process state T) if we would terminate in
Denys Vlasenko2e968c02011-09-01 10:23:09 +0200960 * between PTRACE_ATTACH and wait4() on SIGSTOP.
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200961 * We rely on cleanup() from this point on.
Roland McGrath02203312007-06-11 22:06:31 +0000962 */
963 if (interactive)
964 sigprocmask(SIG_BLOCK, &blocked_set, NULL);
965
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +0000966 if (daemonized_tracer) {
967 pid_t pid = fork();
968 if (pid < 0) {
Denys Vlasenko014ca3a2011-09-02 16:19:30 +0200969 perror_msg_and_die("fork");
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +0000970 }
971 if (pid) { /* parent */
972 /*
Denys Vlasenko75422762011-05-27 14:36:01 +0200973 * Wait for grandchild to attach to straced process
974 * (grandparent). Grandchild SIGKILLs us after it attached.
975 * Grandparent's wait() is unblocked by our death,
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +0000976 * it proceeds to exec the straced program.
977 */
978 pause();
979 _exit(0); /* paranoia */
980 }
Denys Vlasenko75422762011-05-27 14:36:01 +0200981 /* grandchild */
982 /* We will be the tracer process. Remember our new pid: */
983 strace_tracer_pid = getpid();
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +0000984 }
985
Roland McGrath02203312007-06-11 22:06:31 +0000986 for (tcbi = 0; tcbi < tcbtabsize; tcbi++) {
987 tcp = tcbtab[tcbi];
Denys Vlasenko44f87ef2011-08-17 15:18:21 +0200988
Denys Vlasenkofadbf662013-06-26 14:14:29 +0200989 if (!tcp->pid)
Denys Vlasenko75fe85c2012-03-09 15:15:24 +0100990 continue;
991
Denys Vlasenkod116a732011-09-05 14:01:33 +0200992 /* Is this a process we should attach to, but not yet attached? */
Denys Vlasenko75fe85c2012-03-09 15:15:24 +0100993 if (tcp->flags & TCB_ATTACHED)
994 continue; /* no, we already attached it */
Denys Vlasenkod116a732011-09-05 14:01:33 +0200995
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +0000996 if (followfork && !daemonized_tracer) {
Denys Vlasenko7a8bf062009-01-29 20:38:20 +0000997 char procdir[sizeof("/proc/%d/task") + sizeof(int) * 3];
Roland McGrath02203312007-06-11 22:06:31 +0000998 DIR *dir;
999
1000 sprintf(procdir, "/proc/%d/task", tcp->pid);
1001 dir = opendir(procdir);
1002 if (dir != NULL) {
1003 unsigned int ntid = 0, nerr = 0;
Dmitry V. Levinc8938e02013-03-20 21:40:15 +00001004 struct_dirent *de;
Denys Vlasenko381dbc22011-09-05 13:59:39 +02001005
Dmitry V. Levinc8938e02013-03-20 21:40:15 +00001006 while ((de = read_dir(dir)) != NULL) {
Denys Vlasenko381dbc22011-09-05 13:59:39 +02001007 struct tcb *cur_tcp;
1008 int tid;
1009
Denys Vlasenko7a8bf062009-01-29 20:38:20 +00001010 if (de->d_fileno == 0)
Roland McGrath02203312007-06-11 22:06:31 +00001011 continue;
Dmitry V. Levinccee1692012-03-25 21:49:48 +00001012 /* we trust /proc filesystem */
Roland McGrath02203312007-06-11 22:06:31 +00001013 tid = atoi(de->d_name);
1014 if (tid <= 0)
1015 continue;
1016 ++ntid;
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001017 if (ptrace_attach_or_seize(tid) < 0) {
Roland McGrath02203312007-06-11 22:06:31 +00001018 ++nerr;
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001019 if (debug_flag)
Denys Vlasenkof95397a2011-06-24 16:51:16 +02001020 fprintf(stderr, "attach to pid %d failed\n", tid);
Denys Vlasenko381dbc22011-09-05 13:59:39 +02001021 continue;
Denys Vlasenkof95397a2011-06-24 16:51:16 +02001022 }
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001023 if (debug_flag)
Denys Vlasenko381dbc22011-09-05 13:59:39 +02001024 fprintf(stderr, "attach to pid %d succeeded\n", tid);
1025 cur_tcp = tcp;
1026 if (tid != tcp->pid)
1027 cur_tcp = alloctcb(tid);
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001028 cur_tcp->flags |= TCB_ATTACHED | TCB_STARTUP | post_attach_sigstop;
Denys Vlasenko3db3b262012-03-16 15:15:14 +01001029 newoutf(cur_tcp);
Roland McGrath02203312007-06-11 22:06:31 +00001030 }
1031 closedir(dir);
Denys Vlasenko381dbc22011-09-05 13:59:39 +02001032 if (interactive) {
1033 sigprocmask(SIG_SETMASK, &empty_set, NULL);
1034 if (interrupted)
1035 goto ret;
1036 sigprocmask(SIG_BLOCK, &blocked_set, NULL);
1037 }
Denys Vlasenko7a8bf062009-01-29 20:38:20 +00001038 ntid -= nerr;
1039 if (ntid == 0) {
Denys Vlasenko905e8e02013-02-26 12:30:09 +01001040 perror_msg("attach: ptrace(PTRACE_ATTACH, ...)");
Roland McGrath02203312007-06-11 22:06:31 +00001041 droptcb(tcp);
1042 continue;
1043 }
1044 if (!qflag) {
Denys Vlasenko7a8bf062009-01-29 20:38:20 +00001045 fprintf(stderr, ntid > 1
Denys Vlasenko3db3b262012-03-16 15:15:14 +01001046? "Process %u attached with %u threads\n"
1047: "Process %u attached\n",
Denys Vlasenko44f87ef2011-08-17 15:18:21 +02001048 tcp->pid, ntid);
Roland McGrath02203312007-06-11 22:06:31 +00001049 }
Denys Vlasenko75fe85c2012-03-09 15:15:24 +01001050 if (!(tcp->flags & TCB_ATTACHED)) {
Denys Vlasenkof88837a2011-09-05 14:05:46 +02001051 /* -p PID, we failed to attach to PID itself
1052 * but did attach to some of its sibling threads.
1053 * Drop PID's tcp.
1054 */
1055 droptcb(tcp);
1056 }
Roland McGrath02203312007-06-11 22:06:31 +00001057 continue;
Denys Vlasenko7a8bf062009-01-29 20:38:20 +00001058 } /* if (opendir worked) */
1059 } /* if (-f) */
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001060 if (ptrace_attach_or_seize(tcp->pid) < 0) {
Denys Vlasenko905e8e02013-02-26 12:30:09 +01001061 perror_msg("attach: ptrace(PTRACE_ATTACH, ...)");
Roland McGrath02203312007-06-11 22:06:31 +00001062 droptcb(tcp);
1063 continue;
1064 }
Denys Vlasenko75fe85c2012-03-09 15:15:24 +01001065 tcp->flags |= TCB_ATTACHED | TCB_STARTUP | post_attach_sigstop;
Denys Vlasenko3db3b262012-03-16 15:15:14 +01001066 newoutf(tcp);
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001067 if (debug_flag)
Denys Vlasenkof95397a2011-06-24 16:51:16 +02001068 fprintf(stderr, "attach to pid %d (main) succeeded\n", tcp->pid);
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +00001069
1070 if (daemonized_tracer) {
1071 /*
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +00001072 * Make parent go away.
1073 * Also makes grandparent's wait() unblock.
1074 */
1075 kill(getppid(), SIGKILL);
1076 }
1077
Roland McGrath02203312007-06-11 22:06:31 +00001078 if (!qflag)
1079 fprintf(stderr,
Denys Vlasenko9c3861d2012-03-16 15:21:49 +01001080 "Process %u attached\n",
Roland McGrath02203312007-06-11 22:06:31 +00001081 tcp->pid);
Denys Vlasenkof95397a2011-06-24 16:51:16 +02001082 } /* for each tcbtab[] */
Roland McGrath02203312007-06-11 22:06:31 +00001083
Denys Vlasenko44f87ef2011-08-17 15:18:21 +02001084 ret:
Roland McGrath02203312007-06-11 22:06:31 +00001085 if (interactive)
1086 sigprocmask(SIG_SETMASK, &empty_set, NULL);
1087}
1088
Denys Vlasenkof909c8d2013-02-19 16:30:31 +01001089/* Stack-o-phobic exec helper, in the hope to work around
1090 * NOMMU + "daemonized tracer" difficulty.
1091 */
1092struct exec_params {
1093 int fd_to_close;
1094 uid_t run_euid;
1095 gid_t run_egid;
1096 char **argv;
1097 char *pathname;
1098};
1099static struct exec_params params_for_tracee;
1100static void __attribute__ ((noinline, noreturn))
1101exec_or_die(void)
1102{
1103 struct exec_params *params = &params_for_tracee;
1104
1105 if (params->fd_to_close >= 0)
1106 close(params->fd_to_close);
1107 if (!daemonized_tracer && !use_seize) {
1108 if (ptrace(PTRACE_TRACEME, 0L, 0L, 0L) < 0) {
1109 perror_msg_and_die("ptrace(PTRACE_TRACEME, ...)");
1110 }
1111 }
1112
1113 if (username != NULL) {
1114 /*
1115 * It is important to set groups before we
1116 * lose privileges on setuid.
1117 */
1118 if (initgroups(username, run_gid) < 0) {
1119 perror_msg_and_die("initgroups");
1120 }
1121 if (setregid(run_gid, params->run_egid) < 0) {
1122 perror_msg_and_die("setregid");
1123 }
1124 if (setreuid(run_uid, params->run_euid) < 0) {
1125 perror_msg_and_die("setreuid");
1126 }
1127 }
1128 else if (geteuid() != 0)
1129 if (setreuid(run_uid, run_uid) < 0) {
1130 perror_msg_and_die("setreuid");
1131 }
1132
1133 if (!daemonized_tracer) {
1134 /*
1135 * Induce a ptrace stop. Tracer (our parent)
1136 * will resume us with PTRACE_SYSCALL and display
1137 * the immediately following execve syscall.
1138 * Can't do this on NOMMU systems, we are after
1139 * vfork: parent is blocked, stopping would deadlock.
1140 */
1141 if (!NOMMU_SYSTEM)
1142 kill(getpid(), SIGSTOP);
1143 } else {
1144 alarm(3);
1145 /* we depend on SIGCHLD set to SIG_DFL by init code */
1146 /* if it happens to be SIG_IGN'ed, wait won't block */
1147 wait(NULL);
1148 alarm(0);
1149 }
1150
1151 execv(params->pathname, params->argv);
1152 perror_msg_and_die("exec");
1153}
1154
Roland McGrath02203312007-06-11 22:06:31 +00001155static void
Denys Vlasenko12014262011-05-30 14:00:14 +02001156startup_child(char **argv)
Roland McGrath02203312007-06-11 22:06:31 +00001157{
Dmitry V. Levinc8938e02013-03-20 21:40:15 +00001158 struct_stat statbuf;
Roland McGrath02203312007-06-11 22:06:31 +00001159 const char *filename;
Dmitry V. Levin1dbd39e2015-02-28 14:50:09 +00001160 size_t filename_len;
Dmitry V. Levin025b3582014-11-21 22:28:34 +00001161 char pathname[PATH_MAX];
Denys Vlasenkof909c8d2013-02-19 16:30:31 +01001162 int pid;
Roland McGrath02203312007-06-11 22:06:31 +00001163 struct tcb *tcp;
1164
1165 filename = argv[0];
Dmitry V. Levin1dbd39e2015-02-28 14:50:09 +00001166 filename_len = strlen(filename);
1167
1168 if (filename_len > sizeof(pathname) - 1) {
1169 errno = ENAMETOOLONG;
1170 perror_msg_and_die("exec");
1171 }
Roland McGrath02203312007-06-11 22:06:31 +00001172 if (strchr(filename, '/')) {
Roland McGrath02203312007-06-11 22:06:31 +00001173 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) {
Dmitry V. Levin025b3582014-11-21 22:28:34 +00001197 if (!getcwd(pathname, PATH_MAX))
Roland McGrath02203312007-06-11 22:06:31 +00001198 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++] = '/';
Dmitry V. Levin1dbd39e2015-02-28 14:50:09 +00001209 if (filename_len + len > sizeof(pathname) - 1)
1210 continue;
Roland McGrath02203312007-06-11 22:06:31 +00001211 strcpy(pathname + len, filename);
Dmitry V. Levinc8938e02013-03-20 21:40:15 +00001212 if (stat_file(pathname, &statbuf) == 0 &&
Roland McGrath02203312007-06-11 22:06:31 +00001213 /* Accept only regular files
1214 with some execute bits set.
1215 XXX not perfect, might still fail */
1216 S_ISREG(statbuf.st_mode) &&
1217 (statbuf.st_mode & 0111))
1218 break;
1219 }
Dmitry V. Levin1dbd39e2015-02-28 14:50:09 +00001220 if (!path || !*path)
1221 pathname[0] = '\0';
Roland McGrath02203312007-06-11 22:06:31 +00001222 }
Dmitry V. Levinc8938e02013-03-20 21:40:15 +00001223 if (stat_file(pathname, &statbuf) < 0) {
Denys Vlasenkocb2ad002011-06-23 13:05:29 +02001224 perror_msg_and_die("Can't stat '%s'", filename);
Roland McGrath02203312007-06-11 22:06:31 +00001225 }
Denys Vlasenkof909c8d2013-02-19 16:30:31 +01001226
1227 params_for_tracee.fd_to_close = (shared_log != stderr) ? fileno(shared_log) : -1;
1228 params_for_tracee.run_euid = (statbuf.st_mode & S_ISUID) ? statbuf.st_uid : run_uid;
1229 params_for_tracee.run_egid = (statbuf.st_mode & S_ISGID) ? statbuf.st_gid : run_gid;
1230 params_for_tracee.argv = argv;
1231 /*
1232 * On NOMMU, can be safely freed only after execve in tracee.
1233 * It's hard to know when that happens, so we just leak it.
1234 */
Denys Vlasenko05f32512013-02-26 12:00:34 +01001235 params_for_tracee.pathname = NOMMU_SYSTEM ? strdup(pathname) : pathname;
Denys Vlasenkof909c8d2013-02-19 16:30:31 +01001236
Dmitry V. Levin882478a2013-05-13 18:43:28 +00001237#if defined HAVE_PRCTL && defined PR_SET_PTRACER && defined PR_SET_PTRACER_ANY
1238 if (daemonized_tracer)
1239 prctl(PR_SET_PTRACER, PR_SET_PTRACER_ANY);
1240#endif
1241
Denys Vlasenkoe8681c92013-06-26 14:27:11 +02001242 pid = fork();
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +00001243 if (pid < 0) {
Denys Vlasenkocb2ad002011-06-23 13:05:29 +02001244 perror_msg_and_die("fork");
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +00001245 }
Denys Vlasenkof909c8d2013-02-19 16:30:31 +01001246 if ((pid != 0 && daemonized_tracer)
1247 || (pid == 0 && !daemonized_tracer)
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +00001248 ) {
Denys Vlasenkof909c8d2013-02-19 16:30:31 +01001249 /* We are to become the tracee. Two cases:
1250 * -D: we are parent
1251 * not -D: we are child
1252 */
1253 exec_or_die();
Roland McGrath02203312007-06-11 22:06:31 +00001254 }
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +00001255
Denys Vlasenko2e968c02011-09-01 10:23:09 +02001256 /* We are the tracer */
Denys Vlasenko75422762011-05-27 14:36:01 +02001257
Denys Vlasenko2e968c02011-09-01 10:23:09 +02001258 if (!daemonized_tracer) {
Denys Vlasenkoe8681c92013-06-26 14:27:11 +02001259 strace_child = pid;
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001260 if (!use_seize) {
1261 /* child did PTRACE_TRACEME, nothing to do in parent */
1262 } else {
Denys Vlasenko5c9d8f42013-02-19 15:30:12 +01001263 if (!NOMMU_SYSTEM) {
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001264 /* Wait until child stopped itself */
1265 int status;
1266 while (waitpid(pid, &status, WSTOPPED) < 0) {
1267 if (errno == EINTR)
1268 continue;
1269 perror_msg_and_die("waitpid");
1270 }
1271 if (!WIFSTOPPED(status) || WSTOPSIG(status) != SIGSTOP) {
Denys Vlasenko75fe85c2012-03-09 15:15:24 +01001272 kill_save_errno(pid, SIGKILL);
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001273 perror_msg_and_die("Unexpected wait status %x", status);
1274 }
1275 }
Denys Vlasenko5c9d8f42013-02-19 15:30:12 +01001276 /* Else: NOMMU case, we have no way to sync.
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001277 * Just attach to it as soon as possible.
1278 * This means that we may miss a few first syscalls...
1279 */
1280
1281 if (ptrace_attach_or_seize(pid)) {
Denys Vlasenko75fe85c2012-03-09 15:15:24 +01001282 kill_save_errno(pid, SIGKILL);
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001283 perror_msg_and_die("Can't attach to %d", pid);
1284 }
Denys Vlasenko5c9d8f42013-02-19 15:30:12 +01001285 if (!NOMMU_SYSTEM)
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001286 kill(pid, SIGCONT);
1287 }
Denys Vlasenko2e968c02011-09-01 10:23:09 +02001288 tcp = alloctcb(pid);
Denys Vlasenko5c9d8f42013-02-19 15:30:12 +01001289 if (!NOMMU_SYSTEM)
Denys Vlasenkofadbf662013-06-26 14:14:29 +02001290 tcp->flags |= TCB_ATTACHED | TCB_STARTUP | post_attach_sigstop;
Denys Vlasenkof88837a2011-09-05 14:05:46 +02001291 else
Denys Vlasenkofadbf662013-06-26 14:14:29 +02001292 tcp->flags |= TCB_ATTACHED | TCB_STARTUP;
Denys Vlasenko3db3b262012-03-16 15:15:14 +01001293 newoutf(tcp);
Denys Vlasenko2e968c02011-09-01 10:23:09 +02001294 }
1295 else {
Denys Vlasenko05f32512013-02-26 12:00:34 +01001296 /* With -D, we are *child* here, IOW: different pid. Fetch it: */
Denys Vlasenko2e968c02011-09-01 10:23:09 +02001297 strace_tracer_pid = getpid();
1298 /* The tracee is our parent: */
1299 pid = getppid();
Denys Vlasenkof2025022012-03-09 15:29:45 +01001300 alloctcb(pid);
1301 /* attaching will be done later, by startup_attach */
Denys Vlasenko3db3b262012-03-16 15:15:14 +01001302 /* note: we don't do newoutf(tcp) here either! */
Denys Vlasenko5c9d8f42013-02-19 15:30:12 +01001303
Denys Vlasenkof909c8d2013-02-19 16:30:31 +01001304 /* NOMMU BUG! -D mode is active, we (child) return,
1305 * and we will scribble over parent's stack!
1306 * When parent later unpauses, it segfaults.
1307 *
1308 * We work around it
1309 * (1) by declaring exec_or_die() NORETURN,
1310 * hopefully compiler will just jump to it
1311 * instead of call (won't push anything to stack),
1312 * (2) by trying very hard in exec_or_die()
1313 * to not use any stack,
Dmitry V. Levin025b3582014-11-21 22:28:34 +00001314 * (3) having a really big (PATH_MAX) stack object
Denys Vlasenkof909c8d2013-02-19 16:30:31 +01001315 * in this function, which creates a "buffer" between
1316 * child's and parent's stack pointers.
1317 * This may save us if (1) and (2) failed
1318 * and compiler decided to use stack in exec_or_die() anyway
1319 * (happens on i386 because of stack parameter passing).
Denys Vlasenko05f32512013-02-26 12:00:34 +01001320 *
1321 * A cleaner solution is to use makecontext + setcontext
1322 * to create a genuine separate stack and execute on it.
Denys Vlasenkof909c8d2013-02-19 16:30:31 +01001323 */
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +00001324 }
Roland McGrath02203312007-06-11 22:06:31 +00001325}
1326
Denys Vlasenko5c9d8f42013-02-19 15:30:12 +01001327#if USE_SEIZE
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001328static void
1329test_ptrace_seize(void)
1330{
1331 int pid;
1332
Denys Vlasenko05f32512013-02-26 12:00:34 +01001333 /* Need fork for test. NOMMU has no forks */
Denys Vlasenko5c9d8f42013-02-19 15:30:12 +01001334 if (NOMMU_SYSTEM) {
1335 post_attach_sigstop = 0; /* this sets use_seize to 1 */
1336 return;
1337 }
1338
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001339 pid = fork();
1340 if (pid < 0)
1341 perror_msg_and_die("fork");
1342
1343 if (pid == 0) {
1344 pause();
1345 _exit(0);
1346 }
1347
1348 /* PTRACE_SEIZE, unlike ATTACH, doesn't force tracee to trap. After
1349 * attaching tracee continues to run unless a trap condition occurs.
1350 * PTRACE_SEIZE doesn't affect signal or group stop state.
1351 */
Denys Vlasenko26bc0602012-07-10 16:36:32 +02001352 if (ptrace(PTRACE_SEIZE, pid, 0, 0) == 0) {
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001353 post_attach_sigstop = 0; /* this sets use_seize to 1 */
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001354 } else if (debug_flag) {
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001355 fprintf(stderr, "PTRACE_SEIZE doesn't work\n");
1356 }
1357
1358 kill(pid, SIGKILL);
1359
1360 while (1) {
1361 int status, tracee_pid;
1362
1363 errno = 0;
1364 tracee_pid = waitpid(pid, &status, 0);
1365 if (tracee_pid <= 0) {
1366 if (errno == EINTR)
1367 continue;
1368 perror_msg_and_die("%s: unexpected wait result %d",
1369 __func__, tracee_pid);
1370 }
1371 if (WIFSIGNALED(status)) {
1372 return;
1373 }
1374 error_msg_and_die("%s: unexpected wait status %x",
1375 __func__, status);
1376 }
1377}
Denys Vlasenko978fbc92012-09-13 10:28:43 +02001378#else /* !USE_SEIZE */
1379# define test_ptrace_seize() ((void)0)
1380#endif
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001381
Denys Vlasenko6e0bfd12012-03-15 14:36:28 +01001382static unsigned
Denys Vlasenkof7db5dd2012-01-28 01:16:02 +01001383get_os_release(void)
1384{
Denys Vlasenko6e0bfd12012-03-15 14:36:28 +01001385 unsigned rel;
1386 const char *p;
Denys Vlasenkof7db5dd2012-01-28 01:16:02 +01001387 struct utsname u;
1388 if (uname(&u) < 0)
1389 perror_msg_and_die("uname");
Denys Vlasenko6e0bfd12012-03-15 14:36:28 +01001390 /* u.release has this form: "3.2.9[-some-garbage]" */
1391 rel = 0;
1392 p = u.release;
1393 for (;;) {
1394 if (!(*p >= '0' && *p <= '9'))
1395 error_msg_and_die("Bad OS release string: '%s'", u.release);
1396 /* Note: this open-codes KERNEL_VERSION(): */
1397 rel = (rel << 8) | atoi(p);
1398 if (rel >= KERNEL_VERSION(1,0,0))
1399 break;
1400 while (*p >= '0' && *p <= '9')
1401 p++;
Dmitry V. Levin0dbc80d2012-05-14 23:42:10 +00001402 if (*p != '.') {
1403 if (rel >= KERNEL_VERSION(0,1,0)) {
1404 /* "X.Y-something" means "X.Y.0" */
1405 rel <<= 8;
1406 break;
1407 }
Denys Vlasenko6e0bfd12012-03-15 14:36:28 +01001408 error_msg_and_die("Bad OS release string: '%s'", u.release);
Dmitry V. Levin0dbc80d2012-05-14 23:42:10 +00001409 }
Denys Vlasenko6e0bfd12012-03-15 14:36:28 +01001410 p++;
1411 }
1412 return rel;
Denys Vlasenkof7db5dd2012-01-28 01:16:02 +01001413}
1414
Denys Vlasenkoecc8b972012-03-12 23:05:25 +01001415/*
1416 * Initialization part of main() was eating much stack (~0.5k),
1417 * which was unused after init.
1418 * We can reuse it if we move init code into a separate function.
1419 *
1420 * Don't want main() to inline us and defeat the reason
1421 * we have a separate function.
1422 */
1423static void __attribute__ ((noinline))
1424init(int argc, char *argv[])
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001425{
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001426 struct tcb *tcp;
Dmitry V. Levinccee1692012-03-25 21:49:48 +00001427 int c, i;
Dmitry V. Levin06350db2008-07-25 15:42:34 +00001428 int optF = 0;
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +00001429 unsigned int tcbi;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001430 struct sigaction sa;
1431
Dmitry V. Levin08b623e2007-10-08 21:04:41 +00001432 progname = argv[0] ? argv[0] : "strace";
1433
Denys Vlasenkoa5090542012-03-15 17:27:49 +01001434 /* Make sure SIGCHLD has the default action so that waitpid
1435 definitely works without losing track of children. The user
1436 should not have given us a bogus state to inherit, but he might
1437 have. Arguably we should detect SIG_IGN here and pass it on
1438 to children, but probably noone really needs that. */
1439 signal(SIGCHLD, SIG_DFL);
1440
Denys Vlasenko75422762011-05-27 14:36:01 +02001441 strace_tracer_pid = getpid();
1442
Denys Vlasenko6e0bfd12012-03-15 14:36:28 +01001443 os_release = get_os_release();
Denys Vlasenkof7db5dd2012-01-28 01:16:02 +01001444
Roland McGrathee9d4352002-12-18 04:16:10 +00001445 /* Allocate the initial tcbtab. */
1446 tcbtabsize = argc; /* Surely enough for all -p args. */
Denys Vlasenko4f12af22011-06-23 13:16:23 +02001447 tcbtab = calloc(tcbtabsize, sizeof(tcbtab[0]));
Denys Vlasenko1d46ba52011-08-31 14:00:02 +02001448 if (!tcbtab)
1449 die_out_of_memory();
Denys Vlasenko4f12af22011-06-23 13:16:23 +02001450 tcp = calloc(tcbtabsize, sizeof(*tcp));
Denys Vlasenko1d46ba52011-08-31 14:00:02 +02001451 if (!tcp)
1452 die_out_of_memory();
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +00001453 for (tcbi = 0; tcbi < tcbtabsize; tcbi++)
1454 tcbtab[tcbi] = tcp++;
Roland McGrathee9d4352002-12-18 04:16:10 +00001455
Denys Vlasenko6764f8f2012-03-22 09:56:20 +01001456 shared_log = stderr;
Roland McGrath138c6a32006-01-12 09:50:49 +00001457 set_sortby(DEFAULT_SORTBY);
1458 set_personality(DEFAULT_PERSONALITY);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001459 qualify("trace=all");
1460 qualify("abbrev=all");
1461 qualify("verbose=all");
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01001462#if DEFAULT_QUAL_FLAGS != (QUAL_TRACE | QUAL_ABBREV | QUAL_VERBOSE)
1463# error Bug in DEFAULT_QUAL_FLAGS
1464#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001465 qualify("signal=all");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001466 while ((c = getopt(argc, argv,
Mark Hillse53bf232014-05-28 17:52:40 +01001467 "+b:cCdfFhiqrtTvVwxyz"
Luca Clementi327064b2013-07-23 00:11:35 -07001468#ifdef USE_LIBUNWIND
1469 "k"
1470#endif
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +00001471 "D"
Denys Vlasenkob51581e2012-01-29 16:53:03 +01001472 "a:e:o:O:p:s:S:u:E:P:I:")) != EOF) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001473 switch (c) {
Denys Vlasenko61e7aad2012-03-15 13:44:17 +01001474 case 'b':
Denys Vlasenko22efaf02013-02-27 12:15:19 +01001475 if (strcmp(optarg, "execve") != 0)
1476 error_msg_and_die("Syscall '%s' for -b isn't supported",
1477 optarg);
Denys Vlasenko61e7aad2012-03-15 13:44:17 +01001478 detach_on_execve = 1;
1479 break;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001480 case 'c':
Dmitry V. Levine3a7ef52010-03-28 19:24:54 +00001481 if (cflag == CFLAG_BOTH) {
Denys Vlasenkoc5ccfa42012-03-26 13:10:50 +02001482 error_msg_and_die("-c and -C are mutually exclusive");
Dmitry V. Levine3a7ef52010-03-28 19:24:54 +00001483 }
1484 cflag = CFLAG_ONLY_STATS;
1485 break;
1486 case 'C':
1487 if (cflag == CFLAG_ONLY_STATS) {
Denys Vlasenkoc5ccfa42012-03-26 13:10:50 +02001488 error_msg_and_die("-c and -C are mutually exclusive");
Dmitry V. Levine3a7ef52010-03-28 19:24:54 +00001489 }
1490 cflag = CFLAG_BOTH;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001491 break;
1492 case 'd':
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001493 debug_flag = 1;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001494 break;
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +00001495 case 'D':
1496 daemonized_tracer = 1;
1497 break;
Roland McGrath41c48222008-07-18 00:25:10 +00001498 case 'F':
Dmitry V. Levin06350db2008-07-25 15:42:34 +00001499 optF = 1;
1500 break;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001501 case 'f':
1502 followfork++;
1503 break;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001504 case 'h':
1505 usage(stdout, 0);
1506 break;
1507 case 'i':
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001508 iflag = 1;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001509 break;
1510 case 'q':
Daniel P. Berrange01997cf2013-05-13 11:30:55 +01001511 qflag++;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001512 break;
1513 case 'r':
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001514 rflag = 1;
1515 /* fall through to tflag++ */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001516 case 't':
1517 tflag++;
1518 break;
1519 case 'T':
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001520 Tflag = 1;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001521 break;
Mark Hillse53bf232014-05-28 17:52:40 +01001522 case 'w':
1523 count_wallclock = 1;
1524 break;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001525 case 'x':
1526 xflag++;
1527 break;
Grant Edwards8a082772011-04-07 20:25:40 +00001528 case 'y':
Dmitry V. Levin45e7b182014-08-08 23:38:26 +00001529 show_fd_path++;
Grant Edwards8a082772011-04-07 20:25:40 +00001530 break;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001531 case 'v':
1532 qualify("abbrev=none");
1533 break;
1534 case 'V':
Roland McGrath9c9a2532003-02-20 02:56:29 +00001535 printf("%s -- version %s\n", PACKAGE_NAME, VERSION);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001536 exit(0);
1537 break;
Michal Ludvig17f8fb32002-11-06 13:17:21 +00001538 case 'z':
1539 not_failing_only = 1;
1540 break;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001541 case 'a':
Dmitry V. Levinccee1692012-03-25 21:49:48 +00001542 acolumn = string_to_uint(optarg);
Denys Vlasenko102ec492011-08-25 01:27:59 +02001543 if (acolumn < 0)
Dmitry V. Levinccee1692012-03-25 21:49:48 +00001544 error_opt_arg(c, optarg);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001545 break;
1546 case 'e':
1547 qualify(optarg);
1548 break;
1549 case 'o':
1550 outfname = strdup(optarg);
1551 break;
1552 case 'O':
Dmitry V. Levinccee1692012-03-25 21:49:48 +00001553 i = string_to_uint(optarg);
1554 if (i < 0)
1555 error_opt_arg(c, optarg);
1556 set_overhead(i);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001557 break;
1558 case 'p':
Denys Vlasenkoe8172b72012-03-09 13:01:04 +01001559 process_opt_p_list(optarg);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001560 break;
Grant Edwards8a082772011-04-07 20:25:40 +00001561 case 'P':
Denys Vlasenko7239dbc2013-03-05 15:46:34 +01001562 pathtrace_select(optarg);
Grant Edwards8a082772011-04-07 20:25:40 +00001563 break;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001564 case 's':
Dmitry V. Levinccee1692012-03-25 21:49:48 +00001565 i = string_to_uint(optarg);
1566 if (i < 0)
1567 error_opt_arg(c, optarg);
1568 max_strlen = i;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001569 break;
1570 case 'S':
1571 set_sortby(optarg);
1572 break;
1573 case 'u':
1574 username = strdup(optarg);
1575 break;
Luca Clementi327064b2013-07-23 00:11:35 -07001576#ifdef USE_LIBUNWIND
1577 case 'k':
1578 stack_trace_enabled = true;
1579 break;
1580#endif
Roland McGrathde6e5332003-01-24 04:31:23 +00001581 case 'E':
Denys Vlasenko1d46ba52011-08-31 14:00:02 +02001582 if (putenv(optarg) < 0)
1583 die_out_of_memory();
Roland McGrathde6e5332003-01-24 04:31:23 +00001584 break;
Denys Vlasenkob51581e2012-01-29 16:53:03 +01001585 case 'I':
Dmitry V. Levinccee1692012-03-25 21:49:48 +00001586 opt_intr = string_to_uint(optarg);
1587 if (opt_intr <= 0 || opt_intr >= NUM_INTR_OPTS)
1588 error_opt_arg(c, optarg);
Denys Vlasenkob51581e2012-01-29 16:53:03 +01001589 break;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001590 default:
1591 usage(stderr, 1);
1592 break;
1593 }
1594 }
Denys Vlasenko837399a2012-01-24 11:37:03 +01001595 argv += optind;
1596 /* argc -= optind; - no need, argc is not used below */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001597
Denys Vlasenko102ec492011-08-25 01:27:59 +02001598 acolumn_spaces = malloc(acolumn + 1);
1599 if (!acolumn_spaces)
Denys Vlasenko1d46ba52011-08-31 14:00:02 +02001600 die_out_of_memory();
Denys Vlasenko102ec492011-08-25 01:27:59 +02001601 memset(acolumn_spaces, ' ', acolumn);
1602 acolumn_spaces[acolumn] = '\0';
1603
Denys Vlasenko837399a2012-01-24 11:37:03 +01001604 /* Must have PROG [ARGS], or -p PID. Not both. */
Denys Vlasenkofd883382012-03-09 13:03:41 +01001605 if (!argv[0] == !nprocs)
Roland McGrathce0d1542003-11-11 21:24:23 +00001606 usage(stderr, 1);
1607
Denys Vlasenkofd883382012-03-09 13:03:41 +01001608 if (nprocs != 0 && daemonized_tracer) {
Denys Vlasenkoc5ccfa42012-03-26 13:10:50 +02001609 error_msg_and_die("-D and -p are mutually exclusive");
Wang Chaod322a4b2010-08-05 14:30:11 +08001610 }
1611
Dmitry V. Levin06350db2008-07-25 15:42:34 +00001612 if (!followfork)
1613 followfork = optF;
1614
Denys Vlasenko3db3b262012-03-16 15:15:14 +01001615 if (followfork >= 2 && cflag) {
Denys Vlasenkoc5ccfa42012-03-26 13:10:50 +02001616 error_msg_and_die("(-c or -C) and -ff are mutually exclusive");
Roland McGrathcb9def62006-04-25 07:48:03 +00001617 }
1618
Mark Hillse53bf232014-05-28 17:52:40 +01001619 if (count_wallclock && !cflag) {
1620 error_msg_and_die("-w must be given with (-c or -C)");
1621 }
1622
Dmitry V. Levin2727aae2014-06-03 13:20:05 +00001623 if (cflag == CFLAG_ONLY_STATS) {
1624 if (iflag)
1625 error_msg("-%c has no effect with -c", 'i');
1626#ifdef USE_LIBUNWIND
1627 if (stack_trace_enabled)
1628 error_msg("-%c has no effect with -c", 'k');
1629#endif
1630 if (rflag)
1631 error_msg("-%c has no effect with -c", 'r');
1632 if (tflag)
1633 error_msg("-%c has no effect with -c", 't');
1634 if (Tflag)
1635 error_msg("-%c has no effect with -c", 'T');
1636 if (show_fd_path)
1637 error_msg("-%c has no effect with -c", 'y');
1638 }
1639
1640#ifdef USE_LIBUNWIND
1641 if (stack_trace_enabled)
1642 unwind_init();
1643#endif
1644
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001645 /* See if they want to run as another user. */
1646 if (username != NULL) {
1647 struct passwd *pent;
1648
1649 if (getuid() != 0 || geteuid() != 0) {
Denys Vlasenkocb2ad002011-06-23 13:05:29 +02001650 error_msg_and_die("You must be root to use the -u option");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001651 }
Denys Vlasenko5d645812011-08-20 12:48:18 +02001652 pent = getpwnam(username);
1653 if (pent == NULL) {
Denys Vlasenkocb2ad002011-06-23 13:05:29 +02001654 error_msg_and_die("Cannot find user '%s'", username);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001655 }
1656 run_uid = pent->pw_uid;
1657 run_gid = pent->pw_gid;
1658 }
1659 else {
1660 run_uid = getuid();
1661 run_gid = getgid();
1662 }
1663
Dmitry V. Levin04f8b482011-08-16 18:57:29 +00001664 if (followfork)
Dmitry V. Levin23ce9e42015-02-08 13:05:53 +00001665 ptrace_setoptions |= PTRACE_O_TRACECLONE |
1666 PTRACE_O_TRACEFORK |
1667 PTRACE_O_TRACEVFORK;
1668 if (debug_flag)
1669 fprintf(stderr, "ptrace_setoptions = %#x\n", ptrace_setoptions);
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001670 test_ptrace_seize();
Dmitry V. Levin8044bc12010-12-07 12:50:49 +00001671
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001672 /* Check if they want to redirect the output. */
1673 if (outfname) {
Roland McGrath37b9a662003-11-07 02:26:54 +00001674 /* See if they want to pipe the output. */
1675 if (outfname[0] == '|' || outfname[0] == '!') {
1676 /*
1677 * We can't do the <outfname>.PID funny business
1678 * when using popen, so prohibit it.
1679 */
Denys Vlasenko3db3b262012-03-16 15:15:14 +01001680 if (followfork >= 2)
Denys Vlasenko7dd23382011-06-22 13:03:56 +02001681 error_msg_and_die("Piping the output and -ff are mutually exclusive");
Denys Vlasenko6764f8f2012-03-22 09:56:20 +01001682 shared_log = strace_popen(outfname + 1);
Roland McGrath37b9a662003-11-07 02:26:54 +00001683 }
Denys Vlasenko3db3b262012-03-16 15:15:14 +01001684 else if (followfork < 2)
Denys Vlasenko6764f8f2012-03-22 09:56:20 +01001685 shared_log = strace_fopen(outfname);
Denys Vlasenko328bf252012-03-12 23:34:13 +01001686 } else {
1687 /* -ff without -o FILE is the same as single -f */
Denys Vlasenko3db3b262012-03-16 15:15:14 +01001688 if (followfork >= 2)
Denys Vlasenko328bf252012-03-12 23:34:13 +01001689 followfork = 1;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001690 }
1691
Denys Vlasenkocb2ad002011-06-23 13:05:29 +02001692 if (!outfname || outfname[0] == '|' || outfname[0] == '!') {
Denys Vlasenkoa677da52012-01-24 11:31:51 +01001693 char *buf = malloc(BUFSIZ);
1694 if (!buf)
1695 die_out_of_memory();
Denys Vlasenko6764f8f2012-03-22 09:56:20 +01001696 setvbuf(shared_log, buf, _IOLBF, BUFSIZ);
Denys Vlasenkocb2ad002011-06-23 13:05:29 +02001697 }
Denys Vlasenko837399a2012-01-24 11:37:03 +01001698 if (outfname && argv[0]) {
Denys Vlasenkob51581e2012-01-29 16:53:03 +01001699 if (!opt_intr)
1700 opt_intr = INTR_NEVER;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001701 qflag = 1;
Roland McGrath36931052003-06-03 01:35:20 +00001702 }
Denys Vlasenkob51581e2012-01-29 16:53:03 +01001703 if (!opt_intr)
1704 opt_intr = INTR_WHILE_WAIT;
Wang Chaob13c0de2010-11-12 17:25:19 +08001705
Denys Vlasenkob51581e2012-01-29 16:53:03 +01001706 /* argv[0] -pPID -oFILE Default interactive setting
1707 * yes 0 0 INTR_WHILE_WAIT
1708 * no 1 0 INTR_WHILE_WAIT
1709 * yes 0 1 INTR_NEVER
1710 * no 1 1 INTR_WHILE_WAIT
Roland McGrath54cc1c82007-11-03 23:34:11 +00001711 */
1712
Denys Vlasenko5c9d8f42013-02-19 15:30:12 +01001713 sigemptyset(&empty_set);
1714 sigemptyset(&blocked_set);
1715
Denys Vlasenkof909c8d2013-02-19 16:30:31 +01001716 /* startup_child() must be called before the signal handlers get
1717 * installed below as they are inherited into the spawned process.
1718 * Also we do not need to be protected by them as during interruption
1719 * in the startup_child() mode we kill the spawned process anyway.
1720 */
Denys Vlasenko61e7aad2012-03-15 13:44:17 +01001721 if (argv[0]) {
Dmitry V. Levin1d2435b2013-05-14 22:35:46 +00001722 if (!NOMMU_SYSTEM || daemonized_tracer)
1723 hide_log_until_execve = 1;
Denys Vlasenko2a3d2752013-05-14 16:07:46 +02001724 skip_one_b_execve = 1;
Denys Vlasenko837399a2012-01-24 11:37:03 +01001725 startup_child(argv);
Denys Vlasenko61e7aad2012-03-15 13:44:17 +01001726 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001727
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001728 sa.sa_handler = SIG_IGN;
1729 sigemptyset(&sa.sa_mask);
1730 sa.sa_flags = 0;
Denys Vlasenkob51581e2012-01-29 16:53:03 +01001731 sigaction(SIGTTOU, &sa, NULL); /* SIG_IGN */
1732 sigaction(SIGTTIN, &sa, NULL); /* SIG_IGN */
1733 if (opt_intr != INTR_ANYWHERE) {
1734 if (opt_intr == INTR_BLOCK_TSTP_TOO)
1735 sigaction(SIGTSTP, &sa, NULL); /* SIG_IGN */
1736 /*
1737 * In interactive mode (if no -o OUTFILE, or -p PID is used),
1738 * fatal signals are blocked while syscall stop is processed,
1739 * and acted on in between, when waiting for new syscall stops.
1740 * In non-interactive mode, signals are ignored.
1741 */
1742 if (opt_intr == INTR_WHILE_WAIT) {
1743 sigaddset(&blocked_set, SIGHUP);
1744 sigaddset(&blocked_set, SIGINT);
1745 sigaddset(&blocked_set, SIGQUIT);
1746 sigaddset(&blocked_set, SIGPIPE);
1747 sigaddset(&blocked_set, SIGTERM);
1748 sa.sa_handler = interrupt;
Denys Vlasenkob51581e2012-01-29 16:53:03 +01001749 }
1750 /* SIG_IGN, or set handler for these */
1751 sigaction(SIGHUP, &sa, NULL);
1752 sigaction(SIGINT, &sa, NULL);
1753 sigaction(SIGQUIT, &sa, NULL);
1754 sigaction(SIGPIPE, &sa, NULL);
1755 sigaction(SIGTERM, &sa, NULL);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001756 }
Denys Vlasenkofd883382012-03-09 13:03:41 +01001757 if (nprocs != 0 || daemonized_tracer)
Roland McGrath02203312007-06-11 22:06:31 +00001758 startup_attach();
Roland McGrath02203312007-06-11 22:06:31 +00001759
Denys Vlasenkofd883382012-03-09 13:03:41 +01001760 /* Do we want pids printed in our -o OUTFILE?
1761 * -ff: no (every pid has its own file); or
1762 * -f: yes (there can be more pids in the future); or
1763 * -p PID1,PID2: yes (there are already more than one pid)
1764 */
1765 print_pid_pfx = (outfname && followfork < 2 && (followfork == 1 || nprocs > 1));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001766}
1767
Denys Vlasenkoeebb04d2012-01-27 15:24:48 +01001768static struct tcb *
Roland McGrath54e931f2010-09-14 18:59:20 -07001769pid2tcb(int pid)
1770{
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +00001771 unsigned int i;
Roland McGrath54e931f2010-09-14 18:59:20 -07001772
1773 if (pid <= 0)
1774 return NULL;
1775
1776 for (i = 0; i < tcbtabsize; i++) {
1777 struct tcb *tcp = tcbtab[i];
Denys Vlasenkofadbf662013-06-26 14:14:29 +02001778 if (tcp->pid == pid)
Roland McGrath54e931f2010-09-14 18:59:20 -07001779 return tcp;
1780 }
1781
1782 return NULL;
1783}
1784
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001785static void
Denys Vlasenko12014262011-05-30 14:00:14 +02001786cleanup(void)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001787{
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +00001788 unsigned int i;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001789 struct tcb *tcp;
Denys Vlasenko35218842012-01-29 21:17:56 +01001790 int fatal_sig;
1791
1792 /* 'interrupted' is a volatile object, fetch it only once */
1793 fatal_sig = interrupted;
1794 if (!fatal_sig)
1795 fatal_sig = SIGTERM;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001796
Roland McGrathee9d4352002-12-18 04:16:10 +00001797 for (i = 0; i < tcbtabsize; i++) {
1798 tcp = tcbtab[i];
Denys Vlasenkofadbf662013-06-26 14:14:29 +02001799 if (!tcp->pid)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001800 continue;
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001801 if (debug_flag)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001802 fprintf(stderr,
1803 "cleanup: looking at pid %u\n", tcp->pid);
Denys Vlasenkofadbf662013-06-26 14:14:29 +02001804 if (tcp->pid == strace_child) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001805 kill(tcp->pid, SIGCONT);
Denys Vlasenkoa3559252012-01-29 16:43:51 +01001806 kill(tcp->pid, fatal_sig);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001807 }
Denys Vlasenko7de265d2012-03-13 11:44:31 +01001808 detach(tcp);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001809 }
1810 if (cflag)
Denys Vlasenko6764f8f2012-03-22 09:56:20 +01001811 call_summary(shared_log);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001812}
1813
1814static void
Denys Vlasenko12014262011-05-30 14:00:14 +02001815interrupt(int sig)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001816{
Denys Vlasenkoa3559252012-01-29 16:43:51 +01001817 interrupted = sig;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001818}
1819
Denys Vlasenkod0ffdf42013-07-01 13:02:33 +02001820static void
Dmitry V. Levin0f4ad302015-02-22 02:13:04 +00001821print_debug_info(const int pid, int status)
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00001822{
1823 const unsigned int event = (unsigned int) status >> 16;
1824 char buf[sizeof("WIFEXITED,exitcode=%u") + sizeof(int)*3 /*paranoia:*/ + 16];
1825 char evbuf[sizeof(",EVENT_VFORK_DONE (%u)") + sizeof(int)*3 /*paranoia:*/ + 16];
1826
1827 strcpy(buf, "???");
1828 if (WIFSIGNALED(status))
1829#ifdef WCOREDUMP
1830 sprintf(buf, "WIFSIGNALED,%ssig=%s",
1831 WCOREDUMP(status) ? "core," : "",
1832 signame(WTERMSIG(status)));
1833#else
1834 sprintf(buf, "WIFSIGNALED,sig=%s",
1835 signame(WTERMSIG(status)));
1836#endif
1837 if (WIFEXITED(status))
1838 sprintf(buf, "WIFEXITED,exitcode=%u", WEXITSTATUS(status));
1839 if (WIFSTOPPED(status))
1840 sprintf(buf, "WIFSTOPPED,sig=%s", signame(WSTOPSIG(status)));
1841#ifdef WIFCONTINUED
1842 /* Should never be seen */
1843 if (WIFCONTINUED(status))
1844 strcpy(buf, "WIFCONTINUED");
1845#endif
1846 evbuf[0] = '\0';
1847 if (event != 0) {
1848 static const char *const event_names[] = {
1849 [PTRACE_EVENT_CLONE] = "CLONE",
1850 [PTRACE_EVENT_FORK] = "FORK",
1851 [PTRACE_EVENT_VFORK] = "VFORK",
1852 [PTRACE_EVENT_VFORK_DONE] = "VFORK_DONE",
1853 [PTRACE_EVENT_EXEC] = "EXEC",
1854 [PTRACE_EVENT_EXIT] = "EXIT",
1855 /* [PTRACE_EVENT_STOP (=128)] would make biggish array */
1856 };
1857 const char *e = "??";
1858 if (event < ARRAY_SIZE(event_names))
1859 e = event_names[event];
1860 else if (event == PTRACE_EVENT_STOP)
1861 e = "STOP";
1862 sprintf(evbuf, ",EVENT_%s (%u)", e, event);
1863 }
1864 fprintf(stderr, " [wait(0x%06x) = %u] %s%s\n", status, pid, buf, evbuf);
1865}
1866
1867static struct tcb *
Dmitry V. Levin0f4ad302015-02-22 02:13:04 +00001868maybe_allocate_tcb(const int pid, int status)
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00001869{
1870 if (!WIFSTOPPED(status)) {
Dmitry V. Levinaa801922015-02-07 18:48:55 +00001871 if (detach_on_execve && pid == strace_child) {
1872 /* example: strace -bexecve sh -c 'exec true' */
1873 strace_child = 0;
1874 return NULL;
1875 }
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00001876 /*
1877 * This can happen if we inherited an unknown child.
Dmitry V. Levinaa801922015-02-07 18:48:55 +00001878 * Example: (sleep 1 & exec strace true)
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00001879 */
1880 error_msg("Exit of unknown pid %u ignored", pid);
1881 return NULL;
1882 }
1883 if (followfork) {
1884 /* We assume it's a fork/vfork/clone child */
1885 struct tcb *tcp = alloctcb(pid);
1886 tcp->flags |= TCB_ATTACHED | TCB_STARTUP | post_attach_sigstop;
1887 newoutf(tcp);
1888 if (!qflag)
1889 fprintf(stderr, "Process %d attached\n", pid);
1890 return tcp;
1891 } else {
1892 /* This can happen if a clone call used
1893 * CLONE_PTRACE itself.
1894 */
1895 ptrace(PTRACE_CONT, pid, (char *) 0, 0);
1896 error_msg("Stop of unknown pid %u seen, PTRACE_CONTed it", pid);
1897 return NULL;
1898 }
1899}
1900
1901static struct tcb *
1902maybe_switch_tcbs(struct tcb *tcp, const int pid)
1903{
1904 FILE *fp;
1905 struct tcb *execve_thread;
1906 long old_pid = 0;
1907
1908 if (ptrace(PTRACE_GETEVENTMSG, pid, NULL, (long) &old_pid) < 0)
1909 return tcp;
1910 /* Avoid truncation in pid2tcb() param passing */
1911 if (old_pid <= 0 || old_pid == pid)
1912 return tcp;
1913 if ((unsigned long) old_pid > UINT_MAX)
1914 return tcp;
1915 execve_thread = pid2tcb(old_pid);
1916 /* It should be !NULL, but I feel paranoid */
1917 if (!execve_thread)
1918 return tcp;
1919
1920 if (execve_thread->curcol != 0) {
1921 /*
1922 * One case we are here is -ff:
1923 * try "strace -oLOG -ff test/threaded_execve"
1924 */
1925 fprintf(execve_thread->outf, " <pid changed to %d ...>\n", pid);
1926 /*execve_thread->curcol = 0; - no need, see code below */
1927 }
1928 /* Swap output FILEs (needed for -ff) */
1929 fp = execve_thread->outf;
1930 execve_thread->outf = tcp->outf;
1931 tcp->outf = fp;
1932 /* And their column positions */
1933 execve_thread->curcol = tcp->curcol;
1934 tcp->curcol = 0;
1935 /* Drop leader, but close execve'd thread outfile (if -ff) */
1936 droptcb(tcp);
1937 /* Switch to the thread, reusing leader's outfile and pid */
1938 tcp = execve_thread;
1939 tcp->pid = pid;
1940 if (cflag != CFLAG_ONLY_STATS) {
1941 printleader(tcp);
1942 tprintf("+++ superseded by execve in pid %lu +++\n", old_pid);
1943 line_ended();
1944 tcp->flags |= TCB_REPRINT;
1945 }
1946
1947 return tcp;
1948}
1949
1950static void
Dmitry V. Levin0f4ad302015-02-22 02:13:04 +00001951print_signalled(struct tcb *tcp, const int pid, int status)
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00001952{
Dmitry V. Levin2cd488b2015-02-07 19:41:48 +00001953 if (pid == strace_child) {
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00001954 exit_code = 0x100 | WTERMSIG(status);
Dmitry V. Levin2cd488b2015-02-07 19:41:48 +00001955 strace_child = 0;
1956 }
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00001957
1958 if (cflag != CFLAG_ONLY_STATS
1959 && (qual_flags[WTERMSIG(status)] & QUAL_SIGNAL)
1960 ) {
1961 printleader(tcp);
1962#ifdef WCOREDUMP
1963 tprintf("+++ killed by %s %s+++\n",
1964 signame(WTERMSIG(status)),
1965 WCOREDUMP(status) ? "(core dumped) " : "");
1966#else
1967 tprintf("+++ killed by %s +++\n",
1968 signame(WTERMSIG(status)));
1969#endif
1970 line_ended();
1971 }
1972}
1973
1974static void
Dmitry V. Levin0f4ad302015-02-22 02:13:04 +00001975print_exited(struct tcb *tcp, const int pid, int status)
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00001976{
Dmitry V. Levin2cd488b2015-02-07 19:41:48 +00001977 if (pid == strace_child) {
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00001978 exit_code = WEXITSTATUS(status);
Dmitry V. Levin2cd488b2015-02-07 19:41:48 +00001979 strace_child = 0;
1980 }
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00001981
1982 if (cflag != CFLAG_ONLY_STATS &&
1983 qflag < 2) {
1984 printleader(tcp);
1985 tprintf("+++ exited with %d +++\n", WEXITSTATUS(status));
1986 line_ended();
1987 }
1988}
1989
1990static void
1991print_stopped(struct tcb *tcp, const siginfo_t *si, const unsigned int sig)
1992{
1993 if (cflag != CFLAG_ONLY_STATS
1994 && !hide_log_until_execve
1995 && (qual_flags[sig] & QUAL_SIGNAL)
1996 ) {
1997 printleader(tcp);
1998 if (si) {
1999 tprintf("--- %s ", signame(sig));
2000 printsiginfo(si, verbose(tcp));
2001 tprints(" ---\n");
2002 } else
2003 tprintf("--- stopped by %s ---\n", signame(sig));
2004 line_ended();
2005 }
2006}
2007
Denys Vlasenko4bb2ffd2015-03-21 18:13:45 +01002008static void
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002009startup_tcb(struct tcb *tcp)
2010{
2011 if (debug_flag)
2012 fprintf(stderr, "pid %d has TCB_STARTUP, initializing it\n",
2013 tcp->pid);
2014
2015 tcp->flags &= ~TCB_STARTUP;
2016
Dmitry V. Levin23ce9e42015-02-08 13:05:53 +00002017 if (!use_seize) {
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002018 if (debug_flag)
2019 fprintf(stderr, "setting opts 0x%x on pid %d\n",
2020 ptrace_setoptions, tcp->pid);
2021 if (ptrace(PTRACE_SETOPTIONS, tcp->pid, NULL, ptrace_setoptions) < 0) {
2022 if (errno != ESRCH) {
2023 /* Should never happen, really */
2024 perror_msg_and_die("PTRACE_SETOPTIONS");
2025 }
2026 }
2027 }
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002028}
2029
2030/* Returns true iff the main trace loop has to continue. */
2031static bool
Denys Vlasenko12014262011-05-30 14:00:14 +02002032trace(void)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002033{
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002034 int pid;
2035 int wait_errno;
2036 int status;
2037 bool stopped;
2038 unsigned int sig;
2039 unsigned int event;
2040 struct tcb *tcp;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002041 struct rusage ru;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002042
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002043 if (interrupted)
2044 return false;
Denys Vlasenkof7db5dd2012-01-28 01:16:02 +01002045
Denys Vlasenko364728d2015-03-21 18:40:53 +01002046 /*
2047 * Used to exit simply when nprocs hits zero, but in this testcase:
2048 * int main() { _exit(!!fork()); }
2049 * under strace -f, parent sometimes (rarely) manages
2050 * to exit before we see the first stop of the child,
2051 * and we are losing track of it:
2052 * 19923 clone(...) = 19924
2053 * 19923 exit_group(1) = ?
2054 * 19923 +++ exited with 1 +++
2055 * Exiting only when wait() returns ECHILD works better.
2056 */
2057 if (popen_pid != 0) {
2058 /* However, if -o|logger is in use, we can't do that.
2059 * Can work around that by double-forking the logger,
2060 * but that loses the ability to wait for its completion
2061 * on exit. Oh well...
2062 */
2063 if (nprocs == 0)
2064 return false;
2065 }
Denys Vlasenko725dd422013-06-20 11:06:58 +02002066
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002067 if (interactive)
2068 sigprocmask(SIG_SETMASK, &empty_set, NULL);
2069 pid = wait4(-1, &status, __WALL, (cflag ? &ru : NULL));
2070 wait_errno = errno;
2071 if (interactive)
2072 sigprocmask(SIG_BLOCK, &blocked_set, NULL);
Denys Vlasenko7c41ce22013-07-08 13:55:04 +02002073
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002074 if (pid < 0) {
2075 if (wait_errno == EINTR)
2076 return true;
2077 if (nprocs == 0 && wait_errno == ECHILD)
2078 return false;
2079 /*
2080 * If nprocs > 0, ECHILD is not expected,
2081 * treat it as any other error here:
2082 */
2083 errno = wait_errno;
2084 perror_msg_and_die("wait4(__WALL)");
2085 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002086
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002087 if (pid == popen_pid) {
2088 if (!WIFSTOPPED(status))
2089 popen_pid = 0;
2090 return true;
2091 }
Denys Vlasenko725dd422013-06-20 11:06:58 +02002092
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002093 if (debug_flag)
2094 print_debug_info(pid, status);
Denys Vlasenkof7db5dd2012-01-28 01:16:02 +01002095
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002096 /* Look up 'pid' in our table. */
2097 tcp = pid2tcb(pid);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002098
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002099 if (!tcp) {
2100 tcp = maybe_allocate_tcb(pid, status);
2101 if (!tcp)
2102 return true;
2103 }
Denys Vlasenkof7db5dd2012-01-28 01:16:02 +01002104
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002105 if (WIFSTOPPED(status))
2106 get_regs(pid);
Dmitry V. Levine9bfff62015-02-13 22:45:33 +00002107 else
2108 clear_regs();
Denys Vlasenko7de265d2012-03-13 11:44:31 +01002109
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002110 event = (unsigned int) status >> 16;
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01002111
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002112 if (event == PTRACE_EVENT_EXEC) {
2113 /*
2114 * Under Linux, execve changes pid to thread leader's pid,
Denys Vlasenko8511f2a2012-03-22 09:35:51 +01002115 * and we see this changed pid on EVENT_EXEC and later,
2116 * execve sysexit. Leader "disappears" without exit
2117 * notification. Let user know that, drop leader's tcb,
2118 * and fix up pid in execve thread's tcb.
2119 * Effectively, execve thread's tcb replaces leader's tcb.
2120 *
2121 * BTW, leader is 'stuck undead' (doesn't report WIFEXITED
2122 * on exit syscall) in multithreaded programs exactly
2123 * in order to handle this case.
2124 *
2125 * PTRACE_GETEVENTMSG returns old pid starting from Linux 3.0.
2126 * On 2.6 and earlier, it can return garbage.
2127 */
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002128 if (os_release >= KERNEL_VERSION(3,0,0))
2129 tcp = maybe_switch_tcbs(tcp, pid);
Denys Vlasenko8511f2a2012-03-22 09:35:51 +01002130
Dmitry V. Levine6908132015-02-07 17:47:53 +00002131 if (detach_on_execve && !skip_one_b_execve) {
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002132 detach(tcp); /* do "-b execve" thingy */
Dmitry V. Levine6908132015-02-07 17:47:53 +00002133 return true;
2134 }
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002135 skip_one_b_execve = 0;
2136 }
Denys Vlasenko8511f2a2012-03-22 09:35:51 +01002137
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002138 /* Set current output file */
2139 current_tcp = tcp;
Denys Vlasenko8511f2a2012-03-22 09:35:51 +01002140
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002141 if (cflag) {
2142 tv_sub(&tcp->dtime, &ru.ru_stime, &tcp->stime);
2143 tcp->stime = ru.ru_stime;
2144 }
Denys Vlasenko8511f2a2012-03-22 09:35:51 +01002145
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002146 if (WIFSIGNALED(status)) {
2147 print_signalled(tcp, pid, status);
2148 droptcb(tcp);
2149 return true;
2150 }
Denys Vlasenko7de265d2012-03-13 11:44:31 +01002151
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002152 if (WIFEXITED(status)) {
2153 print_exited(tcp, pid, status);
2154 droptcb(tcp);
2155 return true;
2156 }
Roland McGratheb9e2e82009-06-02 16:49:22 -07002157
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002158 if (!WIFSTOPPED(status)) {
2159 /*
2160 * Neither signalled, exited or stopped.
2161 * How could that be?
2162 */
2163 error_msg("pid %u not stopped!", pid);
2164 droptcb(tcp);
2165 return true;
2166 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002167
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002168 /* Is this the very first time we see this tracee stopped? */
2169 if (tcp->flags & TCB_STARTUP) {
Denys Vlasenko4bb2ffd2015-03-21 18:13:45 +01002170 startup_tcb(tcp);
Denys Vlasenko8497b622015-03-21 17:51:52 +01002171 if (get_scno(tcp) == 1)
2172 tcp->s_prev_ent = tcp->s_ent;
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002173 }
Denys Vlasenkof88837a2011-09-05 14:05:46 +02002174
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002175 sig = WSTOPSIG(status);
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01002176
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002177 if (event != 0) {
2178 /* Ptrace event */
Denys Vlasenko5c9d8f42013-02-19 15:30:12 +01002179#if USE_SEIZE
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002180 if (event == PTRACE_EVENT_STOP) {
2181 /*
2182 * PTRACE_INTERRUPT-stop or group-stop.
2183 * PTRACE_INTERRUPT-stop has sig == SIGTRAP here.
2184 */
2185 switch (sig) {
2186 case SIGSTOP:
2187 case SIGTSTP:
2188 case SIGTTIN:
2189 case SIGTTOU:
2190 stopped = true;
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01002191 goto show_stopsig;
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01002192 }
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002193 }
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01002194#endif
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002195 goto restart_tracee_with_sig_0;
2196 }
Denys Vlasenkof88837a2011-09-05 14:05:46 +02002197
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002198 /*
2199 * Is this post-attach SIGSTOP?
2200 * Interestingly, the process may stop
2201 * with STOPSIG equal to some other signal
2202 * than SIGSTOP if we happend to attach
2203 * just before the process takes a signal.
2204 */
2205 if (sig == SIGSTOP && (tcp->flags & TCB_IGNORE_ONE_SIGSTOP)) {
2206 if (debug_flag)
2207 fprintf(stderr, "ignored SIGSTOP on pid %d\n", tcp->pid);
2208 tcp->flags &= ~TCB_IGNORE_ONE_SIGSTOP;
2209 goto restart_tracee_with_sig_0;
2210 }
2211
2212 if (sig != syscall_trap_sig) {
2213 siginfo_t si;
2214
2215 /*
2216 * True if tracee is stopped by signal
2217 * (as opposed to "tracee received signal").
2218 * TODO: shouldn't we check for errno == EINVAL too?
2219 * We can get ESRCH instead, you know...
Denys Vlasenkof88837a2011-09-05 14:05:46 +02002220 */
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002221 stopped = ptrace(PTRACE_GETSIGINFO, pid, 0, (long) &si) < 0;
Denys Vlasenko5c9d8f42013-02-19 15:30:12 +01002222#if USE_SEIZE
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002223show_stopsig:
Denys Vlasenko67038162012-01-29 16:46:46 +01002224#endif
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002225 print_stopped(tcp, stopped ? NULL : &si, sig);
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01002226
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002227 if (!stopped)
2228 /* It's signal-delivery-stop. Inject the signal */
Denys Vlasenko6cda73f2011-09-02 16:23:53 +02002229 goto restart_tracee;
Denys Vlasenko2ecba322011-08-21 17:35:39 +02002230
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002231 /* It's group-stop */
2232 if (use_seize) {
2233 /*
2234 * This ends ptrace-stop, but does *not* end group-stop.
2235 * This makes stopping signals work properly on straced process
2236 * (that is, process really stops. It used to continue to run).
Denys Vlasenkof2025022012-03-09 15:29:45 +01002237 */
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002238 if (ptrace_restart(PTRACE_LISTEN, tcp, 0) < 0) {
2239 /* Note: ptrace_restart emitted error message */
2240 exit_code = 1;
2241 return false;
2242 }
2243 return true;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002244 }
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002245 /* We don't have PTRACE_LISTEN support... */
2246 goto restart_tracee;
2247 }
2248
2249 /* We handled quick cases, we are permitted to interrupt now. */
2250 if (interrupted)
2251 return false;
2252
2253 /*
2254 * This should be syscall entry or exit.
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002255 * Handle it.
2256 */
2257 if (trace_syscall(tcp) < 0) {
2258 /*
2259 * ptrace() failed in trace_syscall().
2260 * Likely a result of process disappearing mid-flight.
2261 * Observed case: exit_group() or SIGKILL terminating
2262 * all processes in thread group.
2263 * We assume that ptrace error was caused by process death.
2264 * We used to detach(tcp) here, but since we no longer
2265 * implement "detach before death" policy/hack,
2266 * we can let this process to report its death to us
2267 * normally, via WIFEXITED or WIFSIGNALED wait status.
2268 */
2269 return true;
2270 }
2271
2272restart_tracee_with_sig_0:
2273 sig = 0;
2274
2275restart_tracee:
2276 if (ptrace_restart(PTRACE_SYSCALL, tcp, sig) < 0) {
2277 /* Note: ptrace_restart emitted error message */
2278 exit_code = 1;
2279 return false;
2280 }
2281
2282 return true;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002283}
Denys Vlasenkoecc8b972012-03-12 23:05:25 +01002284
2285int
2286main(int argc, char *argv[])
2287{
2288 init(argc, argv);
2289
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002290 while (trace())
2291 ;
Denys Vlasenkoecc8b972012-03-12 23:05:25 +01002292
2293 cleanup();
2294 fflush(NULL);
Dmitry V. Levincf534362012-07-12 20:54:46 +00002295 if (shared_log != stderr)
2296 fclose(shared_log);
2297 if (popen_pid) {
2298 while (waitpid(popen_pid, NULL, 0) < 0 && errno == EINTR)
2299 ;
2300 }
Denys Vlasenkoecc8b972012-03-12 23:05:25 +01002301 if (exit_code > 0xff) {
2302 /* Avoid potential core file clobbering. */
Dmitry V. Levinc8938e02013-03-20 21:40:15 +00002303 struct_rlimit rlim = {0, 0};
2304 set_rlimit(RLIMIT_CORE, &rlim);
Denys Vlasenkoecc8b972012-03-12 23:05:25 +01002305
2306 /* Child was killed by a signal, mimic that. */
2307 exit_code &= 0xff;
2308 signal(exit_code, SIG_DFL);
2309 raise(exit_code);
2310 /* Paranoia - what if this signal is not fatal?
2311 Exit with 128 + signo then. */
2312 exit_code += 128;
2313 }
2314
2315 return exit_code;
2316}