blob: 62142d86cc051b2d16e932b66be77317eae2ec30 [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>
Elliott Hughesb7556142018-02-20 17:03:16 -08006 * Copyright (c) 1999-2018 The strace developers.
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00007 * All rights reserved.
8 *
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
11 * are met:
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in the
16 * documentation and/or other materials provided with the distribution.
17 * 3. The name of the author may not be used to endorse or promote products
18 * derived from this software without specific prior written permission.
19 *
20 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
21 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
22 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
23 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
24 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
25 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
29 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000030 */
31
32#include "defs.h"
Denys Vlasenko3454e4b2011-05-23 21:29:03 +020033#include <stdarg.h>
Elliott Hughesb7556142018-02-20 17:03:16 -080034#include <limits.h>
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000035#include <fcntl.h>
Elliott Hughesb7556142018-02-20 17:03:16 -080036#include "ptrace.h"
Dmitry V. Levin0e946ab2015-07-17 23:56:54 +000037#include <signal.h>
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000038#include <sys/resource.h>
39#include <sys/wait.h>
40#include <sys/stat.h>
Elliott Hughesb7556142018-02-20 17:03:16 -080041#ifdef HAVE_PATHS_H
42# include <paths.h>
43#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000044#include <pwd.h>
45#include <grp.h>
Roland McGrath70b08532004-04-09 00:25:21 +000046#include <dirent.h>
Elliott Hughes28e98bc2018-06-14 16:59:04 -070047#include <locale.h>
Denys Vlasenkof7db5dd2012-01-28 01:16:02 +010048#include <sys/utsname.h>
Dmitry V. Levin882478a2013-05-13 18:43:28 +000049#ifdef HAVE_PRCTL
50# include <sys/prctl.h>
51#endif
Elliott Hughesd35df492017-02-15 15:19:05 -080052#include <asm/unistd.h>
Dmitry V. Levinfadf3792015-02-13 00:26:38 +000053
Elliott Hughesb7556142018-02-20 17:03:16 -080054#include "largefile_wrappers.h"
Elliott Hughes28e98bc2018-06-14 16:59:04 -070055#include "mmap_cache.h"
Elliott Hughes77c3ff82017-09-08 17:11:00 -070056#include "number_set.h"
Elliott Hughesd35df492017-02-15 15:19:05 -080057#include "scno.h"
Dmitry V. Levin0e946ab2015-07-17 23:56:54 +000058#include "printsiginfo.h"
Elliott Hughesb7556142018-02-20 17:03:16 -080059#include "trace_event.h"
60#include "xstring.h"
Elliott Hughes28e98bc2018-06-14 16:59:04 -070061#include "delay.h"
Dmitry V. Levinfadf3792015-02-13 00:26:38 +000062
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +010063/* In some libc, these aren't declared. Do it ourself: */
Denys Vlasenko96d5a762008-12-29 19:13:27 +000064extern char **environ;
Denys Vlasenko418d66a2009-01-17 01:52:54 +000065extern int optind;
66extern char *optarg;
Denys Vlasenko96d5a762008-12-29 19:13:27 +000067
Elliott Hughes03a418e2018-06-15 13:11:40 -070068#ifdef ENABLE_STACKTRACE
Luca Clementi327064b2013-07-23 00:11:35 -070069/* if this is true do the stack trace for every system call */
Elliott Hughesdc75b012017-07-05 13:54:44 -070070bool stack_trace_enabled;
Luca Clementi327064b2013-07-23 00:11:35 -070071#endif
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +010072
Elliott Hughesd35df492017-02-15 15:19:05 -080073#define my_tkill(tid, sig) syscall(__NR_tkill, (tid), (sig))
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +010074
Denys Vlasenko5c9d8f42013-02-19 15:30:12 +010075/* Glue for systems without a MMU that cannot provide fork() */
76#if !defined(HAVE_FORK)
77# undef NOMMU_SYSTEM
78# define NOMMU_SYSTEM 1
79#endif
80#if NOMMU_SYSTEM
81# define fork() vfork()
82#endif
83
Dmitry V. Levin23ce9e42015-02-08 13:05:53 +000084const unsigned int syscall_trap_sig = SIGTRAP | 0x80;
85
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +010086cflag_t cflag = CFLAG_NONE;
Elliott Hughesdc75b012017-07-05 13:54:44 -070087unsigned int followfork;
Elliott Hughesd35df492017-02-15 15:19:05 -080088unsigned int ptrace_setoptions = PTRACE_O_TRACESYSGOOD | PTRACE_O_TRACEEXEC
89 | PTRACE_O_TRACEEXIT;
Elliott Hughesdc75b012017-07-05 13:54:44 -070090unsigned int xflag;
91bool debug_flag;
92bool Tflag;
93bool iflag;
94bool count_wallclock;
95unsigned int qflag;
96static unsigned int tflag;
97static bool rflag;
98static bool print_pid_pfx;
Denys Vlasenkob51581e2012-01-29 16:53:03 +010099
100/* -I n */
101enum {
Elliott Hughesdc75b012017-07-05 13:54:44 -0700102 INTR_NOT_SET = 0,
103 INTR_ANYWHERE = 1, /* don't block/ignore any signals */
104 INTR_WHILE_WAIT = 2, /* block fatal signals while decoding syscall. default */
105 INTR_NEVER = 3, /* block fatal signals. default if '-o FILE PROG' */
106 INTR_BLOCK_TSTP_TOO = 4, /* block fatal signals and SIGTSTP (^Z) */
107 NUM_INTR_OPTS
Denys Vlasenkob51581e2012-01-29 16:53:03 +0100108};
109static int opt_intr;
110/* We play with signal mask only if this mode is active: */
111#define interactive (opt_intr == INTR_WHILE_WAIT)
112
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +0000113/*
114 * daemonized_tracer supports -D option.
115 * With this option, strace forks twice.
116 * Unlike normal case, with -D *grandparent* process exec's,
117 * becoming a traced process. Child exits (this prevents traced process
118 * from having children it doesn't expect to have), and grandchild
119 * attaches to grandparent similarly to strace -p PID.
120 * This allows for more transparent interaction in cases
121 * when process and its parent are communicating via signals,
122 * wait() etc. Without -D, strace process gets lodged in between,
123 * disrupting parent<->child link.
124 */
Elliott Hughesdc75b012017-07-05 13:54:44 -0700125static bool daemonized_tracer;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000126
Denys Vlasenko31fa8a22012-01-29 02:01:44 +0100127static int post_attach_sigstop = TCB_IGNORE_ONE_SIGSTOP;
Elliott Hughes28e98bc2018-06-14 16:59:04 -0700128#define use_seize (post_attach_sigstop == 0)
Denys Vlasenko31fa8a22012-01-29 02:01:44 +0100129
Michal Ludvig17f8fb32002-11-06 13:17:21 +0000130/* Sometimes we want to print only succeeding syscalls. */
Elliott Hughesdc75b012017-07-05 13:54:44 -0700131bool not_failing_only;
Michal Ludvig17f8fb32002-11-06 13:17:21 +0000132
Grant Edwards8a082772011-04-07 20:25:40 +0000133/* Show path associated with fd arguments */
Elliott Hughesdc75b012017-07-05 13:54:44 -0700134unsigned int show_fd_path;
Grant Edwards8a082772011-04-07 20:25:40 +0000135
Elliott Hughesdc75b012017-07-05 13:54:44 -0700136static bool detach_on_execve;
Denys Vlasenko61e7aad2012-03-15 13:44:17 +0100137
Dmitry V. Levinb9bc2162016-07-29 17:51:54 +0000138static int exit_code;
Elliott Hughesdc75b012017-07-05 13:54:44 -0700139static int strace_child;
140static int strace_tracer_pid;
Roland McGratheb9e2e82009-06-02 16:49:22 -0700141
Elliott Hughes77c3ff82017-09-08 17:11:00 -0700142static const char *username;
Denys Vlasenkoead73bd2011-06-24 22:49:58 +0200143static uid_t run_uid;
144static gid_t run_gid;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000145
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +0100146unsigned int max_strlen = DEFAULT_STRLEN;
Dmitry V. Levinccee1692012-03-25 21:49:48 +0000147static int acolumn = DEFAULT_ACOLUMN;
Denys Vlasenko102ec492011-08-25 01:27:59 +0200148static char *acolumn_spaces;
Denys Vlasenko6764f8f2012-03-22 09:56:20 +0100149
Elliott Hughes03a418e2018-06-15 13:11:40 -0700150/* Default output style for xlat entities */
151enum xlat_style xlat_verbosity = XLAT_STYLE_ABBREV;
152
Elliott Hughes77c3ff82017-09-08 17:11:00 -0700153static const char *outfname;
Denys Vlasenko6764f8f2012-03-22 09:56:20 +0100154/* If -ff, points to stderr. Else, it's our common output log */
155static FILE *shared_log;
Elliott Hughes28e98bc2018-06-14 16:59:04 -0700156static bool open_append;
Denys Vlasenko6764f8f2012-03-22 09:56:20 +0100157
Elliott Hughesdc75b012017-07-05 13:54:44 -0700158struct tcb *printing_tcp;
Denys Vlasenko6764f8f2012-03-22 09:56:20 +0100159static struct tcb *current_tcp;
160
Elliott Hughesc1873762018-12-19 15:13:36 -0800161struct tcb_wait_data {
162 enum trace_event te; /**< Event passed to dispatch_event() */
163 int status; /**< status, returned by wait4() */
164 siginfo_t si; /**< siginfo, returned by PTRACE_GETSIGINFO */
165};
166
Denys Vlasenkoead73bd2011-06-24 22:49:58 +0200167static struct tcb **tcbtab;
Elliott Hughesb7556142018-02-20 17:03:16 -0800168static unsigned int nprocs;
169static size_t tcbtabsize;
Elliott Hughesdc75b012017-07-05 13:54:44 -0700170
171#ifndef HAVE_PROGRAM_INVOCATION_NAME
172char *program_invocation_name;
173#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000174
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +0100175unsigned os_release; /* generated from uname()'s u.release */
Denys Vlasenkof7db5dd2012-01-28 01:16:02 +0100176
Denys Vlasenko4a9ba982013-06-20 11:20:23 +0200177static void detach(struct tcb *tcp);
Andreas Schwabe5355de2009-10-27 16:56:43 +0100178static void cleanup(void);
179static void interrupt(int sig);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000180
181#ifdef HAVE_SIG_ATOMIC_T
Elliott Hughes28e98bc2018-06-14 16:59:04 -0700182static volatile sig_atomic_t interrupted, restart_failed;
Denys Vlasenkoa3559252012-01-29 16:43:51 +0100183#else
Elliott Hughes28e98bc2018-06-14 16:59:04 -0700184static volatile int interrupted, restart_failed;
Denys Vlasenkoa3559252012-01-29 16:43:51 +0100185#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000186
Elliott Hughes28e98bc2018-06-14 16:59:04 -0700187static sigset_t timer_set;
188static void timer_sighandler(int);
189
Denys Vlasenko2c4fb902012-03-15 17:24:49 +0100190#ifndef HAVE_STRERROR
191
192#if !HAVE_DECL_SYS_ERRLIST
193extern int sys_nerr;
194extern char *sys_errlist[];
Denys Vlasenkoa6d91de2012-03-16 12:02:22 +0100195#endif
Denys Vlasenko2c4fb902012-03-15 17:24:49 +0100196
197const char *
198strerror(int err_no)
199{
200 static char buf[sizeof("Unknown error %d") + sizeof(int)*3];
201
202 if (err_no < 1 || err_no >= sys_nerr) {
Elliott Hughesb7556142018-02-20 17:03:16 -0800203 xsprintf(buf, "Unknown error %d", err_no);
Denys Vlasenko2c4fb902012-03-15 17:24:49 +0100204 return buf;
205 }
206 return sys_errlist[err_no];
207}
208
209#endif /* HAVE_STERRROR */
210
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000211static void
Elliott Hughesd35df492017-02-15 15:19:05 -0800212print_version(void)
213{
Elliott Hughes77c3ff82017-09-08 17:11:00 -0700214 static const char features[] =
Elliott Hughes03a418e2018-06-15 13:11:40 -0700215#ifdef ENABLE_STACKTRACE
216 " stack-trace=" USE_UNWINDER
217#endif
Elliott Hughesb7556142018-02-20 17:03:16 -0800218#ifdef USE_DEMANGLE
219 " stack-demangle"
Elliott Hughes03a418e2018-06-15 13:11:40 -0700220#endif
Elliott Hughesb7556142018-02-20 17:03:16 -0800221#if SUPPORTED_PERSONALITIES > 1
222# if defined HAVE_M32_MPERS
223 " m32-mpers"
224# else
225 " no-m32-mpers"
226# endif
227#endif /* SUPPORTED_PERSONALITIES > 1 */
228#if SUPPORTED_PERSONALITIES > 2
229# if defined HAVE_MX32_MPERS
230 " mx32-mpers"
231# else
232 " no-mx32-mpers"
233# endif
234#endif /* SUPPORTED_PERSONALITIES > 2 */
Elliott Hughes77c3ff82017-09-08 17:11:00 -0700235 "";
236
Elliott Hughesd35df492017-02-15 15:19:05 -0800237 printf("%s -- version %s\n"
Elliott Hughesdc75b012017-07-05 13:54:44 -0700238 "Copyright (c) 1991-%s The strace developers <%s>.\n"
Elliott Hughesd35df492017-02-15 15:19:05 -0800239 "This is free software; see the source for copying conditions. There is NO\n"
240 "warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n",
Elliott Hughes39bac052017-05-25 16:56:11 -0700241 PACKAGE_NAME, PACKAGE_VERSION, COPYRIGHT_YEAR, PACKAGE_URL);
Elliott Hughes77c3ff82017-09-08 17:11:00 -0700242 printf("\nOptional features enabled:%s\n",
243 features[0] ? features : " (none)");
Elliott Hughesd35df492017-02-15 15:19:05 -0800244}
245
246static void
Elvira Khabirova45a5a622016-06-13 01:41:33 +0300247usage(void)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000248{
Elvira Khabirovaa2fdfe92015-11-26 17:18:00 +0300249 printf("\
Elvira Khabirova3272d292015-11-26 06:25:12 +0300250usage: strace [-CdffhiqrtttTvVwxxy] [-I n] [-e expr]...\n\
Denys Vlasenkoc5ccfa42012-03-26 13:10:50 +0200251 [-a column] [-o file] [-s strsize] [-P path]...\n\
252 -p pid... / [-D] [-E var=val]... [-u username] PROG [ARGS]\n\
Elvira Khabirova3272d292015-11-26 06:25:12 +0300253 or: strace -c[dfw] [-I n] [-e expr]... [-O overhead] [-S sortby]\n\
Denys Vlasenkoc5ccfa42012-03-26 13:10:50 +0200254 -p pid... / [-D] [-E var=val]... [-u username] PROG [ARGS]\n\
Elvira Khabirova3272d292015-11-26 06:25:12 +0300255\n\
256Output format:\n\
257 -a column alignment COLUMN for printing syscall results (default %d)\n\
258 -i print instruction pointer at time of syscall\n\
Elliott Hughesd35df492017-02-15 15:19:05 -0800259"
Elliott Hughes03a418e2018-06-15 13:11:40 -0700260#ifdef ENABLE_STACKTRACE
Elliott Hughesd35df492017-02-15 15:19:05 -0800261"\
Elliott Hughes03a418e2018-06-15 13:11:40 -0700262 -k obtain stack trace between each syscall\n\
Elliott Hughesd35df492017-02-15 15:19:05 -0800263"
264#endif
265"\
Elvira Khabirova3272d292015-11-26 06:25:12 +0300266 -o file send trace output to FILE instead of stderr\n\
267 -q suppress messages about attaching, detaching, etc.\n\
268 -r print relative timestamp\n\
269 -s strsize limit length of print strings to STRSIZE chars (default %d)\n\
270 -t print absolute timestamp\n\
271 -tt print absolute timestamp with usecs\n\
272 -T print time spent in each syscall\n\
273 -x print non-ascii strings in hex\n\
274 -xx print all strings in hex\n\
275 -y print paths associated with file descriptor arguments\n\
Fabien Sirone6d2b562016-05-26 15:29:41 +0000276 -yy print protocol specific information associated with socket file descriptors\n\
Elvira Khabirova3272d292015-11-26 06:25:12 +0300277\n\
278Statistics:\n\
279 -c count time, calls, and errors for each syscall and report summary\n\
280 -C like -c but also print regular output\n\
281 -O overhead set overhead for tracing syscalls to OVERHEAD usecs\n\
282 -S sortby sort syscall counts by: time, calls, name, nothing (default %s)\n\
283 -w summarise syscall latency (default is system time)\n\
284\n\
285Filtering:\n\
286 -e expr a qualifying expression: option=[!]all or option=[!]val1[,val2]...\n\
Elliott Hughesc1873762018-12-19 15:13:36 -0800287 options: trace, abbrev, verbose, raw, signal, read, write, fault, inject, kvm"
288"\n\
Elvira Khabirova3272d292015-11-26 06:25:12 +0300289 -P path trace accesses to path\n\
290\n\
291Tracing:\n\
292 -b execve detach on execve syscall\n\
293 -D run tracer process as a detached grandchild, not as parent\n\
294 -f follow forks\n\
295 -ff follow forks with output into separate files\n\
296 -I interruptible\n\
297 1: no signals are blocked\n\
298 2: fatal signals are blocked while decoding syscall (default)\n\
299 3: fatal signals are always blocked (default if '-o FILE PROG')\n\
300 4: fatal signals and SIGTSTP (^Z) are always blocked\n\
301 (useful to make 'strace -o FILE PROG' not stop on ^Z)\n\
302\n\
303Startup:\n\
304 -E var remove var from the environment for command\n\
305 -E var=val put var=val in the environment for command\n\
306 -p pid trace process with process id PID, may be repeated\n\
307 -u username run command as username handling setuid and/or setgid\n\
308\n\
309Miscellaneous:\n\
310 -d enable debug output to stderr\n\
311 -v verbose mode: print unabbreviated argv, stat, termios, etc. args\n\
312 -h print help message\n\
313 -V print version\n\
Denys Vlasenko61e7aad2012-03-15 13:44:17 +0100314"
Denys Vlasenko38e79bb2013-02-26 11:33:54 +0100315/* ancient, no one should use it
316-F -- attempt to follow vforks (deprecated, use -f)\n\
317 */
Denys Vlasenko61e7aad2012-03-15 13:44:17 +0100318/* this is broken, so don't document it
Michal Ludvig17f8fb32002-11-06 13:17:21 +0000319-z -- print only succeeding syscalls\n\
Denys Vlasenko61e7aad2012-03-15 13:44:17 +0100320 */
Roland McGrathde6e5332003-01-24 04:31:23 +0000321, DEFAULT_ACOLUMN, DEFAULT_STRLEN, DEFAULT_SORTBY);
Elvira Khabirovaa2fdfe92015-11-26 17:18:00 +0300322 exit(0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000323}
324
Elliott Hughes77c3ff82017-09-08 17:11:00 -0700325void ATTRIBUTE_NORETURN
Dmitry V. Levin5647cf82015-03-29 22:45:03 +0000326die(void)
Denys Vlasenko75422762011-05-27 14:36:01 +0200327{
328 if (strace_tracer_pid == getpid()) {
329 cflag = 0;
330 cleanup();
Elliott Hughesb7556142018-02-20 17:03:16 -0800331 exit(1);
Denys Vlasenko75422762011-05-27 14:36:01 +0200332 }
Elliott Hughesb7556142018-02-20 17:03:16 -0800333
334 _exit(1);
Denys Vlasenko75422762011-05-27 14:36:01 +0200335}
336
Dmitry V. Levinccee1692012-03-25 21:49:48 +0000337static void
338error_opt_arg(int opt, const char *arg)
339{
Elvira Khabirovaa2fdfe92015-11-26 17:18:00 +0300340 error_msg_and_help("invalid -%c argument: '%s'", opt, arg);
Dmitry V. Levinccee1692012-03-25 21:49:48 +0000341}
342
Dmitry V. Levinc9251512016-07-25 17:12:42 +0000343static const char *ptrace_attach_cmd;
344
Denys Vlasenko31fa8a22012-01-29 02:01:44 +0100345static int
346ptrace_attach_or_seize(int pid)
347{
348 int r;
349 if (!use_seize)
Dmitry V. Levinc9251512016-07-25 17:12:42 +0000350 return ptrace_attach_cmd = "PTRACE_ATTACH",
351 ptrace(PTRACE_ATTACH, pid, 0L, 0L);
Dmitry V. Levin23ce9e42015-02-08 13:05:53 +0000352 r = ptrace(PTRACE_SEIZE, pid, 0L, (unsigned long) ptrace_setoptions);
Denys Vlasenko31fa8a22012-01-29 02:01:44 +0100353 if (r)
Dmitry V. Levinc9251512016-07-25 17:12:42 +0000354 return ptrace_attach_cmd = "PTRACE_SEIZE", r;
Denys Vlasenkoc169d942013-07-10 14:33:05 +0200355 r = ptrace(PTRACE_INTERRUPT, pid, 0L, 0L);
Dmitry V. Levinc9251512016-07-25 17:12:42 +0000356 return ptrace_attach_cmd = "PTRACE_INTERRUPT", r;
Dmitry V. Levinc9251512016-07-25 17:12:42 +0000357}
Denys Vlasenko31fa8a22012-01-29 02:01:44 +0100358
Denys Vlasenko852f98a2012-03-20 16:26:25 +0100359/*
360 * Used when we want to unblock stopped traced process.
361 * Should be only used with PTRACE_CONT, PTRACE_DETACH and PTRACE_SYSCALL.
362 * Returns 0 on success or if error was ESRCH
363 * (presumably process was killed while we talk to it).
364 * Otherwise prints error message and returns -1.
365 */
366static int
Elliott Hughesd35df492017-02-15 15:19:05 -0800367ptrace_restart(const unsigned int op, struct tcb *const tcp, unsigned int sig)
Denys Vlasenko852f98a2012-03-20 16:26:25 +0100368{
369 int err;
370 const char *msg;
371
372 errno = 0;
Elliott Hughesd35df492017-02-15 15:19:05 -0800373 ptrace(op, tcp->pid, 0L, (unsigned long) sig);
Denys Vlasenko852f98a2012-03-20 16:26:25 +0100374 err = errno;
Denys Vlasenko23506752012-03-21 10:32:49 +0100375 if (!err)
Denys Vlasenko852f98a2012-03-20 16:26:25 +0100376 return 0;
377
Elliott Hughesd35df492017-02-15 15:19:05 -0800378 switch (op) {
379 case PTRACE_CONT:
380 msg = "CONT";
381 break;
382 case PTRACE_DETACH:
383 msg = "DETACH";
384 break;
385 case PTRACE_LISTEN:
386 msg = "LISTEN";
387 break;
388 default:
389 msg = "SYSCALL";
390 }
391
Denys Vlasenko23506752012-03-21 10:32:49 +0100392 /*
393 * Why curcol != 0? Otherwise sometimes we get this:
394 *
395 * 10252 kill(10253, SIGKILL) = 0
396 * <ptrace(SYSCALL,10252):No such process>10253 ...next decode...
397 *
398 * 10252 died after we retrieved syscall exit data,
399 * but before we tried to restart it. Log looks ugly.
400 */
Denys Vlasenko6764f8f2012-03-22 09:56:20 +0100401 if (current_tcp && current_tcp->curcol != 0) {
Denys Vlasenko23506752012-03-21 10:32:49 +0100402 tprintf(" <ptrace(%s):%s>\n", msg, strerror(err));
403 line_ended();
404 }
405 if (err == ESRCH)
406 return 0;
407 errno = err;
Elliott Hughesd35df492017-02-15 15:19:05 -0800408 perror_msg("ptrace(PTRACE_%s,pid:%d,sig:%u)", msg, tcp->pid, sig);
Denys Vlasenko852f98a2012-03-20 16:26:25 +0100409 return -1;
410}
411
Denys Vlasenko1f532ab2011-06-22 13:11:23 +0200412static void
Dmitry V. Levin10de62b2006-12-13 21:45:31 +0000413set_cloexec_flag(int fd)
414{
Denys Vlasenko1f532ab2011-06-22 13:11:23 +0200415 int flags, newflags;
Dmitry V. Levin10de62b2006-12-13 21:45:31 +0000416
Denys Vlasenko1f532ab2011-06-22 13:11:23 +0200417 flags = fcntl(fd, F_GETFD);
418 if (flags < 0) {
419 /* Can happen only if fd is bad.
420 * Should never happen: if it does, we have a bug
421 * in the caller. Therefore we just abort
422 * instead of propagating the error.
423 */
424 perror_msg_and_die("fcntl(%d, F_GETFD)", fd);
Dmitry V. Levin10de62b2006-12-13 21:45:31 +0000425 }
426
427 newflags = flags | FD_CLOEXEC;
428 if (flags == newflags)
Denys Vlasenko1f532ab2011-06-22 13:11:23 +0200429 return;
Dmitry V. Levin10de62b2006-12-13 21:45:31 +0000430
Elliott Hughes03a418e2018-06-15 13:11:40 -0700431 if (fcntl(fd, F_SETFD, newflags)) /* never fails */
432 perror_msg_and_die("fcntl(%d, F_SETFD, %#x)", fd, newflags);
Dmitry V. Levin10de62b2006-12-13 21:45:31 +0000433}
434
Elvira Khabirova7429dca2016-06-13 01:43:15 +0300435static void
436kill_save_errno(pid_t pid, int sig)
Denys Vlasenko75fe85c2012-03-09 15:15:24 +0100437{
438 int saved_errno = errno;
439
440 (void) kill(pid, sig);
441 errno = saved_errno;
442}
443
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100444/*
445 * When strace is setuid executable, we have to swap uids
446 * before and after filesystem and process management operations.
447 */
448static void
449swap_uid(void)
450{
451 int euid = geteuid(), uid = getuid();
452
453 if (euid != uid && setreuid(euid, uid) < 0) {
454 perror_msg_and_die("setreuid");
455 }
456}
457
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100458static FILE *
459strace_fopen(const char *path)
460{
461 FILE *fp;
462
463 swap_uid();
Elliott Hughes28e98bc2018-06-14 16:59:04 -0700464 fp = fopen_stream(path, open_append ? "a" : "w");
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100465 if (!fp)
466 perror_msg_and_die("Can't fopen '%s'", path);
467 swap_uid();
468 set_cloexec_flag(fileno(fp));
469 return fp;
470}
471
Elliott Hughesdc75b012017-07-05 13:54:44 -0700472static int popen_pid;
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100473
474#ifndef _PATH_BSHELL
475# define _PATH_BSHELL "/bin/sh"
476#endif
477
478/*
479 * We cannot use standard popen(3) here because we have to distinguish
480 * popen child process from other processes we trace, and standard popen(3)
481 * does not export its child's pid.
482 */
483static FILE *
484strace_popen(const char *command)
485{
486 FILE *fp;
Denys Vlasenko519af5a2013-07-02 11:31:24 +0200487 int pid;
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100488 int fds[2];
489
490 swap_uid();
491 if (pipe(fds) < 0)
492 perror_msg_and_die("pipe");
493
494 set_cloexec_flag(fds[1]); /* never fails */
495
Denys Vlasenko519af5a2013-07-02 11:31:24 +0200496 pid = vfork();
497 if (pid < 0)
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100498 perror_msg_and_die("vfork");
499
Denys Vlasenko519af5a2013-07-02 11:31:24 +0200500 if (pid == 0) {
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100501 /* child */
502 close(fds[1]);
503 if (fds[0] != 0) {
504 if (dup2(fds[0], 0))
505 perror_msg_and_die("dup2");
506 close(fds[0]);
507 }
508 execl(_PATH_BSHELL, "sh", "-c", command, NULL);
509 perror_msg_and_die("Can't execute '%s'", _PATH_BSHELL);
510 }
511
512 /* parent */
Denys Vlasenko519af5a2013-07-02 11:31:24 +0200513 popen_pid = pid;
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100514 close(fds[0]);
515 swap_uid();
516 fp = fdopen(fds[1], "w");
517 if (!fp)
Elliott Hughesdc75b012017-07-05 13:54:44 -0700518 perror_msg_and_die("fdopen");
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100519 return fp;
520}
521
Elliott Hughesb7556142018-02-20 17:03:16 -0800522static void
523outf_perror(const struct tcb * const tcp)
524{
525 if (tcp->outf == stderr)
526 return;
527
528 /* This is ugly, but we don't store separate file names */
529 if (followfork >= 2)
530 perror_msg("%s.%u", outfname, tcp->pid);
531 else
532 perror_msg("%s", outfname);
533}
534
Elliott Hughes39bac052017-05-25 16:56:11 -0700535ATTRIBUTE_FORMAT((printf, 1, 0))
536static void
537tvprintf(const char *const fmt, va_list args)
Denys Vlasenko2e856a12012-03-12 23:02:26 +0100538{
Denys Vlasenko6764f8f2012-03-22 09:56:20 +0100539 if (current_tcp) {
Elliott Hughesd35df492017-02-15 15:19:05 -0800540 int n = vfprintf(current_tcp->outf, fmt, args);
Denys Vlasenko2e856a12012-03-12 23:02:26 +0100541 if (n < 0) {
Elliott Hughes77c3ff82017-09-08 17:11:00 -0700542 /* very unlikely due to vfprintf buffering */
Elliott Hughesb7556142018-02-20 17:03:16 -0800543 outf_perror(current_tcp);
Denys Vlasenko2e856a12012-03-12 23:02:26 +0100544 } else
Denys Vlasenko6764f8f2012-03-22 09:56:20 +0100545 current_tcp->curcol += n;
Denys Vlasenko2e856a12012-03-12 23:02:26 +0100546 }
Elliott Hughes39bac052017-05-25 16:56:11 -0700547}
548
549void
550tprintf(const char *fmt, ...)
551{
552 va_list args;
553 va_start(args, fmt);
554 tvprintf(fmt, args);
Denys Vlasenko2e856a12012-03-12 23:02:26 +0100555 va_end(args);
556}
557
Dmitry V. Levind3541302014-02-26 00:01:00 +0000558#ifndef HAVE_FPUTS_UNLOCKED
559# define fputs_unlocked fputs
560#endif
561
Denys Vlasenko2e856a12012-03-12 23:02:26 +0100562void
563tprints(const char *str)
564{
Denys Vlasenko6764f8f2012-03-22 09:56:20 +0100565 if (current_tcp) {
Denys Vlasenko142aee02012-04-16 18:10:15 +0200566 int n = fputs_unlocked(str, current_tcp->outf);
Denys Vlasenko2e856a12012-03-12 23:02:26 +0100567 if (n >= 0) {
Denys Vlasenko6764f8f2012-03-22 09:56:20 +0100568 current_tcp->curcol += strlen(str);
Denys Vlasenko2e856a12012-03-12 23:02:26 +0100569 return;
570 }
Elliott Hughes77c3ff82017-09-08 17:11:00 -0700571 /* very unlikely due to fputs_unlocked buffering */
Elliott Hughesb7556142018-02-20 17:03:16 -0800572 outf_perror(current_tcp);
Denys Vlasenko2e856a12012-03-12 23:02:26 +0100573 }
574}
575
576void
Elliott Hughes39bac052017-05-25 16:56:11 -0700577tprints_comment(const char *const str)
578{
579 if (str && *str)
580 tprintf(" /* %s */", str);
581}
582
583void
584tprintf_comment(const char *fmt, ...)
585{
586 if (!fmt || !*fmt)
587 return;
588
589 va_list args;
590 va_start(args, fmt);
591 tprints(" /* ");
592 tvprintf(fmt, args);
593 tprints(" */");
594 va_end(args);
595}
596
Elliott Hughes77c3ff82017-09-08 17:11:00 -0700597static void
598flush_tcp_output(const struct tcb *const tcp)
599{
Elliott Hughesb7556142018-02-20 17:03:16 -0800600 if (fflush(tcp->outf))
601 outf_perror(tcp);
Elliott Hughes77c3ff82017-09-08 17:11:00 -0700602}
603
Elliott Hughes39bac052017-05-25 16:56:11 -0700604void
Denys Vlasenko7de265d2012-03-13 11:44:31 +0100605line_ended(void)
606{
Denys Vlasenko6764f8f2012-03-22 09:56:20 +0100607 if (current_tcp) {
608 current_tcp->curcol = 0;
Elliott Hughes77c3ff82017-09-08 17:11:00 -0700609 flush_tcp_output(current_tcp);
Denys Vlasenko6764f8f2012-03-22 09:56:20 +0100610 }
611 if (printing_tcp) {
612 printing_tcp->curcol = 0;
613 printing_tcp = NULL;
614 }
Denys Vlasenko7de265d2012-03-13 11:44:31 +0100615}
616
617void
Elliott Hughesb7556142018-02-20 17:03:16 -0800618set_current_tcp(const struct tcb *tcp)
619{
620 current_tcp = (struct tcb *) tcp;
621
622 /* Sync current_personality and stuff */
623 if (current_tcp)
624 set_personality(current_tcp->currpers);
625}
626
627void
Denys Vlasenko2e856a12012-03-12 23:02:26 +0100628printleader(struct tcb *tcp)
629{
Denys Vlasenko7de265d2012-03-13 11:44:31 +0100630 /* If -ff, "previous tcb we printed" is always the same as current,
631 * because we have per-tcb output files.
632 */
633 if (followfork >= 2)
634 printing_tcp = tcp;
635
Denys Vlasenko2e856a12012-03-12 23:02:26 +0100636 if (printing_tcp) {
Elliott Hughesb7556142018-02-20 17:03:16 -0800637 set_current_tcp(printing_tcp);
Denys Vlasenko7de265d2012-03-13 11:44:31 +0100638 if (printing_tcp->curcol != 0 && (followfork < 2 || printing_tcp == tcp)) {
639 /*
640 * case 1: we have a shared log (i.e. not -ff), and last line
641 * wasn't finished (same or different tcb, doesn't matter).
642 * case 2: split log, we are the same tcb, but our last line
643 * didn't finish ("SIGKILL nuked us after syscall entry" etc).
644 */
Denys Vlasenko2e856a12012-03-12 23:02:26 +0100645 tprints(" <unfinished ...>\n");
Denys Vlasenko7de265d2012-03-13 11:44:31 +0100646 printing_tcp->curcol = 0;
Denys Vlasenko2e856a12012-03-12 23:02:26 +0100647 }
648 }
649
650 printing_tcp = tcp;
Elliott Hughesb7556142018-02-20 17:03:16 -0800651 set_current_tcp(tcp);
Denys Vlasenko6764f8f2012-03-22 09:56:20 +0100652 current_tcp->curcol = 0;
Denys Vlasenko2e856a12012-03-12 23:02:26 +0100653
654 if (print_pid_pfx)
655 tprintf("%-5d ", tcp->pid);
656 else if (nprocs > 1 && !outfname)
657 tprintf("[pid %5u] ", tcp->pid);
658
659 if (tflag) {
Elliott Hughes28e98bc2018-06-14 16:59:04 -0700660 struct timespec ts;
661 clock_gettime(CLOCK_REALTIME, &ts);
Denys Vlasenko2e856a12012-03-12 23:02:26 +0100662
Elliott Hughes28e98bc2018-06-14 16:59:04 -0700663 if (tflag > 2) {
664 tprintf("%lld.%06ld ",
665 (long long) ts.tv_sec, (long) ts.tv_nsec / 1000);
Elliott Hughesdc75b012017-07-05 13:54:44 -0700666 } else {
Elliott Hughes28e98bc2018-06-14 16:59:04 -0700667 time_t local = ts.tv_sec;
668 char str[MAX(sizeof("HH:MM:SS"), sizeof(ts.tv_sec) * 3)];
669 struct tm *tm = localtime(&local);
670
671 if (tm)
672 strftime(str, sizeof(str), "%T", tm);
673 else
674 xsprintf(str, "%lld", (long long) local);
Denys Vlasenko2e856a12012-03-12 23:02:26 +0100675 if (tflag > 1)
Elliott Hughes28e98bc2018-06-14 16:59:04 -0700676 tprintf("%s.%06ld ",
677 str, (long) ts.tv_nsec / 1000);
Denys Vlasenko2e856a12012-03-12 23:02:26 +0100678 else
679 tprintf("%s ", str);
680 }
681 }
Elliott Hughes28e98bc2018-06-14 16:59:04 -0700682
683 if (rflag) {
684 struct timespec ts;
685 clock_gettime(CLOCK_MONOTONIC, &ts);
686
687 static struct timespec ots;
688 if (ots.tv_sec == 0)
689 ots = ts;
690
691 struct timespec dts;
692 ts_sub(&dts, &ts, &ots);
693 ots = ts;
694
695 tprintf("%s%6ld.%06ld%s ",
696 tflag ? "(+" : "",
697 (long) dts.tv_sec, (long) dts.tv_nsec / 1000,
698 tflag ? ")" : "");
699 }
700
Denys Vlasenko2e856a12012-03-12 23:02:26 +0100701 if (iflag)
Denys Vlasenko5a2483b2013-07-01 12:49:14 +0200702 print_pc(tcp);
Denys Vlasenko2e856a12012-03-12 23:02:26 +0100703}
704
705void
706tabto(void)
707{
Denys Vlasenko6764f8f2012-03-22 09:56:20 +0100708 if (current_tcp->curcol < acolumn)
709 tprints(acolumn_spaces + current_tcp->curcol);
Denys Vlasenko2e856a12012-03-12 23:02:26 +0100710}
711
Denys Vlasenko3db3b262012-03-16 15:15:14 +0100712/* Should be only called directly *after successful attach* to a tracee.
713 * Otherwise, "strace -oFILE -ff -p<nonexistant_pid>"
714 * may create bogus empty FILE.<nonexistant_pid>, and then die.
715 */
Denys Vlasenko3d5ed412011-06-22 13:17:16 +0200716static void
Elliott Hughes03a418e2018-06-15 13:11:40 -0700717after_successful_attach(struct tcb *tcp, const unsigned int flags)
Dmitry V. Levin10de62b2006-12-13 21:45:31 +0000718{
Elliott Hughes03a418e2018-06-15 13:11:40 -0700719 tcp->flags |= TCB_ATTACHED | TCB_STARTUP | flags;
Denys Vlasenko6764f8f2012-03-22 09:56:20 +0100720 tcp->outf = shared_log; /* if not -ff mode, the same file is for all */
Denys Vlasenko3db3b262012-03-16 15:15:14 +0100721 if (followfork >= 2) {
Elliott Hughesb7556142018-02-20 17:03:16 -0800722 char name[PATH_MAX];
723 xsprintf(name, "%s.%u", outfname, tcp->pid);
Denys Vlasenko3d5ed412011-06-22 13:17:16 +0200724 tcp->outf = strace_fopen(name);
Dmitry V. Levin10de62b2006-12-13 21:45:31 +0000725 }
Elliott Hughes03a418e2018-06-15 13:11:40 -0700726
727#ifdef ENABLE_STACKTRACE
728 if (stack_trace_enabled)
729 unwind_tcb_init(tcp);
730#endif
Dmitry V. Levin10de62b2006-12-13 21:45:31 +0000731}
732
Denys Vlasenko558e5122012-03-12 23:32:16 +0100733static void
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100734expand_tcbtab(void)
735{
Nahim El Atmanic811fa62016-03-05 13:35:57 +0100736 /* Allocate some (more) TCBs (and expand the table).
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100737 We don't want to relocate the TCBs because our
738 callers have pointers and it would be a pain.
739 So tcbtab is a table of pointers. Since we never
740 free the TCBs, we allocate a single chunk of many. */
Elliott Hughesb7556142018-02-20 17:03:16 -0800741 size_t old_tcbtabsize;
Nahim El Atmanic811fa62016-03-05 13:35:57 +0100742 struct tcb *newtcbs;
Elliott Hughesb7556142018-02-20 17:03:16 -0800743 struct tcb **tcb_ptr;
Nahim El Atmanic811fa62016-03-05 13:35:57 +0100744
Elliott Hughesb7556142018-02-20 17:03:16 -0800745 old_tcbtabsize = tcbtabsize;
Nahim El Atmanic811fa62016-03-05 13:35:57 +0100746
Elliott Hughesb7556142018-02-20 17:03:16 -0800747 tcbtab = xgrowarray(tcbtab, &tcbtabsize, sizeof(tcbtab[0]));
748 newtcbs = xcalloc(tcbtabsize - old_tcbtabsize, sizeof(newtcbs[0]));
749
750 for (tcb_ptr = tcbtab + old_tcbtabsize;
751 tcb_ptr < tcbtab + tcbtabsize; tcb_ptr++, newtcbs++)
752 *tcb_ptr = newtcbs;
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100753}
754
755static struct tcb *
Denys Vlasenko3db3b262012-03-16 15:15:14 +0100756alloctcb(int pid)
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100757{
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +0000758 unsigned int i;
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100759 struct tcb *tcp;
760
761 if (nprocs == tcbtabsize)
762 expand_tcbtab();
763
764 for (i = 0; i < tcbtabsize; i++) {
765 tcp = tcbtab[i];
Denys Vlasenkofadbf662013-06-26 14:14:29 +0200766 if (!tcp->pid) {
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100767 memset(tcp, 0, sizeof(*tcp));
768 tcp->pid = pid;
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100769#if SUPPORTED_PERSONALITIES > 1
770 tcp->currpers = current_personality;
771#endif
772 nprocs++;
Elliott Hughesb7556142018-02-20 17:03:16 -0800773 debug_msg("new tcb for pid %d, active tcbs:%d",
774 tcp->pid, nprocs);
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100775 return tcp;
776 }
777 }
Denys Vlasenko3db3b262012-03-16 15:15:14 +0100778 error_msg_and_die("bug in alloctcb");
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100779}
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100780
Patrik Jakobssona1546a92015-08-24 14:42:47 +0200781void *
782get_tcb_priv_data(const struct tcb *tcp)
783{
784 return tcp->_priv_data;
785}
786
787int
788set_tcb_priv_data(struct tcb *tcp, void *const priv_data,
789 void (*const free_priv_data)(void *))
790{
791 if (tcp->_priv_data)
792 return -1;
793
794 tcp->_free_priv_data = free_priv_data;
795 tcp->_priv_data = priv_data;
796
797 return 0;
798}
799
800void
801free_tcb_priv_data(struct tcb *tcp)
802{
803 if (tcp->_priv_data) {
804 if (tcp->_free_priv_data) {
805 tcp->_free_priv_data(tcp->_priv_data);
806 tcp->_free_priv_data = NULL;
807 }
808 tcp->_priv_data = NULL;
809 }
810}
811
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100812static void
813droptcb(struct tcb *tcp)
814{
815 if (tcp->pid == 0)
816 return;
817
Elliott Hughesd35df492017-02-15 15:19:05 -0800818 int p;
819 for (p = 0; p < SUPPORTED_PERSONALITIES; ++p)
820 free(tcp->inject_vec[p]);
821
Patrik Jakobssona1546a92015-08-24 14:42:47 +0200822 free_tcb_priv_data(tcp);
823
Elliott Hughes03a418e2018-06-15 13:11:40 -0700824#ifdef ENABLE_STACKTRACE
825 if (stack_trace_enabled)
Masatake YAMATO2b09df92014-04-16 15:33:08 +0900826 unwind_tcb_fin(tcp);
Masatake YAMATO2b09df92014-04-16 15:33:08 +0900827#endif
828
Elliott Hughesc1873762018-12-19 15:13:36 -0800829#ifdef HAVE_LINUX_KVM_H
830 kvm_vcpu_info_free(tcp);
831#endif
832
Elliott Hughes03a418e2018-06-15 13:11:40 -0700833 if (tcp->mmap_cache)
834 tcp->mmap_cache->free_fn(tcp, __func__);
Elliott Hughes28e98bc2018-06-14 16:59:04 -0700835
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100836 nprocs--;
Elliott Hughesb7556142018-02-20 17:03:16 -0800837 debug_msg("dropped tcb for pid %d, %d remain", tcp->pid, nprocs);
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100838
839 if (tcp->outf) {
Denys Vlasenko8511f2a2012-03-22 09:35:51 +0100840 if (followfork >= 2) {
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100841 if (tcp->curcol != 0)
842 fprintf(tcp->outf, " <detached ...>\n");
843 fclose(tcp->outf);
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100844 } else {
845 if (printing_tcp == tcp && tcp->curcol != 0)
846 fprintf(tcp->outf, " <detached ...>\n");
Elliott Hughes77c3ff82017-09-08 17:11:00 -0700847 flush_tcp_output(tcp);
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100848 }
849 }
850
Denys Vlasenko6764f8f2012-03-22 09:56:20 +0100851 if (current_tcp == tcp)
Elliott Hughesb7556142018-02-20 17:03:16 -0800852 set_current_tcp(NULL);
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100853 if (printing_tcp == tcp)
854 printing_tcp = NULL;
855
856 memset(tcp, 0, sizeof(*tcp));
857}
858
Denys Vlasenkof1669e72013-06-18 18:09:39 +0200859/* Detach traced process.
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100860 * Never call DETACH twice on the same process as both unattached and
861 * attached-unstopped processes give the same ESRCH. For unattached process we
862 * would SIGSTOP it and wait for its SIGSTOP notification forever.
863 */
Denys Vlasenko4a9ba982013-06-20 11:20:23 +0200864static void
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100865detach(struct tcb *tcp)
866{
867 int error;
Denys Vlasenkoe2567d52013-06-21 16:11:10 +0200868 int status;
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100869
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100870 /*
871 * Linux wrongly insists the child be stopped
872 * before detaching. Arghh. We go through hoops
873 * to make a clean break of things.
874 */
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100875
Denys Vlasenkoe2567d52013-06-21 16:11:10 +0200876 if (!(tcp->flags & TCB_ATTACHED))
877 goto drop;
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100878
Denys Vlasenkoe2567d52013-06-21 16:11:10 +0200879 /* We attached but possibly didn't see the expected SIGSTOP.
880 * We must catch exactly one as otherwise the detached process
881 * would be left stopped (process state T).
882 */
883 if (tcp->flags & TCB_IGNORE_ONE_SIGSTOP)
884 goto wait_loop;
885
886 error = ptrace(PTRACE_DETACH, tcp->pid, 0, 0);
887 if (!error) {
888 /* On a clear day, you can see forever. */
889 goto drop;
890 }
891 if (errno != ESRCH) {
892 /* Shouldn't happen. */
Elliott Hughesb7556142018-02-20 17:03:16 -0800893 perror_func_msg("ptrace(PTRACE_DETACH,%u)", tcp->pid);
Denys Vlasenkoe2567d52013-06-21 16:11:10 +0200894 goto drop;
895 }
896 /* ESRCH: process is either not stopped or doesn't exist. */
897 if (my_tkill(tcp->pid, 0) < 0) {
898 if (errno != ESRCH)
899 /* Shouldn't happen. */
Elliott Hughesb7556142018-02-20 17:03:16 -0800900 perror_func_msg("tkill(%u,0)", tcp->pid);
Denys Vlasenkoe2567d52013-06-21 16:11:10 +0200901 /* else: process doesn't exist. */
902 goto drop;
903 }
904 /* Process is not stopped, need to stop it. */
905 if (use_seize) {
906 /*
907 * With SEIZE, tracee can be in group-stop already.
908 * In this state sending it another SIGSTOP does nothing.
909 * Need to use INTERRUPT.
910 * Testcase: trying to ^C a "strace -p <stopped_process>".
911 */
912 error = ptrace(PTRACE_INTERRUPT, tcp->pid, 0, 0);
913 if (!error)
914 goto wait_loop;
915 if (errno != ESRCH)
Elliott Hughesb7556142018-02-20 17:03:16 -0800916 perror_func_msg("ptrace(PTRACE_INTERRUPT,%u)", tcp->pid);
Elliott Hughesdc75b012017-07-05 13:54:44 -0700917 } else {
Denys Vlasenkoe2567d52013-06-21 16:11:10 +0200918 error = my_tkill(tcp->pid, SIGSTOP);
919 if (!error)
920 goto wait_loop;
921 if (errno != ESRCH)
Elliott Hughesb7556142018-02-20 17:03:16 -0800922 perror_func_msg("tkill(%u,SIGSTOP)", tcp->pid);
Denys Vlasenkoe2567d52013-06-21 16:11:10 +0200923 }
924 /* Either process doesn't exist, or some weird error. */
925 goto drop;
926
Denys Vlasenkoa2de9da2013-06-21 15:50:41 +0200927 wait_loop:
Denys Vlasenkoe2567d52013-06-21 16:11:10 +0200928 /* We end up here in three cases:
929 * 1. We sent PTRACE_INTERRUPT (use_seize case)
930 * 2. We sent SIGSTOP (!use_seize)
931 * 3. Attach SIGSTOP was already pending (TCB_IGNORE_ONE_SIGSTOP set)
932 */
933 for (;;) {
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +0000934 unsigned int sig;
Denys Vlasenkoe2567d52013-06-21 16:11:10 +0200935 if (waitpid(tcp->pid, &status, __WALL) < 0) {
936 if (errno == EINTR)
937 continue;
938 /*
939 * if (errno == ECHILD) break;
940 * ^^^ WRONG! We expect this PID to exist,
941 * and want to emit a message otherwise:
942 */
Elliott Hughesb7556142018-02-20 17:03:16 -0800943 perror_func_msg("waitpid(%u)", tcp->pid);
Denys Vlasenkoe2567d52013-06-21 16:11:10 +0200944 break;
945 }
946 if (!WIFSTOPPED(status)) {
947 /*
948 * Tracee exited or was killed by signal.
949 * We shouldn't normally reach this place:
950 * we don't want to consume exit status.
951 * Consider "strace -p PID" being ^C-ed:
952 * we want merely to detach from PID.
953 *
954 * However, we _can_ end up here if tracee
955 * was SIGKILLed.
956 */
957 break;
958 }
959 sig = WSTOPSIG(status);
Elliott Hughesb7556142018-02-20 17:03:16 -0800960 debug_msg("detach wait: event:%d sig:%d",
961 (unsigned) status >> 16, sig);
Denys Vlasenkoe2567d52013-06-21 16:11:10 +0200962 if (use_seize) {
963 unsigned event = (unsigned)status >> 16;
964 if (event == PTRACE_EVENT_STOP /*&& sig == SIGTRAP*/) {
Denys Vlasenkofdfa47a2013-06-20 12:10:21 +0200965 /*
Denys Vlasenkoe2567d52013-06-21 16:11:10 +0200966 * sig == SIGTRAP: PTRACE_INTERRUPT stop.
967 * sig == other: process was already stopped
968 * with this stopping sig (see tests/detach-stopped).
969 * Looks like re-injecting this sig is not necessary
970 * in DETACH for the tracee to remain stopped.
Denys Vlasenkofdfa47a2013-06-20 12:10:21 +0200971 */
Denys Vlasenkoe2567d52013-06-21 16:11:10 +0200972 sig = 0;
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100973 }
Denys Vlasenkoe2567d52013-06-21 16:11:10 +0200974 /*
975 * PTRACE_INTERRUPT is not guaranteed to produce
976 * the above event if other ptrace-stop is pending.
977 * See tests/detach-sleeping testcase:
978 * strace got SIGINT while tracee is sleeping.
979 * We sent PTRACE_INTERRUPT.
980 * We see syscall exit, not PTRACE_INTERRUPT stop.
981 * We won't get PTRACE_INTERRUPT stop
982 * if we would CONT now. Need to DETACH.
983 */
Denys Vlasenko69e27ef2013-06-19 15:31:39 +0200984 if (sig == syscall_trap_sig)
985 sig = 0;
Denys Vlasenkoe2567d52013-06-21 16:11:10 +0200986 /* else: not sure in which case we can be here.
987 * Signal stop? Inject it while detaching.
988 */
989 ptrace_restart(PTRACE_DETACH, tcp, sig);
990 break;
991 }
992 /* Note: this check has to be after use_seize check */
993 /* (else, in use_seize case SIGSTOP will be mistreated) */
994 if (sig == SIGSTOP) {
995 /* Detach, suppressing SIGSTOP */
996 ptrace_restart(PTRACE_DETACH, tcp, 0);
997 break;
998 }
999 if (sig == syscall_trap_sig)
1000 sig = 0;
1001 /* Can't detach just yet, may need to wait for SIGSTOP */
1002 error = ptrace_restart(PTRACE_CONT, tcp, sig);
1003 if (error < 0) {
1004 /* Should not happen.
1005 * Note: ptrace_restart returns 0 on ESRCH, so it's not it.
1006 * ptrace_restart already emitted error message.
1007 */
1008 break;
Denys Vlasenko800ec8f2012-03-16 15:11:34 +01001009 }
1010 }
1011
Denys Vlasenkoe2567d52013-06-21 16:11:10 +02001012 drop:
Denys Vlasenko800ec8f2012-03-16 15:11:34 +01001013 if (!qflag && (tcp->flags & TCB_ATTACHED))
Dmitry V. Levin6c8ef052015-05-25 22:51:19 +00001014 error_msg("Process %u detached", tcp->pid);
Denys Vlasenko800ec8f2012-03-16 15:11:34 +01001015
1016 droptcb(tcp);
Denys Vlasenko800ec8f2012-03-16 15:11:34 +01001017}
1018
1019static void
Denys Vlasenko558e5122012-03-12 23:32:16 +01001020process_opt_p_list(char *opt)
Denys Vlasenkoe8172b72012-03-09 13:01:04 +01001021{
1022 while (*opt) {
1023 /*
1024 * We accept -p PID,PID; -p "`pidof PROG`"; -p "`pgrep PROG`".
1025 * pidof uses space as delim, pgrep uses newline. :(
1026 */
1027 int pid;
Elliott Hughesdc75b012017-07-05 13:54:44 -07001028 char *delim = opt + strcspn(opt, "\n\t ,");
Denys Vlasenkoe8172b72012-03-09 13:01:04 +01001029 char c = *delim;
1030
1031 *delim = '\0';
Dmitry V. Levinccee1692012-03-25 21:49:48 +00001032 pid = string_to_uint(opt);
Denys Vlasenkoe8172b72012-03-09 13:01:04 +01001033 if (pid <= 0) {
Dmitry V. Levinccee1692012-03-25 21:49:48 +00001034 error_msg_and_die("Invalid process id: '%s'", opt);
Denys Vlasenkoe8172b72012-03-09 13:01:04 +01001035 }
1036 if (pid == strace_tracer_pid) {
Dmitry V. Levinccee1692012-03-25 21:49:48 +00001037 error_msg_and_die("I'm sorry, I can't let you do that, Dave.");
Denys Vlasenkoe8172b72012-03-09 13:01:04 +01001038 }
1039 *delim = c;
Denys Vlasenko3db3b262012-03-16 15:15:14 +01001040 alloctcb(pid);
Denys Vlasenkoe8172b72012-03-09 13:01:04 +01001041 if (c == '\0')
1042 break;
1043 opt = delim + 1;
1044 }
1045}
1046
Roland McGrath02203312007-06-11 22:06:31 +00001047static void
Dmitry V. Levin795795a2016-07-25 16:25:12 +00001048attach_tcb(struct tcb *const tcp)
1049{
Dmitry V. Levin795795a2016-07-25 16:25:12 +00001050 if (ptrace_attach_or_seize(tcp->pid) < 0) {
Dmitry V. Levinc9251512016-07-25 17:12:42 +00001051 perror_msg("attach: ptrace(%s, %d)",
1052 ptrace_attach_cmd, tcp->pid);
Dmitry V. Levin795795a2016-07-25 16:25:12 +00001053 droptcb(tcp);
1054 return;
1055 }
1056
Elliott Hughes03a418e2018-06-15 13:11:40 -07001057 after_successful_attach(tcp, TCB_GRABBED | post_attach_sigstop);
Elliott Hughesb7556142018-02-20 17:03:16 -08001058 debug_msg("attach to pid %d (main) succeeded", tcp->pid);
Dmitry V. Levin795795a2016-07-25 16:25:12 +00001059
Elliott Hughesb7556142018-02-20 17:03:16 -08001060 static const char task_path[] = "/proc/%d/task";
1061 char procdir[sizeof(task_path) + sizeof(int) * 3];
Dmitry V. Levin2ddb73d2016-07-25 18:48:50 +00001062 DIR *dir;
1063 unsigned int ntid = 0, nerr = 0;
1064
1065 if (followfork && tcp->pid != strace_child &&
Elliott Hughesb7556142018-02-20 17:03:16 -08001066 xsprintf(procdir, task_path, tcp->pid) > 0 &&
Dmitry V. Levin2ddb73d2016-07-25 18:48:50 +00001067 (dir = opendir(procdir)) != NULL) {
1068 struct_dirent *de;
1069
1070 while ((de = read_dir(dir)) != NULL) {
1071 if (de->d_fileno == 0)
1072 continue;
1073
1074 int tid = string_to_uint(de->d_name);
1075 if (tid <= 0 || tid == tcp->pid)
1076 continue;
1077
1078 ++ntid;
1079 if (ptrace_attach_or_seize(tid) < 0) {
1080 ++nerr;
Elliott Hughesb7556142018-02-20 17:03:16 -08001081 debug_perror_msg("attach: ptrace(%s, %d)",
1082 ptrace_attach_cmd, tid);
Dmitry V. Levin2ddb73d2016-07-25 18:48:50 +00001083 continue;
1084 }
Dmitry V. Levin2ddb73d2016-07-25 18:48:50 +00001085
Elliott Hughes03a418e2018-06-15 13:11:40 -07001086 after_successful_attach(alloctcb(tid),
1087 TCB_GRABBED | post_attach_sigstop);
1088 debug_msg("attach to pid %d succeeded", tid);
Dmitry V. Levin2ddb73d2016-07-25 18:48:50 +00001089 }
1090
1091 closedir(dir);
1092 }
1093
1094 if (!qflag) {
1095 if (ntid > nerr)
1096 error_msg("Process %u attached"
1097 " with %u threads",
1098 tcp->pid, ntid - nerr + 1);
1099 else
1100 error_msg("Process %u attached",
1101 tcp->pid);
1102 }
Dmitry V. Levin795795a2016-07-25 16:25:12 +00001103}
1104
1105static void
Roland McGrath02203312007-06-11 22:06:31 +00001106startup_attach(void)
1107{
Dmitry V. Levinfa8c2862016-01-22 14:37:14 +00001108 pid_t parent_pid = strace_tracer_pid;
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +00001109 unsigned int tcbi;
Roland McGrath02203312007-06-11 22:06:31 +00001110 struct tcb *tcp;
1111
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +00001112 if (daemonized_tracer) {
1113 pid_t pid = fork();
Elliott Hughesb7556142018-02-20 17:03:16 -08001114 if (pid < 0)
1115 perror_func_msg_and_die("fork");
1116
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +00001117 if (pid) { /* parent */
1118 /*
Denys Vlasenko75422762011-05-27 14:36:01 +02001119 * Wait for grandchild to attach to straced process
1120 * (grandparent). Grandchild SIGKILLs us after it attached.
1121 * Grandparent's wait() is unblocked by our death,
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +00001122 * it proceeds to exec the straced program.
1123 */
1124 pause();
1125 _exit(0); /* paranoia */
1126 }
Denys Vlasenko75422762011-05-27 14:36:01 +02001127 /* grandchild */
1128 /* We will be the tracer process. Remember our new pid: */
1129 strace_tracer_pid = getpid();
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +00001130 }
1131
Roland McGrath02203312007-06-11 22:06:31 +00001132 for (tcbi = 0; tcbi < tcbtabsize; tcbi++) {
1133 tcp = tcbtab[tcbi];
Denys Vlasenko44f87ef2011-08-17 15:18:21 +02001134
Denys Vlasenkofadbf662013-06-26 14:14:29 +02001135 if (!tcp->pid)
Denys Vlasenko75fe85c2012-03-09 15:15:24 +01001136 continue;
1137
Denys Vlasenkod116a732011-09-05 14:01:33 +02001138 /* Is this a process we should attach to, but not yet attached? */
Denys Vlasenko75fe85c2012-03-09 15:15:24 +01001139 if (tcp->flags & TCB_ATTACHED)
1140 continue; /* no, we already attached it */
Denys Vlasenkod116a732011-09-05 14:01:33 +02001141
Dmitry V. Levinfa8c2862016-01-22 14:37:14 +00001142 if (tcp->pid == parent_pid || tcp->pid == strace_tracer_pid) {
1143 errno = EPERM;
Dmitry V. Levin795795a2016-07-25 16:25:12 +00001144 perror_msg("attach: pid %d", tcp->pid);
Dmitry V. Levinfa8c2862016-01-22 14:37:14 +00001145 droptcb(tcp);
1146 continue;
1147 }
Roland McGrath02203312007-06-11 22:06:31 +00001148
Dmitry V. Levin795795a2016-07-25 16:25:12 +00001149 attach_tcb(tcp);
Denys Vlasenko381dbc22011-09-05 13:59:39 +02001150
Elliott Hughes28e98bc2018-06-14 16:59:04 -07001151 if (interrupted)
1152 return;
Denys Vlasenkof95397a2011-06-24 16:51:16 +02001153 } /* for each tcbtab[] */
Roland McGrath02203312007-06-11 22:06:31 +00001154
Dmitry V. Levinfa8c2862016-01-22 14:37:14 +00001155 if (daemonized_tracer) {
1156 /*
1157 * Make parent go away.
1158 * Also makes grandparent's wait() unblock.
1159 */
1160 kill(parent_pid, SIGKILL);
1161 strace_child = 0;
1162 }
Roland McGrath02203312007-06-11 22:06:31 +00001163}
1164
Denys Vlasenkof909c8d2013-02-19 16:30:31 +01001165/* Stack-o-phobic exec helper, in the hope to work around
1166 * NOMMU + "daemonized tracer" difficulty.
1167 */
1168struct exec_params {
1169 int fd_to_close;
1170 uid_t run_euid;
1171 gid_t run_egid;
1172 char **argv;
1173 char *pathname;
Elliott Hughesdc75b012017-07-05 13:54:44 -07001174 struct sigaction child_sa;
Denys Vlasenkof909c8d2013-02-19 16:30:31 +01001175};
1176static struct exec_params params_for_tracee;
Dmitry V. Levin5647cf82015-03-29 22:45:03 +00001177
1178static void ATTRIBUTE_NOINLINE ATTRIBUTE_NORETURN
Denys Vlasenkof909c8d2013-02-19 16:30:31 +01001179exec_or_die(void)
1180{
1181 struct exec_params *params = &params_for_tracee;
1182
1183 if (params->fd_to_close >= 0)
1184 close(params->fd_to_close);
1185 if (!daemonized_tracer && !use_seize) {
1186 if (ptrace(PTRACE_TRACEME, 0L, 0L, 0L) < 0) {
1187 perror_msg_and_die("ptrace(PTRACE_TRACEME, ...)");
1188 }
1189 }
1190
1191 if (username != NULL) {
1192 /*
1193 * It is important to set groups before we
1194 * lose privileges on setuid.
1195 */
1196 if (initgroups(username, run_gid) < 0) {
1197 perror_msg_and_die("initgroups");
1198 }
1199 if (setregid(run_gid, params->run_egid) < 0) {
1200 perror_msg_and_die("setregid");
1201 }
1202 if (setreuid(run_uid, params->run_euid) < 0) {
1203 perror_msg_and_die("setreuid");
1204 }
Elliott Hughesdc75b012017-07-05 13:54:44 -07001205 } else if (geteuid() != 0)
Denys Vlasenkof909c8d2013-02-19 16:30:31 +01001206 if (setreuid(run_uid, run_uid) < 0) {
1207 perror_msg_and_die("setreuid");
1208 }
1209
1210 if (!daemonized_tracer) {
1211 /*
1212 * Induce a ptrace stop. Tracer (our parent)
1213 * will resume us with PTRACE_SYSCALL and display
1214 * the immediately following execve syscall.
1215 * Can't do this on NOMMU systems, we are after
1216 * vfork: parent is blocked, stopping would deadlock.
1217 */
1218 if (!NOMMU_SYSTEM)
1219 kill(getpid(), SIGSTOP);
1220 } else {
1221 alarm(3);
1222 /* we depend on SIGCHLD set to SIG_DFL by init code */
1223 /* if it happens to be SIG_IGN'ed, wait won't block */
1224 wait(NULL);
1225 alarm(0);
1226 }
1227
Elliott Hughesdc75b012017-07-05 13:54:44 -07001228 if (params_for_tracee.child_sa.sa_handler != SIG_DFL)
1229 sigaction(SIGCHLD, &params_for_tracee.child_sa, NULL);
1230
Denys Vlasenkof909c8d2013-02-19 16:30:31 +01001231 execv(params->pathname, params->argv);
1232 perror_msg_and_die("exec");
1233}
1234
Dmitry V. Levin559ec3e2016-08-13 22:04:59 +00001235/*
1236 * Open a dummy descriptor for use as a placeholder.
1237 * The descriptor is O_RDONLY with FD_CLOEXEC flag set.
1238 * A read attempt from such descriptor ends with EOF,
1239 * a write attempt is rejected with EBADF.
1240 */
Dmitry V. Levin6aedd422016-02-08 17:46:58 +00001241static int
1242open_dummy_desc(void)
Denys Vlasenko0736d4e2016-02-08 18:08:46 +01001243{
Dmitry V. Levin6aedd422016-02-08 17:46:58 +00001244 int fds[2];
1245
1246 if (pipe(fds))
Elliott Hughesb7556142018-02-20 17:03:16 -08001247 perror_func_msg_and_die("pipe");
Dmitry V. Levin6aedd422016-02-08 17:46:58 +00001248 close(fds[1]);
Dmitry V. Levin559ec3e2016-08-13 22:04:59 +00001249 set_cloexec_flag(fds[0]);
Dmitry V. Levin6aedd422016-02-08 17:46:58 +00001250 return fds[0];
Denys Vlasenko0736d4e2016-02-08 18:08:46 +01001251}
1252
Dmitry V. Levin559ec3e2016-08-13 22:04:59 +00001253/* placeholder fds status for stdin and stdout */
1254static bool fd_is_placeholder[2];
1255
1256/*
1257 * Ensure that all standard file descriptors are open by opening placeholder
1258 * file descriptors for those standard file descriptors that are not open.
1259 *
1260 * The information which descriptors have been made open is saved
1261 * in fd_is_placeholder for later use.
1262 */
1263static void
1264ensure_standard_fds_opened(void)
1265{
1266 int fd;
1267
1268 while ((fd = open_dummy_desc()) <= 2) {
1269 if (fd == 2)
1270 break;
1271 fd_is_placeholder[fd] = true;
1272 }
1273
1274 if (fd > 2)
1275 close(fd);
1276}
1277
1278/*
1279 * Redirect stdin and stdout unless they have been opened earlier
1280 * by ensure_standard_fds_opened as placeholders.
1281 */
1282static void
1283redirect_standard_fds(void)
1284{
1285 int i;
1286
1287 /*
1288 * It might be a good idea to redirect stderr as well,
1289 * but we sometimes need to print error messages.
1290 */
1291 for (i = 0; i <= 1; ++i) {
1292 if (!fd_is_placeholder[i]) {
1293 close(i);
1294 open_dummy_desc();
1295 }
1296 }
1297}
1298
Roland McGrath02203312007-06-11 22:06:31 +00001299static void
Denys Vlasenko12014262011-05-30 14:00:14 +02001300startup_child(char **argv)
Roland McGrath02203312007-06-11 22:06:31 +00001301{
Dmitry V. Levinc8938e02013-03-20 21:40:15 +00001302 struct_stat statbuf;
Roland McGrath02203312007-06-11 22:06:31 +00001303 const char *filename;
Dmitry V. Levin1dbd39e2015-02-28 14:50:09 +00001304 size_t filename_len;
Dmitry V. Levin025b3582014-11-21 22:28:34 +00001305 char pathname[PATH_MAX];
Denys Vlasenkof909c8d2013-02-19 16:30:31 +01001306 int pid;
Roland McGrath02203312007-06-11 22:06:31 +00001307 struct tcb *tcp;
1308
1309 filename = argv[0];
Dmitry V. Levin1dbd39e2015-02-28 14:50:09 +00001310 filename_len = strlen(filename);
1311
1312 if (filename_len > sizeof(pathname) - 1) {
1313 errno = ENAMETOOLONG;
1314 perror_msg_and_die("exec");
1315 }
Roland McGrath02203312007-06-11 22:06:31 +00001316 if (strchr(filename, '/')) {
Roland McGrath02203312007-06-11 22:06:31 +00001317 strcpy(pathname, filename);
1318 }
1319#ifdef USE_DEBUGGING_EXEC
1320 /*
1321 * Debuggers customarily check the current directory
1322 * first regardless of the path but doing that gives
1323 * security geeks a panic attack.
1324 */
Dmitry V. Levinc8938e02013-03-20 21:40:15 +00001325 else if (stat_file(filename, &statbuf) == 0)
Roland McGrath02203312007-06-11 22:06:31 +00001326 strcpy(pathname, filename);
1327#endif /* USE_DEBUGGING_EXEC */
1328 else {
Dmitry V. Levin30145dd2010-09-06 22:08:24 +00001329 const char *path;
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +00001330 size_t m, n, len;
Roland McGrath02203312007-06-11 22:06:31 +00001331
1332 for (path = getenv("PATH"); path && *path; path += m) {
Denys Vlasenko4f3df072012-01-29 22:38:35 +01001333 const char *colon = strchr(path, ':');
1334 if (colon) {
1335 n = colon - path;
Roland McGrath02203312007-06-11 22:06:31 +00001336 m = n + 1;
Elliott Hughesdc75b012017-07-05 13:54:44 -07001337 } else
Roland McGrath02203312007-06-11 22:06:31 +00001338 m = n = strlen(path);
1339 if (n == 0) {
Dmitry V. Levin025b3582014-11-21 22:28:34 +00001340 if (!getcwd(pathname, PATH_MAX))
Roland McGrath02203312007-06-11 22:06:31 +00001341 continue;
1342 len = strlen(pathname);
Elliott Hughesdc75b012017-07-05 13:54:44 -07001343 } else if (n > sizeof(pathname) - 1)
Roland McGrath02203312007-06-11 22:06:31 +00001344 continue;
1345 else {
1346 strncpy(pathname, path, n);
1347 len = n;
1348 }
1349 if (len && pathname[len - 1] != '/')
1350 pathname[len++] = '/';
Dmitry V. Levin1dbd39e2015-02-28 14:50:09 +00001351 if (filename_len + len > sizeof(pathname) - 1)
1352 continue;
Roland McGrath02203312007-06-11 22:06:31 +00001353 strcpy(pathname + len, filename);
Dmitry V. Levinc8938e02013-03-20 21:40:15 +00001354 if (stat_file(pathname, &statbuf) == 0 &&
Roland McGrath02203312007-06-11 22:06:31 +00001355 /* Accept only regular files
1356 with some execute bits set.
1357 XXX not perfect, might still fail */
1358 S_ISREG(statbuf.st_mode) &&
1359 (statbuf.st_mode & 0111))
1360 break;
1361 }
Dmitry V. Levin1dbd39e2015-02-28 14:50:09 +00001362 if (!path || !*path)
1363 pathname[0] = '\0';
Roland McGrath02203312007-06-11 22:06:31 +00001364 }
Dmitry V. Levinc8938e02013-03-20 21:40:15 +00001365 if (stat_file(pathname, &statbuf) < 0) {
Denys Vlasenkocb2ad002011-06-23 13:05:29 +02001366 perror_msg_and_die("Can't stat '%s'", filename);
Roland McGrath02203312007-06-11 22:06:31 +00001367 }
Denys Vlasenkof909c8d2013-02-19 16:30:31 +01001368
1369 params_for_tracee.fd_to_close = (shared_log != stderr) ? fileno(shared_log) : -1;
1370 params_for_tracee.run_euid = (statbuf.st_mode & S_ISUID) ? statbuf.st_uid : run_uid;
1371 params_for_tracee.run_egid = (statbuf.st_mode & S_ISGID) ? statbuf.st_gid : run_gid;
1372 params_for_tracee.argv = argv;
1373 /*
1374 * On NOMMU, can be safely freed only after execve in tracee.
1375 * It's hard to know when that happens, so we just leak it.
1376 */
Dmitry V. Levin3e9d71f2015-05-25 20:41:02 +00001377 params_for_tracee.pathname = NOMMU_SYSTEM ? xstrdup(pathname) : pathname;
Denys Vlasenkof909c8d2013-02-19 16:30:31 +01001378
Dmitry V. Levin882478a2013-05-13 18:43:28 +00001379#if defined HAVE_PRCTL && defined PR_SET_PTRACER && defined PR_SET_PTRACER_ANY
1380 if (daemonized_tracer)
1381 prctl(PR_SET_PTRACER, PR_SET_PTRACER_ANY);
1382#endif
1383
Denys Vlasenkoe8681c92013-06-26 14:27:11 +02001384 pid = fork();
Elliott Hughesb7556142018-02-20 17:03:16 -08001385 if (pid < 0)
1386 perror_func_msg_and_die("fork");
1387
Denys Vlasenkof909c8d2013-02-19 16:30:31 +01001388 if ((pid != 0 && daemonized_tracer)
1389 || (pid == 0 && !daemonized_tracer)
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +00001390 ) {
Denys Vlasenkof909c8d2013-02-19 16:30:31 +01001391 /* We are to become the tracee. Two cases:
1392 * -D: we are parent
1393 * not -D: we are child
1394 */
1395 exec_or_die();
Roland McGrath02203312007-06-11 22:06:31 +00001396 }
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +00001397
Denys Vlasenko2e968c02011-09-01 10:23:09 +02001398 /* We are the tracer */
Denys Vlasenko75422762011-05-27 14:36:01 +02001399
Denys Vlasenko2e968c02011-09-01 10:23:09 +02001400 if (!daemonized_tracer) {
Denys Vlasenkoe8681c92013-06-26 14:27:11 +02001401 strace_child = pid;
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001402 if (!use_seize) {
1403 /* child did PTRACE_TRACEME, nothing to do in parent */
1404 } else {
Denys Vlasenko5c9d8f42013-02-19 15:30:12 +01001405 if (!NOMMU_SYSTEM) {
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001406 /* Wait until child stopped itself */
1407 int status;
1408 while (waitpid(pid, &status, WSTOPPED) < 0) {
1409 if (errno == EINTR)
1410 continue;
1411 perror_msg_and_die("waitpid");
1412 }
1413 if (!WIFSTOPPED(status) || WSTOPSIG(status) != SIGSTOP) {
Denys Vlasenko75fe85c2012-03-09 15:15:24 +01001414 kill_save_errno(pid, SIGKILL);
Elliott Hughesd35df492017-02-15 15:19:05 -08001415 perror_msg_and_die("Unexpected wait status %#x",
1416 status);
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001417 }
1418 }
Denys Vlasenko5c9d8f42013-02-19 15:30:12 +01001419 /* Else: NOMMU case, we have no way to sync.
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001420 * Just attach to it as soon as possible.
1421 * This means that we may miss a few first syscalls...
1422 */
1423
1424 if (ptrace_attach_or_seize(pid)) {
Denys Vlasenko75fe85c2012-03-09 15:15:24 +01001425 kill_save_errno(pid, SIGKILL);
Dmitry V. Levinc9251512016-07-25 17:12:42 +00001426 perror_msg_and_die("attach: ptrace(%s, %d)",
1427 ptrace_attach_cmd, pid);
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001428 }
Denys Vlasenko5c9d8f42013-02-19 15:30:12 +01001429 if (!NOMMU_SYSTEM)
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001430 kill(pid, SIGCONT);
1431 }
Denys Vlasenko2e968c02011-09-01 10:23:09 +02001432 tcp = alloctcb(pid);
Elliott Hughes03a418e2018-06-15 13:11:40 -07001433 after_successful_attach(tcp, TCB_SKIP_DETACH_ON_FIRST_EXEC
1434 | (NOMMU_SYSTEM ? 0
1435 : (TCB_HIDE_LOG
1436 | post_attach_sigstop)));
Elliott Hughesdc75b012017-07-05 13:54:44 -07001437 } else {
Dmitry V. Levinfa8c2862016-01-22 14:37:14 +00001438 /* With -D, we are *child* here, the tracee is our parent. */
1439 strace_child = strace_tracer_pid;
Denys Vlasenko2e968c02011-09-01 10:23:09 +02001440 strace_tracer_pid = getpid();
Elliott Hughesd35df492017-02-15 15:19:05 -08001441 tcp = alloctcb(strace_child);
1442 tcp->flags |= TCB_SKIP_DETACH_ON_FIRST_EXEC | TCB_HIDE_LOG;
Elliott Hughes03a418e2018-06-15 13:11:40 -07001443 /*
1444 * Attaching will be done later, by startup_attach.
1445 * Note: we don't do after_successful_attach() here either!
1446 */
Denys Vlasenko5c9d8f42013-02-19 15:30:12 +01001447
Denys Vlasenkof909c8d2013-02-19 16:30:31 +01001448 /* NOMMU BUG! -D mode is active, we (child) return,
1449 * and we will scribble over parent's stack!
1450 * When parent later unpauses, it segfaults.
1451 *
1452 * We work around it
1453 * (1) by declaring exec_or_die() NORETURN,
1454 * hopefully compiler will just jump to it
1455 * instead of call (won't push anything to stack),
1456 * (2) by trying very hard in exec_or_die()
1457 * to not use any stack,
Dmitry V. Levin025b3582014-11-21 22:28:34 +00001458 * (3) having a really big (PATH_MAX) stack object
Denys Vlasenkof909c8d2013-02-19 16:30:31 +01001459 * in this function, which creates a "buffer" between
1460 * child's and parent's stack pointers.
1461 * This may save us if (1) and (2) failed
1462 * and compiler decided to use stack in exec_or_die() anyway
1463 * (happens on i386 because of stack parameter passing).
Denys Vlasenko05f32512013-02-26 12:00:34 +01001464 *
1465 * A cleaner solution is to use makecontext + setcontext
1466 * to create a genuine separate stack and execute on it.
Denys Vlasenkof909c8d2013-02-19 16:30:31 +01001467 */
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +00001468 }
Denys Vlasenkoc9f85b32016-02-08 14:52:32 +01001469 /*
1470 * A case where straced process is part of a pipe:
1471 * { sleep 1; yes | head -n99999; } | strace -o/dev/null sh -c 'exec <&-; sleep 9'
1472 * If strace won't close its fd#0, closing it in tracee is not enough:
1473 * the pipe is still open, it has a reader. Thus, "head" will not get its
1474 * SIGPIPE at once, on the first write.
1475 *
Dmitry V. Levin559ec3e2016-08-13 22:04:59 +00001476 * Preventing it by redirecting strace's stdin/out.
Denys Vlasenkoc9f85b32016-02-08 14:52:32 +01001477 * (Don't leave fds 0 and 1 closed, this is bad practice: future opens
1478 * will reuse them, unexpectedly making a newly opened object "stdin").
1479 */
Dmitry V. Levin559ec3e2016-08-13 22:04:59 +00001480 redirect_standard_fds();
Roland McGrath02203312007-06-11 22:06:31 +00001481}
1482
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001483static void
1484test_ptrace_seize(void)
1485{
1486 int pid;
1487
Denys Vlasenko05f32512013-02-26 12:00:34 +01001488 /* Need fork for test. NOMMU has no forks */
Denys Vlasenko5c9d8f42013-02-19 15:30:12 +01001489 if (NOMMU_SYSTEM) {
1490 post_attach_sigstop = 0; /* this sets use_seize to 1 */
1491 return;
1492 }
1493
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001494 pid = fork();
1495 if (pid < 0)
Elliott Hughesb7556142018-02-20 17:03:16 -08001496 perror_func_msg_and_die("fork");
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001497
1498 if (pid == 0) {
1499 pause();
1500 _exit(0);
1501 }
1502
1503 /* PTRACE_SEIZE, unlike ATTACH, doesn't force tracee to trap. After
1504 * attaching tracee continues to run unless a trap condition occurs.
1505 * PTRACE_SEIZE doesn't affect signal or group stop state.
1506 */
Denys Vlasenko26bc0602012-07-10 16:36:32 +02001507 if (ptrace(PTRACE_SEIZE, pid, 0, 0) == 0) {
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001508 post_attach_sigstop = 0; /* this sets use_seize to 1 */
Elliott Hughesb7556142018-02-20 17:03:16 -08001509 } else {
1510 debug_msg("PTRACE_SEIZE doesn't work");
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001511 }
1512
1513 kill(pid, SIGKILL);
1514
1515 while (1) {
1516 int status, tracee_pid;
1517
1518 errno = 0;
1519 tracee_pid = waitpid(pid, &status, 0);
1520 if (tracee_pid <= 0) {
1521 if (errno == EINTR)
1522 continue;
Elliott Hughesb7556142018-02-20 17:03:16 -08001523 perror_func_msg_and_die("unexpected wait result %d",
1524 tracee_pid);
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001525 }
Elliott Hughesb7556142018-02-20 17:03:16 -08001526 if (WIFSIGNALED(status))
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001527 return;
Elliott Hughesb7556142018-02-20 17:03:16 -08001528
1529 error_func_msg_and_die("unexpected wait status %#x", status);
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001530 }
1531}
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001532
Denys Vlasenko6e0bfd12012-03-15 14:36:28 +01001533static unsigned
Denys Vlasenkof7db5dd2012-01-28 01:16:02 +01001534get_os_release(void)
1535{
Denys Vlasenko6e0bfd12012-03-15 14:36:28 +01001536 unsigned rel;
1537 const char *p;
Denys Vlasenkof7db5dd2012-01-28 01:16:02 +01001538 struct utsname u;
1539 if (uname(&u) < 0)
1540 perror_msg_and_die("uname");
Denys Vlasenko6e0bfd12012-03-15 14:36:28 +01001541 /* u.release has this form: "3.2.9[-some-garbage]" */
1542 rel = 0;
1543 p = u.release;
1544 for (;;) {
1545 if (!(*p >= '0' && *p <= '9'))
1546 error_msg_and_die("Bad OS release string: '%s'", u.release);
1547 /* Note: this open-codes KERNEL_VERSION(): */
1548 rel = (rel << 8) | atoi(p);
Elliott Hughesdc75b012017-07-05 13:54:44 -07001549 if (rel >= KERNEL_VERSION(1, 0, 0))
Denys Vlasenko6e0bfd12012-03-15 14:36:28 +01001550 break;
1551 while (*p >= '0' && *p <= '9')
1552 p++;
Dmitry V. Levin0dbc80d2012-05-14 23:42:10 +00001553 if (*p != '.') {
Elliott Hughesdc75b012017-07-05 13:54:44 -07001554 if (rel >= KERNEL_VERSION(0, 1, 0)) {
Dmitry V. Levin0dbc80d2012-05-14 23:42:10 +00001555 /* "X.Y-something" means "X.Y.0" */
1556 rel <<= 8;
1557 break;
1558 }
Denys Vlasenko6e0bfd12012-03-15 14:36:28 +01001559 error_msg_and_die("Bad OS release string: '%s'", u.release);
Dmitry V. Levin0dbc80d2012-05-14 23:42:10 +00001560 }
Denys Vlasenko6e0bfd12012-03-15 14:36:28 +01001561 p++;
1562 }
1563 return rel;
Denys Vlasenkof7db5dd2012-01-28 01:16:02 +01001564}
1565
Elliott Hughesdc75b012017-07-05 13:54:44 -07001566static void
Elliott Hughesb7556142018-02-20 17:03:16 -08001567set_sighandler(int signo, void (*sighandler)(int), struct sigaction *oldact)
Elliott Hughesdc75b012017-07-05 13:54:44 -07001568{
Elliott Hughesdc75b012017-07-05 13:54:44 -07001569 const struct sigaction sa = { .sa_handler = sighandler };
1570 sigaction(signo, &sa, oldact);
1571}
1572
Denys Vlasenkoecc8b972012-03-12 23:05:25 +01001573/*
1574 * Initialization part of main() was eating much stack (~0.5k),
1575 * which was unused after init.
1576 * We can reuse it if we move init code into a separate function.
1577 *
1578 * Don't want main() to inline us and defeat the reason
1579 * we have a separate function.
1580 */
Dmitry V. Levin5647cf82015-03-29 22:45:03 +00001581static void ATTRIBUTE_NOINLINE
Denys Vlasenkoecc8b972012-03-12 23:05:25 +01001582init(int argc, char *argv[])
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001583{
Dmitry V. Levinccee1692012-03-25 21:49:48 +00001584 int c, i;
Dmitry V. Levin06350db2008-07-25 15:42:34 +00001585 int optF = 0;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001586
Elliott Hughesdc75b012017-07-05 13:54:44 -07001587 if (!program_invocation_name || !*program_invocation_name) {
1588 static char name[] = "strace";
1589 program_invocation_name =
Elliott Hughesb7556142018-02-20 17:03:16 -08001590 (argc > 0 && argv[0] && *argv[0]) ? argv[0] : name;
Elliott Hughesdc75b012017-07-05 13:54:44 -07001591 }
Denys Vlasenkoa5090542012-03-15 17:27:49 +01001592
Denys Vlasenko75422762011-05-27 14:36:01 +02001593 strace_tracer_pid = getpid();
1594
Denys Vlasenko6e0bfd12012-03-15 14:36:28 +01001595 os_release = get_os_release();
Denys Vlasenkof7db5dd2012-01-28 01:16:02 +01001596
Denys Vlasenko6764f8f2012-03-22 09:56:20 +01001597 shared_log = stderr;
Roland McGrath138c6a32006-01-12 09:50:49 +00001598 set_sortby(DEFAULT_SORTBY);
1599 set_personality(DEFAULT_PERSONALITY);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001600 qualify("trace=all");
1601 qualify("abbrev=all");
1602 qualify("verbose=all");
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01001603#if DEFAULT_QUAL_FLAGS != (QUAL_TRACE | QUAL_ABBREV | QUAL_VERBOSE)
1604# error Bug in DEFAULT_QUAL_FLAGS
1605#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001606 qualify("signal=all");
Elliott Hughesb7556142018-02-20 17:03:16 -08001607 while ((c = getopt(argc, argv, "+"
Elliott Hughes03a418e2018-06-15 13:11:40 -07001608#ifdef ENABLE_STACKTRACE
Elliott Hughesb7556142018-02-20 17:03:16 -08001609 "k"
Luca Clementi327064b2013-07-23 00:11:35 -07001610#endif
Elliott Hughes03a418e2018-06-15 13:11:40 -07001611 "a:Ab:cCdDe:E:fFhiI:o:O:p:P:qrs:S:tTu:vVwxX:yz")) != EOF) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001612 switch (c) {
Elliott Hughesb7556142018-02-20 17:03:16 -08001613 case 'a':
1614 acolumn = string_to_uint(optarg);
1615 if (acolumn < 0)
1616 error_opt_arg(c, optarg);
1617 break;
Elliott Hughes28e98bc2018-06-14 16:59:04 -07001618 case 'A':
1619 open_append = true;
1620 break;
Denys Vlasenko61e7aad2012-03-15 13:44:17 +01001621 case 'b':
Denys Vlasenko22efaf02013-02-27 12:15:19 +01001622 if (strcmp(optarg, "execve") != 0)
1623 error_msg_and_die("Syscall '%s' for -b isn't supported",
1624 optarg);
Denys Vlasenko61e7aad2012-03-15 13:44:17 +01001625 detach_on_execve = 1;
1626 break;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001627 case 'c':
Dmitry V. Levine3a7ef52010-03-28 19:24:54 +00001628 if (cflag == CFLAG_BOTH) {
Elvira Khabirovaa2fdfe92015-11-26 17:18:00 +03001629 error_msg_and_help("-c and -C are mutually exclusive");
Dmitry V. Levine3a7ef52010-03-28 19:24:54 +00001630 }
1631 cflag = CFLAG_ONLY_STATS;
1632 break;
1633 case 'C':
1634 if (cflag == CFLAG_ONLY_STATS) {
Elvira Khabirovaa2fdfe92015-11-26 17:18:00 +03001635 error_msg_and_help("-c and -C are mutually exclusive");
Dmitry V. Levine3a7ef52010-03-28 19:24:54 +00001636 }
1637 cflag = CFLAG_BOTH;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001638 break;
1639 case 'd':
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001640 debug_flag = 1;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001641 break;
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +00001642 case 'D':
1643 daemonized_tracer = 1;
1644 break;
Elliott Hughesb7556142018-02-20 17:03:16 -08001645 case 'e':
1646 qualify(optarg);
1647 break;
1648 case 'E':
1649 if (putenv(optarg) < 0)
1650 perror_msg_and_die("putenv");
Dmitry V. Levin06350db2008-07-25 15:42:34 +00001651 break;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001652 case 'f':
1653 followfork++;
1654 break;
Elliott Hughesb7556142018-02-20 17:03:16 -08001655 case 'F':
1656 optF = 1;
1657 break;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001658 case 'h':
Elvira Khabirovaa2fdfe92015-11-26 17:18:00 +03001659 usage();
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001660 break;
1661 case 'i':
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001662 iflag = 1;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001663 break;
Elliott Hughesb7556142018-02-20 17:03:16 -08001664 case 'I':
1665 opt_intr = string_to_uint_upto(optarg, NUM_INTR_OPTS - 1);
1666 if (opt_intr <= 0)
Dmitry V. Levinccee1692012-03-25 21:49:48 +00001667 error_opt_arg(c, optarg);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001668 break;
Elliott Hughes03a418e2018-06-15 13:11:40 -07001669#ifdef ENABLE_STACKTRACE
Elliott Hughesb7556142018-02-20 17:03:16 -08001670 case 'k':
1671 stack_trace_enabled = true;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001672 break;
Elliott Hughesb7556142018-02-20 17:03:16 -08001673#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001674 case 'o':
Elliott Hughes77c3ff82017-09-08 17:11:00 -07001675 outfname = optarg;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001676 break;
1677 case 'O':
Dmitry V. Levinccee1692012-03-25 21:49:48 +00001678 i = string_to_uint(optarg);
1679 if (i < 0)
1680 error_opt_arg(c, optarg);
1681 set_overhead(i);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001682 break;
1683 case 'p':
Denys Vlasenkoe8172b72012-03-09 13:01:04 +01001684 process_opt_p_list(optarg);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001685 break;
Grant Edwards8a082772011-04-07 20:25:40 +00001686 case 'P':
Denys Vlasenko7239dbc2013-03-05 15:46:34 +01001687 pathtrace_select(optarg);
Grant Edwards8a082772011-04-07 20:25:40 +00001688 break;
Elliott Hughesb7556142018-02-20 17:03:16 -08001689 case 'q':
1690 qflag++;
1691 break;
1692 case 'r':
1693 rflag = 1;
1694 break;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001695 case 's':
Dmitry V. Levinccee1692012-03-25 21:49:48 +00001696 i = string_to_uint(optarg);
Elliott Hughesdc75b012017-07-05 13:54:44 -07001697 if (i < 0 || (unsigned int) i > -1U / 4)
Dmitry V. Levinccee1692012-03-25 21:49:48 +00001698 error_opt_arg(c, optarg);
1699 max_strlen = i;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001700 break;
1701 case 'S':
1702 set_sortby(optarg);
1703 break;
Elliott Hughesb7556142018-02-20 17:03:16 -08001704 case 't':
1705 tflag++;
1706 break;
1707 case 'T':
1708 Tflag = 1;
1709 break;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001710 case 'u':
Elliott Hughes77c3ff82017-09-08 17:11:00 -07001711 username = optarg;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001712 break;
Elliott Hughesb7556142018-02-20 17:03:16 -08001713 case 'v':
1714 qualify("abbrev=none");
Luca Clementi327064b2013-07-23 00:11:35 -07001715 break;
Elliott Hughesb7556142018-02-20 17:03:16 -08001716 case 'V':
1717 print_version();
1718 exit(0);
Roland McGrathde6e5332003-01-24 04:31:23 +00001719 break;
Elliott Hughesb7556142018-02-20 17:03:16 -08001720 case 'w':
1721 count_wallclock = 1;
1722 break;
1723 case 'x':
1724 xflag++;
1725 break;
Elliott Hughes03a418e2018-06-15 13:11:40 -07001726 case 'X':
1727 if (!strcmp(optarg, "raw"))
1728 xlat_verbosity = XLAT_STYLE_RAW;
1729 else if (!strcmp(optarg, "abbrev"))
1730 xlat_verbosity = XLAT_STYLE_ABBREV;
1731 else if (!strcmp(optarg, "verbose"))
1732 xlat_verbosity = XLAT_STYLE_VERBOSE;
1733 else
1734 error_opt_arg(c, optarg);
1735 break;
Elliott Hughesb7556142018-02-20 17:03:16 -08001736 case 'y':
1737 show_fd_path++;
1738 break;
1739 case 'z':
1740 not_failing_only = 1;
Denys Vlasenkob51581e2012-01-29 16:53:03 +01001741 break;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001742 default:
Elvira Khabirovaa2fdfe92015-11-26 17:18:00 +03001743 error_msg_and_help(NULL);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001744 break;
1745 }
1746 }
Elliott Hughesdc75b012017-07-05 13:54:44 -07001747
Denys Vlasenko837399a2012-01-24 11:37:03 +01001748 argv += optind;
Elliott Hughesdc75b012017-07-05 13:54:44 -07001749 argc -= optind;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001750
Elliott Hughesb7556142018-02-20 17:03:16 -08001751 if (argc < 0 || (!nprocs && !argc)) {
Elvira Khabirovaa2fdfe92015-11-26 17:18:00 +03001752 error_msg_and_help("must have PROG [ARGS] or -p PID");
1753 }
Roland McGrathce0d1542003-11-11 21:24:23 +00001754
Elliott Hughesb7556142018-02-20 17:03:16 -08001755 if (!argc && daemonized_tracer) {
Dmitry V. Levinfa8c2862016-01-22 14:37:14 +00001756 error_msg_and_help("PROG [ARGS] must be specified with -D");
Wang Chaod322a4b2010-08-05 14:30:11 +08001757 }
1758
Elliott Hughesb7556142018-02-20 17:03:16 -08001759 if (optF) {
1760 if (followfork) {
1761 error_msg("deprecated option -F ignored");
1762 } else {
1763 error_msg("option -F is deprecated, "
1764 "please use -f instead");
1765 followfork = optF;
1766 }
1767 }
Dmitry V. Levin06350db2008-07-25 15:42:34 +00001768
Denys Vlasenko3db3b262012-03-16 15:15:14 +01001769 if (followfork >= 2 && cflag) {
Elvira Khabirovaa2fdfe92015-11-26 17:18:00 +03001770 error_msg_and_help("(-c or -C) and -ff are mutually exclusive");
Roland McGrathcb9def62006-04-25 07:48:03 +00001771 }
1772
Mark Hillse53bf232014-05-28 17:52:40 +01001773 if (count_wallclock && !cflag) {
Elvira Khabirovaa2fdfe92015-11-26 17:18:00 +03001774 error_msg_and_help("-w must be given with (-c or -C)");
Mark Hillse53bf232014-05-28 17:52:40 +01001775 }
1776
Dmitry V. Levin2727aae2014-06-03 13:20:05 +00001777 if (cflag == CFLAG_ONLY_STATS) {
1778 if (iflag)
1779 error_msg("-%c has no effect with -c", 'i');
Elliott Hughes03a418e2018-06-15 13:11:40 -07001780#ifdef ENABLE_STACKTRACE
Dmitry V. Levin2727aae2014-06-03 13:20:05 +00001781 if (stack_trace_enabled)
1782 error_msg("-%c has no effect with -c", 'k');
1783#endif
1784 if (rflag)
1785 error_msg("-%c has no effect with -c", 'r');
1786 if (tflag)
1787 error_msg("-%c has no effect with -c", 't');
1788 if (Tflag)
1789 error_msg("-%c has no effect with -c", 'T');
1790 if (show_fd_path)
1791 error_msg("-%c has no effect with -c", 'y');
1792 }
1793
Elliott Hughesdc75b012017-07-05 13:54:44 -07001794 acolumn_spaces = xmalloc(acolumn + 1);
1795 memset(acolumn_spaces, ' ', acolumn);
1796 acolumn_spaces[acolumn] = '\0';
1797
Elliott Hughesb7556142018-02-20 17:03:16 -08001798 set_sighandler(SIGCHLD, SIG_DFL, &params_for_tracee.child_sa);
Elliott Hughesdc75b012017-07-05 13:54:44 -07001799
Elliott Hughes03a418e2018-06-15 13:11:40 -07001800#ifdef ENABLE_STACKTRACE
1801 if (stack_trace_enabled)
Dmitry V. Levin2727aae2014-06-03 13:20:05 +00001802 unwind_init();
1803#endif
1804
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001805 /* See if they want to run as another user. */
1806 if (username != NULL) {
1807 struct passwd *pent;
1808
1809 if (getuid() != 0 || geteuid() != 0) {
Denys Vlasenkocb2ad002011-06-23 13:05:29 +02001810 error_msg_and_die("You must be root to use the -u option");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001811 }
Denys Vlasenko5d645812011-08-20 12:48:18 +02001812 pent = getpwnam(username);
1813 if (pent == NULL) {
Denys Vlasenkocb2ad002011-06-23 13:05:29 +02001814 error_msg_and_die("Cannot find user '%s'", username);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001815 }
1816 run_uid = pent->pw_uid;
1817 run_gid = pent->pw_gid;
Elliott Hughesdc75b012017-07-05 13:54:44 -07001818 } else {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001819 run_uid = getuid();
1820 run_gid = getgid();
1821 }
1822
Dmitry V. Levin04f8b482011-08-16 18:57:29 +00001823 if (followfork)
Dmitry V. Levin23ce9e42015-02-08 13:05:53 +00001824 ptrace_setoptions |= PTRACE_O_TRACECLONE |
1825 PTRACE_O_TRACEFORK |
1826 PTRACE_O_TRACEVFORK;
Elliott Hughesb7556142018-02-20 17:03:16 -08001827 debug_msg("ptrace_setoptions = %#x", ptrace_setoptions);
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001828 test_ptrace_seize();
Dmitry V. Levin8044bc12010-12-07 12:50:49 +00001829
Dmitry V. Levin559ec3e2016-08-13 22:04:59 +00001830 /*
1831 * Is something weird with our stdin and/or stdout -
1832 * for example, may they be not open? In this case,
1833 * ensure that none of the future opens uses them.
1834 *
1835 * This was seen in the wild when /proc/sys/kernel/core_pattern
1836 * was set to "|/bin/strace -o/tmp/LOG PROG":
1837 * kernel runs coredump helper with fd#0 open but fd#1 closed (!),
1838 * therefore LOG gets opened to fd#1, and fd#1 is closed by
1839 * "don't hold up stdin/out open" code soon after.
1840 */
1841 ensure_standard_fds_opened();
Denys Vlasenko0736d4e2016-02-08 18:08:46 +01001842
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001843 /* Check if they want to redirect the output. */
1844 if (outfname) {
Roland McGrath37b9a662003-11-07 02:26:54 +00001845 /* See if they want to pipe the output. */
1846 if (outfname[0] == '|' || outfname[0] == '!') {
1847 /*
1848 * We can't do the <outfname>.PID funny business
1849 * when using popen, so prohibit it.
1850 */
Denys Vlasenko3db3b262012-03-16 15:15:14 +01001851 if (followfork >= 2)
Elliott Hughesb7556142018-02-20 17:03:16 -08001852 error_msg_and_help("piping the output and -ff "
1853 "are mutually exclusive");
Denys Vlasenko6764f8f2012-03-22 09:56:20 +01001854 shared_log = strace_popen(outfname + 1);
Elliott Hughesb7556142018-02-20 17:03:16 -08001855 } else if (followfork < 2) {
Denys Vlasenko6764f8f2012-03-22 09:56:20 +01001856 shared_log = strace_fopen(outfname);
Elliott Hughesb7556142018-02-20 17:03:16 -08001857 } else if (strlen(outfname) >= PATH_MAX - sizeof(int) * 3) {
1858 errno = ENAMETOOLONG;
1859 perror_msg_and_die("%s", outfname);
1860 }
Denys Vlasenko328bf252012-03-12 23:34:13 +01001861 } else {
1862 /* -ff without -o FILE is the same as single -f */
Denys Vlasenko3db3b262012-03-16 15:15:14 +01001863 if (followfork >= 2)
Denys Vlasenko328bf252012-03-12 23:34:13 +01001864 followfork = 1;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001865 }
1866
Denys Vlasenkocb2ad002011-06-23 13:05:29 +02001867 if (!outfname || outfname[0] == '|' || outfname[0] == '!') {
Elliott Hughesd35df492017-02-15 15:19:05 -08001868 setvbuf(shared_log, NULL, _IOLBF, 0);
Denys Vlasenkocb2ad002011-06-23 13:05:29 +02001869 }
Elliott Hughesdc75b012017-07-05 13:54:44 -07001870
1871 /*
1872 * argv[0] -pPID -oFILE Default interactive setting
1873 * yes * 0 INTR_WHILE_WAIT
1874 * no 1 0 INTR_WHILE_WAIT
1875 * yes * 1 INTR_NEVER
1876 * no 1 1 INTR_WHILE_WAIT
1877 */
1878
Elliott Hughesb7556142018-02-20 17:03:16 -08001879 if (outfname && argc) {
Denys Vlasenkob51581e2012-01-29 16:53:03 +01001880 if (!opt_intr)
1881 opt_intr = INTR_NEVER;
Dmitry V. Levinde4a6802015-06-29 14:37:26 +00001882 if (!qflag)
1883 qflag = 1;
Roland McGrath36931052003-06-03 01:35:20 +00001884 }
Denys Vlasenkob51581e2012-01-29 16:53:03 +01001885 if (!opt_intr)
1886 opt_intr = INTR_WHILE_WAIT;
Wang Chaob13c0de2010-11-12 17:25:19 +08001887
Elliott Hughesdc75b012017-07-05 13:54:44 -07001888 /*
1889 * startup_child() must be called before the signal handlers get
Denys Vlasenkof909c8d2013-02-19 16:30:31 +01001890 * installed below as they are inherited into the spawned process.
1891 * Also we do not need to be protected by them as during interruption
1892 * in the startup_child() mode we kill the spawned process anyway.
1893 */
Elliott Hughesb7556142018-02-20 17:03:16 -08001894 if (argc) {
Denys Vlasenko837399a2012-01-24 11:37:03 +01001895 startup_child(argv);
Denys Vlasenko61e7aad2012-03-15 13:44:17 +01001896 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001897
Elliott Hughesb7556142018-02-20 17:03:16 -08001898 set_sighandler(SIGTTOU, SIG_IGN, NULL);
1899 set_sighandler(SIGTTIN, SIG_IGN, NULL);
Denys Vlasenkob51581e2012-01-29 16:53:03 +01001900 if (opt_intr != INTR_ANYWHERE) {
1901 if (opt_intr == INTR_BLOCK_TSTP_TOO)
Elliott Hughesb7556142018-02-20 17:03:16 -08001902 set_sighandler(SIGTSTP, SIG_IGN, NULL);
Denys Vlasenkob51581e2012-01-29 16:53:03 +01001903 /*
1904 * In interactive mode (if no -o OUTFILE, or -p PID is used),
Elliott Hughes28e98bc2018-06-14 16:59:04 -07001905 * fatal signals are handled asynchronously and acted
1906 * when waiting for process state changes.
1907 * In non-interactive mode these signals are ignored.
Denys Vlasenkob51581e2012-01-29 16:53:03 +01001908 */
Elliott Hughesb7556142018-02-20 17:03:16 -08001909 set_sighandler(SIGHUP, interactive ? interrupt : SIG_IGN, NULL);
1910 set_sighandler(SIGINT, interactive ? interrupt : SIG_IGN, NULL);
1911 set_sighandler(SIGQUIT, interactive ? interrupt : SIG_IGN, NULL);
1912 set_sighandler(SIGPIPE, interactive ? interrupt : SIG_IGN, NULL);
1913 set_sighandler(SIGTERM, interactive ? interrupt : SIG_IGN, NULL);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001914 }
Elliott Hughesdc75b012017-07-05 13:54:44 -07001915
Elliott Hughes28e98bc2018-06-14 16:59:04 -07001916 sigemptyset(&timer_set);
1917 sigaddset(&timer_set, SIGALRM);
1918 sigprocmask(SIG_BLOCK, &timer_set, NULL);
1919 set_sighandler(SIGALRM, timer_sighandler, NULL);
1920
Denys Vlasenkofd883382012-03-09 13:03:41 +01001921 if (nprocs != 0 || daemonized_tracer)
Roland McGrath02203312007-06-11 22:06:31 +00001922 startup_attach();
Roland McGrath02203312007-06-11 22:06:31 +00001923
Denys Vlasenkofd883382012-03-09 13:03:41 +01001924 /* Do we want pids printed in our -o OUTFILE?
1925 * -ff: no (every pid has its own file); or
1926 * -f: yes (there can be more pids in the future); or
1927 * -p PID1,PID2: yes (there are already more than one pid)
1928 */
1929 print_pid_pfx = (outfname && followfork < 2 && (followfork == 1 || nprocs > 1));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001930}
1931
Denys Vlasenkoeebb04d2012-01-27 15:24:48 +01001932static struct tcb *
Elliott Hughes28e98bc2018-06-14 16:59:04 -07001933pid2tcb(const int pid)
Roland McGrath54e931f2010-09-14 18:59:20 -07001934{
Roland McGrath54e931f2010-09-14 18:59:20 -07001935 if (pid <= 0)
1936 return NULL;
1937
Elliott Hughes28e98bc2018-06-14 16:59:04 -07001938#define PID2TCB_CACHE_SIZE 1024U
1939#define PID2TCB_CACHE_MASK (PID2TCB_CACHE_SIZE - 1)
1940
1941 static struct tcb *pid2tcb_cache[PID2TCB_CACHE_SIZE];
1942 struct tcb **const ptcp = &pid2tcb_cache[pid & PID2TCB_CACHE_MASK];
1943 struct tcb *tcp = *ptcp;
1944
1945 if (tcp && tcp->pid == pid)
1946 return tcp;
1947
1948 for (unsigned int i = 0; i < tcbtabsize; ++i) {
1949 tcp = tcbtab[i];
Denys Vlasenkofadbf662013-06-26 14:14:29 +02001950 if (tcp->pid == pid)
Elliott Hughes28e98bc2018-06-14 16:59:04 -07001951 return *ptcp = tcp;
Roland McGrath54e931f2010-09-14 18:59:20 -07001952 }
1953
1954 return NULL;
1955}
1956
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001957static void
Denys Vlasenko12014262011-05-30 14:00:14 +02001958cleanup(void)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001959{
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +00001960 unsigned int i;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001961 struct tcb *tcp;
Denys Vlasenko35218842012-01-29 21:17:56 +01001962 int fatal_sig;
1963
1964 /* 'interrupted' is a volatile object, fetch it only once */
1965 fatal_sig = interrupted;
1966 if (!fatal_sig)
1967 fatal_sig = SIGTERM;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001968
Roland McGrathee9d4352002-12-18 04:16:10 +00001969 for (i = 0; i < tcbtabsize; i++) {
1970 tcp = tcbtab[i];
Denys Vlasenkofadbf662013-06-26 14:14:29 +02001971 if (!tcp->pid)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001972 continue;
Elliott Hughesb7556142018-02-20 17:03:16 -08001973 debug_func_msg("looking at pid %u", tcp->pid);
Denys Vlasenkofadbf662013-06-26 14:14:29 +02001974 if (tcp->pid == strace_child) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001975 kill(tcp->pid, SIGCONT);
Denys Vlasenkoa3559252012-01-29 16:43:51 +01001976 kill(tcp->pid, fatal_sig);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001977 }
Denys Vlasenko7de265d2012-03-13 11:44:31 +01001978 detach(tcp);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001979 }
1980 if (cflag)
Denys Vlasenko6764f8f2012-03-22 09:56:20 +01001981 call_summary(shared_log);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001982}
1983
1984static void
Denys Vlasenko12014262011-05-30 14:00:14 +02001985interrupt(int sig)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001986{
Denys Vlasenkoa3559252012-01-29 16:43:51 +01001987 interrupted = sig;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001988}
1989
Denys Vlasenkod0ffdf42013-07-01 13:02:33 +02001990static void
Dmitry V. Levin0f4ad302015-02-22 02:13:04 +00001991print_debug_info(const int pid, int status)
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00001992{
1993 const unsigned int event = (unsigned int) status >> 16;
1994 char buf[sizeof("WIFEXITED,exitcode=%u") + sizeof(int)*3 /*paranoia:*/ + 16];
1995 char evbuf[sizeof(",EVENT_VFORK_DONE (%u)") + sizeof(int)*3 /*paranoia:*/ + 16];
1996
1997 strcpy(buf, "???");
1998 if (WIFSIGNALED(status))
1999#ifdef WCOREDUMP
Elliott Hughesb7556142018-02-20 17:03:16 -08002000 xsprintf(buf, "WIFSIGNALED,%ssig=%s",
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002001 WCOREDUMP(status) ? "core," : "",
2002 signame(WTERMSIG(status)));
2003#else
Elliott Hughesb7556142018-02-20 17:03:16 -08002004 xsprintf(buf, "WIFSIGNALED,sig=%s",
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002005 signame(WTERMSIG(status)));
2006#endif
2007 if (WIFEXITED(status))
Elliott Hughesb7556142018-02-20 17:03:16 -08002008 xsprintf(buf, "WIFEXITED,exitcode=%u", WEXITSTATUS(status));
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002009 if (WIFSTOPPED(status))
Elliott Hughesb7556142018-02-20 17:03:16 -08002010 xsprintf(buf, "WIFSTOPPED,sig=%s", signame(WSTOPSIG(status)));
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002011 evbuf[0] = '\0';
2012 if (event != 0) {
2013 static const char *const event_names[] = {
2014 [PTRACE_EVENT_CLONE] = "CLONE",
2015 [PTRACE_EVENT_FORK] = "FORK",
2016 [PTRACE_EVENT_VFORK] = "VFORK",
2017 [PTRACE_EVENT_VFORK_DONE] = "VFORK_DONE",
2018 [PTRACE_EVENT_EXEC] = "EXEC",
2019 [PTRACE_EVENT_EXIT] = "EXIT",
2020 /* [PTRACE_EVENT_STOP (=128)] would make biggish array */
2021 };
2022 const char *e = "??";
2023 if (event < ARRAY_SIZE(event_names))
2024 e = event_names[event];
2025 else if (event == PTRACE_EVENT_STOP)
2026 e = "STOP";
Elliott Hughesb7556142018-02-20 17:03:16 -08002027 xsprintf(evbuf, ",EVENT_%s (%u)", e, event);
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002028 }
Dmitry V. Levin6c8ef052015-05-25 22:51:19 +00002029 error_msg("[wait(0x%06x) = %u] %s%s", status, pid, buf, evbuf);
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002030}
2031
2032static struct tcb *
Dmitry V. Levin0f4ad302015-02-22 02:13:04 +00002033maybe_allocate_tcb(const int pid, int status)
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002034{
2035 if (!WIFSTOPPED(status)) {
Dmitry V. Levinaa801922015-02-07 18:48:55 +00002036 if (detach_on_execve && pid == strace_child) {
2037 /* example: strace -bexecve sh -c 'exec true' */
2038 strace_child = 0;
2039 return NULL;
2040 }
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002041 /*
2042 * This can happen if we inherited an unknown child.
Dmitry V. Levinaa801922015-02-07 18:48:55 +00002043 * Example: (sleep 1 & exec strace true)
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002044 */
2045 error_msg("Exit of unknown pid %u ignored", pid);
2046 return NULL;
2047 }
2048 if (followfork) {
2049 /* We assume it's a fork/vfork/clone child */
2050 struct tcb *tcp = alloctcb(pid);
Elliott Hughes03a418e2018-06-15 13:11:40 -07002051 after_successful_attach(tcp, post_attach_sigstop);
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002052 if (!qflag)
Dmitry V. Levin6c8ef052015-05-25 22:51:19 +00002053 error_msg("Process %d attached", pid);
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002054 return tcp;
2055 } else {
Elliott Hughes77c3ff82017-09-08 17:11:00 -07002056 /*
2057 * This can happen if a clone call misused CLONE_PTRACE itself.
2058 *
2059 * There used to be a dance around possible re-injection of
2060 * WSTOPSIG(status), but it was later removed as the only
2061 * observable stop here is the initial ptrace-stop.
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002062 */
Elliott Hughes77c3ff82017-09-08 17:11:00 -07002063 ptrace(PTRACE_DETACH, pid, NULL, 0L);
2064 error_msg("Detached unknown pid %d", pid);
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002065 return NULL;
2066 }
2067}
2068
2069static struct tcb *
2070maybe_switch_tcbs(struct tcb *tcp, const int pid)
2071{
2072 FILE *fp;
2073 struct tcb *execve_thread;
2074 long old_pid = 0;
2075
Elliott Hughesd35df492017-02-15 15:19:05 -08002076 if (ptrace(PTRACE_GETEVENTMSG, pid, NULL, &old_pid) < 0)
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002077 return tcp;
2078 /* Avoid truncation in pid2tcb() param passing */
2079 if (old_pid <= 0 || old_pid == pid)
2080 return tcp;
2081 if ((unsigned long) old_pid > UINT_MAX)
2082 return tcp;
2083 execve_thread = pid2tcb(old_pid);
2084 /* It should be !NULL, but I feel paranoid */
2085 if (!execve_thread)
2086 return tcp;
2087
2088 if (execve_thread->curcol != 0) {
2089 /*
2090 * One case we are here is -ff:
2091 * try "strace -oLOG -ff test/threaded_execve"
2092 */
2093 fprintf(execve_thread->outf, " <pid changed to %d ...>\n", pid);
2094 /*execve_thread->curcol = 0; - no need, see code below */
2095 }
2096 /* Swap output FILEs (needed for -ff) */
2097 fp = execve_thread->outf;
2098 execve_thread->outf = tcp->outf;
2099 tcp->outf = fp;
2100 /* And their column positions */
2101 execve_thread->curcol = tcp->curcol;
2102 tcp->curcol = 0;
2103 /* Drop leader, but close execve'd thread outfile (if -ff) */
2104 droptcb(tcp);
2105 /* Switch to the thread, reusing leader's outfile and pid */
2106 tcp = execve_thread;
2107 tcp->pid = pid;
2108 if (cflag != CFLAG_ONLY_STATS) {
2109 printleader(tcp);
2110 tprintf("+++ superseded by execve in pid %lu +++\n", old_pid);
2111 line_ended();
2112 tcp->flags |= TCB_REPRINT;
2113 }
2114
2115 return tcp;
2116}
2117
2118static void
Dmitry V. Levin0f4ad302015-02-22 02:13:04 +00002119print_signalled(struct tcb *tcp, const int pid, int status)
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002120{
Dmitry V. Levin2cd488b2015-02-07 19:41:48 +00002121 if (pid == strace_child) {
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002122 exit_code = 0x100 | WTERMSIG(status);
Dmitry V. Levin2cd488b2015-02-07 19:41:48 +00002123 strace_child = 0;
2124 }
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002125
2126 if (cflag != CFLAG_ONLY_STATS
Elliott Hughes77c3ff82017-09-08 17:11:00 -07002127 && is_number_in_set(WTERMSIG(status), signal_set)) {
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002128 printleader(tcp);
2129#ifdef WCOREDUMP
2130 tprintf("+++ killed by %s %s+++\n",
2131 signame(WTERMSIG(status)),
2132 WCOREDUMP(status) ? "(core dumped) " : "");
2133#else
2134 tprintf("+++ killed by %s +++\n",
2135 signame(WTERMSIG(status)));
2136#endif
2137 line_ended();
2138 }
2139}
2140
2141static void
Dmitry V. Levin0f4ad302015-02-22 02:13:04 +00002142print_exited(struct tcb *tcp, const int pid, int status)
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002143{
Dmitry V. Levin2cd488b2015-02-07 19:41:48 +00002144 if (pid == strace_child) {
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002145 exit_code = WEXITSTATUS(status);
Dmitry V. Levin2cd488b2015-02-07 19:41:48 +00002146 strace_child = 0;
2147 }
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002148
2149 if (cflag != CFLAG_ONLY_STATS &&
2150 qflag < 2) {
2151 printleader(tcp);
2152 tprintf("+++ exited with %d +++\n", WEXITSTATUS(status));
2153 line_ended();
2154 }
2155}
2156
2157static void
2158print_stopped(struct tcb *tcp, const siginfo_t *si, const unsigned int sig)
2159{
2160 if (cflag != CFLAG_ONLY_STATS
Elliott Hughesd35df492017-02-15 15:19:05 -08002161 && !hide_log(tcp)
Elliott Hughes77c3ff82017-09-08 17:11:00 -07002162 && is_number_in_set(sig, signal_set)) {
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002163 printleader(tcp);
2164 if (si) {
2165 tprintf("--- %s ", signame(sig));
Dmitry V. Levinf9199ab2016-05-13 14:16:12 +00002166 printsiginfo(si);
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002167 tprints(" ---\n");
2168 } else
2169 tprintf("--- stopped by %s ---\n", signame(sig));
2170 line_ended();
Elliott Hughesc1873762018-12-19 15:13:36 -08002171
2172#ifdef ENABLE_STACKTRACE
2173 if (stack_trace_enabled)
2174 unwind_tcb_print(tcp);
2175#endif
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002176 }
2177}
2178
Denys Vlasenko4bb2ffd2015-03-21 18:13:45 +01002179static void
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002180startup_tcb(struct tcb *tcp)
2181{
Elliott Hughesb7556142018-02-20 17:03:16 -08002182 debug_msg("pid %d has TCB_STARTUP, initializing it", tcp->pid);
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002183
2184 tcp->flags &= ~TCB_STARTUP;
2185
Dmitry V. Levin23ce9e42015-02-08 13:05:53 +00002186 if (!use_seize) {
Elliott Hughesb7556142018-02-20 17:03:16 -08002187 debug_msg("setting opts 0x%x on pid %d",
2188 ptrace_setoptions, tcp->pid);
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002189 if (ptrace(PTRACE_SETOPTIONS, tcp->pid, NULL, ptrace_setoptions) < 0) {
2190 if (errno != ESRCH) {
2191 /* Should never happen, really */
2192 perror_msg_and_die("PTRACE_SETOPTIONS");
2193 }
2194 }
2195 }
Elliott Hughes39bac052017-05-25 16:56:11 -07002196
Elliott Hughesb7556142018-02-20 17:03:16 -08002197 if ((tcp->flags & TCB_GRABBED) && (get_scno(tcp) == 1))
Elliott Hughes39bac052017-05-25 16:56:11 -07002198 tcp->s_prev_ent = tcp->s_ent;
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002199}
2200
Elliott Hughesd35df492017-02-15 15:19:05 -08002201static void
2202print_event_exit(struct tcb *tcp)
2203{
2204 if (entering(tcp) || filtered(tcp) || hide_log(tcp)
2205 || cflag == CFLAG_ONLY_STATS) {
2206 return;
2207 }
2208
2209 if (followfork < 2 && printing_tcp && printing_tcp != tcp
2210 && printing_tcp->curcol != 0) {
Elliott Hughesb7556142018-02-20 17:03:16 -08002211 set_current_tcp(printing_tcp);
Elliott Hughesd35df492017-02-15 15:19:05 -08002212 tprints(" <unfinished ...>\n");
Elliott Hughes77c3ff82017-09-08 17:11:00 -07002213 flush_tcp_output(printing_tcp);
Elliott Hughesd35df492017-02-15 15:19:05 -08002214 printing_tcp->curcol = 0;
Elliott Hughesb7556142018-02-20 17:03:16 -08002215 set_current_tcp(tcp);
Elliott Hughesd35df492017-02-15 15:19:05 -08002216 }
2217
2218 if ((followfork < 2 && printing_tcp != tcp)
2219 || (tcp->flags & TCB_REPRINT)) {
2220 tcp->flags &= ~TCB_REPRINT;
2221 printleader(tcp);
2222 tprintf("<... %s resumed>", tcp->s_ent->sys_name);
2223 }
2224
2225 if (!(tcp->sys_func_rval & RVAL_DECODED)) {
2226 /*
2227 * The decoder has probably decided to print something
2228 * on exiting syscall which is not going to happen.
2229 */
2230 tprints(" <unfinished ...>");
2231 }
Elliott Hughesb7556142018-02-20 17:03:16 -08002232
2233 printing_tcp = tcp;
Elliott Hughesd35df492017-02-15 15:19:05 -08002234 tprints(") ");
2235 tabto();
2236 tprints("= ?\n");
2237 line_ended();
2238}
2239
Elliott Hughesc1873762018-12-19 15:13:36 -08002240static const struct tcb_wait_data *
2241next_event(void)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002242{
Elliott Hughesc1873762018-12-19 15:13:36 -08002243 static struct tcb_wait_data wait_data;
2244
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002245 int pid;
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002246 int status;
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002247 struct tcb *tcp;
Elliott Hughesc1873762018-12-19 15:13:36 -08002248 struct tcb_wait_data *wd = &wait_data;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002249 struct rusage ru;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002250
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002251 if (interrupted)
Elliott Hughesc1873762018-12-19 15:13:36 -08002252 return NULL;
Denys Vlasenkof7db5dd2012-01-28 01:16:02 +01002253
Denys Vlasenko364728d2015-03-21 18:40:53 +01002254 /*
2255 * Used to exit simply when nprocs hits zero, but in this testcase:
Elliott Hughesdc75b012017-07-05 13:54:44 -07002256 * int main(void) { _exit(!!fork()); }
Denys Vlasenko364728d2015-03-21 18:40:53 +01002257 * under strace -f, parent sometimes (rarely) manages
2258 * to exit before we see the first stop of the child,
2259 * and we are losing track of it:
2260 * 19923 clone(...) = 19924
2261 * 19923 exit_group(1) = ?
2262 * 19923 +++ exited with 1 +++
2263 * Exiting only when wait() returns ECHILD works better.
2264 */
2265 if (popen_pid != 0) {
2266 /* However, if -o|logger is in use, we can't do that.
2267 * Can work around that by double-forking the logger,
2268 * but that loses the ability to wait for its completion
2269 * on exit. Oh well...
2270 */
2271 if (nprocs == 0)
Elliott Hughesc1873762018-12-19 15:13:36 -08002272 return NULL;
Denys Vlasenko364728d2015-03-21 18:40:53 +01002273 }
Denys Vlasenko725dd422013-06-20 11:06:58 +02002274
Elliott Hughes28e98bc2018-06-14 16:59:04 -07002275 const bool unblock_delay_timer = is_delay_timer_armed();
2276
2277 /*
2278 * The window of opportunity to handle expirations
2279 * of the delay timer opens here.
2280 *
2281 * Unblock the signal handler for the delay timer
2282 * iff the delay timer is already created.
2283 */
2284 if (unblock_delay_timer)
2285 sigprocmask(SIG_UNBLOCK, &timer_set, NULL);
2286
2287 /*
2288 * If the delay timer has expired, then its expiration
2289 * has been handled already by the signal handler.
2290 *
2291 * If the delay timer expires during wait4(),
2292 * then the system call will be interrupted and
2293 * the expiration will be handled by the signal handler.
2294 */
Elliott Hughesc1873762018-12-19 15:13:36 -08002295 pid = wait4(-1, &status, __WALL, (cflag ? &ru : NULL));
Elliott Hughes28e98bc2018-06-14 16:59:04 -07002296 const int wait_errno = errno;
2297
2298 /*
2299 * The window of opportunity to handle expirations
2300 * of the delay timer closes here.
2301 *
2302 * Block the signal handler for the delay timer
2303 * iff it was unblocked earlier.
2304 */
2305 if (unblock_delay_timer) {
2306 sigprocmask(SIG_BLOCK, &timer_set, NULL);
2307
2308 if (restart_failed)
Elliott Hughesc1873762018-12-19 15:13:36 -08002309 return NULL;
Elliott Hughes28e98bc2018-06-14 16:59:04 -07002310 }
Denys Vlasenko7c41ce22013-07-08 13:55:04 +02002311
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002312 if (pid < 0) {
Elliott Hughesc1873762018-12-19 15:13:36 -08002313 if (wait_errno == EINTR) {
2314 wd->te = TE_NEXT;
2315 return wd;
2316 }
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002317 if (nprocs == 0 && wait_errno == ECHILD)
Elliott Hughesc1873762018-12-19 15:13:36 -08002318 return NULL;
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002319 /*
2320 * If nprocs > 0, ECHILD is not expected,
2321 * treat it as any other error here:
2322 */
2323 errno = wait_errno;
2324 perror_msg_and_die("wait4(__WALL)");
2325 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002326
Elliott Hughesc1873762018-12-19 15:13:36 -08002327 wd->status = status;
Elliott Hughesdc75b012017-07-05 13:54:44 -07002328
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002329 if (pid == popen_pid) {
2330 if (!WIFSTOPPED(status))
2331 popen_pid = 0;
Elliott Hughesc1873762018-12-19 15:13:36 -08002332 wd->te = TE_NEXT;
2333 return wd;
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002334 }
Denys Vlasenko725dd422013-06-20 11:06:58 +02002335
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002336 if (debug_flag)
2337 print_debug_info(pid, status);
Denys Vlasenkof7db5dd2012-01-28 01:16:02 +01002338
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002339 /* Look up 'pid' in our table. */
2340 tcp = pid2tcb(pid);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002341
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002342 if (!tcp) {
2343 tcp = maybe_allocate_tcb(pid, status);
Elliott Hughesc1873762018-12-19 15:13:36 -08002344 if (!tcp) {
2345 wd->te = TE_NEXT;
2346 return wd;
2347 }
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002348 }
Denys Vlasenkof7db5dd2012-01-28 01:16:02 +01002349
Elliott Hughesb7556142018-02-20 17:03:16 -08002350 clear_regs(tcp);
Denys Vlasenko7de265d2012-03-13 11:44:31 +01002351
Elliott Hughesdc75b012017-07-05 13:54:44 -07002352 /* Set current output file */
Elliott Hughesb7556142018-02-20 17:03:16 -08002353 set_current_tcp(tcp);
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01002354
Elliott Hughesdc75b012017-07-05 13:54:44 -07002355 if (cflag) {
Elliott Hughes28e98bc2018-06-14 16:59:04 -07002356 struct timespec stime = {
2357 .tv_sec = ru.ru_stime.tv_sec,
2358 .tv_nsec = ru.ru_stime.tv_usec * 1000
2359 };
2360 ts_sub(&tcp->dtime, &stime, &tcp->stime);
2361 tcp->stime = stime;
Elliott Hughesdc75b012017-07-05 13:54:44 -07002362 }
2363
Elliott Hughesc1873762018-12-19 15:13:36 -08002364 if (WIFSIGNALED(status)) {
2365 wd->te = TE_SIGNALLED;
2366 return wd;
2367 }
Elliott Hughesdc75b012017-07-05 13:54:44 -07002368
Elliott Hughesc1873762018-12-19 15:13:36 -08002369 if (WIFEXITED(status)) {
2370 wd->te = TE_EXITED;
2371 return wd;
2372 }
Elliott Hughesdc75b012017-07-05 13:54:44 -07002373
2374 /*
2375 * As WCONTINUED flag has not been specified to wait4,
2376 * it cannot be WIFCONTINUED(status), so the only case
2377 * that remains is WIFSTOPPED(status).
2378 */
2379
2380 /* Is this the very first time we see this tracee stopped? */
2381 if (tcp->flags & TCB_STARTUP)
2382 startup_tcb(tcp);
2383
2384 const unsigned int sig = WSTOPSIG(status);
2385 const unsigned int event = (unsigned int) status >> 16;
2386
2387 switch (event) {
2388 case 0:
2389 /*
2390 * Is this post-attach SIGSTOP?
2391 * Interestingly, the process may stop
2392 * with STOPSIG equal to some other signal
2393 * than SIGSTOP if we happened to attach
2394 * just before the process takes a signal.
2395 */
2396 if (sig == SIGSTOP && (tcp->flags & TCB_IGNORE_ONE_SIGSTOP)) {
Elliott Hughesb7556142018-02-20 17:03:16 -08002397 debug_func_msg("ignored SIGSTOP on pid %d", tcp->pid);
Elliott Hughesdc75b012017-07-05 13:54:44 -07002398 tcp->flags &= ~TCB_IGNORE_ONE_SIGSTOP;
Elliott Hughesc1873762018-12-19 15:13:36 -08002399 wd->te = TE_RESTART;
Elliott Hughesdc75b012017-07-05 13:54:44 -07002400 } else if (sig == syscall_trap_sig) {
Elliott Hughesc1873762018-12-19 15:13:36 -08002401 wd->te = TE_SYSCALL_STOP;
Elliott Hughesdc75b012017-07-05 13:54:44 -07002402 } else {
Elliott Hughesc1873762018-12-19 15:13:36 -08002403 memset(&wd->si, 0, sizeof(wd->si));
Elliott Hughesdc75b012017-07-05 13:54:44 -07002404 /*
2405 * True if tracee is stopped by signal
2406 * (as opposed to "tracee received signal").
2407 * TODO: shouldn't we check for errno == EINVAL too?
2408 * We can get ESRCH instead, you know...
2409 */
Elliott Hughesc1873762018-12-19 15:13:36 -08002410 bool stopped = ptrace(PTRACE_GETSIGINFO, pid, 0, &wd->si) < 0;
2411 wd->te = stopped ? TE_GROUP_STOP : TE_SIGNAL_DELIVERY_STOP;
Elliott Hughesdc75b012017-07-05 13:54:44 -07002412 }
2413 break;
Elliott Hughesdc75b012017-07-05 13:54:44 -07002414 case PTRACE_EVENT_STOP:
2415 /*
2416 * PTRACE_INTERRUPT-stop or group-stop.
2417 * PTRACE_INTERRUPT-stop has sig == SIGTRAP here.
2418 */
2419 switch (sig) {
2420 case SIGSTOP:
2421 case SIGTSTP:
2422 case SIGTTIN:
2423 case SIGTTOU:
Elliott Hughesc1873762018-12-19 15:13:36 -08002424 wd->te = TE_GROUP_STOP;
2425 break;
2426 default:
2427 wd->te = TE_RESTART;
Elliott Hughesdc75b012017-07-05 13:54:44 -07002428 }
Elliott Hughesc1873762018-12-19 15:13:36 -08002429 break;
Elliott Hughesdc75b012017-07-05 13:54:44 -07002430 case PTRACE_EVENT_EXEC:
Elliott Hughesc1873762018-12-19 15:13:36 -08002431 wd->te = TE_STOP_BEFORE_EXECVE;
2432 break;
Elliott Hughesdc75b012017-07-05 13:54:44 -07002433 case PTRACE_EVENT_EXIT:
Elliott Hughesc1873762018-12-19 15:13:36 -08002434 wd->te = TE_STOP_BEFORE_EXIT;
2435 break;
Elliott Hughesdc75b012017-07-05 13:54:44 -07002436 default:
Elliott Hughesc1873762018-12-19 15:13:36 -08002437 wd->te = TE_RESTART;
Elliott Hughesdc75b012017-07-05 13:54:44 -07002438 }
Elliott Hughesc1873762018-12-19 15:13:36 -08002439
2440 return wd;
Elliott Hughesdc75b012017-07-05 13:54:44 -07002441}
2442
2443static int
2444trace_syscall(struct tcb *tcp, unsigned int *sig)
2445{
2446 if (entering(tcp)) {
2447 int res = syscall_entering_decode(tcp);
2448 switch (res) {
2449 case 0:
2450 return 0;
2451 case 1:
2452 res = syscall_entering_trace(tcp, sig);
2453 }
2454 syscall_entering_finish(tcp, res);
2455 return res;
2456 } else {
Elliott Hughes28e98bc2018-06-14 16:59:04 -07002457 struct timespec ts = {};
2458 int res = syscall_exiting_decode(tcp, &ts);
Elliott Hughesdc75b012017-07-05 13:54:44 -07002459 if (res != 0) {
Elliott Hughes28e98bc2018-06-14 16:59:04 -07002460 res = syscall_exiting_trace(tcp, &ts, res);
Elliott Hughesdc75b012017-07-05 13:54:44 -07002461 }
2462 syscall_exiting_finish(tcp);
2463 return res;
2464 }
2465}
2466
2467/* Returns true iff the main trace loop has to continue. */
2468static bool
Elliott Hughesc1873762018-12-19 15:13:36 -08002469dispatch_event(const struct tcb_wait_data *wd)
Elliott Hughesdc75b012017-07-05 13:54:44 -07002470{
2471 unsigned int restart_op = PTRACE_SYSCALL;
2472 unsigned int restart_sig = 0;
Elliott Hughesc1873762018-12-19 15:13:36 -08002473 enum trace_event te = wd ? wd->te : TE_BREAK;
2474 /*
2475 * Copy wd->status to a non-const variable to workaround glibc bugs
2476 * around union wait fixed by glibc commit glibc-2.24~391
2477 */
2478 int status = wd ? wd->status : 0;
Elliott Hughesdc75b012017-07-05 13:54:44 -07002479
Elliott Hughesc1873762018-12-19 15:13:36 -08002480 switch (te) {
Elliott Hughesdc75b012017-07-05 13:54:44 -07002481 case TE_BREAK:
2482 return false;
2483
2484 case TE_NEXT:
2485 return true;
2486
2487 case TE_RESTART:
2488 break;
2489
2490 case TE_SYSCALL_STOP:
2491 if (trace_syscall(current_tcp, &restart_sig) < 0) {
2492 /*
2493 * ptrace() failed in trace_syscall().
2494 * Likely a result of process disappearing mid-flight.
2495 * Observed case: exit_group() or SIGKILL terminating
2496 * all processes in thread group.
2497 * We assume that ptrace error was caused by process death.
2498 * We used to detach(current_tcp) here, but since we no
2499 * longer implement "detach before death" policy/hack,
2500 * we can let this process to report its death to us
2501 * normally, via WIFEXITED or WIFSIGNALED wait status.
2502 */
2503 return true;
2504 }
2505 break;
2506
2507 case TE_SIGNAL_DELIVERY_STOP:
Elliott Hughesc1873762018-12-19 15:13:36 -08002508 restart_sig = WSTOPSIG(status);
2509 print_stopped(current_tcp, &wd->si, restart_sig);
Elliott Hughesdc75b012017-07-05 13:54:44 -07002510 break;
2511
2512 case TE_SIGNALLED:
Elliott Hughesc1873762018-12-19 15:13:36 -08002513 print_signalled(current_tcp, current_tcp->pid, status);
Elliott Hughesdc75b012017-07-05 13:54:44 -07002514 droptcb(current_tcp);
2515 return true;
2516
2517 case TE_GROUP_STOP:
Elliott Hughesc1873762018-12-19 15:13:36 -08002518 restart_sig = WSTOPSIG(status);
Elliott Hughesdc75b012017-07-05 13:54:44 -07002519 print_stopped(current_tcp, NULL, restart_sig);
2520 if (use_seize) {
2521 /*
2522 * This ends ptrace-stop, but does *not* end group-stop.
2523 * This makes stopping signals work properly on straced
2524 * process (that is, process really stops. It used to
2525 * continue to run).
2526 */
2527 restart_op = PTRACE_LISTEN;
2528 restart_sig = 0;
2529 }
2530 break;
2531
2532 case TE_EXITED:
Elliott Hughesc1873762018-12-19 15:13:36 -08002533 print_exited(current_tcp, current_tcp->pid, status);
Elliott Hughesdc75b012017-07-05 13:54:44 -07002534 droptcb(current_tcp);
2535 return true;
2536
2537 case TE_STOP_BEFORE_EXECVE:
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002538 /*
Elliott Hughesb7556142018-02-20 17:03:16 -08002539 * Check that we are inside syscall now (next event after
2540 * PTRACE_EVENT_EXEC should be for syscall exiting). If it is
2541 * not the case, we might have a situation when we attach to a
2542 * process and the first thing we see is a PTRACE_EVENT_EXEC
2543 * and all the following syscall state tracking is screwed up
2544 * otherwise.
2545 */
2546 if (entering(current_tcp)) {
2547 int ret;
2548
2549 error_msg("Stray PTRACE_EVENT_EXEC from pid %d"
2550 ", trying to recover...",
2551 current_tcp->pid);
2552
2553 current_tcp->flags |= TCB_RECOVERING;
2554 ret = trace_syscall(current_tcp, &restart_sig);
2555 current_tcp->flags &= ~TCB_RECOVERING;
2556
2557 if (ret < 0) {
2558 /* The reason is described in TE_SYSCALL_STOP */
2559 return true;
2560 }
2561 }
2562
2563 /*
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002564 * Under Linux, execve changes pid to thread leader's pid,
Denys Vlasenko8511f2a2012-03-22 09:35:51 +01002565 * and we see this changed pid on EVENT_EXEC and later,
2566 * execve sysexit. Leader "disappears" without exit
2567 * notification. Let user know that, drop leader's tcb,
2568 * and fix up pid in execve thread's tcb.
2569 * Effectively, execve thread's tcb replaces leader's tcb.
2570 *
2571 * BTW, leader is 'stuck undead' (doesn't report WIFEXITED
2572 * on exit syscall) in multithreaded programs exactly
2573 * in order to handle this case.
2574 *
2575 * PTRACE_GETEVENTMSG returns old pid starting from Linux 3.0.
2576 * On 2.6 and earlier, it can return garbage.
2577 */
Elliott Hughesdc75b012017-07-05 13:54:44 -07002578 if (os_release >= KERNEL_VERSION(3, 0, 0))
Elliott Hughesb7556142018-02-20 17:03:16 -08002579 set_current_tcp(maybe_switch_tcbs(current_tcp,
2580 current_tcp->pid));
Denys Vlasenko8511f2a2012-03-22 09:35:51 +01002581
Elliott Hughesd35df492017-02-15 15:19:05 -08002582 if (detach_on_execve) {
Elliott Hughesdc75b012017-07-05 13:54:44 -07002583 if (current_tcp->flags & TCB_SKIP_DETACH_ON_FIRST_EXEC) {
2584 current_tcp->flags &= ~TCB_SKIP_DETACH_ON_FIRST_EXEC;
Elliott Hughesd35df492017-02-15 15:19:05 -08002585 } else {
Elliott Hughesdc75b012017-07-05 13:54:44 -07002586 detach(current_tcp); /* do "-b execve" thingy */
Elliott Hughesd35df492017-02-15 15:19:05 -08002587 return true;
2588 }
Dmitry V. Levine6908132015-02-07 17:47:53 +00002589 }
Elliott Hughesdc75b012017-07-05 13:54:44 -07002590 break;
Denys Vlasenko8511f2a2012-03-22 09:35:51 +01002591
Elliott Hughesdc75b012017-07-05 13:54:44 -07002592 case TE_STOP_BEFORE_EXIT:
2593 print_event_exit(current_tcp);
2594 break;
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002595 }
2596
2597 /* We handled quick cases, we are permitted to interrupt now. */
2598 if (interrupted)
2599 return false;
2600
Elliott Hughes28e98bc2018-06-14 16:59:04 -07002601 /* If the process is being delayed, do not ptrace_restart just yet */
2602 if (syscall_delayed(current_tcp))
2603 return true;
2604
Elliott Hughesdc75b012017-07-05 13:54:44 -07002605 if (ptrace_restart(restart_op, current_tcp, restart_sig) < 0) {
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002606 /* Note: ptrace_restart emitted error message */
2607 exit_code = 1;
2608 return false;
2609 }
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002610 return true;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002611}
Denys Vlasenkoecc8b972012-03-12 23:05:25 +01002612
Elliott Hughes28e98bc2018-06-14 16:59:04 -07002613static bool
2614restart_delayed_tcb(struct tcb *const tcp)
2615{
Elliott Hughesc1873762018-12-19 15:13:36 -08002616 const struct tcb_wait_data wd = { .te = TE_RESTART };
2617
Elliott Hughes28e98bc2018-06-14 16:59:04 -07002618 debug_func_msg("pid %d", tcp->pid);
2619
2620 tcp->flags &= ~TCB_DELAYED;
2621
2622 struct tcb *const prev_tcp = current_tcp;
2623 current_tcp = tcp;
Elliott Hughesc1873762018-12-19 15:13:36 -08002624 bool ret = dispatch_event(&wd);
Elliott Hughes28e98bc2018-06-14 16:59:04 -07002625 current_tcp = prev_tcp;
2626
2627 return ret;
2628}
2629
2630static bool
2631restart_delayed_tcbs(void)
2632{
2633 struct tcb *tcp_next = NULL;
2634 struct timespec ts_now;
2635
2636 clock_gettime(CLOCK_MONOTONIC, &ts_now);
2637
2638 for (size_t i = 0; i < tcbtabsize; i++) {
2639 struct tcb *tcp = tcbtab[i];
2640
2641 if (tcp->pid && syscall_delayed(tcp)) {
2642 if (ts_cmp(&ts_now, &tcp->delay_expiration_time) > 0) {
2643 if (!restart_delayed_tcb(tcp))
2644 return false;
2645 } else {
2646 /* Check whether this tcb is the next. */
2647 if (!tcp_next ||
2648 ts_cmp(&tcp_next->delay_expiration_time,
2649 &tcp->delay_expiration_time) > 0) {
2650 tcp_next = tcp;
2651 }
2652 }
2653 }
2654 }
2655
2656 if (tcp_next)
2657 arm_delay_timer(tcp_next);
2658
2659 return true;
2660}
2661
2662/*
2663 * As this signal handler does a lot of work that is not suitable
2664 * for signal handlers, extra care must be taken to ensure that
2665 * it is enabled only in those places where it's safe.
2666 */
2667static void
2668timer_sighandler(int sig)
2669{
2670 delay_timer_expired();
2671
2672 if (restart_failed)
2673 return;
2674
2675 int saved_errno = errno;
2676
2677 if (!restart_delayed_tcbs())
2678 restart_failed = 1;
2679
2680 errno = saved_errno;
2681}
2682
Elliott Hughesdc75b012017-07-05 13:54:44 -07002683#ifdef ENABLE_COVERAGE_GCOV
2684extern void __gcov_flush(void);
2685#endif
2686
2687static void ATTRIBUTE_NORETURN
2688terminate(void)
Denys Vlasenkoecc8b972012-03-12 23:05:25 +01002689{
Denys Vlasenkoecc8b972012-03-12 23:05:25 +01002690 cleanup();
2691 fflush(NULL);
Dmitry V. Levincf534362012-07-12 20:54:46 +00002692 if (shared_log != stderr)
2693 fclose(shared_log);
2694 if (popen_pid) {
2695 while (waitpid(popen_pid, NULL, 0) < 0 && errno == EINTR)
2696 ;
2697 }
Denys Vlasenkoecc8b972012-03-12 23:05:25 +01002698 if (exit_code > 0xff) {
2699 /* Avoid potential core file clobbering. */
Dmitry V. Levinc8938e02013-03-20 21:40:15 +00002700 struct_rlimit rlim = {0, 0};
2701 set_rlimit(RLIMIT_CORE, &rlim);
Denys Vlasenkoecc8b972012-03-12 23:05:25 +01002702
2703 /* Child was killed by a signal, mimic that. */
2704 exit_code &= 0xff;
2705 signal(exit_code, SIG_DFL);
Elliott Hughesdc75b012017-07-05 13:54:44 -07002706#ifdef ENABLE_COVERAGE_GCOV
2707 __gcov_flush();
2708#endif
Denys Vlasenkoecc8b972012-03-12 23:05:25 +01002709 raise(exit_code);
Elliott Hughesdc75b012017-07-05 13:54:44 -07002710
2711 /* Unblock the signal. */
2712 sigset_t mask;
2713 sigemptyset(&mask);
2714 sigaddset(&mask, exit_code);
2715#ifdef ENABLE_COVERAGE_GCOV
2716 __gcov_flush();
2717#endif
2718 sigprocmask(SIG_UNBLOCK, &mask, NULL);
2719
Denys Vlasenkoecc8b972012-03-12 23:05:25 +01002720 /* Paranoia - what if this signal is not fatal?
2721 Exit with 128 + signo then. */
2722 exit_code += 128;
2723 }
Elliott Hughesdc75b012017-07-05 13:54:44 -07002724 exit(exit_code);
2725}
Denys Vlasenkoecc8b972012-03-12 23:05:25 +01002726
Elliott Hughesdc75b012017-07-05 13:54:44 -07002727int
2728main(int argc, char *argv[])
2729{
Elliott Hughes28e98bc2018-06-14 16:59:04 -07002730 setlocale(LC_ALL, "");
Elliott Hughesdc75b012017-07-05 13:54:44 -07002731 init(argc, argv);
2732
2733 exit_code = !nprocs;
2734
Elliott Hughesc1873762018-12-19 15:13:36 -08002735 while (dispatch_event(next_event()))
Elliott Hughesdc75b012017-07-05 13:54:44 -07002736 ;
2737 terminate();
Denys Vlasenkoecc8b972012-03-12 23:05:25 +01002738}