Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1 | /* |
| 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 Akkerman | 4dc8a2a | 1999-12-23 14:20:14 +0000 | [diff] [blame] | 5 | * Copyright (c) 1996-1999 Wichert Akkerman <wichert@cistron.nl> |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 6 | * All rights reserved. |
| 7 | * |
| 8 | * Redistribution and use in source and binary forms, with or without |
| 9 | * modification, are permitted provided that the following conditions |
| 10 | * are met: |
| 11 | * 1. Redistributions of source code must retain the above copyright |
| 12 | * notice, this list of conditions and the following disclaimer. |
| 13 | * 2. Redistributions in binary form must reproduce the above copyright |
| 14 | * notice, this list of conditions and the following disclaimer in the |
| 15 | * documentation and/or other materials provided with the distribution. |
| 16 | * 3. The name of the author may not be used to endorse or promote products |
| 17 | * derived from this software without specific prior written permission. |
| 18 | * |
| 19 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 20 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 21 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 22 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 23 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 24 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 25 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 26 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 27 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 28 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 29 | */ |
| 30 | |
| 31 | #include "defs.h" |
Denys Vlasenko | 3454e4b | 2011-05-23 21:29:03 +0200 | [diff] [blame] | 32 | #include <stdarg.h> |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 33 | #include <sys/param.h> |
| 34 | #include <fcntl.h> |
| 35 | #include <sys/resource.h> |
| 36 | #include <sys/wait.h> |
| 37 | #include <sys/stat.h> |
| 38 | #include <pwd.h> |
| 39 | #include <grp.h> |
Roland McGrath | 70b0853 | 2004-04-09 00:25:21 +0000 | [diff] [blame] | 40 | #include <dirent.h> |
Denys Vlasenko | f7db5dd | 2012-01-28 01:16:02 +0100 | [diff] [blame] | 41 | #include <sys/utsname.h> |
Dmitry V. Levin | 882478a | 2013-05-13 18:43:28 +0000 | [diff] [blame] | 42 | #ifdef HAVE_PRCTL |
| 43 | # include <sys/prctl.h> |
| 44 | #endif |
Dmitry V. Levin | fadf379 | 2015-02-13 00:26:38 +0000 | [diff] [blame] | 45 | |
| 46 | #include "ptrace.h" |
| 47 | |
Denys Vlasenko | a50d2a8 | 2012-03-15 12:49:52 +0100 | [diff] [blame] | 48 | /* In some libc, these aren't declared. Do it ourself: */ |
Denys Vlasenko | 96d5a76 | 2008-12-29 19:13:27 +0000 | [diff] [blame] | 49 | extern char **environ; |
Denys Vlasenko | 418d66a | 2009-01-17 01:52:54 +0000 | [diff] [blame] | 50 | extern int optind; |
| 51 | extern char *optarg; |
Denys Vlasenko | 96d5a76 | 2008-12-29 19:13:27 +0000 | [diff] [blame] | 52 | |
Luca Clementi | 327064b | 2013-07-23 00:11:35 -0700 | [diff] [blame] | 53 | #ifdef USE_LIBUNWIND |
| 54 | /* if this is true do the stack trace for every system call */ |
| 55 | bool stack_trace_enabled = false; |
| 56 | #endif |
Denys Vlasenko | a50d2a8 | 2012-03-15 12:49:52 +0100 | [diff] [blame] | 57 | |
| 58 | #if defined __NR_tkill |
| 59 | # define my_tkill(tid, sig) syscall(__NR_tkill, (tid), (sig)) |
| 60 | #else |
| 61 | /* kill() may choose arbitrarily the target task of the process group |
| 62 | while we later wait on a that specific TID. PID process waits become |
| 63 | TID task specific waits for a process under ptrace(2). */ |
Denys Vlasenko | 978fbc9 | 2012-09-13 10:28:43 +0200 | [diff] [blame] | 64 | # warning "tkill(2) not available, risk of strace hangs!" |
Denys Vlasenko | a50d2a8 | 2012-03-15 12:49:52 +0100 | [diff] [blame] | 65 | # define my_tkill(tid, sig) kill((tid), (sig)) |
| 66 | #endif |
| 67 | |
Denys Vlasenko | 5c9d8f4 | 2013-02-19 15:30:12 +0100 | [diff] [blame] | 68 | /* Glue for systems without a MMU that cannot provide fork() */ |
| 69 | #if !defined(HAVE_FORK) |
| 70 | # undef NOMMU_SYSTEM |
| 71 | # define NOMMU_SYSTEM 1 |
| 72 | #endif |
| 73 | #if NOMMU_SYSTEM |
| 74 | # define fork() vfork() |
| 75 | #endif |
| 76 | |
Dmitry V. Levin | 23ce9e4 | 2015-02-08 13:05:53 +0000 | [diff] [blame] | 77 | const unsigned int syscall_trap_sig = SIGTRAP | 0x80; |
| 78 | |
Denys Vlasenko | a50d2a8 | 2012-03-15 12:49:52 +0100 | [diff] [blame] | 79 | cflag_t cflag = CFLAG_NONE; |
| 80 | unsigned int followfork = 0; |
Dmitry V. Levin | 23ce9e4 | 2015-02-08 13:05:53 +0000 | [diff] [blame] | 81 | unsigned int ptrace_setoptions = PTRACE_O_TRACESYSGOOD | PTRACE_O_TRACEEXEC; |
Denys Vlasenko | a50d2a8 | 2012-03-15 12:49:52 +0100 | [diff] [blame] | 82 | unsigned int xflag = 0; |
| 83 | bool debug_flag = 0; |
| 84 | bool Tflag = 0; |
Anton Blanchard | a34dead | 2013-07-12 12:22:06 +0200 | [diff] [blame] | 85 | bool iflag = 0; |
Mark Hills | e53bf23 | 2014-05-28 17:52:40 +0100 | [diff] [blame] | 86 | bool count_wallclock = 0; |
Daniel P. Berrange | 01997cf | 2013-05-13 11:30:55 +0100 | [diff] [blame] | 87 | unsigned int qflag = 0; |
Denys Vlasenko | a50d2a8 | 2012-03-15 12:49:52 +0100 | [diff] [blame] | 88 | static unsigned int tflag = 0; |
Denys Vlasenko | a50d2a8 | 2012-03-15 12:49:52 +0100 | [diff] [blame] | 89 | static bool rflag = 0; |
| 90 | static bool print_pid_pfx = 0; |
Denys Vlasenko | b51581e | 2012-01-29 16:53:03 +0100 | [diff] [blame] | 91 | |
| 92 | /* -I n */ |
| 93 | enum { |
| 94 | INTR_NOT_SET = 0, |
| 95 | INTR_ANYWHERE = 1, /* don't block/ignore any signals */ |
| 96 | INTR_WHILE_WAIT = 2, /* block fatal signals while decoding syscall. default */ |
| 97 | INTR_NEVER = 3, /* block fatal signals. default if '-o FILE PROG' */ |
| 98 | INTR_BLOCK_TSTP_TOO = 4, /* block fatal signals and SIGTSTP (^Z) */ |
| 99 | NUM_INTR_OPTS |
| 100 | }; |
| 101 | static int opt_intr; |
| 102 | /* We play with signal mask only if this mode is active: */ |
| 103 | #define interactive (opt_intr == INTR_WHILE_WAIT) |
| 104 | |
Denys Vlasenko | ecfe2f1 | 2008-12-30 20:51:30 +0000 | [diff] [blame] | 105 | /* |
| 106 | * daemonized_tracer supports -D option. |
| 107 | * With this option, strace forks twice. |
| 108 | * Unlike normal case, with -D *grandparent* process exec's, |
| 109 | * becoming a traced process. Child exits (this prevents traced process |
| 110 | * from having children it doesn't expect to have), and grandchild |
| 111 | * attaches to grandparent similarly to strace -p PID. |
| 112 | * This allows for more transparent interaction in cases |
| 113 | * when process and its parent are communicating via signals, |
| 114 | * wait() etc. Without -D, strace process gets lodged in between, |
| 115 | * disrupting parent<->child link. |
| 116 | */ |
| 117 | static bool daemonized_tracer = 0; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 118 | |
Denys Vlasenko | 5c9d8f4 | 2013-02-19 15:30:12 +0100 | [diff] [blame] | 119 | #if USE_SEIZE |
Denys Vlasenko | 31fa8a2 | 2012-01-29 02:01:44 +0100 | [diff] [blame] | 120 | static int post_attach_sigstop = TCB_IGNORE_ONE_SIGSTOP; |
| 121 | # define use_seize (post_attach_sigstop == 0) |
| 122 | #else |
| 123 | # define post_attach_sigstop TCB_IGNORE_ONE_SIGSTOP |
| 124 | # define use_seize 0 |
| 125 | #endif |
| 126 | |
Michal Ludvig | 17f8fb3 | 2002-11-06 13:17:21 +0000 | [diff] [blame] | 127 | /* Sometimes we want to print only succeeding syscalls. */ |
Denys Vlasenko | a50d2a8 | 2012-03-15 12:49:52 +0100 | [diff] [blame] | 128 | bool not_failing_only = 0; |
Michal Ludvig | 17f8fb3 | 2002-11-06 13:17:21 +0000 | [diff] [blame] | 129 | |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 130 | /* Show path associated with fd arguments */ |
Dmitry V. Levin | 45e7b18 | 2014-08-08 23:38:26 +0000 | [diff] [blame] | 131 | unsigned int show_fd_path = 0; |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 132 | |
Denys Vlasenko | 61e7aad | 2012-03-15 13:44:17 +0100 | [diff] [blame] | 133 | static bool detach_on_execve = 0; |
Denys Vlasenko | 2a3d275 | 2013-05-14 16:07:46 +0200 | [diff] [blame] | 134 | /* Are we "strace PROG" and need to skip detach on first execve? */ |
| 135 | static bool skip_one_b_execve = 0; |
| 136 | /* Are we "strace PROG" and need to hide everything until execve? */ |
| 137 | bool hide_log_until_execve = 0; |
Denys Vlasenko | 61e7aad | 2012-03-15 13:44:17 +0100 | [diff] [blame] | 138 | |
Dmitry V. Levin | a680965 | 2008-11-10 17:14:58 +0000 | [diff] [blame] | 139 | static int exit_code = 0; |
| 140 | static int strace_child = 0; |
Denys Vlasenko | 7542276 | 2011-05-27 14:36:01 +0200 | [diff] [blame] | 141 | static int strace_tracer_pid = 0; |
Roland McGrath | eb9e2e8 | 2009-06-02 16:49:22 -0700 | [diff] [blame] | 142 | |
Dmitry V. Levin | b9fe011 | 2006-12-13 16:59:44 +0000 | [diff] [blame] | 143 | static char *username = NULL; |
Denys Vlasenko | ead73bd | 2011-06-24 22:49:58 +0200 | [diff] [blame] | 144 | static uid_t run_uid; |
| 145 | static gid_t run_gid; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 146 | |
Denys Vlasenko | a50d2a8 | 2012-03-15 12:49:52 +0100 | [diff] [blame] | 147 | unsigned int max_strlen = DEFAULT_STRLEN; |
Dmitry V. Levin | ccee169 | 2012-03-25 21:49:48 +0000 | [diff] [blame] | 148 | static int acolumn = DEFAULT_ACOLUMN; |
Denys Vlasenko | 102ec49 | 2011-08-25 01:27:59 +0200 | [diff] [blame] | 149 | static char *acolumn_spaces; |
Denys Vlasenko | 6764f8f | 2012-03-22 09:56:20 +0100 | [diff] [blame] | 150 | |
Dmitry V. Levin | b9fe011 | 2006-12-13 16:59:44 +0000 | [diff] [blame] | 151 | static char *outfname = NULL; |
Denys Vlasenko | 6764f8f | 2012-03-22 09:56:20 +0100 | [diff] [blame] | 152 | /* If -ff, points to stderr. Else, it's our common output log */ |
| 153 | static FILE *shared_log; |
| 154 | |
Denys Vlasenko | 000b601 | 2012-01-28 01:25:03 +0100 | [diff] [blame] | 155 | struct tcb *printing_tcp = NULL; |
Denys Vlasenko | 6764f8f | 2012-03-22 09:56:20 +0100 | [diff] [blame] | 156 | static struct tcb *current_tcp; |
| 157 | |
Denys Vlasenko | ead73bd | 2011-06-24 22:49:58 +0200 | [diff] [blame] | 158 | static struct tcb **tcbtab; |
Denys Vlasenko | 2b60c35 | 2011-06-22 12:45:25 +0200 | [diff] [blame] | 159 | static unsigned int nprocs, tcbtabsize; |
Denys Vlasenko | ead73bd | 2011-06-24 22:49:58 +0200 | [diff] [blame] | 160 | static const char *progname; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 161 | |
Denys Vlasenko | eec8d5d | 2013-02-14 03:29:48 +0100 | [diff] [blame] | 162 | unsigned os_release; /* generated from uname()'s u.release */ |
Denys Vlasenko | f7db5dd | 2012-01-28 01:16:02 +0100 | [diff] [blame] | 163 | |
Denys Vlasenko | 4a9ba98 | 2013-06-20 11:20:23 +0200 | [diff] [blame] | 164 | static void detach(struct tcb *tcp); |
Andreas Schwab | e5355de | 2009-10-27 16:56:43 +0100 | [diff] [blame] | 165 | static void cleanup(void); |
| 166 | static void interrupt(int sig); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 167 | static sigset_t empty_set, blocked_set; |
| 168 | |
| 169 | #ifdef HAVE_SIG_ATOMIC_T |
| 170 | static volatile sig_atomic_t interrupted; |
Denys Vlasenko | a355925 | 2012-01-29 16:43:51 +0100 | [diff] [blame] | 171 | #else |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 172 | static volatile int interrupted; |
Denys Vlasenko | a355925 | 2012-01-29 16:43:51 +0100 | [diff] [blame] | 173 | #endif |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 174 | |
Denys Vlasenko | 2c4fb90 | 2012-03-15 17:24:49 +0100 | [diff] [blame] | 175 | #ifndef HAVE_STRERROR |
| 176 | |
| 177 | #if !HAVE_DECL_SYS_ERRLIST |
| 178 | extern int sys_nerr; |
| 179 | extern char *sys_errlist[]; |
Denys Vlasenko | a6d91de | 2012-03-16 12:02:22 +0100 | [diff] [blame] | 180 | #endif |
Denys Vlasenko | 2c4fb90 | 2012-03-15 17:24:49 +0100 | [diff] [blame] | 181 | |
| 182 | const char * |
| 183 | strerror(int err_no) |
| 184 | { |
| 185 | static char buf[sizeof("Unknown error %d") + sizeof(int)*3]; |
| 186 | |
| 187 | if (err_no < 1 || err_no >= sys_nerr) { |
| 188 | sprintf(buf, "Unknown error %d", err_no); |
| 189 | return buf; |
| 190 | } |
| 191 | return sys_errlist[err_no]; |
| 192 | } |
| 193 | |
| 194 | #endif /* HAVE_STERRROR */ |
| 195 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 196 | static void |
Denys Vlasenko | cb2ad00 | 2011-06-23 13:05:29 +0200 | [diff] [blame] | 197 | usage(FILE *ofp, int exitval) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 198 | { |
| 199 | fprintf(ofp, "\ |
Denys Vlasenko | c5ccfa4 | 2012-03-26 13:10:50 +0200 | [diff] [blame] | 200 | usage: strace [-CdffhiqrtttTvVxxy] [-I n] [-e expr]...\n\ |
| 201 | [-a column] [-o file] [-s strsize] [-P path]...\n\ |
| 202 | -p pid... / [-D] [-E var=val]... [-u username] PROG [ARGS]\n\ |
| 203 | or: strace -c[df] [-I n] [-e expr]... [-O overhead] [-S sortby]\n\ |
| 204 | -p pid... / [-D] [-E var=val]... [-u username] PROG [ARGS]\n\ |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 205 | -c -- count time, calls, and errors for each syscall and report summary\n\ |
Denys Vlasenko | c5ccfa4 | 2012-03-26 13:10:50 +0200 | [diff] [blame] | 206 | -C -- like -c but also print regular output\n\ |
Mark Hills | e53bf23 | 2014-05-28 17:52:40 +0100 | [diff] [blame] | 207 | -w -- summarise syscall latency (default is system time)\n\ |
Denys Vlasenko | 3e084ac | 2012-03-15 13:39:05 +0100 | [diff] [blame] | 208 | -d -- enable debug output to stderr\n\ |
Denys Vlasenko | b51581e | 2012-01-29 16:53:03 +0100 | [diff] [blame] | 209 | -D -- run tracer process as a detached grandchild, not as parent\n\ |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 210 | -f -- follow forks, -ff -- with output into separate files\n\ |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 211 | -i -- print instruction pointer at time of syscall\n\ |
| 212 | -q -- suppress messages about attaching, detaching, etc.\n\ |
| 213 | -r -- print relative timestamp, -t -- absolute timestamp, -tt -- with usecs\n\ |
Denys Vlasenko | cdab1be | 2012-02-03 12:17:57 +0100 | [diff] [blame] | 214 | -T -- print time spent in each syscall\n\ |
| 215 | -v -- verbose mode: print unabbreviated argv, stat, termios, etc. args\n\ |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 216 | -x -- print non-ascii strings in hex, -xx -- print all strings in hex\n\ |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 217 | -y -- print paths associated with file descriptor arguments\n\ |
Dmitry V. Levin | 2f6510c | 2014-08-21 03:17:48 +0000 | [diff] [blame] | 218 | -yy -- print ip:port pairs associated with socket file descriptors\n\ |
Denys Vlasenko | c5ccfa4 | 2012-03-26 13:10:50 +0200 | [diff] [blame] | 219 | -h -- print help message, -V -- print version\n\ |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 220 | -a column -- alignment COLUMN for printing syscall results (default %d)\n\ |
Denys Vlasenko | 22efaf0 | 2013-02-27 12:15:19 +0100 | [diff] [blame] | 221 | -b execve -- detach on this syscall\n\ |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 222 | -e expr -- a qualifying expression: option=[!]all or option=[!]val1[,val2]...\n\ |
Denys Vlasenko | 38e79bb | 2013-02-26 11:33:54 +0100 | [diff] [blame] | 223 | options: trace, abbrev, verbose, raw, signal, read, write\n\ |
Denys Vlasenko | c5ccfa4 | 2012-03-26 13:10:50 +0200 | [diff] [blame] | 224 | -I interruptible --\n\ |
| 225 | 1: no signals are blocked\n\ |
| 226 | 2: fatal signals are blocked while decoding syscall (default)\n\ |
| 227 | 3: fatal signals are always blocked (default if '-o FILE PROG')\n\ |
| 228 | 4: fatal signals and SIGTSTP (^Z) are always blocked\n\ |
| 229 | (useful to make 'strace -o FILE PROG' not stop on ^Z)\n\ |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 230 | -o file -- send trace output to FILE instead of stderr\n\ |
| 231 | -O overhead -- set overhead for tracing syscalls to OVERHEAD usecs\n\ |
| 232 | -p pid -- trace process with process id PID, may be repeated\n\ |
| 233 | -s strsize -- limit length of print strings to STRSIZE chars (default %d)\n\ |
| 234 | -S sortby -- sort syscall counts by: time, calls, name, nothing (default %s)\n\ |
| 235 | -u username -- run command as username handling setuid and/or setgid\n\ |
Roland McGrath | de6e533 | 2003-01-24 04:31:23 +0000 | [diff] [blame] | 236 | -E var=val -- put var=val in the environment for command\n\ |
| 237 | -E var -- remove var from the environment for command\n\ |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 238 | -P path -- trace accesses to path\n\ |
Denys Vlasenko | 61e7aad | 2012-03-15 13:44:17 +0100 | [diff] [blame] | 239 | " |
Luca Clementi | 327064b | 2013-07-23 00:11:35 -0700 | [diff] [blame] | 240 | #ifdef USE_LIBUNWIND |
Dmitry V. Levin | 2734a70 | 2014-06-18 15:34:27 +0000 | [diff] [blame] | 241 | "-k obtain stack trace between each syscall (experimental)\n\ |
Luca Clementi | 327064b | 2013-07-23 00:11:35 -0700 | [diff] [blame] | 242 | " |
| 243 | #endif |
Denys Vlasenko | 38e79bb | 2013-02-26 11:33:54 +0100 | [diff] [blame] | 244 | /* ancient, no one should use it |
| 245 | -F -- attempt to follow vforks (deprecated, use -f)\n\ |
| 246 | */ |
Denys Vlasenko | 61e7aad | 2012-03-15 13:44:17 +0100 | [diff] [blame] | 247 | /* this is broken, so don't document it |
Michal Ludvig | 17f8fb3 | 2002-11-06 13:17:21 +0000 | [diff] [blame] | 248 | -z -- print only succeeding syscalls\n\ |
Denys Vlasenko | 61e7aad | 2012-03-15 13:44:17 +0100 | [diff] [blame] | 249 | */ |
Roland McGrath | de6e533 | 2003-01-24 04:31:23 +0000 | [diff] [blame] | 250 | , DEFAULT_ACOLUMN, DEFAULT_STRLEN, DEFAULT_SORTBY); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 251 | exit(exitval); |
| 252 | } |
| 253 | |
Dmitry V. Levin | 5647cf8 | 2015-03-29 22:45:03 +0000 | [diff] [blame] | 254 | static void ATTRIBUTE_NORETURN |
| 255 | die(void) |
Denys Vlasenko | 7542276 | 2011-05-27 14:36:01 +0200 | [diff] [blame] | 256 | { |
| 257 | if (strace_tracer_pid == getpid()) { |
| 258 | cflag = 0; |
| 259 | cleanup(); |
| 260 | } |
| 261 | exit(1); |
| 262 | } |
| 263 | |
| 264 | static void verror_msg(int err_no, const char *fmt, va_list p) |
Denys Vlasenko | 3454e4b | 2011-05-23 21:29:03 +0200 | [diff] [blame] | 265 | { |
Denys Vlasenko | 82bb78c | 2012-01-24 10:17:18 +0100 | [diff] [blame] | 266 | char *msg; |
| 267 | |
Dmitry V. Levin | 44d0532 | 2011-06-09 15:50:41 +0000 | [diff] [blame] | 268 | fflush(NULL); |
Denys Vlasenko | 82bb78c | 2012-01-24 10:17:18 +0100 | [diff] [blame] | 269 | |
| 270 | /* We want to print entire message with single fprintf to ensure |
| 271 | * message integrity if stderr is shared with other programs. |
| 272 | * Thus we use vasprintf + single fprintf. |
| 273 | */ |
| 274 | msg = NULL; |
Denys Vlasenko | cfad543 | 2012-01-24 12:48:02 +0100 | [diff] [blame] | 275 | if (vasprintf(&msg, fmt, p) >= 0) { |
Denys Vlasenko | 82bb78c | 2012-01-24 10:17:18 +0100 | [diff] [blame] | 276 | if (err_no) |
| 277 | fprintf(stderr, "%s: %s: %s\n", progname, msg, strerror(err_no)); |
| 278 | else |
| 279 | fprintf(stderr, "%s: %s\n", progname, msg); |
| 280 | free(msg); |
| 281 | } else { |
| 282 | /* malloc in vasprintf failed, try it without malloc */ |
| 283 | fprintf(stderr, "%s: ", progname); |
| 284 | vfprintf(stderr, fmt, p); |
| 285 | if (err_no) |
| 286 | fprintf(stderr, ": %s\n", strerror(err_no)); |
| 287 | else |
| 288 | putc('\n', stderr); |
| 289 | } |
| 290 | /* We don't switch stderr to buffered, thus fprintf(stderr) |
| 291 | * always flushes its output and this is not necessary: */ |
| 292 | /* fflush(stderr); */ |
Denys Vlasenko | 7542276 | 2011-05-27 14:36:01 +0200 | [diff] [blame] | 293 | } |
Denys Vlasenko | 3454e4b | 2011-05-23 21:29:03 +0200 | [diff] [blame] | 294 | |
Denys Vlasenko | 7542276 | 2011-05-27 14:36:01 +0200 | [diff] [blame] | 295 | void error_msg(const char *fmt, ...) |
| 296 | { |
| 297 | va_list p; |
| 298 | va_start(p, fmt); |
| 299 | verror_msg(0, fmt, p); |
| 300 | va_end(p); |
| 301 | } |
| 302 | |
| 303 | void error_msg_and_die(const char *fmt, ...) |
| 304 | { |
| 305 | va_list p; |
| 306 | va_start(p, fmt); |
| 307 | verror_msg(0, fmt, p); |
| 308 | die(); |
| 309 | } |
| 310 | |
| 311 | void perror_msg(const char *fmt, ...) |
| 312 | { |
| 313 | va_list p; |
| 314 | va_start(p, fmt); |
| 315 | verror_msg(errno, fmt, p); |
| 316 | va_end(p); |
| 317 | } |
| 318 | |
| 319 | void perror_msg_and_die(const char *fmt, ...) |
| 320 | { |
| 321 | va_list p; |
| 322 | va_start(p, fmt); |
| 323 | verror_msg(errno, fmt, p); |
| 324 | die(); |
Denys Vlasenko | 3454e4b | 2011-05-23 21:29:03 +0200 | [diff] [blame] | 325 | } |
| 326 | |
Dmitry V. Levin | ccee169 | 2012-03-25 21:49:48 +0000 | [diff] [blame] | 327 | static void |
| 328 | error_opt_arg(int opt, const char *arg) |
| 329 | { |
| 330 | error_msg_and_die("Invalid -%c argument: '%s'", opt, arg); |
| 331 | } |
| 332 | |
Denys Vlasenko | 5c9d8f4 | 2013-02-19 15:30:12 +0100 | [diff] [blame] | 333 | #if USE_SEIZE |
Denys Vlasenko | 31fa8a2 | 2012-01-29 02:01:44 +0100 | [diff] [blame] | 334 | static int |
| 335 | ptrace_attach_or_seize(int pid) |
| 336 | { |
| 337 | int r; |
| 338 | if (!use_seize) |
Denys Vlasenko | c169d94 | 2013-07-10 14:33:05 +0200 | [diff] [blame] | 339 | return ptrace(PTRACE_ATTACH, pid, 0L, 0L); |
Dmitry V. Levin | 23ce9e4 | 2015-02-08 13:05:53 +0000 | [diff] [blame] | 340 | r = ptrace(PTRACE_SEIZE, pid, 0L, (unsigned long) ptrace_setoptions); |
Denys Vlasenko | 31fa8a2 | 2012-01-29 02:01:44 +0100 | [diff] [blame] | 341 | if (r) |
| 342 | return r; |
Denys Vlasenko | c169d94 | 2013-07-10 14:33:05 +0200 | [diff] [blame] | 343 | r = ptrace(PTRACE_INTERRUPT, pid, 0L, 0L); |
Denys Vlasenko | 31fa8a2 | 2012-01-29 02:01:44 +0100 | [diff] [blame] | 344 | return r; |
| 345 | } |
| 346 | #else |
| 347 | # define ptrace_attach_or_seize(pid) ptrace(PTRACE_ATTACH, (pid), 0, 0) |
| 348 | #endif |
| 349 | |
Denys Vlasenko | 852f98a | 2012-03-20 16:26:25 +0100 | [diff] [blame] | 350 | /* |
| 351 | * Used when we want to unblock stopped traced process. |
| 352 | * Should be only used with PTRACE_CONT, PTRACE_DETACH and PTRACE_SYSCALL. |
| 353 | * Returns 0 on success or if error was ESRCH |
| 354 | * (presumably process was killed while we talk to it). |
| 355 | * Otherwise prints error message and returns -1. |
| 356 | */ |
| 357 | static int |
| 358 | ptrace_restart(int op, struct tcb *tcp, int sig) |
| 359 | { |
| 360 | int err; |
| 361 | const char *msg; |
| 362 | |
| 363 | errno = 0; |
| 364 | ptrace(op, tcp->pid, (void *) 0, (long) sig); |
| 365 | err = errno; |
Denys Vlasenko | 2350675 | 2012-03-21 10:32:49 +0100 | [diff] [blame] | 366 | if (!err) |
Denys Vlasenko | 852f98a | 2012-03-20 16:26:25 +0100 | [diff] [blame] | 367 | return 0; |
| 368 | |
Denys Vlasenko | 852f98a | 2012-03-20 16:26:25 +0100 | [diff] [blame] | 369 | msg = "SYSCALL"; |
| 370 | if (op == PTRACE_CONT) |
| 371 | msg = "CONT"; |
| 372 | if (op == PTRACE_DETACH) |
| 373 | msg = "DETACH"; |
| 374 | #ifdef PTRACE_LISTEN |
| 375 | if (op == PTRACE_LISTEN) |
| 376 | msg = "LISTEN"; |
| 377 | #endif |
Denys Vlasenko | 2350675 | 2012-03-21 10:32:49 +0100 | [diff] [blame] | 378 | /* |
| 379 | * Why curcol != 0? Otherwise sometimes we get this: |
| 380 | * |
| 381 | * 10252 kill(10253, SIGKILL) = 0 |
| 382 | * <ptrace(SYSCALL,10252):No such process>10253 ...next decode... |
| 383 | * |
| 384 | * 10252 died after we retrieved syscall exit data, |
| 385 | * but before we tried to restart it. Log looks ugly. |
| 386 | */ |
Denys Vlasenko | 6764f8f | 2012-03-22 09:56:20 +0100 | [diff] [blame] | 387 | if (current_tcp && current_tcp->curcol != 0) { |
Denys Vlasenko | 2350675 | 2012-03-21 10:32:49 +0100 | [diff] [blame] | 388 | tprintf(" <ptrace(%s):%s>\n", msg, strerror(err)); |
| 389 | line_ended(); |
| 390 | } |
| 391 | if (err == ESRCH) |
| 392 | return 0; |
| 393 | errno = err; |
Denys Vlasenko | 852f98a | 2012-03-20 16:26:25 +0100 | [diff] [blame] | 394 | perror_msg("ptrace(PTRACE_%s,pid:%d,sig:%d)", msg, tcp->pid, sig); |
| 395 | return -1; |
| 396 | } |
| 397 | |
Denys Vlasenko | 1f532ab | 2011-06-22 13:11:23 +0200 | [diff] [blame] | 398 | static void |
Dmitry V. Levin | 10de62b | 2006-12-13 21:45:31 +0000 | [diff] [blame] | 399 | set_cloexec_flag(int fd) |
| 400 | { |
Denys Vlasenko | 1f532ab | 2011-06-22 13:11:23 +0200 | [diff] [blame] | 401 | int flags, newflags; |
Dmitry V. Levin | 10de62b | 2006-12-13 21:45:31 +0000 | [diff] [blame] | 402 | |
Denys Vlasenko | 1f532ab | 2011-06-22 13:11:23 +0200 | [diff] [blame] | 403 | flags = fcntl(fd, F_GETFD); |
| 404 | if (flags < 0) { |
| 405 | /* Can happen only if fd is bad. |
| 406 | * Should never happen: if it does, we have a bug |
| 407 | * in the caller. Therefore we just abort |
| 408 | * instead of propagating the error. |
| 409 | */ |
| 410 | perror_msg_and_die("fcntl(%d, F_GETFD)", fd); |
Dmitry V. Levin | 10de62b | 2006-12-13 21:45:31 +0000 | [diff] [blame] | 411 | } |
| 412 | |
| 413 | newflags = flags | FD_CLOEXEC; |
| 414 | if (flags == newflags) |
Denys Vlasenko | 1f532ab | 2011-06-22 13:11:23 +0200 | [diff] [blame] | 415 | return; |
Dmitry V. Levin | 10de62b | 2006-12-13 21:45:31 +0000 | [diff] [blame] | 416 | |
Denys Vlasenko | 1f532ab | 2011-06-22 13:11:23 +0200 | [diff] [blame] | 417 | fcntl(fd, F_SETFD, newflags); /* never fails */ |
Dmitry V. Levin | 10de62b | 2006-12-13 21:45:31 +0000 | [diff] [blame] | 418 | } |
| 419 | |
Denys Vlasenko | 75fe85c | 2012-03-09 15:15:24 +0100 | [diff] [blame] | 420 | static void kill_save_errno(pid_t pid, int sig) |
| 421 | { |
| 422 | int saved_errno = errno; |
| 423 | |
| 424 | (void) kill(pid, sig); |
| 425 | errno = saved_errno; |
| 426 | } |
| 427 | |
Denys Vlasenko | 800ec8f | 2012-03-16 15:11:34 +0100 | [diff] [blame] | 428 | /* |
| 429 | * When strace is setuid executable, we have to swap uids |
| 430 | * before and after filesystem and process management operations. |
| 431 | */ |
| 432 | static void |
| 433 | swap_uid(void) |
| 434 | { |
| 435 | int euid = geteuid(), uid = getuid(); |
| 436 | |
| 437 | if (euid != uid && setreuid(euid, uid) < 0) { |
| 438 | perror_msg_and_die("setreuid"); |
| 439 | } |
| 440 | } |
| 441 | |
Dmitry V. Levin | 0506f0f | 2013-11-12 22:34:42 +0000 | [diff] [blame] | 442 | #ifdef _LARGEFILE64_SOURCE |
Dmitry V. Levin | d354130 | 2014-02-26 00:01:00 +0000 | [diff] [blame] | 443 | # ifdef HAVE_FOPEN64 |
| 444 | # define fopen_for_output fopen64 |
| 445 | # else |
| 446 | # define fopen_for_output fopen |
| 447 | # endif |
Dmitry V. Levin | c8938e0 | 2013-03-20 21:40:15 +0000 | [diff] [blame] | 448 | # define struct_stat struct stat64 |
| 449 | # define stat_file stat64 |
| 450 | # define struct_dirent struct dirent64 |
| 451 | # define read_dir readdir64 |
| 452 | # define struct_rlimit struct rlimit64 |
| 453 | # define set_rlimit setrlimit64 |
Denys Vlasenko | 800ec8f | 2012-03-16 15:11:34 +0100 | [diff] [blame] | 454 | #else |
| 455 | # define fopen_for_output fopen |
Dmitry V. Levin | c8938e0 | 2013-03-20 21:40:15 +0000 | [diff] [blame] | 456 | # define struct_stat struct stat |
| 457 | # define stat_file stat |
| 458 | # define struct_dirent struct dirent |
| 459 | # define read_dir readdir |
| 460 | # define struct_rlimit struct rlimit |
| 461 | # define set_rlimit setrlimit |
Denys Vlasenko | 800ec8f | 2012-03-16 15:11:34 +0100 | [diff] [blame] | 462 | #endif |
| 463 | |
| 464 | static FILE * |
| 465 | strace_fopen(const char *path) |
| 466 | { |
| 467 | FILE *fp; |
| 468 | |
| 469 | swap_uid(); |
| 470 | fp = fopen_for_output(path, "w"); |
| 471 | if (!fp) |
| 472 | perror_msg_and_die("Can't fopen '%s'", path); |
| 473 | swap_uid(); |
| 474 | set_cloexec_flag(fileno(fp)); |
| 475 | return fp; |
| 476 | } |
| 477 | |
| 478 | static int popen_pid = 0; |
| 479 | |
| 480 | #ifndef _PATH_BSHELL |
| 481 | # define _PATH_BSHELL "/bin/sh" |
| 482 | #endif |
| 483 | |
| 484 | /* |
| 485 | * We cannot use standard popen(3) here because we have to distinguish |
| 486 | * popen child process from other processes we trace, and standard popen(3) |
| 487 | * does not export its child's pid. |
| 488 | */ |
| 489 | static FILE * |
| 490 | strace_popen(const char *command) |
| 491 | { |
| 492 | FILE *fp; |
Denys Vlasenko | 519af5a | 2013-07-02 11:31:24 +0200 | [diff] [blame] | 493 | int pid; |
Denys Vlasenko | 800ec8f | 2012-03-16 15:11:34 +0100 | [diff] [blame] | 494 | int fds[2]; |
| 495 | |
| 496 | swap_uid(); |
| 497 | if (pipe(fds) < 0) |
| 498 | perror_msg_and_die("pipe"); |
| 499 | |
| 500 | set_cloexec_flag(fds[1]); /* never fails */ |
| 501 | |
Denys Vlasenko | 519af5a | 2013-07-02 11:31:24 +0200 | [diff] [blame] | 502 | pid = vfork(); |
| 503 | if (pid < 0) |
Denys Vlasenko | 800ec8f | 2012-03-16 15:11:34 +0100 | [diff] [blame] | 504 | perror_msg_and_die("vfork"); |
| 505 | |
Denys Vlasenko | 519af5a | 2013-07-02 11:31:24 +0200 | [diff] [blame] | 506 | if (pid == 0) { |
Denys Vlasenko | 800ec8f | 2012-03-16 15:11:34 +0100 | [diff] [blame] | 507 | /* child */ |
| 508 | close(fds[1]); |
| 509 | if (fds[0] != 0) { |
| 510 | if (dup2(fds[0], 0)) |
| 511 | perror_msg_and_die("dup2"); |
| 512 | close(fds[0]); |
| 513 | } |
| 514 | execl(_PATH_BSHELL, "sh", "-c", command, NULL); |
| 515 | perror_msg_and_die("Can't execute '%s'", _PATH_BSHELL); |
| 516 | } |
| 517 | |
| 518 | /* parent */ |
Denys Vlasenko | 519af5a | 2013-07-02 11:31:24 +0200 | [diff] [blame] | 519 | popen_pid = pid; |
Denys Vlasenko | 800ec8f | 2012-03-16 15:11:34 +0100 | [diff] [blame] | 520 | close(fds[0]); |
| 521 | swap_uid(); |
| 522 | fp = fdopen(fds[1], "w"); |
| 523 | if (!fp) |
| 524 | die_out_of_memory(); |
| 525 | return fp; |
| 526 | } |
| 527 | |
Denys Vlasenko | 2e856a1 | 2012-03-12 23:02:26 +0100 | [diff] [blame] | 528 | void |
| 529 | tprintf(const char *fmt, ...) |
| 530 | { |
| 531 | va_list args; |
| 532 | |
| 533 | va_start(args, fmt); |
Denys Vlasenko | 6764f8f | 2012-03-22 09:56:20 +0100 | [diff] [blame] | 534 | if (current_tcp) { |
Denys Vlasenko | 6e4f3c1 | 2012-04-16 18:22:19 +0200 | [diff] [blame] | 535 | int n = strace_vfprintf(current_tcp->outf, fmt, args); |
Denys Vlasenko | 2e856a1 | 2012-03-12 23:02:26 +0100 | [diff] [blame] | 536 | if (n < 0) { |
Denys Vlasenko | 6764f8f | 2012-03-22 09:56:20 +0100 | [diff] [blame] | 537 | if (current_tcp->outf != stderr) |
Dmitry V. Levin | 9a71bcd | 2012-09-17 23:20:54 +0000 | [diff] [blame] | 538 | perror_msg("%s", outfname); |
Denys Vlasenko | 2e856a1 | 2012-03-12 23:02:26 +0100 | [diff] [blame] | 539 | } else |
Denys Vlasenko | 6764f8f | 2012-03-22 09:56:20 +0100 | [diff] [blame] | 540 | current_tcp->curcol += n; |
Denys Vlasenko | 2e856a1 | 2012-03-12 23:02:26 +0100 | [diff] [blame] | 541 | } |
| 542 | va_end(args); |
| 543 | } |
| 544 | |
Dmitry V. Levin | d354130 | 2014-02-26 00:01:00 +0000 | [diff] [blame] | 545 | #ifndef HAVE_FPUTS_UNLOCKED |
| 546 | # define fputs_unlocked fputs |
| 547 | #endif |
| 548 | |
Denys Vlasenko | 2e856a1 | 2012-03-12 23:02:26 +0100 | [diff] [blame] | 549 | void |
| 550 | tprints(const char *str) |
| 551 | { |
Denys Vlasenko | 6764f8f | 2012-03-22 09:56:20 +0100 | [diff] [blame] | 552 | if (current_tcp) { |
Denys Vlasenko | 142aee0 | 2012-04-16 18:10:15 +0200 | [diff] [blame] | 553 | int n = fputs_unlocked(str, current_tcp->outf); |
Denys Vlasenko | 2e856a1 | 2012-03-12 23:02:26 +0100 | [diff] [blame] | 554 | if (n >= 0) { |
Denys Vlasenko | 6764f8f | 2012-03-22 09:56:20 +0100 | [diff] [blame] | 555 | current_tcp->curcol += strlen(str); |
Denys Vlasenko | 2e856a1 | 2012-03-12 23:02:26 +0100 | [diff] [blame] | 556 | return; |
| 557 | } |
Denys Vlasenko | 6764f8f | 2012-03-22 09:56:20 +0100 | [diff] [blame] | 558 | if (current_tcp->outf != stderr) |
Dmitry V. Levin | 9a71bcd | 2012-09-17 23:20:54 +0000 | [diff] [blame] | 559 | perror_msg("%s", outfname); |
Denys Vlasenko | 2e856a1 | 2012-03-12 23:02:26 +0100 | [diff] [blame] | 560 | } |
| 561 | } |
| 562 | |
| 563 | void |
Denys Vlasenko | 7de265d | 2012-03-13 11:44:31 +0100 | [diff] [blame] | 564 | line_ended(void) |
| 565 | { |
Denys Vlasenko | 6764f8f | 2012-03-22 09:56:20 +0100 | [diff] [blame] | 566 | if (current_tcp) { |
| 567 | current_tcp->curcol = 0; |
| 568 | fflush(current_tcp->outf); |
| 569 | } |
| 570 | if (printing_tcp) { |
| 571 | printing_tcp->curcol = 0; |
| 572 | printing_tcp = NULL; |
| 573 | } |
Denys Vlasenko | 7de265d | 2012-03-13 11:44:31 +0100 | [diff] [blame] | 574 | } |
| 575 | |
| 576 | void |
Denys Vlasenko | 2e856a1 | 2012-03-12 23:02:26 +0100 | [diff] [blame] | 577 | printleader(struct tcb *tcp) |
| 578 | { |
Denys Vlasenko | 7de265d | 2012-03-13 11:44:31 +0100 | [diff] [blame] | 579 | /* If -ff, "previous tcb we printed" is always the same as current, |
| 580 | * because we have per-tcb output files. |
| 581 | */ |
| 582 | if (followfork >= 2) |
| 583 | printing_tcp = tcp; |
| 584 | |
Denys Vlasenko | 2e856a1 | 2012-03-12 23:02:26 +0100 | [diff] [blame] | 585 | if (printing_tcp) { |
Denys Vlasenko | 6764f8f | 2012-03-22 09:56:20 +0100 | [diff] [blame] | 586 | current_tcp = printing_tcp; |
Denys Vlasenko | 7de265d | 2012-03-13 11:44:31 +0100 | [diff] [blame] | 587 | if (printing_tcp->curcol != 0 && (followfork < 2 || printing_tcp == tcp)) { |
| 588 | /* |
| 589 | * case 1: we have a shared log (i.e. not -ff), and last line |
| 590 | * wasn't finished (same or different tcb, doesn't matter). |
| 591 | * case 2: split log, we are the same tcb, but our last line |
| 592 | * didn't finish ("SIGKILL nuked us after syscall entry" etc). |
| 593 | */ |
Denys Vlasenko | 2e856a1 | 2012-03-12 23:02:26 +0100 | [diff] [blame] | 594 | tprints(" <unfinished ...>\n"); |
Denys Vlasenko | 7de265d | 2012-03-13 11:44:31 +0100 | [diff] [blame] | 595 | printing_tcp->curcol = 0; |
Denys Vlasenko | 2e856a1 | 2012-03-12 23:02:26 +0100 | [diff] [blame] | 596 | } |
| 597 | } |
| 598 | |
| 599 | printing_tcp = tcp; |
Denys Vlasenko | 6764f8f | 2012-03-22 09:56:20 +0100 | [diff] [blame] | 600 | current_tcp = tcp; |
| 601 | current_tcp->curcol = 0; |
Denys Vlasenko | 2e856a1 | 2012-03-12 23:02:26 +0100 | [diff] [blame] | 602 | |
| 603 | if (print_pid_pfx) |
| 604 | tprintf("%-5d ", tcp->pid); |
| 605 | else if (nprocs > 1 && !outfname) |
| 606 | tprintf("[pid %5u] ", tcp->pid); |
| 607 | |
| 608 | if (tflag) { |
| 609 | char str[sizeof("HH:MM:SS")]; |
| 610 | struct timeval tv, dtv; |
| 611 | static struct timeval otv; |
| 612 | |
| 613 | gettimeofday(&tv, NULL); |
| 614 | if (rflag) { |
| 615 | if (otv.tv_sec == 0) |
| 616 | otv = tv; |
| 617 | tv_sub(&dtv, &tv, &otv); |
| 618 | tprintf("%6ld.%06ld ", |
| 619 | (long) dtv.tv_sec, (long) dtv.tv_usec); |
| 620 | otv = tv; |
| 621 | } |
| 622 | else if (tflag > 2) { |
| 623 | tprintf("%ld.%06ld ", |
| 624 | (long) tv.tv_sec, (long) tv.tv_usec); |
| 625 | } |
| 626 | else { |
| 627 | time_t local = tv.tv_sec; |
| 628 | strftime(str, sizeof(str), "%T", localtime(&local)); |
| 629 | if (tflag > 1) |
| 630 | tprintf("%s.%06ld ", str, (long) tv.tv_usec); |
| 631 | else |
| 632 | tprintf("%s ", str); |
| 633 | } |
| 634 | } |
| 635 | if (iflag) |
Denys Vlasenko | 5a2483b | 2013-07-01 12:49:14 +0200 | [diff] [blame] | 636 | print_pc(tcp); |
Denys Vlasenko | 2e856a1 | 2012-03-12 23:02:26 +0100 | [diff] [blame] | 637 | } |
| 638 | |
| 639 | void |
| 640 | tabto(void) |
| 641 | { |
Denys Vlasenko | 6764f8f | 2012-03-22 09:56:20 +0100 | [diff] [blame] | 642 | if (current_tcp->curcol < acolumn) |
| 643 | tprints(acolumn_spaces + current_tcp->curcol); |
Denys Vlasenko | 2e856a1 | 2012-03-12 23:02:26 +0100 | [diff] [blame] | 644 | } |
| 645 | |
Denys Vlasenko | 3db3b26 | 2012-03-16 15:15:14 +0100 | [diff] [blame] | 646 | /* Should be only called directly *after successful attach* to a tracee. |
| 647 | * Otherwise, "strace -oFILE -ff -p<nonexistant_pid>" |
| 648 | * may create bogus empty FILE.<nonexistant_pid>, and then die. |
| 649 | */ |
Denys Vlasenko | 3d5ed41 | 2011-06-22 13:17:16 +0200 | [diff] [blame] | 650 | static void |
Dmitry V. Levin | 10de62b | 2006-12-13 21:45:31 +0000 | [diff] [blame] | 651 | newoutf(struct tcb *tcp) |
| 652 | { |
Denys Vlasenko | 6764f8f | 2012-03-22 09:56:20 +0100 | [diff] [blame] | 653 | tcp->outf = shared_log; /* if not -ff mode, the same file is for all */ |
Denys Vlasenko | 3db3b26 | 2012-03-16 15:15:14 +0100 | [diff] [blame] | 654 | if (followfork >= 2) { |
Denys Vlasenko | 7a8bf06 | 2009-01-29 20:38:20 +0000 | [diff] [blame] | 655 | char name[520 + sizeof(int) * 3]; |
Denys Vlasenko | 7a8bf06 | 2009-01-29 20:38:20 +0000 | [diff] [blame] | 656 | sprintf(name, "%.512s.%u", outfname, tcp->pid); |
Denys Vlasenko | 3d5ed41 | 2011-06-22 13:17:16 +0200 | [diff] [blame] | 657 | tcp->outf = strace_fopen(name); |
Dmitry V. Levin | 10de62b | 2006-12-13 21:45:31 +0000 | [diff] [blame] | 658 | } |
Dmitry V. Levin | 10de62b | 2006-12-13 21:45:31 +0000 | [diff] [blame] | 659 | } |
| 660 | |
Denys Vlasenko | 558e512 | 2012-03-12 23:32:16 +0100 | [diff] [blame] | 661 | static void |
Denys Vlasenko | 800ec8f | 2012-03-16 15:11:34 +0100 | [diff] [blame] | 662 | expand_tcbtab(void) |
| 663 | { |
| 664 | /* Allocate some more TCBs and expand the table. |
| 665 | We don't want to relocate the TCBs because our |
| 666 | callers have pointers and it would be a pain. |
| 667 | So tcbtab is a table of pointers. Since we never |
| 668 | free the TCBs, we allocate a single chunk of many. */ |
Dmitry V. Levin | 3ed5d02 | 2014-09-10 13:46:04 +0000 | [diff] [blame] | 669 | unsigned int i = tcbtabsize; |
Dmitry V. Levin | 3e9d71f | 2015-05-25 20:41:02 +0000 | [diff] [blame] | 670 | struct tcb *newtcbs = xcalloc(tcbtabsize, sizeof(newtcbs[0])); |
| 671 | struct tcb **newtab = xreallocarray(tcbtab, tcbtabsize * 2, |
| 672 | sizeof(tcbtab[0])); |
Denys Vlasenko | 800ec8f | 2012-03-16 15:11:34 +0100 | [diff] [blame] | 673 | tcbtabsize *= 2; |
| 674 | tcbtab = newtab; |
| 675 | while (i < tcbtabsize) |
| 676 | tcbtab[i++] = newtcbs++; |
| 677 | } |
| 678 | |
| 679 | static struct tcb * |
Denys Vlasenko | 3db3b26 | 2012-03-16 15:15:14 +0100 | [diff] [blame] | 680 | alloctcb(int pid) |
Denys Vlasenko | 800ec8f | 2012-03-16 15:11:34 +0100 | [diff] [blame] | 681 | { |
Dmitry V. Levin | 3ed5d02 | 2014-09-10 13:46:04 +0000 | [diff] [blame] | 682 | unsigned int i; |
Denys Vlasenko | 800ec8f | 2012-03-16 15:11:34 +0100 | [diff] [blame] | 683 | struct tcb *tcp; |
| 684 | |
| 685 | if (nprocs == tcbtabsize) |
| 686 | expand_tcbtab(); |
| 687 | |
| 688 | for (i = 0; i < tcbtabsize; i++) { |
| 689 | tcp = tcbtab[i]; |
Denys Vlasenko | fadbf66 | 2013-06-26 14:14:29 +0200 | [diff] [blame] | 690 | if (!tcp->pid) { |
Denys Vlasenko | 800ec8f | 2012-03-16 15:11:34 +0100 | [diff] [blame] | 691 | memset(tcp, 0, sizeof(*tcp)); |
| 692 | tcp->pid = pid; |
Denys Vlasenko | 800ec8f | 2012-03-16 15:11:34 +0100 | [diff] [blame] | 693 | #if SUPPORTED_PERSONALITIES > 1 |
| 694 | tcp->currpers = current_personality; |
| 695 | #endif |
Luca Clementi | 327064b | 2013-07-23 00:11:35 -0700 | [diff] [blame] | 696 | |
| 697 | #ifdef USE_LIBUNWIND |
| 698 | if (stack_trace_enabled) |
Masatake YAMATO | 6141392 | 2014-04-16 15:33:02 +0900 | [diff] [blame] | 699 | unwind_tcb_init(tcp); |
Luca Clementi | 327064b | 2013-07-23 00:11:35 -0700 | [diff] [blame] | 700 | #endif |
| 701 | |
Denys Vlasenko | 800ec8f | 2012-03-16 15:11:34 +0100 | [diff] [blame] | 702 | nprocs++; |
| 703 | if (debug_flag) |
Dmitry V. Levin | 6c8ef05 | 2015-05-25 22:51:19 +0000 | [diff] [blame^] | 704 | error_msg("new tcb for pid %d, active tcbs:%d", |
| 705 | tcp->pid, nprocs); |
Denys Vlasenko | 800ec8f | 2012-03-16 15:11:34 +0100 | [diff] [blame] | 706 | return tcp; |
| 707 | } |
| 708 | } |
Denys Vlasenko | 3db3b26 | 2012-03-16 15:15:14 +0100 | [diff] [blame] | 709 | error_msg_and_die("bug in alloctcb"); |
Denys Vlasenko | 800ec8f | 2012-03-16 15:11:34 +0100 | [diff] [blame] | 710 | } |
Denys Vlasenko | 800ec8f | 2012-03-16 15:11:34 +0100 | [diff] [blame] | 711 | |
| 712 | static void |
| 713 | droptcb(struct tcb *tcp) |
| 714 | { |
| 715 | if (tcp->pid == 0) |
| 716 | return; |
| 717 | |
Masatake YAMATO | 2b09df9 | 2014-04-16 15:33:08 +0900 | [diff] [blame] | 718 | #ifdef USE_LIBUNWIND |
| 719 | if (stack_trace_enabled) { |
| 720 | unwind_tcb_fin(tcp); |
| 721 | } |
| 722 | #endif |
| 723 | |
Denys Vlasenko | 800ec8f | 2012-03-16 15:11:34 +0100 | [diff] [blame] | 724 | nprocs--; |
| 725 | if (debug_flag) |
Dmitry V. Levin | 6c8ef05 | 2015-05-25 22:51:19 +0000 | [diff] [blame^] | 726 | error_msg("dropped tcb for pid %d, %d remain", |
| 727 | tcp->pid, nprocs); |
Denys Vlasenko | 800ec8f | 2012-03-16 15:11:34 +0100 | [diff] [blame] | 728 | |
| 729 | if (tcp->outf) { |
Denys Vlasenko | 8511f2a | 2012-03-22 09:35:51 +0100 | [diff] [blame] | 730 | if (followfork >= 2) { |
Denys Vlasenko | 800ec8f | 2012-03-16 15:11:34 +0100 | [diff] [blame] | 731 | if (tcp->curcol != 0) |
| 732 | fprintf(tcp->outf, " <detached ...>\n"); |
| 733 | fclose(tcp->outf); |
Denys Vlasenko | 800ec8f | 2012-03-16 15:11:34 +0100 | [diff] [blame] | 734 | } else { |
| 735 | if (printing_tcp == tcp && tcp->curcol != 0) |
| 736 | fprintf(tcp->outf, " <detached ...>\n"); |
| 737 | fflush(tcp->outf); |
| 738 | } |
| 739 | } |
| 740 | |
Denys Vlasenko | 6764f8f | 2012-03-22 09:56:20 +0100 | [diff] [blame] | 741 | if (current_tcp == tcp) |
| 742 | current_tcp = NULL; |
Denys Vlasenko | 800ec8f | 2012-03-16 15:11:34 +0100 | [diff] [blame] | 743 | if (printing_tcp == tcp) |
| 744 | printing_tcp = NULL; |
| 745 | |
| 746 | memset(tcp, 0, sizeof(*tcp)); |
| 747 | } |
| 748 | |
Denys Vlasenko | f1669e7 | 2013-06-18 18:09:39 +0200 | [diff] [blame] | 749 | /* Detach traced process. |
Denys Vlasenko | 800ec8f | 2012-03-16 15:11:34 +0100 | [diff] [blame] | 750 | * Never call DETACH twice on the same process as both unattached and |
| 751 | * attached-unstopped processes give the same ESRCH. For unattached process we |
| 752 | * would SIGSTOP it and wait for its SIGSTOP notification forever. |
| 753 | */ |
Denys Vlasenko | 4a9ba98 | 2013-06-20 11:20:23 +0200 | [diff] [blame] | 754 | static void |
Denys Vlasenko | 800ec8f | 2012-03-16 15:11:34 +0100 | [diff] [blame] | 755 | detach(struct tcb *tcp) |
| 756 | { |
| 757 | int error; |
Denys Vlasenko | e2567d5 | 2013-06-21 16:11:10 +0200 | [diff] [blame] | 758 | int status; |
Denys Vlasenko | 800ec8f | 2012-03-16 15:11:34 +0100 | [diff] [blame] | 759 | |
Denys Vlasenko | 800ec8f | 2012-03-16 15:11:34 +0100 | [diff] [blame] | 760 | /* |
| 761 | * Linux wrongly insists the child be stopped |
| 762 | * before detaching. Arghh. We go through hoops |
| 763 | * to make a clean break of things. |
| 764 | */ |
| 765 | #if defined(SPARC) |
Denys Vlasenko | 978fbc9 | 2012-09-13 10:28:43 +0200 | [diff] [blame] | 766 | # undef PTRACE_DETACH |
| 767 | # define PTRACE_DETACH PTRACE_SUNDETACH |
Denys Vlasenko | 800ec8f | 2012-03-16 15:11:34 +0100 | [diff] [blame] | 768 | #endif |
| 769 | |
Denys Vlasenko | e2567d5 | 2013-06-21 16:11:10 +0200 | [diff] [blame] | 770 | if (!(tcp->flags & TCB_ATTACHED)) |
| 771 | goto drop; |
Denys Vlasenko | 800ec8f | 2012-03-16 15:11:34 +0100 | [diff] [blame] | 772 | |
Denys Vlasenko | e2567d5 | 2013-06-21 16:11:10 +0200 | [diff] [blame] | 773 | /* We attached but possibly didn't see the expected SIGSTOP. |
| 774 | * We must catch exactly one as otherwise the detached process |
| 775 | * would be left stopped (process state T). |
| 776 | */ |
| 777 | if (tcp->flags & TCB_IGNORE_ONE_SIGSTOP) |
| 778 | goto wait_loop; |
| 779 | |
| 780 | error = ptrace(PTRACE_DETACH, tcp->pid, 0, 0); |
| 781 | if (!error) { |
| 782 | /* On a clear day, you can see forever. */ |
| 783 | goto drop; |
| 784 | } |
| 785 | if (errno != ESRCH) { |
| 786 | /* Shouldn't happen. */ |
| 787 | perror_msg("detach: ptrace(PTRACE_DETACH,%u)", tcp->pid); |
| 788 | goto drop; |
| 789 | } |
| 790 | /* ESRCH: process is either not stopped or doesn't exist. */ |
| 791 | if (my_tkill(tcp->pid, 0) < 0) { |
| 792 | if (errno != ESRCH) |
| 793 | /* Shouldn't happen. */ |
| 794 | perror_msg("detach: tkill(%u,0)", tcp->pid); |
| 795 | /* else: process doesn't exist. */ |
| 796 | goto drop; |
| 797 | } |
| 798 | /* Process is not stopped, need to stop it. */ |
| 799 | if (use_seize) { |
| 800 | /* |
| 801 | * With SEIZE, tracee can be in group-stop already. |
| 802 | * In this state sending it another SIGSTOP does nothing. |
| 803 | * Need to use INTERRUPT. |
| 804 | * Testcase: trying to ^C a "strace -p <stopped_process>". |
| 805 | */ |
| 806 | error = ptrace(PTRACE_INTERRUPT, tcp->pid, 0, 0); |
| 807 | if (!error) |
| 808 | goto wait_loop; |
| 809 | if (errno != ESRCH) |
| 810 | perror_msg("detach: ptrace(PTRACE_INTERRUPT,%u)", tcp->pid); |
| 811 | } |
| 812 | else { |
| 813 | error = my_tkill(tcp->pid, SIGSTOP); |
| 814 | if (!error) |
| 815 | goto wait_loop; |
| 816 | if (errno != ESRCH) |
| 817 | perror_msg("detach: tkill(%u,SIGSTOP)", tcp->pid); |
| 818 | } |
| 819 | /* Either process doesn't exist, or some weird error. */ |
| 820 | goto drop; |
| 821 | |
Denys Vlasenko | a2de9da | 2013-06-21 15:50:41 +0200 | [diff] [blame] | 822 | wait_loop: |
Denys Vlasenko | e2567d5 | 2013-06-21 16:11:10 +0200 | [diff] [blame] | 823 | /* We end up here in three cases: |
| 824 | * 1. We sent PTRACE_INTERRUPT (use_seize case) |
| 825 | * 2. We sent SIGSTOP (!use_seize) |
| 826 | * 3. Attach SIGSTOP was already pending (TCB_IGNORE_ONE_SIGSTOP set) |
| 827 | */ |
| 828 | for (;;) { |
Dmitry V. Levin | 3ed5d02 | 2014-09-10 13:46:04 +0000 | [diff] [blame] | 829 | unsigned int sig; |
Denys Vlasenko | e2567d5 | 2013-06-21 16:11:10 +0200 | [diff] [blame] | 830 | if (waitpid(tcp->pid, &status, __WALL) < 0) { |
| 831 | if (errno == EINTR) |
| 832 | continue; |
| 833 | /* |
| 834 | * if (errno == ECHILD) break; |
| 835 | * ^^^ WRONG! We expect this PID to exist, |
| 836 | * and want to emit a message otherwise: |
| 837 | */ |
| 838 | perror_msg("detach: waitpid(%u)", tcp->pid); |
| 839 | break; |
| 840 | } |
| 841 | if (!WIFSTOPPED(status)) { |
| 842 | /* |
| 843 | * Tracee exited or was killed by signal. |
| 844 | * We shouldn't normally reach this place: |
| 845 | * we don't want to consume exit status. |
| 846 | * Consider "strace -p PID" being ^C-ed: |
| 847 | * we want merely to detach from PID. |
| 848 | * |
| 849 | * However, we _can_ end up here if tracee |
| 850 | * was SIGKILLed. |
| 851 | */ |
| 852 | break; |
| 853 | } |
| 854 | sig = WSTOPSIG(status); |
| 855 | if (debug_flag) |
Dmitry V. Levin | 6c8ef05 | 2015-05-25 22:51:19 +0000 | [diff] [blame^] | 856 | error_msg("detach wait: event:%d sig:%d", |
| 857 | (unsigned)status >> 16, sig); |
Denys Vlasenko | e2567d5 | 2013-06-21 16:11:10 +0200 | [diff] [blame] | 858 | if (use_seize) { |
| 859 | unsigned event = (unsigned)status >> 16; |
| 860 | if (event == PTRACE_EVENT_STOP /*&& sig == SIGTRAP*/) { |
Denys Vlasenko | fdfa47a | 2013-06-20 12:10:21 +0200 | [diff] [blame] | 861 | /* |
Denys Vlasenko | e2567d5 | 2013-06-21 16:11:10 +0200 | [diff] [blame] | 862 | * sig == SIGTRAP: PTRACE_INTERRUPT stop. |
| 863 | * sig == other: process was already stopped |
| 864 | * with this stopping sig (see tests/detach-stopped). |
| 865 | * Looks like re-injecting this sig is not necessary |
| 866 | * in DETACH for the tracee to remain stopped. |
Denys Vlasenko | fdfa47a | 2013-06-20 12:10:21 +0200 | [diff] [blame] | 867 | */ |
Denys Vlasenko | e2567d5 | 2013-06-21 16:11:10 +0200 | [diff] [blame] | 868 | sig = 0; |
Denys Vlasenko | 800ec8f | 2012-03-16 15:11:34 +0100 | [diff] [blame] | 869 | } |
Denys Vlasenko | e2567d5 | 2013-06-21 16:11:10 +0200 | [diff] [blame] | 870 | /* |
| 871 | * PTRACE_INTERRUPT is not guaranteed to produce |
| 872 | * the above event if other ptrace-stop is pending. |
| 873 | * See tests/detach-sleeping testcase: |
| 874 | * strace got SIGINT while tracee is sleeping. |
| 875 | * We sent PTRACE_INTERRUPT. |
| 876 | * We see syscall exit, not PTRACE_INTERRUPT stop. |
| 877 | * We won't get PTRACE_INTERRUPT stop |
| 878 | * if we would CONT now. Need to DETACH. |
| 879 | */ |
Denys Vlasenko | 69e27ef | 2013-06-19 15:31:39 +0200 | [diff] [blame] | 880 | if (sig == syscall_trap_sig) |
| 881 | sig = 0; |
Denys Vlasenko | e2567d5 | 2013-06-21 16:11:10 +0200 | [diff] [blame] | 882 | /* else: not sure in which case we can be here. |
| 883 | * Signal stop? Inject it while detaching. |
| 884 | */ |
| 885 | ptrace_restart(PTRACE_DETACH, tcp, sig); |
| 886 | break; |
| 887 | } |
| 888 | /* Note: this check has to be after use_seize check */ |
| 889 | /* (else, in use_seize case SIGSTOP will be mistreated) */ |
| 890 | if (sig == SIGSTOP) { |
| 891 | /* Detach, suppressing SIGSTOP */ |
| 892 | ptrace_restart(PTRACE_DETACH, tcp, 0); |
| 893 | break; |
| 894 | } |
| 895 | if (sig == syscall_trap_sig) |
| 896 | sig = 0; |
| 897 | /* Can't detach just yet, may need to wait for SIGSTOP */ |
| 898 | error = ptrace_restart(PTRACE_CONT, tcp, sig); |
| 899 | if (error < 0) { |
| 900 | /* Should not happen. |
| 901 | * Note: ptrace_restart returns 0 on ESRCH, so it's not it. |
| 902 | * ptrace_restart already emitted error message. |
| 903 | */ |
| 904 | break; |
Denys Vlasenko | 800ec8f | 2012-03-16 15:11:34 +0100 | [diff] [blame] | 905 | } |
| 906 | } |
| 907 | |
Denys Vlasenko | e2567d5 | 2013-06-21 16:11:10 +0200 | [diff] [blame] | 908 | drop: |
Denys Vlasenko | 800ec8f | 2012-03-16 15:11:34 +0100 | [diff] [blame] | 909 | if (!qflag && (tcp->flags & TCB_ATTACHED)) |
Dmitry V. Levin | 6c8ef05 | 2015-05-25 22:51:19 +0000 | [diff] [blame^] | 910 | error_msg("Process %u detached", tcp->pid); |
Denys Vlasenko | 800ec8f | 2012-03-16 15:11:34 +0100 | [diff] [blame] | 911 | |
| 912 | droptcb(tcp); |
Denys Vlasenko | 800ec8f | 2012-03-16 15:11:34 +0100 | [diff] [blame] | 913 | } |
| 914 | |
| 915 | static void |
Denys Vlasenko | 558e512 | 2012-03-12 23:32:16 +0100 | [diff] [blame] | 916 | process_opt_p_list(char *opt) |
Denys Vlasenko | e8172b7 | 2012-03-09 13:01:04 +0100 | [diff] [blame] | 917 | { |
| 918 | while (*opt) { |
| 919 | /* |
| 920 | * We accept -p PID,PID; -p "`pidof PROG`"; -p "`pgrep PROG`". |
| 921 | * pidof uses space as delim, pgrep uses newline. :( |
| 922 | */ |
| 923 | int pid; |
Denys Vlasenko | e8172b7 | 2012-03-09 13:01:04 +0100 | [diff] [blame] | 924 | char *delim = opt + strcspn(opt, ", \n\t"); |
| 925 | char c = *delim; |
| 926 | |
| 927 | *delim = '\0'; |
Dmitry V. Levin | ccee169 | 2012-03-25 21:49:48 +0000 | [diff] [blame] | 928 | pid = string_to_uint(opt); |
Denys Vlasenko | e8172b7 | 2012-03-09 13:01:04 +0100 | [diff] [blame] | 929 | if (pid <= 0) { |
Dmitry V. Levin | ccee169 | 2012-03-25 21:49:48 +0000 | [diff] [blame] | 930 | error_msg_and_die("Invalid process id: '%s'", opt); |
Denys Vlasenko | e8172b7 | 2012-03-09 13:01:04 +0100 | [diff] [blame] | 931 | } |
| 932 | if (pid == strace_tracer_pid) { |
Dmitry V. Levin | ccee169 | 2012-03-25 21:49:48 +0000 | [diff] [blame] | 933 | error_msg_and_die("I'm sorry, I can't let you do that, Dave."); |
Denys Vlasenko | e8172b7 | 2012-03-09 13:01:04 +0100 | [diff] [blame] | 934 | } |
| 935 | *delim = c; |
Denys Vlasenko | 3db3b26 | 2012-03-16 15:15:14 +0100 | [diff] [blame] | 936 | alloctcb(pid); |
Denys Vlasenko | e8172b7 | 2012-03-09 13:01:04 +0100 | [diff] [blame] | 937 | if (c == '\0') |
| 938 | break; |
| 939 | opt = delim + 1; |
| 940 | } |
| 941 | } |
| 942 | |
Roland McGrath | 0220331 | 2007-06-11 22:06:31 +0000 | [diff] [blame] | 943 | static void |
| 944 | startup_attach(void) |
| 945 | { |
Dmitry V. Levin | 3ed5d02 | 2014-09-10 13:46:04 +0000 | [diff] [blame] | 946 | unsigned int tcbi; |
Roland McGrath | 0220331 | 2007-06-11 22:06:31 +0000 | [diff] [blame] | 947 | struct tcb *tcp; |
| 948 | |
| 949 | /* |
| 950 | * Block user interruptions as we would leave the traced |
| 951 | * process stopped (process state T) if we would terminate in |
Denys Vlasenko | 2e968c0 | 2011-09-01 10:23:09 +0200 | [diff] [blame] | 952 | * between PTRACE_ATTACH and wait4() on SIGSTOP. |
Denys Vlasenko | b63256e | 2011-06-07 12:13:24 +0200 | [diff] [blame] | 953 | * We rely on cleanup() from this point on. |
Roland McGrath | 0220331 | 2007-06-11 22:06:31 +0000 | [diff] [blame] | 954 | */ |
| 955 | if (interactive) |
| 956 | sigprocmask(SIG_BLOCK, &blocked_set, NULL); |
| 957 | |
Denys Vlasenko | ecfe2f1 | 2008-12-30 20:51:30 +0000 | [diff] [blame] | 958 | if (daemonized_tracer) { |
| 959 | pid_t pid = fork(); |
| 960 | if (pid < 0) { |
Denys Vlasenko | 014ca3a | 2011-09-02 16:19:30 +0200 | [diff] [blame] | 961 | perror_msg_and_die("fork"); |
Denys Vlasenko | ecfe2f1 | 2008-12-30 20:51:30 +0000 | [diff] [blame] | 962 | } |
| 963 | if (pid) { /* parent */ |
| 964 | /* |
Denys Vlasenko | 7542276 | 2011-05-27 14:36:01 +0200 | [diff] [blame] | 965 | * Wait for grandchild to attach to straced process |
| 966 | * (grandparent). Grandchild SIGKILLs us after it attached. |
| 967 | * Grandparent's wait() is unblocked by our death, |
Denys Vlasenko | ecfe2f1 | 2008-12-30 20:51:30 +0000 | [diff] [blame] | 968 | * it proceeds to exec the straced program. |
| 969 | */ |
| 970 | pause(); |
| 971 | _exit(0); /* paranoia */ |
| 972 | } |
Denys Vlasenko | 7542276 | 2011-05-27 14:36:01 +0200 | [diff] [blame] | 973 | /* grandchild */ |
| 974 | /* We will be the tracer process. Remember our new pid: */ |
| 975 | strace_tracer_pid = getpid(); |
Denys Vlasenko | ecfe2f1 | 2008-12-30 20:51:30 +0000 | [diff] [blame] | 976 | } |
| 977 | |
Roland McGrath | 0220331 | 2007-06-11 22:06:31 +0000 | [diff] [blame] | 978 | for (tcbi = 0; tcbi < tcbtabsize; tcbi++) { |
| 979 | tcp = tcbtab[tcbi]; |
Denys Vlasenko | 44f87ef | 2011-08-17 15:18:21 +0200 | [diff] [blame] | 980 | |
Denys Vlasenko | fadbf66 | 2013-06-26 14:14:29 +0200 | [diff] [blame] | 981 | if (!tcp->pid) |
Denys Vlasenko | 75fe85c | 2012-03-09 15:15:24 +0100 | [diff] [blame] | 982 | continue; |
| 983 | |
Denys Vlasenko | d116a73 | 2011-09-05 14:01:33 +0200 | [diff] [blame] | 984 | /* Is this a process we should attach to, but not yet attached? */ |
Denys Vlasenko | 75fe85c | 2012-03-09 15:15:24 +0100 | [diff] [blame] | 985 | if (tcp->flags & TCB_ATTACHED) |
| 986 | continue; /* no, we already attached it */ |
Denys Vlasenko | d116a73 | 2011-09-05 14:01:33 +0200 | [diff] [blame] | 987 | |
Denys Vlasenko | ecfe2f1 | 2008-12-30 20:51:30 +0000 | [diff] [blame] | 988 | if (followfork && !daemonized_tracer) { |
Denys Vlasenko | 7a8bf06 | 2009-01-29 20:38:20 +0000 | [diff] [blame] | 989 | char procdir[sizeof("/proc/%d/task") + sizeof(int) * 3]; |
Roland McGrath | 0220331 | 2007-06-11 22:06:31 +0000 | [diff] [blame] | 990 | DIR *dir; |
| 991 | |
| 992 | sprintf(procdir, "/proc/%d/task", tcp->pid); |
| 993 | dir = opendir(procdir); |
| 994 | if (dir != NULL) { |
| 995 | unsigned int ntid = 0, nerr = 0; |
Dmitry V. Levin | c8938e0 | 2013-03-20 21:40:15 +0000 | [diff] [blame] | 996 | struct_dirent *de; |
Denys Vlasenko | 381dbc2 | 2011-09-05 13:59:39 +0200 | [diff] [blame] | 997 | |
Dmitry V. Levin | c8938e0 | 2013-03-20 21:40:15 +0000 | [diff] [blame] | 998 | while ((de = read_dir(dir)) != NULL) { |
Denys Vlasenko | 381dbc2 | 2011-09-05 13:59:39 +0200 | [diff] [blame] | 999 | struct tcb *cur_tcp; |
| 1000 | int tid; |
| 1001 | |
Denys Vlasenko | 7a8bf06 | 2009-01-29 20:38:20 +0000 | [diff] [blame] | 1002 | if (de->d_fileno == 0) |
Roland McGrath | 0220331 | 2007-06-11 22:06:31 +0000 | [diff] [blame] | 1003 | continue; |
Dmitry V. Levin | ccee169 | 2012-03-25 21:49:48 +0000 | [diff] [blame] | 1004 | /* we trust /proc filesystem */ |
Roland McGrath | 0220331 | 2007-06-11 22:06:31 +0000 | [diff] [blame] | 1005 | tid = atoi(de->d_name); |
| 1006 | if (tid <= 0) |
| 1007 | continue; |
| 1008 | ++ntid; |
Denys Vlasenko | 31fa8a2 | 2012-01-29 02:01:44 +0100 | [diff] [blame] | 1009 | if (ptrace_attach_or_seize(tid) < 0) { |
Roland McGrath | 0220331 | 2007-06-11 22:06:31 +0000 | [diff] [blame] | 1010 | ++nerr; |
Denys Vlasenko | a50d2a8 | 2012-03-15 12:49:52 +0100 | [diff] [blame] | 1011 | if (debug_flag) |
Dmitry V. Levin | 6c8ef05 | 2015-05-25 22:51:19 +0000 | [diff] [blame^] | 1012 | error_msg("attach to pid %d failed", tid); |
Denys Vlasenko | 381dbc2 | 2011-09-05 13:59:39 +0200 | [diff] [blame] | 1013 | continue; |
Denys Vlasenko | f95397a | 2011-06-24 16:51:16 +0200 | [diff] [blame] | 1014 | } |
Denys Vlasenko | a50d2a8 | 2012-03-15 12:49:52 +0100 | [diff] [blame] | 1015 | if (debug_flag) |
Dmitry V. Levin | 6c8ef05 | 2015-05-25 22:51:19 +0000 | [diff] [blame^] | 1016 | error_msg("attach to pid %d succeeded", tid); |
Denys Vlasenko | 381dbc2 | 2011-09-05 13:59:39 +0200 | [diff] [blame] | 1017 | cur_tcp = tcp; |
| 1018 | if (tid != tcp->pid) |
| 1019 | cur_tcp = alloctcb(tid); |
Denys Vlasenko | 31fa8a2 | 2012-01-29 02:01:44 +0100 | [diff] [blame] | 1020 | cur_tcp->flags |= TCB_ATTACHED | TCB_STARTUP | post_attach_sigstop; |
Denys Vlasenko | 3db3b26 | 2012-03-16 15:15:14 +0100 | [diff] [blame] | 1021 | newoutf(cur_tcp); |
Roland McGrath | 0220331 | 2007-06-11 22:06:31 +0000 | [diff] [blame] | 1022 | } |
| 1023 | closedir(dir); |
Denys Vlasenko | 381dbc2 | 2011-09-05 13:59:39 +0200 | [diff] [blame] | 1024 | if (interactive) { |
| 1025 | sigprocmask(SIG_SETMASK, &empty_set, NULL); |
| 1026 | if (interrupted) |
| 1027 | goto ret; |
| 1028 | sigprocmask(SIG_BLOCK, &blocked_set, NULL); |
| 1029 | } |
Denys Vlasenko | 7a8bf06 | 2009-01-29 20:38:20 +0000 | [diff] [blame] | 1030 | ntid -= nerr; |
| 1031 | if (ntid == 0) { |
Denys Vlasenko | 905e8e0 | 2013-02-26 12:30:09 +0100 | [diff] [blame] | 1032 | perror_msg("attach: ptrace(PTRACE_ATTACH, ...)"); |
Roland McGrath | 0220331 | 2007-06-11 22:06:31 +0000 | [diff] [blame] | 1033 | droptcb(tcp); |
| 1034 | continue; |
| 1035 | } |
| 1036 | if (!qflag) { |
Dmitry V. Levin | 6c8ef05 | 2015-05-25 22:51:19 +0000 | [diff] [blame^] | 1037 | error_msg(ntid > 1 |
| 1038 | ? "Process %u attached with %u threads" |
| 1039 | : "Process %u attached", |
Denys Vlasenko | 44f87ef | 2011-08-17 15:18:21 +0200 | [diff] [blame] | 1040 | tcp->pid, ntid); |
Roland McGrath | 0220331 | 2007-06-11 22:06:31 +0000 | [diff] [blame] | 1041 | } |
Denys Vlasenko | 75fe85c | 2012-03-09 15:15:24 +0100 | [diff] [blame] | 1042 | if (!(tcp->flags & TCB_ATTACHED)) { |
Denys Vlasenko | f88837a | 2011-09-05 14:05:46 +0200 | [diff] [blame] | 1043 | /* -p PID, we failed to attach to PID itself |
| 1044 | * but did attach to some of its sibling threads. |
| 1045 | * Drop PID's tcp. |
| 1046 | */ |
| 1047 | droptcb(tcp); |
| 1048 | } |
Roland McGrath | 0220331 | 2007-06-11 22:06:31 +0000 | [diff] [blame] | 1049 | continue; |
Denys Vlasenko | 7a8bf06 | 2009-01-29 20:38:20 +0000 | [diff] [blame] | 1050 | } /* if (opendir worked) */ |
| 1051 | } /* if (-f) */ |
Denys Vlasenko | 31fa8a2 | 2012-01-29 02:01:44 +0100 | [diff] [blame] | 1052 | if (ptrace_attach_or_seize(tcp->pid) < 0) { |
Denys Vlasenko | 905e8e0 | 2013-02-26 12:30:09 +0100 | [diff] [blame] | 1053 | perror_msg("attach: ptrace(PTRACE_ATTACH, ...)"); |
Roland McGrath | 0220331 | 2007-06-11 22:06:31 +0000 | [diff] [blame] | 1054 | droptcb(tcp); |
| 1055 | continue; |
| 1056 | } |
Denys Vlasenko | 75fe85c | 2012-03-09 15:15:24 +0100 | [diff] [blame] | 1057 | tcp->flags |= TCB_ATTACHED | TCB_STARTUP | post_attach_sigstop; |
Denys Vlasenko | 3db3b26 | 2012-03-16 15:15:14 +0100 | [diff] [blame] | 1058 | newoutf(tcp); |
Denys Vlasenko | a50d2a8 | 2012-03-15 12:49:52 +0100 | [diff] [blame] | 1059 | if (debug_flag) |
Dmitry V. Levin | 6c8ef05 | 2015-05-25 22:51:19 +0000 | [diff] [blame^] | 1060 | error_msg("attach to pid %d (main) succeeded", tcp->pid); |
Denys Vlasenko | ecfe2f1 | 2008-12-30 20:51:30 +0000 | [diff] [blame] | 1061 | |
| 1062 | if (daemonized_tracer) { |
| 1063 | /* |
Denys Vlasenko | ecfe2f1 | 2008-12-30 20:51:30 +0000 | [diff] [blame] | 1064 | * Make parent go away. |
| 1065 | * Also makes grandparent's wait() unblock. |
| 1066 | */ |
| 1067 | kill(getppid(), SIGKILL); |
| 1068 | } |
| 1069 | |
Roland McGrath | 0220331 | 2007-06-11 22:06:31 +0000 | [diff] [blame] | 1070 | if (!qflag) |
Dmitry V. Levin | 6c8ef05 | 2015-05-25 22:51:19 +0000 | [diff] [blame^] | 1071 | error_msg("Process %u attached", tcp->pid); |
Denys Vlasenko | f95397a | 2011-06-24 16:51:16 +0200 | [diff] [blame] | 1072 | } /* for each tcbtab[] */ |
Roland McGrath | 0220331 | 2007-06-11 22:06:31 +0000 | [diff] [blame] | 1073 | |
Denys Vlasenko | 44f87ef | 2011-08-17 15:18:21 +0200 | [diff] [blame] | 1074 | ret: |
Roland McGrath | 0220331 | 2007-06-11 22:06:31 +0000 | [diff] [blame] | 1075 | if (interactive) |
| 1076 | sigprocmask(SIG_SETMASK, &empty_set, NULL); |
| 1077 | } |
| 1078 | |
Denys Vlasenko | f909c8d | 2013-02-19 16:30:31 +0100 | [diff] [blame] | 1079 | /* Stack-o-phobic exec helper, in the hope to work around |
| 1080 | * NOMMU + "daemonized tracer" difficulty. |
| 1081 | */ |
| 1082 | struct exec_params { |
| 1083 | int fd_to_close; |
| 1084 | uid_t run_euid; |
| 1085 | gid_t run_egid; |
| 1086 | char **argv; |
| 1087 | char *pathname; |
| 1088 | }; |
| 1089 | static struct exec_params params_for_tracee; |
Dmitry V. Levin | 5647cf8 | 2015-03-29 22:45:03 +0000 | [diff] [blame] | 1090 | |
| 1091 | static void ATTRIBUTE_NOINLINE ATTRIBUTE_NORETURN |
Denys Vlasenko | f909c8d | 2013-02-19 16:30:31 +0100 | [diff] [blame] | 1092 | exec_or_die(void) |
| 1093 | { |
| 1094 | struct exec_params *params = ¶ms_for_tracee; |
| 1095 | |
| 1096 | if (params->fd_to_close >= 0) |
| 1097 | close(params->fd_to_close); |
| 1098 | if (!daemonized_tracer && !use_seize) { |
| 1099 | if (ptrace(PTRACE_TRACEME, 0L, 0L, 0L) < 0) { |
| 1100 | perror_msg_and_die("ptrace(PTRACE_TRACEME, ...)"); |
| 1101 | } |
| 1102 | } |
| 1103 | |
| 1104 | if (username != NULL) { |
| 1105 | /* |
| 1106 | * It is important to set groups before we |
| 1107 | * lose privileges on setuid. |
| 1108 | */ |
| 1109 | if (initgroups(username, run_gid) < 0) { |
| 1110 | perror_msg_and_die("initgroups"); |
| 1111 | } |
| 1112 | if (setregid(run_gid, params->run_egid) < 0) { |
| 1113 | perror_msg_and_die("setregid"); |
| 1114 | } |
| 1115 | if (setreuid(run_uid, params->run_euid) < 0) { |
| 1116 | perror_msg_and_die("setreuid"); |
| 1117 | } |
| 1118 | } |
| 1119 | else if (geteuid() != 0) |
| 1120 | if (setreuid(run_uid, run_uid) < 0) { |
| 1121 | perror_msg_and_die("setreuid"); |
| 1122 | } |
| 1123 | |
| 1124 | if (!daemonized_tracer) { |
| 1125 | /* |
| 1126 | * Induce a ptrace stop. Tracer (our parent) |
| 1127 | * will resume us with PTRACE_SYSCALL and display |
| 1128 | * the immediately following execve syscall. |
| 1129 | * Can't do this on NOMMU systems, we are after |
| 1130 | * vfork: parent is blocked, stopping would deadlock. |
| 1131 | */ |
| 1132 | if (!NOMMU_SYSTEM) |
| 1133 | kill(getpid(), SIGSTOP); |
| 1134 | } else { |
| 1135 | alarm(3); |
| 1136 | /* we depend on SIGCHLD set to SIG_DFL by init code */ |
| 1137 | /* if it happens to be SIG_IGN'ed, wait won't block */ |
| 1138 | wait(NULL); |
| 1139 | alarm(0); |
| 1140 | } |
| 1141 | |
| 1142 | execv(params->pathname, params->argv); |
| 1143 | perror_msg_and_die("exec"); |
| 1144 | } |
| 1145 | |
Roland McGrath | 0220331 | 2007-06-11 22:06:31 +0000 | [diff] [blame] | 1146 | static void |
Denys Vlasenko | 1201426 | 2011-05-30 14:00:14 +0200 | [diff] [blame] | 1147 | startup_child(char **argv) |
Roland McGrath | 0220331 | 2007-06-11 22:06:31 +0000 | [diff] [blame] | 1148 | { |
Dmitry V. Levin | c8938e0 | 2013-03-20 21:40:15 +0000 | [diff] [blame] | 1149 | struct_stat statbuf; |
Roland McGrath | 0220331 | 2007-06-11 22:06:31 +0000 | [diff] [blame] | 1150 | const char *filename; |
Dmitry V. Levin | 1dbd39e | 2015-02-28 14:50:09 +0000 | [diff] [blame] | 1151 | size_t filename_len; |
Dmitry V. Levin | 025b358 | 2014-11-21 22:28:34 +0000 | [diff] [blame] | 1152 | char pathname[PATH_MAX]; |
Denys Vlasenko | f909c8d | 2013-02-19 16:30:31 +0100 | [diff] [blame] | 1153 | int pid; |
Roland McGrath | 0220331 | 2007-06-11 22:06:31 +0000 | [diff] [blame] | 1154 | struct tcb *tcp; |
| 1155 | |
| 1156 | filename = argv[0]; |
Dmitry V. Levin | 1dbd39e | 2015-02-28 14:50:09 +0000 | [diff] [blame] | 1157 | filename_len = strlen(filename); |
| 1158 | |
| 1159 | if (filename_len > sizeof(pathname) - 1) { |
| 1160 | errno = ENAMETOOLONG; |
| 1161 | perror_msg_and_die("exec"); |
| 1162 | } |
Roland McGrath | 0220331 | 2007-06-11 22:06:31 +0000 | [diff] [blame] | 1163 | if (strchr(filename, '/')) { |
Roland McGrath | 0220331 | 2007-06-11 22:06:31 +0000 | [diff] [blame] | 1164 | strcpy(pathname, filename); |
| 1165 | } |
| 1166 | #ifdef USE_DEBUGGING_EXEC |
| 1167 | /* |
| 1168 | * Debuggers customarily check the current directory |
| 1169 | * first regardless of the path but doing that gives |
| 1170 | * security geeks a panic attack. |
| 1171 | */ |
Dmitry V. Levin | c8938e0 | 2013-03-20 21:40:15 +0000 | [diff] [blame] | 1172 | else if (stat_file(filename, &statbuf) == 0) |
Roland McGrath | 0220331 | 2007-06-11 22:06:31 +0000 | [diff] [blame] | 1173 | strcpy(pathname, filename); |
| 1174 | #endif /* USE_DEBUGGING_EXEC */ |
| 1175 | else { |
Dmitry V. Levin | 30145dd | 2010-09-06 22:08:24 +0000 | [diff] [blame] | 1176 | const char *path; |
Dmitry V. Levin | 3ed5d02 | 2014-09-10 13:46:04 +0000 | [diff] [blame] | 1177 | size_t m, n, len; |
Roland McGrath | 0220331 | 2007-06-11 22:06:31 +0000 | [diff] [blame] | 1178 | |
| 1179 | for (path = getenv("PATH"); path && *path; path += m) { |
Denys Vlasenko | 4f3df07 | 2012-01-29 22:38:35 +0100 | [diff] [blame] | 1180 | const char *colon = strchr(path, ':'); |
| 1181 | if (colon) { |
| 1182 | n = colon - path; |
Roland McGrath | 0220331 | 2007-06-11 22:06:31 +0000 | [diff] [blame] | 1183 | m = n + 1; |
| 1184 | } |
| 1185 | else |
| 1186 | m = n = strlen(path); |
| 1187 | if (n == 0) { |
Dmitry V. Levin | 025b358 | 2014-11-21 22:28:34 +0000 | [diff] [blame] | 1188 | if (!getcwd(pathname, PATH_MAX)) |
Roland McGrath | 0220331 | 2007-06-11 22:06:31 +0000 | [diff] [blame] | 1189 | continue; |
| 1190 | len = strlen(pathname); |
| 1191 | } |
| 1192 | else if (n > sizeof pathname - 1) |
| 1193 | continue; |
| 1194 | else { |
| 1195 | strncpy(pathname, path, n); |
| 1196 | len = n; |
| 1197 | } |
| 1198 | if (len && pathname[len - 1] != '/') |
| 1199 | pathname[len++] = '/'; |
Dmitry V. Levin | 1dbd39e | 2015-02-28 14:50:09 +0000 | [diff] [blame] | 1200 | if (filename_len + len > sizeof(pathname) - 1) |
| 1201 | continue; |
Roland McGrath | 0220331 | 2007-06-11 22:06:31 +0000 | [diff] [blame] | 1202 | strcpy(pathname + len, filename); |
Dmitry V. Levin | c8938e0 | 2013-03-20 21:40:15 +0000 | [diff] [blame] | 1203 | if (stat_file(pathname, &statbuf) == 0 && |
Roland McGrath | 0220331 | 2007-06-11 22:06:31 +0000 | [diff] [blame] | 1204 | /* Accept only regular files |
| 1205 | with some execute bits set. |
| 1206 | XXX not perfect, might still fail */ |
| 1207 | S_ISREG(statbuf.st_mode) && |
| 1208 | (statbuf.st_mode & 0111)) |
| 1209 | break; |
| 1210 | } |
Dmitry V. Levin | 1dbd39e | 2015-02-28 14:50:09 +0000 | [diff] [blame] | 1211 | if (!path || !*path) |
| 1212 | pathname[0] = '\0'; |
Roland McGrath | 0220331 | 2007-06-11 22:06:31 +0000 | [diff] [blame] | 1213 | } |
Dmitry V. Levin | c8938e0 | 2013-03-20 21:40:15 +0000 | [diff] [blame] | 1214 | if (stat_file(pathname, &statbuf) < 0) { |
Denys Vlasenko | cb2ad00 | 2011-06-23 13:05:29 +0200 | [diff] [blame] | 1215 | perror_msg_and_die("Can't stat '%s'", filename); |
Roland McGrath | 0220331 | 2007-06-11 22:06:31 +0000 | [diff] [blame] | 1216 | } |
Denys Vlasenko | f909c8d | 2013-02-19 16:30:31 +0100 | [diff] [blame] | 1217 | |
| 1218 | params_for_tracee.fd_to_close = (shared_log != stderr) ? fileno(shared_log) : -1; |
| 1219 | params_for_tracee.run_euid = (statbuf.st_mode & S_ISUID) ? statbuf.st_uid : run_uid; |
| 1220 | params_for_tracee.run_egid = (statbuf.st_mode & S_ISGID) ? statbuf.st_gid : run_gid; |
| 1221 | params_for_tracee.argv = argv; |
| 1222 | /* |
| 1223 | * On NOMMU, can be safely freed only after execve in tracee. |
| 1224 | * It's hard to know when that happens, so we just leak it. |
| 1225 | */ |
Dmitry V. Levin | 3e9d71f | 2015-05-25 20:41:02 +0000 | [diff] [blame] | 1226 | params_for_tracee.pathname = NOMMU_SYSTEM ? xstrdup(pathname) : pathname; |
Denys Vlasenko | f909c8d | 2013-02-19 16:30:31 +0100 | [diff] [blame] | 1227 | |
Dmitry V. Levin | 882478a | 2013-05-13 18:43:28 +0000 | [diff] [blame] | 1228 | #if defined HAVE_PRCTL && defined PR_SET_PTRACER && defined PR_SET_PTRACER_ANY |
| 1229 | if (daemonized_tracer) |
| 1230 | prctl(PR_SET_PTRACER, PR_SET_PTRACER_ANY); |
| 1231 | #endif |
| 1232 | |
Denys Vlasenko | e8681c9 | 2013-06-26 14:27:11 +0200 | [diff] [blame] | 1233 | pid = fork(); |
Denys Vlasenko | ecfe2f1 | 2008-12-30 20:51:30 +0000 | [diff] [blame] | 1234 | if (pid < 0) { |
Denys Vlasenko | cb2ad00 | 2011-06-23 13:05:29 +0200 | [diff] [blame] | 1235 | perror_msg_and_die("fork"); |
Denys Vlasenko | ecfe2f1 | 2008-12-30 20:51:30 +0000 | [diff] [blame] | 1236 | } |
Denys Vlasenko | f909c8d | 2013-02-19 16:30:31 +0100 | [diff] [blame] | 1237 | if ((pid != 0 && daemonized_tracer) |
| 1238 | || (pid == 0 && !daemonized_tracer) |
Denys Vlasenko | ecfe2f1 | 2008-12-30 20:51:30 +0000 | [diff] [blame] | 1239 | ) { |
Denys Vlasenko | f909c8d | 2013-02-19 16:30:31 +0100 | [diff] [blame] | 1240 | /* We are to become the tracee. Two cases: |
| 1241 | * -D: we are parent |
| 1242 | * not -D: we are child |
| 1243 | */ |
| 1244 | exec_or_die(); |
Roland McGrath | 0220331 | 2007-06-11 22:06:31 +0000 | [diff] [blame] | 1245 | } |
Denys Vlasenko | ecfe2f1 | 2008-12-30 20:51:30 +0000 | [diff] [blame] | 1246 | |
Denys Vlasenko | 2e968c0 | 2011-09-01 10:23:09 +0200 | [diff] [blame] | 1247 | /* We are the tracer */ |
Denys Vlasenko | 7542276 | 2011-05-27 14:36:01 +0200 | [diff] [blame] | 1248 | |
Denys Vlasenko | 2e968c0 | 2011-09-01 10:23:09 +0200 | [diff] [blame] | 1249 | if (!daemonized_tracer) { |
Denys Vlasenko | e8681c9 | 2013-06-26 14:27:11 +0200 | [diff] [blame] | 1250 | strace_child = pid; |
Denys Vlasenko | 31fa8a2 | 2012-01-29 02:01:44 +0100 | [diff] [blame] | 1251 | if (!use_seize) { |
| 1252 | /* child did PTRACE_TRACEME, nothing to do in parent */ |
| 1253 | } else { |
Denys Vlasenko | 5c9d8f4 | 2013-02-19 15:30:12 +0100 | [diff] [blame] | 1254 | if (!NOMMU_SYSTEM) { |
Denys Vlasenko | 31fa8a2 | 2012-01-29 02:01:44 +0100 | [diff] [blame] | 1255 | /* Wait until child stopped itself */ |
| 1256 | int status; |
| 1257 | while (waitpid(pid, &status, WSTOPPED) < 0) { |
| 1258 | if (errno == EINTR) |
| 1259 | continue; |
| 1260 | perror_msg_and_die("waitpid"); |
| 1261 | } |
| 1262 | if (!WIFSTOPPED(status) || WSTOPSIG(status) != SIGSTOP) { |
Denys Vlasenko | 75fe85c | 2012-03-09 15:15:24 +0100 | [diff] [blame] | 1263 | kill_save_errno(pid, SIGKILL); |
Denys Vlasenko | 31fa8a2 | 2012-01-29 02:01:44 +0100 | [diff] [blame] | 1264 | perror_msg_and_die("Unexpected wait status %x", status); |
| 1265 | } |
| 1266 | } |
Denys Vlasenko | 5c9d8f4 | 2013-02-19 15:30:12 +0100 | [diff] [blame] | 1267 | /* Else: NOMMU case, we have no way to sync. |
Denys Vlasenko | 31fa8a2 | 2012-01-29 02:01:44 +0100 | [diff] [blame] | 1268 | * Just attach to it as soon as possible. |
| 1269 | * This means that we may miss a few first syscalls... |
| 1270 | */ |
| 1271 | |
| 1272 | if (ptrace_attach_or_seize(pid)) { |
Denys Vlasenko | 75fe85c | 2012-03-09 15:15:24 +0100 | [diff] [blame] | 1273 | kill_save_errno(pid, SIGKILL); |
Denys Vlasenko | 31fa8a2 | 2012-01-29 02:01:44 +0100 | [diff] [blame] | 1274 | perror_msg_and_die("Can't attach to %d", pid); |
| 1275 | } |
Denys Vlasenko | 5c9d8f4 | 2013-02-19 15:30:12 +0100 | [diff] [blame] | 1276 | if (!NOMMU_SYSTEM) |
Denys Vlasenko | 31fa8a2 | 2012-01-29 02:01:44 +0100 | [diff] [blame] | 1277 | kill(pid, SIGCONT); |
| 1278 | } |
Denys Vlasenko | 2e968c0 | 2011-09-01 10:23:09 +0200 | [diff] [blame] | 1279 | tcp = alloctcb(pid); |
Denys Vlasenko | 5c9d8f4 | 2013-02-19 15:30:12 +0100 | [diff] [blame] | 1280 | if (!NOMMU_SYSTEM) |
Denys Vlasenko | fadbf66 | 2013-06-26 14:14:29 +0200 | [diff] [blame] | 1281 | tcp->flags |= TCB_ATTACHED | TCB_STARTUP | post_attach_sigstop; |
Denys Vlasenko | f88837a | 2011-09-05 14:05:46 +0200 | [diff] [blame] | 1282 | else |
Denys Vlasenko | fadbf66 | 2013-06-26 14:14:29 +0200 | [diff] [blame] | 1283 | tcp->flags |= TCB_ATTACHED | TCB_STARTUP; |
Denys Vlasenko | 3db3b26 | 2012-03-16 15:15:14 +0100 | [diff] [blame] | 1284 | newoutf(tcp); |
Denys Vlasenko | 2e968c0 | 2011-09-01 10:23:09 +0200 | [diff] [blame] | 1285 | } |
| 1286 | else { |
Denys Vlasenko | 05f3251 | 2013-02-26 12:00:34 +0100 | [diff] [blame] | 1287 | /* With -D, we are *child* here, IOW: different pid. Fetch it: */ |
Denys Vlasenko | 2e968c0 | 2011-09-01 10:23:09 +0200 | [diff] [blame] | 1288 | strace_tracer_pid = getpid(); |
| 1289 | /* The tracee is our parent: */ |
| 1290 | pid = getppid(); |
Denys Vlasenko | f202502 | 2012-03-09 15:29:45 +0100 | [diff] [blame] | 1291 | alloctcb(pid); |
| 1292 | /* attaching will be done later, by startup_attach */ |
Denys Vlasenko | 3db3b26 | 2012-03-16 15:15:14 +0100 | [diff] [blame] | 1293 | /* note: we don't do newoutf(tcp) here either! */ |
Denys Vlasenko | 5c9d8f4 | 2013-02-19 15:30:12 +0100 | [diff] [blame] | 1294 | |
Denys Vlasenko | f909c8d | 2013-02-19 16:30:31 +0100 | [diff] [blame] | 1295 | /* NOMMU BUG! -D mode is active, we (child) return, |
| 1296 | * and we will scribble over parent's stack! |
| 1297 | * When parent later unpauses, it segfaults. |
| 1298 | * |
| 1299 | * We work around it |
| 1300 | * (1) by declaring exec_or_die() NORETURN, |
| 1301 | * hopefully compiler will just jump to it |
| 1302 | * instead of call (won't push anything to stack), |
| 1303 | * (2) by trying very hard in exec_or_die() |
| 1304 | * to not use any stack, |
Dmitry V. Levin | 025b358 | 2014-11-21 22:28:34 +0000 | [diff] [blame] | 1305 | * (3) having a really big (PATH_MAX) stack object |
Denys Vlasenko | f909c8d | 2013-02-19 16:30:31 +0100 | [diff] [blame] | 1306 | * in this function, which creates a "buffer" between |
| 1307 | * child's and parent's stack pointers. |
| 1308 | * This may save us if (1) and (2) failed |
| 1309 | * and compiler decided to use stack in exec_or_die() anyway |
| 1310 | * (happens on i386 because of stack parameter passing). |
Denys Vlasenko | 05f3251 | 2013-02-26 12:00:34 +0100 | [diff] [blame] | 1311 | * |
| 1312 | * A cleaner solution is to use makecontext + setcontext |
| 1313 | * to create a genuine separate stack and execute on it. |
Denys Vlasenko | f909c8d | 2013-02-19 16:30:31 +0100 | [diff] [blame] | 1314 | */ |
Denys Vlasenko | ecfe2f1 | 2008-12-30 20:51:30 +0000 | [diff] [blame] | 1315 | } |
Roland McGrath | 0220331 | 2007-06-11 22:06:31 +0000 | [diff] [blame] | 1316 | } |
| 1317 | |
Denys Vlasenko | 5c9d8f4 | 2013-02-19 15:30:12 +0100 | [diff] [blame] | 1318 | #if USE_SEIZE |
Denys Vlasenko | 31fa8a2 | 2012-01-29 02:01:44 +0100 | [diff] [blame] | 1319 | static void |
| 1320 | test_ptrace_seize(void) |
| 1321 | { |
| 1322 | int pid; |
| 1323 | |
Denys Vlasenko | 05f3251 | 2013-02-26 12:00:34 +0100 | [diff] [blame] | 1324 | /* Need fork for test. NOMMU has no forks */ |
Denys Vlasenko | 5c9d8f4 | 2013-02-19 15:30:12 +0100 | [diff] [blame] | 1325 | if (NOMMU_SYSTEM) { |
| 1326 | post_attach_sigstop = 0; /* this sets use_seize to 1 */ |
| 1327 | return; |
| 1328 | } |
| 1329 | |
Denys Vlasenko | 31fa8a2 | 2012-01-29 02:01:44 +0100 | [diff] [blame] | 1330 | pid = fork(); |
| 1331 | if (pid < 0) |
| 1332 | perror_msg_and_die("fork"); |
| 1333 | |
| 1334 | if (pid == 0) { |
| 1335 | pause(); |
| 1336 | _exit(0); |
| 1337 | } |
| 1338 | |
| 1339 | /* PTRACE_SEIZE, unlike ATTACH, doesn't force tracee to trap. After |
| 1340 | * attaching tracee continues to run unless a trap condition occurs. |
| 1341 | * PTRACE_SEIZE doesn't affect signal or group stop state. |
| 1342 | */ |
Denys Vlasenko | 26bc060 | 2012-07-10 16:36:32 +0200 | [diff] [blame] | 1343 | if (ptrace(PTRACE_SEIZE, pid, 0, 0) == 0) { |
Denys Vlasenko | 31fa8a2 | 2012-01-29 02:01:44 +0100 | [diff] [blame] | 1344 | post_attach_sigstop = 0; /* this sets use_seize to 1 */ |
Denys Vlasenko | a50d2a8 | 2012-03-15 12:49:52 +0100 | [diff] [blame] | 1345 | } else if (debug_flag) { |
Dmitry V. Levin | 6c8ef05 | 2015-05-25 22:51:19 +0000 | [diff] [blame^] | 1346 | error_msg("PTRACE_SEIZE doesn't work"); |
Denys Vlasenko | 31fa8a2 | 2012-01-29 02:01:44 +0100 | [diff] [blame] | 1347 | } |
| 1348 | |
| 1349 | kill(pid, SIGKILL); |
| 1350 | |
| 1351 | while (1) { |
| 1352 | int status, tracee_pid; |
| 1353 | |
| 1354 | errno = 0; |
| 1355 | tracee_pid = waitpid(pid, &status, 0); |
| 1356 | if (tracee_pid <= 0) { |
| 1357 | if (errno == EINTR) |
| 1358 | continue; |
| 1359 | perror_msg_and_die("%s: unexpected wait result %d", |
| 1360 | __func__, tracee_pid); |
| 1361 | } |
| 1362 | if (WIFSIGNALED(status)) { |
| 1363 | return; |
| 1364 | } |
| 1365 | error_msg_and_die("%s: unexpected wait status %x", |
| 1366 | __func__, status); |
| 1367 | } |
| 1368 | } |
Denys Vlasenko | 978fbc9 | 2012-09-13 10:28:43 +0200 | [diff] [blame] | 1369 | #else /* !USE_SEIZE */ |
| 1370 | # define test_ptrace_seize() ((void)0) |
| 1371 | #endif |
Denys Vlasenko | 31fa8a2 | 2012-01-29 02:01:44 +0100 | [diff] [blame] | 1372 | |
Denys Vlasenko | 6e0bfd1 | 2012-03-15 14:36:28 +0100 | [diff] [blame] | 1373 | static unsigned |
Denys Vlasenko | f7db5dd | 2012-01-28 01:16:02 +0100 | [diff] [blame] | 1374 | get_os_release(void) |
| 1375 | { |
Denys Vlasenko | 6e0bfd1 | 2012-03-15 14:36:28 +0100 | [diff] [blame] | 1376 | unsigned rel; |
| 1377 | const char *p; |
Denys Vlasenko | f7db5dd | 2012-01-28 01:16:02 +0100 | [diff] [blame] | 1378 | struct utsname u; |
| 1379 | if (uname(&u) < 0) |
| 1380 | perror_msg_and_die("uname"); |
Denys Vlasenko | 6e0bfd1 | 2012-03-15 14:36:28 +0100 | [diff] [blame] | 1381 | /* u.release has this form: "3.2.9[-some-garbage]" */ |
| 1382 | rel = 0; |
| 1383 | p = u.release; |
| 1384 | for (;;) { |
| 1385 | if (!(*p >= '0' && *p <= '9')) |
| 1386 | error_msg_and_die("Bad OS release string: '%s'", u.release); |
| 1387 | /* Note: this open-codes KERNEL_VERSION(): */ |
| 1388 | rel = (rel << 8) | atoi(p); |
| 1389 | if (rel >= KERNEL_VERSION(1,0,0)) |
| 1390 | break; |
| 1391 | while (*p >= '0' && *p <= '9') |
| 1392 | p++; |
Dmitry V. Levin | 0dbc80d | 2012-05-14 23:42:10 +0000 | [diff] [blame] | 1393 | if (*p != '.') { |
| 1394 | if (rel >= KERNEL_VERSION(0,1,0)) { |
| 1395 | /* "X.Y-something" means "X.Y.0" */ |
| 1396 | rel <<= 8; |
| 1397 | break; |
| 1398 | } |
Denys Vlasenko | 6e0bfd1 | 2012-03-15 14:36:28 +0100 | [diff] [blame] | 1399 | error_msg_and_die("Bad OS release string: '%s'", u.release); |
Dmitry V. Levin | 0dbc80d | 2012-05-14 23:42:10 +0000 | [diff] [blame] | 1400 | } |
Denys Vlasenko | 6e0bfd1 | 2012-03-15 14:36:28 +0100 | [diff] [blame] | 1401 | p++; |
| 1402 | } |
| 1403 | return rel; |
Denys Vlasenko | f7db5dd | 2012-01-28 01:16:02 +0100 | [diff] [blame] | 1404 | } |
| 1405 | |
Denys Vlasenko | ecc8b97 | 2012-03-12 23:05:25 +0100 | [diff] [blame] | 1406 | /* |
| 1407 | * Initialization part of main() was eating much stack (~0.5k), |
| 1408 | * which was unused after init. |
| 1409 | * We can reuse it if we move init code into a separate function. |
| 1410 | * |
| 1411 | * Don't want main() to inline us and defeat the reason |
| 1412 | * we have a separate function. |
| 1413 | */ |
Dmitry V. Levin | 5647cf8 | 2015-03-29 22:45:03 +0000 | [diff] [blame] | 1414 | static void ATTRIBUTE_NOINLINE |
Denys Vlasenko | ecc8b97 | 2012-03-12 23:05:25 +0100 | [diff] [blame] | 1415 | init(int argc, char *argv[]) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1416 | { |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1417 | struct tcb *tcp; |
Dmitry V. Levin | ccee169 | 2012-03-25 21:49:48 +0000 | [diff] [blame] | 1418 | int c, i; |
Dmitry V. Levin | 06350db | 2008-07-25 15:42:34 +0000 | [diff] [blame] | 1419 | int optF = 0; |
Dmitry V. Levin | 3ed5d02 | 2014-09-10 13:46:04 +0000 | [diff] [blame] | 1420 | unsigned int tcbi; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1421 | struct sigaction sa; |
| 1422 | |
Dmitry V. Levin | 08b623e | 2007-10-08 21:04:41 +0000 | [diff] [blame] | 1423 | progname = argv[0] ? argv[0] : "strace"; |
| 1424 | |
Denys Vlasenko | a509054 | 2012-03-15 17:27:49 +0100 | [diff] [blame] | 1425 | /* Make sure SIGCHLD has the default action so that waitpid |
| 1426 | definitely works without losing track of children. The user |
| 1427 | should not have given us a bogus state to inherit, but he might |
| 1428 | have. Arguably we should detect SIG_IGN here and pass it on |
| 1429 | to children, but probably noone really needs that. */ |
| 1430 | signal(SIGCHLD, SIG_DFL); |
| 1431 | |
Denys Vlasenko | 7542276 | 2011-05-27 14:36:01 +0200 | [diff] [blame] | 1432 | strace_tracer_pid = getpid(); |
| 1433 | |
Denys Vlasenko | 6e0bfd1 | 2012-03-15 14:36:28 +0100 | [diff] [blame] | 1434 | os_release = get_os_release(); |
Denys Vlasenko | f7db5dd | 2012-01-28 01:16:02 +0100 | [diff] [blame] | 1435 | |
Roland McGrath | ee9d435 | 2002-12-18 04:16:10 +0000 | [diff] [blame] | 1436 | /* Allocate the initial tcbtab. */ |
| 1437 | tcbtabsize = argc; /* Surely enough for all -p args. */ |
Dmitry V. Levin | 3e9d71f | 2015-05-25 20:41:02 +0000 | [diff] [blame] | 1438 | tcbtab = xcalloc(tcbtabsize, sizeof(tcbtab[0])); |
| 1439 | tcp = xcalloc(tcbtabsize, sizeof(*tcp)); |
Dmitry V. Levin | 3ed5d02 | 2014-09-10 13:46:04 +0000 | [diff] [blame] | 1440 | for (tcbi = 0; tcbi < tcbtabsize; tcbi++) |
| 1441 | tcbtab[tcbi] = tcp++; |
Roland McGrath | ee9d435 | 2002-12-18 04:16:10 +0000 | [diff] [blame] | 1442 | |
Denys Vlasenko | 6764f8f | 2012-03-22 09:56:20 +0100 | [diff] [blame] | 1443 | shared_log = stderr; |
Roland McGrath | 138c6a3 | 2006-01-12 09:50:49 +0000 | [diff] [blame] | 1444 | set_sortby(DEFAULT_SORTBY); |
| 1445 | set_personality(DEFAULT_PERSONALITY); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1446 | qualify("trace=all"); |
| 1447 | qualify("abbrev=all"); |
| 1448 | qualify("verbose=all"); |
Denys Vlasenko | 74ec14f | 2013-02-21 16:13:47 +0100 | [diff] [blame] | 1449 | #if DEFAULT_QUAL_FLAGS != (QUAL_TRACE | QUAL_ABBREV | QUAL_VERBOSE) |
| 1450 | # error Bug in DEFAULT_QUAL_FLAGS |
| 1451 | #endif |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1452 | qualify("signal=all"); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1453 | while ((c = getopt(argc, argv, |
Mark Hills | e53bf23 | 2014-05-28 17:52:40 +0100 | [diff] [blame] | 1454 | "+b:cCdfFhiqrtTvVwxyz" |
Luca Clementi | 327064b | 2013-07-23 00:11:35 -0700 | [diff] [blame] | 1455 | #ifdef USE_LIBUNWIND |
| 1456 | "k" |
| 1457 | #endif |
Denys Vlasenko | ecfe2f1 | 2008-12-30 20:51:30 +0000 | [diff] [blame] | 1458 | "D" |
Denys Vlasenko | b51581e | 2012-01-29 16:53:03 +0100 | [diff] [blame] | 1459 | "a:e:o:O:p:s:S:u:E:P:I:")) != EOF) { |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1460 | switch (c) { |
Denys Vlasenko | 61e7aad | 2012-03-15 13:44:17 +0100 | [diff] [blame] | 1461 | case 'b': |
Denys Vlasenko | 22efaf0 | 2013-02-27 12:15:19 +0100 | [diff] [blame] | 1462 | if (strcmp(optarg, "execve") != 0) |
| 1463 | error_msg_and_die("Syscall '%s' for -b isn't supported", |
| 1464 | optarg); |
Denys Vlasenko | 61e7aad | 2012-03-15 13:44:17 +0100 | [diff] [blame] | 1465 | detach_on_execve = 1; |
| 1466 | break; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1467 | case 'c': |
Dmitry V. Levin | e3a7ef5 | 2010-03-28 19:24:54 +0000 | [diff] [blame] | 1468 | if (cflag == CFLAG_BOTH) { |
Denys Vlasenko | c5ccfa4 | 2012-03-26 13:10:50 +0200 | [diff] [blame] | 1469 | error_msg_and_die("-c and -C are mutually exclusive"); |
Dmitry V. Levin | e3a7ef5 | 2010-03-28 19:24:54 +0000 | [diff] [blame] | 1470 | } |
| 1471 | cflag = CFLAG_ONLY_STATS; |
| 1472 | break; |
| 1473 | case 'C': |
| 1474 | if (cflag == CFLAG_ONLY_STATS) { |
Denys Vlasenko | c5ccfa4 | 2012-03-26 13:10:50 +0200 | [diff] [blame] | 1475 | error_msg_and_die("-c and -C are mutually exclusive"); |
Dmitry V. Levin | e3a7ef5 | 2010-03-28 19:24:54 +0000 | [diff] [blame] | 1476 | } |
| 1477 | cflag = CFLAG_BOTH; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1478 | break; |
| 1479 | case 'd': |
Denys Vlasenko | a50d2a8 | 2012-03-15 12:49:52 +0100 | [diff] [blame] | 1480 | debug_flag = 1; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1481 | break; |
Denys Vlasenko | ecfe2f1 | 2008-12-30 20:51:30 +0000 | [diff] [blame] | 1482 | case 'D': |
| 1483 | daemonized_tracer = 1; |
| 1484 | break; |
Roland McGrath | 41c4822 | 2008-07-18 00:25:10 +0000 | [diff] [blame] | 1485 | case 'F': |
Dmitry V. Levin | 06350db | 2008-07-25 15:42:34 +0000 | [diff] [blame] | 1486 | optF = 1; |
| 1487 | break; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1488 | case 'f': |
| 1489 | followfork++; |
| 1490 | break; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1491 | case 'h': |
| 1492 | usage(stdout, 0); |
| 1493 | break; |
| 1494 | case 'i': |
Denys Vlasenko | a50d2a8 | 2012-03-15 12:49:52 +0100 | [diff] [blame] | 1495 | iflag = 1; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1496 | break; |
| 1497 | case 'q': |
Daniel P. Berrange | 01997cf | 2013-05-13 11:30:55 +0100 | [diff] [blame] | 1498 | qflag++; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1499 | break; |
| 1500 | case 'r': |
Denys Vlasenko | a50d2a8 | 2012-03-15 12:49:52 +0100 | [diff] [blame] | 1501 | rflag = 1; |
| 1502 | /* fall through to tflag++ */ |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1503 | case 't': |
| 1504 | tflag++; |
| 1505 | break; |
| 1506 | case 'T': |
Denys Vlasenko | a50d2a8 | 2012-03-15 12:49:52 +0100 | [diff] [blame] | 1507 | Tflag = 1; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1508 | break; |
Mark Hills | e53bf23 | 2014-05-28 17:52:40 +0100 | [diff] [blame] | 1509 | case 'w': |
| 1510 | count_wallclock = 1; |
| 1511 | break; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1512 | case 'x': |
| 1513 | xflag++; |
| 1514 | break; |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 1515 | case 'y': |
Dmitry V. Levin | 45e7b18 | 2014-08-08 23:38:26 +0000 | [diff] [blame] | 1516 | show_fd_path++; |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 1517 | break; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1518 | case 'v': |
| 1519 | qualify("abbrev=none"); |
| 1520 | break; |
| 1521 | case 'V': |
Roland McGrath | 9c9a253 | 2003-02-20 02:56:29 +0000 | [diff] [blame] | 1522 | printf("%s -- version %s\n", PACKAGE_NAME, VERSION); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1523 | exit(0); |
| 1524 | break; |
Michal Ludvig | 17f8fb3 | 2002-11-06 13:17:21 +0000 | [diff] [blame] | 1525 | case 'z': |
| 1526 | not_failing_only = 1; |
| 1527 | break; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1528 | case 'a': |
Dmitry V. Levin | ccee169 | 2012-03-25 21:49:48 +0000 | [diff] [blame] | 1529 | acolumn = string_to_uint(optarg); |
Denys Vlasenko | 102ec49 | 2011-08-25 01:27:59 +0200 | [diff] [blame] | 1530 | if (acolumn < 0) |
Dmitry V. Levin | ccee169 | 2012-03-25 21:49:48 +0000 | [diff] [blame] | 1531 | error_opt_arg(c, optarg); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1532 | break; |
| 1533 | case 'e': |
| 1534 | qualify(optarg); |
| 1535 | break; |
| 1536 | case 'o': |
Dmitry V. Levin | 3e9d71f | 2015-05-25 20:41:02 +0000 | [diff] [blame] | 1537 | outfname = xstrdup(optarg); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1538 | break; |
| 1539 | case 'O': |
Dmitry V. Levin | ccee169 | 2012-03-25 21:49:48 +0000 | [diff] [blame] | 1540 | i = string_to_uint(optarg); |
| 1541 | if (i < 0) |
| 1542 | error_opt_arg(c, optarg); |
| 1543 | set_overhead(i); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1544 | break; |
| 1545 | case 'p': |
Denys Vlasenko | e8172b7 | 2012-03-09 13:01:04 +0100 | [diff] [blame] | 1546 | process_opt_p_list(optarg); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1547 | break; |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 1548 | case 'P': |
Denys Vlasenko | 7239dbc | 2013-03-05 15:46:34 +0100 | [diff] [blame] | 1549 | pathtrace_select(optarg); |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 1550 | break; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1551 | case 's': |
Dmitry V. Levin | ccee169 | 2012-03-25 21:49:48 +0000 | [diff] [blame] | 1552 | i = string_to_uint(optarg); |
| 1553 | if (i < 0) |
| 1554 | error_opt_arg(c, optarg); |
| 1555 | max_strlen = i; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1556 | break; |
| 1557 | case 'S': |
| 1558 | set_sortby(optarg); |
| 1559 | break; |
| 1560 | case 'u': |
Dmitry V. Levin | 3e9d71f | 2015-05-25 20:41:02 +0000 | [diff] [blame] | 1561 | username = xstrdup(optarg); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1562 | break; |
Luca Clementi | 327064b | 2013-07-23 00:11:35 -0700 | [diff] [blame] | 1563 | #ifdef USE_LIBUNWIND |
| 1564 | case 'k': |
| 1565 | stack_trace_enabled = true; |
| 1566 | break; |
| 1567 | #endif |
Roland McGrath | de6e533 | 2003-01-24 04:31:23 +0000 | [diff] [blame] | 1568 | case 'E': |
Denys Vlasenko | 1d46ba5 | 2011-08-31 14:00:02 +0200 | [diff] [blame] | 1569 | if (putenv(optarg) < 0) |
| 1570 | die_out_of_memory(); |
Roland McGrath | de6e533 | 2003-01-24 04:31:23 +0000 | [diff] [blame] | 1571 | break; |
Denys Vlasenko | b51581e | 2012-01-29 16:53:03 +0100 | [diff] [blame] | 1572 | case 'I': |
Dmitry V. Levin | ccee169 | 2012-03-25 21:49:48 +0000 | [diff] [blame] | 1573 | opt_intr = string_to_uint(optarg); |
| 1574 | if (opt_intr <= 0 || opt_intr >= NUM_INTR_OPTS) |
| 1575 | error_opt_arg(c, optarg); |
Denys Vlasenko | b51581e | 2012-01-29 16:53:03 +0100 | [diff] [blame] | 1576 | break; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1577 | default: |
| 1578 | usage(stderr, 1); |
| 1579 | break; |
| 1580 | } |
| 1581 | } |
Denys Vlasenko | 837399a | 2012-01-24 11:37:03 +0100 | [diff] [blame] | 1582 | argv += optind; |
| 1583 | /* argc -= optind; - no need, argc is not used below */ |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1584 | |
Dmitry V. Levin | 3e9d71f | 2015-05-25 20:41:02 +0000 | [diff] [blame] | 1585 | acolumn_spaces = xmalloc(acolumn + 1); |
Denys Vlasenko | 102ec49 | 2011-08-25 01:27:59 +0200 | [diff] [blame] | 1586 | memset(acolumn_spaces, ' ', acolumn); |
| 1587 | acolumn_spaces[acolumn] = '\0'; |
| 1588 | |
Denys Vlasenko | 837399a | 2012-01-24 11:37:03 +0100 | [diff] [blame] | 1589 | /* Must have PROG [ARGS], or -p PID. Not both. */ |
Denys Vlasenko | fd88338 | 2012-03-09 13:03:41 +0100 | [diff] [blame] | 1590 | if (!argv[0] == !nprocs) |
Roland McGrath | ce0d154 | 2003-11-11 21:24:23 +0000 | [diff] [blame] | 1591 | usage(stderr, 1); |
| 1592 | |
Denys Vlasenko | fd88338 | 2012-03-09 13:03:41 +0100 | [diff] [blame] | 1593 | if (nprocs != 0 && daemonized_tracer) { |
Denys Vlasenko | c5ccfa4 | 2012-03-26 13:10:50 +0200 | [diff] [blame] | 1594 | error_msg_and_die("-D and -p are mutually exclusive"); |
Wang Chao | d322a4b | 2010-08-05 14:30:11 +0800 | [diff] [blame] | 1595 | } |
| 1596 | |
Dmitry V. Levin | 06350db | 2008-07-25 15:42:34 +0000 | [diff] [blame] | 1597 | if (!followfork) |
| 1598 | followfork = optF; |
| 1599 | |
Denys Vlasenko | 3db3b26 | 2012-03-16 15:15:14 +0100 | [diff] [blame] | 1600 | if (followfork >= 2 && cflag) { |
Denys Vlasenko | c5ccfa4 | 2012-03-26 13:10:50 +0200 | [diff] [blame] | 1601 | error_msg_and_die("(-c or -C) and -ff are mutually exclusive"); |
Roland McGrath | cb9def6 | 2006-04-25 07:48:03 +0000 | [diff] [blame] | 1602 | } |
| 1603 | |
Mark Hills | e53bf23 | 2014-05-28 17:52:40 +0100 | [diff] [blame] | 1604 | if (count_wallclock && !cflag) { |
| 1605 | error_msg_and_die("-w must be given with (-c or -C)"); |
| 1606 | } |
| 1607 | |
Dmitry V. Levin | 2727aae | 2014-06-03 13:20:05 +0000 | [diff] [blame] | 1608 | if (cflag == CFLAG_ONLY_STATS) { |
| 1609 | if (iflag) |
| 1610 | error_msg("-%c has no effect with -c", 'i'); |
| 1611 | #ifdef USE_LIBUNWIND |
| 1612 | if (stack_trace_enabled) |
| 1613 | error_msg("-%c has no effect with -c", 'k'); |
| 1614 | #endif |
| 1615 | if (rflag) |
| 1616 | error_msg("-%c has no effect with -c", 'r'); |
| 1617 | if (tflag) |
| 1618 | error_msg("-%c has no effect with -c", 't'); |
| 1619 | if (Tflag) |
| 1620 | error_msg("-%c has no effect with -c", 'T'); |
| 1621 | if (show_fd_path) |
| 1622 | error_msg("-%c has no effect with -c", 'y'); |
| 1623 | } |
| 1624 | |
| 1625 | #ifdef USE_LIBUNWIND |
| 1626 | if (stack_trace_enabled) |
| 1627 | unwind_init(); |
| 1628 | #endif |
| 1629 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1630 | /* See if they want to run as another user. */ |
| 1631 | if (username != NULL) { |
| 1632 | struct passwd *pent; |
| 1633 | |
| 1634 | if (getuid() != 0 || geteuid() != 0) { |
Denys Vlasenko | cb2ad00 | 2011-06-23 13:05:29 +0200 | [diff] [blame] | 1635 | error_msg_and_die("You must be root to use the -u option"); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1636 | } |
Denys Vlasenko | 5d64581 | 2011-08-20 12:48:18 +0200 | [diff] [blame] | 1637 | pent = getpwnam(username); |
| 1638 | if (pent == NULL) { |
Denys Vlasenko | cb2ad00 | 2011-06-23 13:05:29 +0200 | [diff] [blame] | 1639 | error_msg_and_die("Cannot find user '%s'", username); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1640 | } |
| 1641 | run_uid = pent->pw_uid; |
| 1642 | run_gid = pent->pw_gid; |
| 1643 | } |
| 1644 | else { |
| 1645 | run_uid = getuid(); |
| 1646 | run_gid = getgid(); |
| 1647 | } |
| 1648 | |
Dmitry V. Levin | 04f8b48 | 2011-08-16 18:57:29 +0000 | [diff] [blame] | 1649 | if (followfork) |
Dmitry V. Levin | 23ce9e4 | 2015-02-08 13:05:53 +0000 | [diff] [blame] | 1650 | ptrace_setoptions |= PTRACE_O_TRACECLONE | |
| 1651 | PTRACE_O_TRACEFORK | |
| 1652 | PTRACE_O_TRACEVFORK; |
| 1653 | if (debug_flag) |
Dmitry V. Levin | 6c8ef05 | 2015-05-25 22:51:19 +0000 | [diff] [blame^] | 1654 | error_msg("ptrace_setoptions = %#x", ptrace_setoptions); |
Denys Vlasenko | 31fa8a2 | 2012-01-29 02:01:44 +0100 | [diff] [blame] | 1655 | test_ptrace_seize(); |
Dmitry V. Levin | 8044bc1 | 2010-12-07 12:50:49 +0000 | [diff] [blame] | 1656 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1657 | /* Check if they want to redirect the output. */ |
| 1658 | if (outfname) { |
Roland McGrath | 37b9a66 | 2003-11-07 02:26:54 +0000 | [diff] [blame] | 1659 | /* See if they want to pipe the output. */ |
| 1660 | if (outfname[0] == '|' || outfname[0] == '!') { |
| 1661 | /* |
| 1662 | * We can't do the <outfname>.PID funny business |
| 1663 | * when using popen, so prohibit it. |
| 1664 | */ |
Denys Vlasenko | 3db3b26 | 2012-03-16 15:15:14 +0100 | [diff] [blame] | 1665 | if (followfork >= 2) |
Denys Vlasenko | 7dd2338 | 2011-06-22 13:03:56 +0200 | [diff] [blame] | 1666 | error_msg_and_die("Piping the output and -ff are mutually exclusive"); |
Denys Vlasenko | 6764f8f | 2012-03-22 09:56:20 +0100 | [diff] [blame] | 1667 | shared_log = strace_popen(outfname + 1); |
Roland McGrath | 37b9a66 | 2003-11-07 02:26:54 +0000 | [diff] [blame] | 1668 | } |
Denys Vlasenko | 3db3b26 | 2012-03-16 15:15:14 +0100 | [diff] [blame] | 1669 | else if (followfork < 2) |
Denys Vlasenko | 6764f8f | 2012-03-22 09:56:20 +0100 | [diff] [blame] | 1670 | shared_log = strace_fopen(outfname); |
Denys Vlasenko | 328bf25 | 2012-03-12 23:34:13 +0100 | [diff] [blame] | 1671 | } else { |
| 1672 | /* -ff without -o FILE is the same as single -f */ |
Denys Vlasenko | 3db3b26 | 2012-03-16 15:15:14 +0100 | [diff] [blame] | 1673 | if (followfork >= 2) |
Denys Vlasenko | 328bf25 | 2012-03-12 23:34:13 +0100 | [diff] [blame] | 1674 | followfork = 1; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1675 | } |
| 1676 | |
Denys Vlasenko | cb2ad00 | 2011-06-23 13:05:29 +0200 | [diff] [blame] | 1677 | if (!outfname || outfname[0] == '|' || outfname[0] == '!') { |
Dmitry V. Levin | 3e9d71f | 2015-05-25 20:41:02 +0000 | [diff] [blame] | 1678 | char *buf = xmalloc(BUFSIZ); |
Denys Vlasenko | 6764f8f | 2012-03-22 09:56:20 +0100 | [diff] [blame] | 1679 | setvbuf(shared_log, buf, _IOLBF, BUFSIZ); |
Denys Vlasenko | cb2ad00 | 2011-06-23 13:05:29 +0200 | [diff] [blame] | 1680 | } |
Denys Vlasenko | 837399a | 2012-01-24 11:37:03 +0100 | [diff] [blame] | 1681 | if (outfname && argv[0]) { |
Denys Vlasenko | b51581e | 2012-01-29 16:53:03 +0100 | [diff] [blame] | 1682 | if (!opt_intr) |
| 1683 | opt_intr = INTR_NEVER; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1684 | qflag = 1; |
Roland McGrath | 3693105 | 2003-06-03 01:35:20 +0000 | [diff] [blame] | 1685 | } |
Denys Vlasenko | b51581e | 2012-01-29 16:53:03 +0100 | [diff] [blame] | 1686 | if (!opt_intr) |
| 1687 | opt_intr = INTR_WHILE_WAIT; |
Wang Chao | b13c0de | 2010-11-12 17:25:19 +0800 | [diff] [blame] | 1688 | |
Denys Vlasenko | b51581e | 2012-01-29 16:53:03 +0100 | [diff] [blame] | 1689 | /* argv[0] -pPID -oFILE Default interactive setting |
| 1690 | * yes 0 0 INTR_WHILE_WAIT |
| 1691 | * no 1 0 INTR_WHILE_WAIT |
| 1692 | * yes 0 1 INTR_NEVER |
| 1693 | * no 1 1 INTR_WHILE_WAIT |
Roland McGrath | 54cc1c8 | 2007-11-03 23:34:11 +0000 | [diff] [blame] | 1694 | */ |
| 1695 | |
Denys Vlasenko | 5c9d8f4 | 2013-02-19 15:30:12 +0100 | [diff] [blame] | 1696 | sigemptyset(&empty_set); |
| 1697 | sigemptyset(&blocked_set); |
| 1698 | |
Denys Vlasenko | f909c8d | 2013-02-19 16:30:31 +0100 | [diff] [blame] | 1699 | /* startup_child() must be called before the signal handlers get |
| 1700 | * installed below as they are inherited into the spawned process. |
| 1701 | * Also we do not need to be protected by them as during interruption |
| 1702 | * in the startup_child() mode we kill the spawned process anyway. |
| 1703 | */ |
Denys Vlasenko | 61e7aad | 2012-03-15 13:44:17 +0100 | [diff] [blame] | 1704 | if (argv[0]) { |
Dmitry V. Levin | 1d2435b | 2013-05-14 22:35:46 +0000 | [diff] [blame] | 1705 | if (!NOMMU_SYSTEM || daemonized_tracer) |
| 1706 | hide_log_until_execve = 1; |
Denys Vlasenko | 2a3d275 | 2013-05-14 16:07:46 +0200 | [diff] [blame] | 1707 | skip_one_b_execve = 1; |
Denys Vlasenko | 837399a | 2012-01-24 11:37:03 +0100 | [diff] [blame] | 1708 | startup_child(argv); |
Denys Vlasenko | 61e7aad | 2012-03-15 13:44:17 +0100 | [diff] [blame] | 1709 | } |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1710 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1711 | sa.sa_handler = SIG_IGN; |
| 1712 | sigemptyset(&sa.sa_mask); |
| 1713 | sa.sa_flags = 0; |
Denys Vlasenko | b51581e | 2012-01-29 16:53:03 +0100 | [diff] [blame] | 1714 | sigaction(SIGTTOU, &sa, NULL); /* SIG_IGN */ |
| 1715 | sigaction(SIGTTIN, &sa, NULL); /* SIG_IGN */ |
| 1716 | if (opt_intr != INTR_ANYWHERE) { |
| 1717 | if (opt_intr == INTR_BLOCK_TSTP_TOO) |
| 1718 | sigaction(SIGTSTP, &sa, NULL); /* SIG_IGN */ |
| 1719 | /* |
| 1720 | * In interactive mode (if no -o OUTFILE, or -p PID is used), |
| 1721 | * fatal signals are blocked while syscall stop is processed, |
| 1722 | * and acted on in between, when waiting for new syscall stops. |
| 1723 | * In non-interactive mode, signals are ignored. |
| 1724 | */ |
| 1725 | if (opt_intr == INTR_WHILE_WAIT) { |
| 1726 | sigaddset(&blocked_set, SIGHUP); |
| 1727 | sigaddset(&blocked_set, SIGINT); |
| 1728 | sigaddset(&blocked_set, SIGQUIT); |
| 1729 | sigaddset(&blocked_set, SIGPIPE); |
| 1730 | sigaddset(&blocked_set, SIGTERM); |
| 1731 | sa.sa_handler = interrupt; |
Denys Vlasenko | b51581e | 2012-01-29 16:53:03 +0100 | [diff] [blame] | 1732 | } |
| 1733 | /* SIG_IGN, or set handler for these */ |
| 1734 | sigaction(SIGHUP, &sa, NULL); |
| 1735 | sigaction(SIGINT, &sa, NULL); |
| 1736 | sigaction(SIGQUIT, &sa, NULL); |
| 1737 | sigaction(SIGPIPE, &sa, NULL); |
| 1738 | sigaction(SIGTERM, &sa, NULL); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1739 | } |
Denys Vlasenko | fd88338 | 2012-03-09 13:03:41 +0100 | [diff] [blame] | 1740 | if (nprocs != 0 || daemonized_tracer) |
Roland McGrath | 0220331 | 2007-06-11 22:06:31 +0000 | [diff] [blame] | 1741 | startup_attach(); |
Roland McGrath | 0220331 | 2007-06-11 22:06:31 +0000 | [diff] [blame] | 1742 | |
Denys Vlasenko | fd88338 | 2012-03-09 13:03:41 +0100 | [diff] [blame] | 1743 | /* Do we want pids printed in our -o OUTFILE? |
| 1744 | * -ff: no (every pid has its own file); or |
| 1745 | * -f: yes (there can be more pids in the future); or |
| 1746 | * -p PID1,PID2: yes (there are already more than one pid) |
| 1747 | */ |
| 1748 | print_pid_pfx = (outfname && followfork < 2 && (followfork == 1 || nprocs > 1)); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1749 | } |
| 1750 | |
Denys Vlasenko | eebb04d | 2012-01-27 15:24:48 +0100 | [diff] [blame] | 1751 | static struct tcb * |
Roland McGrath | 54e931f | 2010-09-14 18:59:20 -0700 | [diff] [blame] | 1752 | pid2tcb(int pid) |
| 1753 | { |
Dmitry V. Levin | 3ed5d02 | 2014-09-10 13:46:04 +0000 | [diff] [blame] | 1754 | unsigned int i; |
Roland McGrath | 54e931f | 2010-09-14 18:59:20 -0700 | [diff] [blame] | 1755 | |
| 1756 | if (pid <= 0) |
| 1757 | return NULL; |
| 1758 | |
| 1759 | for (i = 0; i < tcbtabsize; i++) { |
| 1760 | struct tcb *tcp = tcbtab[i]; |
Denys Vlasenko | fadbf66 | 2013-06-26 14:14:29 +0200 | [diff] [blame] | 1761 | if (tcp->pid == pid) |
Roland McGrath | 54e931f | 2010-09-14 18:59:20 -0700 | [diff] [blame] | 1762 | return tcp; |
| 1763 | } |
| 1764 | |
| 1765 | return NULL; |
| 1766 | } |
| 1767 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1768 | static void |
Denys Vlasenko | 1201426 | 2011-05-30 14:00:14 +0200 | [diff] [blame] | 1769 | cleanup(void) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1770 | { |
Dmitry V. Levin | 3ed5d02 | 2014-09-10 13:46:04 +0000 | [diff] [blame] | 1771 | unsigned int i; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1772 | struct tcb *tcp; |
Denys Vlasenko | 3521884 | 2012-01-29 21:17:56 +0100 | [diff] [blame] | 1773 | int fatal_sig; |
| 1774 | |
| 1775 | /* 'interrupted' is a volatile object, fetch it only once */ |
| 1776 | fatal_sig = interrupted; |
| 1777 | if (!fatal_sig) |
| 1778 | fatal_sig = SIGTERM; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1779 | |
Roland McGrath | ee9d435 | 2002-12-18 04:16:10 +0000 | [diff] [blame] | 1780 | for (i = 0; i < tcbtabsize; i++) { |
| 1781 | tcp = tcbtab[i]; |
Denys Vlasenko | fadbf66 | 2013-06-26 14:14:29 +0200 | [diff] [blame] | 1782 | if (!tcp->pid) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1783 | continue; |
Denys Vlasenko | a50d2a8 | 2012-03-15 12:49:52 +0100 | [diff] [blame] | 1784 | if (debug_flag) |
Dmitry V. Levin | 6c8ef05 | 2015-05-25 22:51:19 +0000 | [diff] [blame^] | 1785 | error_msg("cleanup: looking at pid %u", tcp->pid); |
Denys Vlasenko | fadbf66 | 2013-06-26 14:14:29 +0200 | [diff] [blame] | 1786 | if (tcp->pid == strace_child) { |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1787 | kill(tcp->pid, SIGCONT); |
Denys Vlasenko | a355925 | 2012-01-29 16:43:51 +0100 | [diff] [blame] | 1788 | kill(tcp->pid, fatal_sig); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1789 | } |
Denys Vlasenko | 7de265d | 2012-03-13 11:44:31 +0100 | [diff] [blame] | 1790 | detach(tcp); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1791 | } |
| 1792 | if (cflag) |
Denys Vlasenko | 6764f8f | 2012-03-22 09:56:20 +0100 | [diff] [blame] | 1793 | call_summary(shared_log); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1794 | } |
| 1795 | |
| 1796 | static void |
Denys Vlasenko | 1201426 | 2011-05-30 14:00:14 +0200 | [diff] [blame] | 1797 | interrupt(int sig) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1798 | { |
Denys Vlasenko | a355925 | 2012-01-29 16:43:51 +0100 | [diff] [blame] | 1799 | interrupted = sig; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1800 | } |
| 1801 | |
Denys Vlasenko | d0ffdf4 | 2013-07-01 13:02:33 +0200 | [diff] [blame] | 1802 | static void |
Dmitry V. Levin | 0f4ad30 | 2015-02-22 02:13:04 +0000 | [diff] [blame] | 1803 | print_debug_info(const int pid, int status) |
Dmitry V. Levin | 4b4ec12 | 2015-02-07 17:31:54 +0000 | [diff] [blame] | 1804 | { |
| 1805 | const unsigned int event = (unsigned int) status >> 16; |
| 1806 | char buf[sizeof("WIFEXITED,exitcode=%u") + sizeof(int)*3 /*paranoia:*/ + 16]; |
| 1807 | char evbuf[sizeof(",EVENT_VFORK_DONE (%u)") + sizeof(int)*3 /*paranoia:*/ + 16]; |
| 1808 | |
| 1809 | strcpy(buf, "???"); |
| 1810 | if (WIFSIGNALED(status)) |
| 1811 | #ifdef WCOREDUMP |
| 1812 | sprintf(buf, "WIFSIGNALED,%ssig=%s", |
| 1813 | WCOREDUMP(status) ? "core," : "", |
| 1814 | signame(WTERMSIG(status))); |
| 1815 | #else |
| 1816 | sprintf(buf, "WIFSIGNALED,sig=%s", |
| 1817 | signame(WTERMSIG(status))); |
| 1818 | #endif |
| 1819 | if (WIFEXITED(status)) |
| 1820 | sprintf(buf, "WIFEXITED,exitcode=%u", WEXITSTATUS(status)); |
| 1821 | if (WIFSTOPPED(status)) |
| 1822 | sprintf(buf, "WIFSTOPPED,sig=%s", signame(WSTOPSIG(status))); |
| 1823 | #ifdef WIFCONTINUED |
| 1824 | /* Should never be seen */ |
| 1825 | if (WIFCONTINUED(status)) |
| 1826 | strcpy(buf, "WIFCONTINUED"); |
| 1827 | #endif |
| 1828 | evbuf[0] = '\0'; |
| 1829 | if (event != 0) { |
| 1830 | static const char *const event_names[] = { |
| 1831 | [PTRACE_EVENT_CLONE] = "CLONE", |
| 1832 | [PTRACE_EVENT_FORK] = "FORK", |
| 1833 | [PTRACE_EVENT_VFORK] = "VFORK", |
| 1834 | [PTRACE_EVENT_VFORK_DONE] = "VFORK_DONE", |
| 1835 | [PTRACE_EVENT_EXEC] = "EXEC", |
| 1836 | [PTRACE_EVENT_EXIT] = "EXIT", |
| 1837 | /* [PTRACE_EVENT_STOP (=128)] would make biggish array */ |
| 1838 | }; |
| 1839 | const char *e = "??"; |
| 1840 | if (event < ARRAY_SIZE(event_names)) |
| 1841 | e = event_names[event]; |
| 1842 | else if (event == PTRACE_EVENT_STOP) |
| 1843 | e = "STOP"; |
| 1844 | sprintf(evbuf, ",EVENT_%s (%u)", e, event); |
| 1845 | } |
Dmitry V. Levin | 6c8ef05 | 2015-05-25 22:51:19 +0000 | [diff] [blame^] | 1846 | error_msg("[wait(0x%06x) = %u] %s%s", status, pid, buf, evbuf); |
Dmitry V. Levin | 4b4ec12 | 2015-02-07 17:31:54 +0000 | [diff] [blame] | 1847 | } |
| 1848 | |
| 1849 | static struct tcb * |
Dmitry V. Levin | 0f4ad30 | 2015-02-22 02:13:04 +0000 | [diff] [blame] | 1850 | maybe_allocate_tcb(const int pid, int status) |
Dmitry V. Levin | 4b4ec12 | 2015-02-07 17:31:54 +0000 | [diff] [blame] | 1851 | { |
| 1852 | if (!WIFSTOPPED(status)) { |
Dmitry V. Levin | aa80192 | 2015-02-07 18:48:55 +0000 | [diff] [blame] | 1853 | if (detach_on_execve && pid == strace_child) { |
| 1854 | /* example: strace -bexecve sh -c 'exec true' */ |
| 1855 | strace_child = 0; |
| 1856 | return NULL; |
| 1857 | } |
Dmitry V. Levin | 4b4ec12 | 2015-02-07 17:31:54 +0000 | [diff] [blame] | 1858 | /* |
| 1859 | * This can happen if we inherited an unknown child. |
Dmitry V. Levin | aa80192 | 2015-02-07 18:48:55 +0000 | [diff] [blame] | 1860 | * Example: (sleep 1 & exec strace true) |
Dmitry V. Levin | 4b4ec12 | 2015-02-07 17:31:54 +0000 | [diff] [blame] | 1861 | */ |
| 1862 | error_msg("Exit of unknown pid %u ignored", pid); |
| 1863 | return NULL; |
| 1864 | } |
| 1865 | if (followfork) { |
| 1866 | /* We assume it's a fork/vfork/clone child */ |
| 1867 | struct tcb *tcp = alloctcb(pid); |
| 1868 | tcp->flags |= TCB_ATTACHED | TCB_STARTUP | post_attach_sigstop; |
| 1869 | newoutf(tcp); |
| 1870 | if (!qflag) |
Dmitry V. Levin | 6c8ef05 | 2015-05-25 22:51:19 +0000 | [diff] [blame^] | 1871 | error_msg("Process %d attached", pid); |
Dmitry V. Levin | 4b4ec12 | 2015-02-07 17:31:54 +0000 | [diff] [blame] | 1872 | return tcp; |
| 1873 | } else { |
| 1874 | /* This can happen if a clone call used |
| 1875 | * CLONE_PTRACE itself. |
| 1876 | */ |
| 1877 | ptrace(PTRACE_CONT, pid, (char *) 0, 0); |
| 1878 | error_msg("Stop of unknown pid %u seen, PTRACE_CONTed it", pid); |
| 1879 | return NULL; |
| 1880 | } |
| 1881 | } |
| 1882 | |
| 1883 | static struct tcb * |
| 1884 | maybe_switch_tcbs(struct tcb *tcp, const int pid) |
| 1885 | { |
| 1886 | FILE *fp; |
| 1887 | struct tcb *execve_thread; |
| 1888 | long old_pid = 0; |
| 1889 | |
| 1890 | if (ptrace(PTRACE_GETEVENTMSG, pid, NULL, (long) &old_pid) < 0) |
| 1891 | return tcp; |
| 1892 | /* Avoid truncation in pid2tcb() param passing */ |
| 1893 | if (old_pid <= 0 || old_pid == pid) |
| 1894 | return tcp; |
| 1895 | if ((unsigned long) old_pid > UINT_MAX) |
| 1896 | return tcp; |
| 1897 | execve_thread = pid2tcb(old_pid); |
| 1898 | /* It should be !NULL, but I feel paranoid */ |
| 1899 | if (!execve_thread) |
| 1900 | return tcp; |
| 1901 | |
| 1902 | if (execve_thread->curcol != 0) { |
| 1903 | /* |
| 1904 | * One case we are here is -ff: |
| 1905 | * try "strace -oLOG -ff test/threaded_execve" |
| 1906 | */ |
| 1907 | fprintf(execve_thread->outf, " <pid changed to %d ...>\n", pid); |
| 1908 | /*execve_thread->curcol = 0; - no need, see code below */ |
| 1909 | } |
| 1910 | /* Swap output FILEs (needed for -ff) */ |
| 1911 | fp = execve_thread->outf; |
| 1912 | execve_thread->outf = tcp->outf; |
| 1913 | tcp->outf = fp; |
| 1914 | /* And their column positions */ |
| 1915 | execve_thread->curcol = tcp->curcol; |
| 1916 | tcp->curcol = 0; |
| 1917 | /* Drop leader, but close execve'd thread outfile (if -ff) */ |
| 1918 | droptcb(tcp); |
| 1919 | /* Switch to the thread, reusing leader's outfile and pid */ |
| 1920 | tcp = execve_thread; |
| 1921 | tcp->pid = pid; |
| 1922 | if (cflag != CFLAG_ONLY_STATS) { |
| 1923 | printleader(tcp); |
| 1924 | tprintf("+++ superseded by execve in pid %lu +++\n", old_pid); |
| 1925 | line_ended(); |
| 1926 | tcp->flags |= TCB_REPRINT; |
| 1927 | } |
| 1928 | |
| 1929 | return tcp; |
| 1930 | } |
| 1931 | |
| 1932 | static void |
Dmitry V. Levin | 0f4ad30 | 2015-02-22 02:13:04 +0000 | [diff] [blame] | 1933 | print_signalled(struct tcb *tcp, const int pid, int status) |
Dmitry V. Levin | 4b4ec12 | 2015-02-07 17:31:54 +0000 | [diff] [blame] | 1934 | { |
Dmitry V. Levin | 2cd488b | 2015-02-07 19:41:48 +0000 | [diff] [blame] | 1935 | if (pid == strace_child) { |
Dmitry V. Levin | 4b4ec12 | 2015-02-07 17:31:54 +0000 | [diff] [blame] | 1936 | exit_code = 0x100 | WTERMSIG(status); |
Dmitry V. Levin | 2cd488b | 2015-02-07 19:41:48 +0000 | [diff] [blame] | 1937 | strace_child = 0; |
| 1938 | } |
Dmitry V. Levin | 4b4ec12 | 2015-02-07 17:31:54 +0000 | [diff] [blame] | 1939 | |
| 1940 | if (cflag != CFLAG_ONLY_STATS |
| 1941 | && (qual_flags[WTERMSIG(status)] & QUAL_SIGNAL) |
| 1942 | ) { |
| 1943 | printleader(tcp); |
| 1944 | #ifdef WCOREDUMP |
| 1945 | tprintf("+++ killed by %s %s+++\n", |
| 1946 | signame(WTERMSIG(status)), |
| 1947 | WCOREDUMP(status) ? "(core dumped) " : ""); |
| 1948 | #else |
| 1949 | tprintf("+++ killed by %s +++\n", |
| 1950 | signame(WTERMSIG(status))); |
| 1951 | #endif |
| 1952 | line_ended(); |
| 1953 | } |
| 1954 | } |
| 1955 | |
| 1956 | static void |
Dmitry V. Levin | 0f4ad30 | 2015-02-22 02:13:04 +0000 | [diff] [blame] | 1957 | print_exited(struct tcb *tcp, const int pid, int status) |
Dmitry V. Levin | 4b4ec12 | 2015-02-07 17:31:54 +0000 | [diff] [blame] | 1958 | { |
Dmitry V. Levin | 2cd488b | 2015-02-07 19:41:48 +0000 | [diff] [blame] | 1959 | if (pid == strace_child) { |
Dmitry V. Levin | 4b4ec12 | 2015-02-07 17:31:54 +0000 | [diff] [blame] | 1960 | exit_code = WEXITSTATUS(status); |
Dmitry V. Levin | 2cd488b | 2015-02-07 19:41:48 +0000 | [diff] [blame] | 1961 | strace_child = 0; |
| 1962 | } |
Dmitry V. Levin | 4b4ec12 | 2015-02-07 17:31:54 +0000 | [diff] [blame] | 1963 | |
| 1964 | if (cflag != CFLAG_ONLY_STATS && |
| 1965 | qflag < 2) { |
| 1966 | printleader(tcp); |
| 1967 | tprintf("+++ exited with %d +++\n", WEXITSTATUS(status)); |
| 1968 | line_ended(); |
| 1969 | } |
| 1970 | } |
| 1971 | |
| 1972 | static void |
| 1973 | print_stopped(struct tcb *tcp, const siginfo_t *si, const unsigned int sig) |
| 1974 | { |
| 1975 | if (cflag != CFLAG_ONLY_STATS |
| 1976 | && !hide_log_until_execve |
| 1977 | && (qual_flags[sig] & QUAL_SIGNAL) |
| 1978 | ) { |
| 1979 | printleader(tcp); |
| 1980 | if (si) { |
| 1981 | tprintf("--- %s ", signame(sig)); |
| 1982 | printsiginfo(si, verbose(tcp)); |
| 1983 | tprints(" ---\n"); |
| 1984 | } else |
| 1985 | tprintf("--- stopped by %s ---\n", signame(sig)); |
| 1986 | line_ended(); |
| 1987 | } |
| 1988 | } |
| 1989 | |
Denys Vlasenko | 4bb2ffd | 2015-03-21 18:13:45 +0100 | [diff] [blame] | 1990 | static void |
Dmitry V. Levin | 4b4ec12 | 2015-02-07 17:31:54 +0000 | [diff] [blame] | 1991 | startup_tcb(struct tcb *tcp) |
| 1992 | { |
| 1993 | if (debug_flag) |
Dmitry V. Levin | 6c8ef05 | 2015-05-25 22:51:19 +0000 | [diff] [blame^] | 1994 | error_msg("pid %d has TCB_STARTUP, initializing it", tcp->pid); |
Dmitry V. Levin | 4b4ec12 | 2015-02-07 17:31:54 +0000 | [diff] [blame] | 1995 | |
| 1996 | tcp->flags &= ~TCB_STARTUP; |
| 1997 | |
Dmitry V. Levin | 23ce9e4 | 2015-02-08 13:05:53 +0000 | [diff] [blame] | 1998 | if (!use_seize) { |
Dmitry V. Levin | 4b4ec12 | 2015-02-07 17:31:54 +0000 | [diff] [blame] | 1999 | if (debug_flag) |
Dmitry V. Levin | 6c8ef05 | 2015-05-25 22:51:19 +0000 | [diff] [blame^] | 2000 | error_msg("setting opts 0x%x on pid %d", |
| 2001 | ptrace_setoptions, tcp->pid); |
Dmitry V. Levin | 4b4ec12 | 2015-02-07 17:31:54 +0000 | [diff] [blame] | 2002 | if (ptrace(PTRACE_SETOPTIONS, tcp->pid, NULL, ptrace_setoptions) < 0) { |
| 2003 | if (errno != ESRCH) { |
| 2004 | /* Should never happen, really */ |
| 2005 | perror_msg_and_die("PTRACE_SETOPTIONS"); |
| 2006 | } |
| 2007 | } |
| 2008 | } |
Dmitry V. Levin | 4b4ec12 | 2015-02-07 17:31:54 +0000 | [diff] [blame] | 2009 | } |
| 2010 | |
| 2011 | /* Returns true iff the main trace loop has to continue. */ |
| 2012 | static bool |
Denys Vlasenko | 1201426 | 2011-05-30 14:00:14 +0200 | [diff] [blame] | 2013 | trace(void) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 2014 | { |
Dmitry V. Levin | 4b4ec12 | 2015-02-07 17:31:54 +0000 | [diff] [blame] | 2015 | int pid; |
| 2016 | int wait_errno; |
| 2017 | int status; |
| 2018 | bool stopped; |
| 2019 | unsigned int sig; |
| 2020 | unsigned int event; |
| 2021 | struct tcb *tcp; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 2022 | struct rusage ru; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 2023 | |
Dmitry V. Levin | 4b4ec12 | 2015-02-07 17:31:54 +0000 | [diff] [blame] | 2024 | if (interrupted) |
| 2025 | return false; |
Denys Vlasenko | f7db5dd | 2012-01-28 01:16:02 +0100 | [diff] [blame] | 2026 | |
Denys Vlasenko | 364728d | 2015-03-21 18:40:53 +0100 | [diff] [blame] | 2027 | /* |
| 2028 | * Used to exit simply when nprocs hits zero, but in this testcase: |
| 2029 | * int main() { _exit(!!fork()); } |
| 2030 | * under strace -f, parent sometimes (rarely) manages |
| 2031 | * to exit before we see the first stop of the child, |
| 2032 | * and we are losing track of it: |
| 2033 | * 19923 clone(...) = 19924 |
| 2034 | * 19923 exit_group(1) = ? |
| 2035 | * 19923 +++ exited with 1 +++ |
| 2036 | * Exiting only when wait() returns ECHILD works better. |
| 2037 | */ |
| 2038 | if (popen_pid != 0) { |
| 2039 | /* However, if -o|logger is in use, we can't do that. |
| 2040 | * Can work around that by double-forking the logger, |
| 2041 | * but that loses the ability to wait for its completion |
| 2042 | * on exit. Oh well... |
| 2043 | */ |
| 2044 | if (nprocs == 0) |
| 2045 | return false; |
| 2046 | } |
Denys Vlasenko | 725dd42 | 2013-06-20 11:06:58 +0200 | [diff] [blame] | 2047 | |
Dmitry V. Levin | 4b4ec12 | 2015-02-07 17:31:54 +0000 | [diff] [blame] | 2048 | if (interactive) |
| 2049 | sigprocmask(SIG_SETMASK, &empty_set, NULL); |
| 2050 | pid = wait4(-1, &status, __WALL, (cflag ? &ru : NULL)); |
| 2051 | wait_errno = errno; |
| 2052 | if (interactive) |
| 2053 | sigprocmask(SIG_BLOCK, &blocked_set, NULL); |
Denys Vlasenko | 7c41ce2 | 2013-07-08 13:55:04 +0200 | [diff] [blame] | 2054 | |
Dmitry V. Levin | 4b4ec12 | 2015-02-07 17:31:54 +0000 | [diff] [blame] | 2055 | if (pid < 0) { |
| 2056 | if (wait_errno == EINTR) |
| 2057 | return true; |
| 2058 | if (nprocs == 0 && wait_errno == ECHILD) |
| 2059 | return false; |
| 2060 | /* |
| 2061 | * If nprocs > 0, ECHILD is not expected, |
| 2062 | * treat it as any other error here: |
| 2063 | */ |
| 2064 | errno = wait_errno; |
| 2065 | perror_msg_and_die("wait4(__WALL)"); |
| 2066 | } |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 2067 | |
Dmitry V. Levin | 4b4ec12 | 2015-02-07 17:31:54 +0000 | [diff] [blame] | 2068 | if (pid == popen_pid) { |
| 2069 | if (!WIFSTOPPED(status)) |
| 2070 | popen_pid = 0; |
| 2071 | return true; |
| 2072 | } |
Denys Vlasenko | 725dd42 | 2013-06-20 11:06:58 +0200 | [diff] [blame] | 2073 | |
Dmitry V. Levin | 4b4ec12 | 2015-02-07 17:31:54 +0000 | [diff] [blame] | 2074 | if (debug_flag) |
| 2075 | print_debug_info(pid, status); |
Denys Vlasenko | f7db5dd | 2012-01-28 01:16:02 +0100 | [diff] [blame] | 2076 | |
Dmitry V. Levin | 4b4ec12 | 2015-02-07 17:31:54 +0000 | [diff] [blame] | 2077 | /* Look up 'pid' in our table. */ |
| 2078 | tcp = pid2tcb(pid); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 2079 | |
Dmitry V. Levin | 4b4ec12 | 2015-02-07 17:31:54 +0000 | [diff] [blame] | 2080 | if (!tcp) { |
| 2081 | tcp = maybe_allocate_tcb(pid, status); |
| 2082 | if (!tcp) |
| 2083 | return true; |
| 2084 | } |
Denys Vlasenko | f7db5dd | 2012-01-28 01:16:02 +0100 | [diff] [blame] | 2085 | |
Dmitry V. Levin | 4b4ec12 | 2015-02-07 17:31:54 +0000 | [diff] [blame] | 2086 | if (WIFSTOPPED(status)) |
| 2087 | get_regs(pid); |
Dmitry V. Levin | e9bfff6 | 2015-02-13 22:45:33 +0000 | [diff] [blame] | 2088 | else |
| 2089 | clear_regs(); |
Denys Vlasenko | 7de265d | 2012-03-13 11:44:31 +0100 | [diff] [blame] | 2090 | |
Dmitry V. Levin | 4b4ec12 | 2015-02-07 17:31:54 +0000 | [diff] [blame] | 2091 | event = (unsigned int) status >> 16; |
Denys Vlasenko | ce7d953 | 2013-02-05 16:36:13 +0100 | [diff] [blame] | 2092 | |
Dmitry V. Levin | 4b4ec12 | 2015-02-07 17:31:54 +0000 | [diff] [blame] | 2093 | if (event == PTRACE_EVENT_EXEC) { |
| 2094 | /* |
| 2095 | * Under Linux, execve changes pid to thread leader's pid, |
Denys Vlasenko | 8511f2a | 2012-03-22 09:35:51 +0100 | [diff] [blame] | 2096 | * and we see this changed pid on EVENT_EXEC and later, |
| 2097 | * execve sysexit. Leader "disappears" without exit |
| 2098 | * notification. Let user know that, drop leader's tcb, |
| 2099 | * and fix up pid in execve thread's tcb. |
| 2100 | * Effectively, execve thread's tcb replaces leader's tcb. |
| 2101 | * |
| 2102 | * BTW, leader is 'stuck undead' (doesn't report WIFEXITED |
| 2103 | * on exit syscall) in multithreaded programs exactly |
| 2104 | * in order to handle this case. |
| 2105 | * |
| 2106 | * PTRACE_GETEVENTMSG returns old pid starting from Linux 3.0. |
| 2107 | * On 2.6 and earlier, it can return garbage. |
| 2108 | */ |
Dmitry V. Levin | 4b4ec12 | 2015-02-07 17:31:54 +0000 | [diff] [blame] | 2109 | if (os_release >= KERNEL_VERSION(3,0,0)) |
| 2110 | tcp = maybe_switch_tcbs(tcp, pid); |
Denys Vlasenko | 8511f2a | 2012-03-22 09:35:51 +0100 | [diff] [blame] | 2111 | |
Dmitry V. Levin | e690813 | 2015-02-07 17:47:53 +0000 | [diff] [blame] | 2112 | if (detach_on_execve && !skip_one_b_execve) { |
Dmitry V. Levin | 4b4ec12 | 2015-02-07 17:31:54 +0000 | [diff] [blame] | 2113 | detach(tcp); /* do "-b execve" thingy */ |
Dmitry V. Levin | e690813 | 2015-02-07 17:47:53 +0000 | [diff] [blame] | 2114 | return true; |
| 2115 | } |
Dmitry V. Levin | 4b4ec12 | 2015-02-07 17:31:54 +0000 | [diff] [blame] | 2116 | skip_one_b_execve = 0; |
| 2117 | } |
Denys Vlasenko | 8511f2a | 2012-03-22 09:35:51 +0100 | [diff] [blame] | 2118 | |
Dmitry V. Levin | 4b4ec12 | 2015-02-07 17:31:54 +0000 | [diff] [blame] | 2119 | /* Set current output file */ |
| 2120 | current_tcp = tcp; |
Denys Vlasenko | 8511f2a | 2012-03-22 09:35:51 +0100 | [diff] [blame] | 2121 | |
Dmitry V. Levin | 4b4ec12 | 2015-02-07 17:31:54 +0000 | [diff] [blame] | 2122 | if (cflag) { |
| 2123 | tv_sub(&tcp->dtime, &ru.ru_stime, &tcp->stime); |
| 2124 | tcp->stime = ru.ru_stime; |
| 2125 | } |
Denys Vlasenko | 8511f2a | 2012-03-22 09:35:51 +0100 | [diff] [blame] | 2126 | |
Dmitry V. Levin | 4b4ec12 | 2015-02-07 17:31:54 +0000 | [diff] [blame] | 2127 | if (WIFSIGNALED(status)) { |
| 2128 | print_signalled(tcp, pid, status); |
| 2129 | droptcb(tcp); |
| 2130 | return true; |
| 2131 | } |
Denys Vlasenko | 7de265d | 2012-03-13 11:44:31 +0100 | [diff] [blame] | 2132 | |
Dmitry V. Levin | 4b4ec12 | 2015-02-07 17:31:54 +0000 | [diff] [blame] | 2133 | if (WIFEXITED(status)) { |
| 2134 | print_exited(tcp, pid, status); |
| 2135 | droptcb(tcp); |
| 2136 | return true; |
| 2137 | } |
Roland McGrath | eb9e2e8 | 2009-06-02 16:49:22 -0700 | [diff] [blame] | 2138 | |
Dmitry V. Levin | 4b4ec12 | 2015-02-07 17:31:54 +0000 | [diff] [blame] | 2139 | if (!WIFSTOPPED(status)) { |
| 2140 | /* |
| 2141 | * Neither signalled, exited or stopped. |
| 2142 | * How could that be? |
| 2143 | */ |
| 2144 | error_msg("pid %u not stopped!", pid); |
| 2145 | droptcb(tcp); |
| 2146 | return true; |
| 2147 | } |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 2148 | |
Dmitry V. Levin | 4b4ec12 | 2015-02-07 17:31:54 +0000 | [diff] [blame] | 2149 | /* Is this the very first time we see this tracee stopped? */ |
| 2150 | if (tcp->flags & TCB_STARTUP) { |
Denys Vlasenko | 4bb2ffd | 2015-03-21 18:13:45 +0100 | [diff] [blame] | 2151 | startup_tcb(tcp); |
Denys Vlasenko | 8497b62 | 2015-03-21 17:51:52 +0100 | [diff] [blame] | 2152 | if (get_scno(tcp) == 1) |
| 2153 | tcp->s_prev_ent = tcp->s_ent; |
Dmitry V. Levin | 4b4ec12 | 2015-02-07 17:31:54 +0000 | [diff] [blame] | 2154 | } |
Denys Vlasenko | f88837a | 2011-09-05 14:05:46 +0200 | [diff] [blame] | 2155 | |
Dmitry V. Levin | 4b4ec12 | 2015-02-07 17:31:54 +0000 | [diff] [blame] | 2156 | sig = WSTOPSIG(status); |
Denys Vlasenko | 31fa8a2 | 2012-01-29 02:01:44 +0100 | [diff] [blame] | 2157 | |
Dmitry V. Levin | 4b4ec12 | 2015-02-07 17:31:54 +0000 | [diff] [blame] | 2158 | if (event != 0) { |
| 2159 | /* Ptrace event */ |
Denys Vlasenko | 5c9d8f4 | 2013-02-19 15:30:12 +0100 | [diff] [blame] | 2160 | #if USE_SEIZE |
Dmitry V. Levin | 4b4ec12 | 2015-02-07 17:31:54 +0000 | [diff] [blame] | 2161 | if (event == PTRACE_EVENT_STOP) { |
| 2162 | /* |
| 2163 | * PTRACE_INTERRUPT-stop or group-stop. |
| 2164 | * PTRACE_INTERRUPT-stop has sig == SIGTRAP here. |
| 2165 | */ |
| 2166 | switch (sig) { |
| 2167 | case SIGSTOP: |
| 2168 | case SIGTSTP: |
| 2169 | case SIGTTIN: |
| 2170 | case SIGTTOU: |
| 2171 | stopped = true; |
Denys Vlasenko | 31fa8a2 | 2012-01-29 02:01:44 +0100 | [diff] [blame] | 2172 | goto show_stopsig; |
Denys Vlasenko | 31fa8a2 | 2012-01-29 02:01:44 +0100 | [diff] [blame] | 2173 | } |
Dmitry V. Levin | 4b4ec12 | 2015-02-07 17:31:54 +0000 | [diff] [blame] | 2174 | } |
Denys Vlasenko | 31fa8a2 | 2012-01-29 02:01:44 +0100 | [diff] [blame] | 2175 | #endif |
Dmitry V. Levin | 4b4ec12 | 2015-02-07 17:31:54 +0000 | [diff] [blame] | 2176 | goto restart_tracee_with_sig_0; |
| 2177 | } |
Denys Vlasenko | f88837a | 2011-09-05 14:05:46 +0200 | [diff] [blame] | 2178 | |
Dmitry V. Levin | 4b4ec12 | 2015-02-07 17:31:54 +0000 | [diff] [blame] | 2179 | /* |
| 2180 | * Is this post-attach SIGSTOP? |
| 2181 | * Interestingly, the process may stop |
| 2182 | * with STOPSIG equal to some other signal |
| 2183 | * than SIGSTOP if we happend to attach |
| 2184 | * just before the process takes a signal. |
| 2185 | */ |
| 2186 | if (sig == SIGSTOP && (tcp->flags & TCB_IGNORE_ONE_SIGSTOP)) { |
| 2187 | if (debug_flag) |
Dmitry V. Levin | 6c8ef05 | 2015-05-25 22:51:19 +0000 | [diff] [blame^] | 2188 | error_msg("ignored SIGSTOP on pid %d", tcp->pid); |
Dmitry V. Levin | 4b4ec12 | 2015-02-07 17:31:54 +0000 | [diff] [blame] | 2189 | tcp->flags &= ~TCB_IGNORE_ONE_SIGSTOP; |
| 2190 | goto restart_tracee_with_sig_0; |
| 2191 | } |
| 2192 | |
| 2193 | if (sig != syscall_trap_sig) { |
| 2194 | siginfo_t si; |
| 2195 | |
| 2196 | /* |
| 2197 | * True if tracee is stopped by signal |
| 2198 | * (as opposed to "tracee received signal"). |
| 2199 | * TODO: shouldn't we check for errno == EINVAL too? |
| 2200 | * We can get ESRCH instead, you know... |
Denys Vlasenko | f88837a | 2011-09-05 14:05:46 +0200 | [diff] [blame] | 2201 | */ |
Dmitry V. Levin | 4b4ec12 | 2015-02-07 17:31:54 +0000 | [diff] [blame] | 2202 | stopped = ptrace(PTRACE_GETSIGINFO, pid, 0, (long) &si) < 0; |
Denys Vlasenko | 5c9d8f4 | 2013-02-19 15:30:12 +0100 | [diff] [blame] | 2203 | #if USE_SEIZE |
Dmitry V. Levin | 4b4ec12 | 2015-02-07 17:31:54 +0000 | [diff] [blame] | 2204 | show_stopsig: |
Denys Vlasenko | 6703816 | 2012-01-29 16:46:46 +0100 | [diff] [blame] | 2205 | #endif |
Dmitry V. Levin | 4b4ec12 | 2015-02-07 17:31:54 +0000 | [diff] [blame] | 2206 | print_stopped(tcp, stopped ? NULL : &si, sig); |
Denys Vlasenko | 31fa8a2 | 2012-01-29 02:01:44 +0100 | [diff] [blame] | 2207 | |
Dmitry V. Levin | 4b4ec12 | 2015-02-07 17:31:54 +0000 | [diff] [blame] | 2208 | if (!stopped) |
| 2209 | /* It's signal-delivery-stop. Inject the signal */ |
Denys Vlasenko | 6cda73f | 2011-09-02 16:23:53 +0200 | [diff] [blame] | 2210 | goto restart_tracee; |
Denys Vlasenko | 2ecba32 | 2011-08-21 17:35:39 +0200 | [diff] [blame] | 2211 | |
Dmitry V. Levin | 4b4ec12 | 2015-02-07 17:31:54 +0000 | [diff] [blame] | 2212 | /* It's group-stop */ |
| 2213 | if (use_seize) { |
| 2214 | /* |
| 2215 | * This ends ptrace-stop, but does *not* end group-stop. |
| 2216 | * This makes stopping signals work properly on straced process |
| 2217 | * (that is, process really stops. It used to continue to run). |
Denys Vlasenko | f202502 | 2012-03-09 15:29:45 +0100 | [diff] [blame] | 2218 | */ |
Dmitry V. Levin | 4b4ec12 | 2015-02-07 17:31:54 +0000 | [diff] [blame] | 2219 | if (ptrace_restart(PTRACE_LISTEN, tcp, 0) < 0) { |
| 2220 | /* Note: ptrace_restart emitted error message */ |
| 2221 | exit_code = 1; |
| 2222 | return false; |
| 2223 | } |
| 2224 | return true; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 2225 | } |
Dmitry V. Levin | 4b4ec12 | 2015-02-07 17:31:54 +0000 | [diff] [blame] | 2226 | /* We don't have PTRACE_LISTEN support... */ |
| 2227 | goto restart_tracee; |
| 2228 | } |
| 2229 | |
| 2230 | /* We handled quick cases, we are permitted to interrupt now. */ |
| 2231 | if (interrupted) |
| 2232 | return false; |
| 2233 | |
| 2234 | /* |
| 2235 | * This should be syscall entry or exit. |
Dmitry V. Levin | 4b4ec12 | 2015-02-07 17:31:54 +0000 | [diff] [blame] | 2236 | * Handle it. |
| 2237 | */ |
| 2238 | if (trace_syscall(tcp) < 0) { |
| 2239 | /* |
| 2240 | * ptrace() failed in trace_syscall(). |
| 2241 | * Likely a result of process disappearing mid-flight. |
| 2242 | * Observed case: exit_group() or SIGKILL terminating |
| 2243 | * all processes in thread group. |
| 2244 | * We assume that ptrace error was caused by process death. |
| 2245 | * We used to detach(tcp) here, but since we no longer |
| 2246 | * implement "detach before death" policy/hack, |
| 2247 | * we can let this process to report its death to us |
| 2248 | * normally, via WIFEXITED or WIFSIGNALED wait status. |
| 2249 | */ |
| 2250 | return true; |
| 2251 | } |
| 2252 | |
| 2253 | restart_tracee_with_sig_0: |
| 2254 | sig = 0; |
| 2255 | |
| 2256 | restart_tracee: |
| 2257 | if (ptrace_restart(PTRACE_SYSCALL, tcp, sig) < 0) { |
| 2258 | /* Note: ptrace_restart emitted error message */ |
| 2259 | exit_code = 1; |
| 2260 | return false; |
| 2261 | } |
| 2262 | |
| 2263 | return true; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 2264 | } |
Denys Vlasenko | ecc8b97 | 2012-03-12 23:05:25 +0100 | [diff] [blame] | 2265 | |
| 2266 | int |
| 2267 | main(int argc, char *argv[]) |
| 2268 | { |
| 2269 | init(argc, argv); |
| 2270 | |
Dmitry V. Levin | 4b4ec12 | 2015-02-07 17:31:54 +0000 | [diff] [blame] | 2271 | while (trace()) |
| 2272 | ; |
Denys Vlasenko | ecc8b97 | 2012-03-12 23:05:25 +0100 | [diff] [blame] | 2273 | |
| 2274 | cleanup(); |
| 2275 | fflush(NULL); |
Dmitry V. Levin | cf53436 | 2012-07-12 20:54:46 +0000 | [diff] [blame] | 2276 | if (shared_log != stderr) |
| 2277 | fclose(shared_log); |
| 2278 | if (popen_pid) { |
| 2279 | while (waitpid(popen_pid, NULL, 0) < 0 && errno == EINTR) |
| 2280 | ; |
| 2281 | } |
Denys Vlasenko | ecc8b97 | 2012-03-12 23:05:25 +0100 | [diff] [blame] | 2282 | if (exit_code > 0xff) { |
| 2283 | /* Avoid potential core file clobbering. */ |
Dmitry V. Levin | c8938e0 | 2013-03-20 21:40:15 +0000 | [diff] [blame] | 2284 | struct_rlimit rlim = {0, 0}; |
| 2285 | set_rlimit(RLIMIT_CORE, &rlim); |
Denys Vlasenko | ecc8b97 | 2012-03-12 23:05:25 +0100 | [diff] [blame] | 2286 | |
| 2287 | /* Child was killed by a signal, mimic that. */ |
| 2288 | exit_code &= 0xff; |
| 2289 | signal(exit_code, SIG_DFL); |
| 2290 | raise(exit_code); |
| 2291 | /* Paranoia - what if this signal is not fatal? |
| 2292 | Exit with 128 + signo then. */ |
| 2293 | exit_code += 128; |
| 2294 | } |
| 2295 | |
| 2296 | return exit_code; |
| 2297 | } |