blob: b1bc2010cc6aabe56c9c29c1fc7602e5dd3253e9 [file] [log] [blame]
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001/*
2 * Copyright (c) 1991, 1992 Paul Kranenburg <pk@cs.few.eur.nl>
3 * Copyright (c) 1993 Branko Lankester <branko@hacktic.nl>
4 * Copyright (c) 1993, 1994, 1995, 1996 Rick Sladkey <jrs@world.std.com>
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. The name of the author may not be used to endorse or promote products
16 * derived from this software without specific prior written permission.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 *
29 * $Id$
30 */
31
Wichert Akkermanb859bea1999-04-18 22:50:50 +000032#ifdef linux
33#include <features.h>
34#endif
35
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000036#ifdef HAVE_CONFIG_H
37#include "config.h"
38#endif
39
40/* configuration section */
41#ifndef MAX_QUALS
Wichert Akkermanfd89ced2000-04-13 17:06:09 +000042#if defined(linux) && defined(MIPS)
43#define MAX_QUALS 4999 /* maximum number of syscalls, signals, etc. */
44#else
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +000045#define MAX_QUALS 2048 /* maximum number of syscalls, signals, etc. */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000046#endif
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +000047#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000048#ifndef MAX_PROCS
Wichert Akkermanfaf72222000-02-19 23:59:03 +000049#define MAX_PROCS 64 /* maximum number of processes tracable */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000050#endif
51#ifndef DEFAULT_STRLEN
52#define DEFAULT_STRLEN 32 /* default maximum # of bytes printed in
53 `printstr', change with `-s' switch */
54#endif
55#ifndef DEFAULT_ACOLUMN
56#define DEFAULT_ACOLUMN 40 /* default alignment column for results */
57#endif
58#ifndef MAX_ARGS
59#define MAX_ARGS 32 /* maximum number of args to a syscall */
60#endif
61#ifndef DEFAULT_SORTBY
62#define DEFAULT_SORTBY "time" /* default sorting method for call profiling */
63#endif
64
65#include <sys/types.h>
66#include <unistd.h>
67#include <stdlib.h>
68#include <stdio.h>
69#include <ctype.h>
70#include <string.h>
Wichert Akkerman8c7122c2001-02-16 19:59:55 +000071#include <time.h>
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000072#include <sys/time.h>
73#include <errno.h>
74
75#ifdef STDC_HEADERS
76#include <stddef.h>
77#endif /* STDC_HEADERS */
78
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +000079#if defined(LINUX)
80# if defined(SPARC)
81# define LINUXSPARC
82# endif
83# if defined(ALPHA)
84# define LINUX_64BIT
85# endif
86#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000087
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +000088#if defined(SVR4) || defined(FREEBSD)
89#define USE_PROCFS
90#else
91#undef USE_PROCFS
92#endif
93
94#ifdef FREEBSD
95#ifndef I386
96#error "FreeBSD support is only for i386 arch right now."
97#endif
98#include <machine/psl.h>
99#include <machine/reg.h>
100#include <sys/syscall.h>
101#endif
102
103#ifdef USE_PROCFS
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000104#include <sys/procfs.h>
Wichert Akkermanea78f0f1999-11-29 15:34:02 +0000105#ifdef HAVE_MP_PROCFS
Wichert Akkerman9ce1a631999-08-29 23:15:07 +0000106#include <sys/uio.h>
107#endif
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000108#ifdef FREEBSD
109#include <sys/pioctl.h>
110#endif /* FREEBSD */
111#else /* !USE_PROCFS */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000112#if defined(LINUXSPARC) && defined(__GLIBC__)
113#include <sys/ptrace.h>
114#else
115/* Work around awkward prototype in ptrace.h. */
116#define ptrace xptrace
117#include <sys/ptrace.h>
118#undef ptrace
119#ifdef POWERPC
120#define __KERNEL__
121#include <asm/ptrace.h>
122#undef __KERNEL__
123/* TEMP */
124#define UESP PT_R1
125#define EIP PT_NIP
126#define EAX PT_R3
127#define ORIG_EAX PT_ORIG_R3
128#endif
129#ifdef __STDC__
130#ifdef LINUX
131extern long ptrace(int, int, char *, long);
132#else /* !LINUX */
133extern int ptrace(int, int, char *, int, ...);
134#endif /* !LINUX */
135#else /* !__STDC__ */
136extern int ptrace();
137#endif /* !__STDC__ */
138#endif /* !LINUXSPARC */
139#endif /* !SVR4 */
140
141#ifdef LINUX
Wichert Akkermanb859bea1999-04-18 22:50:50 +0000142#if !defined(__GLIBC__)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000143#define PTRACE_PEEKUSER PTRACE_PEEKUSR
144#define PTRACE_POKEUSER PTRACE_POKEUSR
145#endif
146#ifdef ALPHA
Wichert Akkermanf90da011999-10-31 21:15:38 +0000147# define REG_R0 0
148# define REG_A0 16
149# define REG_A3 19
150# define REG_FP 30
151# define REG_PC 64
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000152#endif /* ALPHA */
Wichert Akkermanf90da011999-10-31 21:15:38 +0000153#ifdef MIPS
154# define REG_V0 2
155# define REG_A0 4
156# define REG_A3 7
157# define REG_SP 29
158# define REG_EPC 64
159#endif /* MIPS */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000160#endif /* LINUX */
161
162#define SUPPORTED_PERSONALITIES 1
163#define DEFAULT_PERSONALITY 0
164
165#ifdef LINUXSPARC
166#include <linux/a.out.h>
167#include <asm/psr.h>
168#undef SUPPORTED_PERSONALITIES
Wichert Akkermanb859bea1999-04-18 22:50:50 +0000169#define SUPPORTED_PERSONALITIES 2
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000170#endif /* LINUXSPARC */
171
Wichert Akkerman9ce1a631999-08-29 23:15:07 +0000172
173#ifdef SVR4
Wichert Akkermanea78f0f1999-11-29 15:34:02 +0000174#ifdef HAVE_MP_PROCFS
Wichert Akkerman9ce1a631999-08-29 23:15:07 +0000175extern int mp_ioctl (int f, int c, void *a, int s);
176#define IOCTL(f,c,a) mp_ioctl (f, c, a, sizeof *a)
177#define IOCTL_STATUS(t) \
178 pread (t->pfd_stat, &t->status, sizeof t->status, 0)
179#define IOCTL_WSTOP(t) \
Wichert Akkerman16a03d22000-08-10 02:14:04 +0000180 (IOCTL (t->pfd, PCWSTOP, (char *)NULL) < 0 ? -1 : \
Wichert Akkerman9ce1a631999-08-29 23:15:07 +0000181 IOCTL_STATUS (t))
182#define PR_WHY pr_lwp.pr_why
183#define PR_WHAT pr_lwp.pr_what
184#define PR_REG pr_lwp.pr_context.uc_mcontext.gregs
185#define PR_FLAGS pr_lwp.pr_flags
186#define PIOCSTIP PCSTOP
187#define PIOCSET PCSET
188#define PIOCRESET PCRESET
189#define PIOCSTRACE PCSTRACE
190#define PIOCSFAULT PCSFAULT
191#define PIOCWSTOP PCWSTOP
192#define PIOCSTOP PCSTOP
193#define PIOCSENTRY PCSENTRY
194#define PIOCSEXIT PCSEXIT
195#define PIOCRUN PCRUN
196#else
197#define IOCTL ioctl
198#define IOCTL_STATUS(t) ioctl (t->pfd, PIOCSTATUS, &t->status)
199#define IOCTL_WSTOP(t) ioctl (t->pfd, PIOCWSTOP, &t->status)
200#define PR_WHY pr_why
201#define PR_WHAT pr_what
202#define PR_REG pr_reg
203#define PR_FLAGS pr_flags
204#endif
205#endif
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000206#ifdef FREEBSD
207#define IOCTL ioctl
208#define IOCTL_STATUS(t) ioctl (t->pfd, PIOCSTATUS, &t->status)
209#define IOCTL_WSTOP(t) ioctl (t->pfd, PIOCWAIT, &t->status)
210#define PIOCRUN PIOCCONT
211#define PIOCWSTOP PIOCWAIT
212#define PR_WHY why
213#define PR_WHAT val
Wichert Akkerman2e4ffe52000-09-03 23:57:48 +0000214#define PR_FLAGS state
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000215/* from /usr/src/sys/miscfs/procfs/procfs_vnops.c,
216 status.state = 0 for running, 1 for stopped */
Wichert Akkerman2e4ffe52000-09-03 23:57:48 +0000217#define PR_ASLEEP 1
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000218#define PR_SYSENTRY S_SCE
219#define PR_SYSEXIT S_SCX
220#define PR_SIGNALLED S_SIG
221#define PR_FAULTED S_CORE
222#endif
Wichert Akkerman9ce1a631999-08-29 23:15:07 +0000223
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000224/* Trace Control Block */
225struct tcb {
226 short flags; /* See below for TCB_ values */
227 int pid; /* Process Id of this entry */
228 long scno; /* System call number */
229 int u_nargs; /* System call arguments */
230 long u_arg[MAX_ARGS]; /* System call arguments */
231 int u_error; /* Error code */
232 long u_rval; /* (first) return value */
Wichert Akkerman16a03d22000-08-10 02:14:04 +0000233#ifdef HAVE_LONG_LONG
234 long long u_lrval; /* long long return value */
235#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000236 FILE *outf; /* Output file for this process */
Wichert Akkerman43a74822000-06-27 17:33:32 +0000237 const char *auxstr; /* Auxiliary info from syscall (see RVAL_STR) */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000238 struct timeval stime; /* System time usage as of last process wait */
239 struct timeval dtime; /* Delta for system time usage */
240 struct timeval etime; /* Syscall entry time */
241 /* Support for tracing forked processes */
242 struct tcb *parent; /* Parent of this process */
243 int nchildren; /* # of traced children */
244 int waitpid; /* pid(s) this process is waiting for */
245 /* (1st arg of wait4()) */
246 long baddr; /* `Breakpoint' address */
247 long inst[2]; /* Instructions on above */
248 int pfd; /* proc file descriptor */
249#ifdef SVR4
Wichert Akkermanea78f0f1999-11-29 15:34:02 +0000250#ifdef HAVE_MP_PROCFS
Wichert Akkerman9ce1a631999-08-29 23:15:07 +0000251 int pfd_stat;
252 int pfd_as;
253 pstatus_t status;
254#else
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000255 prstatus_t status; /* procfs status structure */
256#endif
Wichert Akkerman9ce1a631999-08-29 23:15:07 +0000257#endif
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000258#ifdef FREEBSD
259 struct procfs_status status;
260 int pfd_reg;
261 int pfd_status;
262#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000263};
264
265/* TCB flags */
266#define TCB_STARTUP 00001 /* We have just begun ptracing this process */
267#define TCB_INUSE 00002 /* This table entry is in use */
268#define TCB_INSYSCALL 00004 /* A system call is in progress */
269#define TCB_ATTACHED 00010 /* Process is not our own child */
270#define TCB_EXITING 00020 /* As far as we know, this process is exiting */
271#define TCB_SUSPENDED 00040 /* Process has done a wait(4), that can
272 not be allowed to complete just now */
273#define TCB_BPTSET 00100 /* "Breakpoint" set after fork(2) */
274#define TCB_SIGTRAPPED 00200 /* Process wanted to block SIGTRAP */
275#define TCB_FOLLOWFORK 00400 /* Process should have forks followed */
276#define TCB_REPRINT 01000 /* We should reprint this syscall on exit */
277#ifdef LINUX
278#if defined(ALPHA) || defined(SPARC) || defined(POWERPC)
279#define TCB_WAITEXECVE 02000 /* ignore SIGTRAP after exceve */
280#endif /* ALPHA */
281#endif /* LINUX */
282
283/* qualifier flags */
284#define QUAL_TRACE 0001 /* this system call should be traced */
285#define QUAL_ABBREV 0002 /* abbreviate the structures of this syscall */
286#define QUAL_VERBOSE 0004 /* decode the structures of this syscall */
287#define QUAL_RAW 0010 /* print all args in hex for this syscall */
288#define QUAL_SIGNAL 0020 /* report events with this signal */
289#define QUAL_FAULT 0040 /* report events with this fault */
290#define QUAL_READ 0100 /* dump data read on this file descriptor */
291#define QUAL_WRITE 0200 /* dump data written to this file descriptor */
292
293#define entering(tcp) (!((tcp)->flags & TCB_INSYSCALL))
294#define exiting(tcp) ((tcp)->flags & TCB_INSYSCALL)
295#define syserror(tcp) ((tcp)->u_error != 0)
296#define verbose(tcp) (qual_flags[(tcp)->scno] & QUAL_VERBOSE)
297#define abbrev(tcp) (qual_flags[(tcp)->scno] & QUAL_ABBREV)
298#define waiting_parent(tcp) \
299 (tcp->parent && \
300 (tcp->parent->flags & TCB_SUSPENDED) && \
301 (tcp->parent->waitpid <= 0 || tcp->parent->waitpid == tcp->pid))
302
303struct xlat {
304 int val;
305 char *str;
306};
307
308/* Format of syscall return values */
309#define RVAL_DECIMAL 000 /* decimal format */
310#define RVAL_HEX 001 /* hex format */
311#define RVAL_OCTAL 002 /* octal format */
312#define RVAL_UDECIMAL 003 /* unsigned decimal format */
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000313#define RVAL_LDECIMAL 004 /* long decimal format */
314#define RVAL_LHEX 005 /* long hex format */
315#define RVAL_LOCTAL 006 /* long octal format */
316#define RVAL_LUDECIMAL 007 /* long unsigned decimal format */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000317#define RVAL_MASK 007 /* mask for these values */
318
319#define RVAL_STR 010 /* Print `auxstr' field after return val */
320#define RVAL_NONE 020 /* Print nothing */
321
322#ifndef offsetof
323#define offsetof(type, member) (((char *) &(((type *) NULL)->member)) - \
324 ((char *) (type *) NULL))
325#endif /* !offsetof */
326
327/* get offset of member within a user struct */
328#define uoff(member) offsetof(struct user, member)
329
330#define TRACE_FILE 001 /* Trace file-related syscalls. */
331#define TRACE_IPC 002 /* Trace IPC-related syscalls. */
332#define TRACE_NETWORK 004 /* Trace network-related syscalls. */
333#define TRACE_PROCESS 010 /* Trace process-related syscalls. */
334#define TRACE_SIGNAL 020 /* Trace signal-related syscalls. */
335
336extern struct tcb tcbtab[];
337extern int qual_flags[];
338extern int debug, followfork, followvfork;
339extern int rflag, tflag, dtime, cflag, xflag, qflag;
340extern int acolumn;
341extern char *outfname;
342extern int nprocs;
343extern int max_strlen;
344extern struct tcb *tcp_last;
345
346#ifdef __STDC__
347#define P(args) args
348#else
349#define P(args) ()
350#endif
351
352extern int set_personality P((int personality));
353extern char *xlookup P((struct xlat *, int));
354extern struct tcb *alloctcb P((int));
355extern void droptcb P((struct tcb *));
356
357extern void set_sortby P((char *));
358extern void set_overhead P((int));
359extern void qualify P((char *));
360extern void newoutf P((struct tcb *));
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000361extern int get_scno P((struct tcb *));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000362extern int trace_syscall P((struct tcb *));
363extern void printxval P((struct xlat *, int, char *));
364extern int printargs P((struct tcb *));
365extern int addflags P((struct xlat *, int));
366extern int printflags P((struct xlat *, int));
367extern int umoven P((struct tcb *, long, int, char *));
368extern int umovestr P((struct tcb *, long, int, char *));
369extern int upeek P((int, long, long *));
370extern void dumpstr P((struct tcb *, long, int));
371extern void string_quote P((char *str));
372extern void printstr P((struct tcb *, long, int));
373extern void printnum P((struct tcb *, long, char *));
374extern void printpath P((struct tcb *, long));
375extern void printpathn P((struct tcb *, long, int));
376extern void printtv P((struct tcb *, long));
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +0000377extern void printsock P((struct tcb *, long, int));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000378extern void printrusage P((struct tcb *, long));
379extern int clearbpt P((struct tcb *));
380extern int setbpt P((struct tcb *));
381extern int sigishandled P((struct tcb *, int));
382extern void printcall P((struct tcb *));
Nate Sammonsce780fc1999-03-29 23:23:13 +0000383extern char *signame P((int));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000384extern void printsignal P((int));
385extern void printleader P((struct tcb *));
386extern void printtrailer P((struct tcb *));
387extern void tabto P((int));
388extern void call_summary P((FILE *));
389extern void fake_execve P((struct tcb *, char *, char *[], char *[]));
Wichert Akkerman221f54f1999-11-18 17:26:45 +0000390extern void printtv32 P((struct tcb*, long));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000391
Wichert Akkerman7a0b6491999-12-23 15:08:17 +0000392#ifdef LINUX
393extern int internal_clone P((struct tcb *));
394#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000395extern int internal_fork P((struct tcb *));
396extern int internal_exec P((struct tcb *));
397extern int internal_wait P((struct tcb *));
398extern int internal_exit P((struct tcb *));
399
400extern char *ioctl_lookup P((long));
401extern int ioctl_decode P((struct tcb *, long, long));
402extern int term_ioctl P((struct tcb *, long, long));
403extern int sock_ioctl P((struct tcb *, long, long));
404extern int proc_ioctl P((struct tcb *, int, int));
405extern int stream_ioctl P((struct tcb *, int, int));
406
407extern void tv_tv P((struct timeval *, int, int));
408extern int tv_nz P((struct timeval *));
409extern int tv_cmp P((struct timeval *, struct timeval *));
410extern double tv_float P((struct timeval *));
411extern void tv_add P((struct timeval *, struct timeval *, struct timeval *));
412extern void tv_sub P((struct timeval *, struct timeval *, struct timeval *));
413extern void tv_mul P((struct timeval *, struct timeval *, int));
414extern void tv_div P((struct timeval *, struct timeval *, int));
415
416#ifdef SUNOS4
417extern int fixvfork P((struct tcb *));
418#endif
419#if !(defined(LINUX) && !defined(SPARC))
420extern long getrval2 P((struct tcb *));
421#endif
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000422#ifdef USE_PROCFS
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000423extern int proc_open P((struct tcb *tcp, int attaching));
424#endif
425
426#define umove(pid, addr, objp) \
427 umoven((pid), (addr), sizeof *(objp), (char *) (objp))
428
429#ifdef __STDC__
430#ifdef __GNUC__
431extern void tprintf(const char *fmt, ...)
432 __attribute__ ((format (printf, 1, 2)));
433#else
434extern void tprintf(const char *fmt, ...);
435#endif
436#else
437extern void tprintf();
438#endif
439
440#ifndef HAVE_STRERROR
441const char *strerror P((int));
442#endif
443#ifndef HAVE_STRSIGNAL
444const char *strsignal P((int));
445#endif
446
447extern int current_personality;
448
449struct sysent {
450 int nargs;
451 int sys_flags;
452 int (*sys_func)();
453 char *sys_name;
454};
455
456extern struct sysent *sysent;
457extern int nsyscalls;
458
459extern char **errnoent;
460extern int nerrnos;
461
462struct ioctlent {
463 char *doth;
464 char *symbol;
465 unsigned long code;
466};
467
468extern struct ioctlent *ioctlent;
469extern int nioctlent;
470
471extern char **signalent;
472extern int nsignals;
473
474extern struct ioctlent *ioctlent;
475extern int nioctlents;
476extern char **signalent;
477extern int nsignals;
478
479extern struct ioctlent ioctlent0[];
480extern int nioctlents0;
481extern char *signalent0[];
482extern int nsignals0;
483
484#if SUPPORTED_PERSONALITIES >= 2
485extern struct ioctlent ioctlent1[];
486extern int nioctlents1;
487extern char *signalent1[];
488extern int nsignals1;
489#endif /* SUPPORTED_PERSONALITIES >= 2 */
490
491#if SUPPORTED_PERSONALITIES >= 3
492extern struct ioctlent ioctlent2[];
493extern int nioctlents2;
494extern char *signalent2[];
495extern int nsignals2;
496#endif /* SUPPORTED_PERSONALITIES >= 3 */