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