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