blob: 15fc1b6f1a43facbc750af928b6480ce9a98d88d [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.
29 *
30 * $Id$
31 */
32
33#include "defs.h"
34
Denys Vlasenko3454e4b2011-05-23 21:29:03 +020035#include <stdarg.h>
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000036#include <sys/param.h>
37#include <fcntl.h>
38#include <sys/resource.h>
39#include <sys/wait.h>
40#include <sys/stat.h>
41#include <pwd.h>
42#include <grp.h>
Roland McGrath70b08532004-04-09 00:25:21 +000043#include <dirent.h>
Denys Vlasenkof7db5dd2012-01-28 01:16:02 +010044#include <sys/utsname.h>
Denys Vlasenko84703742012-02-25 02:38:52 +010045#if defined(IA64)
Wichert Akkerman7b3346b2001-10-09 23:47:38 +000046# include <asm/ptrace_offsets.h>
47#endif
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +010048/* In some libc, these aren't declared. Do it ourself: */
Denys Vlasenko96d5a762008-12-29 19:13:27 +000049extern char **environ;
Denys Vlasenko418d66a2009-01-17 01:52:54 +000050extern int optind;
51extern char *optarg;
Denys Vlasenko96d5a762008-12-29 19:13:27 +000052
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +010053
54#if defined __NR_tkill
55# define my_tkill(tid, sig) syscall(__NR_tkill, (tid), (sig))
56#else
57 /* kill() may choose arbitrarily the target task of the process group
58 while we later wait on a that specific TID. PID process waits become
59 TID task specific waits for a process under ptrace(2). */
60# warning "Neither tkill(2) nor tgkill(2) available, risk of strace hangs!"
61# define my_tkill(tid, sig) kill((tid), (sig))
62#endif
63
64#undef KERNEL_VERSION
65#define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))
66
67cflag_t cflag = CFLAG_NONE;
68unsigned int followfork = 0;
Denys Vlasenkof44cce42011-06-21 14:34:10 +020069unsigned int ptrace_setoptions = 0;
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +010070unsigned int xflag = 0;
71bool debug_flag = 0;
72bool Tflag = 0;
73bool qflag = 0;
Denys Vlasenko3454e4b2011-05-23 21:29:03 +020074/* Which WSTOPSIG(status) value marks syscall traps? */
Denys Vlasenko75422762011-05-27 14:36:01 +020075static unsigned int syscall_trap_sig = SIGTRAP;
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +010076static unsigned int tflag = 0;
77static bool iflag = 0;
78static bool rflag = 0;
79static bool print_pid_pfx = 0;
Denys Vlasenkob51581e2012-01-29 16:53:03 +010080
81/* -I n */
82enum {
83 INTR_NOT_SET = 0,
84 INTR_ANYWHERE = 1, /* don't block/ignore any signals */
85 INTR_WHILE_WAIT = 2, /* block fatal signals while decoding syscall. default */
86 INTR_NEVER = 3, /* block fatal signals. default if '-o FILE PROG' */
87 INTR_BLOCK_TSTP_TOO = 4, /* block fatal signals and SIGTSTP (^Z) */
88 NUM_INTR_OPTS
89};
90static int opt_intr;
91/* We play with signal mask only if this mode is active: */
92#define interactive (opt_intr == INTR_WHILE_WAIT)
93
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +000094/*
95 * daemonized_tracer supports -D option.
96 * With this option, strace forks twice.
97 * Unlike normal case, with -D *grandparent* process exec's,
98 * becoming a traced process. Child exits (this prevents traced process
99 * from having children it doesn't expect to have), and grandchild
100 * attaches to grandparent similarly to strace -p PID.
101 * This allows for more transparent interaction in cases
102 * when process and its parent are communicating via signals,
103 * wait() etc. Without -D, strace process gets lodged in between,
104 * disrupting parent<->child link.
105 */
106static bool daemonized_tracer = 0;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000107
Denys Vlasenko31fa8a22012-01-29 02:01:44 +0100108#ifdef USE_SEIZE
109static int post_attach_sigstop = TCB_IGNORE_ONE_SIGSTOP;
110# define use_seize (post_attach_sigstop == 0)
111#else
112# define post_attach_sigstop TCB_IGNORE_ONE_SIGSTOP
113# define use_seize 0
114#endif
115
Michal Ludvig17f8fb32002-11-06 13:17:21 +0000116/* Sometimes we want to print only succeeding syscalls. */
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +0100117bool not_failing_only = 0;
Michal Ludvig17f8fb32002-11-06 13:17:21 +0000118
Grant Edwards8a082772011-04-07 20:25:40 +0000119/* Show path associated with fd arguments */
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +0100120bool show_fd_path = 0;
Grant Edwards8a082772011-04-07 20:25:40 +0000121
122/* are we filtering traces based on paths? */
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +0100123bool tracing_paths = 0;
Grant Edwards8a082772011-04-07 20:25:40 +0000124
Denys Vlasenko61e7aad2012-03-15 13:44:17 +0100125static bool detach_on_execve = 0;
126static bool skip_startup_execve = 0;
127
Dmitry V. Levina6809652008-11-10 17:14:58 +0000128static int exit_code = 0;
129static int strace_child = 0;
Denys Vlasenko75422762011-05-27 14:36:01 +0200130static int strace_tracer_pid = 0;
Roland McGratheb9e2e82009-06-02 16:49:22 -0700131
Dmitry V. Levinb9fe0112006-12-13 16:59:44 +0000132static char *username = NULL;
Denys Vlasenkoead73bd2011-06-24 22:49:58 +0200133static uid_t run_uid;
134static gid_t run_gid;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000135
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +0100136unsigned int max_strlen = DEFAULT_STRLEN;
137static unsigned int acolumn = DEFAULT_ACOLUMN;
Denys Vlasenko102ec492011-08-25 01:27:59 +0200138static char *acolumn_spaces;
Dmitry V. Levinb9fe0112006-12-13 16:59:44 +0000139static char *outfname = NULL;
Denys Vlasenkoead73bd2011-06-24 22:49:58 +0200140static FILE *outf;
Denys Vlasenko000b6012012-01-28 01:25:03 +0100141struct tcb *printing_tcp = NULL;
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +0100142static unsigned int curcol;
Denys Vlasenkoead73bd2011-06-24 22:49:58 +0200143static struct tcb **tcbtab;
Denys Vlasenko2b60c352011-06-22 12:45:25 +0200144static unsigned int nprocs, tcbtabsize;
Denys Vlasenkoead73bd2011-06-24 22:49:58 +0200145static const char *progname;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000146
Denys Vlasenkof7db5dd2012-01-28 01:16:02 +0100147static char *os_release; /* from uname() */
148
Denys Vlasenko4c196382012-01-04 15:11:09 +0100149static int detach(struct tcb *tcp);
Andreas Schwabe5355de2009-10-27 16:56:43 +0100150static int trace(void);
151static void cleanup(void);
152static void interrupt(int sig);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000153static sigset_t empty_set, blocked_set;
154
155#ifdef HAVE_SIG_ATOMIC_T
156static volatile sig_atomic_t interrupted;
Denys Vlasenkoa3559252012-01-29 16:43:51 +0100157#else
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000158static volatile int interrupted;
Denys Vlasenkoa3559252012-01-29 16:43:51 +0100159#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000160
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000161static void
Denys Vlasenkocb2ad002011-06-23 13:05:29 +0200162usage(FILE *ofp, int exitval)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000163{
164 fprintf(ofp, "\
Denys Vlasenkob51581e2012-01-29 16:53:03 +0100165usage: strace [-CdDffhiqrtttTvVxxy] [-I n] [-a column] [-e expr]... [-o file]\n\
166 [-p pid]... [-s strsize] [-u username] [-E var=val]...\n\
Denys Vlasenkocdab1be2012-02-03 12:17:57 +0100167 [-P path] [PROG [ARGS]]\n\
Denys Vlasenkob51581e2012-01-29 16:53:03 +0100168 or: strace -c [-D] [-I n] [-e expr]... [-O overhead] [-S sortby] [-E var=val]...\n\
Denys Vlasenkocdab1be2012-02-03 12:17:57 +0100169 [PROG [ARGS]]\n\
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000170-c -- count time, calls, and errors for each syscall and report summary\n\
Andreas Schwabb87d30c2010-06-11 15:49:36 +0200171-C -- like -c but also print regular output while processes are running\n\
Denys Vlasenko3e084ac2012-03-15 13:39:05 +0100172-d -- enable debug output to stderr\n\
Denys Vlasenkob51581e2012-01-29 16:53:03 +0100173-D -- run tracer process as a detached grandchild, not as parent\n\
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000174-f -- follow forks, -ff -- with output into separate files\n\
Denys Vlasenko3e084ac2012-03-15 13:39:05 +0100175-F -- attempt to follow vforks (deprecated, use -f)\n\
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000176-i -- print instruction pointer at time of syscall\n\
Denys Vlasenkob51581e2012-01-29 16:53:03 +0100177-I interruptible\n\
178 1: no signals are blocked\n\
179 2: fatal signals are blocked while decoding syscall (default)\n\
180 3: fatal signals are always blocked (default if '-o FILE PROG')\n\
181 4: fatal signals and SIGTSTP (^Z) are always blocked\n\
182 (useful to make 'strace -o FILE PROG' not stop on ^Z)\n\
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000183-q -- suppress messages about attaching, detaching, etc.\n\
184-r -- print relative timestamp, -t -- absolute timestamp, -tt -- with usecs\n\
Denys Vlasenkocdab1be2012-02-03 12:17:57 +0100185-T -- print time spent in each syscall\n\
186-v -- verbose mode: print unabbreviated argv, stat, termios, etc. args\n\
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000187-x -- print non-ascii strings in hex, -xx -- print all strings in hex\n\
Grant Edwards8a082772011-04-07 20:25:40 +0000188-y -- print paths associated with file descriptor arguments\n\
Denys Vlasenkocdab1be2012-02-03 12:17:57 +0100189-h -- print help message\n\
190-V -- print version\n\
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000191-a column -- alignment COLUMN for printing syscall results (default %d)\n\
192-e expr -- a qualifying expression: option=[!]all or option=[!]val1[,val2]...\n\
193 options: trace, abbrev, verbose, raw, signal, read, or write\n\
194-o file -- send trace output to FILE instead of stderr\n\
195-O overhead -- set overhead for tracing syscalls to OVERHEAD usecs\n\
196-p pid -- trace process with process id PID, may be repeated\n\
197-s strsize -- limit length of print strings to STRSIZE chars (default %d)\n\
198-S sortby -- sort syscall counts by: time, calls, name, nothing (default %s)\n\
199-u username -- run command as username handling setuid and/or setgid\n\
Roland McGrathde6e5332003-01-24 04:31:23 +0000200-E var=val -- put var=val in the environment for command\n\
201-E var -- remove var from the environment for command\n\
Grant Edwards8a082772011-04-07 20:25:40 +0000202-P path -- trace accesses to path\n\
Denys Vlasenko61e7aad2012-03-15 13:44:17 +0100203"
204/* this is broken, so don't document it
Michal Ludvig17f8fb32002-11-06 13:17:21 +0000205-z -- print only succeeding syscalls\n\
Denys Vlasenko61e7aad2012-03-15 13:44:17 +0100206 */
207/* experimental, don't document it yet (option letter may change in the future!)
208-b -- detach on successful execve\n\
209 */
Roland McGrathde6e5332003-01-24 04:31:23 +0000210, DEFAULT_ACOLUMN, DEFAULT_STRLEN, DEFAULT_SORTBY);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000211 exit(exitval);
212}
213
Denys Vlasenko75422762011-05-27 14:36:01 +0200214static void die(void) __attribute__ ((noreturn));
215static void die(void)
216{
217 if (strace_tracer_pid == getpid()) {
218 cflag = 0;
219 cleanup();
220 }
221 exit(1);
222}
223
224static void verror_msg(int err_no, const char *fmt, va_list p)
Denys Vlasenko3454e4b2011-05-23 21:29:03 +0200225{
Denys Vlasenko82bb78c2012-01-24 10:17:18 +0100226 char *msg;
227
Dmitry V. Levin44d05322011-06-09 15:50:41 +0000228 fflush(NULL);
Denys Vlasenko82bb78c2012-01-24 10:17:18 +0100229
230 /* We want to print entire message with single fprintf to ensure
231 * message integrity if stderr is shared with other programs.
232 * Thus we use vasprintf + single fprintf.
233 */
234 msg = NULL;
Denys Vlasenkocfad5432012-01-24 12:48:02 +0100235 if (vasprintf(&msg, fmt, p) >= 0) {
Denys Vlasenko82bb78c2012-01-24 10:17:18 +0100236 if (err_no)
237 fprintf(stderr, "%s: %s: %s\n", progname, msg, strerror(err_no));
238 else
239 fprintf(stderr, "%s: %s\n", progname, msg);
240 free(msg);
241 } else {
242 /* malloc in vasprintf failed, try it without malloc */
243 fprintf(stderr, "%s: ", progname);
244 vfprintf(stderr, fmt, p);
245 if (err_no)
246 fprintf(stderr, ": %s\n", strerror(err_no));
247 else
248 putc('\n', stderr);
249 }
250 /* We don't switch stderr to buffered, thus fprintf(stderr)
251 * always flushes its output and this is not necessary: */
252 /* fflush(stderr); */
Denys Vlasenko75422762011-05-27 14:36:01 +0200253}
Denys Vlasenko3454e4b2011-05-23 21:29:03 +0200254
Denys Vlasenko75422762011-05-27 14:36:01 +0200255void error_msg(const char *fmt, ...)
256{
257 va_list p;
258 va_start(p, fmt);
259 verror_msg(0, fmt, p);
260 va_end(p);
261}
262
263void error_msg_and_die(const char *fmt, ...)
264{
265 va_list p;
266 va_start(p, fmt);
267 verror_msg(0, fmt, p);
268 die();
269}
270
271void perror_msg(const char *fmt, ...)
272{
273 va_list p;
274 va_start(p, fmt);
275 verror_msg(errno, fmt, p);
276 va_end(p);
277}
278
279void perror_msg_and_die(const char *fmt, ...)
280{
281 va_list p;
282 va_start(p, fmt);
283 verror_msg(errno, fmt, p);
284 die();
Denys Vlasenko3454e4b2011-05-23 21:29:03 +0200285}
286
Denys Vlasenko1d46ba52011-08-31 14:00:02 +0200287void die_out_of_memory(void)
288{
289 static bool recursed = 0;
290 if (recursed)
291 exit(1);
292 recursed = 1;
293 error_msg_and_die("Out of memory");
294}
295
Mike Frysingerc1a5b7e2009-10-07 20:41:29 -0400296/* Glue for systems without a MMU that cannot provide fork() */
297#ifdef HAVE_FORK
298# define strace_vforked 0
299#else
300# define strace_vforked 1
301# define fork() vfork()
302#endif
303
Denys Vlasenko31fa8a22012-01-29 02:01:44 +0100304#ifdef USE_SEIZE
305static int
306ptrace_attach_or_seize(int pid)
307{
308 int r;
309 if (!use_seize)
310 return ptrace(PTRACE_ATTACH, pid, 0, 0);
311 r = ptrace(PTRACE_SEIZE, pid, 0, PTRACE_SEIZE_DEVEL);
312 if (r)
313 return r;
314 r = ptrace(PTRACE_INTERRUPT, pid, 0, 0);
315 return r;
316}
317#else
318# define ptrace_attach_or_seize(pid) ptrace(PTRACE_ATTACH, (pid), 0, 0)
319#endif
320
Denys Vlasenko1f532ab2011-06-22 13:11:23 +0200321static void
Dmitry V. Levin10de62b2006-12-13 21:45:31 +0000322set_cloexec_flag(int fd)
323{
Denys Vlasenko1f532ab2011-06-22 13:11:23 +0200324 int flags, newflags;
Dmitry V. Levin10de62b2006-12-13 21:45:31 +0000325
Denys Vlasenko1f532ab2011-06-22 13:11:23 +0200326 flags = fcntl(fd, F_GETFD);
327 if (flags < 0) {
328 /* Can happen only if fd is bad.
329 * Should never happen: if it does, we have a bug
330 * in the caller. Therefore we just abort
331 * instead of propagating the error.
332 */
333 perror_msg_and_die("fcntl(%d, F_GETFD)", fd);
Dmitry V. Levin10de62b2006-12-13 21:45:31 +0000334 }
335
336 newflags = flags | FD_CLOEXEC;
337 if (flags == newflags)
Denys Vlasenko1f532ab2011-06-22 13:11:23 +0200338 return;
Dmitry V. Levin10de62b2006-12-13 21:45:31 +0000339
Denys Vlasenko1f532ab2011-06-22 13:11:23 +0200340 fcntl(fd, F_SETFD, newflags); /* never fails */
Dmitry V. Levin10de62b2006-12-13 21:45:31 +0000341}
342
Denys Vlasenko75fe85c2012-03-09 15:15:24 +0100343static void kill_save_errno(pid_t pid, int sig)
344{
345 int saved_errno = errno;
346
347 (void) kill(pid, sig);
348 errno = saved_errno;
349}
350
Denys Vlasenko2e856a12012-03-12 23:02:26 +0100351void
352tprintf(const char *fmt, ...)
353{
354 va_list args;
355
356 va_start(args, fmt);
357 if (outf) {
358 int n = vfprintf(outf, fmt, args);
359 if (n < 0) {
360 if (outf != stderr)
361 perror(outfname == NULL
362 ? "<writing to pipe>" : outfname);
363 } else
364 curcol += n;
365 }
366 va_end(args);
367}
368
369void
370tprints(const char *str)
371{
372 if (outf) {
373 int n = fputs(str, outf);
374 if (n >= 0) {
375 curcol += strlen(str);
376 return;
377 }
378 if (outf != stderr)
379 perror(outfname == NULL
380 ? "<writing to pipe>" : outfname);
381 }
382}
383
384void
Denys Vlasenko7de265d2012-03-13 11:44:31 +0100385line_ended(void)
386{
387 curcol = 0;
388 fflush(outf);
389 if (!printing_tcp)
390 return;
391 printing_tcp->curcol = 0;
392 printing_tcp = NULL;
393}
394
395void
Denys Vlasenko2e856a12012-03-12 23:02:26 +0100396printleader(struct tcb *tcp)
397{
Denys Vlasenko7de265d2012-03-13 11:44:31 +0100398 /* If -ff, "previous tcb we printed" is always the same as current,
399 * because we have per-tcb output files.
400 */
401 if (followfork >= 2)
402 printing_tcp = tcp;
403
Denys Vlasenko2e856a12012-03-12 23:02:26 +0100404 if (printing_tcp) {
Denys Vlasenko7de265d2012-03-13 11:44:31 +0100405 outf = printing_tcp->outf;
406 curcol = printing_tcp->curcol;
Denys Vlasenko2e856a12012-03-12 23:02:26 +0100407 if (printing_tcp->ptrace_errno) {
408 if (printing_tcp->flags & TCB_INSYSCALL) {
409 tprints(" <unavailable>) ");
410 tabto();
411 }
412 tprints("= ? <unavailable>\n");
413 printing_tcp->ptrace_errno = 0;
Denys Vlasenko7de265d2012-03-13 11:44:31 +0100414 printing_tcp->curcol = 0;
415 }
416 if (printing_tcp->curcol != 0 && (followfork < 2 || printing_tcp == tcp)) {
417 /*
418 * case 1: we have a shared log (i.e. not -ff), and last line
419 * wasn't finished (same or different tcb, doesn't matter).
420 * case 2: split log, we are the same tcb, but our last line
421 * didn't finish ("SIGKILL nuked us after syscall entry" etc).
422 */
Denys Vlasenko2e856a12012-03-12 23:02:26 +0100423 tprints(" <unfinished ...>\n");
Denys Vlasenko7de265d2012-03-13 11:44:31 +0100424 printing_tcp->flags |= TCB_REPRINT;
425 printing_tcp->curcol = 0;
Denys Vlasenko2e856a12012-03-12 23:02:26 +0100426 }
427 }
428
429 printing_tcp = tcp;
Denys Vlasenko7de265d2012-03-13 11:44:31 +0100430 outf = tcp->outf;
Denys Vlasenko2e856a12012-03-12 23:02:26 +0100431 curcol = 0;
432
433 if (print_pid_pfx)
434 tprintf("%-5d ", tcp->pid);
435 else if (nprocs > 1 && !outfname)
436 tprintf("[pid %5u] ", tcp->pid);
437
438 if (tflag) {
439 char str[sizeof("HH:MM:SS")];
440 struct timeval tv, dtv;
441 static struct timeval otv;
442
443 gettimeofday(&tv, NULL);
444 if (rflag) {
445 if (otv.tv_sec == 0)
446 otv = tv;
447 tv_sub(&dtv, &tv, &otv);
448 tprintf("%6ld.%06ld ",
449 (long) dtv.tv_sec, (long) dtv.tv_usec);
450 otv = tv;
451 }
452 else if (tflag > 2) {
453 tprintf("%ld.%06ld ",
454 (long) tv.tv_sec, (long) tv.tv_usec);
455 }
456 else {
457 time_t local = tv.tv_sec;
458 strftime(str, sizeof(str), "%T", localtime(&local));
459 if (tflag > 1)
460 tprintf("%s.%06ld ", str, (long) tv.tv_usec);
461 else
462 tprintf("%s ", str);
463 }
464 }
465 if (iflag)
466 printcall(tcp);
467}
468
469void
470tabto(void)
471{
472 if (curcol < acolumn)
473 tprints(acolumn_spaces + curcol);
474}
475
Dmitry V. Levin10de62b2006-12-13 21:45:31 +0000476/*
477 * When strace is setuid executable, we have to swap uids
478 * before and after filesystem and process management operations.
479 */
480static void
481swap_uid(void)
482{
Dmitry V. Levin10de62b2006-12-13 21:45:31 +0000483 int euid = geteuid(), uid = getuid();
484
Denys Vlasenko7b609d52011-06-22 14:32:43 +0200485 if (euid != uid && setreuid(euid, uid) < 0) {
Denys Vlasenkocb2ad002011-06-23 13:05:29 +0200486 perror_msg_and_die("setreuid");
Dmitry V. Levin10de62b2006-12-13 21:45:31 +0000487 }
Dmitry V. Levin10de62b2006-12-13 21:45:31 +0000488}
489
Roland McGrath4bfa6262007-07-05 20:03:16 +0000490#if _LFS64_LARGEFILE
491# define fopen_for_output fopen64
492#else
493# define fopen_for_output fopen
494#endif
495
Dmitry V. Levin10de62b2006-12-13 21:45:31 +0000496static FILE *
Denys Vlasenko3d5ed412011-06-22 13:17:16 +0200497strace_fopen(const char *path)
Dmitry V. Levin10de62b2006-12-13 21:45:31 +0000498{
499 FILE *fp;
500
501 swap_uid();
Denys Vlasenko3d5ed412011-06-22 13:17:16 +0200502 fp = fopen_for_output(path, "w");
503 if (!fp)
504 perror_msg_and_die("Can't fopen '%s'", path);
Dmitry V. Levin10de62b2006-12-13 21:45:31 +0000505 swap_uid();
Denys Vlasenko3d5ed412011-06-22 13:17:16 +0200506 set_cloexec_flag(fileno(fp));
Dmitry V. Levin10de62b2006-12-13 21:45:31 +0000507 return fp;
508}
509
Denys Vlasenko7dd23382011-06-22 13:03:56 +0200510static int popen_pid = 0;
Dmitry V. Levin10de62b2006-12-13 21:45:31 +0000511
512#ifndef _PATH_BSHELL
513# define _PATH_BSHELL "/bin/sh"
514#endif
515
516/*
517 * We cannot use standard popen(3) here because we have to distinguish
518 * popen child process from other processes we trace, and standard popen(3)
519 * does not export its child's pid.
520 */
521static FILE *
522strace_popen(const char *command)
523{
Denys Vlasenko7dd23382011-06-22 13:03:56 +0200524 FILE *fp;
525 int fds[2];
Dmitry V. Levin10de62b2006-12-13 21:45:31 +0000526
527 swap_uid();
528 if (pipe(fds) < 0)
Denys Vlasenko7dd23382011-06-22 13:03:56 +0200529 perror_msg_and_die("pipe");
Dmitry V. Levin10de62b2006-12-13 21:45:31 +0000530
Denys Vlasenko7dd23382011-06-22 13:03:56 +0200531 set_cloexec_flag(fds[1]); /* never fails */
Dmitry V. Levin10de62b2006-12-13 21:45:31 +0000532
Denys Vlasenko7dd23382011-06-22 13:03:56 +0200533 popen_pid = vfork();
534 if (popen_pid == -1)
535 perror_msg_and_die("vfork");
Dmitry V. Levin10de62b2006-12-13 21:45:31 +0000536
Denys Vlasenko7dd23382011-06-22 13:03:56 +0200537 if (popen_pid == 0) {
Dmitry V. Levin10de62b2006-12-13 21:45:31 +0000538 /* child */
539 close(fds[1]);
Denys Vlasenko7dd23382011-06-22 13:03:56 +0200540 if (fds[0] != 0) {
541 if (dup2(fds[0], 0))
542 perror_msg_and_die("dup2");
543 close(fds[0]);
Dmitry V. Levin10de62b2006-12-13 21:45:31 +0000544 }
545 execl(_PATH_BSHELL, "sh", "-c", command, NULL);
Denys Vlasenko7dd23382011-06-22 13:03:56 +0200546 perror_msg_and_die("Can't execute '%s'", _PATH_BSHELL);
Dmitry V. Levin10de62b2006-12-13 21:45:31 +0000547 }
Denys Vlasenko7dd23382011-06-22 13:03:56 +0200548
549 /* parent */
550 close(fds[0]);
551 swap_uid();
552 fp = fdopen(fds[1], "w");
553 if (!fp)
Denys Vlasenko1d46ba52011-08-31 14:00:02 +0200554 die_out_of_memory();
Denys Vlasenko7dd23382011-06-22 13:03:56 +0200555 return fp;
Dmitry V. Levin10de62b2006-12-13 21:45:31 +0000556}
557
Denys Vlasenko3d5ed412011-06-22 13:17:16 +0200558static void
Dmitry V. Levin10de62b2006-12-13 21:45:31 +0000559newoutf(struct tcb *tcp)
560{
Denys Vlasenko7de265d2012-03-13 11:44:31 +0100561 if (outfname && followfork >= 2) {
Denys Vlasenko7a8bf062009-01-29 20:38:20 +0000562 char name[520 + sizeof(int) * 3];
Denys Vlasenko7a8bf062009-01-29 20:38:20 +0000563 sprintf(name, "%.512s.%u", outfname, tcp->pid);
Denys Vlasenko3d5ed412011-06-22 13:17:16 +0200564 tcp->outf = strace_fopen(name);
Dmitry V. Levin10de62b2006-12-13 21:45:31 +0000565 }
Dmitry V. Levin10de62b2006-12-13 21:45:31 +0000566}
567
Denys Vlasenko558e5122012-03-12 23:32:16 +0100568static void
569process_opt_p_list(char *opt)
Denys Vlasenkoe8172b72012-03-09 13:01:04 +0100570{
571 while (*opt) {
572 /*
573 * We accept -p PID,PID; -p "`pidof PROG`"; -p "`pgrep PROG`".
574 * pidof uses space as delim, pgrep uses newline. :(
575 */
576 int pid;
Denys Vlasenkoe8172b72012-03-09 13:01:04 +0100577 char *delim = opt + strcspn(opt, ", \n\t");
578 char c = *delim;
579
580 *delim = '\0';
581 pid = atoi(opt); /* TODO: stricter parsing of the number? */
582 if (pid <= 0) {
583 error_msg("Invalid process id: '%s'", opt);
584 *delim = c;
585 return;
586 }
587 if (pid == strace_tracer_pid) {
588 error_msg("I'm sorry, I can't let you do that, Dave.");
589 *delim = c;
590 return;
591 }
592 *delim = c;
Denys Vlasenko75fe85c2012-03-09 15:15:24 +0100593 alloc_tcb(pid, 0);
Denys Vlasenkoe8172b72012-03-09 13:01:04 +0100594 if (c == '\0')
595 break;
596 opt = delim + 1;
597 }
598}
599
Roland McGrath02203312007-06-11 22:06:31 +0000600static void
601startup_attach(void)
602{
603 int tcbi;
604 struct tcb *tcp;
605
606 /*
607 * Block user interruptions as we would leave the traced
608 * process stopped (process state T) if we would terminate in
Denys Vlasenko2e968c02011-09-01 10:23:09 +0200609 * between PTRACE_ATTACH and wait4() on SIGSTOP.
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200610 * We rely on cleanup() from this point on.
Roland McGrath02203312007-06-11 22:06:31 +0000611 */
612 if (interactive)
613 sigprocmask(SIG_BLOCK, &blocked_set, NULL);
614
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +0000615 if (daemonized_tracer) {
616 pid_t pid = fork();
617 if (pid < 0) {
Denys Vlasenko014ca3a2011-09-02 16:19:30 +0200618 perror_msg_and_die("fork");
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +0000619 }
620 if (pid) { /* parent */
621 /*
Denys Vlasenko75422762011-05-27 14:36:01 +0200622 * Wait for grandchild to attach to straced process
623 * (grandparent). Grandchild SIGKILLs us after it attached.
624 * Grandparent's wait() is unblocked by our death,
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +0000625 * it proceeds to exec the straced program.
626 */
627 pause();
628 _exit(0); /* paranoia */
629 }
Denys Vlasenko75422762011-05-27 14:36:01 +0200630 /* grandchild */
631 /* We will be the tracer process. Remember our new pid: */
632 strace_tracer_pid = getpid();
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +0000633 }
634
Roland McGrath02203312007-06-11 22:06:31 +0000635 for (tcbi = 0; tcbi < tcbtabsize; tcbi++) {
636 tcp = tcbtab[tcbi];
Denys Vlasenko44f87ef2011-08-17 15:18:21 +0200637
Denys Vlasenko75fe85c2012-03-09 15:15:24 +0100638 if (!(tcp->flags & TCB_INUSE))
639 continue;
640
Denys Vlasenkod116a732011-09-05 14:01:33 +0200641 /* Is this a process we should attach to, but not yet attached? */
Denys Vlasenko75fe85c2012-03-09 15:15:24 +0100642 if (tcp->flags & TCB_ATTACHED)
643 continue; /* no, we already attached it */
Denys Vlasenkod116a732011-09-05 14:01:33 +0200644
645 /* Reinitialize the output since it may have changed */
Roland McGrath02203312007-06-11 22:06:31 +0000646 tcp->outf = outf;
Denys Vlasenko3d5ed412011-06-22 13:17:16 +0200647 newoutf(tcp);
Roland McGrath02203312007-06-11 22:06:31 +0000648
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +0000649 if (followfork && !daemonized_tracer) {
Denys Vlasenko7a8bf062009-01-29 20:38:20 +0000650 char procdir[sizeof("/proc/%d/task") + sizeof(int) * 3];
Roland McGrath02203312007-06-11 22:06:31 +0000651 DIR *dir;
652
653 sprintf(procdir, "/proc/%d/task", tcp->pid);
654 dir = opendir(procdir);
655 if (dir != NULL) {
656 unsigned int ntid = 0, nerr = 0;
657 struct dirent *de;
Denys Vlasenko381dbc22011-09-05 13:59:39 +0200658
Roland McGrath02203312007-06-11 22:06:31 +0000659 while ((de = readdir(dir)) != NULL) {
Denys Vlasenko381dbc22011-09-05 13:59:39 +0200660 struct tcb *cur_tcp;
661 int tid;
662
Denys Vlasenko7a8bf062009-01-29 20:38:20 +0000663 if (de->d_fileno == 0)
Roland McGrath02203312007-06-11 22:06:31 +0000664 continue;
665 tid = atoi(de->d_name);
666 if (tid <= 0)
667 continue;
668 ++ntid;
Denys Vlasenko31fa8a22012-01-29 02:01:44 +0100669 if (ptrace_attach_or_seize(tid) < 0) {
Roland McGrath02203312007-06-11 22:06:31 +0000670 ++nerr;
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +0100671 if (debug_flag)
Denys Vlasenkof95397a2011-06-24 16:51:16 +0200672 fprintf(stderr, "attach to pid %d failed\n", tid);
Denys Vlasenko381dbc22011-09-05 13:59:39 +0200673 continue;
Denys Vlasenkof95397a2011-06-24 16:51:16 +0200674 }
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +0100675 if (debug_flag)
Denys Vlasenko381dbc22011-09-05 13:59:39 +0200676 fprintf(stderr, "attach to pid %d succeeded\n", tid);
677 cur_tcp = tcp;
678 if (tid != tcp->pid)
679 cur_tcp = alloctcb(tid);
Denys Vlasenko31fa8a22012-01-29 02:01:44 +0100680 cur_tcp->flags |= TCB_ATTACHED | TCB_STARTUP | post_attach_sigstop;
Roland McGrath02203312007-06-11 22:06:31 +0000681 }
682 closedir(dir);
Denys Vlasenko381dbc22011-09-05 13:59:39 +0200683 if (interactive) {
684 sigprocmask(SIG_SETMASK, &empty_set, NULL);
685 if (interrupted)
686 goto ret;
687 sigprocmask(SIG_BLOCK, &blocked_set, NULL);
688 }
Denys Vlasenko7a8bf062009-01-29 20:38:20 +0000689 ntid -= nerr;
690 if (ntid == 0) {
Roland McGrath02203312007-06-11 22:06:31 +0000691 perror("attach: ptrace(PTRACE_ATTACH, ...)");
692 droptcb(tcp);
693 continue;
694 }
695 if (!qflag) {
Denys Vlasenko7a8bf062009-01-29 20:38:20 +0000696 fprintf(stderr, ntid > 1
697? "Process %u attached with %u threads - interrupt to quit\n"
698: "Process %u attached - interrupt to quit\n",
Denys Vlasenko44f87ef2011-08-17 15:18:21 +0200699 tcp->pid, ntid);
Roland McGrath02203312007-06-11 22:06:31 +0000700 }
Denys Vlasenko75fe85c2012-03-09 15:15:24 +0100701 if (!(tcp->flags & TCB_ATTACHED)) {
Denys Vlasenkof88837a2011-09-05 14:05:46 +0200702 /* -p PID, we failed to attach to PID itself
703 * but did attach to some of its sibling threads.
704 * Drop PID's tcp.
705 */
706 droptcb(tcp);
707 }
Roland McGrath02203312007-06-11 22:06:31 +0000708 continue;
Denys Vlasenko7a8bf062009-01-29 20:38:20 +0000709 } /* if (opendir worked) */
710 } /* if (-f) */
Denys Vlasenko31fa8a22012-01-29 02:01:44 +0100711 if (ptrace_attach_or_seize(tcp->pid) < 0) {
Roland McGrath02203312007-06-11 22:06:31 +0000712 perror("attach: ptrace(PTRACE_ATTACH, ...)");
713 droptcb(tcp);
714 continue;
715 }
Denys Vlasenko75fe85c2012-03-09 15:15:24 +0100716 tcp->flags |= TCB_ATTACHED | TCB_STARTUP | post_attach_sigstop;
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +0100717 if (debug_flag)
Denys Vlasenkof95397a2011-06-24 16:51:16 +0200718 fprintf(stderr, "attach to pid %d (main) succeeded\n", tcp->pid);
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +0000719
720 if (daemonized_tracer) {
721 /*
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +0000722 * Make parent go away.
723 * Also makes grandparent's wait() unblock.
724 */
725 kill(getppid(), SIGKILL);
726 }
727
Roland McGrath02203312007-06-11 22:06:31 +0000728 if (!qflag)
729 fprintf(stderr,
730 "Process %u attached - interrupt to quit\n",
731 tcp->pid);
Denys Vlasenkof95397a2011-06-24 16:51:16 +0200732 } /* for each tcbtab[] */
Roland McGrath02203312007-06-11 22:06:31 +0000733
Denys Vlasenko44f87ef2011-08-17 15:18:21 +0200734 ret:
Roland McGrath02203312007-06-11 22:06:31 +0000735 if (interactive)
736 sigprocmask(SIG_SETMASK, &empty_set, NULL);
737}
738
739static void
Denys Vlasenko12014262011-05-30 14:00:14 +0200740startup_child(char **argv)
Roland McGrath02203312007-06-11 22:06:31 +0000741{
742 struct stat statbuf;
743 const char *filename;
744 char pathname[MAXPATHLEN];
745 int pid = 0;
746 struct tcb *tcp;
747
748 filename = argv[0];
749 if (strchr(filename, '/')) {
750 if (strlen(filename) > sizeof pathname - 1) {
751 errno = ENAMETOOLONG;
Denys Vlasenkocb2ad002011-06-23 13:05:29 +0200752 perror_msg_and_die("exec");
Roland McGrath02203312007-06-11 22:06:31 +0000753 }
754 strcpy(pathname, filename);
755 }
756#ifdef USE_DEBUGGING_EXEC
757 /*
758 * Debuggers customarily check the current directory
759 * first regardless of the path but doing that gives
760 * security geeks a panic attack.
761 */
762 else if (stat(filename, &statbuf) == 0)
763 strcpy(pathname, filename);
764#endif /* USE_DEBUGGING_EXEC */
765 else {
Dmitry V. Levin30145dd2010-09-06 22:08:24 +0000766 const char *path;
Roland McGrath02203312007-06-11 22:06:31 +0000767 int m, n, len;
768
769 for (path = getenv("PATH"); path && *path; path += m) {
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100770 const char *colon = strchr(path, ':');
771 if (colon) {
772 n = colon - path;
Roland McGrath02203312007-06-11 22:06:31 +0000773 m = n + 1;
774 }
775 else
776 m = n = strlen(path);
777 if (n == 0) {
778 if (!getcwd(pathname, MAXPATHLEN))
779 continue;
780 len = strlen(pathname);
781 }
782 else if (n > sizeof pathname - 1)
783 continue;
784 else {
785 strncpy(pathname, path, n);
786 len = n;
787 }
788 if (len && pathname[len - 1] != '/')
789 pathname[len++] = '/';
790 strcpy(pathname + len, filename);
791 if (stat(pathname, &statbuf) == 0 &&
792 /* Accept only regular files
793 with some execute bits set.
794 XXX not perfect, might still fail */
795 S_ISREG(statbuf.st_mode) &&
796 (statbuf.st_mode & 0111))
797 break;
798 }
799 }
800 if (stat(pathname, &statbuf) < 0) {
Denys Vlasenkocb2ad002011-06-23 13:05:29 +0200801 perror_msg_and_die("Can't stat '%s'", filename);
Roland McGrath02203312007-06-11 22:06:31 +0000802 }
Dmitry V. Levina6809652008-11-10 17:14:58 +0000803 strace_child = pid = fork();
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +0000804 if (pid < 0) {
Denys Vlasenkocb2ad002011-06-23 13:05:29 +0200805 perror_msg_and_die("fork");
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +0000806 }
Denys Vlasenko75422762011-05-27 14:36:01 +0200807 if ((pid != 0 && daemonized_tracer) /* -D: parent to become a traced process */
808 || (pid == 0 && !daemonized_tracer) /* not -D: child to become a traced process */
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +0000809 ) {
810 pid = getpid();
Denys Vlasenko2e968c02011-09-01 10:23:09 +0200811 if (outf != stderr)
812 close(fileno(outf));
Denys Vlasenko31fa8a22012-01-29 02:01:44 +0100813 if (!daemonized_tracer && !use_seize) {
814 if (ptrace(PTRACE_TRACEME, 0L, 0L, 0L) < 0) {
Denys Vlasenkocb2ad002011-06-23 13:05:29 +0200815 perror_msg_and_die("ptrace(PTRACE_TRACEME, ...)");
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +0000816 }
Roland McGrath02203312007-06-11 22:06:31 +0000817 }
Roland McGrath02203312007-06-11 22:06:31 +0000818
Denys Vlasenkoab034fb2011-09-01 10:27:42 +0200819 if (username != NULL) {
Roland McGrath02203312007-06-11 22:06:31 +0000820 uid_t run_euid = run_uid;
821 gid_t run_egid = run_gid;
822
823 if (statbuf.st_mode & S_ISUID)
824 run_euid = statbuf.st_uid;
825 if (statbuf.st_mode & S_ISGID)
826 run_egid = statbuf.st_gid;
Roland McGrath02203312007-06-11 22:06:31 +0000827 /*
828 * It is important to set groups before we
829 * lose privileges on setuid.
830 */
Denys Vlasenkoab034fb2011-09-01 10:27:42 +0200831 if (initgroups(username, run_gid) < 0) {
832 perror_msg_and_die("initgroups");
833 }
834 if (setregid(run_gid, run_egid) < 0) {
835 perror_msg_and_die("setregid");
836 }
837 if (setreuid(run_uid, run_euid) < 0) {
838 perror_msg_and_die("setreuid");
Roland McGrath02203312007-06-11 22:06:31 +0000839 }
840 }
Denys Vlasenkoab034fb2011-09-01 10:27:42 +0200841 else if (geteuid() != 0)
Roland McGrath02203312007-06-11 22:06:31 +0000842 setreuid(run_uid, run_uid);
843
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +0000844 if (!daemonized_tracer) {
845 /*
Denys Vlasenko2e968c02011-09-01 10:23:09 +0200846 * Induce a ptrace stop. Tracer (our parent)
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +0000847 * will resume us with PTRACE_SYSCALL and display
Denys Vlasenko2e968c02011-09-01 10:23:09 +0200848 * the immediately following execve syscall.
849 * Can't do this on NOMMU systems, we are after
850 * vfork: parent is blocked, stopping would deadlock.
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +0000851 */
Mike Frysingerc1a5b7e2009-10-07 20:41:29 -0400852 if (!strace_vforked)
Denys Vlasenko2e968c02011-09-01 10:23:09 +0200853 kill(pid, SIGSTOP);
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +0000854 } else {
855 struct sigaction sv_sigchld;
856 sigaction(SIGCHLD, NULL, &sv_sigchld);
857 /*
858 * Make sure it is not SIG_IGN, otherwise wait
859 * will not block.
860 */
861 signal(SIGCHLD, SIG_DFL);
862 /*
863 * Wait for grandchild to attach to us.
864 * It kills child after that, and wait() unblocks.
865 */
866 alarm(3);
867 wait(NULL);
868 alarm(0);
869 sigaction(SIGCHLD, &sv_sigchld, NULL);
870 }
Roland McGrath02203312007-06-11 22:06:31 +0000871
872 execv(pathname, argv);
Denys Vlasenkocb2ad002011-06-23 13:05:29 +0200873 perror_msg_and_die("exec");
Roland McGrath02203312007-06-11 22:06:31 +0000874 }
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +0000875
Denys Vlasenko2e968c02011-09-01 10:23:09 +0200876 /* We are the tracer */
Denys Vlasenko75422762011-05-27 14:36:01 +0200877
Denys Vlasenko2e968c02011-09-01 10:23:09 +0200878 if (!daemonized_tracer) {
Denys Vlasenko31fa8a22012-01-29 02:01:44 +0100879 if (!use_seize) {
880 /* child did PTRACE_TRACEME, nothing to do in parent */
881 } else {
882 if (!strace_vforked) {
883 /* Wait until child stopped itself */
884 int status;
885 while (waitpid(pid, &status, WSTOPPED) < 0) {
886 if (errno == EINTR)
887 continue;
888 perror_msg_and_die("waitpid");
889 }
890 if (!WIFSTOPPED(status) || WSTOPSIG(status) != SIGSTOP) {
Denys Vlasenko75fe85c2012-03-09 15:15:24 +0100891 kill_save_errno(pid, SIGKILL);
Denys Vlasenko31fa8a22012-01-29 02:01:44 +0100892 perror_msg_and_die("Unexpected wait status %x", status);
893 }
894 }
895 /* Else: vforked case, we have no way to sync.
896 * Just attach to it as soon as possible.
897 * This means that we may miss a few first syscalls...
898 */
899
900 if (ptrace_attach_or_seize(pid)) {
Denys Vlasenko75fe85c2012-03-09 15:15:24 +0100901 kill_save_errno(pid, SIGKILL);
Denys Vlasenko31fa8a22012-01-29 02:01:44 +0100902 perror_msg_and_die("Can't attach to %d", pid);
903 }
904 if (!strace_vforked)
905 kill(pid, SIGCONT);
906 }
Denys Vlasenko2e968c02011-09-01 10:23:09 +0200907 tcp = alloctcb(pid);
Denys Vlasenkof88837a2011-09-05 14:05:46 +0200908 if (!strace_vforked)
Denys Vlasenko75fe85c2012-03-09 15:15:24 +0100909 tcp->flags |= TCB_ATTACHED | TCB_STRACE_CHILD | TCB_STARTUP | post_attach_sigstop;
Denys Vlasenkof88837a2011-09-05 14:05:46 +0200910 else
Denys Vlasenko75fe85c2012-03-09 15:15:24 +0100911 tcp->flags |= TCB_ATTACHED | TCB_STRACE_CHILD | TCB_STARTUP;
Denys Vlasenko2e968c02011-09-01 10:23:09 +0200912 }
913 else {
914 /* With -D, *we* are child here, IOW: different pid. Fetch it: */
915 strace_tracer_pid = getpid();
916 /* The tracee is our parent: */
917 pid = getppid();
Denys Vlasenkof2025022012-03-09 15:29:45 +0100918 alloctcb(pid);
919 /* attaching will be done later, by startup_attach */
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +0000920 }
Roland McGrath02203312007-06-11 22:06:31 +0000921}
922
Wang Chaob13c0de2010-11-12 17:25:19 +0800923/*
Dmitry V. Levinb1467442010-12-02 20:56:43 +0000924 * Test whether the kernel support PTRACE_O_TRACECLONE et al options.
Wang Chaob13c0de2010-11-12 17:25:19 +0800925 * First fork a new child, call ptrace with PTRACE_SETOPTIONS on it,
Dmitry V. Levinb1467442010-12-02 20:56:43 +0000926 * and then see which options are supported by the kernel.
Wang Chaob13c0de2010-11-12 17:25:19 +0800927 */
Dmitry V. Levin04f8b482011-08-16 18:57:29 +0000928static void
Denys Vlasenko3454e4b2011-05-23 21:29:03 +0200929test_ptrace_setoptions_followfork(void)
Wang Chaob13c0de2010-11-12 17:25:19 +0800930{
Dmitry V. Levin2fabd0e2011-02-19 21:33:50 +0000931 int pid, expected_grandchild = 0, found_grandchild = 0;
932 const unsigned int test_options = PTRACE_O_TRACECLONE |
933 PTRACE_O_TRACEFORK |
934 PTRACE_O_TRACEVFORK;
Wang Chaob13c0de2010-11-12 17:25:19 +0800935
Denys Vlasenko5d645812011-08-20 12:48:18 +0200936 pid = fork();
937 if (pid < 0)
Dmitry V. Levin04f8b482011-08-16 18:57:29 +0000938 perror_msg_and_die("fork");
Denys Vlasenko5d645812011-08-20 12:48:18 +0200939 if (pid == 0) {
Dmitry V. Levin04f8b482011-08-16 18:57:29 +0000940 pid = getpid();
Denys Vlasenko31fa8a22012-01-29 02:01:44 +0100941 if (ptrace(PTRACE_TRACEME, 0L, 0L, 0L) < 0)
Dmitry V. Levin04f8b482011-08-16 18:57:29 +0000942 perror_msg_and_die("%s: PTRACE_TRACEME doesn't work",
943 __func__);
Denys Vlasenko4c65c442012-03-08 11:54:10 +0100944 kill_save_errno(pid, SIGSTOP);
Dmitry V. Levin04f8b482011-08-16 18:57:29 +0000945 if (fork() < 0)
946 perror_msg_and_die("fork");
947 _exit(0);
Wang Chaob13c0de2010-11-12 17:25:19 +0800948 }
Dmitry V. Levinb1467442010-12-02 20:56:43 +0000949
950 while (1) {
951 int status, tracee_pid;
952
Dmitry V. Levin04f8b482011-08-16 18:57:29 +0000953 errno = 0;
Dmitry V. Levinb1467442010-12-02 20:56:43 +0000954 tracee_pid = wait(&status);
Dmitry V. Levin04f8b482011-08-16 18:57:29 +0000955 if (tracee_pid <= 0) {
Dmitry V. Levinb1467442010-12-02 20:56:43 +0000956 if (errno == EINTR)
957 continue;
Denys Vlasenko4c65c442012-03-08 11:54:10 +0100958 if (errno == ECHILD)
Dmitry V. Levinb1467442010-12-02 20:56:43 +0000959 break;
Dmitry V. Levin04f8b482011-08-16 18:57:29 +0000960 kill_save_errno(pid, SIGKILL);
961 perror_msg_and_die("%s: unexpected wait result %d",
962 __func__, tracee_pid);
963 }
964 if (WIFEXITED(status)) {
965 if (WEXITSTATUS(status)) {
966 if (tracee_pid != pid)
967 kill_save_errno(pid, SIGKILL);
968 error_msg_and_die("%s: unexpected exit status %u",
969 __func__, WEXITSTATUS(status));
970 }
971 continue;
972 }
973 if (WIFSIGNALED(status)) {
974 if (tracee_pid != pid)
975 kill_save_errno(pid, SIGKILL);
976 error_msg_and_die("%s: unexpected signal %u",
977 __func__, WTERMSIG(status));
978 }
979 if (!WIFSTOPPED(status)) {
980 if (tracee_pid != pid)
981 kill_save_errno(tracee_pid, SIGKILL);
Denys Vlasenko4c65c442012-03-08 11:54:10 +0100982 kill_save_errno(pid, SIGKILL);
Dmitry V. Levin04f8b482011-08-16 18:57:29 +0000983 error_msg_and_die("%s: unexpected wait status %x",
984 __func__, status);
Dmitry V. Levinb1467442010-12-02 20:56:43 +0000985 }
986 if (tracee_pid != pid) {
Dmitry V. Levin2fabd0e2011-02-19 21:33:50 +0000987 found_grandchild = tracee_pid;
Dmitry V. Levin04f8b482011-08-16 18:57:29 +0000988 if (ptrace(PTRACE_CONT, tracee_pid, 0, 0) < 0) {
989 kill_save_errno(tracee_pid, SIGKILL);
990 kill_save_errno(pid, SIGKILL);
991 perror_msg_and_die("PTRACE_CONT doesn't work");
Wang Chaob13c0de2010-11-12 17:25:19 +0800992 }
Dmitry V. Levin04f8b482011-08-16 18:57:29 +0000993 continue;
994 }
995 switch (WSTOPSIG(status)) {
996 case SIGSTOP:
997 if (ptrace(PTRACE_SETOPTIONS, pid, 0, test_options) < 0
998 && errno != EINVAL && errno != EIO)
999 perror_msg("PTRACE_SETOPTIONS");
1000 break;
1001 case SIGTRAP:
1002 if (status >> 16 == PTRACE_EVENT_FORK) {
1003 long msg = 0;
1004
1005 if (ptrace(PTRACE_GETEVENTMSG, pid,
1006 NULL, (long) &msg) == 0)
1007 expected_grandchild = msg;
1008 }
1009 break;
1010 }
1011 if (ptrace(PTRACE_SYSCALL, pid, 0, 0) < 0) {
1012 kill_save_errno(pid, SIGKILL);
1013 perror_msg_and_die("PTRACE_SYSCALL doesn't work");
Wang Chaob13c0de2010-11-12 17:25:19 +08001014 }
1015 }
Dmitry V. Levin04f8b482011-08-16 18:57:29 +00001016 if (expected_grandchild && expected_grandchild == found_grandchild) {
Denys Vlasenkof44cce42011-06-21 14:34:10 +02001017 ptrace_setoptions |= test_options;
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001018 if (debug_flag)
Dmitry V. Levin04f8b482011-08-16 18:57:29 +00001019 fprintf(stderr, "ptrace_setoptions = %#x\n",
1020 ptrace_setoptions);
1021 return;
1022 }
1023 error_msg("Test for PTRACE_O_TRACECLONE failed, "
1024 "giving up using this feature.");
Wang Chaob13c0de2010-11-12 17:25:19 +08001025}
Denys Vlasenko3454e4b2011-05-23 21:29:03 +02001026
1027/*
1028 * Test whether the kernel support PTRACE_O_TRACESYSGOOD.
1029 * First fork a new child, call ptrace(PTRACE_SETOPTIONS) on it,
1030 * and then see whether it will stop with (SIGTRAP | 0x80).
1031 *
1032 * Use of this option enables correct handling of user-generated SIGTRAPs,
1033 * and SIGTRAPs generated by special instructions such as int3 on x86:
1034 * _start: .globl _start
1035 * int3
1036 * movl $42, %ebx
1037 * movl $1, %eax
1038 * int $0x80
1039 * (compile with: "gcc -nostartfiles -nostdlib -o int3 int3.S")
1040 */
1041static void
1042test_ptrace_setoptions_for_all(void)
1043{
Dmitry V. Levin04f8b482011-08-16 18:57:29 +00001044 const unsigned int test_options = PTRACE_O_TRACESYSGOOD |
1045 PTRACE_O_TRACEEXEC;
Denys Vlasenko3454e4b2011-05-23 21:29:03 +02001046 int pid;
1047 int it_worked = 0;
1048
1049 pid = fork();
1050 if (pid < 0)
Denys Vlasenko75422762011-05-27 14:36:01 +02001051 perror_msg_and_die("fork");
Denys Vlasenko3454e4b2011-05-23 21:29:03 +02001052
1053 if (pid == 0) {
1054 pid = getpid();
1055 if (ptrace(PTRACE_TRACEME, 0L, 0L, 0L) < 0)
Denys Vlasenko75422762011-05-27 14:36:01 +02001056 /* Note: exits with exitcode 1 */
Dmitry V. Levin04f8b482011-08-16 18:57:29 +00001057 perror_msg_and_die("%s: PTRACE_TRACEME doesn't work",
1058 __func__);
Denys Vlasenko3454e4b2011-05-23 21:29:03 +02001059 kill(pid, SIGSTOP);
1060 _exit(0); /* parent should see entry into this syscall */
1061 }
1062
1063 while (1) {
1064 int status, tracee_pid;
1065
1066 errno = 0;
1067 tracee_pid = wait(&status);
1068 if (tracee_pid <= 0) {
1069 if (errno == EINTR)
1070 continue;
Dmitry V. Levin04f8b482011-08-16 18:57:29 +00001071 kill_save_errno(pid, SIGKILL);
1072 perror_msg_and_die("%s: unexpected wait result %d",
1073 __func__, tracee_pid);
Denys Vlasenko3454e4b2011-05-23 21:29:03 +02001074 }
Denys Vlasenko75422762011-05-27 14:36:01 +02001075 if (WIFEXITED(status)) {
1076 if (WEXITSTATUS(status) == 0)
1077 break;
Dmitry V. Levin04f8b482011-08-16 18:57:29 +00001078 error_msg_and_die("%s: unexpected exit status %u",
1079 __func__, WEXITSTATUS(status));
1080 }
1081 if (WIFSIGNALED(status)) {
1082 error_msg_and_die("%s: unexpected signal %u",
1083 __func__, WTERMSIG(status));
Denys Vlasenko75422762011-05-27 14:36:01 +02001084 }
Denys Vlasenko3454e4b2011-05-23 21:29:03 +02001085 if (!WIFSTOPPED(status)) {
1086 kill(pid, SIGKILL);
Dmitry V. Levin04f8b482011-08-16 18:57:29 +00001087 error_msg_and_die("%s: unexpected wait status %x",
1088 __func__, status);
Denys Vlasenko3454e4b2011-05-23 21:29:03 +02001089 }
1090 if (WSTOPSIG(status) == SIGSTOP) {
1091 /*
1092 * We don't check "options aren't accepted" error.
1093 * If it happens, we'll never get (SIGTRAP | 0x80),
1094 * and thus will decide to not use the option.
1095 * IOW: the outcome of the test will be correct.
1096 */
Dmitry V. Levin04f8b482011-08-16 18:57:29 +00001097 if (ptrace(PTRACE_SETOPTIONS, pid, 0L, test_options) < 0
1098 && errno != EINVAL && errno != EIO)
1099 perror_msg("PTRACE_SETOPTIONS");
Denys Vlasenko3454e4b2011-05-23 21:29:03 +02001100 }
1101 if (WSTOPSIG(status) == (SIGTRAP | 0x80)) {
1102 it_worked = 1;
1103 }
1104 if (ptrace(PTRACE_SYSCALL, pid, 0L, 0L) < 0) {
Dmitry V. Levin04f8b482011-08-16 18:57:29 +00001105 kill_save_errno(pid, SIGKILL);
Denys Vlasenko75422762011-05-27 14:36:01 +02001106 perror_msg_and_die("PTRACE_SYSCALL doesn't work");
Denys Vlasenko3454e4b2011-05-23 21:29:03 +02001107 }
1108 }
1109
1110 if (it_worked) {
Denys Vlasenko75422762011-05-27 14:36:01 +02001111 syscall_trap_sig = (SIGTRAP | 0x80);
Denys Vlasenkof44cce42011-06-21 14:34:10 +02001112 ptrace_setoptions |= test_options;
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001113 if (debug_flag)
Denys Vlasenkof44cce42011-06-21 14:34:10 +02001114 fprintf(stderr, "ptrace_setoptions = %#x\n",
1115 ptrace_setoptions);
Denys Vlasenko3454e4b2011-05-23 21:29:03 +02001116 return;
1117 }
1118
Dmitry V. Levin04f8b482011-08-16 18:57:29 +00001119 error_msg("Test for PTRACE_O_TRACESYSGOOD failed, "
1120 "giving up using this feature.");
Denys Vlasenko3454e4b2011-05-23 21:29:03 +02001121}
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001122
1123# ifdef USE_SEIZE
1124static void
1125test_ptrace_seize(void)
1126{
1127 int pid;
1128
1129 pid = fork();
1130 if (pid < 0)
1131 perror_msg_and_die("fork");
1132
1133 if (pid == 0) {
1134 pause();
1135 _exit(0);
1136 }
1137
1138 /* PTRACE_SEIZE, unlike ATTACH, doesn't force tracee to trap. After
1139 * attaching tracee continues to run unless a trap condition occurs.
1140 * PTRACE_SEIZE doesn't affect signal or group stop state.
1141 */
1142 if (ptrace(PTRACE_SEIZE, pid, 0, PTRACE_SEIZE_DEVEL) == 0) {
1143 post_attach_sigstop = 0; /* this sets use_seize to 1 */
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001144 } else if (debug_flag) {
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001145 fprintf(stderr, "PTRACE_SEIZE doesn't work\n");
1146 }
1147
1148 kill(pid, SIGKILL);
1149
1150 while (1) {
1151 int status, tracee_pid;
1152
1153 errno = 0;
1154 tracee_pid = waitpid(pid, &status, 0);
1155 if (tracee_pid <= 0) {
1156 if (errno == EINTR)
1157 continue;
1158 perror_msg_and_die("%s: unexpected wait result %d",
1159 __func__, tracee_pid);
1160 }
1161 if (WIFSIGNALED(status)) {
1162 return;
1163 }
1164 error_msg_and_die("%s: unexpected wait status %x",
1165 __func__, status);
1166 }
1167}
1168# else /* !USE_SEIZE */
1169# define test_ptrace_seize() ((void)0)
1170# endif
1171
Denys Vlasenkoecc8b972012-03-12 23:05:25 +01001172static void
Denys Vlasenkof7db5dd2012-01-28 01:16:02 +01001173get_os_release(void)
1174{
1175 struct utsname u;
1176 if (uname(&u) < 0)
1177 perror_msg_and_die("uname");
1178 os_release = strdup(u.release);
1179 if (!os_release)
1180 die_out_of_memory();
1181}
1182
Denys Vlasenkoecc8b972012-03-12 23:05:25 +01001183/*
1184 * Initialization part of main() was eating much stack (~0.5k),
1185 * which was unused after init.
1186 * We can reuse it if we move init code into a separate function.
1187 *
1188 * Don't want main() to inline us and defeat the reason
1189 * we have a separate function.
1190 */
1191static void __attribute__ ((noinline))
1192init(int argc, char *argv[])
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001193{
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001194 struct tcb *tcp;
Denys Vlasenkoe8172b72012-03-09 13:01:04 +01001195 int c;
Dmitry V. Levin06350db2008-07-25 15:42:34 +00001196 int optF = 0;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001197 struct sigaction sa;
1198
Dmitry V. Levin08b623e2007-10-08 21:04:41 +00001199 progname = argv[0] ? argv[0] : "strace";
1200
Denys Vlasenko75422762011-05-27 14:36:01 +02001201 strace_tracer_pid = getpid();
1202
Denys Vlasenkof7db5dd2012-01-28 01:16:02 +01001203 get_os_release();
1204
Roland McGrathee9d4352002-12-18 04:16:10 +00001205 /* Allocate the initial tcbtab. */
1206 tcbtabsize = argc; /* Surely enough for all -p args. */
Denys Vlasenko4f12af22011-06-23 13:16:23 +02001207 tcbtab = calloc(tcbtabsize, sizeof(tcbtab[0]));
Denys Vlasenko1d46ba52011-08-31 14:00:02 +02001208 if (!tcbtab)
1209 die_out_of_memory();
Denys Vlasenko4f12af22011-06-23 13:16:23 +02001210 tcp = calloc(tcbtabsize, sizeof(*tcp));
Denys Vlasenko1d46ba52011-08-31 14:00:02 +02001211 if (!tcp)
1212 die_out_of_memory();
Denys Vlasenko4f12af22011-06-23 13:16:23 +02001213 for (c = 0; c < tcbtabsize; c++)
1214 tcbtab[c] = tcp++;
Roland McGrathee9d4352002-12-18 04:16:10 +00001215
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001216 outf = stderr;
Roland McGrath138c6a32006-01-12 09:50:49 +00001217 set_sortby(DEFAULT_SORTBY);
1218 set_personality(DEFAULT_PERSONALITY);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001219 qualify("trace=all");
1220 qualify("abbrev=all");
1221 qualify("verbose=all");
1222 qualify("signal=all");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001223 while ((c = getopt(argc, argv,
Denys Vlasenko61e7aad2012-03-15 13:44:17 +01001224 "+bcCdfFhiqrtTvVxyz"
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +00001225 "D"
Denys Vlasenkob51581e2012-01-29 16:53:03 +01001226 "a:e:o:O:p:s:S:u:E:P:I:")) != EOF) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001227 switch (c) {
Denys Vlasenko61e7aad2012-03-15 13:44:17 +01001228 case 'b':
1229 detach_on_execve = 1;
1230 break;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001231 case 'c':
Dmitry V. Levine3a7ef52010-03-28 19:24:54 +00001232 if (cflag == CFLAG_BOTH) {
Denys Vlasenkocb2ad002011-06-23 13:05:29 +02001233 error_msg_and_die("-c and -C are mutually exclusive options");
Dmitry V. Levine3a7ef52010-03-28 19:24:54 +00001234 }
1235 cflag = CFLAG_ONLY_STATS;
1236 break;
1237 case 'C':
1238 if (cflag == CFLAG_ONLY_STATS) {
Denys Vlasenkocb2ad002011-06-23 13:05:29 +02001239 error_msg_and_die("-c and -C are mutually exclusive options");
Dmitry V. Levine3a7ef52010-03-28 19:24:54 +00001240 }
1241 cflag = CFLAG_BOTH;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001242 break;
1243 case 'd':
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001244 debug_flag = 1;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001245 break;
Denys Vlasenkoecfe2f12008-12-30 20:51:30 +00001246 case 'D':
1247 daemonized_tracer = 1;
1248 break;
Roland McGrath41c48222008-07-18 00:25:10 +00001249 case 'F':
Dmitry V. Levin06350db2008-07-25 15:42:34 +00001250 optF = 1;
1251 break;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001252 case 'f':
1253 followfork++;
1254 break;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001255 case 'h':
1256 usage(stdout, 0);
1257 break;
1258 case 'i':
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001259 iflag = 1;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001260 break;
1261 case 'q':
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001262 qflag = 1;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001263 break;
1264 case 'r':
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001265 rflag = 1;
1266 /* fall through to tflag++ */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001267 case 't':
1268 tflag++;
1269 break;
1270 case 'T':
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001271 Tflag = 1;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001272 break;
1273 case 'x':
1274 xflag++;
1275 break;
Grant Edwards8a082772011-04-07 20:25:40 +00001276 case 'y':
1277 show_fd_path = 1;
1278 break;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001279 case 'v':
1280 qualify("abbrev=none");
1281 break;
1282 case 'V':
Roland McGrath9c9a2532003-02-20 02:56:29 +00001283 printf("%s -- version %s\n", PACKAGE_NAME, VERSION);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001284 exit(0);
1285 break;
Michal Ludvig17f8fb32002-11-06 13:17:21 +00001286 case 'z':
1287 not_failing_only = 1;
1288 break;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001289 case 'a':
1290 acolumn = atoi(optarg);
Denys Vlasenko102ec492011-08-25 01:27:59 +02001291 if (acolumn < 0)
1292 error_msg_and_die("Bad column width '%s'", optarg);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001293 break;
1294 case 'e':
1295 qualify(optarg);
1296 break;
1297 case 'o':
1298 outfname = strdup(optarg);
1299 break;
1300 case 'O':
1301 set_overhead(atoi(optarg));
1302 break;
1303 case 'p':
Denys Vlasenkoe8172b72012-03-09 13:01:04 +01001304 process_opt_p_list(optarg);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001305 break;
Grant Edwards8a082772011-04-07 20:25:40 +00001306 case 'P':
1307 tracing_paths = 1;
1308 if (pathtrace_select(optarg)) {
Denys Vlasenkocb2ad002011-06-23 13:05:29 +02001309 error_msg_and_die("Failed to select path '%s'", optarg);
Grant Edwards8a082772011-04-07 20:25:40 +00001310 }
1311 break;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001312 case 's':
1313 max_strlen = atoi(optarg);
Roland McGrathdccec722005-05-09 07:45:47 +00001314 if (max_strlen < 0) {
Denys Vlasenkob51581e2012-01-29 16:53:03 +01001315 error_msg_and_die("Invalid -%c argument: '%s'", c, optarg);
Roland McGrathdccec722005-05-09 07:45:47 +00001316 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001317 break;
1318 case 'S':
1319 set_sortby(optarg);
1320 break;
1321 case 'u':
1322 username = strdup(optarg);
1323 break;
Roland McGrathde6e5332003-01-24 04:31:23 +00001324 case 'E':
Denys Vlasenko1d46ba52011-08-31 14:00:02 +02001325 if (putenv(optarg) < 0)
1326 die_out_of_memory();
Roland McGrathde6e5332003-01-24 04:31:23 +00001327 break;
Denys Vlasenkob51581e2012-01-29 16:53:03 +01001328 case 'I':
1329 opt_intr = atoi(optarg);
1330 if (opt_intr <= 0 || opt_intr >= NUM_INTR_OPTS) {
1331 error_msg_and_die("Invalid -%c argument: '%s'", c, optarg);
1332 }
1333 break;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001334 default:
1335 usage(stderr, 1);
1336 break;
1337 }
1338 }
Denys Vlasenko837399a2012-01-24 11:37:03 +01001339 argv += optind;
1340 /* argc -= optind; - no need, argc is not used below */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001341
Denys Vlasenko102ec492011-08-25 01:27:59 +02001342 acolumn_spaces = malloc(acolumn + 1);
1343 if (!acolumn_spaces)
Denys Vlasenko1d46ba52011-08-31 14:00:02 +02001344 die_out_of_memory();
Denys Vlasenko102ec492011-08-25 01:27:59 +02001345 memset(acolumn_spaces, ' ', acolumn);
1346 acolumn_spaces[acolumn] = '\0';
1347
Denys Vlasenko837399a2012-01-24 11:37:03 +01001348 /* Must have PROG [ARGS], or -p PID. Not both. */
Denys Vlasenkofd883382012-03-09 13:03:41 +01001349 if (!argv[0] == !nprocs)
Roland McGrathce0d1542003-11-11 21:24:23 +00001350 usage(stderr, 1);
1351
Denys Vlasenkofd883382012-03-09 13:03:41 +01001352 if (nprocs != 0 && daemonized_tracer) {
Denys Vlasenkocb2ad002011-06-23 13:05:29 +02001353 error_msg_and_die("-D and -p are mutually exclusive options");
Wang Chaod322a4b2010-08-05 14:30:11 +08001354 }
1355
Dmitry V. Levin06350db2008-07-25 15:42:34 +00001356 if (!followfork)
1357 followfork = optF;
1358
Roland McGrathcb9def62006-04-25 07:48:03 +00001359 if (followfork > 1 && cflag) {
Denys Vlasenkocb2ad002011-06-23 13:05:29 +02001360 error_msg_and_die("(-c or -C) and -ff are mutually exclusive options");
Roland McGrathcb9def62006-04-25 07:48:03 +00001361 }
1362
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001363 /* See if they want to run as another user. */
1364 if (username != NULL) {
1365 struct passwd *pent;
1366
1367 if (getuid() != 0 || geteuid() != 0) {
Denys Vlasenkocb2ad002011-06-23 13:05:29 +02001368 error_msg_and_die("You must be root to use the -u option");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001369 }
Denys Vlasenko5d645812011-08-20 12:48:18 +02001370 pent = getpwnam(username);
1371 if (pent == NULL) {
Denys Vlasenkocb2ad002011-06-23 13:05:29 +02001372 error_msg_and_die("Cannot find user '%s'", username);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001373 }
1374 run_uid = pent->pw_uid;
1375 run_gid = pent->pw_gid;
1376 }
1377 else {
1378 run_uid = getuid();
1379 run_gid = getgid();
1380 }
1381
Dmitry V. Levin04f8b482011-08-16 18:57:29 +00001382 if (followfork)
1383 test_ptrace_setoptions_followfork();
Denys Vlasenko3454e4b2011-05-23 21:29:03 +02001384 test_ptrace_setoptions_for_all();
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001385 test_ptrace_seize();
Dmitry V. Levin8044bc12010-12-07 12:50:49 +00001386
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001387 /* Check if they want to redirect the output. */
1388 if (outfname) {
Roland McGrath37b9a662003-11-07 02:26:54 +00001389 /* See if they want to pipe the output. */
1390 if (outfname[0] == '|' || outfname[0] == '!') {
1391 /*
1392 * We can't do the <outfname>.PID funny business
1393 * when using popen, so prohibit it.
1394 */
Denys Vlasenko7dd23382011-06-22 13:03:56 +02001395 if (followfork > 1)
1396 error_msg_and_die("Piping the output and -ff are mutually exclusive");
1397 outf = strace_popen(outfname + 1);
Roland McGrath37b9a662003-11-07 02:26:54 +00001398 }
Denys Vlasenko3d5ed412011-06-22 13:17:16 +02001399 else if (followfork <= 1)
1400 outf = strace_fopen(outfname);
Denys Vlasenko328bf252012-03-12 23:34:13 +01001401 } else {
1402 /* -ff without -o FILE is the same as single -f */
1403 if (followfork > 1)
1404 followfork = 1;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001405 }
1406
Denys Vlasenkocb2ad002011-06-23 13:05:29 +02001407 if (!outfname || outfname[0] == '|' || outfname[0] == '!') {
Denys Vlasenkoa677da52012-01-24 11:31:51 +01001408 char *buf = malloc(BUFSIZ);
1409 if (!buf)
1410 die_out_of_memory();
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001411 setvbuf(outf, buf, _IOLBF, BUFSIZ);
Denys Vlasenkocb2ad002011-06-23 13:05:29 +02001412 }
Denys Vlasenko837399a2012-01-24 11:37:03 +01001413 if (outfname && argv[0]) {
Denys Vlasenkob51581e2012-01-29 16:53:03 +01001414 if (!opt_intr)
1415 opt_intr = INTR_NEVER;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001416 qflag = 1;
Roland McGrath36931052003-06-03 01:35:20 +00001417 }
Denys Vlasenkob51581e2012-01-29 16:53:03 +01001418 if (!opt_intr)
1419 opt_intr = INTR_WHILE_WAIT;
Wang Chaob13c0de2010-11-12 17:25:19 +08001420
Denys Vlasenkob51581e2012-01-29 16:53:03 +01001421 /* argv[0] -pPID -oFILE Default interactive setting
1422 * yes 0 0 INTR_WHILE_WAIT
1423 * no 1 0 INTR_WHILE_WAIT
1424 * yes 0 1 INTR_NEVER
1425 * no 1 1 INTR_WHILE_WAIT
Roland McGrath54cc1c82007-11-03 23:34:11 +00001426 */
1427
1428 /* STARTUP_CHILD must be called before the signal handlers get
1429 installed below as they are inherited into the spawned process.
1430 Also we do not need to be protected by them as during interruption
1431 in the STARTUP_CHILD mode we kill the spawned process anyway. */
Denys Vlasenko61e7aad2012-03-15 13:44:17 +01001432 if (argv[0]) {
1433 skip_startup_execve = 1;
Denys Vlasenko837399a2012-01-24 11:37:03 +01001434 startup_child(argv);
Denys Vlasenko61e7aad2012-03-15 13:44:17 +01001435 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001436
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001437 sigemptyset(&empty_set);
1438 sigemptyset(&blocked_set);
1439 sa.sa_handler = SIG_IGN;
1440 sigemptyset(&sa.sa_mask);
1441 sa.sa_flags = 0;
Denys Vlasenkob51581e2012-01-29 16:53:03 +01001442 sigaction(SIGTTOU, &sa, NULL); /* SIG_IGN */
1443 sigaction(SIGTTIN, &sa, NULL); /* SIG_IGN */
1444 if (opt_intr != INTR_ANYWHERE) {
1445 if (opt_intr == INTR_BLOCK_TSTP_TOO)
1446 sigaction(SIGTSTP, &sa, NULL); /* SIG_IGN */
1447 /*
1448 * In interactive mode (if no -o OUTFILE, or -p PID is used),
1449 * fatal signals are blocked while syscall stop is processed,
1450 * and acted on in between, when waiting for new syscall stops.
1451 * In non-interactive mode, signals are ignored.
1452 */
1453 if (opt_intr == INTR_WHILE_WAIT) {
1454 sigaddset(&blocked_set, SIGHUP);
1455 sigaddset(&blocked_set, SIGINT);
1456 sigaddset(&blocked_set, SIGQUIT);
1457 sigaddset(&blocked_set, SIGPIPE);
1458 sigaddset(&blocked_set, SIGTERM);
1459 sa.sa_handler = interrupt;
Denys Vlasenkob51581e2012-01-29 16:53:03 +01001460 }
1461 /* SIG_IGN, or set handler for these */
1462 sigaction(SIGHUP, &sa, NULL);
1463 sigaction(SIGINT, &sa, NULL);
1464 sigaction(SIGQUIT, &sa, NULL);
1465 sigaction(SIGPIPE, &sa, NULL);
1466 sigaction(SIGTERM, &sa, NULL);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001467 }
Roland McGrath553a6092002-12-16 20:40:39 +00001468 /* Make sure SIGCHLD has the default action so that waitpid
1469 definitely works without losing track of children. The user
1470 should not have given us a bogus state to inherit, but he might
1471 have. Arguably we should detect SIG_IGN here and pass it on
1472 to children, but probably noone really needs that. */
1473 sa.sa_handler = SIG_DFL;
1474 sigaction(SIGCHLD, &sa, NULL);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001475
Denys Vlasenkofd883382012-03-09 13:03:41 +01001476 if (nprocs != 0 || daemonized_tracer)
Roland McGrath02203312007-06-11 22:06:31 +00001477 startup_attach();
Roland McGrath02203312007-06-11 22:06:31 +00001478
Denys Vlasenkofd883382012-03-09 13:03:41 +01001479 /* Do we want pids printed in our -o OUTFILE?
1480 * -ff: no (every pid has its own file); or
1481 * -f: yes (there can be more pids in the future); or
1482 * -p PID1,PID2: yes (there are already more than one pid)
1483 */
1484 print_pid_pfx = (outfname && followfork < 2 && (followfork == 1 || nprocs > 1));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001485}
1486
Denys Vlasenko2b60c352011-06-22 12:45:25 +02001487static void
Denys Vlasenko418d66a2009-01-17 01:52:54 +00001488expand_tcbtab(void)
Roland McGrath7b54a7a2004-06-04 01:50:45 +00001489{
1490 /* Allocate some more TCBs and expand the table.
1491 We don't want to relocate the TCBs because our
1492 callers have pointers and it would be a pain.
1493 So tcbtab is a table of pointers. Since we never
1494 free the TCBs, we allocate a single chunk of many. */
Denys Vlasenko18da2732011-06-22 12:41:57 +02001495 int i = tcbtabsize;
1496 struct tcb *newtcbs = calloc(tcbtabsize, sizeof(newtcbs[0]));
1497 struct tcb **newtab = realloc(tcbtab, tcbtabsize * 2 * sizeof(tcbtab[0]));
Denys Vlasenko1d46ba52011-08-31 14:00:02 +02001498 if (!newtab || !newtcbs)
1499 die_out_of_memory();
Roland McGrath7b54a7a2004-06-04 01:50:45 +00001500 tcbtabsize *= 2;
1501 tcbtab = newtab;
Denys Vlasenko18da2732011-06-22 12:41:57 +02001502 while (i < tcbtabsize)
1503 tcbtab[i++] = newtcbs++;
Roland McGrath7b54a7a2004-06-04 01:50:45 +00001504}
1505
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001506struct tcb *
Dmitry V. Levin10de62b2006-12-13 21:45:31 +00001507alloc_tcb(int pid, int command_options_parsed)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001508{
1509 int i;
1510 struct tcb *tcp;
1511
Denys Vlasenko418d66a2009-01-17 01:52:54 +00001512 if (nprocs == tcbtabsize)
1513 expand_tcbtab();
1514
Roland McGrathee9d4352002-12-18 04:16:10 +00001515 for (i = 0; i < tcbtabsize; i++) {
1516 tcp = tcbtab[i];
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001517 if ((tcp->flags & TCB_INUSE) == 0) {
Denys Vlasenko18da2732011-06-22 12:41:57 +02001518 memset(tcp, 0, sizeof(*tcp));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001519 tcp->pid = pid;
Denys Vlasenko381dbc22011-09-05 13:59:39 +02001520 tcp->flags = TCB_INUSE;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001521 tcp->outf = outf; /* Initialise to current out file */
Dmitry V. Levina5a839a2011-12-23 00:50:49 +00001522#if SUPPORTED_PERSONALITIES > 1
1523 tcp->currpers = current_personality;
1524#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001525 nprocs++;
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001526 if (debug_flag)
Denys Vlasenko1d5f12e2011-06-24 16:41:35 +02001527 fprintf(stderr, "new tcb for pid %d, active tcbs:%d\n", tcp->pid, nprocs);
Dmitry V. Levin10de62b2006-12-13 21:45:31 +00001528 if (command_options_parsed)
1529 newoutf(tcp);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001530 return tcp;
1531 }
1532 }
Denys Vlasenko18da2732011-06-22 12:41:57 +02001533 error_msg_and_die("bug in alloc_tcb");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001534}
1535
Denys Vlasenkoeebb04d2012-01-27 15:24:48 +01001536static struct tcb *
Roland McGrath54e931f2010-09-14 18:59:20 -07001537pid2tcb(int pid)
1538{
1539 int i;
1540
1541 if (pid <= 0)
1542 return NULL;
1543
1544 for (i = 0; i < tcbtabsize; i++) {
1545 struct tcb *tcp = tcbtab[i];
1546 if (tcp->pid == pid && (tcp->flags & TCB_INUSE))
1547 return tcp;
1548 }
1549
1550 return NULL;
1551}
1552
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001553void
Denys Vlasenko12014262011-05-30 14:00:14 +02001554droptcb(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001555{
1556 if (tcp->pid == 0)
1557 return;
Denys Vlasenko19cdada2011-08-17 10:45:32 +02001558
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001559 nprocs--;
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001560 if (debug_flag)
Denys Vlasenko1d5f12e2011-06-24 16:41:35 +02001561 fprintf(stderr, "dropped tcb for pid %d, %d remain\n", tcp->pid, nprocs);
Wichert Akkermaneb8ebda2002-04-01 17:48:02 +00001562
Denys Vlasenko3e084ac2012-03-15 13:39:05 +01001563 if (tcp->outf) {
1564 if (outfname && followfork >= 2) {
1565 if (tcp->curcol != 0)
1566 fprintf(tcp->outf, " <detached ...>\n");
1567 fclose(tcp->outf);
1568 if (outf == tcp->outf)
1569 outf = NULL;
1570 } else {
1571 if (printing_tcp == tcp && tcp->curcol != 0)
1572 fprintf(tcp->outf, " <detached ...>\n");
1573 fflush(tcp->outf);
1574 }
1575 }
1576
Denys Vlasenko7de265d2012-03-13 11:44:31 +01001577 if (printing_tcp == tcp)
1578 printing_tcp = NULL;
1579
Denys Vlasenko19cdada2011-08-17 10:45:32 +02001580 memset(tcp, 0, sizeof(*tcp));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001581}
1582
Roland McGrath0a463882007-07-05 18:43:16 +00001583/* detach traced process; continue with sig
Denys Vlasenko75fe85c2012-03-09 15:15:24 +01001584 * Never call DETACH twice on the same process as both unattached and
1585 * attached-unstopped processes give the same ESRCH. For unattached process we
1586 * would SIGSTOP it and wait for its SIGSTOP notification forever.
1587 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001588static int
Denys Vlasenko4c196382012-01-04 15:11:09 +01001589detach(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001590{
Denys Vlasenko75fe85c2012-03-09 15:15:24 +01001591 int error;
1592 int status, sigstop_expected;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001593
1594 if (tcp->flags & TCB_BPTSET)
Andreas Schwab840d85b2010-01-12 11:16:32 +01001595 clearbpt(tcp);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001596
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001597 /*
1598 * Linux wrongly insists the child be stopped
Roland McGrath7bf10472002-12-16 20:42:50 +00001599 * before detaching. Arghh. We go through hoops
1600 * to make a clean break of things.
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001601 */
Roland McGrath7bf10472002-12-16 20:42:50 +00001602#if defined(SPARC)
1603#undef PTRACE_DETACH
1604#define PTRACE_DETACH PTRACE_SUNDETACH
1605#endif
Denys Vlasenko75fe85c2012-03-09 15:15:24 +01001606
Denys Vlasenko3e084ac2012-03-15 13:39:05 +01001607 error = 0;
Denys Vlasenko75fe85c2012-03-09 15:15:24 +01001608 sigstop_expected = 0;
1609 if (tcp->flags & TCB_ATTACHED) {
1610 /*
1611 * We attached but possibly didn't see the expected SIGSTOP.
1612 * We must catch exactly one as otherwise the detached process
1613 * would be left stopped (process state T).
1614 */
1615 sigstop_expected = (tcp->flags & TCB_IGNORE_ONE_SIGSTOP);
1616 error = ptrace(PTRACE_DETACH, tcp->pid, (char *) 1, 0);
1617 if (error == 0) {
1618 /* On a clear day, you can see forever. */
1619 }
1620 else if (errno != ESRCH) {
1621 /* Shouldn't happen. */
1622 perror("detach: ptrace(PTRACE_DETACH, ...)");
1623 }
1624 else if (my_tkill(tcp->pid, 0) < 0) {
1625 if (errno != ESRCH)
1626 perror("detach: checking sanity");
1627 }
1628 else if (!sigstop_expected && my_tkill(tcp->pid, SIGSTOP) < 0) {
1629 if (errno != ESRCH)
1630 perror("detach: stopping child");
1631 }
1632 else
1633 sigstop_expected = 1;
Roland McGrath7bf10472002-12-16 20:42:50 +00001634 }
Denys Vlasenko75fe85c2012-03-09 15:15:24 +01001635
1636 if (sigstop_expected) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001637 for (;;) {
Roland McGrath7508cb42002-12-17 10:48:05 +00001638#ifdef __WALL
Denys Vlasenko37ab4b72012-03-09 15:34:16 +01001639 if (waitpid(tcp->pid, &status, __WALL) < 0) {
Roland McGrath7508cb42002-12-17 10:48:05 +00001640 if (errno == ECHILD) /* Already gone. */
1641 break;
1642 if (errno != EINVAL) {
Roland McGrath553a6092002-12-16 20:40:39 +00001643 perror("detach: waiting");
Roland McGrath7508cb42002-12-17 10:48:05 +00001644 break;
1645 }
1646#endif /* __WALL */
1647 /* No __WALL here. */
1648 if (waitpid(tcp->pid, &status, 0) < 0) {
1649 if (errno != ECHILD) {
1650 perror("detach: waiting");
1651 break;
1652 }
1653#ifdef __WCLONE
1654 /* If no processes, try clones. */
Denys Vlasenko37ab4b72012-03-09 15:34:16 +01001655 if (waitpid(tcp->pid, &status, __WCLONE) < 0) {
Roland McGrath7508cb42002-12-17 10:48:05 +00001656 if (errno != ECHILD)
1657 perror("detach: waiting");
1658 break;
1659 }
1660#endif /* __WCLONE */
1661 }
1662#ifdef __WALL
Roland McGrath553a6092002-12-16 20:40:39 +00001663 }
Roland McGrath7508cb42002-12-17 10:48:05 +00001664#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001665 if (!WIFSTOPPED(status)) {
1666 /* Au revoir, mon ami. */
1667 break;
1668 }
1669 if (WSTOPSIG(status) == SIGSTOP) {
Denys Vlasenko4c196382012-01-04 15:11:09 +01001670 ptrace_restart(PTRACE_DETACH, tcp, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001671 break;
1672 }
Denys Vlasenko732d1bf2008-12-17 19:21:59 +00001673 error = ptrace_restart(PTRACE_CONT, tcp,
Denys Vlasenko75422762011-05-27 14:36:01 +02001674 WSTOPSIG(status) == syscall_trap_sig ? 0
Denys Vlasenko732d1bf2008-12-17 19:21:59 +00001675 : WSTOPSIG(status));
1676 if (error < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001677 break;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001678 }
Denys Vlasenkoef2fbf82009-01-06 21:45:06 +00001679 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001680
Denys Vlasenko75fe85c2012-03-09 15:15:24 +01001681 if (!qflag && (tcp->flags & TCB_ATTACHED))
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001682 fprintf(stderr, "Process %u detached\n", tcp->pid);
1683
1684 droptcb(tcp);
Roland McGratha08a97e2005-08-03 11:23:46 +00001685
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001686 return error;
1687}
1688
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001689static void
Denys Vlasenko12014262011-05-30 14:00:14 +02001690cleanup(void)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001691{
1692 int i;
1693 struct tcb *tcp;
Denys Vlasenko35218842012-01-29 21:17:56 +01001694 int fatal_sig;
1695
1696 /* 'interrupted' is a volatile object, fetch it only once */
1697 fatal_sig = interrupted;
1698 if (!fatal_sig)
1699 fatal_sig = SIGTERM;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001700
Roland McGrathee9d4352002-12-18 04:16:10 +00001701 for (i = 0; i < tcbtabsize; i++) {
1702 tcp = tcbtab[i];
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001703 if (!(tcp->flags & TCB_INUSE))
1704 continue;
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001705 if (debug_flag)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001706 fprintf(stderr,
1707 "cleanup: looking at pid %u\n", tcp->pid);
Denys Vlasenko7de265d2012-03-13 11:44:31 +01001708 if (tcp->flags & TCB_STRACE_CHILD) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001709 kill(tcp->pid, SIGCONT);
Denys Vlasenkoa3559252012-01-29 16:43:51 +01001710 kill(tcp->pid, fatal_sig);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001711 }
Denys Vlasenko7de265d2012-03-13 11:44:31 +01001712 detach(tcp);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001713 }
1714 if (cflag)
1715 call_summary(outf);
1716}
1717
1718static void
Denys Vlasenko12014262011-05-30 14:00:14 +02001719interrupt(int sig)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001720{
Denys Vlasenkoa3559252012-01-29 16:43:51 +01001721 interrupted = sig;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001722}
1723
1724#ifndef HAVE_STRERROR
1725
Roland McGrath6d2b3492002-12-30 00:51:30 +00001726#if !HAVE_DECL_SYS_ERRLIST
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001727extern int sys_nerr;
1728extern char *sys_errlist[];
Roland McGrath6d2b3492002-12-30 00:51:30 +00001729#endif /* HAVE_DECL_SYS_ERRLIST */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001730
1731const char *
Denys Vlasenko12014262011-05-30 14:00:14 +02001732strerror(int err_no)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001733{
Denys Vlasenko1945ccc2012-02-27 14:37:48 +01001734 static char buf[sizeof("Unknown error %d") + sizeof(int)*3];
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001735
Denys Vlasenko35aba6a2011-05-25 15:33:26 +02001736 if (err_no < 1 || err_no >= sys_nerr) {
1737 sprintf(buf, "Unknown error %d", err_no);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001738 return buf;
1739 }
Denys Vlasenko35aba6a2011-05-25 15:33:26 +02001740 return sys_errlist[err_no];
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001741}
1742
1743#endif /* HAVE_STERRROR */
1744
1745#ifndef HAVE_STRSIGNAL
1746
Roland McGrath8f474e02003-01-14 07:53:33 +00001747#if defined HAVE_SYS_SIGLIST && !defined HAVE_DECL_SYS_SIGLIST
Roland McGrath6d2b3492002-12-30 00:51:30 +00001748extern char *sys_siglist[];
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001749#endif
Roland McGrath8f474e02003-01-14 07:53:33 +00001750#if defined HAVE_SYS__SIGLIST && !defined HAVE_DECL__SYS_SIGLIST
1751extern char *_sys_siglist[];
1752#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001753
1754const char *
Denys Vlasenko12014262011-05-30 14:00:14 +02001755strsignal(int sig)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001756{
Denys Vlasenko1945ccc2012-02-27 14:37:48 +01001757 static char buf[sizeof("Unknown signal %d") + sizeof(int)*3];
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001758
1759 if (sig < 1 || sig >= NSIG) {
1760 sprintf(buf, "Unknown signal %d", sig);
1761 return buf;
1762 }
1763#ifdef HAVE__SYS_SIGLIST
1764 return _sys_siglist[sig];
1765#else
1766 return sys_siglist[sig];
1767#endif
1768}
1769
1770#endif /* HAVE_STRSIGNAL */
1771
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001772static int
Denys Vlasenko12014262011-05-30 14:00:14 +02001773trace(void)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001774{
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001775 struct rusage ru;
Denys Vlasenko26d1b1e2011-08-15 12:24:14 +02001776 struct rusage *rup = cflag ? &ru : NULL;
1777# ifdef __WALL
Roland McGratheb9e2e82009-06-02 16:49:22 -07001778 static int wait4_options = __WALL;
Denys Vlasenko26d1b1e2011-08-15 12:24:14 +02001779# endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001780
Roland McGratheb9e2e82009-06-02 16:49:22 -07001781 while (nprocs != 0) {
Denys Vlasenkof7db5dd2012-01-28 01:16:02 +01001782 int pid;
1783 int wait_errno;
1784 int status, sig;
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001785 int stopped;
Denys Vlasenkof7db5dd2012-01-28 01:16:02 +01001786 struct tcb *tcp;
1787 unsigned event;
1788
Denys Vlasenko222713a2009-03-17 14:29:59 +00001789 if (interrupted)
Roland McGratheb9e2e82009-06-02 16:49:22 -07001790 return 0;
1791 if (interactive)
1792 sigprocmask(SIG_SETMASK, &empty_set, NULL);
Denys Vlasenko26d1b1e2011-08-15 12:24:14 +02001793# ifdef __WALL
1794 pid = wait4(-1, &status, wait4_options, rup);
Roland McGrath5bc05552002-12-17 04:50:47 +00001795 if (pid < 0 && (wait4_options & __WALL) && errno == EINVAL) {
Wichert Akkerman2f1d87e2001-03-28 14:40:14 +00001796 /* this kernel does not support __WALL */
1797 wait4_options &= ~__WALL;
Denys Vlasenko26d1b1e2011-08-15 12:24:14 +02001798 pid = wait4(-1, &status, wait4_options, rup);
Wichert Akkerman2f1d87e2001-03-28 14:40:14 +00001799 }
Roland McGrath5bc05552002-12-17 04:50:47 +00001800 if (pid < 0 && !(wait4_options & __WALL) && errno == ECHILD) {
Wichert Akkerman2f1d87e2001-03-28 14:40:14 +00001801 /* most likely a "cloned" process */
Denys Vlasenko26d1b1e2011-08-15 12:24:14 +02001802 pid = wait4(-1, &status, __WCLONE, rup);
1803 if (pid < 0) {
Denys Vlasenkocb2ad002011-06-23 13:05:29 +02001804 perror_msg("wait4(__WCLONE) failed");
Wichert Akkerman2f1d87e2001-03-28 14:40:14 +00001805 }
1806 }
Denys Vlasenko26d1b1e2011-08-15 12:24:14 +02001807# else
1808 pid = wait4(-1, &status, 0, rup);
1809# endif /* __WALL */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001810 wait_errno = errno;
Roland McGratheb9e2e82009-06-02 16:49:22 -07001811 if (interactive)
1812 sigprocmask(SIG_BLOCK, &blocked_set, NULL);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001813
Denys Vlasenko26d1b1e2011-08-15 12:24:14 +02001814 if (pid < 0) {
Roland McGratheb9e2e82009-06-02 16:49:22 -07001815 switch (wait_errno) {
1816 case EINTR:
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001817 continue;
Roland McGratheb9e2e82009-06-02 16:49:22 -07001818 case ECHILD:
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001819 /*
1820 * We would like to verify this case
1821 * but sometimes a race in Solbourne's
1822 * version of SunOS sometimes reports
1823 * ECHILD before sending us SIGCHILD.
1824 */
Roland McGratheb9e2e82009-06-02 16:49:22 -07001825 return 0;
1826 default:
1827 errno = wait_errno;
Denys Vlasenko4c65c442012-03-08 11:54:10 +01001828 perror_msg("wait");
Roland McGratheb9e2e82009-06-02 16:49:22 -07001829 return -1;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001830 }
1831 }
Dmitry V. Levin10de62b2006-12-13 21:45:31 +00001832 if (pid == popen_pid) {
1833 if (WIFEXITED(status) || WIFSIGNALED(status))
Denys Vlasenko7dd23382011-06-22 13:03:56 +02001834 popen_pid = 0;
Dmitry V. Levin10de62b2006-12-13 21:45:31 +00001835 continue;
1836 }
Denys Vlasenkof7db5dd2012-01-28 01:16:02 +01001837
1838 event = ((unsigned)status >> 16);
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001839 if (debug_flag) {
Denys Vlasenko1d5f12e2011-06-24 16:41:35 +02001840 char buf[sizeof("WIFEXITED,exitcode=%u") + sizeof(int)*3 /*paranoia:*/ + 16];
Denys Vlasenko67559ad2012-03-13 12:05:27 +01001841 char evbuf[sizeof(",PTRACE_EVENT_?? (%u)") + sizeof(int)*3 /*paranoia:*/ + 16];
Denys Vlasenko1d5f12e2011-06-24 16:41:35 +02001842 strcpy(buf, "???");
1843 if (WIFSIGNALED(status))
1844#ifdef WCOREDUMP
1845 sprintf(buf, "WIFSIGNALED,%ssig=%s",
1846 WCOREDUMP(status) ? "core," : "",
1847 signame(WTERMSIG(status)));
1848#else
1849 sprintf(buf, "WIFSIGNALED,sig=%s",
1850 signame(WTERMSIG(status)));
1851#endif
1852 if (WIFEXITED(status))
1853 sprintf(buf, "WIFEXITED,exitcode=%u", WEXITSTATUS(status));
1854 if (WIFSTOPPED(status))
1855 sprintf(buf, "WIFSTOPPED,sig=%s", signame(WSTOPSIG(status)));
Denys Vlasenko5bd67c82011-08-15 11:36:09 +02001856#ifdef WIFCONTINUED
Denys Vlasenko1d5f12e2011-06-24 16:41:35 +02001857 if (WIFCONTINUED(status))
1858 strcpy(buf, "WIFCONTINUED");
Denys Vlasenko5bd67c82011-08-15 11:36:09 +02001859#endif
Denys Vlasenko67559ad2012-03-13 12:05:27 +01001860 evbuf[0] = '\0';
1861 if (event != 0) {
1862 static const char *const event_names[] = {
1863 [PTRACE_EVENT_CLONE] = "CLONE",
1864 [PTRACE_EVENT_FORK] = "FORK",
1865 [PTRACE_EVENT_VFORK] = "VFORK",
1866 [PTRACE_EVENT_VFORK_DONE] = "VFORK_DONE",
1867 [PTRACE_EVENT_EXEC] = "EXEC",
1868 [PTRACE_EVENT_EXIT] = "EXIT",
1869 };
1870 const char *e;
1871 if (event < ARRAY_SIZE(event_names))
1872 e = event_names[event];
1873 else {
1874 sprintf(buf, "?? (%u)", event);
1875 e = buf;
1876 }
1877 sprintf(evbuf, ",PTRACE_EVENT_%s", e);
1878 }
1879 fprintf(stderr, " [wait(0x%04x) = %u] %s%s\n", status, pid, buf, evbuf);
Denys Vlasenko1d5f12e2011-06-24 16:41:35 +02001880 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001881
Denys Vlasenkof7db5dd2012-01-28 01:16:02 +01001882 /* Look up 'pid' in our table. */
Denys Vlasenko5d645812011-08-20 12:48:18 +02001883 tcp = pid2tcb(pid);
Denys Vlasenkof7db5dd2012-01-28 01:16:02 +01001884
Denys Vlasenkof7db5dd2012-01-28 01:16:02 +01001885 /* Under Linux, execve changes pid to thread leader's pid,
1886 * and we see this changed pid on EVENT_EXEC and later,
1887 * execve sysexit. Leader "disappears" without exit
1888 * notification. Let user know that, drop leader's tcb,
1889 * and fix up pid in execve thread's tcb.
1890 * Effectively, execve thread's tcb replaces leader's tcb.
1891 *
1892 * BTW, leader is 'stuck undead' (doesn't report WIFEXITED
1893 * on exit syscall) in multithreaded programs exactly
1894 * in order to handle this case.
1895 *
1896 * PTRACE_GETEVENTMSG returns old pid starting from Linux 3.0.
1897 * On 2.6 and earlier, it can return garbage.
1898 */
1899 if (event == PTRACE_EVENT_EXEC && os_release[0] >= '3') {
1900 long old_pid = 0;
1901 if (ptrace(PTRACE_GETEVENTMSG, pid, NULL, (long) &old_pid) >= 0
1902 && old_pid > 0
1903 && old_pid != pid
1904 ) {
1905 struct tcb *execve_thread = pid2tcb(old_pid);
1906 if (tcp) {
1907 outf = tcp->outf;
1908 curcol = tcp->curcol;
Denys Vlasenkof7db5dd2012-01-28 01:16:02 +01001909 if (execve_thread) {
Denys Vlasenko7de265d2012-03-13 11:44:31 +01001910 if (execve_thread->curcol != 0) {
1911 /*
1912 * One case we are here is -ff:
1913 * try "strace -oLOG -ff test/threaded_execve"
1914 */
1915 fprintf(execve_thread->outf, " <pid changed to %d ...>\n", pid);
1916 execve_thread->curcol = 0;
1917 }
Denys Vlasenkof7db5dd2012-01-28 01:16:02 +01001918 /* swap output FILEs (needed for -ff) */
1919 tcp->outf = execve_thread->outf;
Denys Vlasenko7de265d2012-03-13 11:44:31 +01001920 tcp->curcol = execve_thread->curcol;
Denys Vlasenkof7db5dd2012-01-28 01:16:02 +01001921 execve_thread->outf = outf;
Denys Vlasenko7de265d2012-03-13 11:44:31 +01001922 execve_thread->curcol = curcol;
Denys Vlasenkof7db5dd2012-01-28 01:16:02 +01001923 }
1924 droptcb(tcp);
1925 }
1926 tcp = execve_thread;
1927 if (tcp) {
1928 tcp->pid = pid;
1929 tcp->flags |= TCB_REPRINT;
Denys Vlasenko7de265d2012-03-13 11:44:31 +01001930 if (!cflag) {
1931 printleader(tcp);
1932 tprintf("+++ superseded by execve in pid %lu +++\n", old_pid);
1933 line_ended();
1934 }
Denys Vlasenkof7db5dd2012-01-28 01:16:02 +01001935 }
1936 }
1937 }
Denys Vlasenkof7db5dd2012-01-28 01:16:02 +01001938
Denys Vlasenko61e7aad2012-03-15 13:44:17 +01001939 if (event == PTRACE_EVENT_EXEC && detach_on_execve) {
1940 if (!skip_startup_execve)
1941 detach(tcp);
1942 /* This was initial execve for "strace PROG". Skip. */
1943 skip_startup_execve = 0;
1944 }
1945
Denys Vlasenko5d645812011-08-20 12:48:18 +02001946 if (tcp == NULL) {
Roland McGrath41c48222008-07-18 00:25:10 +00001947 if (followfork) {
Roland McGrathe85bbfe2003-01-09 06:53:31 +00001948 /* This is needed to go with the CLONE_PTRACE
1949 changes in process.c/util.c: we might see
1950 the child's initial trap before we see the
1951 parent return from the clone syscall.
1952 Leave the child suspended until the parent
1953 returns from its system call. Only then
1954 will we have the association of parent and
1955 child so that we know how to do clearbpt
1956 in the child. */
Denys Vlasenko418d66a2009-01-17 01:52:54 +00001957 tcp = alloctcb(pid);
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001958 tcp->flags |= TCB_ATTACHED | TCB_STARTUP | post_attach_sigstop;
Roland McGrathe85bbfe2003-01-09 06:53:31 +00001959 if (!qflag)
Denys Vlasenko833fb132011-08-17 11:30:56 +02001960 fprintf(stderr, "Process %d attached\n",
Roland McGrathe85bbfe2003-01-09 06:53:31 +00001961 pid);
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +00001962 }
Roland McGrathe85bbfe2003-01-09 06:53:31 +00001963 else
1964 /* This can happen if a clone call used
1965 CLONE_PTRACE itself. */
Roland McGrathe85bbfe2003-01-09 06:53:31 +00001966 {
Roland McGrathe85bbfe2003-01-09 06:53:31 +00001967 if (WIFSTOPPED(status))
Denys Vlasenko97c503f2012-03-09 15:11:21 +01001968 ptrace(PTRACE_CONT, pid, (char *) 0, 0);
Denys Vlasenkocb2ad002011-06-23 13:05:29 +02001969 error_msg_and_die("Unknown pid: %u", pid);
Roland McGrathe85bbfe2003-01-09 06:53:31 +00001970 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001971 }
Denys Vlasenko7de265d2012-03-13 11:44:31 +01001972
1973 /* Set current output file */
Roland McGratheb9e2e82009-06-02 16:49:22 -07001974 outf = tcp->outf;
Andreas Schwabccdff482009-10-27 16:27:13 +01001975 curcol = tcp->curcol;
Denys Vlasenko7de265d2012-03-13 11:44:31 +01001976
Denys Vlasenko13d22f12011-06-24 23:01:57 +02001977 if (cflag) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001978 tv_sub(&tcp->dtime, &ru.ru_stime, &tcp->stime);
1979 tcp->stime = ru.ru_stime;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001980 }
Roland McGratheb9e2e82009-06-02 16:49:22 -07001981
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001982 if (WIFSIGNALED(status)) {
Dmitry V. Levina6809652008-11-10 17:14:58 +00001983 if (pid == strace_child)
1984 exit_code = 0x100 | WTERMSIG(status);
Dmitry V. Levine3a7ef52010-03-28 19:24:54 +00001985 if (cflag != CFLAG_ONLY_STATS
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001986 && (qual_flags[WTERMSIG(status)] & QUAL_SIGNAL)) {
1987 printleader(tcp);
Denys Vlasenko13d22f12011-06-24 23:01:57 +02001988#ifdef WCOREDUMP
Denys Vlasenko000b6012012-01-28 01:25:03 +01001989 tprintf("+++ killed by %s %s+++\n",
Roland McGrath2efe8792004-01-13 09:59:45 +00001990 signame(WTERMSIG(status)),
Denys Vlasenko13d22f12011-06-24 23:01:57 +02001991 WCOREDUMP(status) ? "(core dumped) " : "");
1992#else
Denys Vlasenko000b6012012-01-28 01:25:03 +01001993 tprintf("+++ killed by %s +++\n",
Denys Vlasenko13d22f12011-06-24 23:01:57 +02001994 signame(WTERMSIG(status)));
Roland McGrath2efe8792004-01-13 09:59:45 +00001995#endif
Denys Vlasenko7de265d2012-03-13 11:44:31 +01001996 line_ended();
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001997 }
1998 droptcb(tcp);
1999 continue;
2000 }
2001 if (WIFEXITED(status)) {
Dmitry V. Levina6809652008-11-10 17:14:58 +00002002 if (pid == strace_child)
2003 exit_code = WEXITSTATUS(status);
Denys Vlasenko19cdada2011-08-17 10:45:32 +02002004 if (!cflag /* && (qual_flags[WTERMSIG(status)] & QUAL_SIGNAL) */ ) {
2005 printleader(tcp);
Denys Vlasenko000b6012012-01-28 01:25:03 +01002006 tprintf("+++ exited with %d +++\n", WEXITSTATUS(status));
Denys Vlasenko7de265d2012-03-13 11:44:31 +01002007 line_ended();
Denys Vlasenko19cdada2011-08-17 10:45:32 +02002008 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002009 droptcb(tcp);
2010 continue;
2011 }
2012 if (!WIFSTOPPED(status)) {
2013 fprintf(stderr, "PANIC: pid %u not stopped\n", pid);
2014 droptcb(tcp);
2015 continue;
2016 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002017
Denys Vlasenkof88837a2011-09-05 14:05:46 +02002018 /* Is this the very first time we see this tracee stopped? */
2019 if (tcp->flags & TCB_STARTUP) {
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01002020 if (debug_flag)
Denys Vlasenkof88837a2011-09-05 14:05:46 +02002021 fprintf(stderr, "pid %d has TCB_STARTUP, initializing it\n", tcp->pid);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002022 tcp->flags &= ~TCB_STARTUP;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002023 if (tcp->flags & TCB_BPTSET) {
Roland McGrath02203312007-06-11 22:06:31 +00002024 /*
2025 * One example is a breakpoint inherited from
Denys Vlasenko2ecba322011-08-21 17:35:39 +02002026 * parent through fork().
Roland McGrath02203312007-06-11 22:06:31 +00002027 */
Denys Vlasenko6cda73f2011-09-02 16:23:53 +02002028 if (clearbpt(tcp) < 0) {
2029 /* Pretty fatal */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002030 droptcb(tcp);
2031 cleanup();
2032 return -1;
2033 }
2034 }
Denys Vlasenko44f87ef2011-08-17 15:18:21 +02002035 if (ptrace_setoptions) {
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01002036 if (debug_flag)
Denys Vlasenko44f87ef2011-08-17 15:18:21 +02002037 fprintf(stderr, "setting opts %x on pid %d\n", ptrace_setoptions, tcp->pid);
2038 if (ptrace(PTRACE_SETOPTIONS, tcp->pid, NULL, ptrace_setoptions) < 0) {
2039 if (errno != ESRCH) {
2040 /* Should never happen, really */
2041 perror_msg_and_die("PTRACE_SETOPTIONS");
Denys Vlasenko3454e4b2011-05-23 21:29:03 +02002042 }
2043 }
2044 }
Denys Vlasenkof88837a2011-09-05 14:05:46 +02002045 }
2046
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01002047 sig = WSTOPSIG(status);
2048
Denys Vlasenkof7db5dd2012-01-28 01:16:02 +01002049 if (event != 0) {
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01002050 /* Ptrace event */
2051#ifdef USE_SEIZE
2052 if (event == PTRACE_EVENT_STOP || event == PTRACE_EVENT_STOP1) {
Denys Vlasenko67038162012-01-29 16:46:46 +01002053 /*
2054 * PTRACE_INTERRUPT-stop or group-stop.
2055 * PTRACE_INTERRUPT-stop has sig == SIGTRAP here.
2056 */
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01002057 if (sig == SIGSTOP
2058 || sig == SIGTSTP
2059 || sig == SIGTTIN
2060 || sig == SIGTTOU
2061 ) {
2062 stopped = 1;
2063 goto show_stopsig;
2064 }
2065 }
2066#endif
Denys Vlasenkof88837a2011-09-05 14:05:46 +02002067 goto restart_tracee_with_sig_0;
2068 }
2069
Denys Vlasenkof88837a2011-09-05 14:05:46 +02002070 /* Is this post-attach SIGSTOP?
2071 * Interestingly, the process may stop
2072 * with STOPSIG equal to some other signal
2073 * than SIGSTOP if we happend to attach
2074 * just before the process takes a signal.
2075 */
2076 if (sig == SIGSTOP && (tcp->flags & TCB_IGNORE_ONE_SIGSTOP)) {
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01002077 if (debug_flag)
Denys Vlasenkof88837a2011-09-05 14:05:46 +02002078 fprintf(stderr, "ignored SIGSTOP on pid %d\n", tcp->pid);
2079 tcp->flags &= ~TCB_IGNORE_ONE_SIGSTOP;
Denys Vlasenko6cda73f2011-09-02 16:23:53 +02002080 goto restart_tracee_with_sig_0;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002081 }
2082
Denys Vlasenko6cda73f2011-09-02 16:23:53 +02002083 if (sig != syscall_trap_sig) {
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01002084 siginfo_t si;
2085
2086 /* Nonzero (true) if tracee is stopped by signal
2087 * (as opposed to "tracee received signal").
2088 */
2089 stopped = (ptrace(PTRACE_GETSIGINFO, pid, 0, (long) &si) < 0);
Denys Vlasenko67038162012-01-29 16:46:46 +01002090#ifdef USE_SEIZE
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01002091 show_stopsig:
Denys Vlasenko67038162012-01-29 16:46:46 +01002092#endif
Dmitry V. Levine3a7ef52010-03-28 19:24:54 +00002093 if (cflag != CFLAG_ONLY_STATS
Denys Vlasenko6cda73f2011-09-02 16:23:53 +02002094 && (qual_flags[sig] & QUAL_SIGNAL)) {
Dmitry V. Levinc15dfc72011-03-10 14:44:45 +00002095#if defined(PT_CR_IPSR) && defined(PT_CR_IIP)
Dmitry V. Levin6b7a2612011-03-10 21:20:35 +00002096 long pc = 0;
2097 long psr = 0;
Wichert Akkerman7b3346b2001-10-09 23:47:38 +00002098
Denys Vlasenko932fc7d2008-12-16 18:18:40 +00002099 upeek(tcp, PT_CR_IPSR, &psr);
2100 upeek(tcp, PT_CR_IIP, &pc);
Wichert Akkerman7b3346b2001-10-09 23:47:38 +00002101
Dmitry V. Levin6b7a2612011-03-10 21:20:35 +00002102# define PSR_RI 41
Wichert Akkerman7b3346b2001-10-09 23:47:38 +00002103 pc += (psr >> PSR_RI) & 0x3;
Dmitry V. Levin6b7a2612011-03-10 21:20:35 +00002104# define PC_FORMAT_STR " @ %lx"
Denys Vlasenko2ecba322011-08-21 17:35:39 +02002105# define PC_FORMAT_ARG , pc
Dmitry V. Levin6b7a2612011-03-10 21:20:35 +00002106#else
Denys Vlasenko2ecba322011-08-21 17:35:39 +02002107# define PC_FORMAT_STR ""
2108# define PC_FORMAT_ARG /* nothing */
Wichert Akkerman7b3346b2001-10-09 23:47:38 +00002109#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002110 printleader(tcp);
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01002111 if (!stopped) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002112 tprints("--- ");
Dmitry V. Levin6b7a2612011-03-10 21:20:35 +00002113 printsiginfo(&si, verbose(tcp));
Denys Vlasenko000b6012012-01-28 01:25:03 +01002114 tprintf(" (%s)" PC_FORMAT_STR " ---\n",
Denys Vlasenko6cda73f2011-09-02 16:23:53 +02002115 strsignal(sig)
Dmitry V. Levin6b7a2612011-03-10 21:20:35 +00002116 PC_FORMAT_ARG);
2117 } else
Denys Vlasenko000b6012012-01-28 01:25:03 +01002118 tprintf("--- %s by %s" PC_FORMAT_STR " ---\n",
Denys Vlasenko6cda73f2011-09-02 16:23:53 +02002119 strsignal(sig),
2120 signame(sig)
Dmitry V. Levin6b7a2612011-03-10 21:20:35 +00002121 PC_FORMAT_ARG);
Denys Vlasenko7de265d2012-03-13 11:44:31 +01002122 line_ended();
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002123 }
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01002124
2125 if (!stopped)
2126 /* It's signal-delivery-stop. Inject the signal */
2127 goto restart_tracee;
2128
2129 /* It's group-stop */
2130#ifdef USE_SEIZE
2131 if (use_seize) {
2132 /*
2133 * This ends ptrace-stop, but does *not* end group-stop.
2134 * This makes stopping signals work properly on straced process
2135 * (that is, process really stops. It used to continue to run).
2136 */
2137 if (ptrace_restart(PTRACE_LISTEN, tcp, 0) < 0) {
2138 cleanup();
2139 return -1;
2140 }
Denys Vlasenko7de265d2012-03-13 11:44:31 +01002141 tcp->curcol = curcol;
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01002142 continue;
2143 }
2144 /* We don't have PTRACE_LISTEN support... */
2145#endif
Denys Vlasenko6cda73f2011-09-02 16:23:53 +02002146 goto restart_tracee;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002147 }
Denys Vlasenko2ecba322011-08-21 17:35:39 +02002148
2149 /* We handled quick cases, we are permitted to interrupt now. */
Roland McGrath02203312007-06-11 22:06:31 +00002150 if (interrupted)
2151 return 0;
Denys Vlasenko2ecba322011-08-21 17:35:39 +02002152
2153 /* This should be syscall entry or exit.
2154 * (Or it still can be that pesky post-execve SIGTRAP!)
2155 * Handle it.
2156 */
Roland McGratheb9e2e82009-06-02 16:49:22 -07002157 if (trace_syscall(tcp) < 0 && !tcp->ptrace_errno) {
2158 /* ptrace() failed in trace_syscall() with ESRCH.
2159 * Likely a result of process disappearing mid-flight.
2160 * Observed case: exit_group() terminating
Denys Vlasenkof1e69032012-01-04 15:15:26 +01002161 * all processes in thread group.
Denys Vlasenko7de265d2012-03-13 11:44:31 +01002162 * We assume that ptrace error was caused by process death.
Denys Vlasenkof2025022012-03-09 15:29:45 +01002163 * We used to detach(tcp) here, but since we no longer
2164 * implement "detach before death" policy/hack,
2165 * we can let this process to report its death to us
2166 * normally, via WIFEXITED or WIFSIGNALED wait status.
2167 */
Denys Vlasenko7de265d2012-03-13 11:44:31 +01002168 tcp->curcol = curcol;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002169 continue;
2170 }
Denys Vlasenko6cda73f2011-09-02 16:23:53 +02002171 restart_tracee_with_sig_0:
2172 sig = 0;
2173 restart_tracee:
Andreas Schwabccdff482009-10-27 16:27:13 +01002174 /* Remember current print column before continuing. */
2175 tcp->curcol = curcol;
Denys Vlasenko6cda73f2011-09-02 16:23:53 +02002176 if (ptrace_restart(PTRACE_SYSCALL, tcp, sig) < 0) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002177 cleanup();
2178 return -1;
2179 }
2180 }
2181 return 0;
2182}
Denys Vlasenkoecc8b972012-03-12 23:05:25 +01002183
2184int
2185main(int argc, char *argv[])
2186{
2187 init(argc, argv);
2188
2189 /* Run main tracing loop */
2190 if (trace() < 0)
2191 return 1;
2192
2193 cleanup();
2194 fflush(NULL);
2195 if (exit_code > 0xff) {
2196 /* Avoid potential core file clobbering. */
2197 struct rlimit rlim = {0, 0};
2198 setrlimit(RLIMIT_CORE, &rlim);
2199
2200 /* Child was killed by a signal, mimic that. */
2201 exit_code &= 0xff;
2202 signal(exit_code, SIG_DFL);
2203 raise(exit_code);
2204 /* Paranoia - what if this signal is not fatal?
2205 Exit with 128 + signo then. */
2206 exit_code += 128;
2207 }
2208
2209 return exit_code;
2210}