blob: 738c49459b3d1d98d8fdffa0c3d292929c4de8aa [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
Dmitry V. Levin5647cf82015-03-29 22:45:03 +0000254static void ATTRIBUTE_NORETURN
255die(void)
Denys Vlasenko75422762011-05-27 14:36:01 +0200256{
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
Dmitry V. Levinccee1692012-03-25 21:49:48 +0000327static void
328error_opt_arg(int opt, const char *arg)
329{
330 error_msg_and_die("Invalid -%c argument: '%s'", opt, arg);
331}
332
Denys Vlasenko5c9d8f42013-02-19 15:30:12 +0100333#if USE_SEIZE
Denys Vlasenko31fa8a22012-01-29 02:01:44 +0100334static int
335ptrace_attach_or_seize(int pid)
336{
337 int r;
338 if (!use_seize)
Denys Vlasenkoc169d942013-07-10 14:33:05 +0200339 return ptrace(PTRACE_ATTACH, pid, 0L, 0L);
Dmitry V. Levin23ce9e42015-02-08 13:05:53 +0000340 r = ptrace(PTRACE_SEIZE, pid, 0L, (unsigned long) ptrace_setoptions);
Denys Vlasenko31fa8a22012-01-29 02:01:44 +0100341 if (r)
342 return r;
Denys Vlasenkoc169d942013-07-10 14:33:05 +0200343 r = ptrace(PTRACE_INTERRUPT, pid, 0L, 0L);
Denys Vlasenko31fa8a22012-01-29 02:01:44 +0100344 return r;
345}
346#else
347# define ptrace_attach_or_seize(pid) ptrace(PTRACE_ATTACH, (pid), 0, 0)
348#endif
349
Denys Vlasenko852f98a2012-03-20 16:26:25 +0100350/*
351 * Used when we want to unblock stopped traced process.
352 * Should be only used with PTRACE_CONT, PTRACE_DETACH and PTRACE_SYSCALL.
353 * Returns 0 on success or if error was ESRCH
354 * (presumably process was killed while we talk to it).
355 * Otherwise prints error message and returns -1.
356 */
357static int
358ptrace_restart(int op, struct tcb *tcp, int sig)
359{
360 int err;
361 const char *msg;
362
363 errno = 0;
364 ptrace(op, tcp->pid, (void *) 0, (long) sig);
365 err = errno;
Denys Vlasenko23506752012-03-21 10:32:49 +0100366 if (!err)
Denys Vlasenko852f98a2012-03-20 16:26:25 +0100367 return 0;
368
Denys Vlasenko852f98a2012-03-20 16:26:25 +0100369 msg = "SYSCALL";
370 if (op == PTRACE_CONT)
371 msg = "CONT";
372 if (op == PTRACE_DETACH)
373 msg = "DETACH";
374#ifdef PTRACE_LISTEN
375 if (op == PTRACE_LISTEN)
376 msg = "LISTEN";
377#endif
Denys Vlasenko23506752012-03-21 10:32:49 +0100378 /*
379 * Why curcol != 0? Otherwise sometimes we get this:
380 *
381 * 10252 kill(10253, SIGKILL) = 0
382 * <ptrace(SYSCALL,10252):No such process>10253 ...next decode...
383 *
384 * 10252 died after we retrieved syscall exit data,
385 * but before we tried to restart it. Log looks ugly.
386 */
Denys Vlasenko6764f8f2012-03-22 09:56:20 +0100387 if (current_tcp && current_tcp->curcol != 0) {
Denys Vlasenko23506752012-03-21 10:32:49 +0100388 tprintf(" <ptrace(%s):%s>\n", msg, strerror(err));
389 line_ended();
390 }
391 if (err == ESRCH)
392 return 0;
393 errno = err;
Denys Vlasenko852f98a2012-03-20 16:26:25 +0100394 perror_msg("ptrace(PTRACE_%s,pid:%d,sig:%d)", msg, tcp->pid, sig);
395 return -1;
396}
397
Denys Vlasenko1f532ab2011-06-22 13:11:23 +0200398static void
Dmitry V. Levin10de62b2006-12-13 21:45:31 +0000399set_cloexec_flag(int fd)
400{
Denys Vlasenko1f532ab2011-06-22 13:11:23 +0200401 int flags, newflags;
Dmitry V. Levin10de62b2006-12-13 21:45:31 +0000402
Denys Vlasenko1f532ab2011-06-22 13:11:23 +0200403 flags = fcntl(fd, F_GETFD);
404 if (flags < 0) {
405 /* Can happen only if fd is bad.
406 * Should never happen: if it does, we have a bug
407 * in the caller. Therefore we just abort
408 * instead of propagating the error.
409 */
410 perror_msg_and_die("fcntl(%d, F_GETFD)", fd);
Dmitry V. Levin10de62b2006-12-13 21:45:31 +0000411 }
412
413 newflags = flags | FD_CLOEXEC;
414 if (flags == newflags)
Denys Vlasenko1f532ab2011-06-22 13:11:23 +0200415 return;
Dmitry V. Levin10de62b2006-12-13 21:45:31 +0000416
Denys Vlasenko1f532ab2011-06-22 13:11:23 +0200417 fcntl(fd, F_SETFD, newflags); /* never fails */
Dmitry V. Levin10de62b2006-12-13 21:45:31 +0000418}
419
Denys Vlasenko75fe85c2012-03-09 15:15:24 +0100420static void kill_save_errno(pid_t pid, int sig)
421{
422 int saved_errno = errno;
423
424 (void) kill(pid, sig);
425 errno = saved_errno;
426}
427
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100428/*
429 * When strace is setuid executable, we have to swap uids
430 * before and after filesystem and process management operations.
431 */
432static void
433swap_uid(void)
434{
435 int euid = geteuid(), uid = getuid();
436
437 if (euid != uid && setreuid(euid, uid) < 0) {
438 perror_msg_and_die("setreuid");
439 }
440}
441
Dmitry V. Levin0506f0f2013-11-12 22:34:42 +0000442#ifdef _LARGEFILE64_SOURCE
Dmitry V. Levind3541302014-02-26 00:01:00 +0000443# ifdef HAVE_FOPEN64
444# define fopen_for_output fopen64
445# else
446# define fopen_for_output fopen
447# endif
Dmitry V. Levinc8938e02013-03-20 21:40:15 +0000448# define struct_stat struct stat64
449# define stat_file stat64
450# define struct_dirent struct dirent64
451# define read_dir readdir64
452# define struct_rlimit struct rlimit64
453# define set_rlimit setrlimit64
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100454#else
455# define fopen_for_output fopen
Dmitry V. Levinc8938e02013-03-20 21:40:15 +0000456# define struct_stat struct stat
457# define stat_file stat
458# define struct_dirent struct dirent
459# define read_dir readdir
460# define struct_rlimit struct rlimit
461# define set_rlimit setrlimit
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100462#endif
463
464static FILE *
465strace_fopen(const char *path)
466{
467 FILE *fp;
468
469 swap_uid();
470 fp = fopen_for_output(path, "w");
471 if (!fp)
472 perror_msg_and_die("Can't fopen '%s'", path);
473 swap_uid();
474 set_cloexec_flag(fileno(fp));
475 return fp;
476}
477
478static int popen_pid = 0;
479
480#ifndef _PATH_BSHELL
481# define _PATH_BSHELL "/bin/sh"
482#endif
483
484/*
485 * We cannot use standard popen(3) here because we have to distinguish
486 * popen child process from other processes we trace, and standard popen(3)
487 * does not export its child's pid.
488 */
489static FILE *
490strace_popen(const char *command)
491{
492 FILE *fp;
Denys Vlasenko519af5a2013-07-02 11:31:24 +0200493 int pid;
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100494 int fds[2];
495
496 swap_uid();
497 if (pipe(fds) < 0)
498 perror_msg_and_die("pipe");
499
500 set_cloexec_flag(fds[1]); /* never fails */
501
Denys Vlasenko519af5a2013-07-02 11:31:24 +0200502 pid = vfork();
503 if (pid < 0)
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100504 perror_msg_and_die("vfork");
505
Denys Vlasenko519af5a2013-07-02 11:31:24 +0200506 if (pid == 0) {
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100507 /* child */
508 close(fds[1]);
509 if (fds[0] != 0) {
510 if (dup2(fds[0], 0))
511 perror_msg_and_die("dup2");
512 close(fds[0]);
513 }
514 execl(_PATH_BSHELL, "sh", "-c", command, NULL);
515 perror_msg_and_die("Can't execute '%s'", _PATH_BSHELL);
516 }
517
518 /* parent */
Denys Vlasenko519af5a2013-07-02 11:31:24 +0200519 popen_pid = pid;
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100520 close(fds[0]);
521 swap_uid();
522 fp = fdopen(fds[1], "w");
523 if (!fp)
524 die_out_of_memory();
525 return fp;
526}
527
Denys Vlasenko2e856a12012-03-12 23:02:26 +0100528void
529tprintf(const char *fmt, ...)
530{
531 va_list args;
532
533 va_start(args, fmt);
Denys Vlasenko6764f8f2012-03-22 09:56:20 +0100534 if (current_tcp) {
Denys Vlasenko6e4f3c12012-04-16 18:22:19 +0200535 int n = strace_vfprintf(current_tcp->outf, fmt, args);
Denys Vlasenko2e856a12012-03-12 23:02:26 +0100536 if (n < 0) {
Denys Vlasenko6764f8f2012-03-22 09:56:20 +0100537 if (current_tcp->outf != stderr)
Dmitry V. Levin9a71bcd2012-09-17 23:20:54 +0000538 perror_msg("%s", outfname);
Denys Vlasenko2e856a12012-03-12 23:02:26 +0100539 } else
Denys Vlasenko6764f8f2012-03-22 09:56:20 +0100540 current_tcp->curcol += n;
Denys Vlasenko2e856a12012-03-12 23:02:26 +0100541 }
542 va_end(args);
543}
544
Dmitry V. Levind3541302014-02-26 00:01:00 +0000545#ifndef HAVE_FPUTS_UNLOCKED
546# define fputs_unlocked fputs
547#endif
548
Denys Vlasenko2e856a12012-03-12 23:02:26 +0100549void
550tprints(const char *str)
551{
Denys Vlasenko6764f8f2012-03-22 09:56:20 +0100552 if (current_tcp) {
Denys Vlasenko142aee02012-04-16 18:10:15 +0200553 int n = fputs_unlocked(str, current_tcp->outf);
Denys Vlasenko2e856a12012-03-12 23:02:26 +0100554 if (n >= 0) {
Denys Vlasenko6764f8f2012-03-22 09:56:20 +0100555 current_tcp->curcol += strlen(str);
Denys Vlasenko2e856a12012-03-12 23:02:26 +0100556 return;
557 }
Denys Vlasenko6764f8f2012-03-22 09:56:20 +0100558 if (current_tcp->outf != stderr)
Dmitry V. Levin9a71bcd2012-09-17 23:20:54 +0000559 perror_msg("%s", outfname);
Denys Vlasenko2e856a12012-03-12 23:02:26 +0100560 }
561}
562
563void
Denys Vlasenko7de265d2012-03-13 11:44:31 +0100564line_ended(void)
565{
Denys Vlasenko6764f8f2012-03-22 09:56:20 +0100566 if (current_tcp) {
567 current_tcp->curcol = 0;
568 fflush(current_tcp->outf);
569 }
570 if (printing_tcp) {
571 printing_tcp->curcol = 0;
572 printing_tcp = NULL;
573 }
Denys Vlasenko7de265d2012-03-13 11:44:31 +0100574}
575
576void
Denys Vlasenko2e856a12012-03-12 23:02:26 +0100577printleader(struct tcb *tcp)
578{
Denys Vlasenko7de265d2012-03-13 11:44:31 +0100579 /* If -ff, "previous tcb we printed" is always the same as current,
580 * because we have per-tcb output files.
581 */
582 if (followfork >= 2)
583 printing_tcp = tcp;
584
Denys Vlasenko2e856a12012-03-12 23:02:26 +0100585 if (printing_tcp) {
Denys Vlasenko6764f8f2012-03-22 09:56:20 +0100586 current_tcp = printing_tcp;
Denys Vlasenko7de265d2012-03-13 11:44:31 +0100587 if (printing_tcp->curcol != 0 && (followfork < 2 || printing_tcp == tcp)) {
588 /*
589 * case 1: we have a shared log (i.e. not -ff), and last line
590 * wasn't finished (same or different tcb, doesn't matter).
591 * case 2: split log, we are the same tcb, but our last line
592 * didn't finish ("SIGKILL nuked us after syscall entry" etc).
593 */
Denys Vlasenko2e856a12012-03-12 23:02:26 +0100594 tprints(" <unfinished ...>\n");
Denys Vlasenko7de265d2012-03-13 11:44:31 +0100595 printing_tcp->curcol = 0;
Denys Vlasenko2e856a12012-03-12 23:02:26 +0100596 }
597 }
598
599 printing_tcp = tcp;
Denys Vlasenko6764f8f2012-03-22 09:56:20 +0100600 current_tcp = tcp;
601 current_tcp->curcol = 0;
Denys Vlasenko2e856a12012-03-12 23:02:26 +0100602
603 if (print_pid_pfx)
604 tprintf("%-5d ", tcp->pid);
605 else if (nprocs > 1 && !outfname)
606 tprintf("[pid %5u] ", tcp->pid);
607
608 if (tflag) {
609 char str[sizeof("HH:MM:SS")];
610 struct timeval tv, dtv;
611 static struct timeval otv;
612
613 gettimeofday(&tv, NULL);
614 if (rflag) {
615 if (otv.tv_sec == 0)
616 otv = tv;
617 tv_sub(&dtv, &tv, &otv);
618 tprintf("%6ld.%06ld ",
619 (long) dtv.tv_sec, (long) dtv.tv_usec);
620 otv = tv;
621 }
622 else if (tflag > 2) {
623 tprintf("%ld.%06ld ",
624 (long) tv.tv_sec, (long) tv.tv_usec);
625 }
626 else {
627 time_t local = tv.tv_sec;
628 strftime(str, sizeof(str), "%T", localtime(&local));
629 if (tflag > 1)
630 tprintf("%s.%06ld ", str, (long) tv.tv_usec);
631 else
632 tprintf("%s ", str);
633 }
634 }
635 if (iflag)
Denys Vlasenko5a2483b2013-07-01 12:49:14 +0200636 print_pc(tcp);
Denys Vlasenko2e856a12012-03-12 23:02:26 +0100637}
638
639void
640tabto(void)
641{
Denys Vlasenko6764f8f2012-03-22 09:56:20 +0100642 if (current_tcp->curcol < acolumn)
643 tprints(acolumn_spaces + current_tcp->curcol);
Denys Vlasenko2e856a12012-03-12 23:02:26 +0100644}
645
Denys Vlasenko3db3b262012-03-16 15:15:14 +0100646/* Should be only called directly *after successful attach* to a tracee.
647 * Otherwise, "strace -oFILE -ff -p<nonexistant_pid>"
648 * may create bogus empty FILE.<nonexistant_pid>, and then die.
649 */
Denys Vlasenko3d5ed412011-06-22 13:17:16 +0200650static void
Dmitry V. Levin10de62b2006-12-13 21:45:31 +0000651newoutf(struct tcb *tcp)
652{
Denys Vlasenko6764f8f2012-03-22 09:56:20 +0100653 tcp->outf = shared_log; /* if not -ff mode, the same file is for all */
Denys Vlasenko3db3b262012-03-16 15:15:14 +0100654 if (followfork >= 2) {
Denys Vlasenko7a8bf062009-01-29 20:38:20 +0000655 char name[520 + sizeof(int) * 3];
Denys Vlasenko7a8bf062009-01-29 20:38:20 +0000656 sprintf(name, "%.512s.%u", outfname, tcp->pid);
Denys Vlasenko3d5ed412011-06-22 13:17:16 +0200657 tcp->outf = strace_fopen(name);
Dmitry V. Levin10de62b2006-12-13 21:45:31 +0000658 }
Dmitry V. Levin10de62b2006-12-13 21:45:31 +0000659}
660
Denys Vlasenko558e5122012-03-12 23:32:16 +0100661static void
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100662expand_tcbtab(void)
663{
664 /* Allocate some more TCBs and expand the table.
665 We don't want to relocate the TCBs because our
666 callers have pointers and it would be a pain.
667 So tcbtab is a table of pointers. Since we never
668 free the TCBs, we allocate a single chunk of many. */
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +0000669 unsigned int i = tcbtabsize;
Dmitry V. Levin3e9d71f2015-05-25 20:41:02 +0000670 struct tcb *newtcbs = xcalloc(tcbtabsize, sizeof(newtcbs[0]));
671 struct tcb **newtab = xreallocarray(tcbtab, tcbtabsize * 2,
672 sizeof(tcbtab[0]));
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100673 tcbtabsize *= 2;
674 tcbtab = newtab;
675 while (i < tcbtabsize)
676 tcbtab[i++] = newtcbs++;
677}
678
679static struct tcb *
Denys Vlasenko3db3b262012-03-16 15:15:14 +0100680alloctcb(int pid)
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100681{
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +0000682 unsigned int i;
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100683 struct tcb *tcp;
684
685 if (nprocs == tcbtabsize)
686 expand_tcbtab();
687
688 for (i = 0; i < tcbtabsize; i++) {
689 tcp = tcbtab[i];
Denys Vlasenkofadbf662013-06-26 14:14:29 +0200690 if (!tcp->pid) {
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100691 memset(tcp, 0, sizeof(*tcp));
692 tcp->pid = pid;
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100693#if SUPPORTED_PERSONALITIES > 1
694 tcp->currpers = current_personality;
695#endif
Luca Clementi327064b2013-07-23 00:11:35 -0700696
697#ifdef USE_LIBUNWIND
698 if (stack_trace_enabled)
Masatake YAMATO61413922014-04-16 15:33:02 +0900699 unwind_tcb_init(tcp);
Luca Clementi327064b2013-07-23 00:11:35 -0700700#endif
701
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100702 nprocs++;
703 if (debug_flag)
Dmitry V. Levin6c8ef052015-05-25 22:51:19 +0000704 error_msg("new tcb for pid %d, active tcbs:%d",
705 tcp->pid, nprocs);
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100706 return tcp;
707 }
708 }
Denys Vlasenko3db3b262012-03-16 15:15:14 +0100709 error_msg_and_die("bug in alloctcb");
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100710}
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100711
712static void
713droptcb(struct tcb *tcp)
714{
715 if (tcp->pid == 0)
716 return;
717
Masatake YAMATO2b09df92014-04-16 15:33:08 +0900718#ifdef USE_LIBUNWIND
719 if (stack_trace_enabled) {
720 unwind_tcb_fin(tcp);
721 }
722#endif
723
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100724 nprocs--;
725 if (debug_flag)
Dmitry V. Levin6c8ef052015-05-25 22:51:19 +0000726 error_msg("dropped tcb for pid %d, %d remain",
727 tcp->pid, nprocs);
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100728
729 if (tcp->outf) {
Denys Vlasenko8511f2a2012-03-22 09:35:51 +0100730 if (followfork >= 2) {
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100731 if (tcp->curcol != 0)
732 fprintf(tcp->outf, " <detached ...>\n");
733 fclose(tcp->outf);
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100734 } else {
735 if (printing_tcp == tcp && tcp->curcol != 0)
736 fprintf(tcp->outf, " <detached ...>\n");
737 fflush(tcp->outf);
738 }
739 }
740
Denys Vlasenko6764f8f2012-03-22 09:56:20 +0100741 if (current_tcp == tcp)
742 current_tcp = NULL;
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100743 if (printing_tcp == tcp)
744 printing_tcp = NULL;
745
746 memset(tcp, 0, sizeof(*tcp));
747}
748
Denys Vlasenkof1669e72013-06-18 18:09:39 +0200749/* Detach traced process.
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100750 * Never call DETACH twice on the same process as both unattached and
751 * attached-unstopped processes give the same ESRCH. For unattached process we
752 * would SIGSTOP it and wait for its SIGSTOP notification forever.
753 */
Denys Vlasenko4a9ba982013-06-20 11:20:23 +0200754static void
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100755detach(struct tcb *tcp)
756{
757 int error;
Denys Vlasenkoe2567d52013-06-21 16:11:10 +0200758 int status;
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100759
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100760 /*
761 * Linux wrongly insists the child be stopped
762 * before detaching. Arghh. We go through hoops
763 * to make a clean break of things.
764 */
765#if defined(SPARC)
Denys Vlasenko978fbc92012-09-13 10:28:43 +0200766# undef PTRACE_DETACH
767# define PTRACE_DETACH PTRACE_SUNDETACH
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100768#endif
769
Denys Vlasenkoe2567d52013-06-21 16:11:10 +0200770 if (!(tcp->flags & TCB_ATTACHED))
771 goto drop;
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100772
Denys Vlasenkoe2567d52013-06-21 16:11:10 +0200773 /* We attached but possibly didn't see the expected SIGSTOP.
774 * We must catch exactly one as otherwise the detached process
775 * would be left stopped (process state T).
776 */
777 if (tcp->flags & TCB_IGNORE_ONE_SIGSTOP)
778 goto wait_loop;
779
780 error = ptrace(PTRACE_DETACH, tcp->pid, 0, 0);
781 if (!error) {
782 /* On a clear day, you can see forever. */
783 goto drop;
784 }
785 if (errno != ESRCH) {
786 /* Shouldn't happen. */
787 perror_msg("detach: ptrace(PTRACE_DETACH,%u)", tcp->pid);
788 goto drop;
789 }
790 /* ESRCH: process is either not stopped or doesn't exist. */
791 if (my_tkill(tcp->pid, 0) < 0) {
792 if (errno != ESRCH)
793 /* Shouldn't happen. */
794 perror_msg("detach: tkill(%u,0)", tcp->pid);
795 /* else: process doesn't exist. */
796 goto drop;
797 }
798 /* Process is not stopped, need to stop it. */
799 if (use_seize) {
800 /*
801 * With SEIZE, tracee can be in group-stop already.
802 * In this state sending it another SIGSTOP does nothing.
803 * Need to use INTERRUPT.
804 * Testcase: trying to ^C a "strace -p <stopped_process>".
805 */
806 error = ptrace(PTRACE_INTERRUPT, tcp->pid, 0, 0);
807 if (!error)
808 goto wait_loop;
809 if (errno != ESRCH)
810 perror_msg("detach: ptrace(PTRACE_INTERRUPT,%u)", tcp->pid);
811 }
812 else {
813 error = my_tkill(tcp->pid, SIGSTOP);
814 if (!error)
815 goto wait_loop;
816 if (errno != ESRCH)
817 perror_msg("detach: tkill(%u,SIGSTOP)", tcp->pid);
818 }
819 /* Either process doesn't exist, or some weird error. */
820 goto drop;
821
Denys Vlasenkoa2de9da2013-06-21 15:50:41 +0200822 wait_loop:
Denys Vlasenkoe2567d52013-06-21 16:11:10 +0200823 /* We end up here in three cases:
824 * 1. We sent PTRACE_INTERRUPT (use_seize case)
825 * 2. We sent SIGSTOP (!use_seize)
826 * 3. Attach SIGSTOP was already pending (TCB_IGNORE_ONE_SIGSTOP set)
827 */
828 for (;;) {
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +0000829 unsigned int sig;
Denys Vlasenkoe2567d52013-06-21 16:11:10 +0200830 if (waitpid(tcp->pid, &status, __WALL) < 0) {
831 if (errno == EINTR)
832 continue;
833 /*
834 * if (errno == ECHILD) break;
835 * ^^^ WRONG! We expect this PID to exist,
836 * and want to emit a message otherwise:
837 */
838 perror_msg("detach: waitpid(%u)", tcp->pid);
839 break;
840 }
841 if (!WIFSTOPPED(status)) {
842 /*
843 * Tracee exited or was killed by signal.
844 * We shouldn't normally reach this place:
845 * we don't want to consume exit status.
846 * Consider "strace -p PID" being ^C-ed:
847 * we want merely to detach from PID.
848 *
849 * However, we _can_ end up here if tracee
850 * was SIGKILLed.
851 */
852 break;
853 }
854 sig = WSTOPSIG(status);
855 if (debug_flag)
Dmitry V. Levin6c8ef052015-05-25 22:51:19 +0000856 error_msg("detach wait: event:%d sig:%d",
857 (unsigned)status >> 16, sig);
Denys Vlasenkoe2567d52013-06-21 16:11:10 +0200858 if (use_seize) {
859 unsigned event = (unsigned)status >> 16;
860 if (event == PTRACE_EVENT_STOP /*&& sig == SIGTRAP*/) {
Denys Vlasenkofdfa47a2013-06-20 12:10:21 +0200861 /*
Denys Vlasenkoe2567d52013-06-21 16:11:10 +0200862 * sig == SIGTRAP: PTRACE_INTERRUPT stop.
863 * sig == other: process was already stopped
864 * with this stopping sig (see tests/detach-stopped).
865 * Looks like re-injecting this sig is not necessary
866 * in DETACH for the tracee to remain stopped.
Denys Vlasenkofdfa47a2013-06-20 12:10:21 +0200867 */
Denys Vlasenkoe2567d52013-06-21 16:11:10 +0200868 sig = 0;
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100869 }
Denys Vlasenkoe2567d52013-06-21 16:11:10 +0200870 /*
871 * PTRACE_INTERRUPT is not guaranteed to produce
872 * the above event if other ptrace-stop is pending.
873 * See tests/detach-sleeping testcase:
874 * strace got SIGINT while tracee is sleeping.
875 * We sent PTRACE_INTERRUPT.
876 * We see syscall exit, not PTRACE_INTERRUPT stop.
877 * We won't get PTRACE_INTERRUPT stop
878 * if we would CONT now. Need to DETACH.
879 */
Denys Vlasenko69e27ef2013-06-19 15:31:39 +0200880 if (sig == syscall_trap_sig)
881 sig = 0;
Denys Vlasenkoe2567d52013-06-21 16:11:10 +0200882 /* else: not sure in which case we can be here.
883 * Signal stop? Inject it while detaching.
884 */
885 ptrace_restart(PTRACE_DETACH, tcp, sig);
886 break;
887 }
888 /* Note: this check has to be after use_seize check */
889 /* (else, in use_seize case SIGSTOP will be mistreated) */
890 if (sig == SIGSTOP) {
891 /* Detach, suppressing SIGSTOP */
892 ptrace_restart(PTRACE_DETACH, tcp, 0);
893 break;
894 }
895 if (sig == syscall_trap_sig)
896 sig = 0;
897 /* Can't detach just yet, may need to wait for SIGSTOP */
898 error = ptrace_restart(PTRACE_CONT, tcp, sig);
899 if (error < 0) {
900 /* Should not happen.
901 * Note: ptrace_restart returns 0 on ESRCH, so it's not it.
902 * ptrace_restart already emitted error message.
903 */
904 break;
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100905 }
906 }
907
Denys Vlasenkoe2567d52013-06-21 16:11:10 +0200908 drop:
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100909 if (!qflag && (tcp->flags & TCB_ATTACHED))
Dmitry V. Levin6c8ef052015-05-25 22:51:19 +0000910 error_msg("Process %u detached", tcp->pid);
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100911
912 droptcb(tcp);
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100913}
914
915static void
Denys Vlasenko558e5122012-03-12 23:32:16 +0100916process_opt_p_list(char *opt)
Denys Vlasenkoe8172b72012-03-09 13:01:04 +0100917{
918 while (*opt) {
919 /*
920 * We accept -p PID,PID; -p "`pidof PROG`"; -p "`pgrep PROG`".
921 * pidof uses space as delim, pgrep uses newline. :(
922 */
923 int pid;
Denys Vlasenkoe8172b72012-03-09 13:01:04 +0100924 char *delim = opt + strcspn(opt, ", \n\t");
925 char c = *delim;
926
927 *delim = '\0';
Dmitry V. Levinccee1692012-03-25 21:49:48 +0000928 pid = string_to_uint(opt);
Denys Vlasenkoe8172b72012-03-09 13:01:04 +0100929 if (pid <= 0) {
Dmitry V. Levinccee1692012-03-25 21:49:48 +0000930 error_msg_and_die("Invalid process id: '%s'", opt);
Denys Vlasenkoe8172b72012-03-09 13:01:04 +0100931 }
932 if (pid == strace_tracer_pid) {
Dmitry V. Levinccee1692012-03-25 21:49:48 +0000933 error_msg_and_die("I'm sorry, I can't let you do that, Dave.");
Denys Vlasenkoe8172b72012-03-09 13:01:04 +0100934 }
935 *delim = c;
Denys Vlasenko3db3b262012-03-16 15:15:14 +0100936 alloctcb(pid);
Denys Vlasenkoe8172b72012-03-09 13:01:04 +0100937 if (c == '\0')
938 break;
939 opt = delim + 1;
940 }
941}
942
Roland McGrath02203312007-06-11 22:06:31 +0000943static void
944startup_attach(void)
945{
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +0000946 unsigned int tcbi;
Roland McGrath02203312007-06-11 22:06:31 +0000947 struct tcb *tcp;
948
949 /*
950 * Block user interruptions as we would leave the traced
951 * process stopped (process state T) if we would terminate in
Denys Vlasenko2e968c02011-09-01 10:23:09 +0200952 * between PTRACE_ATTACH and wait4() on SIGSTOP.
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200953 * We rely on cleanup() from this point on.
Roland McGrath02203312007-06-11 22:06:31 +0000954 */
955 if (interactive)
956 sigprocmask(SIG_BLOCK, &blocked_set, NULL);
957
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +0000958 if (daemonized_tracer) {
959 pid_t pid = fork();
960 if (pid < 0) {
Denys Vlasenko014ca3a2011-09-02 16:19:30 +0200961 perror_msg_and_die("fork");
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +0000962 }
963 if (pid) { /* parent */
964 /*
Denys Vlasenko75422762011-05-27 14:36:01 +0200965 * Wait for grandchild to attach to straced process
966 * (grandparent). Grandchild SIGKILLs us after it attached.
967 * Grandparent's wait() is unblocked by our death,
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +0000968 * it proceeds to exec the straced program.
969 */
970 pause();
971 _exit(0); /* paranoia */
972 }
Denys Vlasenko75422762011-05-27 14:36:01 +0200973 /* grandchild */
974 /* We will be the tracer process. Remember our new pid: */
975 strace_tracer_pid = getpid();
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +0000976 }
977
Roland McGrath02203312007-06-11 22:06:31 +0000978 for (tcbi = 0; tcbi < tcbtabsize; tcbi++) {
979 tcp = tcbtab[tcbi];
Denys Vlasenko44f87ef2011-08-17 15:18:21 +0200980
Denys Vlasenkofadbf662013-06-26 14:14:29 +0200981 if (!tcp->pid)
Denys Vlasenko75fe85c2012-03-09 15:15:24 +0100982 continue;
983
Denys Vlasenkod116a732011-09-05 14:01:33 +0200984 /* Is this a process we should attach to, but not yet attached? */
Denys Vlasenko75fe85c2012-03-09 15:15:24 +0100985 if (tcp->flags & TCB_ATTACHED)
986 continue; /* no, we already attached it */
Denys Vlasenkod116a732011-09-05 14:01:33 +0200987
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +0000988 if (followfork && !daemonized_tracer) {
Denys Vlasenko7a8bf062009-01-29 20:38:20 +0000989 char procdir[sizeof("/proc/%d/task") + sizeof(int) * 3];
Roland McGrath02203312007-06-11 22:06:31 +0000990 DIR *dir;
991
992 sprintf(procdir, "/proc/%d/task", tcp->pid);
993 dir = opendir(procdir);
994 if (dir != NULL) {
995 unsigned int ntid = 0, nerr = 0;
Dmitry V. Levinc8938e02013-03-20 21:40:15 +0000996 struct_dirent *de;
Denys Vlasenko381dbc22011-09-05 13:59:39 +0200997
Dmitry V. Levinc8938e02013-03-20 21:40:15 +0000998 while ((de = read_dir(dir)) != NULL) {
Denys Vlasenko381dbc22011-09-05 13:59:39 +0200999 struct tcb *cur_tcp;
1000 int tid;
1001
Denys Vlasenko7a8bf062009-01-29 20:38:20 +00001002 if (de->d_fileno == 0)
Roland McGrath02203312007-06-11 22:06:31 +00001003 continue;
Dmitry V. Levinccee1692012-03-25 21:49:48 +00001004 /* we trust /proc filesystem */
Roland McGrath02203312007-06-11 22:06:31 +00001005 tid = atoi(de->d_name);
1006 if (tid <= 0)
1007 continue;
1008 ++ntid;
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001009 if (ptrace_attach_or_seize(tid) < 0) {
Roland McGrath02203312007-06-11 22:06:31 +00001010 ++nerr;
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001011 if (debug_flag)
Dmitry V. Levin6c8ef052015-05-25 22:51:19 +00001012 error_msg("attach to pid %d failed", tid);
Denys Vlasenko381dbc22011-09-05 13:59:39 +02001013 continue;
Denys Vlasenkof95397a2011-06-24 16:51:16 +02001014 }
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001015 if (debug_flag)
Dmitry V. Levin6c8ef052015-05-25 22:51:19 +00001016 error_msg("attach to pid %d succeeded", tid);
Denys Vlasenko381dbc22011-09-05 13:59:39 +02001017 cur_tcp = tcp;
1018 if (tid != tcp->pid)
1019 cur_tcp = alloctcb(tid);
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001020 cur_tcp->flags |= TCB_ATTACHED | TCB_STARTUP | post_attach_sigstop;
Denys Vlasenko3db3b262012-03-16 15:15:14 +01001021 newoutf(cur_tcp);
Roland McGrath02203312007-06-11 22:06:31 +00001022 }
1023 closedir(dir);
Denys Vlasenko381dbc22011-09-05 13:59:39 +02001024 if (interactive) {
1025 sigprocmask(SIG_SETMASK, &empty_set, NULL);
1026 if (interrupted)
1027 goto ret;
1028 sigprocmask(SIG_BLOCK, &blocked_set, NULL);
1029 }
Denys Vlasenko7a8bf062009-01-29 20:38:20 +00001030 ntid -= nerr;
1031 if (ntid == 0) {
Denys Vlasenko905e8e02013-02-26 12:30:09 +01001032 perror_msg("attach: ptrace(PTRACE_ATTACH, ...)");
Roland McGrath02203312007-06-11 22:06:31 +00001033 droptcb(tcp);
1034 continue;
1035 }
1036 if (!qflag) {
Dmitry V. Levin6c8ef052015-05-25 22:51:19 +00001037 error_msg(ntid > 1
1038? "Process %u attached with %u threads"
1039: "Process %u attached",
Denys Vlasenko44f87ef2011-08-17 15:18:21 +02001040 tcp->pid, ntid);
Roland McGrath02203312007-06-11 22:06:31 +00001041 }
Denys Vlasenko75fe85c2012-03-09 15:15:24 +01001042 if (!(tcp->flags & TCB_ATTACHED)) {
Denys Vlasenkof88837a2011-09-05 14:05:46 +02001043 /* -p PID, we failed to attach to PID itself
1044 * but did attach to some of its sibling threads.
1045 * Drop PID's tcp.
1046 */
1047 droptcb(tcp);
1048 }
Roland McGrath02203312007-06-11 22:06:31 +00001049 continue;
Denys Vlasenko7a8bf062009-01-29 20:38:20 +00001050 } /* if (opendir worked) */
1051 } /* if (-f) */
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001052 if (ptrace_attach_or_seize(tcp->pid) < 0) {
Denys Vlasenko905e8e02013-02-26 12:30:09 +01001053 perror_msg("attach: ptrace(PTRACE_ATTACH, ...)");
Roland McGrath02203312007-06-11 22:06:31 +00001054 droptcb(tcp);
1055 continue;
1056 }
Denys Vlasenko75fe85c2012-03-09 15:15:24 +01001057 tcp->flags |= TCB_ATTACHED | TCB_STARTUP | post_attach_sigstop;
Denys Vlasenko3db3b262012-03-16 15:15:14 +01001058 newoutf(tcp);
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001059 if (debug_flag)
Dmitry V. Levin6c8ef052015-05-25 22:51:19 +00001060 error_msg("attach to pid %d (main) succeeded", tcp->pid);
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +00001061
1062 if (daemonized_tracer) {
1063 /*
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +00001064 * Make parent go away.
1065 * Also makes grandparent's wait() unblock.
1066 */
1067 kill(getppid(), SIGKILL);
1068 }
1069
Roland McGrath02203312007-06-11 22:06:31 +00001070 if (!qflag)
Dmitry V. Levin6c8ef052015-05-25 22:51:19 +00001071 error_msg("Process %u attached", tcp->pid);
Denys Vlasenkof95397a2011-06-24 16:51:16 +02001072 } /* for each tcbtab[] */
Roland McGrath02203312007-06-11 22:06:31 +00001073
Denys Vlasenko44f87ef2011-08-17 15:18:21 +02001074 ret:
Roland McGrath02203312007-06-11 22:06:31 +00001075 if (interactive)
1076 sigprocmask(SIG_SETMASK, &empty_set, NULL);
1077}
1078
Denys Vlasenkof909c8d2013-02-19 16:30:31 +01001079/* Stack-o-phobic exec helper, in the hope to work around
1080 * NOMMU + "daemonized tracer" difficulty.
1081 */
1082struct exec_params {
1083 int fd_to_close;
1084 uid_t run_euid;
1085 gid_t run_egid;
1086 char **argv;
1087 char *pathname;
1088};
1089static struct exec_params params_for_tracee;
Dmitry V. Levin5647cf82015-03-29 22:45:03 +00001090
1091static void ATTRIBUTE_NOINLINE ATTRIBUTE_NORETURN
Denys Vlasenkof909c8d2013-02-19 16:30:31 +01001092exec_or_die(void)
1093{
1094 struct exec_params *params = &params_for_tracee;
1095
1096 if (params->fd_to_close >= 0)
1097 close(params->fd_to_close);
1098 if (!daemonized_tracer && !use_seize) {
1099 if (ptrace(PTRACE_TRACEME, 0L, 0L, 0L) < 0) {
1100 perror_msg_and_die("ptrace(PTRACE_TRACEME, ...)");
1101 }
1102 }
1103
1104 if (username != NULL) {
1105 /*
1106 * It is important to set groups before we
1107 * lose privileges on setuid.
1108 */
1109 if (initgroups(username, run_gid) < 0) {
1110 perror_msg_and_die("initgroups");
1111 }
1112 if (setregid(run_gid, params->run_egid) < 0) {
1113 perror_msg_and_die("setregid");
1114 }
1115 if (setreuid(run_uid, params->run_euid) < 0) {
1116 perror_msg_and_die("setreuid");
1117 }
1118 }
1119 else if (geteuid() != 0)
1120 if (setreuid(run_uid, run_uid) < 0) {
1121 perror_msg_and_die("setreuid");
1122 }
1123
1124 if (!daemonized_tracer) {
1125 /*
1126 * Induce a ptrace stop. Tracer (our parent)
1127 * will resume us with PTRACE_SYSCALL and display
1128 * the immediately following execve syscall.
1129 * Can't do this on NOMMU systems, we are after
1130 * vfork: parent is blocked, stopping would deadlock.
1131 */
1132 if (!NOMMU_SYSTEM)
1133 kill(getpid(), SIGSTOP);
1134 } else {
1135 alarm(3);
1136 /* we depend on SIGCHLD set to SIG_DFL by init code */
1137 /* if it happens to be SIG_IGN'ed, wait won't block */
1138 wait(NULL);
1139 alarm(0);
1140 }
1141
1142 execv(params->pathname, params->argv);
1143 perror_msg_and_die("exec");
1144}
1145
Roland McGrath02203312007-06-11 22:06:31 +00001146static void
Denys Vlasenko12014262011-05-30 14:00:14 +02001147startup_child(char **argv)
Roland McGrath02203312007-06-11 22:06:31 +00001148{
Dmitry V. Levinc8938e02013-03-20 21:40:15 +00001149 struct_stat statbuf;
Roland McGrath02203312007-06-11 22:06:31 +00001150 const char *filename;
Dmitry V. Levin1dbd39e2015-02-28 14:50:09 +00001151 size_t filename_len;
Dmitry V. Levin025b3582014-11-21 22:28:34 +00001152 char pathname[PATH_MAX];
Denys Vlasenkof909c8d2013-02-19 16:30:31 +01001153 int pid;
Roland McGrath02203312007-06-11 22:06:31 +00001154 struct tcb *tcp;
1155
1156 filename = argv[0];
Dmitry V. Levin1dbd39e2015-02-28 14:50:09 +00001157 filename_len = strlen(filename);
1158
1159 if (filename_len > sizeof(pathname) - 1) {
1160 errno = ENAMETOOLONG;
1161 perror_msg_and_die("exec");
1162 }
Roland McGrath02203312007-06-11 22:06:31 +00001163 if (strchr(filename, '/')) {
Roland McGrath02203312007-06-11 22:06:31 +00001164 strcpy(pathname, filename);
1165 }
1166#ifdef USE_DEBUGGING_EXEC
1167 /*
1168 * Debuggers customarily check the current directory
1169 * first regardless of the path but doing that gives
1170 * security geeks a panic attack.
1171 */
Dmitry V. Levinc8938e02013-03-20 21:40:15 +00001172 else if (stat_file(filename, &statbuf) == 0)
Roland McGrath02203312007-06-11 22:06:31 +00001173 strcpy(pathname, filename);
1174#endif /* USE_DEBUGGING_EXEC */
1175 else {
Dmitry V. Levin30145dd2010-09-06 22:08:24 +00001176 const char *path;
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +00001177 size_t m, n, len;
Roland McGrath02203312007-06-11 22:06:31 +00001178
1179 for (path = getenv("PATH"); path && *path; path += m) {
Denys Vlasenko4f3df072012-01-29 22:38:35 +01001180 const char *colon = strchr(path, ':');
1181 if (colon) {
1182 n = colon - path;
Roland McGrath02203312007-06-11 22:06:31 +00001183 m = n + 1;
1184 }
1185 else
1186 m = n = strlen(path);
1187 if (n == 0) {
Dmitry V. Levin025b3582014-11-21 22:28:34 +00001188 if (!getcwd(pathname, PATH_MAX))
Roland McGrath02203312007-06-11 22:06:31 +00001189 continue;
1190 len = strlen(pathname);
1191 }
1192 else if (n > sizeof pathname - 1)
1193 continue;
1194 else {
1195 strncpy(pathname, path, n);
1196 len = n;
1197 }
1198 if (len && pathname[len - 1] != '/')
1199 pathname[len++] = '/';
Dmitry V. Levin1dbd39e2015-02-28 14:50:09 +00001200 if (filename_len + len > sizeof(pathname) - 1)
1201 continue;
Roland McGrath02203312007-06-11 22:06:31 +00001202 strcpy(pathname + len, filename);
Dmitry V. Levinc8938e02013-03-20 21:40:15 +00001203 if (stat_file(pathname, &statbuf) == 0 &&
Roland McGrath02203312007-06-11 22:06:31 +00001204 /* Accept only regular files
1205 with some execute bits set.
1206 XXX not perfect, might still fail */
1207 S_ISREG(statbuf.st_mode) &&
1208 (statbuf.st_mode & 0111))
1209 break;
1210 }
Dmitry V. Levin1dbd39e2015-02-28 14:50:09 +00001211 if (!path || !*path)
1212 pathname[0] = '\0';
Roland McGrath02203312007-06-11 22:06:31 +00001213 }
Dmitry V. Levinc8938e02013-03-20 21:40:15 +00001214 if (stat_file(pathname, &statbuf) < 0) {
Denys Vlasenkocb2ad002011-06-23 13:05:29 +02001215 perror_msg_and_die("Can't stat '%s'", filename);
Roland McGrath02203312007-06-11 22:06:31 +00001216 }
Denys Vlasenkof909c8d2013-02-19 16:30:31 +01001217
1218 params_for_tracee.fd_to_close = (shared_log != stderr) ? fileno(shared_log) : -1;
1219 params_for_tracee.run_euid = (statbuf.st_mode & S_ISUID) ? statbuf.st_uid : run_uid;
1220 params_for_tracee.run_egid = (statbuf.st_mode & S_ISGID) ? statbuf.st_gid : run_gid;
1221 params_for_tracee.argv = argv;
1222 /*
1223 * On NOMMU, can be safely freed only after execve in tracee.
1224 * It's hard to know when that happens, so we just leak it.
1225 */
Dmitry V. Levin3e9d71f2015-05-25 20:41:02 +00001226 params_for_tracee.pathname = NOMMU_SYSTEM ? xstrdup(pathname) : pathname;
Denys Vlasenkof909c8d2013-02-19 16:30:31 +01001227
Dmitry V. Levin882478a2013-05-13 18:43:28 +00001228#if defined HAVE_PRCTL && defined PR_SET_PTRACER && defined PR_SET_PTRACER_ANY
1229 if (daemonized_tracer)
1230 prctl(PR_SET_PTRACER, PR_SET_PTRACER_ANY);
1231#endif
1232
Denys Vlasenkoe8681c92013-06-26 14:27:11 +02001233 pid = fork();
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +00001234 if (pid < 0) {
Denys Vlasenkocb2ad002011-06-23 13:05:29 +02001235 perror_msg_and_die("fork");
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +00001236 }
Denys Vlasenkof909c8d2013-02-19 16:30:31 +01001237 if ((pid != 0 && daemonized_tracer)
1238 || (pid == 0 && !daemonized_tracer)
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +00001239 ) {
Denys Vlasenkof909c8d2013-02-19 16:30:31 +01001240 /* We are to become the tracee. Two cases:
1241 * -D: we are parent
1242 * not -D: we are child
1243 */
1244 exec_or_die();
Roland McGrath02203312007-06-11 22:06:31 +00001245 }
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +00001246
Denys Vlasenko2e968c02011-09-01 10:23:09 +02001247 /* We are the tracer */
Denys Vlasenko75422762011-05-27 14:36:01 +02001248
Denys Vlasenko2e968c02011-09-01 10:23:09 +02001249 if (!daemonized_tracer) {
Denys Vlasenkoe8681c92013-06-26 14:27:11 +02001250 strace_child = pid;
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001251 if (!use_seize) {
1252 /* child did PTRACE_TRACEME, nothing to do in parent */
1253 } else {
Denys Vlasenko5c9d8f42013-02-19 15:30:12 +01001254 if (!NOMMU_SYSTEM) {
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001255 /* Wait until child stopped itself */
1256 int status;
1257 while (waitpid(pid, &status, WSTOPPED) < 0) {
1258 if (errno == EINTR)
1259 continue;
1260 perror_msg_and_die("waitpid");
1261 }
1262 if (!WIFSTOPPED(status) || WSTOPSIG(status) != SIGSTOP) {
Denys Vlasenko75fe85c2012-03-09 15:15:24 +01001263 kill_save_errno(pid, SIGKILL);
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001264 perror_msg_and_die("Unexpected wait status %x", status);
1265 }
1266 }
Denys Vlasenko5c9d8f42013-02-19 15:30:12 +01001267 /* Else: NOMMU case, we have no way to sync.
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001268 * Just attach to it as soon as possible.
1269 * This means that we may miss a few first syscalls...
1270 */
1271
1272 if (ptrace_attach_or_seize(pid)) {
Denys Vlasenko75fe85c2012-03-09 15:15:24 +01001273 kill_save_errno(pid, SIGKILL);
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001274 perror_msg_and_die("Can't attach to %d", pid);
1275 }
Denys Vlasenko5c9d8f42013-02-19 15:30:12 +01001276 if (!NOMMU_SYSTEM)
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001277 kill(pid, SIGCONT);
1278 }
Denys Vlasenko2e968c02011-09-01 10:23:09 +02001279 tcp = alloctcb(pid);
Denys Vlasenko5c9d8f42013-02-19 15:30:12 +01001280 if (!NOMMU_SYSTEM)
Denys Vlasenkofadbf662013-06-26 14:14:29 +02001281 tcp->flags |= TCB_ATTACHED | TCB_STARTUP | post_attach_sigstop;
Denys Vlasenkof88837a2011-09-05 14:05:46 +02001282 else
Denys Vlasenkofadbf662013-06-26 14:14:29 +02001283 tcp->flags |= TCB_ATTACHED | TCB_STARTUP;
Denys Vlasenko3db3b262012-03-16 15:15:14 +01001284 newoutf(tcp);
Denys Vlasenko2e968c02011-09-01 10:23:09 +02001285 }
1286 else {
Denys Vlasenko05f32512013-02-26 12:00:34 +01001287 /* With -D, we are *child* here, IOW: different pid. Fetch it: */
Denys Vlasenko2e968c02011-09-01 10:23:09 +02001288 strace_tracer_pid = getpid();
1289 /* The tracee is our parent: */
1290 pid = getppid();
Denys Vlasenkof2025022012-03-09 15:29:45 +01001291 alloctcb(pid);
1292 /* attaching will be done later, by startup_attach */
Denys Vlasenko3db3b262012-03-16 15:15:14 +01001293 /* note: we don't do newoutf(tcp) here either! */
Denys Vlasenko5c9d8f42013-02-19 15:30:12 +01001294
Denys Vlasenkof909c8d2013-02-19 16:30:31 +01001295 /* NOMMU BUG! -D mode is active, we (child) return,
1296 * and we will scribble over parent's stack!
1297 * When parent later unpauses, it segfaults.
1298 *
1299 * We work around it
1300 * (1) by declaring exec_or_die() NORETURN,
1301 * hopefully compiler will just jump to it
1302 * instead of call (won't push anything to stack),
1303 * (2) by trying very hard in exec_or_die()
1304 * to not use any stack,
Dmitry V. Levin025b3582014-11-21 22:28:34 +00001305 * (3) having a really big (PATH_MAX) stack object
Denys Vlasenkof909c8d2013-02-19 16:30:31 +01001306 * in this function, which creates a "buffer" between
1307 * child's and parent's stack pointers.
1308 * This may save us if (1) and (2) failed
1309 * and compiler decided to use stack in exec_or_die() anyway
1310 * (happens on i386 because of stack parameter passing).
Denys Vlasenko05f32512013-02-26 12:00:34 +01001311 *
1312 * A cleaner solution is to use makecontext + setcontext
1313 * to create a genuine separate stack and execute on it.
Denys Vlasenkof909c8d2013-02-19 16:30:31 +01001314 */
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +00001315 }
Roland McGrath02203312007-06-11 22:06:31 +00001316}
1317
Denys Vlasenko5c9d8f42013-02-19 15:30:12 +01001318#if USE_SEIZE
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001319static void
1320test_ptrace_seize(void)
1321{
1322 int pid;
1323
Denys Vlasenko05f32512013-02-26 12:00:34 +01001324 /* Need fork for test. NOMMU has no forks */
Denys Vlasenko5c9d8f42013-02-19 15:30:12 +01001325 if (NOMMU_SYSTEM) {
1326 post_attach_sigstop = 0; /* this sets use_seize to 1 */
1327 return;
1328 }
1329
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001330 pid = fork();
1331 if (pid < 0)
1332 perror_msg_and_die("fork");
1333
1334 if (pid == 0) {
1335 pause();
1336 _exit(0);
1337 }
1338
1339 /* PTRACE_SEIZE, unlike ATTACH, doesn't force tracee to trap. After
1340 * attaching tracee continues to run unless a trap condition occurs.
1341 * PTRACE_SEIZE doesn't affect signal or group stop state.
1342 */
Denys Vlasenko26bc0602012-07-10 16:36:32 +02001343 if (ptrace(PTRACE_SEIZE, pid, 0, 0) == 0) {
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001344 post_attach_sigstop = 0; /* this sets use_seize to 1 */
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001345 } else if (debug_flag) {
Dmitry V. Levin6c8ef052015-05-25 22:51:19 +00001346 error_msg("PTRACE_SEIZE doesn't work");
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001347 }
1348
1349 kill(pid, SIGKILL);
1350
1351 while (1) {
1352 int status, tracee_pid;
1353
1354 errno = 0;
1355 tracee_pid = waitpid(pid, &status, 0);
1356 if (tracee_pid <= 0) {
1357 if (errno == EINTR)
1358 continue;
1359 perror_msg_and_die("%s: unexpected wait result %d",
1360 __func__, tracee_pid);
1361 }
1362 if (WIFSIGNALED(status)) {
1363 return;
1364 }
1365 error_msg_and_die("%s: unexpected wait status %x",
1366 __func__, status);
1367 }
1368}
Denys Vlasenko978fbc92012-09-13 10:28:43 +02001369#else /* !USE_SEIZE */
1370# define test_ptrace_seize() ((void)0)
1371#endif
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001372
Denys Vlasenko6e0bfd12012-03-15 14:36:28 +01001373static unsigned
Denys Vlasenkof7db5dd2012-01-28 01:16:02 +01001374get_os_release(void)
1375{
Denys Vlasenko6e0bfd12012-03-15 14:36:28 +01001376 unsigned rel;
1377 const char *p;
Denys Vlasenkof7db5dd2012-01-28 01:16:02 +01001378 struct utsname u;
1379 if (uname(&u) < 0)
1380 perror_msg_and_die("uname");
Denys Vlasenko6e0bfd12012-03-15 14:36:28 +01001381 /* u.release has this form: "3.2.9[-some-garbage]" */
1382 rel = 0;
1383 p = u.release;
1384 for (;;) {
1385 if (!(*p >= '0' && *p <= '9'))
1386 error_msg_and_die("Bad OS release string: '%s'", u.release);
1387 /* Note: this open-codes KERNEL_VERSION(): */
1388 rel = (rel << 8) | atoi(p);
1389 if (rel >= KERNEL_VERSION(1,0,0))
1390 break;
1391 while (*p >= '0' && *p <= '9')
1392 p++;
Dmitry V. Levin0dbc80d2012-05-14 23:42:10 +00001393 if (*p != '.') {
1394 if (rel >= KERNEL_VERSION(0,1,0)) {
1395 /* "X.Y-something" means "X.Y.0" */
1396 rel <<= 8;
1397 break;
1398 }
Denys Vlasenko6e0bfd12012-03-15 14:36:28 +01001399 error_msg_and_die("Bad OS release string: '%s'", u.release);
Dmitry V. Levin0dbc80d2012-05-14 23:42:10 +00001400 }
Denys Vlasenko6e0bfd12012-03-15 14:36:28 +01001401 p++;
1402 }
1403 return rel;
Denys Vlasenkof7db5dd2012-01-28 01:16:02 +01001404}
1405
Denys Vlasenkoecc8b972012-03-12 23:05:25 +01001406/*
1407 * Initialization part of main() was eating much stack (~0.5k),
1408 * which was unused after init.
1409 * We can reuse it if we move init code into a separate function.
1410 *
1411 * Don't want main() to inline us and defeat the reason
1412 * we have a separate function.
1413 */
Dmitry V. Levin5647cf82015-03-29 22:45:03 +00001414static void ATTRIBUTE_NOINLINE
Denys Vlasenkoecc8b972012-03-12 23:05:25 +01001415init(int argc, char *argv[])
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001416{
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001417 struct tcb *tcp;
Dmitry V. Levinccee1692012-03-25 21:49:48 +00001418 int c, i;
Dmitry V. Levin06350db2008-07-25 15:42:34 +00001419 int optF = 0;
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +00001420 unsigned int tcbi;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001421 struct sigaction sa;
1422
Dmitry V. Levin08b623e2007-10-08 21:04:41 +00001423 progname = argv[0] ? argv[0] : "strace";
1424
Denys Vlasenkoa5090542012-03-15 17:27:49 +01001425 /* Make sure SIGCHLD has the default action so that waitpid
1426 definitely works without losing track of children. The user
1427 should not have given us a bogus state to inherit, but he might
1428 have. Arguably we should detect SIG_IGN here and pass it on
1429 to children, but probably noone really needs that. */
1430 signal(SIGCHLD, SIG_DFL);
1431
Denys Vlasenko75422762011-05-27 14:36:01 +02001432 strace_tracer_pid = getpid();
1433
Denys Vlasenko6e0bfd12012-03-15 14:36:28 +01001434 os_release = get_os_release();
Denys Vlasenkof7db5dd2012-01-28 01:16:02 +01001435
Roland McGrathee9d4352002-12-18 04:16:10 +00001436 /* Allocate the initial tcbtab. */
1437 tcbtabsize = argc; /* Surely enough for all -p args. */
Dmitry V. Levin3e9d71f2015-05-25 20:41:02 +00001438 tcbtab = xcalloc(tcbtabsize, sizeof(tcbtab[0]));
1439 tcp = xcalloc(tcbtabsize, sizeof(*tcp));
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +00001440 for (tcbi = 0; tcbi < tcbtabsize; tcbi++)
1441 tcbtab[tcbi] = tcp++;
Roland McGrathee9d4352002-12-18 04:16:10 +00001442
Denys Vlasenko6764f8f2012-03-22 09:56:20 +01001443 shared_log = stderr;
Roland McGrath138c6a32006-01-12 09:50:49 +00001444 set_sortby(DEFAULT_SORTBY);
1445 set_personality(DEFAULT_PERSONALITY);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001446 qualify("trace=all");
1447 qualify("abbrev=all");
1448 qualify("verbose=all");
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01001449#if DEFAULT_QUAL_FLAGS != (QUAL_TRACE | QUAL_ABBREV | QUAL_VERBOSE)
1450# error Bug in DEFAULT_QUAL_FLAGS
1451#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001452 qualify("signal=all");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001453 while ((c = getopt(argc, argv,
Mark Hillse53bf232014-05-28 17:52:40 +01001454 "+b:cCdfFhiqrtTvVwxyz"
Luca Clementi327064b2013-07-23 00:11:35 -07001455#ifdef USE_LIBUNWIND
1456 "k"
1457#endif
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +00001458 "D"
Denys Vlasenkob51581e2012-01-29 16:53:03 +01001459 "a:e:o:O:p:s:S:u:E:P:I:")) != EOF) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001460 switch (c) {
Denys Vlasenko61e7aad2012-03-15 13:44:17 +01001461 case 'b':
Denys Vlasenko22efaf02013-02-27 12:15:19 +01001462 if (strcmp(optarg, "execve") != 0)
1463 error_msg_and_die("Syscall '%s' for -b isn't supported",
1464 optarg);
Denys Vlasenko61e7aad2012-03-15 13:44:17 +01001465 detach_on_execve = 1;
1466 break;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001467 case 'c':
Dmitry V. Levine3a7ef52010-03-28 19:24:54 +00001468 if (cflag == CFLAG_BOTH) {
Denys Vlasenkoc5ccfa42012-03-26 13:10:50 +02001469 error_msg_and_die("-c and -C are mutually exclusive");
Dmitry V. Levine3a7ef52010-03-28 19:24:54 +00001470 }
1471 cflag = CFLAG_ONLY_STATS;
1472 break;
1473 case 'C':
1474 if (cflag == CFLAG_ONLY_STATS) {
Denys Vlasenkoc5ccfa42012-03-26 13:10:50 +02001475 error_msg_and_die("-c and -C are mutually exclusive");
Dmitry V. Levine3a7ef52010-03-28 19:24:54 +00001476 }
1477 cflag = CFLAG_BOTH;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001478 break;
1479 case 'd':
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001480 debug_flag = 1;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001481 break;
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +00001482 case 'D':
1483 daemonized_tracer = 1;
1484 break;
Roland McGrath41c48222008-07-18 00:25:10 +00001485 case 'F':
Dmitry V. Levin06350db2008-07-25 15:42:34 +00001486 optF = 1;
1487 break;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001488 case 'f':
1489 followfork++;
1490 break;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001491 case 'h':
1492 usage(stdout, 0);
1493 break;
1494 case 'i':
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001495 iflag = 1;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001496 break;
1497 case 'q':
Daniel P. Berrange01997cf2013-05-13 11:30:55 +01001498 qflag++;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001499 break;
1500 case 'r':
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001501 rflag = 1;
1502 /* fall through to tflag++ */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001503 case 't':
1504 tflag++;
1505 break;
1506 case 'T':
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001507 Tflag = 1;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001508 break;
Mark Hillse53bf232014-05-28 17:52:40 +01001509 case 'w':
1510 count_wallclock = 1;
1511 break;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001512 case 'x':
1513 xflag++;
1514 break;
Grant Edwards8a082772011-04-07 20:25:40 +00001515 case 'y':
Dmitry V. Levin45e7b182014-08-08 23:38:26 +00001516 show_fd_path++;
Grant Edwards8a082772011-04-07 20:25:40 +00001517 break;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001518 case 'v':
1519 qualify("abbrev=none");
1520 break;
1521 case 'V':
Roland McGrath9c9a2532003-02-20 02:56:29 +00001522 printf("%s -- version %s\n", PACKAGE_NAME, VERSION);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001523 exit(0);
1524 break;
Michal Ludvig17f8fb32002-11-06 13:17:21 +00001525 case 'z':
1526 not_failing_only = 1;
1527 break;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001528 case 'a':
Dmitry V. Levinccee1692012-03-25 21:49:48 +00001529 acolumn = string_to_uint(optarg);
Denys Vlasenko102ec492011-08-25 01:27:59 +02001530 if (acolumn < 0)
Dmitry V. Levinccee1692012-03-25 21:49:48 +00001531 error_opt_arg(c, optarg);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001532 break;
1533 case 'e':
1534 qualify(optarg);
1535 break;
1536 case 'o':
Dmitry V. Levin3e9d71f2015-05-25 20:41:02 +00001537 outfname = xstrdup(optarg);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001538 break;
1539 case 'O':
Dmitry V. Levinccee1692012-03-25 21:49:48 +00001540 i = string_to_uint(optarg);
1541 if (i < 0)
1542 error_opt_arg(c, optarg);
1543 set_overhead(i);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001544 break;
1545 case 'p':
Denys Vlasenkoe8172b72012-03-09 13:01:04 +01001546 process_opt_p_list(optarg);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001547 break;
Grant Edwards8a082772011-04-07 20:25:40 +00001548 case 'P':
Denys Vlasenko7239dbc2013-03-05 15:46:34 +01001549 pathtrace_select(optarg);
Grant Edwards8a082772011-04-07 20:25:40 +00001550 break;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001551 case 's':
Dmitry V. Levinccee1692012-03-25 21:49:48 +00001552 i = string_to_uint(optarg);
1553 if (i < 0)
1554 error_opt_arg(c, optarg);
1555 max_strlen = i;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001556 break;
1557 case 'S':
1558 set_sortby(optarg);
1559 break;
1560 case 'u':
Dmitry V. Levin3e9d71f2015-05-25 20:41:02 +00001561 username = xstrdup(optarg);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001562 break;
Luca Clementi327064b2013-07-23 00:11:35 -07001563#ifdef USE_LIBUNWIND
1564 case 'k':
1565 stack_trace_enabled = true;
1566 break;
1567#endif
Roland McGrathde6e5332003-01-24 04:31:23 +00001568 case 'E':
Denys Vlasenko1d46ba52011-08-31 14:00:02 +02001569 if (putenv(optarg) < 0)
1570 die_out_of_memory();
Roland McGrathde6e5332003-01-24 04:31:23 +00001571 break;
Denys Vlasenkob51581e2012-01-29 16:53:03 +01001572 case 'I':
Dmitry V. Levinccee1692012-03-25 21:49:48 +00001573 opt_intr = string_to_uint(optarg);
1574 if (opt_intr <= 0 || opt_intr >= NUM_INTR_OPTS)
1575 error_opt_arg(c, optarg);
Denys Vlasenkob51581e2012-01-29 16:53:03 +01001576 break;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001577 default:
1578 usage(stderr, 1);
1579 break;
1580 }
1581 }
Denys Vlasenko837399a2012-01-24 11:37:03 +01001582 argv += optind;
1583 /* argc -= optind; - no need, argc is not used below */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001584
Dmitry V. Levin3e9d71f2015-05-25 20:41:02 +00001585 acolumn_spaces = xmalloc(acolumn + 1);
Denys Vlasenko102ec492011-08-25 01:27:59 +02001586 memset(acolumn_spaces, ' ', acolumn);
1587 acolumn_spaces[acolumn] = '\0';
1588
Denys Vlasenko837399a2012-01-24 11:37:03 +01001589 /* Must have PROG [ARGS], or -p PID. Not both. */
Denys Vlasenkofd883382012-03-09 13:03:41 +01001590 if (!argv[0] == !nprocs)
Roland McGrathce0d1542003-11-11 21:24:23 +00001591 usage(stderr, 1);
1592
Denys Vlasenkofd883382012-03-09 13:03:41 +01001593 if (nprocs != 0 && daemonized_tracer) {
Denys Vlasenkoc5ccfa42012-03-26 13:10:50 +02001594 error_msg_and_die("-D and -p are mutually exclusive");
Wang Chaod322a4b2010-08-05 14:30:11 +08001595 }
1596
Dmitry V. Levin06350db2008-07-25 15:42:34 +00001597 if (!followfork)
1598 followfork = optF;
1599
Denys Vlasenko3db3b262012-03-16 15:15:14 +01001600 if (followfork >= 2 && cflag) {
Denys Vlasenkoc5ccfa42012-03-26 13:10:50 +02001601 error_msg_and_die("(-c or -C) and -ff are mutually exclusive");
Roland McGrathcb9def62006-04-25 07:48:03 +00001602 }
1603
Mark Hillse53bf232014-05-28 17:52:40 +01001604 if (count_wallclock && !cflag) {
1605 error_msg_and_die("-w must be given with (-c or -C)");
1606 }
1607
Dmitry V. Levin2727aae2014-06-03 13:20:05 +00001608 if (cflag == CFLAG_ONLY_STATS) {
1609 if (iflag)
1610 error_msg("-%c has no effect with -c", 'i');
1611#ifdef USE_LIBUNWIND
1612 if (stack_trace_enabled)
1613 error_msg("-%c has no effect with -c", 'k');
1614#endif
1615 if (rflag)
1616 error_msg("-%c has no effect with -c", 'r');
1617 if (tflag)
1618 error_msg("-%c has no effect with -c", 't');
1619 if (Tflag)
1620 error_msg("-%c has no effect with -c", 'T');
1621 if (show_fd_path)
1622 error_msg("-%c has no effect with -c", 'y');
1623 }
1624
1625#ifdef USE_LIBUNWIND
1626 if (stack_trace_enabled)
1627 unwind_init();
1628#endif
1629
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001630 /* See if they want to run as another user. */
1631 if (username != NULL) {
1632 struct passwd *pent;
1633
1634 if (getuid() != 0 || geteuid() != 0) {
Denys Vlasenkocb2ad002011-06-23 13:05:29 +02001635 error_msg_and_die("You must be root to use the -u option");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001636 }
Denys Vlasenko5d645812011-08-20 12:48:18 +02001637 pent = getpwnam(username);
1638 if (pent == NULL) {
Denys Vlasenkocb2ad002011-06-23 13:05:29 +02001639 error_msg_and_die("Cannot find user '%s'", username);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001640 }
1641 run_uid = pent->pw_uid;
1642 run_gid = pent->pw_gid;
1643 }
1644 else {
1645 run_uid = getuid();
1646 run_gid = getgid();
1647 }
1648
Dmitry V. Levin04f8b482011-08-16 18:57:29 +00001649 if (followfork)
Dmitry V. Levin23ce9e42015-02-08 13:05:53 +00001650 ptrace_setoptions |= PTRACE_O_TRACECLONE |
1651 PTRACE_O_TRACEFORK |
1652 PTRACE_O_TRACEVFORK;
1653 if (debug_flag)
Dmitry V. Levin6c8ef052015-05-25 22:51:19 +00001654 error_msg("ptrace_setoptions = %#x", ptrace_setoptions);
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001655 test_ptrace_seize();
Dmitry V. Levin8044bc12010-12-07 12:50:49 +00001656
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001657 /* Check if they want to redirect the output. */
1658 if (outfname) {
Roland McGrath37b9a662003-11-07 02:26:54 +00001659 /* See if they want to pipe the output. */
1660 if (outfname[0] == '|' || outfname[0] == '!') {
1661 /*
1662 * We can't do the <outfname>.PID funny business
1663 * when using popen, so prohibit it.
1664 */
Denys Vlasenko3db3b262012-03-16 15:15:14 +01001665 if (followfork >= 2)
Denys Vlasenko7dd23382011-06-22 13:03:56 +02001666 error_msg_and_die("Piping the output and -ff are mutually exclusive");
Denys Vlasenko6764f8f2012-03-22 09:56:20 +01001667 shared_log = strace_popen(outfname + 1);
Roland McGrath37b9a662003-11-07 02:26:54 +00001668 }
Denys Vlasenko3db3b262012-03-16 15:15:14 +01001669 else if (followfork < 2)
Denys Vlasenko6764f8f2012-03-22 09:56:20 +01001670 shared_log = strace_fopen(outfname);
Denys Vlasenko328bf252012-03-12 23:34:13 +01001671 } else {
1672 /* -ff without -o FILE is the same as single -f */
Denys Vlasenko3db3b262012-03-16 15:15:14 +01001673 if (followfork >= 2)
Denys Vlasenko328bf252012-03-12 23:34:13 +01001674 followfork = 1;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001675 }
1676
Denys Vlasenkocb2ad002011-06-23 13:05:29 +02001677 if (!outfname || outfname[0] == '|' || outfname[0] == '!') {
Dmitry V. Levin3e9d71f2015-05-25 20:41:02 +00001678 char *buf = xmalloc(BUFSIZ);
Denys Vlasenko6764f8f2012-03-22 09:56:20 +01001679 setvbuf(shared_log, buf, _IOLBF, BUFSIZ);
Denys Vlasenkocb2ad002011-06-23 13:05:29 +02001680 }
Denys Vlasenko837399a2012-01-24 11:37:03 +01001681 if (outfname && argv[0]) {
Denys Vlasenkob51581e2012-01-29 16:53:03 +01001682 if (!opt_intr)
1683 opt_intr = INTR_NEVER;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001684 qflag = 1;
Roland McGrath36931052003-06-03 01:35:20 +00001685 }
Denys Vlasenkob51581e2012-01-29 16:53:03 +01001686 if (!opt_intr)
1687 opt_intr = INTR_WHILE_WAIT;
Wang Chaob13c0de2010-11-12 17:25:19 +08001688
Denys Vlasenkob51581e2012-01-29 16:53:03 +01001689 /* argv[0] -pPID -oFILE Default interactive setting
1690 * yes 0 0 INTR_WHILE_WAIT
1691 * no 1 0 INTR_WHILE_WAIT
1692 * yes 0 1 INTR_NEVER
1693 * no 1 1 INTR_WHILE_WAIT
Roland McGrath54cc1c82007-11-03 23:34:11 +00001694 */
1695
Denys Vlasenko5c9d8f42013-02-19 15:30:12 +01001696 sigemptyset(&empty_set);
1697 sigemptyset(&blocked_set);
1698
Denys Vlasenkof909c8d2013-02-19 16:30:31 +01001699 /* startup_child() must be called before the signal handlers get
1700 * installed below as they are inherited into the spawned process.
1701 * Also we do not need to be protected by them as during interruption
1702 * in the startup_child() mode we kill the spawned process anyway.
1703 */
Denys Vlasenko61e7aad2012-03-15 13:44:17 +01001704 if (argv[0]) {
Dmitry V. Levin1d2435b2013-05-14 22:35:46 +00001705 if (!NOMMU_SYSTEM || daemonized_tracer)
1706 hide_log_until_execve = 1;
Denys Vlasenko2a3d2752013-05-14 16:07:46 +02001707 skip_one_b_execve = 1;
Denys Vlasenko837399a2012-01-24 11:37:03 +01001708 startup_child(argv);
Denys Vlasenko61e7aad2012-03-15 13:44:17 +01001709 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001710
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001711 sa.sa_handler = SIG_IGN;
1712 sigemptyset(&sa.sa_mask);
1713 sa.sa_flags = 0;
Denys Vlasenkob51581e2012-01-29 16:53:03 +01001714 sigaction(SIGTTOU, &sa, NULL); /* SIG_IGN */
1715 sigaction(SIGTTIN, &sa, NULL); /* SIG_IGN */
1716 if (opt_intr != INTR_ANYWHERE) {
1717 if (opt_intr == INTR_BLOCK_TSTP_TOO)
1718 sigaction(SIGTSTP, &sa, NULL); /* SIG_IGN */
1719 /*
1720 * In interactive mode (if no -o OUTFILE, or -p PID is used),
1721 * fatal signals are blocked while syscall stop is processed,
1722 * and acted on in between, when waiting for new syscall stops.
1723 * In non-interactive mode, signals are ignored.
1724 */
1725 if (opt_intr == INTR_WHILE_WAIT) {
1726 sigaddset(&blocked_set, SIGHUP);
1727 sigaddset(&blocked_set, SIGINT);
1728 sigaddset(&blocked_set, SIGQUIT);
1729 sigaddset(&blocked_set, SIGPIPE);
1730 sigaddset(&blocked_set, SIGTERM);
1731 sa.sa_handler = interrupt;
Denys Vlasenkob51581e2012-01-29 16:53:03 +01001732 }
1733 /* SIG_IGN, or set handler for these */
1734 sigaction(SIGHUP, &sa, NULL);
1735 sigaction(SIGINT, &sa, NULL);
1736 sigaction(SIGQUIT, &sa, NULL);
1737 sigaction(SIGPIPE, &sa, NULL);
1738 sigaction(SIGTERM, &sa, NULL);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001739 }
Denys Vlasenkofd883382012-03-09 13:03:41 +01001740 if (nprocs != 0 || daemonized_tracer)
Roland McGrath02203312007-06-11 22:06:31 +00001741 startup_attach();
Roland McGrath02203312007-06-11 22:06:31 +00001742
Denys Vlasenkofd883382012-03-09 13:03:41 +01001743 /* Do we want pids printed in our -o OUTFILE?
1744 * -ff: no (every pid has its own file); or
1745 * -f: yes (there can be more pids in the future); or
1746 * -p PID1,PID2: yes (there are already more than one pid)
1747 */
1748 print_pid_pfx = (outfname && followfork < 2 && (followfork == 1 || nprocs > 1));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001749}
1750
Denys Vlasenkoeebb04d2012-01-27 15:24:48 +01001751static struct tcb *
Roland McGrath54e931f2010-09-14 18:59:20 -07001752pid2tcb(int pid)
1753{
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +00001754 unsigned int i;
Roland McGrath54e931f2010-09-14 18:59:20 -07001755
1756 if (pid <= 0)
1757 return NULL;
1758
1759 for (i = 0; i < tcbtabsize; i++) {
1760 struct tcb *tcp = tcbtab[i];
Denys Vlasenkofadbf662013-06-26 14:14:29 +02001761 if (tcp->pid == pid)
Roland McGrath54e931f2010-09-14 18:59:20 -07001762 return tcp;
1763 }
1764
1765 return NULL;
1766}
1767
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001768static void
Denys Vlasenko12014262011-05-30 14:00:14 +02001769cleanup(void)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001770{
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +00001771 unsigned int i;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001772 struct tcb *tcp;
Denys Vlasenko35218842012-01-29 21:17:56 +01001773 int fatal_sig;
1774
1775 /* 'interrupted' is a volatile object, fetch it only once */
1776 fatal_sig = interrupted;
1777 if (!fatal_sig)
1778 fatal_sig = SIGTERM;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001779
Roland McGrathee9d4352002-12-18 04:16:10 +00001780 for (i = 0; i < tcbtabsize; i++) {
1781 tcp = tcbtab[i];
Denys Vlasenkofadbf662013-06-26 14:14:29 +02001782 if (!tcp->pid)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001783 continue;
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001784 if (debug_flag)
Dmitry V. Levin6c8ef052015-05-25 22:51:19 +00001785 error_msg("cleanup: looking at pid %u", tcp->pid);
Denys Vlasenkofadbf662013-06-26 14:14:29 +02001786 if (tcp->pid == strace_child) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001787 kill(tcp->pid, SIGCONT);
Denys Vlasenkoa3559252012-01-29 16:43:51 +01001788 kill(tcp->pid, fatal_sig);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001789 }
Denys Vlasenko7de265d2012-03-13 11:44:31 +01001790 detach(tcp);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001791 }
1792 if (cflag)
Denys Vlasenko6764f8f2012-03-22 09:56:20 +01001793 call_summary(shared_log);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001794}
1795
1796static void
Denys Vlasenko12014262011-05-30 14:00:14 +02001797interrupt(int sig)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001798{
Denys Vlasenkoa3559252012-01-29 16:43:51 +01001799 interrupted = sig;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001800}
1801
Denys Vlasenkod0ffdf42013-07-01 13:02:33 +02001802static void
Dmitry V. Levin0f4ad302015-02-22 02:13:04 +00001803print_debug_info(const int pid, int status)
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00001804{
1805 const unsigned int event = (unsigned int) status >> 16;
1806 char buf[sizeof("WIFEXITED,exitcode=%u") + sizeof(int)*3 /*paranoia:*/ + 16];
1807 char evbuf[sizeof(",EVENT_VFORK_DONE (%u)") + sizeof(int)*3 /*paranoia:*/ + 16];
1808
1809 strcpy(buf, "???");
1810 if (WIFSIGNALED(status))
1811#ifdef WCOREDUMP
1812 sprintf(buf, "WIFSIGNALED,%ssig=%s",
1813 WCOREDUMP(status) ? "core," : "",
1814 signame(WTERMSIG(status)));
1815#else
1816 sprintf(buf, "WIFSIGNALED,sig=%s",
1817 signame(WTERMSIG(status)));
1818#endif
1819 if (WIFEXITED(status))
1820 sprintf(buf, "WIFEXITED,exitcode=%u", WEXITSTATUS(status));
1821 if (WIFSTOPPED(status))
1822 sprintf(buf, "WIFSTOPPED,sig=%s", signame(WSTOPSIG(status)));
1823#ifdef WIFCONTINUED
1824 /* Should never be seen */
1825 if (WIFCONTINUED(status))
1826 strcpy(buf, "WIFCONTINUED");
1827#endif
1828 evbuf[0] = '\0';
1829 if (event != 0) {
1830 static const char *const event_names[] = {
1831 [PTRACE_EVENT_CLONE] = "CLONE",
1832 [PTRACE_EVENT_FORK] = "FORK",
1833 [PTRACE_EVENT_VFORK] = "VFORK",
1834 [PTRACE_EVENT_VFORK_DONE] = "VFORK_DONE",
1835 [PTRACE_EVENT_EXEC] = "EXEC",
1836 [PTRACE_EVENT_EXIT] = "EXIT",
1837 /* [PTRACE_EVENT_STOP (=128)] would make biggish array */
1838 };
1839 const char *e = "??";
1840 if (event < ARRAY_SIZE(event_names))
1841 e = event_names[event];
1842 else if (event == PTRACE_EVENT_STOP)
1843 e = "STOP";
1844 sprintf(evbuf, ",EVENT_%s (%u)", e, event);
1845 }
Dmitry V. Levin6c8ef052015-05-25 22:51:19 +00001846 error_msg("[wait(0x%06x) = %u] %s%s", status, pid, buf, evbuf);
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00001847}
1848
1849static struct tcb *
Dmitry V. Levin0f4ad302015-02-22 02:13:04 +00001850maybe_allocate_tcb(const int pid, int status)
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00001851{
1852 if (!WIFSTOPPED(status)) {
Dmitry V. Levinaa801922015-02-07 18:48:55 +00001853 if (detach_on_execve && pid == strace_child) {
1854 /* example: strace -bexecve sh -c 'exec true' */
1855 strace_child = 0;
1856 return NULL;
1857 }
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00001858 /*
1859 * This can happen if we inherited an unknown child.
Dmitry V. Levinaa801922015-02-07 18:48:55 +00001860 * Example: (sleep 1 & exec strace true)
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00001861 */
1862 error_msg("Exit of unknown pid %u ignored", pid);
1863 return NULL;
1864 }
1865 if (followfork) {
1866 /* We assume it's a fork/vfork/clone child */
1867 struct tcb *tcp = alloctcb(pid);
1868 tcp->flags |= TCB_ATTACHED | TCB_STARTUP | post_attach_sigstop;
1869 newoutf(tcp);
1870 if (!qflag)
Dmitry V. Levin6c8ef052015-05-25 22:51:19 +00001871 error_msg("Process %d attached", pid);
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00001872 return tcp;
1873 } else {
1874 /* This can happen if a clone call used
1875 * CLONE_PTRACE itself.
1876 */
1877 ptrace(PTRACE_CONT, pid, (char *) 0, 0);
1878 error_msg("Stop of unknown pid %u seen, PTRACE_CONTed it", pid);
1879 return NULL;
1880 }
1881}
1882
1883static struct tcb *
1884maybe_switch_tcbs(struct tcb *tcp, const int pid)
1885{
1886 FILE *fp;
1887 struct tcb *execve_thread;
1888 long old_pid = 0;
1889
1890 if (ptrace(PTRACE_GETEVENTMSG, pid, NULL, (long) &old_pid) < 0)
1891 return tcp;
1892 /* Avoid truncation in pid2tcb() param passing */
1893 if (old_pid <= 0 || old_pid == pid)
1894 return tcp;
1895 if ((unsigned long) old_pid > UINT_MAX)
1896 return tcp;
1897 execve_thread = pid2tcb(old_pid);
1898 /* It should be !NULL, but I feel paranoid */
1899 if (!execve_thread)
1900 return tcp;
1901
1902 if (execve_thread->curcol != 0) {
1903 /*
1904 * One case we are here is -ff:
1905 * try "strace -oLOG -ff test/threaded_execve"
1906 */
1907 fprintf(execve_thread->outf, " <pid changed to %d ...>\n", pid);
1908 /*execve_thread->curcol = 0; - no need, see code below */
1909 }
1910 /* Swap output FILEs (needed for -ff) */
1911 fp = execve_thread->outf;
1912 execve_thread->outf = tcp->outf;
1913 tcp->outf = fp;
1914 /* And their column positions */
1915 execve_thread->curcol = tcp->curcol;
1916 tcp->curcol = 0;
1917 /* Drop leader, but close execve'd thread outfile (if -ff) */
1918 droptcb(tcp);
1919 /* Switch to the thread, reusing leader's outfile and pid */
1920 tcp = execve_thread;
1921 tcp->pid = pid;
1922 if (cflag != CFLAG_ONLY_STATS) {
1923 printleader(tcp);
1924 tprintf("+++ superseded by execve in pid %lu +++\n", old_pid);
1925 line_ended();
1926 tcp->flags |= TCB_REPRINT;
1927 }
1928
1929 return tcp;
1930}
1931
1932static void
Dmitry V. Levin0f4ad302015-02-22 02:13:04 +00001933print_signalled(struct tcb *tcp, const int pid, int status)
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00001934{
Dmitry V. Levin2cd488b2015-02-07 19:41:48 +00001935 if (pid == strace_child) {
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00001936 exit_code = 0x100 | WTERMSIG(status);
Dmitry V. Levin2cd488b2015-02-07 19:41:48 +00001937 strace_child = 0;
1938 }
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00001939
1940 if (cflag != CFLAG_ONLY_STATS
1941 && (qual_flags[WTERMSIG(status)] & QUAL_SIGNAL)
1942 ) {
1943 printleader(tcp);
1944#ifdef WCOREDUMP
1945 tprintf("+++ killed by %s %s+++\n",
1946 signame(WTERMSIG(status)),
1947 WCOREDUMP(status) ? "(core dumped) " : "");
1948#else
1949 tprintf("+++ killed by %s +++\n",
1950 signame(WTERMSIG(status)));
1951#endif
1952 line_ended();
1953 }
1954}
1955
1956static void
Dmitry V. Levin0f4ad302015-02-22 02:13:04 +00001957print_exited(struct tcb *tcp, const int pid, int status)
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00001958{
Dmitry V. Levin2cd488b2015-02-07 19:41:48 +00001959 if (pid == strace_child) {
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00001960 exit_code = WEXITSTATUS(status);
Dmitry V. Levin2cd488b2015-02-07 19:41:48 +00001961 strace_child = 0;
1962 }
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00001963
1964 if (cflag != CFLAG_ONLY_STATS &&
1965 qflag < 2) {
1966 printleader(tcp);
1967 tprintf("+++ exited with %d +++\n", WEXITSTATUS(status));
1968 line_ended();
1969 }
1970}
1971
1972static void
1973print_stopped(struct tcb *tcp, const siginfo_t *si, const unsigned int sig)
1974{
1975 if (cflag != CFLAG_ONLY_STATS
1976 && !hide_log_until_execve
1977 && (qual_flags[sig] & QUAL_SIGNAL)
1978 ) {
1979 printleader(tcp);
1980 if (si) {
1981 tprintf("--- %s ", signame(sig));
1982 printsiginfo(si, verbose(tcp));
1983 tprints(" ---\n");
1984 } else
1985 tprintf("--- stopped by %s ---\n", signame(sig));
1986 line_ended();
1987 }
1988}
1989
Denys Vlasenko4bb2ffd2015-03-21 18:13:45 +01001990static void
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00001991startup_tcb(struct tcb *tcp)
1992{
1993 if (debug_flag)
Dmitry V. Levin6c8ef052015-05-25 22:51:19 +00001994 error_msg("pid %d has TCB_STARTUP, initializing it", tcp->pid);
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00001995
1996 tcp->flags &= ~TCB_STARTUP;
1997
Dmitry V. Levin23ce9e42015-02-08 13:05:53 +00001998 if (!use_seize) {
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00001999 if (debug_flag)
Dmitry V. Levin6c8ef052015-05-25 22:51:19 +00002000 error_msg("setting opts 0x%x on pid %d",
2001 ptrace_setoptions, tcp->pid);
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002002 if (ptrace(PTRACE_SETOPTIONS, tcp->pid, NULL, ptrace_setoptions) < 0) {
2003 if (errno != ESRCH) {
2004 /* Should never happen, really */
2005 perror_msg_and_die("PTRACE_SETOPTIONS");
2006 }
2007 }
2008 }
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002009}
2010
2011/* Returns true iff the main trace loop has to continue. */
2012static bool
Denys Vlasenko12014262011-05-30 14:00:14 +02002013trace(void)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002014{
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002015 int pid;
2016 int wait_errno;
2017 int status;
2018 bool stopped;
2019 unsigned int sig;
2020 unsigned int event;
2021 struct tcb *tcp;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002022 struct rusage ru;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002023
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002024 if (interrupted)
2025 return false;
Denys Vlasenkof7db5dd2012-01-28 01:16:02 +01002026
Denys Vlasenko364728d2015-03-21 18:40:53 +01002027 /*
2028 * Used to exit simply when nprocs hits zero, but in this testcase:
2029 * int main() { _exit(!!fork()); }
2030 * under strace -f, parent sometimes (rarely) manages
2031 * to exit before we see the first stop of the child,
2032 * and we are losing track of it:
2033 * 19923 clone(...) = 19924
2034 * 19923 exit_group(1) = ?
2035 * 19923 +++ exited with 1 +++
2036 * Exiting only when wait() returns ECHILD works better.
2037 */
2038 if (popen_pid != 0) {
2039 /* However, if -o|logger is in use, we can't do that.
2040 * Can work around that by double-forking the logger,
2041 * but that loses the ability to wait for its completion
2042 * on exit. Oh well...
2043 */
2044 if (nprocs == 0)
2045 return false;
2046 }
Denys Vlasenko725dd422013-06-20 11:06:58 +02002047
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002048 if (interactive)
2049 sigprocmask(SIG_SETMASK, &empty_set, NULL);
2050 pid = wait4(-1, &status, __WALL, (cflag ? &ru : NULL));
2051 wait_errno = errno;
2052 if (interactive)
2053 sigprocmask(SIG_BLOCK, &blocked_set, NULL);
Denys Vlasenko7c41ce22013-07-08 13:55:04 +02002054
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002055 if (pid < 0) {
2056 if (wait_errno == EINTR)
2057 return true;
2058 if (nprocs == 0 && wait_errno == ECHILD)
2059 return false;
2060 /*
2061 * If nprocs > 0, ECHILD is not expected,
2062 * treat it as any other error here:
2063 */
2064 errno = wait_errno;
2065 perror_msg_and_die("wait4(__WALL)");
2066 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002067
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002068 if (pid == popen_pid) {
2069 if (!WIFSTOPPED(status))
2070 popen_pid = 0;
2071 return true;
2072 }
Denys Vlasenko725dd422013-06-20 11:06:58 +02002073
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002074 if (debug_flag)
2075 print_debug_info(pid, status);
Denys Vlasenkof7db5dd2012-01-28 01:16:02 +01002076
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002077 /* Look up 'pid' in our table. */
2078 tcp = pid2tcb(pid);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002079
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002080 if (!tcp) {
2081 tcp = maybe_allocate_tcb(pid, status);
2082 if (!tcp)
2083 return true;
2084 }
Denys Vlasenkof7db5dd2012-01-28 01:16:02 +01002085
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002086 if (WIFSTOPPED(status))
2087 get_regs(pid);
Dmitry V. Levine9bfff62015-02-13 22:45:33 +00002088 else
2089 clear_regs();
Denys Vlasenko7de265d2012-03-13 11:44:31 +01002090
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002091 event = (unsigned int) status >> 16;
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01002092
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002093 if (event == PTRACE_EVENT_EXEC) {
2094 /*
2095 * Under Linux, execve changes pid to thread leader's pid,
Denys Vlasenko8511f2a2012-03-22 09:35:51 +01002096 * and we see this changed pid on EVENT_EXEC and later,
2097 * execve sysexit. Leader "disappears" without exit
2098 * notification. Let user know that, drop leader's tcb,
2099 * and fix up pid in execve thread's tcb.
2100 * Effectively, execve thread's tcb replaces leader's tcb.
2101 *
2102 * BTW, leader is 'stuck undead' (doesn't report WIFEXITED
2103 * on exit syscall) in multithreaded programs exactly
2104 * in order to handle this case.
2105 *
2106 * PTRACE_GETEVENTMSG returns old pid starting from Linux 3.0.
2107 * On 2.6 and earlier, it can return garbage.
2108 */
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002109 if (os_release >= KERNEL_VERSION(3,0,0))
2110 tcp = maybe_switch_tcbs(tcp, pid);
Denys Vlasenko8511f2a2012-03-22 09:35:51 +01002111
Dmitry V. Levine6908132015-02-07 17:47:53 +00002112 if (detach_on_execve && !skip_one_b_execve) {
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002113 detach(tcp); /* do "-b execve" thingy */
Dmitry V. Levine6908132015-02-07 17:47:53 +00002114 return true;
2115 }
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002116 skip_one_b_execve = 0;
2117 }
Denys Vlasenko8511f2a2012-03-22 09:35:51 +01002118
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002119 /* Set current output file */
2120 current_tcp = tcp;
Denys Vlasenko8511f2a2012-03-22 09:35:51 +01002121
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002122 if (cflag) {
2123 tv_sub(&tcp->dtime, &ru.ru_stime, &tcp->stime);
2124 tcp->stime = ru.ru_stime;
2125 }
Denys Vlasenko8511f2a2012-03-22 09:35:51 +01002126
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002127 if (WIFSIGNALED(status)) {
2128 print_signalled(tcp, pid, status);
2129 droptcb(tcp);
2130 return true;
2131 }
Denys Vlasenko7de265d2012-03-13 11:44:31 +01002132
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002133 if (WIFEXITED(status)) {
2134 print_exited(tcp, pid, status);
2135 droptcb(tcp);
2136 return true;
2137 }
Roland McGratheb9e2e82009-06-02 16:49:22 -07002138
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002139 if (!WIFSTOPPED(status)) {
2140 /*
2141 * Neither signalled, exited or stopped.
2142 * How could that be?
2143 */
2144 error_msg("pid %u not stopped!", pid);
2145 droptcb(tcp);
2146 return true;
2147 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002148
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002149 /* Is this the very first time we see this tracee stopped? */
2150 if (tcp->flags & TCB_STARTUP) {
Denys Vlasenko4bb2ffd2015-03-21 18:13:45 +01002151 startup_tcb(tcp);
Denys Vlasenko8497b622015-03-21 17:51:52 +01002152 if (get_scno(tcp) == 1)
2153 tcp->s_prev_ent = tcp->s_ent;
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002154 }
Denys Vlasenkof88837a2011-09-05 14:05:46 +02002155
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002156 sig = WSTOPSIG(status);
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01002157
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002158 if (event != 0) {
2159 /* Ptrace event */
Denys Vlasenko5c9d8f42013-02-19 15:30:12 +01002160#if USE_SEIZE
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002161 if (event == PTRACE_EVENT_STOP) {
2162 /*
2163 * PTRACE_INTERRUPT-stop or group-stop.
2164 * PTRACE_INTERRUPT-stop has sig == SIGTRAP here.
2165 */
2166 switch (sig) {
2167 case SIGSTOP:
2168 case SIGTSTP:
2169 case SIGTTIN:
2170 case SIGTTOU:
2171 stopped = true;
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01002172 goto show_stopsig;
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01002173 }
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002174 }
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01002175#endif
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002176 goto restart_tracee_with_sig_0;
2177 }
Denys Vlasenkof88837a2011-09-05 14:05:46 +02002178
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002179 /*
2180 * Is this post-attach SIGSTOP?
2181 * Interestingly, the process may stop
2182 * with STOPSIG equal to some other signal
2183 * than SIGSTOP if we happend to attach
2184 * just before the process takes a signal.
2185 */
2186 if (sig == SIGSTOP && (tcp->flags & TCB_IGNORE_ONE_SIGSTOP)) {
2187 if (debug_flag)
Dmitry V. Levin6c8ef052015-05-25 22:51:19 +00002188 error_msg("ignored SIGSTOP on pid %d", tcp->pid);
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002189 tcp->flags &= ~TCB_IGNORE_ONE_SIGSTOP;
2190 goto restart_tracee_with_sig_0;
2191 }
2192
2193 if (sig != syscall_trap_sig) {
2194 siginfo_t si;
2195
2196 /*
2197 * True if tracee is stopped by signal
2198 * (as opposed to "tracee received signal").
2199 * TODO: shouldn't we check for errno == EINVAL too?
2200 * We can get ESRCH instead, you know...
Denys Vlasenkof88837a2011-09-05 14:05:46 +02002201 */
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002202 stopped = ptrace(PTRACE_GETSIGINFO, pid, 0, (long) &si) < 0;
Denys Vlasenko5c9d8f42013-02-19 15:30:12 +01002203#if USE_SEIZE
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002204show_stopsig:
Denys Vlasenko67038162012-01-29 16:46:46 +01002205#endif
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002206 print_stopped(tcp, stopped ? NULL : &si, sig);
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01002207
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002208 if (!stopped)
2209 /* It's signal-delivery-stop. Inject the signal */
Denys Vlasenko6cda73f2011-09-02 16:23:53 +02002210 goto restart_tracee;
Denys Vlasenko2ecba322011-08-21 17:35:39 +02002211
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002212 /* It's group-stop */
2213 if (use_seize) {
2214 /*
2215 * This ends ptrace-stop, but does *not* end group-stop.
2216 * This makes stopping signals work properly on straced process
2217 * (that is, process really stops. It used to continue to run).
Denys Vlasenkof2025022012-03-09 15:29:45 +01002218 */
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002219 if (ptrace_restart(PTRACE_LISTEN, tcp, 0) < 0) {
2220 /* Note: ptrace_restart emitted error message */
2221 exit_code = 1;
2222 return false;
2223 }
2224 return true;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002225 }
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002226 /* We don't have PTRACE_LISTEN support... */
2227 goto restart_tracee;
2228 }
2229
2230 /* We handled quick cases, we are permitted to interrupt now. */
2231 if (interrupted)
2232 return false;
2233
2234 /*
2235 * This should be syscall entry or exit.
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002236 * Handle it.
2237 */
2238 if (trace_syscall(tcp) < 0) {
2239 /*
2240 * ptrace() failed in trace_syscall().
2241 * Likely a result of process disappearing mid-flight.
2242 * Observed case: exit_group() or SIGKILL terminating
2243 * all processes in thread group.
2244 * We assume that ptrace error was caused by process death.
2245 * We used to detach(tcp) here, but since we no longer
2246 * implement "detach before death" policy/hack,
2247 * we can let this process to report its death to us
2248 * normally, via WIFEXITED or WIFSIGNALED wait status.
2249 */
2250 return true;
2251 }
2252
2253restart_tracee_with_sig_0:
2254 sig = 0;
2255
2256restart_tracee:
2257 if (ptrace_restart(PTRACE_SYSCALL, tcp, sig) < 0) {
2258 /* Note: ptrace_restart emitted error message */
2259 exit_code = 1;
2260 return false;
2261 }
2262
2263 return true;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002264}
Denys Vlasenkoecc8b972012-03-12 23:05:25 +01002265
2266int
2267main(int argc, char *argv[])
2268{
2269 init(argc, argv);
2270
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002271 while (trace())
2272 ;
Denys Vlasenkoecc8b972012-03-12 23:05:25 +01002273
2274 cleanup();
2275 fflush(NULL);
Dmitry V. Levincf534362012-07-12 20:54:46 +00002276 if (shared_log != stderr)
2277 fclose(shared_log);
2278 if (popen_pid) {
2279 while (waitpid(popen_pid, NULL, 0) < 0 && errno == EINTR)
2280 ;
2281 }
Denys Vlasenkoecc8b972012-03-12 23:05:25 +01002282 if (exit_code > 0xff) {
2283 /* Avoid potential core file clobbering. */
Dmitry V. Levinc8938e02013-03-20 21:40:15 +00002284 struct_rlimit rlim = {0, 0};
2285 set_rlimit(RLIMIT_CORE, &rlim);
Denys Vlasenkoecc8b972012-03-12 23:05:25 +01002286
2287 /* Child was killed by a signal, mimic that. */
2288 exit_code &= 0xff;
2289 signal(exit_code, SIG_DFL);
2290 raise(exit_code);
2291 /* Paranoia - what if this signal is not fatal?
2292 Exit with 128 + signo then. */
2293 exit_code += 128;
2294 }
2295
2296 return exit_code;
2297}