blob: 49d6f3d6ad65f9805017786f40b9103d59840fa2 [file] [log] [blame]
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001/*
2 * Copyright (c) 1991, 1992 Paul Kranenburg <pk@cs.few.eur.nl>
3 * Copyright (c) 1993 Branko Lankester <branko@hacktic.nl>
4 * Copyright (c) 1993, 1994, 1995, 1996 Rick Sladkey <jrs@world.std.com>
Wichert Akkerman4dc8a2a1999-12-23 14:20:14 +00005 * Copyright (c) 1996-1999 Wichert Akkerman <wichert@cistron.nl>
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00006 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. The name of the author may not be used to endorse or promote products
17 * derived from this software without specific prior written permission.
18 *
19 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
20 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
21 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
22 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
23 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
24 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
28 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000029 */
30
31#include "defs.h"
Denys Vlasenko3454e4b2011-05-23 21:29:03 +020032#include <stdarg.h>
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000033#include <sys/param.h>
34#include <fcntl.h>
Dmitry V. Levin0e946ab2015-07-17 23:56:54 +000035#include <signal.h>
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000036#include <sys/resource.h>
37#include <sys/wait.h>
38#include <sys/stat.h>
39#include <pwd.h>
40#include <grp.h>
Roland McGrath70b08532004-04-09 00:25:21 +000041#include <dirent.h>
Denys Vlasenkof7db5dd2012-01-28 01:16:02 +010042#include <sys/utsname.h>
Dmitry V. Levin882478a2013-05-13 18:43:28 +000043#ifdef HAVE_PRCTL
44# include <sys/prctl.h>
45#endif
Dmitry V. Levinfadf3792015-02-13 00:26:38 +000046
47#include "ptrace.h"
Dmitry V. Levin0e946ab2015-07-17 23:56:54 +000048#include "printsiginfo.h"
Dmitry V. Levinfadf3792015-02-13 00:26:38 +000049
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +010050/* In some libc, these aren't declared. Do it ourself: */
Denys Vlasenko96d5a762008-12-29 19:13:27 +000051extern char **environ;
Denys Vlasenko418d66a2009-01-17 01:52:54 +000052extern int optind;
53extern char *optarg;
Denys Vlasenko96d5a762008-12-29 19:13:27 +000054
Luca Clementi327064b2013-07-23 00:11:35 -070055#ifdef USE_LIBUNWIND
56/* if this is true do the stack trace for every system call */
57bool stack_trace_enabled = false;
58#endif
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +010059
60#if defined __NR_tkill
61# define my_tkill(tid, sig) syscall(__NR_tkill, (tid), (sig))
62#else
63 /* kill() may choose arbitrarily the target task of the process group
64 while we later wait on a that specific TID. PID process waits become
65 TID task specific waits for a process under ptrace(2). */
Denys Vlasenko978fbc92012-09-13 10:28:43 +020066# warning "tkill(2) not available, risk of strace hangs!"
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +010067# define my_tkill(tid, sig) kill((tid), (sig))
68#endif
69
Denys Vlasenko5c9d8f42013-02-19 15:30:12 +010070/* Glue for systems without a MMU that cannot provide fork() */
71#if !defined(HAVE_FORK)
72# undef NOMMU_SYSTEM
73# define NOMMU_SYSTEM 1
74#endif
75#if NOMMU_SYSTEM
76# define fork() vfork()
77#endif
78
Dmitry V. Levin23ce9e42015-02-08 13:05:53 +000079const unsigned int syscall_trap_sig = SIGTRAP | 0x80;
80
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +010081cflag_t cflag = CFLAG_NONE;
82unsigned int followfork = 0;
Dmitry V. Levin23ce9e42015-02-08 13:05:53 +000083unsigned int ptrace_setoptions = PTRACE_O_TRACESYSGOOD | PTRACE_O_TRACEEXEC;
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +010084unsigned int xflag = 0;
85bool debug_flag = 0;
86bool Tflag = 0;
Anton Blancharda34dead2013-07-12 12:22:06 +020087bool iflag = 0;
Mark Hillse53bf232014-05-28 17:52:40 +010088bool count_wallclock = 0;
Daniel P. Berrange01997cf2013-05-13 11:30:55 +010089unsigned int qflag = 0;
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +010090static unsigned int tflag = 0;
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +010091static bool rflag = 0;
92static bool print_pid_pfx = 0;
Denys Vlasenkob51581e2012-01-29 16:53:03 +010093
94/* -I n */
95enum {
96 INTR_NOT_SET = 0,
97 INTR_ANYWHERE = 1, /* don't block/ignore any signals */
98 INTR_WHILE_WAIT = 2, /* block fatal signals while decoding syscall. default */
99 INTR_NEVER = 3, /* block fatal signals. default if '-o FILE PROG' */
100 INTR_BLOCK_TSTP_TOO = 4, /* block fatal signals and SIGTSTP (^Z) */
101 NUM_INTR_OPTS
102};
103static int opt_intr;
104/* We play with signal mask only if this mode is active: */
105#define interactive (opt_intr == INTR_WHILE_WAIT)
106
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +0000107/*
108 * daemonized_tracer supports -D option.
109 * With this option, strace forks twice.
110 * Unlike normal case, with -D *grandparent* process exec's,
111 * becoming a traced process. Child exits (this prevents traced process
112 * from having children it doesn't expect to have), and grandchild
113 * attaches to grandparent similarly to strace -p PID.
114 * This allows for more transparent interaction in cases
115 * when process and its parent are communicating via signals,
116 * wait() etc. Without -D, strace process gets lodged in between,
117 * disrupting parent<->child link.
118 */
119static bool daemonized_tracer = 0;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000120
Denys Vlasenko5c9d8f42013-02-19 15:30:12 +0100121#if USE_SEIZE
Denys Vlasenko31fa8a22012-01-29 02:01:44 +0100122static int post_attach_sigstop = TCB_IGNORE_ONE_SIGSTOP;
123# define use_seize (post_attach_sigstop == 0)
124#else
125# define post_attach_sigstop TCB_IGNORE_ONE_SIGSTOP
126# define use_seize 0
127#endif
128
Michal Ludvig17f8fb32002-11-06 13:17:21 +0000129/* Sometimes we want to print only succeeding syscalls. */
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +0100130bool not_failing_only = 0;
Michal Ludvig17f8fb32002-11-06 13:17:21 +0000131
Grant Edwards8a082772011-04-07 20:25:40 +0000132/* Show path associated with fd arguments */
Dmitry V. Levin45e7b182014-08-08 23:38:26 +0000133unsigned int show_fd_path = 0;
Grant Edwards8a082772011-04-07 20:25:40 +0000134
Denys Vlasenko61e7aad2012-03-15 13:44:17 +0100135static bool detach_on_execve = 0;
Denys Vlasenko2a3d2752013-05-14 16:07:46 +0200136/* Are we "strace PROG" and need to skip detach on first execve? */
137static bool skip_one_b_execve = 0;
138/* Are we "strace PROG" and need to hide everything until execve? */
139bool hide_log_until_execve = 0;
Denys Vlasenko61e7aad2012-03-15 13:44:17 +0100140
Dmitry V. Levina6809652008-11-10 17:14:58 +0000141static int exit_code = 0;
142static int strace_child = 0;
Denys Vlasenko75422762011-05-27 14:36:01 +0200143static int strace_tracer_pid = 0;
Roland McGratheb9e2e82009-06-02 16:49:22 -0700144
Dmitry V. Levinb9fe0112006-12-13 16:59:44 +0000145static char *username = NULL;
Denys Vlasenkoead73bd2011-06-24 22:49:58 +0200146static uid_t run_uid;
147static gid_t run_gid;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000148
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +0100149unsigned int max_strlen = DEFAULT_STRLEN;
Dmitry V. Levinccee1692012-03-25 21:49:48 +0000150static int acolumn = DEFAULT_ACOLUMN;
Denys Vlasenko102ec492011-08-25 01:27:59 +0200151static char *acolumn_spaces;
Denys Vlasenko6764f8f2012-03-22 09:56:20 +0100152
Dmitry V. Levinb9fe0112006-12-13 16:59:44 +0000153static char *outfname = NULL;
Denys Vlasenko6764f8f2012-03-22 09:56:20 +0100154/* If -ff, points to stderr. Else, it's our common output log */
155static FILE *shared_log;
156
Denys Vlasenko000b6012012-01-28 01:25:03 +0100157struct tcb *printing_tcp = NULL;
Denys Vlasenko6764f8f2012-03-22 09:56:20 +0100158static struct tcb *current_tcp;
159
Denys Vlasenkoead73bd2011-06-24 22:49:58 +0200160static struct tcb **tcbtab;
Denys Vlasenko2b60c352011-06-22 12:45:25 +0200161static unsigned int nprocs, tcbtabsize;
Denys Vlasenkoead73bd2011-06-24 22:49:58 +0200162static const char *progname;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000163
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +0100164unsigned os_release; /* generated from uname()'s u.release */
Denys Vlasenkof7db5dd2012-01-28 01:16:02 +0100165
Denys Vlasenko4a9ba982013-06-20 11:20:23 +0200166static void detach(struct tcb *tcp);
Andreas Schwabe5355de2009-10-27 16:56:43 +0100167static void cleanup(void);
168static void interrupt(int sig);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000169static sigset_t empty_set, blocked_set;
170
171#ifdef HAVE_SIG_ATOMIC_T
172static volatile sig_atomic_t interrupted;
Denys Vlasenkoa3559252012-01-29 16:43:51 +0100173#else
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000174static volatile int interrupted;
Denys Vlasenkoa3559252012-01-29 16:43:51 +0100175#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000176
Denys Vlasenko2c4fb902012-03-15 17:24:49 +0100177#ifndef HAVE_STRERROR
178
179#if !HAVE_DECL_SYS_ERRLIST
180extern int sys_nerr;
181extern char *sys_errlist[];
Denys Vlasenkoa6d91de2012-03-16 12:02:22 +0100182#endif
Denys Vlasenko2c4fb902012-03-15 17:24:49 +0100183
184const char *
185strerror(int err_no)
186{
187 static char buf[sizeof("Unknown error %d") + sizeof(int)*3];
188
189 if (err_no < 1 || err_no >= sys_nerr) {
190 sprintf(buf, "Unknown error %d", err_no);
191 return buf;
192 }
193 return sys_errlist[err_no];
194}
195
196#endif /* HAVE_STERRROR */
197
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000198static void
Elvira Khabirovaa2fdfe92015-11-26 17:18:00 +0300199usage()
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000200{
Elvira Khabirovaa2fdfe92015-11-26 17:18:00 +0300201 printf("\
Elvira Khabirova3272d292015-11-26 06:25:12 +0300202usage: strace [-CdffhiqrtttTvVwxxy] [-I n] [-e expr]...\n\
Denys Vlasenkoc5ccfa42012-03-26 13:10:50 +0200203 [-a column] [-o file] [-s strsize] [-P path]...\n\
204 -p pid... / [-D] [-E var=val]... [-u username] PROG [ARGS]\n\
Elvira Khabirova3272d292015-11-26 06:25:12 +0300205 or: strace -c[dfw] [-I n] [-e expr]... [-O overhead] [-S sortby]\n\
Denys Vlasenkoc5ccfa42012-03-26 13:10:50 +0200206 -p pid... / [-D] [-E var=val]... [-u username] PROG [ARGS]\n\
Elvira Khabirova3272d292015-11-26 06:25:12 +0300207\n\
208Output format:\n\
209 -a column alignment COLUMN for printing syscall results (default %d)\n\
210 -i print instruction pointer at time of syscall\n\
211 -o file send trace output to FILE instead of stderr\n\
212 -q suppress messages about attaching, detaching, etc.\n\
213 -r print relative timestamp\n\
214 -s strsize limit length of print strings to STRSIZE chars (default %d)\n\
215 -t print absolute timestamp\n\
216 -tt print absolute timestamp with usecs\n\
217 -T print time spent in each syscall\n\
218 -x print non-ascii strings in hex\n\
219 -xx print all strings in hex\n\
220 -y print paths associated with file descriptor arguments\n\
221 -yy print ip:port pairs associated with socket file descriptors\n\
222\n\
223Statistics:\n\
224 -c count time, calls, and errors for each syscall and report summary\n\
225 -C like -c but also print regular output\n\
226 -O overhead set overhead for tracing syscalls to OVERHEAD usecs\n\
227 -S sortby sort syscall counts by: time, calls, name, nothing (default %s)\n\
228 -w summarise syscall latency (default is system time)\n\
229\n\
230Filtering:\n\
231 -e expr a qualifying expression: option=[!]all or option=[!]val1[,val2]...\n\
232 options: trace, abbrev, verbose, raw, signal, read, write\n\
233 -P path trace accesses to path\n\
234\n\
235Tracing:\n\
236 -b execve detach on execve syscall\n\
237 -D run tracer process as a detached grandchild, not as parent\n\
238 -f follow forks\n\
239 -ff follow forks with output into separate files\n\
240 -I interruptible\n\
241 1: no signals are blocked\n\
242 2: fatal signals are blocked while decoding syscall (default)\n\
243 3: fatal signals are always blocked (default if '-o FILE PROG')\n\
244 4: fatal signals and SIGTSTP (^Z) are always blocked\n\
245 (useful to make 'strace -o FILE PROG' not stop on ^Z)\n\
246\n\
247Startup:\n\
248 -E var remove var from the environment for command\n\
249 -E var=val put var=val in the environment for command\n\
250 -p pid trace process with process id PID, may be repeated\n\
251 -u username run command as username handling setuid and/or setgid\n\
252\n\
253Miscellaneous:\n\
254 -d enable debug output to stderr\n\
255 -v verbose mode: print unabbreviated argv, stat, termios, etc. args\n\
256 -h print help message\n\
257 -V print version\n\
Denys Vlasenko61e7aad2012-03-15 13:44:17 +0100258"
Luca Clementi327064b2013-07-23 00:11:35 -0700259#ifdef USE_LIBUNWIND
Elvira Khabirova3272d292015-11-26 06:25:12 +0300260" -k obtain stack trace between each syscall (experimental)\n\
Luca Clementi327064b2013-07-23 00:11:35 -0700261"
262#endif
Denys Vlasenko38e79bb2013-02-26 11:33:54 +0100263/* ancient, no one should use it
264-F -- attempt to follow vforks (deprecated, use -f)\n\
265 */
Denys Vlasenko61e7aad2012-03-15 13:44:17 +0100266/* this is broken, so don't document it
Michal Ludvig17f8fb32002-11-06 13:17:21 +0000267-z -- print only succeeding syscalls\n\
Denys Vlasenko61e7aad2012-03-15 13:44:17 +0100268 */
Roland McGrathde6e5332003-01-24 04:31:23 +0000269, DEFAULT_ACOLUMN, DEFAULT_STRLEN, DEFAULT_SORTBY);
Elvira Khabirovaa2fdfe92015-11-26 17:18:00 +0300270 exit(0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000271}
272
Dmitry V. Levin5647cf82015-03-29 22:45:03 +0000273static void ATTRIBUTE_NORETURN
274die(void)
Denys Vlasenko75422762011-05-27 14:36:01 +0200275{
276 if (strace_tracer_pid == getpid()) {
277 cflag = 0;
278 cleanup();
279 }
280 exit(1);
281}
282
283static void verror_msg(int err_no, const char *fmt, va_list p)
Denys Vlasenko3454e4b2011-05-23 21:29:03 +0200284{
Denys Vlasenko82bb78c2012-01-24 10:17:18 +0100285 char *msg;
286
Dmitry V. Levin44d05322011-06-09 15:50:41 +0000287 fflush(NULL);
Denys Vlasenko82bb78c2012-01-24 10:17:18 +0100288
289 /* We want to print entire message with single fprintf to ensure
290 * message integrity if stderr is shared with other programs.
291 * Thus we use vasprintf + single fprintf.
292 */
293 msg = NULL;
Denys Vlasenkocfad5432012-01-24 12:48:02 +0100294 if (vasprintf(&msg, fmt, p) >= 0) {
Denys Vlasenko82bb78c2012-01-24 10:17:18 +0100295 if (err_no)
296 fprintf(stderr, "%s: %s: %s\n", progname, msg, strerror(err_no));
297 else
298 fprintf(stderr, "%s: %s\n", progname, msg);
299 free(msg);
300 } else {
301 /* malloc in vasprintf failed, try it without malloc */
302 fprintf(stderr, "%s: ", progname);
303 vfprintf(stderr, fmt, p);
304 if (err_no)
305 fprintf(stderr, ": %s\n", strerror(err_no));
306 else
307 putc('\n', stderr);
308 }
309 /* We don't switch stderr to buffered, thus fprintf(stderr)
310 * always flushes its output and this is not necessary: */
311 /* fflush(stderr); */
Denys Vlasenko75422762011-05-27 14:36:01 +0200312}
Denys Vlasenko3454e4b2011-05-23 21:29:03 +0200313
Denys Vlasenko75422762011-05-27 14:36:01 +0200314void error_msg(const char *fmt, ...)
315{
316 va_list p;
317 va_start(p, fmt);
318 verror_msg(0, fmt, p);
319 va_end(p);
320}
321
322void error_msg_and_die(const char *fmt, ...)
323{
324 va_list p;
325 va_start(p, fmt);
326 verror_msg(0, fmt, p);
327 die();
328}
329
Elvira Khabirovaa2fdfe92015-11-26 17:18:00 +0300330void error_msg_and_help(const char *fmt, ...)
331{
332 if (fmt != NULL) {
333 va_list p;
334 va_start(p, fmt);
335 verror_msg(0, fmt, p);
336 }
337 fprintf(stderr, "Try '%s -h' for more information.\n", progname);
338 die();
339}
340
Denys Vlasenko75422762011-05-27 14:36:01 +0200341void perror_msg(const char *fmt, ...)
342{
343 va_list p;
344 va_start(p, fmt);
345 verror_msg(errno, fmt, p);
346 va_end(p);
347}
348
349void perror_msg_and_die(const char *fmt, ...)
350{
351 va_list p;
352 va_start(p, fmt);
353 verror_msg(errno, fmt, p);
354 die();
Denys Vlasenko3454e4b2011-05-23 21:29:03 +0200355}
356
Dmitry V. Levinccee1692012-03-25 21:49:48 +0000357static void
358error_opt_arg(int opt, const char *arg)
359{
Elvira Khabirovaa2fdfe92015-11-26 17:18:00 +0300360 error_msg_and_help("invalid -%c argument: '%s'", opt, arg);
Dmitry V. Levinccee1692012-03-25 21:49:48 +0000361}
362
Denys Vlasenko5c9d8f42013-02-19 15:30:12 +0100363#if USE_SEIZE
Denys Vlasenko31fa8a22012-01-29 02:01:44 +0100364static int
365ptrace_attach_or_seize(int pid)
366{
367 int r;
368 if (!use_seize)
Denys Vlasenkoc169d942013-07-10 14:33:05 +0200369 return ptrace(PTRACE_ATTACH, pid, 0L, 0L);
Dmitry V. Levin23ce9e42015-02-08 13:05:53 +0000370 r = ptrace(PTRACE_SEIZE, pid, 0L, (unsigned long) ptrace_setoptions);
Denys Vlasenko31fa8a22012-01-29 02:01:44 +0100371 if (r)
372 return r;
Denys Vlasenkoc169d942013-07-10 14:33:05 +0200373 r = ptrace(PTRACE_INTERRUPT, pid, 0L, 0L);
Denys Vlasenko31fa8a22012-01-29 02:01:44 +0100374 return r;
375}
376#else
377# define ptrace_attach_or_seize(pid) ptrace(PTRACE_ATTACH, (pid), 0, 0)
378#endif
379
Denys Vlasenko852f98a2012-03-20 16:26:25 +0100380/*
381 * Used when we want to unblock stopped traced process.
382 * Should be only used with PTRACE_CONT, PTRACE_DETACH and PTRACE_SYSCALL.
383 * Returns 0 on success or if error was ESRCH
384 * (presumably process was killed while we talk to it).
385 * Otherwise prints error message and returns -1.
386 */
387static int
388ptrace_restart(int op, struct tcb *tcp, int sig)
389{
390 int err;
391 const char *msg;
392
393 errno = 0;
394 ptrace(op, tcp->pid, (void *) 0, (long) sig);
395 err = errno;
Denys Vlasenko23506752012-03-21 10:32:49 +0100396 if (!err)
Denys Vlasenko852f98a2012-03-20 16:26:25 +0100397 return 0;
398
Denys Vlasenko852f98a2012-03-20 16:26:25 +0100399 msg = "SYSCALL";
400 if (op == PTRACE_CONT)
401 msg = "CONT";
402 if (op == PTRACE_DETACH)
403 msg = "DETACH";
404#ifdef PTRACE_LISTEN
405 if (op == PTRACE_LISTEN)
406 msg = "LISTEN";
407#endif
Denys Vlasenko23506752012-03-21 10:32:49 +0100408 /*
409 * Why curcol != 0? Otherwise sometimes we get this:
410 *
411 * 10252 kill(10253, SIGKILL) = 0
412 * <ptrace(SYSCALL,10252):No such process>10253 ...next decode...
413 *
414 * 10252 died after we retrieved syscall exit data,
415 * but before we tried to restart it. Log looks ugly.
416 */
Denys Vlasenko6764f8f2012-03-22 09:56:20 +0100417 if (current_tcp && current_tcp->curcol != 0) {
Denys Vlasenko23506752012-03-21 10:32:49 +0100418 tprintf(" <ptrace(%s):%s>\n", msg, strerror(err));
419 line_ended();
420 }
421 if (err == ESRCH)
422 return 0;
423 errno = err;
Denys Vlasenko852f98a2012-03-20 16:26:25 +0100424 perror_msg("ptrace(PTRACE_%s,pid:%d,sig:%d)", msg, tcp->pid, sig);
425 return -1;
426}
427
Denys Vlasenko1f532ab2011-06-22 13:11:23 +0200428static void
Dmitry V. Levin10de62b2006-12-13 21:45:31 +0000429set_cloexec_flag(int fd)
430{
Denys Vlasenko1f532ab2011-06-22 13:11:23 +0200431 int flags, newflags;
Dmitry V. Levin10de62b2006-12-13 21:45:31 +0000432
Denys Vlasenko1f532ab2011-06-22 13:11:23 +0200433 flags = fcntl(fd, F_GETFD);
434 if (flags < 0) {
435 /* Can happen only if fd is bad.
436 * Should never happen: if it does, we have a bug
437 * in the caller. Therefore we just abort
438 * instead of propagating the error.
439 */
440 perror_msg_and_die("fcntl(%d, F_GETFD)", fd);
Dmitry V. Levin10de62b2006-12-13 21:45:31 +0000441 }
442
443 newflags = flags | FD_CLOEXEC;
444 if (flags == newflags)
Denys Vlasenko1f532ab2011-06-22 13:11:23 +0200445 return;
Dmitry V. Levin10de62b2006-12-13 21:45:31 +0000446
Denys Vlasenko1f532ab2011-06-22 13:11:23 +0200447 fcntl(fd, F_SETFD, newflags); /* never fails */
Dmitry V. Levin10de62b2006-12-13 21:45:31 +0000448}
449
Denys Vlasenko75fe85c2012-03-09 15:15:24 +0100450static void kill_save_errno(pid_t pid, int sig)
451{
452 int saved_errno = errno;
453
454 (void) kill(pid, sig);
455 errno = saved_errno;
456}
457
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100458/*
459 * When strace is setuid executable, we have to swap uids
460 * before and after filesystem and process management operations.
461 */
462static void
463swap_uid(void)
464{
465 int euid = geteuid(), uid = getuid();
466
467 if (euid != uid && setreuid(euid, uid) < 0) {
468 perror_msg_and_die("setreuid");
469 }
470}
471
Dmitry V. Levin0506f0f2013-11-12 22:34:42 +0000472#ifdef _LARGEFILE64_SOURCE
Dmitry V. Levind3541302014-02-26 00:01:00 +0000473# ifdef HAVE_FOPEN64
474# define fopen_for_output fopen64
475# else
476# define fopen_for_output fopen
477# endif
Dmitry V. Levinc8938e02013-03-20 21:40:15 +0000478# define struct_stat struct stat64
479# define stat_file stat64
480# define struct_dirent struct dirent64
481# define read_dir readdir64
482# define struct_rlimit struct rlimit64
483# define set_rlimit setrlimit64
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100484#else
485# define fopen_for_output fopen
Dmitry V. Levinc8938e02013-03-20 21:40:15 +0000486# define struct_stat struct stat
487# define stat_file stat
488# define struct_dirent struct dirent
489# define read_dir readdir
490# define struct_rlimit struct rlimit
491# define set_rlimit setrlimit
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100492#endif
493
494static FILE *
495strace_fopen(const char *path)
496{
497 FILE *fp;
498
499 swap_uid();
500 fp = fopen_for_output(path, "w");
501 if (!fp)
502 perror_msg_and_die("Can't fopen '%s'", path);
503 swap_uid();
504 set_cloexec_flag(fileno(fp));
505 return fp;
506}
507
508static int popen_pid = 0;
509
510#ifndef _PATH_BSHELL
511# define _PATH_BSHELL "/bin/sh"
512#endif
513
514/*
515 * We cannot use standard popen(3) here because we have to distinguish
516 * popen child process from other processes we trace, and standard popen(3)
517 * does not export its child's pid.
518 */
519static FILE *
520strace_popen(const char *command)
521{
522 FILE *fp;
Denys Vlasenko519af5a2013-07-02 11:31:24 +0200523 int pid;
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100524 int fds[2];
525
526 swap_uid();
527 if (pipe(fds) < 0)
528 perror_msg_and_die("pipe");
529
530 set_cloexec_flag(fds[1]); /* never fails */
531
Denys Vlasenko519af5a2013-07-02 11:31:24 +0200532 pid = vfork();
533 if (pid < 0)
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100534 perror_msg_and_die("vfork");
535
Denys Vlasenko519af5a2013-07-02 11:31:24 +0200536 if (pid == 0) {
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100537 /* child */
538 close(fds[1]);
539 if (fds[0] != 0) {
540 if (dup2(fds[0], 0))
541 perror_msg_and_die("dup2");
542 close(fds[0]);
543 }
544 execl(_PATH_BSHELL, "sh", "-c", command, NULL);
545 perror_msg_and_die("Can't execute '%s'", _PATH_BSHELL);
546 }
547
548 /* parent */
Denys Vlasenko519af5a2013-07-02 11:31:24 +0200549 popen_pid = pid;
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100550 close(fds[0]);
551 swap_uid();
552 fp = fdopen(fds[1], "w");
553 if (!fp)
554 die_out_of_memory();
555 return fp;
556}
557
Denys Vlasenko2e856a12012-03-12 23:02:26 +0100558void
559tprintf(const char *fmt, ...)
560{
561 va_list args;
562
563 va_start(args, fmt);
Denys Vlasenko6764f8f2012-03-22 09:56:20 +0100564 if (current_tcp) {
Denys Vlasenko6e4f3c12012-04-16 18:22:19 +0200565 int n = strace_vfprintf(current_tcp->outf, fmt, args);
Denys Vlasenko2e856a12012-03-12 23:02:26 +0100566 if (n < 0) {
Denys Vlasenko6764f8f2012-03-22 09:56:20 +0100567 if (current_tcp->outf != stderr)
Dmitry V. Levin9a71bcd2012-09-17 23:20:54 +0000568 perror_msg("%s", outfname);
Denys Vlasenko2e856a12012-03-12 23:02:26 +0100569 } else
Denys Vlasenko6764f8f2012-03-22 09:56:20 +0100570 current_tcp->curcol += n;
Denys Vlasenko2e856a12012-03-12 23:02:26 +0100571 }
572 va_end(args);
573}
574
Dmitry V. Levind3541302014-02-26 00:01:00 +0000575#ifndef HAVE_FPUTS_UNLOCKED
576# define fputs_unlocked fputs
577#endif
578
Denys Vlasenko2e856a12012-03-12 23:02:26 +0100579void
580tprints(const char *str)
581{
Denys Vlasenko6764f8f2012-03-22 09:56:20 +0100582 if (current_tcp) {
Denys Vlasenko142aee02012-04-16 18:10:15 +0200583 int n = fputs_unlocked(str, current_tcp->outf);
Denys Vlasenko2e856a12012-03-12 23:02:26 +0100584 if (n >= 0) {
Denys Vlasenko6764f8f2012-03-22 09:56:20 +0100585 current_tcp->curcol += strlen(str);
Denys Vlasenko2e856a12012-03-12 23:02:26 +0100586 return;
587 }
Denys Vlasenko6764f8f2012-03-22 09:56:20 +0100588 if (current_tcp->outf != stderr)
Dmitry V. Levin9a71bcd2012-09-17 23:20:54 +0000589 perror_msg("%s", outfname);
Denys Vlasenko2e856a12012-03-12 23:02:26 +0100590 }
591}
592
593void
Denys Vlasenko7de265d2012-03-13 11:44:31 +0100594line_ended(void)
595{
Denys Vlasenko6764f8f2012-03-22 09:56:20 +0100596 if (current_tcp) {
597 current_tcp->curcol = 0;
598 fflush(current_tcp->outf);
599 }
600 if (printing_tcp) {
601 printing_tcp->curcol = 0;
602 printing_tcp = NULL;
603 }
Denys Vlasenko7de265d2012-03-13 11:44:31 +0100604}
605
606void
Denys Vlasenko2e856a12012-03-12 23:02:26 +0100607printleader(struct tcb *tcp)
608{
Denys Vlasenko7de265d2012-03-13 11:44:31 +0100609 /* If -ff, "previous tcb we printed" is always the same as current,
610 * because we have per-tcb output files.
611 */
612 if (followfork >= 2)
613 printing_tcp = tcp;
614
Denys Vlasenko2e856a12012-03-12 23:02:26 +0100615 if (printing_tcp) {
Denys Vlasenko6764f8f2012-03-22 09:56:20 +0100616 current_tcp = printing_tcp;
Denys Vlasenko7de265d2012-03-13 11:44:31 +0100617 if (printing_tcp->curcol != 0 && (followfork < 2 || printing_tcp == tcp)) {
618 /*
619 * case 1: we have a shared log (i.e. not -ff), and last line
620 * wasn't finished (same or different tcb, doesn't matter).
621 * case 2: split log, we are the same tcb, but our last line
622 * didn't finish ("SIGKILL nuked us after syscall entry" etc).
623 */
Denys Vlasenko2e856a12012-03-12 23:02:26 +0100624 tprints(" <unfinished ...>\n");
Denys Vlasenko7de265d2012-03-13 11:44:31 +0100625 printing_tcp->curcol = 0;
Denys Vlasenko2e856a12012-03-12 23:02:26 +0100626 }
627 }
628
629 printing_tcp = tcp;
Denys Vlasenko6764f8f2012-03-22 09:56:20 +0100630 current_tcp = tcp;
631 current_tcp->curcol = 0;
Denys Vlasenko2e856a12012-03-12 23:02:26 +0100632
633 if (print_pid_pfx)
634 tprintf("%-5d ", tcp->pid);
635 else if (nprocs > 1 && !outfname)
636 tprintf("[pid %5u] ", tcp->pid);
637
638 if (tflag) {
639 char str[sizeof("HH:MM:SS")];
640 struct timeval tv, dtv;
641 static struct timeval otv;
642
643 gettimeofday(&tv, NULL);
644 if (rflag) {
645 if (otv.tv_sec == 0)
646 otv = tv;
647 tv_sub(&dtv, &tv, &otv);
648 tprintf("%6ld.%06ld ",
649 (long) dtv.tv_sec, (long) dtv.tv_usec);
650 otv = tv;
651 }
652 else if (tflag > 2) {
653 tprintf("%ld.%06ld ",
654 (long) tv.tv_sec, (long) tv.tv_usec);
655 }
656 else {
657 time_t local = tv.tv_sec;
658 strftime(str, sizeof(str), "%T", localtime(&local));
659 if (tflag > 1)
660 tprintf("%s.%06ld ", str, (long) tv.tv_usec);
661 else
662 tprintf("%s ", str);
663 }
664 }
665 if (iflag)
Denys Vlasenko5a2483b2013-07-01 12:49:14 +0200666 print_pc(tcp);
Denys Vlasenko2e856a12012-03-12 23:02:26 +0100667}
668
669void
670tabto(void)
671{
Denys Vlasenko6764f8f2012-03-22 09:56:20 +0100672 if (current_tcp->curcol < acolumn)
673 tprints(acolumn_spaces + current_tcp->curcol);
Denys Vlasenko2e856a12012-03-12 23:02:26 +0100674}
675
Denys Vlasenko3db3b262012-03-16 15:15:14 +0100676/* Should be only called directly *after successful attach* to a tracee.
677 * Otherwise, "strace -oFILE -ff -p<nonexistant_pid>"
678 * may create bogus empty FILE.<nonexistant_pid>, and then die.
679 */
Denys Vlasenko3d5ed412011-06-22 13:17:16 +0200680static void
Dmitry V. Levin10de62b2006-12-13 21:45:31 +0000681newoutf(struct tcb *tcp)
682{
Denys Vlasenko6764f8f2012-03-22 09:56:20 +0100683 tcp->outf = shared_log; /* if not -ff mode, the same file is for all */
Denys Vlasenko3db3b262012-03-16 15:15:14 +0100684 if (followfork >= 2) {
Denys Vlasenko7a8bf062009-01-29 20:38:20 +0000685 char name[520 + sizeof(int) * 3];
Denys Vlasenko7a8bf062009-01-29 20:38:20 +0000686 sprintf(name, "%.512s.%u", outfname, tcp->pid);
Denys Vlasenko3d5ed412011-06-22 13:17:16 +0200687 tcp->outf = strace_fopen(name);
Dmitry V. Levin10de62b2006-12-13 21:45:31 +0000688 }
Dmitry V. Levin10de62b2006-12-13 21:45:31 +0000689}
690
Denys Vlasenko558e5122012-03-12 23:32:16 +0100691static void
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100692expand_tcbtab(void)
693{
Nahim El Atmanic811fa62016-03-05 13:35:57 +0100694 /* Allocate some (more) TCBs (and expand the table).
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100695 We don't want to relocate the TCBs because our
696 callers have pointers and it would be a pain.
697 So tcbtab is a table of pointers. Since we never
698 free the TCBs, we allocate a single chunk of many. */
Nahim El Atmanic811fa62016-03-05 13:35:57 +0100699 unsigned int new_tcbtabsize, alloc_tcbtabsize;
700 struct tcb *newtcbs;
701
702 if (tcbtabsize) {
703 alloc_tcbtabsize = tcbtabsize;
704 new_tcbtabsize = tcbtabsize * 2;
705 } else {
706 new_tcbtabsize = alloc_tcbtabsize = 1;
707 }
708
709 newtcbs = xcalloc(alloc_tcbtabsize, sizeof(newtcbs[0]));
710 tcbtab = xreallocarray(tcbtab, new_tcbtabsize, sizeof(tcbtab[0]));
711 while (tcbtabsize < new_tcbtabsize)
712 tcbtab[tcbtabsize++] = newtcbs++;
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100713}
714
715static struct tcb *
Denys Vlasenko3db3b262012-03-16 15:15:14 +0100716alloctcb(int pid)
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100717{
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +0000718 unsigned int i;
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100719 struct tcb *tcp;
720
721 if (nprocs == tcbtabsize)
722 expand_tcbtab();
723
724 for (i = 0; i < tcbtabsize; i++) {
725 tcp = tcbtab[i];
Denys Vlasenkofadbf662013-06-26 14:14:29 +0200726 if (!tcp->pid) {
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100727 memset(tcp, 0, sizeof(*tcp));
728 tcp->pid = pid;
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100729#if SUPPORTED_PERSONALITIES > 1
730 tcp->currpers = current_personality;
731#endif
Luca Clementi327064b2013-07-23 00:11:35 -0700732
733#ifdef USE_LIBUNWIND
734 if (stack_trace_enabled)
Masatake YAMATO61413922014-04-16 15:33:02 +0900735 unwind_tcb_init(tcp);
Luca Clementi327064b2013-07-23 00:11:35 -0700736#endif
737
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100738 nprocs++;
739 if (debug_flag)
Dmitry V. Levin6c8ef052015-05-25 22:51:19 +0000740 error_msg("new tcb for pid %d, active tcbs:%d",
741 tcp->pid, nprocs);
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100742 return tcp;
743 }
744 }
Denys Vlasenko3db3b262012-03-16 15:15:14 +0100745 error_msg_and_die("bug in alloctcb");
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100746}
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100747
748static void
749droptcb(struct tcb *tcp)
750{
751 if (tcp->pid == 0)
752 return;
753
Masatake YAMATO2b09df92014-04-16 15:33:08 +0900754#ifdef USE_LIBUNWIND
755 if (stack_trace_enabled) {
756 unwind_tcb_fin(tcp);
757 }
758#endif
759
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100760 nprocs--;
761 if (debug_flag)
Dmitry V. Levin6c8ef052015-05-25 22:51:19 +0000762 error_msg("dropped tcb for pid %d, %d remain",
763 tcp->pid, nprocs);
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100764
765 if (tcp->outf) {
Denys Vlasenko8511f2a2012-03-22 09:35:51 +0100766 if (followfork >= 2) {
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100767 if (tcp->curcol != 0)
768 fprintf(tcp->outf, " <detached ...>\n");
769 fclose(tcp->outf);
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100770 } else {
771 if (printing_tcp == tcp && tcp->curcol != 0)
772 fprintf(tcp->outf, " <detached ...>\n");
773 fflush(tcp->outf);
774 }
775 }
776
Denys Vlasenko6764f8f2012-03-22 09:56:20 +0100777 if (current_tcp == tcp)
778 current_tcp = NULL;
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100779 if (printing_tcp == tcp)
780 printing_tcp = NULL;
781
782 memset(tcp, 0, sizeof(*tcp));
783}
784
Denys Vlasenkof1669e72013-06-18 18:09:39 +0200785/* Detach traced process.
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100786 * Never call DETACH twice on the same process as both unattached and
787 * attached-unstopped processes give the same ESRCH. For unattached process we
788 * would SIGSTOP it and wait for its SIGSTOP notification forever.
789 */
Denys Vlasenko4a9ba982013-06-20 11:20:23 +0200790static void
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100791detach(struct tcb *tcp)
792{
793 int error;
Denys Vlasenkoe2567d52013-06-21 16:11:10 +0200794 int status;
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100795
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100796 /*
797 * Linux wrongly insists the child be stopped
798 * before detaching. Arghh. We go through hoops
799 * to make a clean break of things.
800 */
801#if defined(SPARC)
Denys Vlasenko978fbc92012-09-13 10:28:43 +0200802# undef PTRACE_DETACH
803# define PTRACE_DETACH PTRACE_SUNDETACH
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100804#endif
805
Denys Vlasenkoe2567d52013-06-21 16:11:10 +0200806 if (!(tcp->flags & TCB_ATTACHED))
807 goto drop;
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100808
Denys Vlasenkoe2567d52013-06-21 16:11:10 +0200809 /* We attached but possibly didn't see the expected SIGSTOP.
810 * We must catch exactly one as otherwise the detached process
811 * would be left stopped (process state T).
812 */
813 if (tcp->flags & TCB_IGNORE_ONE_SIGSTOP)
814 goto wait_loop;
815
816 error = ptrace(PTRACE_DETACH, tcp->pid, 0, 0);
817 if (!error) {
818 /* On a clear day, you can see forever. */
819 goto drop;
820 }
821 if (errno != ESRCH) {
822 /* Shouldn't happen. */
823 perror_msg("detach: ptrace(PTRACE_DETACH,%u)", tcp->pid);
824 goto drop;
825 }
826 /* ESRCH: process is either not stopped or doesn't exist. */
827 if (my_tkill(tcp->pid, 0) < 0) {
828 if (errno != ESRCH)
829 /* Shouldn't happen. */
830 perror_msg("detach: tkill(%u,0)", tcp->pid);
831 /* else: process doesn't exist. */
832 goto drop;
833 }
834 /* Process is not stopped, need to stop it. */
835 if (use_seize) {
836 /*
837 * With SEIZE, tracee can be in group-stop already.
838 * In this state sending it another SIGSTOP does nothing.
839 * Need to use INTERRUPT.
840 * Testcase: trying to ^C a "strace -p <stopped_process>".
841 */
842 error = ptrace(PTRACE_INTERRUPT, tcp->pid, 0, 0);
843 if (!error)
844 goto wait_loop;
845 if (errno != ESRCH)
846 perror_msg("detach: ptrace(PTRACE_INTERRUPT,%u)", tcp->pid);
847 }
848 else {
849 error = my_tkill(tcp->pid, SIGSTOP);
850 if (!error)
851 goto wait_loop;
852 if (errno != ESRCH)
853 perror_msg("detach: tkill(%u,SIGSTOP)", tcp->pid);
854 }
855 /* Either process doesn't exist, or some weird error. */
856 goto drop;
857
Denys Vlasenkoa2de9da2013-06-21 15:50:41 +0200858 wait_loop:
Denys Vlasenkoe2567d52013-06-21 16:11:10 +0200859 /* We end up here in three cases:
860 * 1. We sent PTRACE_INTERRUPT (use_seize case)
861 * 2. We sent SIGSTOP (!use_seize)
862 * 3. Attach SIGSTOP was already pending (TCB_IGNORE_ONE_SIGSTOP set)
863 */
864 for (;;) {
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +0000865 unsigned int sig;
Denys Vlasenkoe2567d52013-06-21 16:11:10 +0200866 if (waitpid(tcp->pid, &status, __WALL) < 0) {
867 if (errno == EINTR)
868 continue;
869 /*
870 * if (errno == ECHILD) break;
871 * ^^^ WRONG! We expect this PID to exist,
872 * and want to emit a message otherwise:
873 */
874 perror_msg("detach: waitpid(%u)", tcp->pid);
875 break;
876 }
877 if (!WIFSTOPPED(status)) {
878 /*
879 * Tracee exited or was killed by signal.
880 * We shouldn't normally reach this place:
881 * we don't want to consume exit status.
882 * Consider "strace -p PID" being ^C-ed:
883 * we want merely to detach from PID.
884 *
885 * However, we _can_ end up here if tracee
886 * was SIGKILLed.
887 */
888 break;
889 }
890 sig = WSTOPSIG(status);
891 if (debug_flag)
Dmitry V. Levin6c8ef052015-05-25 22:51:19 +0000892 error_msg("detach wait: event:%d sig:%d",
893 (unsigned)status >> 16, sig);
Denys Vlasenkoe2567d52013-06-21 16:11:10 +0200894 if (use_seize) {
895 unsigned event = (unsigned)status >> 16;
896 if (event == PTRACE_EVENT_STOP /*&& sig == SIGTRAP*/) {
Denys Vlasenkofdfa47a2013-06-20 12:10:21 +0200897 /*
Denys Vlasenkoe2567d52013-06-21 16:11:10 +0200898 * sig == SIGTRAP: PTRACE_INTERRUPT stop.
899 * sig == other: process was already stopped
900 * with this stopping sig (see tests/detach-stopped).
901 * Looks like re-injecting this sig is not necessary
902 * in DETACH for the tracee to remain stopped.
Denys Vlasenkofdfa47a2013-06-20 12:10:21 +0200903 */
Denys Vlasenkoe2567d52013-06-21 16:11:10 +0200904 sig = 0;
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100905 }
Denys Vlasenkoe2567d52013-06-21 16:11:10 +0200906 /*
907 * PTRACE_INTERRUPT is not guaranteed to produce
908 * the above event if other ptrace-stop is pending.
909 * See tests/detach-sleeping testcase:
910 * strace got SIGINT while tracee is sleeping.
911 * We sent PTRACE_INTERRUPT.
912 * We see syscall exit, not PTRACE_INTERRUPT stop.
913 * We won't get PTRACE_INTERRUPT stop
914 * if we would CONT now. Need to DETACH.
915 */
Denys Vlasenko69e27ef2013-06-19 15:31:39 +0200916 if (sig == syscall_trap_sig)
917 sig = 0;
Denys Vlasenkoe2567d52013-06-21 16:11:10 +0200918 /* else: not sure in which case we can be here.
919 * Signal stop? Inject it while detaching.
920 */
921 ptrace_restart(PTRACE_DETACH, tcp, sig);
922 break;
923 }
924 /* Note: this check has to be after use_seize check */
925 /* (else, in use_seize case SIGSTOP will be mistreated) */
926 if (sig == SIGSTOP) {
927 /* Detach, suppressing SIGSTOP */
928 ptrace_restart(PTRACE_DETACH, tcp, 0);
929 break;
930 }
931 if (sig == syscall_trap_sig)
932 sig = 0;
933 /* Can't detach just yet, may need to wait for SIGSTOP */
934 error = ptrace_restart(PTRACE_CONT, tcp, sig);
935 if (error < 0) {
936 /* Should not happen.
937 * Note: ptrace_restart returns 0 on ESRCH, so it's not it.
938 * ptrace_restart already emitted error message.
939 */
940 break;
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100941 }
942 }
943
Denys Vlasenkoe2567d52013-06-21 16:11:10 +0200944 drop:
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100945 if (!qflag && (tcp->flags & TCB_ATTACHED))
Dmitry V. Levin6c8ef052015-05-25 22:51:19 +0000946 error_msg("Process %u detached", tcp->pid);
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100947
948 droptcb(tcp);
Denys Vlasenko800ec8f2012-03-16 15:11:34 +0100949}
950
951static void
Denys Vlasenko558e5122012-03-12 23:32:16 +0100952process_opt_p_list(char *opt)
Denys Vlasenkoe8172b72012-03-09 13:01:04 +0100953{
954 while (*opt) {
955 /*
956 * We accept -p PID,PID; -p "`pidof PROG`"; -p "`pgrep PROG`".
957 * pidof uses space as delim, pgrep uses newline. :(
958 */
959 int pid;
Denys Vlasenkoe8172b72012-03-09 13:01:04 +0100960 char *delim = opt + strcspn(opt, ", \n\t");
961 char c = *delim;
962
963 *delim = '\0';
Dmitry V. Levinccee1692012-03-25 21:49:48 +0000964 pid = string_to_uint(opt);
Denys Vlasenkoe8172b72012-03-09 13:01:04 +0100965 if (pid <= 0) {
Dmitry V. Levinccee1692012-03-25 21:49:48 +0000966 error_msg_and_die("Invalid process id: '%s'", opt);
Denys Vlasenkoe8172b72012-03-09 13:01:04 +0100967 }
968 if (pid == strace_tracer_pid) {
Dmitry V. Levinccee1692012-03-25 21:49:48 +0000969 error_msg_and_die("I'm sorry, I can't let you do that, Dave.");
Denys Vlasenkoe8172b72012-03-09 13:01:04 +0100970 }
971 *delim = c;
Denys Vlasenko3db3b262012-03-16 15:15:14 +0100972 alloctcb(pid);
Denys Vlasenkoe8172b72012-03-09 13:01:04 +0100973 if (c == '\0')
974 break;
975 opt = delim + 1;
976 }
977}
978
Roland McGrath02203312007-06-11 22:06:31 +0000979static void
980startup_attach(void)
981{
Dmitry V. Levinfa8c2862016-01-22 14:37:14 +0000982 pid_t parent_pid = strace_tracer_pid;
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +0000983 unsigned int tcbi;
Roland McGrath02203312007-06-11 22:06:31 +0000984 struct tcb *tcp;
985
986 /*
987 * Block user interruptions as we would leave the traced
988 * process stopped (process state T) if we would terminate in
Denys Vlasenko2e968c02011-09-01 10:23:09 +0200989 * between PTRACE_ATTACH and wait4() on SIGSTOP.
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200990 * We rely on cleanup() from this point on.
Roland McGrath02203312007-06-11 22:06:31 +0000991 */
992 if (interactive)
993 sigprocmask(SIG_BLOCK, &blocked_set, NULL);
994
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +0000995 if (daemonized_tracer) {
996 pid_t pid = fork();
997 if (pid < 0) {
Denys Vlasenko014ca3a2011-09-02 16:19:30 +0200998 perror_msg_and_die("fork");
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +0000999 }
1000 if (pid) { /* parent */
1001 /*
Denys Vlasenko75422762011-05-27 14:36:01 +02001002 * Wait for grandchild to attach to straced process
1003 * (grandparent). Grandchild SIGKILLs us after it attached.
1004 * Grandparent's wait() is unblocked by our death,
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +00001005 * it proceeds to exec the straced program.
1006 */
1007 pause();
1008 _exit(0); /* paranoia */
1009 }
Denys Vlasenko75422762011-05-27 14:36:01 +02001010 /* grandchild */
1011 /* We will be the tracer process. Remember our new pid: */
1012 strace_tracer_pid = getpid();
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +00001013 }
1014
Roland McGrath02203312007-06-11 22:06:31 +00001015 for (tcbi = 0; tcbi < tcbtabsize; tcbi++) {
1016 tcp = tcbtab[tcbi];
Denys Vlasenko44f87ef2011-08-17 15:18:21 +02001017
Denys Vlasenkofadbf662013-06-26 14:14:29 +02001018 if (!tcp->pid)
Denys Vlasenko75fe85c2012-03-09 15:15:24 +01001019 continue;
1020
Denys Vlasenkod116a732011-09-05 14:01:33 +02001021 /* Is this a process we should attach to, but not yet attached? */
Denys Vlasenko75fe85c2012-03-09 15:15:24 +01001022 if (tcp->flags & TCB_ATTACHED)
1023 continue; /* no, we already attached it */
Denys Vlasenkod116a732011-09-05 14:01:33 +02001024
Dmitry V. Levinfa8c2862016-01-22 14:37:14 +00001025 if (tcp->pid == parent_pid || tcp->pid == strace_tracer_pid) {
1026 errno = EPERM;
1027 perror_msg("attach: %d", tcp->pid);
1028 droptcb(tcp);
1029 continue;
1030 }
1031 if (followfork && tcp->pid != strace_child) {
Denys Vlasenko7a8bf062009-01-29 20:38:20 +00001032 char procdir[sizeof("/proc/%d/task") + sizeof(int) * 3];
Roland McGrath02203312007-06-11 22:06:31 +00001033 DIR *dir;
1034
1035 sprintf(procdir, "/proc/%d/task", tcp->pid);
1036 dir = opendir(procdir);
1037 if (dir != NULL) {
1038 unsigned int ntid = 0, nerr = 0;
Dmitry V. Levinc8938e02013-03-20 21:40:15 +00001039 struct_dirent *de;
Denys Vlasenko381dbc22011-09-05 13:59:39 +02001040
Dmitry V. Levinc8938e02013-03-20 21:40:15 +00001041 while ((de = read_dir(dir)) != NULL) {
Denys Vlasenko381dbc22011-09-05 13:59:39 +02001042 struct tcb *cur_tcp;
1043 int tid;
1044
Denys Vlasenko7a8bf062009-01-29 20:38:20 +00001045 if (de->d_fileno == 0)
Roland McGrath02203312007-06-11 22:06:31 +00001046 continue;
Dmitry V. Levinccee1692012-03-25 21:49:48 +00001047 /* we trust /proc filesystem */
Roland McGrath02203312007-06-11 22:06:31 +00001048 tid = atoi(de->d_name);
1049 if (tid <= 0)
1050 continue;
1051 ++ntid;
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001052 if (ptrace_attach_or_seize(tid) < 0) {
Roland McGrath02203312007-06-11 22:06:31 +00001053 ++nerr;
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001054 if (debug_flag)
Dmitry V. Levin6c8ef052015-05-25 22:51:19 +00001055 error_msg("attach to pid %d failed", tid);
Denys Vlasenko381dbc22011-09-05 13:59:39 +02001056 continue;
Denys Vlasenkof95397a2011-06-24 16:51:16 +02001057 }
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001058 if (debug_flag)
Dmitry V. Levin6c8ef052015-05-25 22:51:19 +00001059 error_msg("attach to pid %d succeeded", tid);
Denys Vlasenko381dbc22011-09-05 13:59:39 +02001060 cur_tcp = tcp;
1061 if (tid != tcp->pid)
1062 cur_tcp = alloctcb(tid);
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001063 cur_tcp->flags |= TCB_ATTACHED | TCB_STARTUP | post_attach_sigstop;
Denys Vlasenko3db3b262012-03-16 15:15:14 +01001064 newoutf(cur_tcp);
Roland McGrath02203312007-06-11 22:06:31 +00001065 }
1066 closedir(dir);
Denys Vlasenko381dbc22011-09-05 13:59:39 +02001067 if (interactive) {
1068 sigprocmask(SIG_SETMASK, &empty_set, NULL);
1069 if (interrupted)
1070 goto ret;
1071 sigprocmask(SIG_BLOCK, &blocked_set, NULL);
1072 }
Denys Vlasenko7a8bf062009-01-29 20:38:20 +00001073 ntid -= nerr;
1074 if (ntid == 0) {
Denys Vlasenko905e8e02013-02-26 12:30:09 +01001075 perror_msg("attach: ptrace(PTRACE_ATTACH, ...)");
Roland McGrath02203312007-06-11 22:06:31 +00001076 droptcb(tcp);
1077 continue;
1078 }
1079 if (!qflag) {
Dmitry V. Levinbb746ff2015-11-26 01:54:53 +00001080 if (ntid > 1)
1081 error_msg("Process %u attached"
1082 " with %u threads",
1083 tcp->pid, ntid);
1084 else
1085 error_msg("Process %u attached",
1086 tcp->pid);
Roland McGrath02203312007-06-11 22:06:31 +00001087 }
Denys Vlasenko75fe85c2012-03-09 15:15:24 +01001088 if (!(tcp->flags & TCB_ATTACHED)) {
Denys Vlasenkof88837a2011-09-05 14:05:46 +02001089 /* -p PID, we failed to attach to PID itself
1090 * but did attach to some of its sibling threads.
1091 * Drop PID's tcp.
1092 */
1093 droptcb(tcp);
1094 }
Roland McGrath02203312007-06-11 22:06:31 +00001095 continue;
Denys Vlasenko7a8bf062009-01-29 20:38:20 +00001096 } /* if (opendir worked) */
1097 } /* if (-f) */
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001098 if (ptrace_attach_or_seize(tcp->pid) < 0) {
Denys Vlasenko905e8e02013-02-26 12:30:09 +01001099 perror_msg("attach: ptrace(PTRACE_ATTACH, ...)");
Roland McGrath02203312007-06-11 22:06:31 +00001100 droptcb(tcp);
1101 continue;
1102 }
Denys Vlasenko75fe85c2012-03-09 15:15:24 +01001103 tcp->flags |= TCB_ATTACHED | TCB_STARTUP | post_attach_sigstop;
Denys Vlasenko3db3b262012-03-16 15:15:14 +01001104 newoutf(tcp);
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001105 if (debug_flag)
Dmitry V. Levin6c8ef052015-05-25 22:51:19 +00001106 error_msg("attach to pid %d (main) succeeded", tcp->pid);
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +00001107
Roland McGrath02203312007-06-11 22:06:31 +00001108 if (!qflag)
Dmitry V. Levin6c8ef052015-05-25 22:51:19 +00001109 error_msg("Process %u attached", tcp->pid);
Denys Vlasenkof95397a2011-06-24 16:51:16 +02001110 } /* for each tcbtab[] */
Roland McGrath02203312007-06-11 22:06:31 +00001111
Dmitry V. Levinfa8c2862016-01-22 14:37:14 +00001112 if (daemonized_tracer) {
1113 /*
1114 * Make parent go away.
1115 * Also makes grandparent's wait() unblock.
1116 */
1117 kill(parent_pid, SIGKILL);
1118 strace_child = 0;
1119 }
1120
Denys Vlasenko44f87ef2011-08-17 15:18:21 +02001121 ret:
Roland McGrath02203312007-06-11 22:06:31 +00001122 if (interactive)
1123 sigprocmask(SIG_SETMASK, &empty_set, NULL);
1124}
1125
Denys Vlasenkof909c8d2013-02-19 16:30:31 +01001126/* Stack-o-phobic exec helper, in the hope to work around
1127 * NOMMU + "daemonized tracer" difficulty.
1128 */
1129struct exec_params {
1130 int fd_to_close;
1131 uid_t run_euid;
1132 gid_t run_egid;
1133 char **argv;
1134 char *pathname;
1135};
1136static struct exec_params params_for_tracee;
Dmitry V. Levin5647cf82015-03-29 22:45:03 +00001137
1138static void ATTRIBUTE_NOINLINE ATTRIBUTE_NORETURN
Denys Vlasenkof909c8d2013-02-19 16:30:31 +01001139exec_or_die(void)
1140{
1141 struct exec_params *params = &params_for_tracee;
1142
1143 if (params->fd_to_close >= 0)
1144 close(params->fd_to_close);
1145 if (!daemonized_tracer && !use_seize) {
1146 if (ptrace(PTRACE_TRACEME, 0L, 0L, 0L) < 0) {
1147 perror_msg_and_die("ptrace(PTRACE_TRACEME, ...)");
1148 }
1149 }
1150
1151 if (username != NULL) {
1152 /*
1153 * It is important to set groups before we
1154 * lose privileges on setuid.
1155 */
1156 if (initgroups(username, run_gid) < 0) {
1157 perror_msg_and_die("initgroups");
1158 }
1159 if (setregid(run_gid, params->run_egid) < 0) {
1160 perror_msg_and_die("setregid");
1161 }
1162 if (setreuid(run_uid, params->run_euid) < 0) {
1163 perror_msg_and_die("setreuid");
1164 }
1165 }
1166 else if (geteuid() != 0)
1167 if (setreuid(run_uid, run_uid) < 0) {
1168 perror_msg_and_die("setreuid");
1169 }
1170
1171 if (!daemonized_tracer) {
1172 /*
1173 * Induce a ptrace stop. Tracer (our parent)
1174 * will resume us with PTRACE_SYSCALL and display
1175 * the immediately following execve syscall.
1176 * Can't do this on NOMMU systems, we are after
1177 * vfork: parent is blocked, stopping would deadlock.
1178 */
1179 if (!NOMMU_SYSTEM)
1180 kill(getpid(), SIGSTOP);
1181 } else {
1182 alarm(3);
1183 /* we depend on SIGCHLD set to SIG_DFL by init code */
1184 /* if it happens to be SIG_IGN'ed, wait won't block */
1185 wait(NULL);
1186 alarm(0);
1187 }
1188
1189 execv(params->pathname, params->argv);
1190 perror_msg_and_die("exec");
1191}
1192
Dmitry V. Levin6aedd422016-02-08 17:46:58 +00001193static int
1194open_dummy_desc(void)
Denys Vlasenko0736d4e2016-02-08 18:08:46 +01001195{
Dmitry V. Levin6aedd422016-02-08 17:46:58 +00001196 int fds[2];
1197
1198 if (pipe(fds))
1199 perror_msg_and_die("pipe");
1200 close(fds[1]);
1201 return fds[0];
Denys Vlasenko0736d4e2016-02-08 18:08:46 +01001202}
1203
Roland McGrath02203312007-06-11 22:06:31 +00001204static void
Denys Vlasenko12014262011-05-30 14:00:14 +02001205startup_child(char **argv)
Roland McGrath02203312007-06-11 22:06:31 +00001206{
Dmitry V. Levinc8938e02013-03-20 21:40:15 +00001207 struct_stat statbuf;
Roland McGrath02203312007-06-11 22:06:31 +00001208 const char *filename;
Dmitry V. Levin1dbd39e2015-02-28 14:50:09 +00001209 size_t filename_len;
Dmitry V. Levin025b3582014-11-21 22:28:34 +00001210 char pathname[PATH_MAX];
Denys Vlasenkof909c8d2013-02-19 16:30:31 +01001211 int pid;
Roland McGrath02203312007-06-11 22:06:31 +00001212 struct tcb *tcp;
1213
1214 filename = argv[0];
Dmitry V. Levin1dbd39e2015-02-28 14:50:09 +00001215 filename_len = strlen(filename);
1216
1217 if (filename_len > sizeof(pathname) - 1) {
1218 errno = ENAMETOOLONG;
1219 perror_msg_and_die("exec");
1220 }
Roland McGrath02203312007-06-11 22:06:31 +00001221 if (strchr(filename, '/')) {
Roland McGrath02203312007-06-11 22:06:31 +00001222 strcpy(pathname, filename);
1223 }
1224#ifdef USE_DEBUGGING_EXEC
1225 /*
1226 * Debuggers customarily check the current directory
1227 * first regardless of the path but doing that gives
1228 * security geeks a panic attack.
1229 */
Dmitry V. Levinc8938e02013-03-20 21:40:15 +00001230 else if (stat_file(filename, &statbuf) == 0)
Roland McGrath02203312007-06-11 22:06:31 +00001231 strcpy(pathname, filename);
1232#endif /* USE_DEBUGGING_EXEC */
1233 else {
Dmitry V. Levin30145dd2010-09-06 22:08:24 +00001234 const char *path;
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +00001235 size_t m, n, len;
Roland McGrath02203312007-06-11 22:06:31 +00001236
1237 for (path = getenv("PATH"); path && *path; path += m) {
Denys Vlasenko4f3df072012-01-29 22:38:35 +01001238 const char *colon = strchr(path, ':');
1239 if (colon) {
1240 n = colon - path;
Roland McGrath02203312007-06-11 22:06:31 +00001241 m = n + 1;
1242 }
1243 else
1244 m = n = strlen(path);
1245 if (n == 0) {
Dmitry V. Levin025b3582014-11-21 22:28:34 +00001246 if (!getcwd(pathname, PATH_MAX))
Roland McGrath02203312007-06-11 22:06:31 +00001247 continue;
1248 len = strlen(pathname);
1249 }
1250 else if (n > sizeof pathname - 1)
1251 continue;
1252 else {
1253 strncpy(pathname, path, n);
1254 len = n;
1255 }
1256 if (len && pathname[len - 1] != '/')
1257 pathname[len++] = '/';
Dmitry V. Levin1dbd39e2015-02-28 14:50:09 +00001258 if (filename_len + len > sizeof(pathname) - 1)
1259 continue;
Roland McGrath02203312007-06-11 22:06:31 +00001260 strcpy(pathname + len, filename);
Dmitry V. Levinc8938e02013-03-20 21:40:15 +00001261 if (stat_file(pathname, &statbuf) == 0 &&
Roland McGrath02203312007-06-11 22:06:31 +00001262 /* Accept only regular files
1263 with some execute bits set.
1264 XXX not perfect, might still fail */
1265 S_ISREG(statbuf.st_mode) &&
1266 (statbuf.st_mode & 0111))
1267 break;
1268 }
Dmitry V. Levin1dbd39e2015-02-28 14:50:09 +00001269 if (!path || !*path)
1270 pathname[0] = '\0';
Roland McGrath02203312007-06-11 22:06:31 +00001271 }
Dmitry V. Levinc8938e02013-03-20 21:40:15 +00001272 if (stat_file(pathname, &statbuf) < 0) {
Denys Vlasenkocb2ad002011-06-23 13:05:29 +02001273 perror_msg_and_die("Can't stat '%s'", filename);
Roland McGrath02203312007-06-11 22:06:31 +00001274 }
Denys Vlasenkof909c8d2013-02-19 16:30:31 +01001275
1276 params_for_tracee.fd_to_close = (shared_log != stderr) ? fileno(shared_log) : -1;
1277 params_for_tracee.run_euid = (statbuf.st_mode & S_ISUID) ? statbuf.st_uid : run_uid;
1278 params_for_tracee.run_egid = (statbuf.st_mode & S_ISGID) ? statbuf.st_gid : run_gid;
1279 params_for_tracee.argv = argv;
1280 /*
1281 * On NOMMU, can be safely freed only after execve in tracee.
1282 * It's hard to know when that happens, so we just leak it.
1283 */
Dmitry V. Levin3e9d71f2015-05-25 20:41:02 +00001284 params_for_tracee.pathname = NOMMU_SYSTEM ? xstrdup(pathname) : pathname;
Denys Vlasenkof909c8d2013-02-19 16:30:31 +01001285
Dmitry V. Levin882478a2013-05-13 18:43:28 +00001286#if defined HAVE_PRCTL && defined PR_SET_PTRACER && defined PR_SET_PTRACER_ANY
1287 if (daemonized_tracer)
1288 prctl(PR_SET_PTRACER, PR_SET_PTRACER_ANY);
1289#endif
1290
Denys Vlasenkoe8681c92013-06-26 14:27:11 +02001291 pid = fork();
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +00001292 if (pid < 0) {
Denys Vlasenkocb2ad002011-06-23 13:05:29 +02001293 perror_msg_and_die("fork");
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +00001294 }
Denys Vlasenkof909c8d2013-02-19 16:30:31 +01001295 if ((pid != 0 && daemonized_tracer)
1296 || (pid == 0 && !daemonized_tracer)
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +00001297 ) {
Denys Vlasenkof909c8d2013-02-19 16:30:31 +01001298 /* We are to become the tracee. Two cases:
1299 * -D: we are parent
1300 * not -D: we are child
1301 */
1302 exec_or_die();
Roland McGrath02203312007-06-11 22:06:31 +00001303 }
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +00001304
Denys Vlasenko2e968c02011-09-01 10:23:09 +02001305 /* We are the tracer */
Denys Vlasenko75422762011-05-27 14:36:01 +02001306
Denys Vlasenko2e968c02011-09-01 10:23:09 +02001307 if (!daemonized_tracer) {
Denys Vlasenkoe8681c92013-06-26 14:27:11 +02001308 strace_child = pid;
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001309 if (!use_seize) {
1310 /* child did PTRACE_TRACEME, nothing to do in parent */
1311 } else {
Denys Vlasenko5c9d8f42013-02-19 15:30:12 +01001312 if (!NOMMU_SYSTEM) {
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001313 /* Wait until child stopped itself */
1314 int status;
1315 while (waitpid(pid, &status, WSTOPPED) < 0) {
1316 if (errno == EINTR)
1317 continue;
1318 perror_msg_and_die("waitpid");
1319 }
1320 if (!WIFSTOPPED(status) || WSTOPSIG(status) != SIGSTOP) {
Denys Vlasenko75fe85c2012-03-09 15:15:24 +01001321 kill_save_errno(pid, SIGKILL);
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001322 perror_msg_and_die("Unexpected wait status %x", status);
1323 }
1324 }
Denys Vlasenko5c9d8f42013-02-19 15:30:12 +01001325 /* Else: NOMMU case, we have no way to sync.
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001326 * Just attach to it as soon as possible.
1327 * This means that we may miss a few first syscalls...
1328 */
1329
1330 if (ptrace_attach_or_seize(pid)) {
Denys Vlasenko75fe85c2012-03-09 15:15:24 +01001331 kill_save_errno(pid, SIGKILL);
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001332 perror_msg_and_die("Can't attach to %d", pid);
1333 }
Denys Vlasenko5c9d8f42013-02-19 15:30:12 +01001334 if (!NOMMU_SYSTEM)
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001335 kill(pid, SIGCONT);
1336 }
Denys Vlasenko2e968c02011-09-01 10:23:09 +02001337 tcp = alloctcb(pid);
Denys Vlasenko5c9d8f42013-02-19 15:30:12 +01001338 if (!NOMMU_SYSTEM)
Denys Vlasenkofadbf662013-06-26 14:14:29 +02001339 tcp->flags |= TCB_ATTACHED | TCB_STARTUP | post_attach_sigstop;
Denys Vlasenkof88837a2011-09-05 14:05:46 +02001340 else
Denys Vlasenkofadbf662013-06-26 14:14:29 +02001341 tcp->flags |= TCB_ATTACHED | TCB_STARTUP;
Denys Vlasenko3db3b262012-03-16 15:15:14 +01001342 newoutf(tcp);
Denys Vlasenko2e968c02011-09-01 10:23:09 +02001343 }
1344 else {
Dmitry V. Levinfa8c2862016-01-22 14:37:14 +00001345 /* With -D, we are *child* here, the tracee is our parent. */
1346 strace_child = strace_tracer_pid;
Denys Vlasenko2e968c02011-09-01 10:23:09 +02001347 strace_tracer_pid = getpid();
Dmitry V. Levinfa8c2862016-01-22 14:37:14 +00001348 alloctcb(strace_child);
Denys Vlasenkof2025022012-03-09 15:29:45 +01001349 /* attaching will be done later, by startup_attach */
Denys Vlasenko3db3b262012-03-16 15:15:14 +01001350 /* note: we don't do newoutf(tcp) here either! */
Denys Vlasenko5c9d8f42013-02-19 15:30:12 +01001351
Denys Vlasenkof909c8d2013-02-19 16:30:31 +01001352 /* NOMMU BUG! -D mode is active, we (child) return,
1353 * and we will scribble over parent's stack!
1354 * When parent later unpauses, it segfaults.
1355 *
1356 * We work around it
1357 * (1) by declaring exec_or_die() NORETURN,
1358 * hopefully compiler will just jump to it
1359 * instead of call (won't push anything to stack),
1360 * (2) by trying very hard in exec_or_die()
1361 * to not use any stack,
Dmitry V. Levin025b3582014-11-21 22:28:34 +00001362 * (3) having a really big (PATH_MAX) stack object
Denys Vlasenkof909c8d2013-02-19 16:30:31 +01001363 * in this function, which creates a "buffer" between
1364 * child's and parent's stack pointers.
1365 * This may save us if (1) and (2) failed
1366 * and compiler decided to use stack in exec_or_die() anyway
1367 * (happens on i386 because of stack parameter passing).
Denys Vlasenko05f32512013-02-26 12:00:34 +01001368 *
1369 * A cleaner solution is to use makecontext + setcontext
1370 * to create a genuine separate stack and execute on it.
Denys Vlasenkof909c8d2013-02-19 16:30:31 +01001371 */
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +00001372 }
Denys Vlasenkoc9f85b32016-02-08 14:52:32 +01001373 /*
1374 * A case where straced process is part of a pipe:
1375 * { sleep 1; yes | head -n99999; } | strace -o/dev/null sh -c 'exec <&-; sleep 9'
1376 * If strace won't close its fd#0, closing it in tracee is not enough:
1377 * the pipe is still open, it has a reader. Thus, "head" will not get its
1378 * SIGPIPE at once, on the first write.
1379 *
1380 * Preventing it by closing strace's stdin/out.
1381 * (Don't leave fds 0 and 1 closed, this is bad practice: future opens
1382 * will reuse them, unexpectedly making a newly opened object "stdin").
1383 */
1384 close(0);
Dmitry V. Levin6aedd422016-02-08 17:46:58 +00001385 open_dummy_desc(); /* opens to fd#0 */
Denys Vlasenkoc9f85b32016-02-08 14:52:32 +01001386 dup2(0, 1);
1387#if 0
1388 /* A good idea too, but we sometimes need to print error messages */
1389 if (shared_log != stderr)
1390 dup2(0, 2);
1391#endif
Roland McGrath02203312007-06-11 22:06:31 +00001392}
1393
Denys Vlasenko5c9d8f42013-02-19 15:30:12 +01001394#if USE_SEIZE
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001395static void
1396test_ptrace_seize(void)
1397{
1398 int pid;
1399
Denys Vlasenko05f32512013-02-26 12:00:34 +01001400 /* Need fork for test. NOMMU has no forks */
Denys Vlasenko5c9d8f42013-02-19 15:30:12 +01001401 if (NOMMU_SYSTEM) {
1402 post_attach_sigstop = 0; /* this sets use_seize to 1 */
1403 return;
1404 }
1405
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001406 pid = fork();
1407 if (pid < 0)
1408 perror_msg_and_die("fork");
1409
1410 if (pid == 0) {
1411 pause();
1412 _exit(0);
1413 }
1414
1415 /* PTRACE_SEIZE, unlike ATTACH, doesn't force tracee to trap. After
1416 * attaching tracee continues to run unless a trap condition occurs.
1417 * PTRACE_SEIZE doesn't affect signal or group stop state.
1418 */
Denys Vlasenko26bc0602012-07-10 16:36:32 +02001419 if (ptrace(PTRACE_SEIZE, pid, 0, 0) == 0) {
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001420 post_attach_sigstop = 0; /* this sets use_seize to 1 */
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001421 } else if (debug_flag) {
Dmitry V. Levin6c8ef052015-05-25 22:51:19 +00001422 error_msg("PTRACE_SEIZE doesn't work");
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001423 }
1424
1425 kill(pid, SIGKILL);
1426
1427 while (1) {
1428 int status, tracee_pid;
1429
1430 errno = 0;
1431 tracee_pid = waitpid(pid, &status, 0);
1432 if (tracee_pid <= 0) {
1433 if (errno == EINTR)
1434 continue;
1435 perror_msg_and_die("%s: unexpected wait result %d",
1436 __func__, tracee_pid);
1437 }
1438 if (WIFSIGNALED(status)) {
1439 return;
1440 }
1441 error_msg_and_die("%s: unexpected wait status %x",
1442 __func__, status);
1443 }
1444}
Denys Vlasenko978fbc92012-09-13 10:28:43 +02001445#else /* !USE_SEIZE */
1446# define test_ptrace_seize() ((void)0)
1447#endif
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001448
Denys Vlasenko6e0bfd12012-03-15 14:36:28 +01001449static unsigned
Denys Vlasenkof7db5dd2012-01-28 01:16:02 +01001450get_os_release(void)
1451{
Denys Vlasenko6e0bfd12012-03-15 14:36:28 +01001452 unsigned rel;
1453 const char *p;
Denys Vlasenkof7db5dd2012-01-28 01:16:02 +01001454 struct utsname u;
1455 if (uname(&u) < 0)
1456 perror_msg_and_die("uname");
Denys Vlasenko6e0bfd12012-03-15 14:36:28 +01001457 /* u.release has this form: "3.2.9[-some-garbage]" */
1458 rel = 0;
1459 p = u.release;
1460 for (;;) {
1461 if (!(*p >= '0' && *p <= '9'))
1462 error_msg_and_die("Bad OS release string: '%s'", u.release);
1463 /* Note: this open-codes KERNEL_VERSION(): */
1464 rel = (rel << 8) | atoi(p);
1465 if (rel >= KERNEL_VERSION(1,0,0))
1466 break;
1467 while (*p >= '0' && *p <= '9')
1468 p++;
Dmitry V. Levin0dbc80d2012-05-14 23:42:10 +00001469 if (*p != '.') {
1470 if (rel >= KERNEL_VERSION(0,1,0)) {
1471 /* "X.Y-something" means "X.Y.0" */
1472 rel <<= 8;
1473 break;
1474 }
Denys Vlasenko6e0bfd12012-03-15 14:36:28 +01001475 error_msg_and_die("Bad OS release string: '%s'", u.release);
Dmitry V. Levin0dbc80d2012-05-14 23:42:10 +00001476 }
Denys Vlasenko6e0bfd12012-03-15 14:36:28 +01001477 p++;
1478 }
1479 return rel;
Denys Vlasenkof7db5dd2012-01-28 01:16:02 +01001480}
1481
Denys Vlasenkoecc8b972012-03-12 23:05:25 +01001482/*
1483 * Initialization part of main() was eating much stack (~0.5k),
1484 * which was unused after init.
1485 * We can reuse it if we move init code into a separate function.
1486 *
1487 * Don't want main() to inline us and defeat the reason
1488 * we have a separate function.
1489 */
Dmitry V. Levin5647cf82015-03-29 22:45:03 +00001490static void ATTRIBUTE_NOINLINE
Denys Vlasenkoecc8b972012-03-12 23:05:25 +01001491init(int argc, char *argv[])
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001492{
Dmitry V. Levinccee1692012-03-25 21:49:48 +00001493 int c, i;
Dmitry V. Levin06350db2008-07-25 15:42:34 +00001494 int optF = 0;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001495 struct sigaction sa;
1496
Dmitry V. Levin08b623e2007-10-08 21:04:41 +00001497 progname = argv[0] ? argv[0] : "strace";
1498
Denys Vlasenkoa5090542012-03-15 17:27:49 +01001499 /* Make sure SIGCHLD has the default action so that waitpid
1500 definitely works without losing track of children. The user
1501 should not have given us a bogus state to inherit, but he might
1502 have. Arguably we should detect SIG_IGN here and pass it on
1503 to children, but probably noone really needs that. */
1504 signal(SIGCHLD, SIG_DFL);
1505
Denys Vlasenko75422762011-05-27 14:36:01 +02001506 strace_tracer_pid = getpid();
1507
Denys Vlasenko6e0bfd12012-03-15 14:36:28 +01001508 os_release = get_os_release();
Denys Vlasenkof7db5dd2012-01-28 01:16:02 +01001509
Denys Vlasenko6764f8f2012-03-22 09:56:20 +01001510 shared_log = stderr;
Roland McGrath138c6a32006-01-12 09:50:49 +00001511 set_sortby(DEFAULT_SORTBY);
1512 set_personality(DEFAULT_PERSONALITY);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001513 qualify("trace=all");
1514 qualify("abbrev=all");
1515 qualify("verbose=all");
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01001516#if DEFAULT_QUAL_FLAGS != (QUAL_TRACE | QUAL_ABBREV | QUAL_VERBOSE)
1517# error Bug in DEFAULT_QUAL_FLAGS
1518#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001519 qualify("signal=all");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001520 while ((c = getopt(argc, argv,
Mark Hillse53bf232014-05-28 17:52:40 +01001521 "+b:cCdfFhiqrtTvVwxyz"
Luca Clementi327064b2013-07-23 00:11:35 -07001522#ifdef USE_LIBUNWIND
1523 "k"
1524#endif
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +00001525 "D"
Denys Vlasenkob51581e2012-01-29 16:53:03 +01001526 "a:e:o:O:p:s:S:u:E:P:I:")) != EOF) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001527 switch (c) {
Denys Vlasenko61e7aad2012-03-15 13:44:17 +01001528 case 'b':
Denys Vlasenko22efaf02013-02-27 12:15:19 +01001529 if (strcmp(optarg, "execve") != 0)
1530 error_msg_and_die("Syscall '%s' for -b isn't supported",
1531 optarg);
Denys Vlasenko61e7aad2012-03-15 13:44:17 +01001532 detach_on_execve = 1;
1533 break;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001534 case 'c':
Dmitry V. Levine3a7ef52010-03-28 19:24:54 +00001535 if (cflag == CFLAG_BOTH) {
Elvira Khabirovaa2fdfe92015-11-26 17:18:00 +03001536 error_msg_and_help("-c and -C are mutually exclusive");
Dmitry V. Levine3a7ef52010-03-28 19:24:54 +00001537 }
1538 cflag = CFLAG_ONLY_STATS;
1539 break;
1540 case 'C':
1541 if (cflag == CFLAG_ONLY_STATS) {
Elvira Khabirovaa2fdfe92015-11-26 17:18:00 +03001542 error_msg_and_help("-c and -C are mutually exclusive");
Dmitry V. Levine3a7ef52010-03-28 19:24:54 +00001543 }
1544 cflag = CFLAG_BOTH;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001545 break;
1546 case 'd':
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001547 debug_flag = 1;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001548 break;
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +00001549 case 'D':
1550 daemonized_tracer = 1;
1551 break;
Roland McGrath41c48222008-07-18 00:25:10 +00001552 case 'F':
Dmitry V. Levin06350db2008-07-25 15:42:34 +00001553 optF = 1;
1554 break;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001555 case 'f':
1556 followfork++;
1557 break;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001558 case 'h':
Elvira Khabirovaa2fdfe92015-11-26 17:18:00 +03001559 usage();
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001560 break;
1561 case 'i':
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001562 iflag = 1;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001563 break;
1564 case 'q':
Daniel P. Berrange01997cf2013-05-13 11:30:55 +01001565 qflag++;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001566 break;
1567 case 'r':
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001568 rflag = 1;
1569 /* fall through to tflag++ */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001570 case 't':
1571 tflag++;
1572 break;
1573 case 'T':
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001574 Tflag = 1;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001575 break;
Mark Hillse53bf232014-05-28 17:52:40 +01001576 case 'w':
1577 count_wallclock = 1;
1578 break;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001579 case 'x':
1580 xflag++;
1581 break;
Grant Edwards8a082772011-04-07 20:25:40 +00001582 case 'y':
Dmitry V. Levin45e7b182014-08-08 23:38:26 +00001583 show_fd_path++;
Grant Edwards8a082772011-04-07 20:25:40 +00001584 break;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001585 case 'v':
1586 qualify("abbrev=none");
1587 break;
1588 case 'V':
Roland McGrath9c9a2532003-02-20 02:56:29 +00001589 printf("%s -- version %s\n", PACKAGE_NAME, VERSION);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001590 exit(0);
1591 break;
Michal Ludvig17f8fb32002-11-06 13:17:21 +00001592 case 'z':
1593 not_failing_only = 1;
1594 break;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001595 case 'a':
Dmitry V. Levinccee1692012-03-25 21:49:48 +00001596 acolumn = string_to_uint(optarg);
Denys Vlasenko102ec492011-08-25 01:27:59 +02001597 if (acolumn < 0)
Dmitry V. Levinccee1692012-03-25 21:49:48 +00001598 error_opt_arg(c, optarg);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001599 break;
1600 case 'e':
1601 qualify(optarg);
1602 break;
1603 case 'o':
Dmitry V. Levin3e9d71f2015-05-25 20:41:02 +00001604 outfname = xstrdup(optarg);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001605 break;
1606 case 'O':
Dmitry V. Levinccee1692012-03-25 21:49:48 +00001607 i = string_to_uint(optarg);
1608 if (i < 0)
1609 error_opt_arg(c, optarg);
1610 set_overhead(i);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001611 break;
1612 case 'p':
Denys Vlasenkoe8172b72012-03-09 13:01:04 +01001613 process_opt_p_list(optarg);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001614 break;
Grant Edwards8a082772011-04-07 20:25:40 +00001615 case 'P':
Denys Vlasenko7239dbc2013-03-05 15:46:34 +01001616 pathtrace_select(optarg);
Grant Edwards8a082772011-04-07 20:25:40 +00001617 break;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001618 case 's':
Dmitry V. Levinccee1692012-03-25 21:49:48 +00001619 i = string_to_uint(optarg);
1620 if (i < 0)
1621 error_opt_arg(c, optarg);
1622 max_strlen = i;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001623 break;
1624 case 'S':
1625 set_sortby(optarg);
1626 break;
1627 case 'u':
Dmitry V. Levin3e9d71f2015-05-25 20:41:02 +00001628 username = xstrdup(optarg);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001629 break;
Luca Clementi327064b2013-07-23 00:11:35 -07001630#ifdef USE_LIBUNWIND
1631 case 'k':
1632 stack_trace_enabled = true;
1633 break;
1634#endif
Roland McGrathde6e5332003-01-24 04:31:23 +00001635 case 'E':
Denys Vlasenko1d46ba52011-08-31 14:00:02 +02001636 if (putenv(optarg) < 0)
1637 die_out_of_memory();
Roland McGrathde6e5332003-01-24 04:31:23 +00001638 break;
Denys Vlasenkob51581e2012-01-29 16:53:03 +01001639 case 'I':
Dmitry V. Levinccee1692012-03-25 21:49:48 +00001640 opt_intr = string_to_uint(optarg);
1641 if (opt_intr <= 0 || opt_intr >= NUM_INTR_OPTS)
1642 error_opt_arg(c, optarg);
Denys Vlasenkob51581e2012-01-29 16:53:03 +01001643 break;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001644 default:
Elvira Khabirovaa2fdfe92015-11-26 17:18:00 +03001645 error_msg_and_help(NULL);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001646 break;
1647 }
1648 }
Denys Vlasenko837399a2012-01-24 11:37:03 +01001649 argv += optind;
1650 /* argc -= optind; - no need, argc is not used below */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001651
Dmitry V. Levin3e9d71f2015-05-25 20:41:02 +00001652 acolumn_spaces = xmalloc(acolumn + 1);
Denys Vlasenko102ec492011-08-25 01:27:59 +02001653 memset(acolumn_spaces, ' ', acolumn);
1654 acolumn_spaces[acolumn] = '\0';
1655
Dmitry V. Levinfa8c2862016-01-22 14:37:14 +00001656 if (!argv[0] && !nprocs) {
Elvira Khabirovaa2fdfe92015-11-26 17:18:00 +03001657 error_msg_and_help("must have PROG [ARGS] or -p PID");
1658 }
Roland McGrathce0d1542003-11-11 21:24:23 +00001659
Dmitry V. Levinfa8c2862016-01-22 14:37:14 +00001660 if (!argv[0] && daemonized_tracer) {
1661 error_msg_and_help("PROG [ARGS] must be specified with -D");
Wang Chaod322a4b2010-08-05 14:30:11 +08001662 }
1663
Dmitry V. Levin06350db2008-07-25 15:42:34 +00001664 if (!followfork)
1665 followfork = optF;
1666
Denys Vlasenko3db3b262012-03-16 15:15:14 +01001667 if (followfork >= 2 && cflag) {
Elvira Khabirovaa2fdfe92015-11-26 17:18:00 +03001668 error_msg_and_help("(-c or -C) and -ff are mutually exclusive");
Roland McGrathcb9def62006-04-25 07:48:03 +00001669 }
1670
Mark Hillse53bf232014-05-28 17:52:40 +01001671 if (count_wallclock && !cflag) {
Elvira Khabirovaa2fdfe92015-11-26 17:18:00 +03001672 error_msg_and_help("-w must be given with (-c or -C)");
Mark Hillse53bf232014-05-28 17:52:40 +01001673 }
1674
Dmitry V. Levin2727aae2014-06-03 13:20:05 +00001675 if (cflag == CFLAG_ONLY_STATS) {
1676 if (iflag)
1677 error_msg("-%c has no effect with -c", 'i');
1678#ifdef USE_LIBUNWIND
1679 if (stack_trace_enabled)
1680 error_msg("-%c has no effect with -c", 'k');
1681#endif
1682 if (rflag)
1683 error_msg("-%c has no effect with -c", 'r');
1684 if (tflag)
1685 error_msg("-%c has no effect with -c", 't');
1686 if (Tflag)
1687 error_msg("-%c has no effect with -c", 'T');
1688 if (show_fd_path)
1689 error_msg("-%c has no effect with -c", 'y');
1690 }
1691
1692#ifdef USE_LIBUNWIND
1693 if (stack_trace_enabled)
1694 unwind_init();
1695#endif
1696
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001697 /* See if they want to run as another user. */
1698 if (username != NULL) {
1699 struct passwd *pent;
1700
1701 if (getuid() != 0 || geteuid() != 0) {
Denys Vlasenkocb2ad002011-06-23 13:05:29 +02001702 error_msg_and_die("You must be root to use the -u option");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001703 }
Denys Vlasenko5d645812011-08-20 12:48:18 +02001704 pent = getpwnam(username);
1705 if (pent == NULL) {
Denys Vlasenkocb2ad002011-06-23 13:05:29 +02001706 error_msg_and_die("Cannot find user '%s'", username);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001707 }
1708 run_uid = pent->pw_uid;
1709 run_gid = pent->pw_gid;
1710 }
1711 else {
1712 run_uid = getuid();
1713 run_gid = getgid();
1714 }
1715
Dmitry V. Levin04f8b482011-08-16 18:57:29 +00001716 if (followfork)
Dmitry V. Levin23ce9e42015-02-08 13:05:53 +00001717 ptrace_setoptions |= PTRACE_O_TRACECLONE |
1718 PTRACE_O_TRACEFORK |
1719 PTRACE_O_TRACEVFORK;
1720 if (debug_flag)
Dmitry V. Levin6c8ef052015-05-25 22:51:19 +00001721 error_msg("ptrace_setoptions = %#x", ptrace_setoptions);
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001722 test_ptrace_seize();
Dmitry V. Levin8044bc12010-12-07 12:50:49 +00001723
Denys Vlasenko0736d4e2016-02-08 18:08:46 +01001724 if (fcntl(0, F_GETFD) == -1 || fcntl(1, F_GETFD) == -1) {
1725 /*
1726 * Something weird with our stdin and/or stdout -
1727 * for example, may be not open? In this case,
1728 * ensure that none of the future opens uses them.
1729 *
1730 * This was seen in the wild when /proc/sys/kernel/core_pattern
1731 * was set to "|/bin/strace -o/tmp/LOG PROG":
1732 * kernel runs coredump helper with fd#0 open but fd#1 closed (!),
1733 * therefore LOG gets opened to fd#1, and fd#1 is closed by
1734 * "don't hold up stdin/out open" code soon after.
1735 */
Dmitry V. Levin6aedd422016-02-08 17:46:58 +00001736 int fd = open_dummy_desc();
Denys Vlasenko0736d4e2016-02-08 18:08:46 +01001737 while (fd >= 0 && fd < 2)
1738 fd = dup(fd);
1739 if (fd > 2)
1740 close(fd);
1741 }
1742
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001743 /* Check if they want to redirect the output. */
1744 if (outfname) {
Roland McGrath37b9a662003-11-07 02:26:54 +00001745 /* See if they want to pipe the output. */
1746 if (outfname[0] == '|' || outfname[0] == '!') {
1747 /*
1748 * We can't do the <outfname>.PID funny business
1749 * when using popen, so prohibit it.
1750 */
Denys Vlasenko3db3b262012-03-16 15:15:14 +01001751 if (followfork >= 2)
Elvira Khabirovaa2fdfe92015-11-26 17:18:00 +03001752 error_msg_and_help("piping the output and -ff are mutually exclusive");
Denys Vlasenko6764f8f2012-03-22 09:56:20 +01001753 shared_log = strace_popen(outfname + 1);
Roland McGrath37b9a662003-11-07 02:26:54 +00001754 }
Denys Vlasenko3db3b262012-03-16 15:15:14 +01001755 else if (followfork < 2)
Denys Vlasenko6764f8f2012-03-22 09:56:20 +01001756 shared_log = strace_fopen(outfname);
Denys Vlasenko328bf252012-03-12 23:34:13 +01001757 } else {
1758 /* -ff without -o FILE is the same as single -f */
Denys Vlasenko3db3b262012-03-16 15:15:14 +01001759 if (followfork >= 2)
Denys Vlasenko328bf252012-03-12 23:34:13 +01001760 followfork = 1;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001761 }
1762
Denys Vlasenkocb2ad002011-06-23 13:05:29 +02001763 if (!outfname || outfname[0] == '|' || outfname[0] == '!') {
Dmitry V. Levin3e9d71f2015-05-25 20:41:02 +00001764 char *buf = xmalloc(BUFSIZ);
Denys Vlasenko6764f8f2012-03-22 09:56:20 +01001765 setvbuf(shared_log, buf, _IOLBF, BUFSIZ);
Denys Vlasenkocb2ad002011-06-23 13:05:29 +02001766 }
Denys Vlasenko837399a2012-01-24 11:37:03 +01001767 if (outfname && argv[0]) {
Denys Vlasenkob51581e2012-01-29 16:53:03 +01001768 if (!opt_intr)
1769 opt_intr = INTR_NEVER;
Dmitry V. Levinde4a6802015-06-29 14:37:26 +00001770 if (!qflag)
1771 qflag = 1;
Roland McGrath36931052003-06-03 01:35:20 +00001772 }
Denys Vlasenkob51581e2012-01-29 16:53:03 +01001773 if (!opt_intr)
1774 opt_intr = INTR_WHILE_WAIT;
Wang Chaob13c0de2010-11-12 17:25:19 +08001775
Denys Vlasenkob51581e2012-01-29 16:53:03 +01001776 /* argv[0] -pPID -oFILE Default interactive setting
Dmitry V. Levinfa8c2862016-01-22 14:37:14 +00001777 * yes * 0 INTR_WHILE_WAIT
Denys Vlasenkob51581e2012-01-29 16:53:03 +01001778 * no 1 0 INTR_WHILE_WAIT
Dmitry V. Levinfa8c2862016-01-22 14:37:14 +00001779 * yes * 1 INTR_NEVER
Denys Vlasenkob51581e2012-01-29 16:53:03 +01001780 * no 1 1 INTR_WHILE_WAIT
Roland McGrath54cc1c82007-11-03 23:34:11 +00001781 */
1782
Denys Vlasenko5c9d8f42013-02-19 15:30:12 +01001783 sigemptyset(&empty_set);
1784 sigemptyset(&blocked_set);
1785
Denys Vlasenkof909c8d2013-02-19 16:30:31 +01001786 /* startup_child() must be called before the signal handlers get
1787 * installed below as they are inherited into the spawned process.
1788 * Also we do not need to be protected by them as during interruption
1789 * in the startup_child() mode we kill the spawned process anyway.
1790 */
Denys Vlasenko61e7aad2012-03-15 13:44:17 +01001791 if (argv[0]) {
Dmitry V. Levin1d2435b2013-05-14 22:35:46 +00001792 if (!NOMMU_SYSTEM || daemonized_tracer)
1793 hide_log_until_execve = 1;
Denys Vlasenko2a3d2752013-05-14 16:07:46 +02001794 skip_one_b_execve = 1;
Denys Vlasenko837399a2012-01-24 11:37:03 +01001795 startup_child(argv);
Denys Vlasenko61e7aad2012-03-15 13:44:17 +01001796 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001797
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001798 sa.sa_handler = SIG_IGN;
1799 sigemptyset(&sa.sa_mask);
1800 sa.sa_flags = 0;
Denys Vlasenkob51581e2012-01-29 16:53:03 +01001801 sigaction(SIGTTOU, &sa, NULL); /* SIG_IGN */
1802 sigaction(SIGTTIN, &sa, NULL); /* SIG_IGN */
1803 if (opt_intr != INTR_ANYWHERE) {
1804 if (opt_intr == INTR_BLOCK_TSTP_TOO)
1805 sigaction(SIGTSTP, &sa, NULL); /* SIG_IGN */
1806 /*
1807 * In interactive mode (if no -o OUTFILE, or -p PID is used),
1808 * fatal signals are blocked while syscall stop is processed,
1809 * and acted on in between, when waiting for new syscall stops.
1810 * In non-interactive mode, signals are ignored.
1811 */
1812 if (opt_intr == INTR_WHILE_WAIT) {
1813 sigaddset(&blocked_set, SIGHUP);
1814 sigaddset(&blocked_set, SIGINT);
1815 sigaddset(&blocked_set, SIGQUIT);
1816 sigaddset(&blocked_set, SIGPIPE);
1817 sigaddset(&blocked_set, SIGTERM);
1818 sa.sa_handler = interrupt;
Denys Vlasenkob51581e2012-01-29 16:53:03 +01001819 }
1820 /* SIG_IGN, or set handler for these */
1821 sigaction(SIGHUP, &sa, NULL);
1822 sigaction(SIGINT, &sa, NULL);
1823 sigaction(SIGQUIT, &sa, NULL);
1824 sigaction(SIGPIPE, &sa, NULL);
1825 sigaction(SIGTERM, &sa, NULL);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001826 }
Denys Vlasenkofd883382012-03-09 13:03:41 +01001827 if (nprocs != 0 || daemonized_tracer)
Roland McGrath02203312007-06-11 22:06:31 +00001828 startup_attach();
Roland McGrath02203312007-06-11 22:06:31 +00001829
Denys Vlasenkofd883382012-03-09 13:03:41 +01001830 /* Do we want pids printed in our -o OUTFILE?
1831 * -ff: no (every pid has its own file); or
1832 * -f: yes (there can be more pids in the future); or
1833 * -p PID1,PID2: yes (there are already more than one pid)
1834 */
1835 print_pid_pfx = (outfname && followfork < 2 && (followfork == 1 || nprocs > 1));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001836}
1837
Denys Vlasenkoeebb04d2012-01-27 15:24:48 +01001838static struct tcb *
Roland McGrath54e931f2010-09-14 18:59:20 -07001839pid2tcb(int pid)
1840{
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +00001841 unsigned int i;
Roland McGrath54e931f2010-09-14 18:59:20 -07001842
1843 if (pid <= 0)
1844 return NULL;
1845
1846 for (i = 0; i < tcbtabsize; i++) {
1847 struct tcb *tcp = tcbtab[i];
Denys Vlasenkofadbf662013-06-26 14:14:29 +02001848 if (tcp->pid == pid)
Roland McGrath54e931f2010-09-14 18:59:20 -07001849 return tcp;
1850 }
1851
1852 return NULL;
1853}
1854
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001855static void
Denys Vlasenko12014262011-05-30 14:00:14 +02001856cleanup(void)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001857{
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +00001858 unsigned int i;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001859 struct tcb *tcp;
Denys Vlasenko35218842012-01-29 21:17:56 +01001860 int fatal_sig;
1861
1862 /* 'interrupted' is a volatile object, fetch it only once */
1863 fatal_sig = interrupted;
1864 if (!fatal_sig)
1865 fatal_sig = SIGTERM;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001866
Roland McGrathee9d4352002-12-18 04:16:10 +00001867 for (i = 0; i < tcbtabsize; i++) {
1868 tcp = tcbtab[i];
Denys Vlasenkofadbf662013-06-26 14:14:29 +02001869 if (!tcp->pid)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001870 continue;
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001871 if (debug_flag)
Dmitry V. Levin6c8ef052015-05-25 22:51:19 +00001872 error_msg("cleanup: looking at pid %u", tcp->pid);
Denys Vlasenkofadbf662013-06-26 14:14:29 +02001873 if (tcp->pid == strace_child) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001874 kill(tcp->pid, SIGCONT);
Denys Vlasenkoa3559252012-01-29 16:43:51 +01001875 kill(tcp->pid, fatal_sig);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001876 }
Denys Vlasenko7de265d2012-03-13 11:44:31 +01001877 detach(tcp);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001878 }
1879 if (cflag)
Denys Vlasenko6764f8f2012-03-22 09:56:20 +01001880 call_summary(shared_log);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001881}
1882
1883static void
Denys Vlasenko12014262011-05-30 14:00:14 +02001884interrupt(int sig)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001885{
Denys Vlasenkoa3559252012-01-29 16:43:51 +01001886 interrupted = sig;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001887}
1888
Denys Vlasenkod0ffdf42013-07-01 13:02:33 +02001889static void
Dmitry V. Levin0f4ad302015-02-22 02:13:04 +00001890print_debug_info(const int pid, int status)
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00001891{
1892 const unsigned int event = (unsigned int) status >> 16;
1893 char buf[sizeof("WIFEXITED,exitcode=%u") + sizeof(int)*3 /*paranoia:*/ + 16];
1894 char evbuf[sizeof(",EVENT_VFORK_DONE (%u)") + sizeof(int)*3 /*paranoia:*/ + 16];
1895
1896 strcpy(buf, "???");
1897 if (WIFSIGNALED(status))
1898#ifdef WCOREDUMP
1899 sprintf(buf, "WIFSIGNALED,%ssig=%s",
1900 WCOREDUMP(status) ? "core," : "",
1901 signame(WTERMSIG(status)));
1902#else
1903 sprintf(buf, "WIFSIGNALED,sig=%s",
1904 signame(WTERMSIG(status)));
1905#endif
1906 if (WIFEXITED(status))
1907 sprintf(buf, "WIFEXITED,exitcode=%u", WEXITSTATUS(status));
1908 if (WIFSTOPPED(status))
1909 sprintf(buf, "WIFSTOPPED,sig=%s", signame(WSTOPSIG(status)));
1910#ifdef WIFCONTINUED
1911 /* Should never be seen */
1912 if (WIFCONTINUED(status))
1913 strcpy(buf, "WIFCONTINUED");
1914#endif
1915 evbuf[0] = '\0';
1916 if (event != 0) {
1917 static const char *const event_names[] = {
1918 [PTRACE_EVENT_CLONE] = "CLONE",
1919 [PTRACE_EVENT_FORK] = "FORK",
1920 [PTRACE_EVENT_VFORK] = "VFORK",
1921 [PTRACE_EVENT_VFORK_DONE] = "VFORK_DONE",
1922 [PTRACE_EVENT_EXEC] = "EXEC",
1923 [PTRACE_EVENT_EXIT] = "EXIT",
1924 /* [PTRACE_EVENT_STOP (=128)] would make biggish array */
1925 };
1926 const char *e = "??";
1927 if (event < ARRAY_SIZE(event_names))
1928 e = event_names[event];
1929 else if (event == PTRACE_EVENT_STOP)
1930 e = "STOP";
1931 sprintf(evbuf, ",EVENT_%s (%u)", e, event);
1932 }
Dmitry V. Levin6c8ef052015-05-25 22:51:19 +00001933 error_msg("[wait(0x%06x) = %u] %s%s", status, pid, buf, evbuf);
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00001934}
1935
1936static struct tcb *
Dmitry V. Levin0f4ad302015-02-22 02:13:04 +00001937maybe_allocate_tcb(const int pid, int status)
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00001938{
1939 if (!WIFSTOPPED(status)) {
Dmitry V. Levinaa801922015-02-07 18:48:55 +00001940 if (detach_on_execve && pid == strace_child) {
1941 /* example: strace -bexecve sh -c 'exec true' */
1942 strace_child = 0;
1943 return NULL;
1944 }
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00001945 /*
1946 * This can happen if we inherited an unknown child.
Dmitry V. Levinaa801922015-02-07 18:48:55 +00001947 * Example: (sleep 1 & exec strace true)
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00001948 */
1949 error_msg("Exit of unknown pid %u ignored", pid);
1950 return NULL;
1951 }
1952 if (followfork) {
1953 /* We assume it's a fork/vfork/clone child */
1954 struct tcb *tcp = alloctcb(pid);
1955 tcp->flags |= TCB_ATTACHED | TCB_STARTUP | post_attach_sigstop;
1956 newoutf(tcp);
1957 if (!qflag)
Dmitry V. Levin6c8ef052015-05-25 22:51:19 +00001958 error_msg("Process %d attached", pid);
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00001959 return tcp;
1960 } else {
1961 /* This can happen if a clone call used
1962 * CLONE_PTRACE itself.
1963 */
1964 ptrace(PTRACE_CONT, pid, (char *) 0, 0);
1965 error_msg("Stop of unknown pid %u seen, PTRACE_CONTed it", pid);
1966 return NULL;
1967 }
1968}
1969
1970static struct tcb *
1971maybe_switch_tcbs(struct tcb *tcp, const int pid)
1972{
1973 FILE *fp;
1974 struct tcb *execve_thread;
1975 long old_pid = 0;
1976
1977 if (ptrace(PTRACE_GETEVENTMSG, pid, NULL, (long) &old_pid) < 0)
1978 return tcp;
1979 /* Avoid truncation in pid2tcb() param passing */
1980 if (old_pid <= 0 || old_pid == pid)
1981 return tcp;
1982 if ((unsigned long) old_pid > UINT_MAX)
1983 return tcp;
1984 execve_thread = pid2tcb(old_pid);
1985 /* It should be !NULL, but I feel paranoid */
1986 if (!execve_thread)
1987 return tcp;
1988
1989 if (execve_thread->curcol != 0) {
1990 /*
1991 * One case we are here is -ff:
1992 * try "strace -oLOG -ff test/threaded_execve"
1993 */
1994 fprintf(execve_thread->outf, " <pid changed to %d ...>\n", pid);
1995 /*execve_thread->curcol = 0; - no need, see code below */
1996 }
1997 /* Swap output FILEs (needed for -ff) */
1998 fp = execve_thread->outf;
1999 execve_thread->outf = tcp->outf;
2000 tcp->outf = fp;
2001 /* And their column positions */
2002 execve_thread->curcol = tcp->curcol;
2003 tcp->curcol = 0;
2004 /* Drop leader, but close execve'd thread outfile (if -ff) */
2005 droptcb(tcp);
2006 /* Switch to the thread, reusing leader's outfile and pid */
2007 tcp = execve_thread;
2008 tcp->pid = pid;
2009 if (cflag != CFLAG_ONLY_STATS) {
2010 printleader(tcp);
2011 tprintf("+++ superseded by execve in pid %lu +++\n", old_pid);
2012 line_ended();
2013 tcp->flags |= TCB_REPRINT;
2014 }
2015
2016 return tcp;
2017}
2018
2019static void
Dmitry V. Levin0f4ad302015-02-22 02:13:04 +00002020print_signalled(struct tcb *tcp, const int pid, int status)
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002021{
Dmitry V. Levin2cd488b2015-02-07 19:41:48 +00002022 if (pid == strace_child) {
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002023 exit_code = 0x100 | WTERMSIG(status);
Dmitry V. Levin2cd488b2015-02-07 19:41:48 +00002024 strace_child = 0;
2025 }
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002026
2027 if (cflag != CFLAG_ONLY_STATS
2028 && (qual_flags[WTERMSIG(status)] & QUAL_SIGNAL)
2029 ) {
2030 printleader(tcp);
2031#ifdef WCOREDUMP
2032 tprintf("+++ killed by %s %s+++\n",
2033 signame(WTERMSIG(status)),
2034 WCOREDUMP(status) ? "(core dumped) " : "");
2035#else
2036 tprintf("+++ killed by %s +++\n",
2037 signame(WTERMSIG(status)));
2038#endif
2039 line_ended();
2040 }
2041}
2042
2043static void
Dmitry V. Levin0f4ad302015-02-22 02:13:04 +00002044print_exited(struct tcb *tcp, const int pid, int status)
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002045{
Dmitry V. Levin2cd488b2015-02-07 19:41:48 +00002046 if (pid == strace_child) {
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002047 exit_code = WEXITSTATUS(status);
Dmitry V. Levin2cd488b2015-02-07 19:41:48 +00002048 strace_child = 0;
2049 }
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002050
2051 if (cflag != CFLAG_ONLY_STATS &&
2052 qflag < 2) {
2053 printleader(tcp);
2054 tprintf("+++ exited with %d +++\n", WEXITSTATUS(status));
2055 line_ended();
2056 }
2057}
2058
2059static void
2060print_stopped(struct tcb *tcp, const siginfo_t *si, const unsigned int sig)
2061{
2062 if (cflag != CFLAG_ONLY_STATS
2063 && !hide_log_until_execve
2064 && (qual_flags[sig] & QUAL_SIGNAL)
2065 ) {
2066 printleader(tcp);
2067 if (si) {
2068 tprintf("--- %s ", signame(sig));
2069 printsiginfo(si, verbose(tcp));
2070 tprints(" ---\n");
2071 } else
2072 tprintf("--- stopped by %s ---\n", signame(sig));
2073 line_ended();
2074 }
2075}
2076
Denys Vlasenko4bb2ffd2015-03-21 18:13:45 +01002077static void
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002078startup_tcb(struct tcb *tcp)
2079{
2080 if (debug_flag)
Dmitry V. Levin6c8ef052015-05-25 22:51:19 +00002081 error_msg("pid %d has TCB_STARTUP, initializing it", tcp->pid);
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002082
2083 tcp->flags &= ~TCB_STARTUP;
2084
Dmitry V. Levin23ce9e42015-02-08 13:05:53 +00002085 if (!use_seize) {
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002086 if (debug_flag)
Dmitry V. Levin6c8ef052015-05-25 22:51:19 +00002087 error_msg("setting opts 0x%x on pid %d",
2088 ptrace_setoptions, tcp->pid);
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002089 if (ptrace(PTRACE_SETOPTIONS, tcp->pid, NULL, ptrace_setoptions) < 0) {
2090 if (errno != ESRCH) {
2091 /* Should never happen, really */
2092 perror_msg_and_die("PTRACE_SETOPTIONS");
2093 }
2094 }
2095 }
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002096}
2097
2098/* Returns true iff the main trace loop has to continue. */
2099static bool
Denys Vlasenko12014262011-05-30 14:00:14 +02002100trace(void)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002101{
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002102 int pid;
2103 int wait_errno;
2104 int status;
2105 bool stopped;
2106 unsigned int sig;
2107 unsigned int event;
2108 struct tcb *tcp;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002109 struct rusage ru;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002110
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002111 if (interrupted)
2112 return false;
Denys Vlasenkof7db5dd2012-01-28 01:16:02 +01002113
Denys Vlasenko364728d2015-03-21 18:40:53 +01002114 /*
2115 * Used to exit simply when nprocs hits zero, but in this testcase:
2116 * int main() { _exit(!!fork()); }
2117 * under strace -f, parent sometimes (rarely) manages
2118 * to exit before we see the first stop of the child,
2119 * and we are losing track of it:
2120 * 19923 clone(...) = 19924
2121 * 19923 exit_group(1) = ?
2122 * 19923 +++ exited with 1 +++
2123 * Exiting only when wait() returns ECHILD works better.
2124 */
2125 if (popen_pid != 0) {
2126 /* However, if -o|logger is in use, we can't do that.
2127 * Can work around that by double-forking the logger,
2128 * but that loses the ability to wait for its completion
2129 * on exit. Oh well...
2130 */
2131 if (nprocs == 0)
2132 return false;
2133 }
Denys Vlasenko725dd422013-06-20 11:06:58 +02002134
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002135 if (interactive)
2136 sigprocmask(SIG_SETMASK, &empty_set, NULL);
2137 pid = wait4(-1, &status, __WALL, (cflag ? &ru : NULL));
2138 wait_errno = errno;
2139 if (interactive)
2140 sigprocmask(SIG_BLOCK, &blocked_set, NULL);
Denys Vlasenko7c41ce22013-07-08 13:55:04 +02002141
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002142 if (pid < 0) {
2143 if (wait_errno == EINTR)
2144 return true;
2145 if (nprocs == 0 && wait_errno == ECHILD)
2146 return false;
2147 /*
2148 * If nprocs > 0, ECHILD is not expected,
2149 * treat it as any other error here:
2150 */
2151 errno = wait_errno;
2152 perror_msg_and_die("wait4(__WALL)");
2153 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002154
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002155 if (pid == popen_pid) {
2156 if (!WIFSTOPPED(status))
2157 popen_pid = 0;
2158 return true;
2159 }
Denys Vlasenko725dd422013-06-20 11:06:58 +02002160
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002161 if (debug_flag)
2162 print_debug_info(pid, status);
Denys Vlasenkof7db5dd2012-01-28 01:16:02 +01002163
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002164 /* Look up 'pid' in our table. */
2165 tcp = pid2tcb(pid);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002166
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002167 if (!tcp) {
2168 tcp = maybe_allocate_tcb(pid, status);
2169 if (!tcp)
2170 return true;
2171 }
Denys Vlasenkof7db5dd2012-01-28 01:16:02 +01002172
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002173 if (WIFSTOPPED(status))
2174 get_regs(pid);
Dmitry V. Levine9bfff62015-02-13 22:45:33 +00002175 else
2176 clear_regs();
Denys Vlasenko7de265d2012-03-13 11:44:31 +01002177
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002178 event = (unsigned int) status >> 16;
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01002179
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002180 if (event == PTRACE_EVENT_EXEC) {
2181 /*
2182 * Under Linux, execve changes pid to thread leader's pid,
Denys Vlasenko8511f2a2012-03-22 09:35:51 +01002183 * and we see this changed pid on EVENT_EXEC and later,
2184 * execve sysexit. Leader "disappears" without exit
2185 * notification. Let user know that, drop leader's tcb,
2186 * and fix up pid in execve thread's tcb.
2187 * Effectively, execve thread's tcb replaces leader's tcb.
2188 *
2189 * BTW, leader is 'stuck undead' (doesn't report WIFEXITED
2190 * on exit syscall) in multithreaded programs exactly
2191 * in order to handle this case.
2192 *
2193 * PTRACE_GETEVENTMSG returns old pid starting from Linux 3.0.
2194 * On 2.6 and earlier, it can return garbage.
2195 */
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002196 if (os_release >= KERNEL_VERSION(3,0,0))
2197 tcp = maybe_switch_tcbs(tcp, pid);
Denys Vlasenko8511f2a2012-03-22 09:35:51 +01002198
Dmitry V. Levine6908132015-02-07 17:47:53 +00002199 if (detach_on_execve && !skip_one_b_execve) {
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002200 detach(tcp); /* do "-b execve" thingy */
Dmitry V. Levine6908132015-02-07 17:47:53 +00002201 return true;
2202 }
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002203 skip_one_b_execve = 0;
2204 }
Denys Vlasenko8511f2a2012-03-22 09:35:51 +01002205
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002206 /* Set current output file */
2207 current_tcp = tcp;
Denys Vlasenko8511f2a2012-03-22 09:35:51 +01002208
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002209 if (cflag) {
2210 tv_sub(&tcp->dtime, &ru.ru_stime, &tcp->stime);
2211 tcp->stime = ru.ru_stime;
2212 }
Denys Vlasenko8511f2a2012-03-22 09:35:51 +01002213
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002214 if (WIFSIGNALED(status)) {
2215 print_signalled(tcp, pid, status);
2216 droptcb(tcp);
2217 return true;
2218 }
Denys Vlasenko7de265d2012-03-13 11:44:31 +01002219
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002220 if (WIFEXITED(status)) {
2221 print_exited(tcp, pid, status);
2222 droptcb(tcp);
2223 return true;
2224 }
Roland McGratheb9e2e82009-06-02 16:49:22 -07002225
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002226 if (!WIFSTOPPED(status)) {
2227 /*
2228 * Neither signalled, exited or stopped.
2229 * How could that be?
2230 */
2231 error_msg("pid %u not stopped!", pid);
2232 droptcb(tcp);
2233 return true;
2234 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002235
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002236 /* Is this the very first time we see this tracee stopped? */
2237 if (tcp->flags & TCB_STARTUP) {
Denys Vlasenko4bb2ffd2015-03-21 18:13:45 +01002238 startup_tcb(tcp);
Denys Vlasenko8497b622015-03-21 17:51:52 +01002239 if (get_scno(tcp) == 1)
2240 tcp->s_prev_ent = tcp->s_ent;
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002241 }
Denys Vlasenkof88837a2011-09-05 14:05:46 +02002242
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002243 sig = WSTOPSIG(status);
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01002244
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002245 if (event != 0) {
2246 /* Ptrace event */
Denys Vlasenko5c9d8f42013-02-19 15:30:12 +01002247#if USE_SEIZE
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002248 if (event == PTRACE_EVENT_STOP) {
2249 /*
2250 * PTRACE_INTERRUPT-stop or group-stop.
2251 * PTRACE_INTERRUPT-stop has sig == SIGTRAP here.
2252 */
2253 switch (sig) {
2254 case SIGSTOP:
2255 case SIGTSTP:
2256 case SIGTTIN:
2257 case SIGTTOU:
2258 stopped = true;
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01002259 goto show_stopsig;
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01002260 }
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002261 }
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01002262#endif
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002263 goto restart_tracee_with_sig_0;
2264 }
Denys Vlasenkof88837a2011-09-05 14:05:46 +02002265
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002266 /*
2267 * Is this post-attach SIGSTOP?
2268 * Interestingly, the process may stop
2269 * with STOPSIG equal to some other signal
2270 * than SIGSTOP if we happend to attach
2271 * just before the process takes a signal.
2272 */
2273 if (sig == SIGSTOP && (tcp->flags & TCB_IGNORE_ONE_SIGSTOP)) {
2274 if (debug_flag)
Dmitry V. Levin6c8ef052015-05-25 22:51:19 +00002275 error_msg("ignored SIGSTOP on pid %d", tcp->pid);
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002276 tcp->flags &= ~TCB_IGNORE_ONE_SIGSTOP;
2277 goto restart_tracee_with_sig_0;
2278 }
2279
2280 if (sig != syscall_trap_sig) {
Dmitry V. Levin135f5cf2015-09-18 13:04:02 +00002281 siginfo_t si = {};
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002282
2283 /*
2284 * True if tracee is stopped by signal
2285 * (as opposed to "tracee received signal").
2286 * TODO: shouldn't we check for errno == EINVAL too?
2287 * We can get ESRCH instead, you know...
Denys Vlasenkof88837a2011-09-05 14:05:46 +02002288 */
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002289 stopped = ptrace(PTRACE_GETSIGINFO, pid, 0, (long) &si) < 0;
Denys Vlasenko5c9d8f42013-02-19 15:30:12 +01002290#if USE_SEIZE
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002291show_stopsig:
Denys Vlasenko67038162012-01-29 16:46:46 +01002292#endif
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002293 print_stopped(tcp, stopped ? NULL : &si, sig);
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01002294
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002295 if (!stopped)
2296 /* It's signal-delivery-stop. Inject the signal */
Denys Vlasenko6cda73f2011-09-02 16:23:53 +02002297 goto restart_tracee;
Denys Vlasenko2ecba322011-08-21 17:35:39 +02002298
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002299 /* It's group-stop */
2300 if (use_seize) {
2301 /*
2302 * This ends ptrace-stop, but does *not* end group-stop.
2303 * This makes stopping signals work properly on straced process
2304 * (that is, process really stops. It used to continue to run).
Denys Vlasenkof2025022012-03-09 15:29:45 +01002305 */
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002306 if (ptrace_restart(PTRACE_LISTEN, tcp, 0) < 0) {
2307 /* Note: ptrace_restart emitted error message */
2308 exit_code = 1;
2309 return false;
2310 }
2311 return true;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002312 }
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002313 /* We don't have PTRACE_LISTEN support... */
2314 goto restart_tracee;
2315 }
2316
2317 /* We handled quick cases, we are permitted to interrupt now. */
2318 if (interrupted)
2319 return false;
2320
2321 /*
2322 * This should be syscall entry or exit.
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002323 * Handle it.
2324 */
2325 if (trace_syscall(tcp) < 0) {
2326 /*
2327 * ptrace() failed in trace_syscall().
2328 * Likely a result of process disappearing mid-flight.
2329 * Observed case: exit_group() or SIGKILL terminating
2330 * all processes in thread group.
2331 * We assume that ptrace error was caused by process death.
2332 * We used to detach(tcp) here, but since we no longer
2333 * implement "detach before death" policy/hack,
2334 * we can let this process to report its death to us
2335 * normally, via WIFEXITED or WIFSIGNALED wait status.
2336 */
2337 return true;
2338 }
2339
2340restart_tracee_with_sig_0:
2341 sig = 0;
2342
2343restart_tracee:
2344 if (ptrace_restart(PTRACE_SYSCALL, tcp, sig) < 0) {
2345 /* Note: ptrace_restart emitted error message */
2346 exit_code = 1;
2347 return false;
2348 }
2349
2350 return true;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002351}
Denys Vlasenkoecc8b972012-03-12 23:05:25 +01002352
2353int
2354main(int argc, char *argv[])
2355{
2356 init(argc, argv);
2357
Dmitry V. Levin4b4ec122015-02-07 17:31:54 +00002358 while (trace())
2359 ;
Denys Vlasenkoecc8b972012-03-12 23:05:25 +01002360
2361 cleanup();
2362 fflush(NULL);
Dmitry V. Levincf534362012-07-12 20:54:46 +00002363 if (shared_log != stderr)
2364 fclose(shared_log);
2365 if (popen_pid) {
2366 while (waitpid(popen_pid, NULL, 0) < 0 && errno == EINTR)
2367 ;
2368 }
Denys Vlasenkoecc8b972012-03-12 23:05:25 +01002369 if (exit_code > 0xff) {
2370 /* Avoid potential core file clobbering. */
Dmitry V. Levinc8938e02013-03-20 21:40:15 +00002371 struct_rlimit rlim = {0, 0};
2372 set_rlimit(RLIMIT_CORE, &rlim);
Denys Vlasenkoecc8b972012-03-12 23:05:25 +01002373
2374 /* Child was killed by a signal, mimic that. */
2375 exit_code &= 0xff;
2376 signal(exit_code, SIG_DFL);
2377 raise(exit_code);
2378 /* Paranoia - what if this signal is not fatal?
2379 Exit with 128 + signo then. */
2380 exit_code += 128;
2381 }
2382
2383 return exit_code;
2384}