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. |
| 29 | * |
| 30 | * $Id$ |
| 31 | */ |
| 32 | |
| 33 | #include "defs.h" |
| 34 | |
Roland McGrath | 795edb1 | 2005-02-02 04:44:57 +0000 | [diff] [blame] | 35 | #include <sys/types.h> |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 36 | #include <signal.h> |
| 37 | #include <errno.h> |
| 38 | #include <sys/param.h> |
| 39 | #include <fcntl.h> |
| 40 | #include <sys/resource.h> |
| 41 | #include <sys/wait.h> |
| 42 | #include <sys/stat.h> |
| 43 | #include <pwd.h> |
| 44 | #include <grp.h> |
| 45 | #include <string.h> |
John Hughes | 19e4998 | 2001-10-19 08:59:12 +0000 | [diff] [blame] | 46 | #include <limits.h> |
Roland McGrath | 70b0853 | 2004-04-09 00:25:21 +0000 | [diff] [blame] | 47 | #include <dirent.h> |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 48 | |
Wichert Akkerman | 7b3346b | 2001-10-09 23:47:38 +0000 | [diff] [blame] | 49 | #if defined(IA64) && defined(LINUX) |
| 50 | # include <asm/ptrace_offsets.h> |
| 51 | #endif |
| 52 | |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 53 | #ifdef USE_PROCFS |
| 54 | #include <poll.h> |
| 55 | #endif |
| 56 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 57 | #ifdef SVR4 |
| 58 | #include <sys/stropts.h> |
Wichert Akkerman | ea78f0f | 1999-11-29 15:34:02 +0000 | [diff] [blame] | 59 | #ifdef HAVE_MP_PROCFS |
John Hughes | 1d08dcf | 2001-07-10 13:48:44 +0000 | [diff] [blame] | 60 | #ifdef HAVE_SYS_UIO_H |
Wichert Akkerman | 9ce1a63 | 1999-08-29 23:15:07 +0000 | [diff] [blame] | 61 | #include <sys/uio.h> |
| 62 | #endif |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 63 | #endif |
John Hughes | 1d08dcf | 2001-07-10 13:48:44 +0000 | [diff] [blame] | 64 | #endif |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 65 | |
| 66 | int debug = 0, followfork = 0, followvfork = 0, interactive = 0; |
| 67 | int rflag = 0, tflag = 0, dtime = 0, cflag = 0; |
| 68 | int iflag = 0, xflag = 0, qflag = 0; |
| 69 | int pflag_seen = 0; |
| 70 | |
Michal Ludvig | 17f8fb3 | 2002-11-06 13:17:21 +0000 | [diff] [blame] | 71 | /* Sometimes we want to print only succeeding syscalls. */ |
| 72 | int not_failing_only = 0; |
| 73 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 74 | char *username = NULL; |
| 75 | uid_t run_uid; |
| 76 | gid_t run_gid; |
| 77 | |
| 78 | int acolumn = DEFAULT_ACOLUMN; |
| 79 | int max_strlen = DEFAULT_STRLEN; |
| 80 | char *outfname = NULL; |
| 81 | FILE *outf; |
Roland McGrath | ee9d435 | 2002-12-18 04:16:10 +0000 | [diff] [blame] | 82 | struct tcb **tcbtab; |
| 83 | unsigned int nprocs, tcbtabsize; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 84 | char *progname; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 85 | extern char **environ; |
| 86 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 87 | static int trace P((void)); |
| 88 | static void cleanup P((void)); |
| 89 | static void interrupt P((int sig)); |
| 90 | static sigset_t empty_set, blocked_set; |
| 91 | |
| 92 | #ifdef HAVE_SIG_ATOMIC_T |
| 93 | static volatile sig_atomic_t interrupted; |
| 94 | #else /* !HAVE_SIG_ATOMIC_T */ |
| 95 | #ifdef __STDC__ |
| 96 | static volatile int interrupted; |
| 97 | #else /* !__STDC__ */ |
| 98 | static int interrupted; |
| 99 | #endif /* !__STDC__ */ |
| 100 | #endif /* !HAVE_SIG_ATOMIC_T */ |
| 101 | |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 102 | #ifdef USE_PROCFS |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 103 | |
| 104 | static struct tcb *pfd2tcb P((int pfd)); |
| 105 | static void reaper P((int sig)); |
| 106 | static void rebuild_pollv P((void)); |
Roland McGrath | ee9d435 | 2002-12-18 04:16:10 +0000 | [diff] [blame] | 107 | static struct pollfd *pollv; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 108 | |
| 109 | #ifndef HAVE_POLLABLE_PROCFS |
| 110 | |
| 111 | static void proc_poll_open P((void)); |
| 112 | static void proc_poller P((int pfd)); |
| 113 | |
| 114 | struct proc_pollfd { |
| 115 | int fd; |
| 116 | int revents; |
| 117 | int pid; |
| 118 | }; |
| 119 | |
| 120 | static int poller_pid; |
| 121 | static int proc_poll_pipe[2] = { -1, -1 }; |
| 122 | |
| 123 | #endif /* !HAVE_POLLABLE_PROCFS */ |
| 124 | |
Wichert Akkerman | ea78f0f | 1999-11-29 15:34:02 +0000 | [diff] [blame] | 125 | #ifdef HAVE_MP_PROCFS |
Wichert Akkerman | 9ce1a63 | 1999-08-29 23:15:07 +0000 | [diff] [blame] | 126 | #define POLLWANT POLLWRNORM |
| 127 | #else |
| 128 | #define POLLWANT POLLPRI |
| 129 | #endif |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 130 | #endif /* USE_PROCFS */ |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 131 | |
| 132 | static void |
| 133 | usage(ofp, exitval) |
| 134 | FILE *ofp; |
| 135 | int exitval; |
| 136 | { |
| 137 | fprintf(ofp, "\ |
| 138 | usage: strace [-dffhiqrtttTvVxx] [-a column] [-e expr] ... [-o file]\n\ |
Roland McGrath | de6e533 | 2003-01-24 04:31:23 +0000 | [diff] [blame] | 139 | [-p pid] ... [-s strsize] [-u username] [-E var=val] ...\n\ |
| 140 | [command [arg ...]]\n\ |
| 141 | or: strace -c [-e expr] ... [-O overhead] [-S sortby] [-E var=val] ...\n\ |
| 142 | [command [arg ...]]\n\ |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 143 | -c -- count time, calls, and errors for each syscall and report summary\n\ |
| 144 | -f -- follow forks, -ff -- with output into separate files\n\ |
| 145 | -F -- attempt to follow vforks, -h -- print help message\n\ |
| 146 | -i -- print instruction pointer at time of syscall\n\ |
| 147 | -q -- suppress messages about attaching, detaching, etc.\n\ |
| 148 | -r -- print relative timestamp, -t -- absolute timestamp, -tt -- with usecs\n\ |
| 149 | -T -- print time spent in each syscall, -V -- print version\n\ |
| 150 | -v -- verbose mode: print unabbreviated argv, stat, termio[s], etc. args\n\ |
| 151 | -x -- print non-ascii strings in hex, -xx -- print all strings in hex\n\ |
| 152 | -a column -- alignment COLUMN for printing syscall results (default %d)\n\ |
| 153 | -e expr -- a qualifying expression: option=[!]all or option=[!]val1[,val2]...\n\ |
| 154 | options: trace, abbrev, verbose, raw, signal, read, or write\n\ |
| 155 | -o file -- send trace output to FILE instead of stderr\n\ |
| 156 | -O overhead -- set overhead for tracing syscalls to OVERHEAD usecs\n\ |
| 157 | -p pid -- trace process with process id PID, may be repeated\n\ |
| 158 | -s strsize -- limit length of print strings to STRSIZE chars (default %d)\n\ |
| 159 | -S sortby -- sort syscall counts by: time, calls, name, nothing (default %s)\n\ |
| 160 | -u username -- run command as username handling setuid and/or setgid\n\ |
Roland McGrath | de6e533 | 2003-01-24 04:31:23 +0000 | [diff] [blame] | 161 | -E var=val -- put var=val in the environment for command\n\ |
| 162 | -E var -- remove var from the environment for command\n\ |
| 163 | " /* this is broken, so don't document it |
Michal Ludvig | 17f8fb3 | 2002-11-06 13:17:21 +0000 | [diff] [blame] | 164 | -z -- print only succeeding syscalls\n\ |
Roland McGrath | de6e533 | 2003-01-24 04:31:23 +0000 | [diff] [blame] | 165 | */ |
| 166 | , DEFAULT_ACOLUMN, DEFAULT_STRLEN, DEFAULT_SORTBY); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 167 | exit(exitval); |
| 168 | } |
| 169 | |
| 170 | #ifdef SVR4 |
| 171 | #ifdef MIPS |
| 172 | void |
| 173 | foobar() |
| 174 | { |
| 175 | } |
| 176 | #endif /* MIPS */ |
| 177 | #endif /* SVR4 */ |
| 178 | |
| 179 | int |
| 180 | main(argc, argv) |
| 181 | int argc; |
| 182 | char *argv[]; |
| 183 | { |
| 184 | extern int optind; |
| 185 | extern char *optarg; |
| 186 | struct tcb *tcp; |
| 187 | int c, pid = 0; |
| 188 | struct sigaction sa; |
| 189 | |
| 190 | static char buf[BUFSIZ]; |
| 191 | |
Roland McGrath | ee9d435 | 2002-12-18 04:16:10 +0000 | [diff] [blame] | 192 | /* Allocate the initial tcbtab. */ |
| 193 | tcbtabsize = argc; /* Surely enough for all -p args. */ |
| 194 | tcbtab = (struct tcb **) malloc (tcbtabsize * sizeof tcbtab[0]); |
| 195 | tcbtab[0] = (struct tcb *) calloc (tcbtabsize, sizeof *tcbtab[0]); |
| 196 | for (tcp = tcbtab[0]; tcp < &tcbtab[0][tcbtabsize]; ++tcp) |
| 197 | tcbtab[tcp - tcbtab[0]] = &tcbtab[0][tcp - tcbtab[0]]; |
| 198 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 199 | progname = argv[0]; |
| 200 | outf = stderr; |
| 201 | interactive = 1; |
Roland McGrath | 138c6a3 | 2006-01-12 09:50:49 +0000 | [diff] [blame] | 202 | set_sortby(DEFAULT_SORTBY); |
| 203 | set_personality(DEFAULT_PERSONALITY); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 204 | qualify("trace=all"); |
| 205 | qualify("abbrev=all"); |
| 206 | qualify("verbose=all"); |
| 207 | qualify("signal=all"); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 208 | while ((c = getopt(argc, argv, |
Roland McGrath | de6e533 | 2003-01-24 04:31:23 +0000 | [diff] [blame] | 209 | "+cdfFhiqrtTvVxza:e:o:O:p:s:S:u:E:")) != EOF) { |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 210 | switch (c) { |
| 211 | case 'c': |
| 212 | cflag++; |
| 213 | dtime++; |
| 214 | break; |
| 215 | case 'd': |
| 216 | debug++; |
| 217 | break; |
| 218 | case 'f': |
| 219 | followfork++; |
| 220 | break; |
| 221 | case 'F': |
| 222 | followvfork++; |
| 223 | break; |
| 224 | case 'h': |
| 225 | usage(stdout, 0); |
| 226 | break; |
| 227 | case 'i': |
| 228 | iflag++; |
| 229 | break; |
| 230 | case 'q': |
| 231 | qflag++; |
| 232 | break; |
| 233 | case 'r': |
| 234 | rflag++; |
| 235 | tflag++; |
| 236 | break; |
| 237 | case 't': |
| 238 | tflag++; |
| 239 | break; |
| 240 | case 'T': |
| 241 | dtime++; |
| 242 | break; |
| 243 | case 'x': |
| 244 | xflag++; |
| 245 | break; |
| 246 | case 'v': |
| 247 | qualify("abbrev=none"); |
| 248 | break; |
| 249 | case 'V': |
Roland McGrath | 9c9a253 | 2003-02-20 02:56:29 +0000 | [diff] [blame] | 250 | printf("%s -- version %s\n", PACKAGE_NAME, VERSION); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 251 | exit(0); |
| 252 | break; |
Michal Ludvig | 17f8fb3 | 2002-11-06 13:17:21 +0000 | [diff] [blame] | 253 | case 'z': |
| 254 | not_failing_only = 1; |
| 255 | break; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 256 | case 'a': |
| 257 | acolumn = atoi(optarg); |
| 258 | break; |
| 259 | case 'e': |
| 260 | qualify(optarg); |
| 261 | break; |
| 262 | case 'o': |
| 263 | outfname = strdup(optarg); |
| 264 | break; |
| 265 | case 'O': |
| 266 | set_overhead(atoi(optarg)); |
| 267 | break; |
| 268 | case 'p': |
Roland McGrath | de6e533 | 2003-01-24 04:31:23 +0000 | [diff] [blame] | 269 | if ((pid = atoi(optarg)) <= 0) { |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 270 | fprintf(stderr, "%s: Invalid process id: %s\n", |
| 271 | progname, optarg); |
| 272 | break; |
| 273 | } |
| 274 | if (pid == getpid()) { |
Wichert Akkerman | 54a4767 | 1999-10-17 00:57:34 +0000 | [diff] [blame] | 275 | fprintf(stderr, "%s: I'm sorry, I can't let you do that, Dave.\n", progname); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 276 | break; |
| 277 | } |
| 278 | if ((tcp = alloctcb(pid)) == NULL) { |
Roland McGrath | de6e533 | 2003-01-24 04:31:23 +0000 | [diff] [blame] | 279 | fprintf(stderr, "%s: out of memory\n", |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 280 | progname); |
| 281 | exit(1); |
| 282 | } |
| 283 | tcp->flags |= TCB_ATTACHED; |
| 284 | pflag_seen++; |
| 285 | break; |
| 286 | case 's': |
| 287 | max_strlen = atoi(optarg); |
Roland McGrath | dccec72 | 2005-05-09 07:45:47 +0000 | [diff] [blame] | 288 | if (max_strlen < 0) { |
| 289 | fprintf(stderr, |
| 290 | "%s: invalid -s argument: %s\n", |
| 291 | progname, optarg); |
| 292 | exit(1); |
| 293 | } |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 294 | break; |
| 295 | case 'S': |
| 296 | set_sortby(optarg); |
| 297 | break; |
| 298 | case 'u': |
| 299 | username = strdup(optarg); |
| 300 | break; |
Roland McGrath | de6e533 | 2003-01-24 04:31:23 +0000 | [diff] [blame] | 301 | case 'E': |
| 302 | if (putenv(optarg) < 0) { |
| 303 | fprintf(stderr, "%s: out of memory\n", |
| 304 | progname); |
| 305 | exit(1); |
| 306 | } |
| 307 | break; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 308 | default: |
| 309 | usage(stderr, 1); |
| 310 | break; |
| 311 | } |
| 312 | } |
| 313 | |
Roland McGrath | d0c4c0c | 2006-04-25 07:39:40 +0000 | [diff] [blame] | 314 | if ((optind == argc) == !pflag_seen) |
Roland McGrath | ce0d154 | 2003-11-11 21:24:23 +0000 | [diff] [blame] | 315 | usage(stderr, 1); |
| 316 | |
Roland McGrath | cb9def6 | 2006-04-25 07:48:03 +0000 | [diff] [blame^] | 317 | if (followfork > 1 && cflag) { |
| 318 | fprintf(stderr, |
| 319 | "%s: -c and -ff are mutually exclusive options\n", |
| 320 | progname); |
| 321 | exit(1); |
| 322 | } |
| 323 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 324 | /* See if they want to run as another user. */ |
| 325 | if (username != NULL) { |
| 326 | struct passwd *pent; |
| 327 | |
| 328 | if (getuid() != 0 || geteuid() != 0) { |
| 329 | fprintf(stderr, |
| 330 | "%s: you must be root to use the -u option\n", |
| 331 | progname); |
| 332 | exit(1); |
| 333 | } |
| 334 | if ((pent = getpwnam(username)) == NULL) { |
| 335 | fprintf(stderr, "%s: cannot find user `%s'\n", |
| 336 | progname, optarg); |
| 337 | exit(1); |
| 338 | } |
| 339 | run_uid = pent->pw_uid; |
| 340 | run_gid = pent->pw_gid; |
| 341 | } |
| 342 | else { |
| 343 | run_uid = getuid(); |
| 344 | run_gid = getgid(); |
| 345 | } |
| 346 | |
| 347 | #ifndef SVR4 |
| 348 | setreuid(geteuid(), getuid()); |
| 349 | #endif |
| 350 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 351 | /* Check if they want to redirect the output. */ |
| 352 | if (outfname) { |
Wichert Akkerman | 54b4f79 | 2001-08-03 11:43:35 +0000 | [diff] [blame] | 353 | long f; |
| 354 | |
Roland McGrath | 37b9a66 | 2003-11-07 02:26:54 +0000 | [diff] [blame] | 355 | /* See if they want to pipe the output. */ |
| 356 | if (outfname[0] == '|' || outfname[0] == '!') { |
| 357 | /* |
| 358 | * We can't do the <outfname>.PID funny business |
| 359 | * when using popen, so prohibit it. |
| 360 | */ |
| 361 | if (followfork > 1) { |
| 362 | fprintf(stderr, "\ |
| 363 | %s: piping the output and -ff are mutually exclusive options\n", |
| 364 | progname); |
| 365 | exit(1); |
| 366 | } |
| 367 | |
| 368 | if ((outf = popen(outfname + 1, "w")) == NULL) { |
| 369 | fprintf(stderr, "%s: can't popen '%s': %s\n", |
| 370 | progname, outfname + 1, |
| 371 | strerror(errno)); |
| 372 | exit(1); |
| 373 | } |
| 374 | } |
| 375 | else if ((outf = fopen(outfname, "w")) == NULL) { |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 376 | fprintf(stderr, "%s: can't fopen '%s': %s\n", |
| 377 | progname, outfname, strerror(errno)); |
| 378 | exit(1); |
| 379 | } |
Wichert Akkerman | 54b4f79 | 2001-08-03 11:43:35 +0000 | [diff] [blame] | 380 | |
| 381 | if ((f=fcntl(fileno(outf), F_GETFD)) < 0 ) { |
| 382 | perror("failed to get flags for outputfile"); |
| 383 | exit(1); |
| 384 | } |
| 385 | |
| 386 | if (fcntl(fileno(outf), F_SETFD, f|FD_CLOEXEC) < 0 ) { |
| 387 | perror("failed to set flags for outputfile"); |
| 388 | exit(1); |
| 389 | } |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 390 | } |
| 391 | |
| 392 | #ifndef SVR4 |
| 393 | setreuid(geteuid(), getuid()); |
| 394 | #endif |
| 395 | |
Roland McGrath | 37b9a66 | 2003-11-07 02:26:54 +0000 | [diff] [blame] | 396 | if (!outfname || outfname[0] == '|' || outfname[0] == '!') |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 397 | setvbuf(outf, buf, _IOLBF, BUFSIZ); |
Roland McGrath | 37b9a66 | 2003-11-07 02:26:54 +0000 | [diff] [blame] | 398 | if (outfname && optind < argc) { |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 399 | interactive = 0; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 400 | qflag = 1; |
Roland McGrath | 3693105 | 2003-06-03 01:35:20 +0000 | [diff] [blame] | 401 | } |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 402 | |
Roland McGrath | ee9d435 | 2002-12-18 04:16:10 +0000 | [diff] [blame] | 403 | for (c = 0; c < tcbtabsize; c++) { |
| 404 | tcp = tcbtab[c]; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 405 | /* Reinitialize the output since it may have changed. */ |
| 406 | tcp->outf = outf; |
| 407 | if (!(tcp->flags & TCB_INUSE) || !(tcp->flags & TCB_ATTACHED)) |
| 408 | continue; |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 409 | #ifdef USE_PROCFS |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 410 | if (proc_open(tcp, 1) < 0) { |
| 411 | fprintf(stderr, "trouble opening proc file\n"); |
| 412 | droptcb(tcp); |
| 413 | continue; |
| 414 | } |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 415 | #else /* !USE_PROCFS */ |
Roland McGrath | 70b0853 | 2004-04-09 00:25:21 +0000 | [diff] [blame] | 416 | # ifdef LINUX |
| 417 | if (tcp->flags & TCB_CLONE_THREAD) |
| 418 | continue; |
Roland McGrath | 7b54a7a | 2004-06-04 01:50:45 +0000 | [diff] [blame] | 419 | if (followfork) { |
Roland McGrath | 70b0853 | 2004-04-09 00:25:21 +0000 | [diff] [blame] | 420 | char procdir[MAXPATHLEN]; |
| 421 | DIR *dir; |
| 422 | sprintf(procdir, "/proc/%d/task", tcp->pid); |
| 423 | dir = opendir(procdir); |
| 424 | if (dir != NULL) { |
| 425 | unsigned int ntid = 0, nerr = 0; |
| 426 | struct dirent *de; |
| 427 | int tid; |
| 428 | while ((de = readdir(dir)) != NULL) { |
| 429 | if (de->d_fileno == 0 || |
| 430 | de->d_name[0] == '.') |
| 431 | continue; |
| 432 | tid = atoi(de->d_name); |
| 433 | if (tid <= 0) |
| 434 | continue; |
| 435 | ++ntid; |
| 436 | if (ptrace(PTRACE_ATTACH, tid, |
| 437 | (char *) 1, 0) < 0) |
| 438 | ++nerr; |
| 439 | else if (tid != tcbtab[c]->pid) { |
Roland McGrath | 7b54a7a | 2004-06-04 01:50:45 +0000 | [diff] [blame] | 440 | if (nprocs == tcbtabsize && |
| 441 | expand_tcbtab()) |
| 442 | tcp = NULL; |
| 443 | else |
| 444 | tcp = alloctcb(tid); |
Roland McGrath | 70b0853 | 2004-04-09 00:25:21 +0000 | [diff] [blame] | 445 | if (tcp == NULL) { |
| 446 | fprintf(stderr, "%s: out of memory\n", |
| 447 | progname); |
| 448 | exit(1); |
| 449 | } |
Roland McGrath | 7b54a7a | 2004-06-04 01:50:45 +0000 | [diff] [blame] | 450 | tcp->flags |= TCB_ATTACHED|TCB_CLONE_THREAD|TCB_CLONE_DETACHED|TCB_FOLLOWFORK; |
Roland McGrath | 70b0853 | 2004-04-09 00:25:21 +0000 | [diff] [blame] | 451 | tcbtab[c]->nchildren++; |
| 452 | tcbtab[c]->nclone_threads++; |
| 453 | tcbtab[c]->nclone_detached++; |
| 454 | tcp->parent = tcbtab[c]; |
| 455 | } |
| 456 | } |
| 457 | closedir(dir); |
| 458 | if (nerr == ntid) { |
| 459 | perror("attach: ptrace(PTRACE_ATTACH, ...)"); |
| 460 | droptcb(tcp); |
| 461 | continue; |
| 462 | } |
| 463 | if (!qflag) { |
| 464 | ntid -= nerr; |
| 465 | if (ntid > 1) |
| 466 | fprintf(stderr, "\ |
| 467 | Process %u attached with %u threads - interrupt to quit\n", |
| 468 | tcp->pid, ntid); |
| 469 | else |
| 470 | fprintf(stderr, "\ |
| 471 | Process %u attached - interrupt to quit\n", |
| 472 | tcp->pid); |
| 473 | } |
| 474 | continue; |
| 475 | } |
| 476 | } |
| 477 | # endif |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 478 | if (ptrace(PTRACE_ATTACH, tcp->pid, (char *) 1, 0) < 0) { |
| 479 | perror("attach: ptrace(PTRACE_ATTACH, ...)"); |
| 480 | droptcb(tcp); |
| 481 | continue; |
| 482 | } |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 483 | #endif /* !USE_PROCFS */ |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 484 | if (!qflag) |
| 485 | fprintf(stderr, |
| 486 | "Process %u attached - interrupt to quit\n", |
Roland McGrath | c3266d5 | 2004-02-20 02:23:52 +0000 | [diff] [blame] | 487 | tcp->pid); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 488 | } |
| 489 | |
Roland McGrath | ce0d154 | 2003-11-11 21:24:23 +0000 | [diff] [blame] | 490 | if (!pflag_seen) { |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 491 | struct stat statbuf; |
| 492 | char *filename; |
| 493 | char pathname[MAXPATHLEN]; |
| 494 | |
| 495 | filename = argv[optind]; |
Roland McGrath | bdb09df | 2004-03-02 06:50:04 +0000 | [diff] [blame] | 496 | if (strchr(filename, '/')) { |
| 497 | if (strlen(filename) > sizeof pathname - 1) { |
| 498 | errno = ENAMETOOLONG; |
| 499 | perror("strace: exec"); |
| 500 | exit(1); |
| 501 | } |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 502 | strcpy(pathname, filename); |
Roland McGrath | bdb09df | 2004-03-02 06:50:04 +0000 | [diff] [blame] | 503 | } |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 504 | #ifdef USE_DEBUGGING_EXEC |
| 505 | /* |
| 506 | * Debuggers customarily check the current directory |
| 507 | * first regardless of the path but doing that gives |
| 508 | * security geeks a panic attack. |
| 509 | */ |
| 510 | else if (stat(filename, &statbuf) == 0) |
| 511 | strcpy(pathname, filename); |
| 512 | #endif /* USE_DEBUGGING_EXEC */ |
| 513 | else { |
| 514 | char *path; |
| 515 | int m, n, len; |
| 516 | |
| 517 | for (path = getenv("PATH"); path && *path; path += m) { |
| 518 | if (strchr(path, ':')) { |
| 519 | n = strchr(path, ':') - path; |
| 520 | m = n + 1; |
| 521 | } |
| 522 | else |
| 523 | m = n = strlen(path); |
| 524 | if (n == 0) { |
| 525 | getcwd(pathname, MAXPATHLEN); |
| 526 | len = strlen(pathname); |
| 527 | } |
Roland McGrath | bdb09df | 2004-03-02 06:50:04 +0000 | [diff] [blame] | 528 | else if (n > sizeof pathname - 1) |
| 529 | continue; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 530 | else { |
| 531 | strncpy(pathname, path, n); |
| 532 | len = n; |
| 533 | } |
| 534 | if (len && pathname[len - 1] != '/') |
| 535 | pathname[len++] = '/'; |
| 536 | strcpy(pathname + len, filename); |
Roland McGrath | ed64516 | 2003-06-03 07:18:19 +0000 | [diff] [blame] | 537 | if (stat(pathname, &statbuf) == 0 && |
| 538 | /* Accept only regular files |
| 539 | with some execute bits set. |
| 540 | XXX not perfect, might still fail */ |
| 541 | S_ISREG(statbuf.st_mode) && |
| 542 | (statbuf.st_mode & 0111)) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 543 | break; |
| 544 | } |
| 545 | } |
| 546 | if (stat(pathname, &statbuf) < 0) { |
| 547 | fprintf(stderr, "%s: %s: command not found\n", |
| 548 | progname, filename); |
| 549 | exit(1); |
| 550 | } |
| 551 | switch (pid = fork()) { |
| 552 | case -1: |
| 553 | perror("strace: fork"); |
| 554 | cleanup(); |
| 555 | exit(1); |
| 556 | break; |
| 557 | case 0: { |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 558 | #ifdef USE_PROCFS |
| 559 | if (outf != stderr) close (fileno (outf)); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 560 | #ifdef MIPS |
| 561 | /* Kludge for SGI, see proc_open for details. */ |
| 562 | sa.sa_handler = foobar; |
| 563 | sa.sa_flags = 0; |
| 564 | sigemptyset(&sa.sa_mask); |
| 565 | sigaction(SIGINT, &sa, NULL); |
| 566 | #endif /* MIPS */ |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 567 | #ifndef FREEBSD |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 568 | pause(); |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 569 | #else /* FREEBSD */ |
| 570 | kill(getpid(), SIGSTOP); /* stop HERE */ |
Roland McGrath | 553a609 | 2002-12-16 20:40:39 +0000 | [diff] [blame] | 571 | #endif /* FREEBSD */ |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 572 | #else /* !USE_PROCFS */ |
Roland McGrath | 553a609 | 2002-12-16 20:40:39 +0000 | [diff] [blame] | 573 | if (outf!=stderr) |
Wichert Akkerman | 7987cdf | 2000-07-05 16:05:39 +0000 | [diff] [blame] | 574 | close(fileno (outf)); |
Wichert Akkerman | bd4125c | 2000-06-27 17:28:06 +0000 | [diff] [blame] | 575 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 576 | if (ptrace(PTRACE_TRACEME, 0, (char *) 1, 0) < 0) { |
| 577 | perror("strace: ptrace(PTRACE_TRACEME, ...)"); |
| 578 | return -1; |
| 579 | } |
| 580 | if (debug) |
| 581 | kill(getpid(), SIGSTOP); |
| 582 | |
| 583 | if (username != NULL || geteuid() == 0) { |
| 584 | uid_t run_euid = run_uid; |
| 585 | gid_t run_egid = run_gid; |
| 586 | |
| 587 | if (statbuf.st_mode & S_ISUID) |
| 588 | run_euid = statbuf.st_uid; |
| 589 | if (statbuf.st_mode & S_ISGID) |
| 590 | run_egid = statbuf.st_gid; |
| 591 | |
| 592 | /* |
| 593 | * It is important to set groups before we |
| 594 | * lose privileges on setuid. |
| 595 | */ |
Wichert Akkerman | 5ae21ea | 2000-05-01 01:53:59 +0000 | [diff] [blame] | 596 | if (username != NULL) { |
| 597 | if (initgroups(username, run_gid) < 0) { |
| 598 | perror("initgroups"); |
| 599 | exit(1); |
| 600 | } |
| 601 | if (setregid(run_gid, run_egid) < 0) { |
| 602 | perror("setregid"); |
| 603 | exit(1); |
| 604 | } |
| 605 | if (setreuid(run_uid, run_euid) < 0) { |
| 606 | perror("setreuid"); |
| 607 | exit(1); |
| 608 | } |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 609 | } |
| 610 | } |
| 611 | else |
| 612 | setreuid(run_uid, run_uid); |
Roland McGrath | 15dca8e | 2005-02-06 01:16:32 +0000 | [diff] [blame] | 613 | |
| 614 | /* |
| 615 | * Induce an immediate stop so that the parent |
| 616 | * will resume us with PTRACE_SYSCALL and display |
| 617 | * this execve call normally. |
| 618 | */ |
| 619 | kill(getpid(), SIGSTOP); |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 620 | #endif /* !USE_PROCFS */ |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 621 | |
| 622 | execv(pathname, &argv[optind]); |
| 623 | perror("strace: exec"); |
| 624 | _exit(1); |
| 625 | break; |
| 626 | } |
| 627 | default: |
| 628 | if ((tcp = alloctcb(pid)) == NULL) { |
| 629 | fprintf(stderr, "tcb table full\n"); |
| 630 | cleanup(); |
| 631 | exit(1); |
| 632 | } |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 633 | #ifdef USE_PROCFS |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 634 | if (proc_open(tcp, 0) < 0) { |
| 635 | fprintf(stderr, "trouble opening proc file\n"); |
| 636 | cleanup(); |
| 637 | exit(1); |
| 638 | } |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 639 | #endif /* USE_PROCFS */ |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 640 | break; |
| 641 | } |
| 642 | } |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 643 | |
| 644 | sigemptyset(&empty_set); |
| 645 | sigemptyset(&blocked_set); |
| 646 | sa.sa_handler = SIG_IGN; |
| 647 | sigemptyset(&sa.sa_mask); |
| 648 | sa.sa_flags = 0; |
| 649 | sigaction(SIGTTOU, &sa, NULL); |
| 650 | sigaction(SIGTTIN, &sa, NULL); |
| 651 | if (interactive) { |
| 652 | sigaddset(&blocked_set, SIGHUP); |
| 653 | sigaddset(&blocked_set, SIGINT); |
| 654 | sigaddset(&blocked_set, SIGQUIT); |
| 655 | sigaddset(&blocked_set, SIGPIPE); |
| 656 | sigaddset(&blocked_set, SIGTERM); |
| 657 | sa.sa_handler = interrupt; |
| 658 | #ifdef SUNOS4 |
| 659 | /* POSIX signals on sunos4.1 are a little broken. */ |
| 660 | sa.sa_flags = SA_INTERRUPT; |
| 661 | #endif /* SUNOS4 */ |
| 662 | } |
| 663 | sigaction(SIGHUP, &sa, NULL); |
| 664 | sigaction(SIGINT, &sa, NULL); |
| 665 | sigaction(SIGQUIT, &sa, NULL); |
| 666 | sigaction(SIGPIPE, &sa, NULL); |
| 667 | sigaction(SIGTERM, &sa, NULL); |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 668 | #ifdef USE_PROCFS |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 669 | sa.sa_handler = reaper; |
| 670 | sigaction(SIGCHLD, &sa, NULL); |
Roland McGrath | 553a609 | 2002-12-16 20:40:39 +0000 | [diff] [blame] | 671 | #else |
| 672 | /* Make sure SIGCHLD has the default action so that waitpid |
| 673 | definitely works without losing track of children. The user |
| 674 | should not have given us a bogus state to inherit, but he might |
| 675 | have. Arguably we should detect SIG_IGN here and pass it on |
| 676 | to children, but probably noone really needs that. */ |
| 677 | sa.sa_handler = SIG_DFL; |
| 678 | sigaction(SIGCHLD, &sa, NULL); |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 679 | #endif /* USE_PROCFS */ |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 680 | |
| 681 | if (trace() < 0) |
| 682 | exit(1); |
| 683 | cleanup(); |
| 684 | exit(0); |
| 685 | } |
| 686 | |
| 687 | void |
| 688 | newoutf(tcp) |
| 689 | struct tcb *tcp; |
| 690 | { |
| 691 | char name[MAXPATHLEN]; |
| 692 | FILE *fp; |
| 693 | |
| 694 | if (outfname && followfork > 1) { |
| 695 | sprintf(name, "%s.%u", outfname, tcp->pid); |
| 696 | #ifndef SVR4 |
| 697 | setreuid(geteuid(), getuid()); |
| 698 | #endif |
| 699 | fp = fopen(name, "w"); |
| 700 | #ifndef SVR4 |
| 701 | setreuid(geteuid(), getuid()); |
| 702 | #endif |
| 703 | if (fp == NULL) { |
| 704 | perror("fopen"); |
| 705 | return; |
| 706 | } |
| 707 | tcp->outf = fp; |
| 708 | } |
| 709 | return; |
| 710 | } |
| 711 | |
Roland McGrath | 7b54a7a | 2004-06-04 01:50:45 +0000 | [diff] [blame] | 712 | int |
| 713 | expand_tcbtab() |
| 714 | { |
| 715 | /* Allocate some more TCBs and expand the table. |
| 716 | We don't want to relocate the TCBs because our |
| 717 | callers have pointers and it would be a pain. |
| 718 | So tcbtab is a table of pointers. Since we never |
| 719 | free the TCBs, we allocate a single chunk of many. */ |
| 720 | struct tcb **newtab = (struct tcb **) |
| 721 | realloc(tcbtab, 2 * tcbtabsize * sizeof tcbtab[0]); |
| 722 | struct tcb *newtcbs = (struct tcb *) calloc(tcbtabsize, |
| 723 | sizeof *newtcbs); |
| 724 | int i; |
| 725 | if (newtab == NULL || newtcbs == NULL) { |
| 726 | if (newtab != NULL) |
| 727 | free(newtab); |
| 728 | return 1; |
| 729 | } |
| 730 | for (i = tcbtabsize; i < 2 * tcbtabsize; ++i) |
| 731 | newtab[i] = &newtcbs[i - tcbtabsize]; |
| 732 | tcbtabsize *= 2; |
| 733 | tcbtab = newtab; |
| 734 | |
| 735 | return 0; |
| 736 | } |
| 737 | |
| 738 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 739 | struct tcb * |
| 740 | alloctcb(pid) |
| 741 | int pid; |
| 742 | { |
| 743 | int i; |
| 744 | struct tcb *tcp; |
| 745 | |
Roland McGrath | ee9d435 | 2002-12-18 04:16:10 +0000 | [diff] [blame] | 746 | for (i = 0; i < tcbtabsize; i++) { |
| 747 | tcp = tcbtab[i]; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 748 | if ((tcp->flags & TCB_INUSE) == 0) { |
| 749 | tcp->pid = pid; |
| 750 | tcp->parent = NULL; |
| 751 | tcp->nchildren = 0; |
Roland McGrath | 0962345 | 2003-05-23 02:27:13 +0000 | [diff] [blame] | 752 | tcp->nzombies = 0; |
Roland McGrath | e85bbfe | 2003-01-09 06:53:31 +0000 | [diff] [blame] | 753 | #ifdef TCB_CLONE_THREAD |
| 754 | tcp->nclone_threads = tcp->nclone_detached = 0; |
| 755 | tcp->nclone_waiting = 0; |
| 756 | #endif |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 757 | tcp->flags = TCB_INUSE | TCB_STARTUP; |
| 758 | tcp->outf = outf; /* Initialise to current out file */ |
| 759 | tcp->stime.tv_sec = 0; |
| 760 | tcp->stime.tv_usec = 0; |
| 761 | tcp->pfd = -1; |
| 762 | nprocs++; |
| 763 | return tcp; |
| 764 | } |
| 765 | } |
| 766 | return NULL; |
| 767 | } |
| 768 | |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 769 | #ifdef USE_PROCFS |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 770 | int |
| 771 | proc_open(tcp, attaching) |
| 772 | struct tcb *tcp; |
| 773 | int attaching; |
| 774 | { |
| 775 | char proc[32]; |
| 776 | long arg; |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 777 | #ifdef SVR4 |
John Hughes | 19e4998 | 2001-10-19 08:59:12 +0000 | [diff] [blame] | 778 | int i; |
| 779 | sysset_t syscalls; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 780 | sigset_t signals; |
| 781 | fltset_t faults; |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 782 | #endif |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 783 | #ifndef HAVE_POLLABLE_PROCFS |
| 784 | static int last_pfd; |
| 785 | #endif |
| 786 | |
Wichert Akkerman | ea78f0f | 1999-11-29 15:34:02 +0000 | [diff] [blame] | 787 | #ifdef HAVE_MP_PROCFS |
Wichert Akkerman | 9ce1a63 | 1999-08-29 23:15:07 +0000 | [diff] [blame] | 788 | /* Open the process pseudo-files in /proc. */ |
| 789 | sprintf(proc, "/proc/%d/ctl", tcp->pid); |
| 790 | if ((tcp->pfd = open(proc, O_WRONLY|O_EXCL)) < 0) { |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 791 | perror("strace: open(\"/proc/...\", ...)"); |
| 792 | return -1; |
| 793 | } |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 794 | if ((arg = fcntl(tcp->pfd, F_GETFD)) < 0) { |
| 795 | perror("F_GETFD"); |
| 796 | return -1; |
| 797 | } |
| 798 | if (fcntl(tcp->pfd, F_SETFD, arg|FD_CLOEXEC) < 0) { |
| 799 | perror("F_SETFD"); |
| 800 | return -1; |
| 801 | } |
Wichert Akkerman | 9ce1a63 | 1999-08-29 23:15:07 +0000 | [diff] [blame] | 802 | sprintf(proc, "/proc/%d/status", tcp->pid); |
| 803 | if ((tcp->pfd_stat = open(proc, O_RDONLY|O_EXCL)) < 0) { |
| 804 | perror("strace: open(\"/proc/...\", ...)"); |
| 805 | return -1; |
| 806 | } |
| 807 | if ((arg = fcntl(tcp->pfd_stat, F_GETFD)) < 0) { |
| 808 | perror("F_GETFD"); |
| 809 | return -1; |
| 810 | } |
| 811 | if (fcntl(tcp->pfd_stat, F_SETFD, arg|FD_CLOEXEC) < 0) { |
| 812 | perror("F_SETFD"); |
| 813 | return -1; |
| 814 | } |
| 815 | sprintf(proc, "/proc/%d/as", tcp->pid); |
| 816 | if ((tcp->pfd_as = open(proc, O_RDONLY|O_EXCL)) < 0) { |
| 817 | perror("strace: open(\"/proc/...\", ...)"); |
| 818 | return -1; |
| 819 | } |
| 820 | if ((arg = fcntl(tcp->pfd_as, F_GETFD)) < 0) { |
| 821 | perror("F_GETFD"); |
| 822 | return -1; |
| 823 | } |
| 824 | if (fcntl(tcp->pfd_as, F_SETFD, arg|FD_CLOEXEC) < 0) { |
| 825 | perror("F_SETFD"); |
| 826 | return -1; |
| 827 | } |
| 828 | #else |
| 829 | /* Open the process pseudo-file in /proc. */ |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 830 | #ifndef FREEBSD |
Wichert Akkerman | 9ce1a63 | 1999-08-29 23:15:07 +0000 | [diff] [blame] | 831 | sprintf(proc, "/proc/%d", tcp->pid); |
| 832 | if ((tcp->pfd = open(proc, O_RDWR|O_EXCL)) < 0) { |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 833 | #else /* FREEBSD */ |
| 834 | sprintf(proc, "/proc/%d/mem", tcp->pid); |
| 835 | if ((tcp->pfd = open(proc, O_RDWR)) < 0) { |
| 836 | #endif /* FREEBSD */ |
Wichert Akkerman | 9ce1a63 | 1999-08-29 23:15:07 +0000 | [diff] [blame] | 837 | perror("strace: open(\"/proc/...\", ...)"); |
| 838 | return -1; |
| 839 | } |
| 840 | if ((arg = fcntl(tcp->pfd, F_GETFD)) < 0) { |
| 841 | perror("F_GETFD"); |
| 842 | return -1; |
| 843 | } |
| 844 | if (fcntl(tcp->pfd, F_SETFD, arg|FD_CLOEXEC) < 0) { |
| 845 | perror("F_SETFD"); |
| 846 | return -1; |
| 847 | } |
| 848 | #endif |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 849 | #ifdef FREEBSD |
| 850 | sprintf(proc, "/proc/%d/regs", tcp->pid); |
| 851 | if ((tcp->pfd_reg = open(proc, O_RDONLY)) < 0) { |
| 852 | perror("strace: open(\"/proc/.../regs\", ...)"); |
| 853 | return -1; |
| 854 | } |
| 855 | if (cflag) { |
| 856 | sprintf(proc, "/proc/%d/status", tcp->pid); |
| 857 | if ((tcp->pfd_status = open(proc, O_RDONLY)) < 0) { |
| 858 | perror("strace: open(\"/proc/.../status\", ...)"); |
| 859 | return -1; |
| 860 | } |
| 861 | } else |
| 862 | tcp->pfd_status = -1; |
| 863 | #endif /* FREEBSD */ |
Wichert Akkerman | 9ce1a63 | 1999-08-29 23:15:07 +0000 | [diff] [blame] | 864 | rebuild_pollv(); |
| 865 | if (!attaching) { |
| 866 | /* |
| 867 | * Wait for the child to pause. Because of a race |
| 868 | * condition we have to poll for the event. |
| 869 | */ |
| 870 | for (;;) { |
| 871 | if (IOCTL_STATUS (tcp) < 0) { |
| 872 | perror("strace: PIOCSTATUS"); |
| 873 | return -1; |
| 874 | } |
| 875 | if (tcp->status.PR_FLAGS & PR_ASLEEP) |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 876 | break; |
Wichert Akkerman | 9ce1a63 | 1999-08-29 23:15:07 +0000 | [diff] [blame] | 877 | } |
| 878 | } |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 879 | #ifndef FREEBSD |
Wichert Akkerman | 9ce1a63 | 1999-08-29 23:15:07 +0000 | [diff] [blame] | 880 | /* Stop the process so that we own the stop. */ |
Wichert Akkerman | 16a03d2 | 2000-08-10 02:14:04 +0000 | [diff] [blame] | 881 | if (IOCTL(tcp->pfd, PIOCSTOP, (char *)NULL) < 0) { |
Wichert Akkerman | 9ce1a63 | 1999-08-29 23:15:07 +0000 | [diff] [blame] | 882 | perror("strace: PIOCSTOP"); |
| 883 | return -1; |
| 884 | } |
Roland McGrath | 553a609 | 2002-12-16 20:40:39 +0000 | [diff] [blame] | 885 | #endif |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 886 | #ifdef PIOCSET |
| 887 | /* Set Run-on-Last-Close. */ |
| 888 | arg = PR_RLC; |
Wichert Akkerman | 9ce1a63 | 1999-08-29 23:15:07 +0000 | [diff] [blame] | 889 | if (IOCTL(tcp->pfd, PIOCSET, &arg) < 0) { |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 890 | perror("PIOCSET PR_RLC"); |
| 891 | return -1; |
| 892 | } |
| 893 | /* Set or Reset Inherit-on-Fork. */ |
| 894 | arg = PR_FORK; |
Wichert Akkerman | 9ce1a63 | 1999-08-29 23:15:07 +0000 | [diff] [blame] | 895 | if (IOCTL(tcp->pfd, followfork ? PIOCSET : PIOCRESET, &arg) < 0) { |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 896 | perror("PIOC{SET,RESET} PR_FORK"); |
| 897 | return -1; |
| 898 | } |
| 899 | #else /* !PIOCSET */ |
Roland McGrath | 553a609 | 2002-12-16 20:40:39 +0000 | [diff] [blame] | 900 | #ifndef FREEBSD |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 901 | if (ioctl(tcp->pfd, PIOCSRLC) < 0) { |
| 902 | perror("PIOCSRLC"); |
| 903 | return -1; |
| 904 | } |
| 905 | if (ioctl(tcp->pfd, followfork ? PIOCSFORK : PIOCRFORK) < 0) { |
| 906 | perror("PIOC{S,R}FORK"); |
| 907 | return -1; |
| 908 | } |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 909 | #else /* FREEBSD */ |
| 910 | /* just unset the PF_LINGER flag for the Run-on-Last-Close. */ |
| 911 | if (ioctl(tcp->pfd, PIOCGFL, &arg) < 0) { |
| 912 | perror("PIOCGFL"); |
| 913 | return -1; |
| 914 | } |
| 915 | arg &= ~PF_LINGER; |
| 916 | if (ioctl(tcp->pfd, PIOCSFL, arg) < 0) { |
| 917 | perror("PIOCSFL"); |
| 918 | return -1; |
| 919 | } |
| 920 | #endif /* FREEBSD */ |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 921 | #endif /* !PIOCSET */ |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 922 | #ifndef FREEBSD |
John Hughes | 19e4998 | 2001-10-19 08:59:12 +0000 | [diff] [blame] | 923 | /* Enable all syscall entries we care about. */ |
| 924 | premptyset(&syscalls); |
| 925 | for (i = 1; i < MAX_QUALS; ++i) { |
| 926 | if (i > (sizeof syscalls) * CHAR_BIT) break; |
| 927 | if (qual_flags [i] & QUAL_TRACE) praddset (&syscalls, i); |
| 928 | } |
| 929 | praddset (&syscalls, SYS_execve); |
| 930 | if (followfork) { |
| 931 | praddset (&syscalls, SYS_fork); |
| 932 | #ifdef SYS_forkall |
| 933 | praddset (&syscalls, SYS_forkall); |
| 934 | #endif |
Roland McGrath | 553a609 | 2002-12-16 20:40:39 +0000 | [diff] [blame] | 935 | #ifdef SYS_fork1 |
John Hughes | 19e4998 | 2001-10-19 08:59:12 +0000 | [diff] [blame] | 936 | praddset (&syscalls, SYS_fork1); |
| 937 | #endif |
| 938 | #ifdef SYS_rfork1 |
| 939 | praddset (&syscalls, SYS_rfork1); |
| 940 | #endif |
| 941 | #ifdef SYS_rforkall |
| 942 | praddset (&syscalls, SYS_rforkall); |
| 943 | #endif |
| 944 | } |
| 945 | if (IOCTL(tcp->pfd, PIOCSENTRY, &syscalls) < 0) { |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 946 | perror("PIOCSENTRY"); |
| 947 | return -1; |
| 948 | } |
John Hughes | 19e4998 | 2001-10-19 08:59:12 +0000 | [diff] [blame] | 949 | /* Enable the syscall exits. */ |
| 950 | if (IOCTL(tcp->pfd, PIOCSEXIT, &syscalls) < 0) { |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 951 | perror("PIOSEXIT"); |
| 952 | return -1; |
| 953 | } |
John Hughes | 19e4998 | 2001-10-19 08:59:12 +0000 | [diff] [blame] | 954 | /* Enable signals we care about. */ |
| 955 | premptyset(&signals); |
| 956 | for (i = 1; i < MAX_QUALS; ++i) { |
| 957 | if (i > (sizeof signals) * CHAR_BIT) break; |
| 958 | if (qual_flags [i] & QUAL_SIGNAL) praddset (&signals, i); |
| 959 | } |
Wichert Akkerman | 9ce1a63 | 1999-08-29 23:15:07 +0000 | [diff] [blame] | 960 | if (IOCTL(tcp->pfd, PIOCSTRACE, &signals) < 0) { |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 961 | perror("PIOCSTRACE"); |
| 962 | return -1; |
| 963 | } |
John Hughes | 19e4998 | 2001-10-19 08:59:12 +0000 | [diff] [blame] | 964 | /* Enable faults we care about */ |
| 965 | premptyset(&faults); |
| 966 | for (i = 1; i < MAX_QUALS; ++i) { |
| 967 | if (i > (sizeof faults) * CHAR_BIT) break; |
| 968 | if (qual_flags [i] & QUAL_FAULT) praddset (&faults, i); |
| 969 | } |
Wichert Akkerman | 9ce1a63 | 1999-08-29 23:15:07 +0000 | [diff] [blame] | 970 | if (IOCTL(tcp->pfd, PIOCSFAULT, &faults) < 0) { |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 971 | perror("PIOCSFAULT"); |
| 972 | return -1; |
| 973 | } |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 974 | #else /* FREEBSD */ |
| 975 | /* set events flags. */ |
| 976 | arg = S_SIG | S_SCE | S_SCX ; |
| 977 | if(ioctl(tcp->pfd, PIOCBIS, arg) < 0) { |
| 978 | perror("PIOCBIS"); |
| 979 | return -1; |
| 980 | } |
| 981 | #endif /* FREEBSD */ |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 982 | if (!attaching) { |
| 983 | #ifdef MIPS |
| 984 | /* |
| 985 | * The SGI PRSABORT doesn't work for pause() so |
| 986 | * we send it a caught signal to wake it up. |
| 987 | */ |
| 988 | kill(tcp->pid, SIGINT); |
| 989 | #else /* !MIPS */ |
Roland McGrath | 553a609 | 2002-12-16 20:40:39 +0000 | [diff] [blame] | 990 | #ifdef PRSABORT |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 991 | /* The child is in a pause(), abort it. */ |
Wichert Akkerman | 9ce1a63 | 1999-08-29 23:15:07 +0000 | [diff] [blame] | 992 | arg = PRSABORT; |
| 993 | if (IOCTL (tcp->pfd, PIOCRUN, &arg) < 0) { |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 994 | perror("PIOCRUN"); |
| 995 | return -1; |
| 996 | } |
Roland McGrath | 553a609 | 2002-12-16 20:40:39 +0000 | [diff] [blame] | 997 | #endif |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 998 | #endif /* !MIPS*/ |
| 999 | #ifdef FREEBSD |
| 1000 | /* wake up the child if it received the SIGSTOP */ |
| 1001 | kill(tcp->pid, SIGCONT); |
Roland McGrath | 553a609 | 2002-12-16 20:40:39 +0000 | [diff] [blame] | 1002 | #endif |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1003 | for (;;) { |
| 1004 | /* Wait for the child to do something. */ |
Wichert Akkerman | 9ce1a63 | 1999-08-29 23:15:07 +0000 | [diff] [blame] | 1005 | if (IOCTL_WSTOP (tcp) < 0) { |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1006 | perror("PIOCWSTOP"); |
| 1007 | return -1; |
| 1008 | } |
Wichert Akkerman | 9ce1a63 | 1999-08-29 23:15:07 +0000 | [diff] [blame] | 1009 | if (tcp->status.PR_WHY == PR_SYSENTRY) { |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 1010 | tcp->flags &= ~TCB_INSYSCALL; |
| 1011 | get_scno(tcp); |
Roland McGrath | 76989d7 | 2005-06-07 23:21:31 +0000 | [diff] [blame] | 1012 | if (known_scno(tcp) == SYS_execve) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1013 | break; |
| 1014 | } |
| 1015 | /* Set it running: maybe execve will be next. */ |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 1016 | #ifndef FREEBSD |
Wichert Akkerman | 9ce1a63 | 1999-08-29 23:15:07 +0000 | [diff] [blame] | 1017 | arg = 0; |
| 1018 | if (IOCTL(tcp->pfd, PIOCRUN, &arg) < 0) { |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 1019 | #else /* FREEBSD */ |
| 1020 | if (IOCTL(tcp->pfd, PIOCRUN, 0) < 0) { |
Roland McGrath | 553a609 | 2002-12-16 20:40:39 +0000 | [diff] [blame] | 1021 | #endif /* FREEBSD */ |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1022 | perror("PIOCRUN"); |
| 1023 | return -1; |
| 1024 | } |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 1025 | #ifdef FREEBSD |
| 1026 | /* handle the case where we "opened" the child before |
| 1027 | it did the kill -STOP */ |
| 1028 | if (tcp->status.PR_WHY == PR_SIGNALLED && |
| 1029 | tcp->status.PR_WHAT == SIGSTOP) |
| 1030 | kill(tcp->pid, SIGCONT); |
Roland McGrath | 553a609 | 2002-12-16 20:40:39 +0000 | [diff] [blame] | 1031 | #endif |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1032 | } |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 1033 | #ifndef FREEBSD |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1034 | } |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 1035 | #else /* FREEBSD */ |
| 1036 | } else { |
Roland McGrath | 553a609 | 2002-12-16 20:40:39 +0000 | [diff] [blame] | 1037 | if (attaching < 2) { |
Wichert Akkerman | 2e4ffe5 | 2000-09-03 23:57:48 +0000 | [diff] [blame] | 1038 | /* We are attaching to an already running process. |
| 1039 | * Try to figure out the state of the process in syscalls, |
| 1040 | * to handle the first event well. |
| 1041 | * This is done by having a look at the "wchan" property of the |
| 1042 | * process, which tells where it is stopped (if it is). */ |
| 1043 | FILE * status; |
| 1044 | char wchan[20]; /* should be enough */ |
Roland McGrath | 553a609 | 2002-12-16 20:40:39 +0000 | [diff] [blame] | 1045 | |
Wichert Akkerman | 2e4ffe5 | 2000-09-03 23:57:48 +0000 | [diff] [blame] | 1046 | sprintf(proc, "/proc/%d/status", tcp->pid); |
| 1047 | status = fopen(proc, "r"); |
| 1048 | if (status && |
| 1049 | (fscanf(status, "%*s %*d %*d %*d %*d %*d,%*d %*s %*d,%*d" |
| 1050 | "%*d,%*d %*d,%*d %19s", wchan) == 1) && |
| 1051 | strcmp(wchan, "nochan") && strcmp(wchan, "spread") && |
| 1052 | strcmp(wchan, "stopevent")) { |
| 1053 | /* The process is asleep in the middle of a syscall. |
| 1054 | Fake the syscall entry event */ |
| 1055 | tcp->flags &= ~(TCB_INSYSCALL|TCB_STARTUP); |
| 1056 | tcp->status.PR_WHY = PR_SYSENTRY; |
| 1057 | trace_syscall(tcp); |
| 1058 | } |
| 1059 | if (status) |
| 1060 | fclose(status); |
| 1061 | } /* otherwise it's a fork being followed */ |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 1062 | } |
| 1063 | #endif /* FREEBSD */ |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1064 | #ifndef HAVE_POLLABLE_PROCFS |
| 1065 | if (proc_poll_pipe[0] != -1) |
| 1066 | proc_poller(tcp->pfd); |
| 1067 | else if (nprocs > 1) { |
| 1068 | proc_poll_open(); |
| 1069 | proc_poller(last_pfd); |
| 1070 | proc_poller(tcp->pfd); |
| 1071 | } |
| 1072 | last_pfd = tcp->pfd; |
| 1073 | #endif /* !HAVE_POLLABLE_PROCFS */ |
| 1074 | return 0; |
| 1075 | } |
| 1076 | |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 1077 | #endif /* USE_PROCFS */ |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1078 | |
Roland McGrath | e85bbfe | 2003-01-09 06:53:31 +0000 | [diff] [blame] | 1079 | struct tcb * |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1080 | pid2tcb(pid) |
| 1081 | int pid; |
| 1082 | { |
| 1083 | int i; |
| 1084 | struct tcb *tcp; |
| 1085 | |
Roland McGrath | ee9d435 | 2002-12-18 04:16:10 +0000 | [diff] [blame] | 1086 | for (i = 0; i < tcbtabsize; i++) { |
| 1087 | tcp = tcbtab[i]; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1088 | if (pid && tcp->pid != pid) |
| 1089 | continue; |
| 1090 | if (tcp->flags & TCB_INUSE) |
| 1091 | return tcp; |
| 1092 | } |
| 1093 | return NULL; |
| 1094 | } |
| 1095 | |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 1096 | #ifdef USE_PROCFS |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1097 | |
| 1098 | static struct tcb * |
| 1099 | pfd2tcb(pfd) |
| 1100 | int pfd; |
| 1101 | { |
| 1102 | int i; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1103 | |
Roland McGrath | ca16be8 | 2003-01-10 19:55:28 +0000 | [diff] [blame] | 1104 | for (i = 0; i < tcbtabsize; i++) { |
| 1105 | struct tcb *tcp = tcbtab[i]; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1106 | if (tcp->pfd != pfd) |
| 1107 | continue; |
| 1108 | if (tcp->flags & TCB_INUSE) |
| 1109 | return tcp; |
| 1110 | } |
| 1111 | return NULL; |
| 1112 | } |
| 1113 | |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 1114 | #endif /* USE_PROCFS */ |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1115 | |
| 1116 | void |
| 1117 | droptcb(tcp) |
| 1118 | struct tcb *tcp; |
| 1119 | { |
| 1120 | if (tcp->pid == 0) |
| 1121 | return; |
Roland McGrath | e85bbfe | 2003-01-09 06:53:31 +0000 | [diff] [blame] | 1122 | #ifdef TCB_CLONE_THREAD |
| 1123 | if (tcp->nclone_threads > 0) { |
| 1124 | /* There are other threads left in this process, but this |
| 1125 | is the one whose PID represents the whole process. |
| 1126 | We need to keep this record around as a zombie until |
| 1127 | all the threads die. */ |
| 1128 | tcp->flags |= TCB_EXITING; |
| 1129 | return; |
| 1130 | } |
| 1131 | #endif |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1132 | nprocs--; |
| 1133 | tcp->pid = 0; |
Wichert Akkerman | eb8ebda | 2002-04-01 17:48:02 +0000 | [diff] [blame] | 1134 | |
Roland McGrath | e29341c | 2003-01-10 20:14:20 +0000 | [diff] [blame] | 1135 | if (tcp->parent != NULL) { |
| 1136 | tcp->parent->nchildren--; |
| 1137 | #ifdef TCB_CLONE_THREAD |
| 1138 | if (tcp->flags & TCB_CLONE_DETACHED) |
| 1139 | tcp->parent->nclone_detached--; |
| 1140 | if (tcp->flags & TCB_CLONE_THREAD) |
| 1141 | tcp->parent->nclone_threads--; |
| 1142 | #endif |
Roland McGrath | 0962345 | 2003-05-23 02:27:13 +0000 | [diff] [blame] | 1143 | #ifdef TCB_CLONE_DETACHED |
| 1144 | if (!(tcp->flags & TCB_CLONE_DETACHED)) |
| 1145 | #endif |
| 1146 | tcp->parent->nzombies++; |
Roland McGrath | e29341c | 2003-01-10 20:14:20 +0000 | [diff] [blame] | 1147 | tcp->parent = NULL; |
| 1148 | } |
| 1149 | |
| 1150 | tcp->flags = 0; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1151 | if (tcp->pfd != -1) { |
| 1152 | close(tcp->pfd); |
| 1153 | tcp->pfd = -1; |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 1154 | #ifdef FREEBSD |
| 1155 | if (tcp->pfd_reg != -1) { |
| 1156 | close(tcp->pfd_reg); |
| 1157 | tcp->pfd_reg = -1; |
| 1158 | } |
| 1159 | if (tcp->pfd_status != -1) { |
| 1160 | close(tcp->pfd_status); |
| 1161 | tcp->pfd_status = -1; |
| 1162 | } |
Roland McGrath | 553a609 | 2002-12-16 20:40:39 +0000 | [diff] [blame] | 1163 | #endif /* !FREEBSD */ |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 1164 | #ifdef USE_PROCFS |
Roland McGrath | e29341c | 2003-01-10 20:14:20 +0000 | [diff] [blame] | 1165 | rebuild_pollv(); /* Note, flags needs to be cleared by now. */ |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1166 | #endif |
| 1167 | } |
Wichert Akkerman | eb8ebda | 2002-04-01 17:48:02 +0000 | [diff] [blame] | 1168 | |
Wichert Akkerman | 822f0c9 | 2002-04-03 10:55:14 +0000 | [diff] [blame] | 1169 | if (outfname && followfork > 1 && tcp->outf) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1170 | fclose(tcp->outf); |
Wichert Akkerman | eb8ebda | 2002-04-01 17:48:02 +0000 | [diff] [blame] | 1171 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1172 | tcp->outf = 0; |
| 1173 | } |
| 1174 | |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 1175 | #ifndef USE_PROCFS |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1176 | |
| 1177 | static int |
| 1178 | resume(tcp) |
| 1179 | struct tcb *tcp; |
| 1180 | { |
| 1181 | if (tcp == NULL) |
| 1182 | return -1; |
| 1183 | |
| 1184 | if (!(tcp->flags & TCB_SUSPENDED)) { |
| 1185 | fprintf(stderr, "PANIC: pid %u not suspended\n", tcp->pid); |
| 1186 | return -1; |
| 1187 | } |
| 1188 | tcp->flags &= ~TCB_SUSPENDED; |
Roland McGrath | e85bbfe | 2003-01-09 06:53:31 +0000 | [diff] [blame] | 1189 | #ifdef TCB_CLONE_THREAD |
| 1190 | if (tcp->flags & TCB_CLONE_THREAD) |
| 1191 | tcp->parent->nclone_waiting--; |
| 1192 | #endif |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1193 | |
| 1194 | if (ptrace(PTRACE_SYSCALL, tcp->pid, (char *) 1, 0) < 0) { |
| 1195 | perror("resume: ptrace(PTRACE_SYSCALL, ...)"); |
| 1196 | return -1; |
| 1197 | } |
| 1198 | |
| 1199 | if (!qflag) |
| 1200 | fprintf(stderr, "Process %u resumed\n", tcp->pid); |
| 1201 | return 0; |
| 1202 | } |
| 1203 | |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 1204 | #endif /* !USE_PROCFS */ |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1205 | |
| 1206 | /* detach traced process; continue with sig */ |
| 1207 | |
| 1208 | static int |
| 1209 | detach(tcp, sig) |
| 1210 | struct tcb *tcp; |
| 1211 | int sig; |
| 1212 | { |
| 1213 | int error = 0; |
Roland McGrath | ca16be8 | 2003-01-10 19:55:28 +0000 | [diff] [blame] | 1214 | #ifdef LINUX |
Roland McGrath | e85bbfe | 2003-01-09 06:53:31 +0000 | [diff] [blame] | 1215 | int status, resumed; |
Roland McGrath | a08a97e | 2005-08-03 11:23:46 +0000 | [diff] [blame] | 1216 | struct tcb *zombie = NULL; |
| 1217 | |
| 1218 | /* If the group leader is lingering only because of this other |
| 1219 | thread now dying, then detach the leader as well. */ |
| 1220 | if ((tcp->flags & TCB_CLONE_THREAD) && |
| 1221 | tcp->parent->nclone_threads == 1 && |
| 1222 | (tcp->parent->flags & TCB_EXITING)) |
| 1223 | zombie = tcp->parent; |
Roland McGrath | ca16be8 | 2003-01-10 19:55:28 +0000 | [diff] [blame] | 1224 | #endif |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1225 | |
| 1226 | if (tcp->flags & TCB_BPTSET) |
| 1227 | sig = SIGKILL; |
| 1228 | |
| 1229 | #ifdef LINUX |
| 1230 | /* |
| 1231 | * Linux wrongly insists the child be stopped |
Roland McGrath | 7bf1047 | 2002-12-16 20:42:50 +0000 | [diff] [blame] | 1232 | * before detaching. Arghh. We go through hoops |
| 1233 | * to make a clean break of things. |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1234 | */ |
Roland McGrath | 7bf1047 | 2002-12-16 20:42:50 +0000 | [diff] [blame] | 1235 | #if defined(SPARC) |
| 1236 | #undef PTRACE_DETACH |
| 1237 | #define PTRACE_DETACH PTRACE_SUNDETACH |
| 1238 | #endif |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1239 | if ((error = ptrace(PTRACE_DETACH, tcp->pid, (char *) 1, sig)) == 0) { |
| 1240 | /* On a clear day, you can see forever. */ |
Roland McGrath | 7bf1047 | 2002-12-16 20:42:50 +0000 | [diff] [blame] | 1241 | } |
| 1242 | else if (errno != ESRCH) { |
| 1243 | /* Shouldn't happen. */ |
| 1244 | perror("detach: ptrace(PTRACE_DETACH, ...)"); |
| 1245 | } |
| 1246 | else if (kill(tcp->pid, 0) < 0) { |
| 1247 | if (errno != ESRCH) |
| 1248 | perror("detach: checking sanity"); |
| 1249 | } |
| 1250 | else if (kill(tcp->pid, SIGSTOP) < 0) { |
| 1251 | if (errno != ESRCH) |
| 1252 | perror("detach: stopping child"); |
| 1253 | } |
| 1254 | else { |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1255 | for (;;) { |
Roland McGrath | 7508cb4 | 2002-12-17 10:48:05 +0000 | [diff] [blame] | 1256 | #ifdef __WALL |
| 1257 | if (wait4(tcp->pid, &status, __WALL, NULL) < 0) { |
| 1258 | if (errno == ECHILD) /* Already gone. */ |
| 1259 | break; |
| 1260 | if (errno != EINVAL) { |
Roland McGrath | 553a609 | 2002-12-16 20:40:39 +0000 | [diff] [blame] | 1261 | perror("detach: waiting"); |
Roland McGrath | 7508cb4 | 2002-12-17 10:48:05 +0000 | [diff] [blame] | 1262 | break; |
| 1263 | } |
| 1264 | #endif /* __WALL */ |
| 1265 | /* No __WALL here. */ |
| 1266 | if (waitpid(tcp->pid, &status, 0) < 0) { |
| 1267 | if (errno != ECHILD) { |
| 1268 | perror("detach: waiting"); |
| 1269 | break; |
| 1270 | } |
| 1271 | #ifdef __WCLONE |
| 1272 | /* If no processes, try clones. */ |
| 1273 | if (wait4(tcp->pid, &status, __WCLONE, |
| 1274 | NULL) < 0) { |
| 1275 | if (errno != ECHILD) |
| 1276 | perror("detach: waiting"); |
| 1277 | break; |
| 1278 | } |
| 1279 | #endif /* __WCLONE */ |
| 1280 | } |
| 1281 | #ifdef __WALL |
Roland McGrath | 553a609 | 2002-12-16 20:40:39 +0000 | [diff] [blame] | 1282 | } |
Roland McGrath | 7508cb4 | 2002-12-17 10:48:05 +0000 | [diff] [blame] | 1283 | #endif |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1284 | if (!WIFSTOPPED(status)) { |
| 1285 | /* Au revoir, mon ami. */ |
| 1286 | break; |
| 1287 | } |
| 1288 | if (WSTOPSIG(status) == SIGSTOP) { |
| 1289 | if ((error = ptrace(PTRACE_DETACH, |
Roland McGrath | 7bf1047 | 2002-12-16 20:42:50 +0000 | [diff] [blame] | 1290 | tcp->pid, (char *) 1, sig)) < 0) { |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1291 | if (errno != ESRCH) |
| 1292 | perror("detach: ptrace(PTRACE_DETACH, ...)"); |
| 1293 | /* I died trying. */ |
| 1294 | } |
| 1295 | break; |
| 1296 | } |
| 1297 | if ((error = ptrace(PTRACE_CONT, tcp->pid, (char *) 1, |
Roland McGrath | 7bf1047 | 2002-12-16 20:42:50 +0000 | [diff] [blame] | 1298 | WSTOPSIG(status) == SIGTRAP ? |
| 1299 | 0 : WSTOPSIG(status))) < 0) { |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1300 | if (errno != ESRCH) |
| 1301 | perror("detach: ptrace(PTRACE_CONT, ...)"); |
| 1302 | break; |
| 1303 | } |
| 1304 | } |
| 1305 | } |
Roland McGrath | 7bf1047 | 2002-12-16 20:42:50 +0000 | [diff] [blame] | 1306 | #endif /* LINUX */ |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1307 | |
| 1308 | #if defined(SUNOS4) |
| 1309 | /* PTRACE_DETACH won't respect `sig' argument, so we post it here. */ |
| 1310 | if (sig && kill(tcp->pid, sig) < 0) |
| 1311 | perror("detach: kill"); |
| 1312 | sig = 0; |
| 1313 | if ((error = ptrace(PTRACE_DETACH, tcp->pid, (char *) 1, sig)) < 0) |
| 1314 | perror("detach: ptrace(PTRACE_DETACH, ...)"); |
| 1315 | #endif /* SUNOS4 */ |
| 1316 | |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 1317 | #ifndef USE_PROCFS |
Roland McGrath | e85bbfe | 2003-01-09 06:53:31 +0000 | [diff] [blame] | 1318 | resumed = 0; |
| 1319 | |
| 1320 | /* XXX This won't always be quite right (but it never was). |
| 1321 | A waiter with argument 0 or < -1 is waiting for any pid in |
| 1322 | a particular pgrp, which this child might or might not be |
| 1323 | in. The waiter will only wake up if it's argument is -1 |
| 1324 | or if it's waiting for tcp->pid's pgrp. It makes a |
| 1325 | difference to wake up a waiter when there might be more |
| 1326 | traced children, because it could get a false ECHILD |
| 1327 | error. OTOH, if this was the last child in the pgrp, then |
| 1328 | it ought to wake up and get ECHILD. We would have to |
| 1329 | search the system for all pid's in the pgrp to be sure. |
| 1330 | |
| 1331 | && (t->waitpid == -1 || |
| 1332 | (t->waitpid == 0 && getpgid (tcp->pid) == getpgid (t->pid)) |
| 1333 | || (t->waitpid < 0 && t->waitpid == -getpid (t->pid))) |
| 1334 | */ |
| 1335 | |
| 1336 | if (tcp->parent && |
| 1337 | (tcp->parent->flags & TCB_SUSPENDED) && |
| 1338 | (tcp->parent->waitpid <= 0 || tcp->parent->waitpid == tcp->pid)) { |
| 1339 | error = resume(tcp->parent); |
| 1340 | ++resumed; |
| 1341 | } |
| 1342 | #ifdef TCB_CLONE_THREAD |
| 1343 | if (tcp->parent && tcp->parent->nclone_waiting > 0) { |
| 1344 | /* Some other threads of our parent are waiting too. */ |
| 1345 | unsigned int i; |
| 1346 | |
| 1347 | /* Resume all the threads that were waiting for this PID. */ |
| 1348 | for (i = 0; i < tcbtabsize; i++) { |
| 1349 | struct tcb *t = tcbtab[i]; |
| 1350 | if (t->parent == tcp->parent && t != tcp |
| 1351 | && ((t->flags & (TCB_CLONE_THREAD|TCB_SUSPENDED)) |
| 1352 | == (TCB_CLONE_THREAD|TCB_SUSPENDED)) |
| 1353 | && t->waitpid == tcp->pid) { |
| 1354 | error |= resume (t); |
| 1355 | ++resumed; |
| 1356 | } |
| 1357 | } |
| 1358 | if (resumed == 0) |
| 1359 | /* Noone was waiting for this PID in particular, |
| 1360 | so now we might need to resume some wildcarders. */ |
| 1361 | for (i = 0; i < tcbtabsize; i++) { |
| 1362 | struct tcb *t = tcbtab[i]; |
| 1363 | if (t->parent == tcp->parent && t != tcp |
| 1364 | && ((t->flags |
| 1365 | & (TCB_CLONE_THREAD|TCB_SUSPENDED)) |
| 1366 | == (TCB_CLONE_THREAD|TCB_SUSPENDED)) |
| 1367 | && t->waitpid <= 0 |
| 1368 | ) { |
| 1369 | error |= resume (t); |
| 1370 | break; |
| 1371 | } |
| 1372 | } |
| 1373 | } |
| 1374 | #endif |
| 1375 | |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 1376 | #endif /* !USE_PROCFS */ |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1377 | |
| 1378 | if (!qflag) |
| 1379 | fprintf(stderr, "Process %u detached\n", tcp->pid); |
| 1380 | |
| 1381 | droptcb(tcp); |
Roland McGrath | a08a97e | 2005-08-03 11:23:46 +0000 | [diff] [blame] | 1382 | |
| 1383 | #ifdef LINUX |
| 1384 | if (zombie != NULL) |
| 1385 | error = detach(zombie) || error; |
| 1386 | #endif |
| 1387 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1388 | return error; |
| 1389 | } |
| 1390 | |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 1391 | #ifdef USE_PROCFS |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1392 | |
| 1393 | static void |
| 1394 | reaper(sig) |
| 1395 | int sig; |
| 1396 | { |
| 1397 | int pid; |
| 1398 | int status; |
| 1399 | |
| 1400 | while ((pid = waitpid(-1, &status, WNOHANG)) > 0) { |
| 1401 | #if 0 |
| 1402 | struct tcb *tcp; |
| 1403 | |
| 1404 | tcp = pid2tcb(pid); |
| 1405 | if (tcp) |
| 1406 | droptcb(tcp); |
| 1407 | #endif |
| 1408 | } |
| 1409 | } |
| 1410 | |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 1411 | #endif /* USE_PROCFS */ |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1412 | |
| 1413 | static void |
| 1414 | cleanup() |
| 1415 | { |
| 1416 | int i; |
| 1417 | struct tcb *tcp; |
| 1418 | |
Roland McGrath | ee9d435 | 2002-12-18 04:16:10 +0000 | [diff] [blame] | 1419 | for (i = 0; i < tcbtabsize; i++) { |
| 1420 | tcp = tcbtab[i]; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1421 | if (!(tcp->flags & TCB_INUSE)) |
| 1422 | continue; |
| 1423 | if (debug) |
| 1424 | fprintf(stderr, |
| 1425 | "cleanup: looking at pid %u\n", tcp->pid); |
| 1426 | if (tcp_last && |
| 1427 | (!outfname || followfork < 2 || tcp_last == tcp)) { |
| 1428 | tprintf(" <unfinished ...>\n"); |
| 1429 | tcp_last = NULL; |
| 1430 | } |
| 1431 | if (tcp->flags & TCB_ATTACHED) |
| 1432 | detach(tcp, 0); |
| 1433 | else { |
| 1434 | kill(tcp->pid, SIGCONT); |
| 1435 | kill(tcp->pid, SIGTERM); |
| 1436 | } |
| 1437 | } |
| 1438 | if (cflag) |
| 1439 | call_summary(outf); |
| 1440 | } |
| 1441 | |
| 1442 | static void |
| 1443 | interrupt(sig) |
| 1444 | int sig; |
| 1445 | { |
| 1446 | interrupted = 1; |
| 1447 | } |
| 1448 | |
| 1449 | #ifndef HAVE_STRERROR |
| 1450 | |
Roland McGrath | 6d2b349 | 2002-12-30 00:51:30 +0000 | [diff] [blame] | 1451 | #if !HAVE_DECL_SYS_ERRLIST |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1452 | extern int sys_nerr; |
| 1453 | extern char *sys_errlist[]; |
Roland McGrath | 6d2b349 | 2002-12-30 00:51:30 +0000 | [diff] [blame] | 1454 | #endif /* HAVE_DECL_SYS_ERRLIST */ |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1455 | |
| 1456 | const char * |
| 1457 | strerror(errno) |
| 1458 | int errno; |
| 1459 | { |
| 1460 | static char buf[64]; |
| 1461 | |
| 1462 | if (errno < 1 || errno >= sys_nerr) { |
| 1463 | sprintf(buf, "Unknown error %d", errno); |
| 1464 | return buf; |
| 1465 | } |
| 1466 | return sys_errlist[errno]; |
| 1467 | } |
| 1468 | |
| 1469 | #endif /* HAVE_STERRROR */ |
| 1470 | |
| 1471 | #ifndef HAVE_STRSIGNAL |
| 1472 | |
Roland McGrath | 8f474e0 | 2003-01-14 07:53:33 +0000 | [diff] [blame] | 1473 | #if defined HAVE_SYS_SIGLIST && !defined HAVE_DECL_SYS_SIGLIST |
Roland McGrath | 6d2b349 | 2002-12-30 00:51:30 +0000 | [diff] [blame] | 1474 | extern char *sys_siglist[]; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1475 | #endif |
Roland McGrath | 8f474e0 | 2003-01-14 07:53:33 +0000 | [diff] [blame] | 1476 | #if defined HAVE_SYS__SIGLIST && !defined HAVE_DECL__SYS_SIGLIST |
| 1477 | extern char *_sys_siglist[]; |
| 1478 | #endif |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1479 | |
| 1480 | const char * |
| 1481 | strsignal(sig) |
| 1482 | int sig; |
| 1483 | { |
| 1484 | static char buf[64]; |
| 1485 | |
| 1486 | if (sig < 1 || sig >= NSIG) { |
| 1487 | sprintf(buf, "Unknown signal %d", sig); |
| 1488 | return buf; |
| 1489 | } |
| 1490 | #ifdef HAVE__SYS_SIGLIST |
| 1491 | return _sys_siglist[sig]; |
| 1492 | #else |
| 1493 | return sys_siglist[sig]; |
| 1494 | #endif |
| 1495 | } |
| 1496 | |
| 1497 | #endif /* HAVE_STRSIGNAL */ |
| 1498 | |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 1499 | #ifdef USE_PROCFS |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1500 | |
| 1501 | static void |
| 1502 | rebuild_pollv() |
| 1503 | { |
| 1504 | int i, j; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1505 | |
Roland McGrath | ee9d435 | 2002-12-18 04:16:10 +0000 | [diff] [blame] | 1506 | if (pollv != NULL) |
| 1507 | free (pollv); |
Roland McGrath | c012d22 | 2003-01-10 20:05:56 +0000 | [diff] [blame] | 1508 | pollv = (struct pollfd *) malloc(nprocs * sizeof pollv[0]); |
Roland McGrath | ee9d435 | 2002-12-18 04:16:10 +0000 | [diff] [blame] | 1509 | if (pollv == NULL) { |
Roland McGrath | 46100d0 | 2005-06-01 18:55:42 +0000 | [diff] [blame] | 1510 | fprintf(stderr, "%s: out of memory\n", progname); |
Roland McGrath | ee9d435 | 2002-12-18 04:16:10 +0000 | [diff] [blame] | 1511 | exit(1); |
| 1512 | } |
| 1513 | |
Roland McGrath | ca16be8 | 2003-01-10 19:55:28 +0000 | [diff] [blame] | 1514 | for (i = j = 0; i < tcbtabsize; i++) { |
| 1515 | struct tcb *tcp = tcbtab[i]; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1516 | if (!(tcp->flags & TCB_INUSE)) |
| 1517 | continue; |
| 1518 | pollv[j].fd = tcp->pfd; |
Wichert Akkerman | 9ce1a63 | 1999-08-29 23:15:07 +0000 | [diff] [blame] | 1519 | pollv[j].events = POLLWANT; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1520 | j++; |
| 1521 | } |
| 1522 | if (j != nprocs) { |
| 1523 | fprintf(stderr, "strace: proc miscount\n"); |
| 1524 | exit(1); |
| 1525 | } |
| 1526 | } |
| 1527 | |
| 1528 | #ifndef HAVE_POLLABLE_PROCFS |
| 1529 | |
| 1530 | static void |
| 1531 | proc_poll_open() |
| 1532 | { |
| 1533 | int arg; |
| 1534 | int i; |
| 1535 | |
| 1536 | if (pipe(proc_poll_pipe) < 0) { |
| 1537 | perror("pipe"); |
| 1538 | exit(1); |
| 1539 | } |
| 1540 | for (i = 0; i < 2; i++) { |
| 1541 | if ((arg = fcntl(proc_poll_pipe[i], F_GETFD)) < 0) { |
| 1542 | perror("F_GETFD"); |
| 1543 | exit(1); |
| 1544 | } |
| 1545 | if (fcntl(proc_poll_pipe[i], F_SETFD, arg|FD_CLOEXEC) < 0) { |
| 1546 | perror("F_SETFD"); |
| 1547 | exit(1); |
| 1548 | } |
| 1549 | } |
| 1550 | } |
| 1551 | |
| 1552 | static int |
| 1553 | proc_poll(pollv, nfds, timeout) |
| 1554 | struct pollfd *pollv; |
| 1555 | int nfds; |
| 1556 | int timeout; |
| 1557 | { |
| 1558 | int i; |
| 1559 | int n; |
| 1560 | struct proc_pollfd pollinfo; |
| 1561 | |
| 1562 | if ((n = read(proc_poll_pipe[0], &pollinfo, sizeof(pollinfo))) < 0) |
| 1563 | return n; |
| 1564 | if (n != sizeof(struct proc_pollfd)) { |
| 1565 | fprintf(stderr, "panic: short read: %d\n", n); |
| 1566 | exit(1); |
| 1567 | } |
| 1568 | for (i = 0; i < nprocs; i++) { |
| 1569 | if (pollv[i].fd == pollinfo.fd) |
| 1570 | pollv[i].revents = pollinfo.revents; |
| 1571 | else |
| 1572 | pollv[i].revents = 0; |
| 1573 | } |
| 1574 | poller_pid = pollinfo.pid; |
| 1575 | return 1; |
| 1576 | } |
| 1577 | |
| 1578 | static void |
| 1579 | wakeup_handler(sig) |
| 1580 | int sig; |
| 1581 | { |
| 1582 | } |
| 1583 | |
| 1584 | static void |
| 1585 | proc_poller(pfd) |
| 1586 | int pfd; |
| 1587 | { |
| 1588 | struct proc_pollfd pollinfo; |
| 1589 | struct sigaction sa; |
| 1590 | sigset_t blocked_set, empty_set; |
| 1591 | int i; |
| 1592 | int n; |
| 1593 | struct rlimit rl; |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 1594 | #ifdef FREEBSD |
| 1595 | struct procfs_status pfs; |
| 1596 | #endif /* FREEBSD */ |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1597 | |
| 1598 | switch (fork()) { |
| 1599 | case -1: |
| 1600 | perror("fork"); |
| 1601 | _exit(0); |
| 1602 | case 0: |
| 1603 | break; |
| 1604 | default: |
| 1605 | return; |
| 1606 | } |
| 1607 | |
| 1608 | sa.sa_handler = interactive ? SIG_DFL : SIG_IGN; |
| 1609 | sa.sa_flags = 0; |
| 1610 | sigemptyset(&sa.sa_mask); |
| 1611 | sigaction(SIGHUP, &sa, NULL); |
| 1612 | sigaction(SIGINT, &sa, NULL); |
| 1613 | sigaction(SIGQUIT, &sa, NULL); |
| 1614 | sigaction(SIGPIPE, &sa, NULL); |
| 1615 | sigaction(SIGTERM, &sa, NULL); |
| 1616 | sa.sa_handler = wakeup_handler; |
| 1617 | sigaction(SIGUSR1, &sa, NULL); |
| 1618 | sigemptyset(&blocked_set); |
| 1619 | sigaddset(&blocked_set, SIGUSR1); |
| 1620 | sigprocmask(SIG_BLOCK, &blocked_set, NULL); |
| 1621 | sigemptyset(&empty_set); |
| 1622 | |
| 1623 | if (getrlimit(RLIMIT_NOFILE, &rl) < 0) { |
| 1624 | perror("getrlimit(RLIMIT_NOFILE, ...)"); |
| 1625 | _exit(0); |
| 1626 | } |
| 1627 | n = rl.rlim_cur; |
| 1628 | for (i = 0; i < n; i++) { |
| 1629 | if (i != pfd && i != proc_poll_pipe[1]) |
| 1630 | close(i); |
| 1631 | } |
| 1632 | |
| 1633 | pollinfo.fd = pfd; |
| 1634 | pollinfo.pid = getpid(); |
| 1635 | for (;;) { |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 1636 | #ifndef FREEBSD |
| 1637 | if (ioctl(pfd, PIOCWSTOP, NULL) < 0) |
| 1638 | #else /* FREEBSD */ |
| 1639 | if (ioctl(pfd, PIOCWSTOP, &pfs) < 0) |
| 1640 | #endif /* FREEBSD */ |
Wichert Akkerman | 9ce1a63 | 1999-08-29 23:15:07 +0000 | [diff] [blame] | 1641 | { |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1642 | switch (errno) { |
| 1643 | case EINTR: |
| 1644 | continue; |
| 1645 | case EBADF: |
| 1646 | pollinfo.revents = POLLERR; |
| 1647 | break; |
| 1648 | case ENOENT: |
| 1649 | pollinfo.revents = POLLHUP; |
| 1650 | break; |
| 1651 | default: |
| 1652 | perror("proc_poller: PIOCWSTOP"); |
| 1653 | } |
| 1654 | write(proc_poll_pipe[1], &pollinfo, sizeof(pollinfo)); |
| 1655 | _exit(0); |
| 1656 | } |
Wichert Akkerman | 9ce1a63 | 1999-08-29 23:15:07 +0000 | [diff] [blame] | 1657 | pollinfo.revents = POLLWANT; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1658 | write(proc_poll_pipe[1], &pollinfo, sizeof(pollinfo)); |
| 1659 | sigsuspend(&empty_set); |
| 1660 | } |
| 1661 | } |
| 1662 | |
| 1663 | #endif /* !HAVE_POLLABLE_PROCFS */ |
| 1664 | |
| 1665 | static int |
| 1666 | choose_pfd() |
| 1667 | { |
| 1668 | int i, j; |
| 1669 | struct tcb *tcp; |
| 1670 | |
| 1671 | static int last; |
| 1672 | |
| 1673 | if (followfork < 2 && |
Wichert Akkerman | 9ce1a63 | 1999-08-29 23:15:07 +0000 | [diff] [blame] | 1674 | last < nprocs && (pollv[last].revents & POLLWANT)) { |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1675 | /* |
| 1676 | * The previous process is ready to run again. We'll |
| 1677 | * let it do so if it is currently in a syscall. This |
| 1678 | * heuristic improves the readability of the trace. |
| 1679 | */ |
| 1680 | tcp = pfd2tcb(pollv[last].fd); |
| 1681 | if (tcp && (tcp->flags & TCB_INSYSCALL)) |
| 1682 | return pollv[last].fd; |
| 1683 | } |
| 1684 | |
| 1685 | for (i = 0; i < nprocs; i++) { |
| 1686 | /* Let competing children run round robin. */ |
| 1687 | j = (i + last + 1) % nprocs; |
| 1688 | if (pollv[j].revents & (POLLHUP | POLLERR)) { |
| 1689 | tcp = pfd2tcb(pollv[j].fd); |
| 1690 | if (!tcp) { |
| 1691 | fprintf(stderr, "strace: lost proc\n"); |
| 1692 | exit(1); |
| 1693 | } |
| 1694 | droptcb(tcp); |
| 1695 | return -1; |
| 1696 | } |
Wichert Akkerman | 9ce1a63 | 1999-08-29 23:15:07 +0000 | [diff] [blame] | 1697 | if (pollv[j].revents & POLLWANT) { |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1698 | last = j; |
| 1699 | return pollv[j].fd; |
| 1700 | } |
| 1701 | } |
| 1702 | fprintf(stderr, "strace: nothing ready\n"); |
| 1703 | exit(1); |
| 1704 | } |
| 1705 | |
| 1706 | static int |
| 1707 | trace() |
| 1708 | { |
Wichert Akkerman | 9dbf154 | 1999-11-26 13:11:29 +0000 | [diff] [blame] | 1709 | #ifdef POLL_HACK |
John Hughes | d870b3c | 2002-05-21 11:24:18 +0000 | [diff] [blame] | 1710 | struct tcb *in_syscall = NULL; |
Wichert Akkerman | 9dbf154 | 1999-11-26 13:11:29 +0000 | [diff] [blame] | 1711 | #endif |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1712 | struct tcb *tcp; |
| 1713 | int pfd; |
| 1714 | int what; |
| 1715 | int ioctl_result = 0, ioctl_errno = 0; |
Wichert Akkerman | 9ce1a63 | 1999-08-29 23:15:07 +0000 | [diff] [blame] | 1716 | long arg; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1717 | |
| 1718 | for (;;) { |
| 1719 | if (interactive) |
| 1720 | sigprocmask(SIG_SETMASK, &empty_set, NULL); |
| 1721 | |
| 1722 | if (nprocs == 0) |
| 1723 | break; |
| 1724 | |
| 1725 | switch (nprocs) { |
| 1726 | case 1: |
| 1727 | #ifndef HAVE_POLLABLE_PROCFS |
| 1728 | if (proc_poll_pipe[0] == -1) { |
| 1729 | #endif |
| 1730 | tcp = pid2tcb(0); |
| 1731 | if (!tcp) |
| 1732 | continue; |
| 1733 | pfd = tcp->pfd; |
| 1734 | if (pfd == -1) |
| 1735 | continue; |
| 1736 | break; |
| 1737 | #ifndef HAVE_POLLABLE_PROCFS |
| 1738 | } |
| 1739 | /* fall through ... */ |
| 1740 | #endif /* !HAVE_POLLABLE_PROCFS */ |
| 1741 | default: |
| 1742 | #ifdef HAVE_POLLABLE_PROCFS |
Wichert Akkerman | 9dbf154 | 1999-11-26 13:11:29 +0000 | [diff] [blame] | 1743 | #ifdef POLL_HACK |
| 1744 | /* On some systems (e.g. UnixWare) we get too much ugly |
| 1745 | "unfinished..." stuff when multiple proceses are in |
| 1746 | syscalls. Here's a nasty hack */ |
Roland McGrath | 553a609 | 2002-12-16 20:40:39 +0000 | [diff] [blame] | 1747 | |
Wichert Akkerman | 9dbf154 | 1999-11-26 13:11:29 +0000 | [diff] [blame] | 1748 | if (in_syscall) { |
| 1749 | struct pollfd pv; |
| 1750 | tcp = in_syscall; |
| 1751 | in_syscall = NULL; |
| 1752 | pv.fd = tcp->pfd; |
| 1753 | pv.events = POLLWANT; |
| 1754 | if ((what = poll (&pv, 1, 1)) < 0) { |
| 1755 | if (interrupted) |
| 1756 | return 0; |
| 1757 | continue; |
| 1758 | } |
| 1759 | else if (what == 1 && pv.revents & POLLWANT) { |
| 1760 | goto FOUND; |
| 1761 | } |
| 1762 | } |
| 1763 | #endif |
| 1764 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1765 | if (poll(pollv, nprocs, INFTIM) < 0) { |
| 1766 | if (interrupted) |
| 1767 | return 0; |
| 1768 | continue; |
| 1769 | } |
| 1770 | #else /* !HAVE_POLLABLE_PROCFS */ |
| 1771 | if (proc_poll(pollv, nprocs, INFTIM) < 0) { |
| 1772 | if (interrupted) |
| 1773 | return 0; |
| 1774 | continue; |
| 1775 | } |
| 1776 | #endif /* !HAVE_POLLABLE_PROCFS */ |
| 1777 | pfd = choose_pfd(); |
| 1778 | if (pfd == -1) |
| 1779 | continue; |
| 1780 | break; |
| 1781 | } |
| 1782 | |
| 1783 | /* Look up `pfd' in our table. */ |
| 1784 | if ((tcp = pfd2tcb(pfd)) == NULL) { |
| 1785 | fprintf(stderr, "unknown pfd: %u\n", pfd); |
| 1786 | exit(1); |
| 1787 | } |
John Hughes | b664308 | 2002-05-23 11:02:22 +0000 | [diff] [blame] | 1788 | #ifdef POLL_HACK |
Wichert Akkerman | 9dbf154 | 1999-11-26 13:11:29 +0000 | [diff] [blame] | 1789 | FOUND: |
John Hughes | b664308 | 2002-05-23 11:02:22 +0000 | [diff] [blame] | 1790 | #endif |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1791 | /* Get the status of the process. */ |
| 1792 | if (!interrupted) { |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 1793 | #ifndef FREEBSD |
Wichert Akkerman | 9ce1a63 | 1999-08-29 23:15:07 +0000 | [diff] [blame] | 1794 | ioctl_result = IOCTL_WSTOP (tcp); |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 1795 | #else /* FREEBSD */ |
| 1796 | /* Thanks to some scheduling mystery, the first poller |
| 1797 | sometimes waits for the already processed end of fork |
| 1798 | event. Doing a non blocking poll here solves the problem. */ |
| 1799 | if (proc_poll_pipe[0] != -1) |
| 1800 | ioctl_result = IOCTL_STATUS (tcp); |
| 1801 | else |
| 1802 | ioctl_result = IOCTL_WSTOP (tcp); |
Roland McGrath | 553a609 | 2002-12-16 20:40:39 +0000 | [diff] [blame] | 1803 | #endif /* FREEBSD */ |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1804 | ioctl_errno = errno; |
| 1805 | #ifndef HAVE_POLLABLE_PROCFS |
| 1806 | if (proc_poll_pipe[0] != -1) { |
| 1807 | if (ioctl_result < 0) |
| 1808 | kill(poller_pid, SIGKILL); |
| 1809 | else |
| 1810 | kill(poller_pid, SIGUSR1); |
| 1811 | } |
| 1812 | #endif /* !HAVE_POLLABLE_PROCFS */ |
| 1813 | } |
| 1814 | if (interrupted) |
| 1815 | return 0; |
| 1816 | |
| 1817 | if (interactive) |
| 1818 | sigprocmask(SIG_BLOCK, &blocked_set, NULL); |
| 1819 | |
| 1820 | if (ioctl_result < 0) { |
| 1821 | /* Find out what happened if it failed. */ |
| 1822 | switch (ioctl_errno) { |
| 1823 | case EINTR: |
| 1824 | case EBADF: |
| 1825 | continue; |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 1826 | #ifdef FREEBSD |
| 1827 | case ENOTTY: |
Roland McGrath | 553a609 | 2002-12-16 20:40:39 +0000 | [diff] [blame] | 1828 | #endif |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1829 | case ENOENT: |
| 1830 | droptcb(tcp); |
| 1831 | continue; |
| 1832 | default: |
| 1833 | perror("PIOCWSTOP"); |
| 1834 | exit(1); |
| 1835 | } |
| 1836 | } |
| 1837 | |
Wichert Akkerman | 2e4ffe5 | 2000-09-03 23:57:48 +0000 | [diff] [blame] | 1838 | #ifdef FREEBSD |
| 1839 | if ((tcp->flags & TCB_STARTUP) && (tcp->status.PR_WHY == PR_SYSEXIT)) { |
| 1840 | /* discard first event for a syscall we never entered */ |
| 1841 | IOCTL (tcp->pfd, PIOCRUN, 0); |
| 1842 | continue; |
| 1843 | } |
Roland McGrath | 553a609 | 2002-12-16 20:40:39 +0000 | [diff] [blame] | 1844 | #endif |
| 1845 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1846 | /* clear the just started flag */ |
| 1847 | tcp->flags &= ~TCB_STARTUP; |
| 1848 | |
| 1849 | /* set current output file */ |
| 1850 | outf = tcp->outf; |
| 1851 | |
| 1852 | if (cflag) { |
| 1853 | struct timeval stime; |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 1854 | #ifdef FREEBSD |
| 1855 | char buf[1024]; |
| 1856 | int len; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1857 | |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 1858 | if ((len = pread(tcp->pfd_status, buf, sizeof(buf) - 1, 0)) > 0) { |
| 1859 | buf[len] = '\0'; |
| 1860 | sscanf(buf, |
| 1861 | "%*s %*d %*d %*d %*d %*d,%*d %*s %*d,%*d %*d,%*d %ld,%ld", |
| 1862 | &stime.tv_sec, &stime.tv_usec); |
| 1863 | } else |
| 1864 | stime.tv_sec = stime.tv_usec = 0; |
Roland McGrath | 553a609 | 2002-12-16 20:40:39 +0000 | [diff] [blame] | 1865 | #else /* !FREEBSD */ |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1866 | stime.tv_sec = tcp->status.pr_stime.tv_sec; |
| 1867 | stime.tv_usec = tcp->status.pr_stime.tv_nsec/1000; |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 1868 | #endif /* !FREEBSD */ |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1869 | tv_sub(&tcp->dtime, &stime, &tcp->stime); |
| 1870 | tcp->stime = stime; |
| 1871 | } |
Wichert Akkerman | 9ce1a63 | 1999-08-29 23:15:07 +0000 | [diff] [blame] | 1872 | what = tcp->status.PR_WHAT; |
| 1873 | switch (tcp->status.PR_WHY) { |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 1874 | #ifndef FREEBSD |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1875 | case PR_REQUESTED: |
Wichert Akkerman | 9ce1a63 | 1999-08-29 23:15:07 +0000 | [diff] [blame] | 1876 | if (tcp->status.PR_FLAGS & PR_ASLEEP) { |
| 1877 | tcp->status.PR_WHY = PR_SYSENTRY; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1878 | if (trace_syscall(tcp) < 0) { |
| 1879 | fprintf(stderr, "syscall trouble\n"); |
| 1880 | exit(1); |
| 1881 | } |
| 1882 | } |
| 1883 | break; |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 1884 | #endif /* !FREEBSD */ |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1885 | case PR_SYSENTRY: |
Wichert Akkerman | 9dbf154 | 1999-11-26 13:11:29 +0000 | [diff] [blame] | 1886 | #ifdef POLL_HACK |
| 1887 | in_syscall = tcp; |
| 1888 | #endif |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1889 | case PR_SYSEXIT: |
| 1890 | if (trace_syscall(tcp) < 0) { |
| 1891 | fprintf(stderr, "syscall trouble\n"); |
| 1892 | exit(1); |
| 1893 | } |
| 1894 | break; |
| 1895 | case PR_SIGNALLED: |
| 1896 | if (!cflag && (qual_flags[what] & QUAL_SIGNAL)) { |
| 1897 | printleader(tcp); |
| 1898 | tprintf("--- %s (%s) ---", |
Nate Sammons | ce780fc | 1999-03-29 23:23:13 +0000 | [diff] [blame] | 1899 | signame(what), strsignal(what)); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1900 | printtrailer(tcp); |
John Hughes | 5826589 | 2001-10-18 15:13:53 +0000 | [diff] [blame] | 1901 | #ifdef PR_INFO |
| 1902 | if (tcp->status.PR_INFO.si_signo == what) { |
| 1903 | printleader(tcp); |
| 1904 | tprintf(" siginfo="); |
| 1905 | printsiginfo(&tcp->status.PR_INFO, 1); |
| 1906 | printtrailer(tcp); |
| 1907 | } |
| 1908 | #endif |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1909 | } |
| 1910 | break; |
| 1911 | case PR_FAULTED: |
| 1912 | if (!cflag && (qual_flags[what] & QUAL_FAULT)) { |
| 1913 | printleader(tcp); |
| 1914 | tprintf("=== FAULT %d ===", what); |
| 1915 | printtrailer(tcp); |
| 1916 | } |
| 1917 | break; |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 1918 | #ifdef FREEBSD |
| 1919 | case 0: /* handle case we polled for nothing */ |
| 1920 | continue; |
Roland McGrath | 553a609 | 2002-12-16 20:40:39 +0000 | [diff] [blame] | 1921 | #endif |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1922 | default: |
Wichert Akkerman | 9ce1a63 | 1999-08-29 23:15:07 +0000 | [diff] [blame] | 1923 | fprintf(stderr, "odd stop %d\n", tcp->status.PR_WHY); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1924 | exit(1); |
| 1925 | break; |
| 1926 | } |
Wichert Akkerman | 9ce1a63 | 1999-08-29 23:15:07 +0000 | [diff] [blame] | 1927 | arg = 0; |
Roland McGrath | 553a609 | 2002-12-16 20:40:39 +0000 | [diff] [blame] | 1928 | #ifndef FREEBSD |
Wichert Akkerman | 9ce1a63 | 1999-08-29 23:15:07 +0000 | [diff] [blame] | 1929 | if (IOCTL (tcp->pfd, PIOCRUN, &arg) < 0) { |
Roland McGrath | 553a609 | 2002-12-16 20:40:39 +0000 | [diff] [blame] | 1930 | #else |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 1931 | if (IOCTL (tcp->pfd, PIOCRUN, 0) < 0) { |
Roland McGrath | 553a609 | 2002-12-16 20:40:39 +0000 | [diff] [blame] | 1932 | #endif |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1933 | perror("PIOCRUN"); |
| 1934 | exit(1); |
| 1935 | } |
| 1936 | } |
| 1937 | return 0; |
| 1938 | } |
| 1939 | |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 1940 | #else /* !USE_PROCFS */ |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1941 | |
Roland McGrath | e85bbfe | 2003-01-09 06:53:31 +0000 | [diff] [blame] | 1942 | #ifdef TCB_GROUP_EXITING |
| 1943 | /* Handle an exit detach or death signal that is taking all the |
| 1944 | related clone threads with it. This is called in three circumstances: |
| 1945 | SIG == -1 TCP has already died (TCB_ATTACHED is clear, strace is parent). |
| 1946 | SIG == 0 Continuing TCP will perform an exit_group syscall. |
| 1947 | SIG == other Continuing TCP with SIG will kill the process. |
| 1948 | */ |
| 1949 | static int |
| 1950 | handle_group_exit(struct tcb *tcp, int sig) |
| 1951 | { |
| 1952 | /* We need to locate our records of all the clone threads |
| 1953 | related to TCP, either its children or siblings. */ |
| 1954 | struct tcb *leader = ((tcp->flags & TCB_CLONE_THREAD) |
| 1955 | ? tcp->parent |
| 1956 | : tcp->nclone_detached > 0 |
| 1957 | ? tcp : NULL); |
| 1958 | |
| 1959 | if (sig < 0) { |
Roland McGrath | 0569095 | 2004-10-20 01:00:27 +0000 | [diff] [blame] | 1960 | if (leader != NULL && leader != tcp && |
| 1961 | !(leader->flags & TCB_GROUP_EXITING)) |
Roland McGrath | e85bbfe | 2003-01-09 06:53:31 +0000 | [diff] [blame] | 1962 | fprintf(stderr, |
| 1963 | "PANIC: handle_group_exit: %d leader %d\n", |
| 1964 | tcp->pid, leader ? leader->pid : -1); |
Roland McGrath | a08a97e | 2005-08-03 11:23:46 +0000 | [diff] [blame] | 1965 | detach(tcp); /* Already died. */ |
Roland McGrath | e85bbfe | 2003-01-09 06:53:31 +0000 | [diff] [blame] | 1966 | } |
| 1967 | else { |
Roland McGrath | a08a97e | 2005-08-03 11:23:46 +0000 | [diff] [blame] | 1968 | /* Mark that we are taking the process down. */ |
| 1969 | tcp->flags |= TCB_EXITING | TCB_GROUP_EXITING; |
Roland McGrath | e85bbfe | 2003-01-09 06:53:31 +0000 | [diff] [blame] | 1970 | if (tcp->flags & TCB_ATTACHED) { |
Roland McGrath | 00dc13f | 2004-10-20 02:04:15 +0000 | [diff] [blame] | 1971 | if (leader != NULL && leader != tcp) { |
| 1972 | if (leader->flags & TCB_ATTACHED) { |
| 1973 | /* We need to detach the leader so |
| 1974 | that the process death will be |
| 1975 | reported to its real parent. |
| 1976 | But we kill it first to prevent |
| 1977 | it doing anything before we kill |
| 1978 | the whole process in a moment. |
| 1979 | We can use PTRACE_KILL on a |
| 1980 | thread that's not already |
| 1981 | stopped. Then the value we pass |
| 1982 | in PTRACE_DETACH just sets the |
| 1983 | death signal reported to the |
| 1984 | real parent. */ |
| 1985 | ptrace(PTRACE_KILL, leader->pid, 0, 0); |
| 1986 | if (debug) |
| 1987 | fprintf(stderr, |
| 1988 | " [%d exit %d kills %d]\n", |
| 1989 | tcp->pid, sig, leader->pid); |
| 1990 | detach(leader, sig); |
| 1991 | } |
| 1992 | else |
| 1993 | leader->flags |= TCB_GROUP_EXITING; |
Roland McGrath | e85bbfe | 2003-01-09 06:53:31 +0000 | [diff] [blame] | 1994 | } |
| 1995 | detach(tcp, sig); |
| 1996 | } |
| 1997 | else if (ptrace(PTRACE_CONT, tcp->pid, (char *) 1, sig) < 0) { |
| 1998 | perror("strace: ptrace(PTRACE_CONT, ...)"); |
| 1999 | cleanup(); |
| 2000 | return -1; |
| 2001 | } |
| 2002 | else { |
Roland McGrath | 0569095 | 2004-10-20 01:00:27 +0000 | [diff] [blame] | 2003 | if (leader != NULL) |
| 2004 | leader->flags |= TCB_GROUP_EXITING; |
Roland McGrath | e85bbfe | 2003-01-09 06:53:31 +0000 | [diff] [blame] | 2005 | if (leader != NULL && leader != tcp) |
| 2006 | droptcb(tcp); |
| 2007 | /* The leader will report to us as parent now, |
| 2008 | and then we'll get to the SIG==-1 case. */ |
| 2009 | return 0; |
| 2010 | } |
| 2011 | } |
| 2012 | |
Roland McGrath | e85bbfe | 2003-01-09 06:53:31 +0000 | [diff] [blame] | 2013 | return 0; |
| 2014 | } |
| 2015 | #endif |
| 2016 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 2017 | static int |
| 2018 | trace() |
| 2019 | { |
| 2020 | int pid; |
| 2021 | int wait_errno; |
| 2022 | int status; |
| 2023 | struct tcb *tcp; |
| 2024 | #ifdef LINUX |
| 2025 | struct rusage ru; |
Wichert Akkerman | 2f1d87e | 2001-03-28 14:40:14 +0000 | [diff] [blame] | 2026 | #ifdef __WALL |
| 2027 | static int wait4_options = __WALL; |
| 2028 | #endif |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 2029 | #endif /* LINUX */ |
| 2030 | |
| 2031 | while (nprocs != 0) { |
| 2032 | if (interactive) |
| 2033 | sigprocmask(SIG_SETMASK, &empty_set, NULL); |
| 2034 | #ifdef LINUX |
Wichert Akkerman | 2f1d87e | 2001-03-28 14:40:14 +0000 | [diff] [blame] | 2035 | #ifdef __WALL |
| 2036 | pid = wait4(-1, &status, wait4_options, cflag ? &ru : NULL); |
Roland McGrath | 5bc0555 | 2002-12-17 04:50:47 +0000 | [diff] [blame] | 2037 | if (pid < 0 && (wait4_options & __WALL) && errno == EINVAL) { |
Wichert Akkerman | 2f1d87e | 2001-03-28 14:40:14 +0000 | [diff] [blame] | 2038 | /* this kernel does not support __WALL */ |
| 2039 | wait4_options &= ~__WALL; |
| 2040 | errno = 0; |
| 2041 | pid = wait4(-1, &status, wait4_options, |
| 2042 | cflag ? &ru : NULL); |
| 2043 | } |
Roland McGrath | 5bc0555 | 2002-12-17 04:50:47 +0000 | [diff] [blame] | 2044 | if (pid < 0 && !(wait4_options & __WALL) && errno == ECHILD) { |
Wichert Akkerman | 2f1d87e | 2001-03-28 14:40:14 +0000 | [diff] [blame] | 2045 | /* most likely a "cloned" process */ |
| 2046 | pid = wait4(-1, &status, __WCLONE, |
| 2047 | cflag ? &ru : NULL); |
| 2048 | if (pid == -1) { |
| 2049 | fprintf(stderr, "strace: clone wait4 " |
| 2050 | "failed: %s\n", strerror(errno)); |
| 2051 | } |
| 2052 | } |
| 2053 | #else |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 2054 | pid = wait4(-1, &status, 0, cflag ? &ru : NULL); |
Wichert Akkerman | 2f1d87e | 2001-03-28 14:40:14 +0000 | [diff] [blame] | 2055 | #endif /* __WALL */ |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 2056 | #endif /* LINUX */ |
| 2057 | #ifdef SUNOS4 |
| 2058 | pid = wait(&status); |
| 2059 | #endif /* SUNOS4 */ |
| 2060 | wait_errno = errno; |
| 2061 | if (interactive) |
| 2062 | sigprocmask(SIG_BLOCK, &blocked_set, NULL); |
| 2063 | |
| 2064 | if (interrupted) |
| 2065 | return 0; |
| 2066 | |
| 2067 | if (pid == -1) { |
| 2068 | switch (wait_errno) { |
| 2069 | case EINTR: |
| 2070 | continue; |
| 2071 | case ECHILD: |
| 2072 | /* |
| 2073 | * We would like to verify this case |
| 2074 | * but sometimes a race in Solbourne's |
| 2075 | * version of SunOS sometimes reports |
| 2076 | * ECHILD before sending us SIGCHILD. |
| 2077 | */ |
| 2078 | #if 0 |
| 2079 | if (nprocs == 0) |
| 2080 | return 0; |
| 2081 | fprintf(stderr, "strace: proc miscount\n"); |
| 2082 | exit(1); |
| 2083 | #endif |
| 2084 | return 0; |
| 2085 | default: |
| 2086 | errno = wait_errno; |
| 2087 | perror("strace: wait"); |
| 2088 | return -1; |
| 2089 | } |
| 2090 | } |
| 2091 | if (debug) |
| 2092 | fprintf(stderr, " [wait(%#x) = %u]\n", status, pid); |
| 2093 | |
| 2094 | /* Look up `pid' in our table. */ |
| 2095 | if ((tcp = pid2tcb(pid)) == NULL) { |
Roland McGrath | e85bbfe | 2003-01-09 06:53:31 +0000 | [diff] [blame] | 2096 | #ifdef LINUX |
| 2097 | if (followfork || followvfork) { |
| 2098 | /* This is needed to go with the CLONE_PTRACE |
| 2099 | changes in process.c/util.c: we might see |
| 2100 | the child's initial trap before we see the |
| 2101 | parent return from the clone syscall. |
| 2102 | Leave the child suspended until the parent |
| 2103 | returns from its system call. Only then |
| 2104 | will we have the association of parent and |
| 2105 | child so that we know how to do clearbpt |
| 2106 | in the child. */ |
| 2107 | if ((tcp = alloctcb(pid)) == NULL) { |
| 2108 | fprintf(stderr, " [tcb table full]\n"); |
| 2109 | kill(pid, SIGKILL); /* XXX */ |
| 2110 | return 0; |
| 2111 | } |
| 2112 | tcp->flags |= TCB_ATTACHED | TCB_SUSPENDED; |
| 2113 | newoutf(tcp); |
| 2114 | if (!qflag) |
| 2115 | fprintf(stderr, "\ |
| 2116 | Process %d attached (waiting for parent)\n", |
| 2117 | pid); |
Wichert Akkerman | 8b1b40c | 2000-02-03 21:58:30 +0000 | [diff] [blame] | 2118 | } |
Roland McGrath | e85bbfe | 2003-01-09 06:53:31 +0000 | [diff] [blame] | 2119 | else |
| 2120 | /* This can happen if a clone call used |
| 2121 | CLONE_PTRACE itself. */ |
Wichert Akkerman | 8b1b40c | 2000-02-03 21:58:30 +0000 | [diff] [blame] | 2122 | #endif |
Roland McGrath | e85bbfe | 2003-01-09 06:53:31 +0000 | [diff] [blame] | 2123 | { |
| 2124 | fprintf(stderr, "unknown pid: %u\n", pid); |
| 2125 | if (WIFSTOPPED(status)) |
| 2126 | ptrace(PTRACE_CONT, pid, (char *) 1, 0); |
| 2127 | exit(1); |
| 2128 | } |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 2129 | } |
| 2130 | /* set current output file */ |
| 2131 | outf = tcp->outf; |
| 2132 | if (cflag) { |
| 2133 | #ifdef LINUX |
| 2134 | tv_sub(&tcp->dtime, &ru.ru_stime, &tcp->stime); |
| 2135 | tcp->stime = ru.ru_stime; |
| 2136 | #endif /* !LINUX */ |
| 2137 | } |
| 2138 | |
| 2139 | if (tcp->flags & TCB_SUSPENDED) { |
| 2140 | /* |
| 2141 | * Apparently, doing any ptrace() call on a stopped |
| 2142 | * process, provokes the kernel to report the process |
| 2143 | * status again on a subsequent wait(), even if the |
| 2144 | * process has not been actually restarted. |
| 2145 | * Since we have inspected the arguments of suspended |
| 2146 | * processes we end up here testing for this case. |
| 2147 | */ |
| 2148 | continue; |
| 2149 | } |
| 2150 | if (WIFSIGNALED(status)) { |
| 2151 | if (!cflag |
| 2152 | && (qual_flags[WTERMSIG(status)] & QUAL_SIGNAL)) { |
| 2153 | printleader(tcp); |
Roland McGrath | 2efe879 | 2004-01-13 09:59:45 +0000 | [diff] [blame] | 2154 | tprintf("+++ killed by %s %s+++", |
| 2155 | signame(WTERMSIG(status)), |
| 2156 | #ifdef WCOREDUMP |
| 2157 | WCOREDUMP(status) ? "(core dumped) " : |
| 2158 | #endif |
| 2159 | ""); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 2160 | printtrailer(tcp); |
| 2161 | } |
Roland McGrath | e85bbfe | 2003-01-09 06:53:31 +0000 | [diff] [blame] | 2162 | #ifdef TCB_GROUP_EXITING |
| 2163 | handle_group_exit(tcp, -1); |
| 2164 | #else |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 2165 | droptcb(tcp); |
Roland McGrath | e85bbfe | 2003-01-09 06:53:31 +0000 | [diff] [blame] | 2166 | #endif |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 2167 | continue; |
| 2168 | } |
| 2169 | if (WIFEXITED(status)) { |
| 2170 | if (debug) |
| 2171 | fprintf(stderr, "pid %u exited\n", pid); |
Roland McGrath | 0569095 | 2004-10-20 01:00:27 +0000 | [diff] [blame] | 2172 | if ((tcp->flags & TCB_ATTACHED) |
| 2173 | #ifdef TCB_GROUP_EXITING |
| 2174 | && !(tcp->parent && (tcp->parent->flags & |
| 2175 | TCB_GROUP_EXITING)) |
| 2176 | #endif |
| 2177 | ) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 2178 | fprintf(stderr, |
| 2179 | "PANIC: attached pid %u exited\n", |
| 2180 | pid); |
Roland McGrath | 0a39690 | 2003-06-10 03:05:53 +0000 | [diff] [blame] | 2181 | if (tcp == tcp_last) { |
| 2182 | if ((tcp->flags & (TCB_INSYSCALL|TCB_REPRINT)) |
| 2183 | == TCB_INSYSCALL) |
| 2184 | tprintf(" <unfinished ... exit status %d>\n", |
| 2185 | WEXITSTATUS(status)); |
| 2186 | tcp_last = NULL; |
| 2187 | } |
Roland McGrath | e85bbfe | 2003-01-09 06:53:31 +0000 | [diff] [blame] | 2188 | #ifdef TCB_GROUP_EXITING |
| 2189 | handle_group_exit(tcp, -1); |
| 2190 | #else |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 2191 | droptcb(tcp); |
Roland McGrath | e85bbfe | 2003-01-09 06:53:31 +0000 | [diff] [blame] | 2192 | #endif |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 2193 | continue; |
| 2194 | } |
| 2195 | if (!WIFSTOPPED(status)) { |
| 2196 | fprintf(stderr, "PANIC: pid %u not stopped\n", pid); |
| 2197 | droptcb(tcp); |
| 2198 | continue; |
| 2199 | } |
| 2200 | if (debug) |
| 2201 | fprintf(stderr, "pid %u stopped, [%s]\n", |
Nate Sammons | ce780fc | 1999-03-29 23:23:13 +0000 | [diff] [blame] | 2202 | pid, signame(WSTOPSIG(status))); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 2203 | |
| 2204 | if (tcp->flags & TCB_STARTUP) { |
| 2205 | /* |
| 2206 | * This flag is there to keep us in sync. |
| 2207 | * Next time this process stops it should |
| 2208 | * really be entering a system call. |
| 2209 | */ |
| 2210 | tcp->flags &= ~TCB_STARTUP; |
| 2211 | if (tcp->flags & TCB_ATTACHED) { |
| 2212 | /* |
| 2213 | * Interestingly, the process may stop |
| 2214 | * with STOPSIG equal to some other signal |
| 2215 | * than SIGSTOP if we happend to attach |
| 2216 | * just before the process takes a signal. |
| 2217 | */ |
| 2218 | if (!WIFSTOPPED(status)) { |
| 2219 | fprintf(stderr, |
| 2220 | "pid %u not stopped\n", pid); |
| 2221 | detach(tcp, WSTOPSIG(status)); |
| 2222 | continue; |
| 2223 | } |
| 2224 | } |
| 2225 | else { |
| 2226 | #ifdef SUNOS4 |
| 2227 | /* A child of us stopped at exec */ |
| 2228 | if (WSTOPSIG(status) == SIGTRAP && followvfork) |
| 2229 | fixvfork(tcp); |
| 2230 | #endif /* SUNOS4 */ |
| 2231 | } |
| 2232 | if (tcp->flags & TCB_BPTSET) { |
| 2233 | if (clearbpt(tcp) < 0) /* Pretty fatal */ { |
| 2234 | droptcb(tcp); |
| 2235 | cleanup(); |
| 2236 | return -1; |
| 2237 | } |
| 2238 | } |
| 2239 | goto tracing; |
| 2240 | } |
| 2241 | |
| 2242 | if (WSTOPSIG(status) != SIGTRAP) { |
| 2243 | if (WSTOPSIG(status) == SIGSTOP && |
| 2244 | (tcp->flags & TCB_SIGTRAPPED)) { |
| 2245 | /* |
| 2246 | * Trapped attempt to block SIGTRAP |
| 2247 | * Hope we are back in control now. |
| 2248 | */ |
| 2249 | tcp->flags &= ~(TCB_INSYSCALL | TCB_SIGTRAPPED); |
| 2250 | if (ptrace(PTRACE_SYSCALL, |
| 2251 | pid, (char *) 1, 0) < 0) { |
| 2252 | perror("trace: ptrace(PTRACE_SYSCALL, ...)"); |
| 2253 | cleanup(); |
| 2254 | return -1; |
| 2255 | } |
| 2256 | continue; |
| 2257 | } |
| 2258 | if (!cflag |
| 2259 | && (qual_flags[WSTOPSIG(status)] & QUAL_SIGNAL)) { |
Wichert Akkerman | 7b3346b | 2001-10-09 23:47:38 +0000 | [diff] [blame] | 2260 | unsigned long addr = 0, pc = 0; |
| 2261 | #ifdef PT_GETSIGINFO |
| 2262 | # define PSR_RI 41 |
| 2263 | struct siginfo si; |
| 2264 | unsigned long psr; |
| 2265 | |
| 2266 | upeek(pid, PT_CR_IPSR, &psr); |
| 2267 | upeek(pid, PT_CR_IIP, &pc); |
| 2268 | |
| 2269 | pc += (psr >> PSR_RI) & 0x3; |
| 2270 | ptrace(PT_GETSIGINFO, pid, 0, (long) &si); |
| 2271 | addr = (unsigned long) si.si_addr; |
Roland McGrath | 3a055d7 | 2005-03-06 22:24:29 +0000 | [diff] [blame] | 2272 | #elif defined PTRACE_GETSIGINFO |
| 2273 | if (WSTOPSIG(status) == SIGSEGV || |
| 2274 | WSTOPSIG(status) == SIGBUS) { |
| 2275 | siginfo_t si; |
| 2276 | if (ptrace(PTRACE_GETSIGINFO, pid, |
| 2277 | 0, &si) == 0) |
| 2278 | addr = (unsigned long) |
| 2279 | si.si_addr; |
| 2280 | } |
Wichert Akkerman | 7b3346b | 2001-10-09 23:47:38 +0000 | [diff] [blame] | 2281 | #endif |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 2282 | printleader(tcp); |
Wichert Akkerman | 7b3346b | 2001-10-09 23:47:38 +0000 | [diff] [blame] | 2283 | tprintf("--- %s (%s) @ %lx (%lx) ---", |
Nate Sammons | ce780fc | 1999-03-29 23:23:13 +0000 | [diff] [blame] | 2284 | signame(WSTOPSIG(status)), |
Wichert Akkerman | 7b3346b | 2001-10-09 23:47:38 +0000 | [diff] [blame] | 2285 | strsignal(WSTOPSIG(status)), pc, addr); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 2286 | printtrailer(tcp); |
| 2287 | } |
Roland McGrath | 0569095 | 2004-10-20 01:00:27 +0000 | [diff] [blame] | 2288 | if (((tcp->flags & TCB_ATTACHED) || |
| 2289 | tcp->nclone_threads > 0) && |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 2290 | !sigishandled(tcp, WSTOPSIG(status))) { |
Roland McGrath | e85bbfe | 2003-01-09 06:53:31 +0000 | [diff] [blame] | 2291 | #ifdef TCB_GROUP_EXITING |
| 2292 | handle_group_exit(tcp, WSTOPSIG(status)); |
| 2293 | #else |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 2294 | detach(tcp, WSTOPSIG(status)); |
Roland McGrath | e85bbfe | 2003-01-09 06:53:31 +0000 | [diff] [blame] | 2295 | #endif |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 2296 | continue; |
| 2297 | } |
| 2298 | if (ptrace(PTRACE_SYSCALL, pid, (char *) 1, |
| 2299 | WSTOPSIG(status)) < 0) { |
| 2300 | perror("trace: ptrace(PTRACE_SYSCALL, ...)"); |
| 2301 | cleanup(); |
| 2302 | return -1; |
| 2303 | } |
| 2304 | tcp->flags &= ~TCB_SUSPENDED; |
| 2305 | continue; |
| 2306 | } |
| 2307 | if (trace_syscall(tcp) < 0) { |
| 2308 | if (tcp->flags & TCB_ATTACHED) |
| 2309 | detach(tcp, 0); |
| 2310 | else { |
| 2311 | ptrace(PTRACE_KILL, |
| 2312 | tcp->pid, (char *) 1, SIGTERM); |
| 2313 | droptcb(tcp); |
| 2314 | } |
| 2315 | continue; |
| 2316 | } |
| 2317 | if (tcp->flags & TCB_EXITING) { |
Roland McGrath | e85bbfe | 2003-01-09 06:53:31 +0000 | [diff] [blame] | 2318 | #ifdef TCB_GROUP_EXITING |
| 2319 | if (tcp->flags & TCB_GROUP_EXITING) { |
| 2320 | if (handle_group_exit(tcp, 0) < 0) |
| 2321 | return -1; |
| 2322 | continue; |
| 2323 | } |
| 2324 | #endif |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 2325 | if (tcp->flags & TCB_ATTACHED) |
| 2326 | detach(tcp, 0); |
| 2327 | else if (ptrace(PTRACE_CONT, pid, (char *) 1, 0) < 0) { |
| 2328 | perror("strace: ptrace(PTRACE_CONT, ...)"); |
| 2329 | cleanup(); |
| 2330 | return -1; |
| 2331 | } |
| 2332 | continue; |
| 2333 | } |
| 2334 | if (tcp->flags & TCB_SUSPENDED) { |
| 2335 | if (!qflag) |
| 2336 | fprintf(stderr, "Process %u suspended\n", pid); |
| 2337 | continue; |
| 2338 | } |
| 2339 | tracing: |
| 2340 | if (ptrace(PTRACE_SYSCALL, pid, (char *) 1, 0) < 0) { |
| 2341 | perror("trace: ptrace(PTRACE_SYSCALL, ...)"); |
| 2342 | cleanup(); |
| 2343 | return -1; |
| 2344 | } |
| 2345 | } |
| 2346 | return 0; |
| 2347 | } |
| 2348 | |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 2349 | #endif /* !USE_PROCFS */ |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 2350 | |
| 2351 | static int curcol; |
| 2352 | |
| 2353 | #ifdef __STDC__ |
| 2354 | #include <stdarg.h> |
| 2355 | #define VA_START(a, b) va_start(a, b) |
| 2356 | #else |
| 2357 | #include <varargs.h> |
| 2358 | #define VA_START(a, b) va_start(a) |
| 2359 | #endif |
| 2360 | |
| 2361 | void |
| 2362 | #ifdef __STDC__ |
| 2363 | tprintf(const char *fmt, ...) |
| 2364 | #else |
| 2365 | tprintf(fmt, va_alist) |
| 2366 | char *fmt; |
| 2367 | va_dcl |
| 2368 | #endif |
| 2369 | { |
| 2370 | va_list args; |
| 2371 | |
| 2372 | VA_START(args, fmt); |
Roland McGrath | b310a0c | 2003-11-06 23:41:22 +0000 | [diff] [blame] | 2373 | if (outf) { |
| 2374 | int n = vfprintf(outf, fmt, args); |
| 2375 | if (n < 0 && outf != stderr) |
| 2376 | perror(outfname == NULL |
| 2377 | ? "<writing to pipe>" : outfname); |
| 2378 | else |
| 2379 | curcol += n; |
| 2380 | } |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 2381 | va_end(args); |
| 2382 | return; |
| 2383 | } |
| 2384 | |
| 2385 | void |
| 2386 | printleader(tcp) |
| 2387 | struct tcb *tcp; |
| 2388 | { |
| 2389 | if (tcp_last && (!outfname || followfork < 2 || tcp_last == tcp)) { |
| 2390 | tcp_last->flags |= TCB_REPRINT; |
| 2391 | tprintf(" <unfinished ...>\n"); |
| 2392 | } |
| 2393 | curcol = 0; |
| 2394 | if ((followfork == 1 || pflag_seen > 1) && outfname) |
| 2395 | tprintf("%-5d ", tcp->pid); |
| 2396 | else if (nprocs > 1 && !outfname) |
| 2397 | tprintf("[pid %5u] ", tcp->pid); |
| 2398 | if (tflag) { |
| 2399 | char str[sizeof("HH:MM:SS")]; |
| 2400 | struct timeval tv, dtv; |
| 2401 | static struct timeval otv; |
| 2402 | |
| 2403 | gettimeofday(&tv, NULL); |
| 2404 | if (rflag) { |
| 2405 | if (otv.tv_sec == 0) |
| 2406 | otv = tv; |
| 2407 | tv_sub(&dtv, &tv, &otv); |
| 2408 | tprintf("%6ld.%06ld ", |
| 2409 | (long) dtv.tv_sec, (long) dtv.tv_usec); |
| 2410 | otv = tv; |
| 2411 | } |
| 2412 | else if (tflag > 2) { |
| 2413 | tprintf("%ld.%06ld ", |
| 2414 | (long) tv.tv_sec, (long) tv.tv_usec); |
| 2415 | } |
| 2416 | else { |
| 2417 | time_t local = tv.tv_sec; |
| 2418 | strftime(str, sizeof(str), "%T", localtime(&local)); |
| 2419 | if (tflag > 1) |
| 2420 | tprintf("%s.%06ld ", str, (long) tv.tv_usec); |
| 2421 | else |
| 2422 | tprintf("%s ", str); |
| 2423 | } |
| 2424 | } |
| 2425 | if (iflag) |
| 2426 | printcall(tcp); |
| 2427 | } |
| 2428 | |
| 2429 | void |
| 2430 | tabto(col) |
| 2431 | int col; |
| 2432 | { |
| 2433 | if (curcol < col) |
| 2434 | tprintf("%*s", col - curcol, ""); |
| 2435 | } |
| 2436 | |
| 2437 | void |
| 2438 | printtrailer(tcp) |
| 2439 | struct tcb *tcp; |
| 2440 | { |
| 2441 | tprintf("\n"); |
| 2442 | tcp_last = NULL; |
| 2443 | } |
Wichert Akkerman | 9ce1a63 | 1999-08-29 23:15:07 +0000 | [diff] [blame] | 2444 | |
Wichert Akkerman | ea78f0f | 1999-11-29 15:34:02 +0000 | [diff] [blame] | 2445 | #ifdef HAVE_MP_PROCFS |
Wichert Akkerman | 9ce1a63 | 1999-08-29 23:15:07 +0000 | [diff] [blame] | 2446 | |
| 2447 | int mp_ioctl (int fd, int cmd, void *arg, int size) { |
| 2448 | |
| 2449 | struct iovec iov[2]; |
| 2450 | int n = 1; |
Roland McGrath | 553a609 | 2002-12-16 20:40:39 +0000 | [diff] [blame] | 2451 | |
Wichert Akkerman | 9ce1a63 | 1999-08-29 23:15:07 +0000 | [diff] [blame] | 2452 | iov[0].iov_base = &cmd; |
| 2453 | iov[0].iov_len = sizeof cmd; |
| 2454 | if (arg) { |
| 2455 | ++n; |
| 2456 | iov[1].iov_base = arg; |
| 2457 | iov[1].iov_len = size; |
| 2458 | } |
Roland McGrath | 553a609 | 2002-12-16 20:40:39 +0000 | [diff] [blame] | 2459 | |
Wichert Akkerman | 9ce1a63 | 1999-08-29 23:15:07 +0000 | [diff] [blame] | 2460 | return writev (fd, iov, n); |
| 2461 | } |
| 2462 | |
| 2463 | #endif |