blob: e5e920b239b131253304e0b34f821a8db1e8e9b5 [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
Roland McGrath795edb12005-02-02 04:44:57 +000032#ifdef HAVE_CONFIG_H
33#include "config.h"
34#endif
35
Roland McGrath542c2c62008-05-20 01:11:56 +000036#ifdef MIPS
37#include <sgidefs.h>
38#endif
39
Wichert Akkermanb859bea1999-04-18 22:50:50 +000040#ifdef linux
41#include <features.h>
42#endif
43
Roland McGrathe6d3a292003-01-14 09:46:18 +000044#ifdef _LARGEFILE64_SOURCE
45/* This is the macro everything checks before using foo64 names. */
46# ifndef _LFS64_LARGEFILE
47# define _LFS64_LARGEFILE 1
48# endif
49#endif
50
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000051/* configuration section */
52#ifndef MAX_QUALS
Roland McGrath63d01462002-12-30 00:25:36 +000053#if defined(LINUX) && defined(MIPS)
Roland McGrath542c2c62008-05-20 01:11:56 +000054#define MAX_QUALS 7000 /* maximum number of syscalls, signals, etc. */
Wichert Akkermanfd89ced2000-04-13 17:06:09 +000055#else
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +000056#define MAX_QUALS 2048 /* maximum number of syscalls, signals, etc. */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000057#endif
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +000058#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000059#ifndef DEFAULT_STRLEN
60#define DEFAULT_STRLEN 32 /* default maximum # of bytes printed in
61 `printstr', change with `-s' switch */
62#endif
63#ifndef DEFAULT_ACOLUMN
64#define DEFAULT_ACOLUMN 40 /* default alignment column for results */
65#endif
66#ifndef MAX_ARGS
Dmitry V. Levin67874d82009-10-05 23:32:39 +000067# ifdef HPPA
68# define MAX_ARGS 6 /* maximum number of args to a syscall */
69# else
70# define MAX_ARGS 32 /* maximum number of args to a syscall */
71# endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000072#endif
73#ifndef DEFAULT_SORTBY
74#define DEFAULT_SORTBY "time" /* default sorting method for call profiling */
75#endif
76
77#include <sys/types.h>
78#include <unistd.h>
79#include <stdlib.h>
80#include <stdio.h>
81#include <ctype.h>
82#include <string.h>
Wichert Akkerman8c7122c2001-02-16 19:59:55 +000083#include <time.h>
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000084#include <sys/time.h>
85#include <errno.h>
86
Roland McGrath639658b2008-08-01 01:06:31 +000087#ifdef HAVE_STDBOOL_H
88#include <stdbool.h>
89#endif
90
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000091#ifdef STDC_HEADERS
92#include <stddef.h>
93#endif /* STDC_HEADERS */
94
John Hughes58265892001-10-18 15:13:53 +000095#ifdef HAVE_SIGINFO_T
96#include <signal.h>
97#endif
98
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +000099#if defined(LINUX)
Roland McGrath6d1a65c2004-07-12 07:44:08 +0000100# if defined(SPARC) || defined(SPARC64)
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +0000101# define LINUXSPARC
102# endif
Michal Ludvig0e035502002-09-23 15:41:01 +0000103# if defined(X86_64)
104# define LINUX_X86_64
105# endif
Roland McGrath542c2c62008-05-20 01:11:56 +0000106# if defined(MIPS) && _MIPS_SIM == _MIPS_SIM_ABI32
107# define LINUX_MIPSO32
108# endif
109# if defined(MIPS) && _MIPS_SIM == _MIPS_SIM_NABI32
110# define LINUX_MIPSN32
111# define LINUX_MIPS64
112# endif
113# if defined(MIPS) && _MIPS_SIM == _MIPS_SIM_ABI64
114# define LINUX_MIPSN64
115# define LINUX_MIPS64
116# endif
Denys Vlasenko8ba1cd72008-12-30 17:50:46 +0000117# if defined(ARM)
118# define LINUX_ARM
119# endif
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +0000120# if defined(AVR32)
121# define LINUX_AVR32
122# endif
Roland McGrathee9d4352002-12-18 04:16:10 +0000123#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000124
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000125#if defined(SVR4) || defined(FREEBSD)
126#define USE_PROCFS
127#else
128#undef USE_PROCFS
129#endif
130
131#ifdef FREEBSD
132#ifndef I386
133#error "FreeBSD support is only for i386 arch right now."
134#endif
135#include <machine/psl.h>
136#include <machine/reg.h>
137#include <sys/syscall.h>
138#endif
139
140#ifdef USE_PROCFS
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000141#include <sys/procfs.h>
Wichert Akkermanea78f0f1999-11-29 15:34:02 +0000142#ifdef HAVE_MP_PROCFS
Wichert Akkerman9ce1a631999-08-29 23:15:07 +0000143#include <sys/uio.h>
144#endif
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000145#ifdef FREEBSD
146#include <sys/pioctl.h>
147#endif /* FREEBSD */
148#else /* !USE_PROCFS */
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +0000149#if (defined(LINUXSPARC) || defined(LINUX_X86_64) || defined(LINUX_ARM) || defined(LINUX_AVR32)) && defined(__GLIBC__)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000150#include <sys/ptrace.h>
151#else
152/* Work around awkward prototype in ptrace.h. */
153#define ptrace xptrace
154#include <sys/ptrace.h>
155#undef ptrace
156#ifdef POWERPC
157#define __KERNEL__
158#include <asm/ptrace.h>
159#undef __KERNEL__
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000160#endif
161#ifdef __STDC__
162#ifdef LINUX
163extern long ptrace(int, int, char *, long);
164#else /* !LINUX */
165extern int ptrace(int, int, char *, int, ...);
166#endif /* !LINUX */
167#else /* !__STDC__ */
168extern int ptrace();
169#endif /* !__STDC__ */
170#endif /* !LINUXSPARC */
171#endif /* !SVR4 */
172
173#ifdef LINUX
Wichert Akkermanb859bea1999-04-18 22:50:50 +0000174#if !defined(__GLIBC__)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000175#define PTRACE_PEEKUSER PTRACE_PEEKUSR
176#define PTRACE_POKEUSER PTRACE_POKEUSR
177#endif
178#ifdef ALPHA
Wichert Akkermanf90da011999-10-31 21:15:38 +0000179# define REG_R0 0
180# define REG_A0 16
181# define REG_A3 19
182# define REG_FP 30
183# define REG_PC 64
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000184#endif /* ALPHA */
Wichert Akkermanf90da011999-10-31 21:15:38 +0000185#ifdef MIPS
186# define REG_V0 2
187# define REG_A0 4
188# define REG_A3 7
189# define REG_SP 29
190# define REG_EPC 64
191#endif /* MIPS */
Wichert Akkermanc1652e22001-03-27 12:17:16 +0000192#ifdef HPPA
193# define PT_GR20 (20*4)
194# define PT_GR26 (26*4)
195# define PT_GR28 (28*4)
196# define PT_IAOQ0 (106*4)
197# define PT_IAOQ1 (107*4)
198#endif /* HPPA */
Roland McGrathf5a47772003-06-26 22:40:42 +0000199#ifdef SH64
200 /* SH64 Linux - this code assumes the following kernel API for system calls:
Roland McGrathe1e584b2003-06-02 19:18:58 +0000201 PC Offset 0
202 System Call Offset 16 (actually, (syscall no.) | (0x1n << 16),
203 where n = no. of parameters.
204 Other regs Offset 24+
205
206 On entry: R2-7 = parameters 1-6 (as many as necessary)
207 On return: R9 = result. */
208
209 /* Offset for peeks of registers */
210# define REG_OFFSET (24)
211# define REG_GENERAL(x) (8*(x)+REG_OFFSET)
212# define REG_PC (0*8)
213# define REG_SYSCALL (2*8)
Roland McGrathf5a47772003-06-26 22:40:42 +0000214#endif /* SH64 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000215#endif /* LINUX */
216
217#define SUPPORTED_PERSONALITIES 1
218#define DEFAULT_PERSONALITY 0
219
220#ifdef LINUXSPARC
Mike Frysinger8566c502009-10-12 11:05:14 -0400221/* Indexes into the pt_regs.u_reg[] array -- UREG_XX from kernel are all off
222 * by 1 and use Ix instead of Ox. These work for both 32 and 64 bit Linux. */
223#define U_REG_G1 0
224#define U_REG_O0 7
225#define U_REG_O1 8
Roland McGrath4b2dcca2006-01-12 10:18:53 +0000226#define PERSONALITY0_WORDSIZE 4
227#define PERSONALITY1_WORDSIZE 4
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000228#undef SUPPORTED_PERSONALITIES
Roland McGrath6d1a65c2004-07-12 07:44:08 +0000229#if defined(SPARC64)
Roland McGrath5aa04342007-09-12 01:26:26 +0000230#include <asm/psrcompat.h>
Roland McGrath6d1a65c2004-07-12 07:44:08 +0000231#define SUPPORTED_PERSONALITIES 3
Roland McGrath4b2dcca2006-01-12 10:18:53 +0000232#define PERSONALITY2_WORDSIZE 8
Roland McGrath6d1a65c2004-07-12 07:44:08 +0000233#else
Roland McGrath5aa04342007-09-12 01:26:26 +0000234#include <asm/psr.h>
Wichert Akkermanb859bea1999-04-18 22:50:50 +0000235#define SUPPORTED_PERSONALITIES 2
Roland McGrath6d1a65c2004-07-12 07:44:08 +0000236#endif /* SPARC64 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000237#endif /* LINUXSPARC */
238
Michal Ludvig0e035502002-09-23 15:41:01 +0000239#ifdef X86_64
240#undef SUPPORTED_PERSONALITIES
241#define SUPPORTED_PERSONALITIES 2
Roland McGrath4b2dcca2006-01-12 10:18:53 +0000242#define PERSONALITY0_WORDSIZE 8
243#define PERSONALITY1_WORDSIZE 4
Roland McGrathee9d4352002-12-18 04:16:10 +0000244#endif
245
Roland McGrath56703312008-05-20 01:35:55 +0000246#ifdef ARM
247#undef SUPPORTED_PERSONALITIES
248#define SUPPORTED_PERSONALITIES 2
249#define PERSONALITY0_WORDSIZE 4
250#define PERSONALITY1_WORDSIZE 4
251#endif
252
Wichert Akkerman9ce1a631999-08-29 23:15:07 +0000253#ifdef SVR4
Wichert Akkermanea78f0f1999-11-29 15:34:02 +0000254#ifdef HAVE_MP_PROCFS
Wichert Akkerman9ce1a631999-08-29 23:15:07 +0000255extern int mp_ioctl (int f, int c, void *a, int s);
256#define IOCTL(f,c,a) mp_ioctl (f, c, a, sizeof *a)
257#define IOCTL_STATUS(t) \
258 pread (t->pfd_stat, &t->status, sizeof t->status, 0)
259#define IOCTL_WSTOP(t) \
Wichert Akkerman16a03d22000-08-10 02:14:04 +0000260 (IOCTL (t->pfd, PCWSTOP, (char *)NULL) < 0 ? -1 : \
Wichert Akkerman9ce1a631999-08-29 23:15:07 +0000261 IOCTL_STATUS (t))
262#define PR_WHY pr_lwp.pr_why
263#define PR_WHAT pr_lwp.pr_what
264#define PR_REG pr_lwp.pr_context.uc_mcontext.gregs
265#define PR_FLAGS pr_lwp.pr_flags
John Hughes25299712001-03-06 10:10:06 +0000266#define PR_SYSCALL pr_lwp.pr_syscall
John Hughes58265892001-10-18 15:13:53 +0000267#define PR_INFO pr_lwp.pr_info
Wichert Akkerman9ce1a631999-08-29 23:15:07 +0000268#define PIOCSTIP PCSTOP
269#define PIOCSET PCSET
270#define PIOCRESET PCRESET
271#define PIOCSTRACE PCSTRACE
272#define PIOCSFAULT PCSFAULT
273#define PIOCWSTOP PCWSTOP
274#define PIOCSTOP PCSTOP
275#define PIOCSENTRY PCSENTRY
276#define PIOCSEXIT PCSEXIT
277#define PIOCRUN PCRUN
278#else
279#define IOCTL ioctl
280#define IOCTL_STATUS(t) ioctl (t->pfd, PIOCSTATUS, &t->status)
Roland McGrathee9d4352002-12-18 04:16:10 +0000281#define IOCTL_WSTOP(t) ioctl (t->pfd, PIOCWSTOP, &t->status)
Wichert Akkerman9ce1a631999-08-29 23:15:07 +0000282#define PR_WHY pr_why
283#define PR_WHAT pr_what
284#define PR_REG pr_reg
285#define PR_FLAGS pr_flags
John Hughes25299712001-03-06 10:10:06 +0000286#define PR_SYSCALL pr_syscall
John Hughes58265892001-10-18 15:13:53 +0000287#define PR_INFO pr_info
Wichert Akkerman9ce1a631999-08-29 23:15:07 +0000288#endif
289#endif
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000290#ifdef FREEBSD
291#define IOCTL ioctl
292#define IOCTL_STATUS(t) ioctl (t->pfd, PIOCSTATUS, &t->status)
293#define IOCTL_WSTOP(t) ioctl (t->pfd, PIOCWAIT, &t->status)
294#define PIOCRUN PIOCCONT
295#define PIOCWSTOP PIOCWAIT
296#define PR_WHY why
297#define PR_WHAT val
Wichert Akkerman2e4ffe52000-09-03 23:57:48 +0000298#define PR_FLAGS state
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000299/* from /usr/src/sys/miscfs/procfs/procfs_vnops.c,
300 status.state = 0 for running, 1 for stopped */
Wichert Akkerman2e4ffe52000-09-03 23:57:48 +0000301#define PR_ASLEEP 1
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000302#define PR_SYSENTRY S_SCE
303#define PR_SYSEXIT S_SCX
304#define PR_SIGNALLED S_SIG
305#define PR_FAULTED S_CORE
306#endif
Wichert Akkerman9ce1a631999-08-29 23:15:07 +0000307
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000308/* Trace Control Block */
309struct tcb {
Roland McGratheb9e2e82009-06-02 16:49:22 -0700310 short flags; /* See below for TCB_ values */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000311 int pid; /* Process Id of this entry */
312 long scno; /* System call number */
313 int u_nargs; /* System call arguments */
314 long u_arg[MAX_ARGS]; /* System call arguments */
Roland McGrath542c2c62008-05-20 01:11:56 +0000315#if defined (LINUX_MIPSN32)
316 long long ext_arg[MAX_ARGS]; /* System call arguments */
317#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000318 int u_error; /* Error code */
319 long u_rval; /* (first) return value */
Wichert Akkerman16a03d22000-08-10 02:14:04 +0000320#ifdef HAVE_LONG_LONG
321 long long u_lrval; /* long long return value */
322#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000323 FILE *outf; /* Output file for this process */
Wichert Akkerman43a74822000-06-27 17:33:32 +0000324 const char *auxstr; /* Auxiliary info from syscall (see RVAL_STR) */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000325 struct timeval stime; /* System time usage as of last process wait */
326 struct timeval dtime; /* Delta for system time usage */
327 struct timeval etime; /* Syscall entry time */
328 /* Support for tracing forked processes */
329 struct tcb *parent; /* Parent of this process */
330 int nchildren; /* # of traced children */
331 int waitpid; /* pid(s) this process is waiting for */
Roland McGrath09623452003-05-23 02:27:13 +0000332 int nzombies; /* # of formerly traced children now dead */
Roland McGrath923f7502003-01-09 06:53:27 +0000333#ifdef LINUX
334 int nclone_threads; /* # of nchildren with CLONE_THREAD */
335 int nclone_detached; /* # of nchildren with CLONE_DETACHED */
336 int nclone_waiting; /* clone threads in wait4 (TCB_SUSPENDED) */
Denys Vlasenko1e3ce322008-12-22 19:14:47 +0000337#endif
Roland McGratheb9e2e82009-06-02 16:49:22 -0700338 /* (1st arg of wait4()) */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000339 long baddr; /* `Breakpoint' address */
340 long inst[2]; /* Instructions on above */
341 int pfd; /* proc file descriptor */
342#ifdef SVR4
Wichert Akkermanea78f0f1999-11-29 15:34:02 +0000343#ifdef HAVE_MP_PROCFS
Wichert Akkerman9ce1a631999-08-29 23:15:07 +0000344 int pfd_stat;
345 int pfd_as;
346 pstatus_t status;
347#else
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000348 prstatus_t status; /* procfs status structure */
349#endif
Wichert Akkerman9ce1a631999-08-29 23:15:07 +0000350#endif
Denys Vlasenko732d1bf2008-12-17 19:21:59 +0000351 int ptrace_errno;
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000352#ifdef FREEBSD
353 struct procfs_status status;
354 int pfd_reg;
355 int pfd_status;
356#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000357};
358
359/* TCB flags */
360#define TCB_STARTUP 00001 /* We have just begun ptracing this process */
361#define TCB_INUSE 00002 /* This table entry is in use */
362#define TCB_INSYSCALL 00004 /* A system call is in progress */
363#define TCB_ATTACHED 00010 /* Process is not our own child */
364#define TCB_EXITING 00020 /* As far as we know, this process is exiting */
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +0000365#define TCB_SUSPENDED 00040 /* Process can not be allowed to resume just now */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000366#define TCB_BPTSET 00100 /* "Breakpoint" set after fork(2) */
367#define TCB_SIGTRAPPED 00200 /* Process wanted to block SIGTRAP */
Roland McGratheb9e2e82009-06-02 16:49:22 -0700368#define TCB_FOLLOWFORK 00400 /* Process should have forks followed */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000369#define TCB_REPRINT 01000 /* We should reprint this syscall on exit */
370#ifdef LINUX
Roland McGratheb9e2e82009-06-02 16:49:22 -0700371/* x86 does not need TCB_WAITEXECVE.
Denys Vlasenkobc161ec2009-01-02 18:02:45 +0000372 * It can detect execve's SIGTRAP by looking at eax/rax.
373 * See "stray syscall exit: eax = " message in syscall_fixup().
374 */
Denys Vlasenkoc71016e2009-03-06 00:33:24 +0000375# if defined(ALPHA) || defined(AVR32) || defined(SPARC) || defined(SPARC64) \
376 || defined(POWERPC) || defined(IA64) || defined(HPPA) \
377 || defined(SH) || defined(SH64) || defined(S390) || defined(S390X) \
378 || defined(ARM) || defined(MIPS) || defined(BFIN)
Wichert Akkerman7b3346b2001-10-09 23:47:38 +0000379# define TCB_WAITEXECVE 02000 /* ignore SIGTRAP after exceve */
380# endif
Roland McGrath923f7502003-01-09 06:53:27 +0000381# define TCB_CLONE_DETACHED 04000 /* CLONE_DETACHED set in creating syscall */
382# define TCB_CLONE_THREAD 010000 /* CLONE_THREAD set in creating syscall */
383# define TCB_GROUP_EXITING 020000 /* TCB_EXITING was exit_group, not _exit */
384# include <sys/syscall.h>
385# ifndef __NR_exit_group
386# /* Hack: Most headers around are too old to have __NR_exit_group. */
387# ifdef ALPHA
388# define __NR_exit_group 405
389# elif defined I386
390# define __NR_exit_group 252
Dmitry V. Levinaca9a742006-10-11 22:56:49 +0000391# elif defined X86_64
392# define __NR_exit_group 231
Roland McGrath923f7502003-01-09 06:53:27 +0000393# elif defined IA64
394# define __NR_exit_group 1236
395# elif defined POWERPC
396# define __NR_exit_group 234
397# elif defined S390 || defined S390X
398# define __NR_exit_group 248
Roland McGrath6d1a65c2004-07-12 07:44:08 +0000399# elif defined SPARC || defined SPARC64
Roland McGrath923f7502003-01-09 06:53:27 +0000400# define __NR_exit_group 188
Roland McGrath165155a2005-07-19 07:42:17 +0000401# elif defined M68K
402# define __NR_exit_group 247
Roland McGrath923f7502003-01-09 06:53:27 +0000403# endif /* ALPHA et al */
404# endif /* !__NR_exit_group */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000405#endif /* LINUX */
406
407/* qualifier flags */
408#define QUAL_TRACE 0001 /* this system call should be traced */
409#define QUAL_ABBREV 0002 /* abbreviate the structures of this syscall */
410#define QUAL_VERBOSE 0004 /* decode the structures of this syscall */
411#define QUAL_RAW 0010 /* print all args in hex for this syscall */
412#define QUAL_SIGNAL 0020 /* report events with this signal */
413#define QUAL_FAULT 0040 /* report events with this fault */
414#define QUAL_READ 0100 /* dump data read on this file descriptor */
415#define QUAL_WRITE 0200 /* dump data written to this file descriptor */
416
417#define entering(tcp) (!((tcp)->flags & TCB_INSYSCALL))
418#define exiting(tcp) ((tcp)->flags & TCB_INSYSCALL)
419#define syserror(tcp) ((tcp)->u_error != 0)
420#define verbose(tcp) (qual_flags[(tcp)->scno] & QUAL_VERBOSE)
421#define abbrev(tcp) (qual_flags[(tcp)->scno] & QUAL_ABBREV)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000422
423struct xlat {
424 int val;
425 char *str;
426};
427
Denys Vlasenkof535b542009-01-13 18:30:55 +0000428extern const struct xlat open_mode_flags[];
429extern const struct xlat addrfams[];
430extern const struct xlat struct_user_offsets[];
431extern const struct xlat open_access_modes[];
432
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000433/* Format of syscall return values */
434#define RVAL_DECIMAL 000 /* decimal format */
435#define RVAL_HEX 001 /* hex format */
436#define RVAL_OCTAL 002 /* octal format */
437#define RVAL_UDECIMAL 003 /* unsigned decimal format */
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000438#define RVAL_LDECIMAL 004 /* long decimal format */
439#define RVAL_LHEX 005 /* long hex format */
440#define RVAL_LOCTAL 006 /* long octal format */
441#define RVAL_LUDECIMAL 007 /* long unsigned decimal format */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000442#define RVAL_MASK 007 /* mask for these values */
443
444#define RVAL_STR 010 /* Print `auxstr' field after return val */
445#define RVAL_NONE 020 /* Print nothing */
446
447#ifndef offsetof
448#define offsetof(type, member) (((char *) &(((type *) NULL)->member)) - \
449 ((char *) (type *) NULL))
450#endif /* !offsetof */
451
452/* get offset of member within a user struct */
453#define uoff(member) offsetof(struct user, member)
454
455#define TRACE_FILE 001 /* Trace file-related syscalls. */
456#define TRACE_IPC 002 /* Trace IPC-related syscalls. */
457#define TRACE_NETWORK 004 /* Trace network-related syscalls. */
458#define TRACE_PROCESS 010 /* Trace process-related syscalls. */
459#define TRACE_SIGNAL 020 /* Trace signal-related syscalls. */
Roland McGrath2fe7b132005-07-05 03:25:35 +0000460#define TRACE_DESC 040 /* Trace file descriptor-related syscalls. */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000461
Roland McGrathee9d4352002-12-18 04:16:10 +0000462extern struct tcb **tcbtab;
Roland McGrath138c6a32006-01-12 09:50:49 +0000463extern int *qual_flags;
Roland McGrath41c48222008-07-18 00:25:10 +0000464extern int debug, followfork;
Dmitry V. Levinb9fe0112006-12-13 16:59:44 +0000465extern int dtime, cflag, xflag, qflag;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000466extern int acolumn;
Roland McGrathee9d4352002-12-18 04:16:10 +0000467extern unsigned int nprocs, tcbtabsize;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000468extern int max_strlen;
469extern struct tcb *tcp_last;
470
471#ifdef __STDC__
472#define P(args) args
473#else
474#define P(args) ()
475#endif
476
Dmitry V. Levina7945a32006-12-13 17:10:11 +0000477enum bitness_t { BITNESS_CURRENT = 0, BITNESS_32 };
478
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000479extern int set_personality P((int personality));
Dmitry V. Levinab9008b2007-01-11 22:05:04 +0000480extern const char *xlookup P((const struct xlat *, int));
Dmitry V. Levin10de62b2006-12-13 21:45:31 +0000481extern struct tcb *alloc_tcb P((int, int));
Roland McGrath923f7502003-01-09 06:53:27 +0000482extern struct tcb *pid2tcb P((int));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000483extern void droptcb P((struct tcb *));
Denys Vlasenko418d66a2009-01-17 01:52:54 +0000484extern void expand_tcbtab P((void));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000485
Dmitry V. Levin10de62b2006-12-13 21:45:31 +0000486#define alloctcb(pid) alloc_tcb((pid), 1)
487
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000488extern void set_sortby P((char *));
489extern void set_overhead P((int));
490extern void qualify P((char *));
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000491extern int get_scno P((struct tcb *));
Roland McGrath76989d72005-06-07 23:21:31 +0000492extern long known_scno P((struct tcb *));
Roland McGratheb9e2e82009-06-02 16:49:22 -0700493extern long do_ptrace P((int request, struct tcb *tcp, void *addr, void *data));
Denys Vlasenko732d1bf2008-12-17 19:21:59 +0000494extern int ptrace_restart P((int request, struct tcb *tcp, int sig));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000495extern int trace_syscall P((struct tcb *));
Dmitry V. Levin7d61ff12006-12-21 21:15:04 +0000496extern int count_syscall P((struct tcb *, struct timeval *));
Roland McGrathb2dee132005-06-01 19:02:36 +0000497extern void printxval P((const struct xlat *, int, const char *));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000498extern int printargs P((struct tcb *));
Roland McGrathd9f816f2004-09-04 03:39:20 +0000499extern int addflags P((const struct xlat *, int));
Roland McGrathb2dee132005-06-01 19:02:36 +0000500extern int printflags P((const struct xlat *, int, const char *));
Roland McGratha6c0d8c2007-11-01 21:46:22 +0000501extern const char *sprintflags P((const char *, const struct xlat *, int));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000502extern int umoven P((struct tcb *, long, int, char *));
503extern int umovestr P((struct tcb *, long, int, char *));
Denys Vlasenko932fc7d2008-12-16 18:18:40 +0000504extern int upeek P((struct tcb *, long, long *));
John Hughes1d08dcf2001-07-10 13:48:44 +0000505extern void dumpiov P((struct tcb *, int, long));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000506extern void dumpstr P((struct tcb *, long, int));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000507extern void printstr P((struct tcb *, long, int));
508extern void printnum P((struct tcb *, long, char *));
Roland McGrath9814a942005-07-04 23:28:10 +0000509extern void printnum_int P((struct tcb *, long, char *));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000510extern void printpath P((struct tcb *, long));
511extern void printpathn P((struct tcb *, long, int));
Roland McGrath6afc5652007-07-24 01:57:11 +0000512extern void printtv_bitness P((struct tcb *, long, enum bitness_t, int));
Dmitry V. Levina7945a32006-12-13 17:10:11 +0000513extern void sprinttv P((struct tcb *, long, enum bitness_t, char *));
Roland McGrath6bc09da2007-11-01 21:50:54 +0000514extern void print_timespec P((struct tcb *, long));
515extern void sprint_timespec P((char *, struct tcb *, long));
John Hughes58265892001-10-18 15:13:53 +0000516#ifdef HAVE_SIGINFO_T
517extern void printsiginfo P((siginfo_t *, int));
518#endif
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +0000519extern void printsock P((struct tcb *, long, int));
John Hughes38ae88d2002-05-23 11:48:58 +0000520extern void print_sock_optmgmt P((struct tcb *, long, int));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000521extern void printrusage P((struct tcb *, long));
Roland McGrath6bc12202003-11-13 22:32:27 +0000522extern void printuid P((const char *, unsigned long));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000523extern int clearbpt P((struct tcb *));
524extern int setbpt P((struct tcb *));
525extern int sigishandled P((struct tcb *, int));
526extern void printcall P((struct tcb *));
Roland McGrathee36ce12004-09-04 03:53:10 +0000527extern const char *signame P((int));
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000528extern void print_sigset P((struct tcb *, long, int));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000529extern void printsignal P((int));
530extern void printleader P((struct tcb *));
Denys Vlasenkoef2fbf82009-01-06 21:45:06 +0000531extern void printtrailer P((void));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000532extern void tabto P((int));
533extern void call_summary P((FILE *));
Roland McGrathaa524c82005-06-01 19:22:06 +0000534extern void tprint_iov P((struct tcb *, unsigned long, unsigned long));
Denys Vlasenkoeedaac72009-03-10 20:41:58 +0000535extern void tprint_open_modes P((mode_t));
536extern const char *sprint_open_modes P((mode_t));
Dmitry V. Levin2e55ff42008-09-03 01:02:46 +0000537extern int is_restart_error P((struct tcb *));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000538
Denys Vlasenko418d66a2009-01-17 01:52:54 +0000539extern int change_syscall P((struct tcb *, int));
Wichert Akkerman7a0b6491999-12-23 15:08:17 +0000540#ifdef LINUX
541extern int internal_clone P((struct tcb *));
542#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000543extern int internal_fork P((struct tcb *));
544extern int internal_exec P((struct tcb *));
Roland McGrathc74c0b72004-09-01 19:39:46 +0000545extern int internal_wait P((struct tcb *, int));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000546extern int internal_exit P((struct tcb *));
547
Roland McGrathee36ce12004-09-04 03:53:10 +0000548extern const struct ioctlent *ioctl_lookup P((long));
549extern const struct ioctlent *ioctl_next_match P((const struct ioctlent *));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000550extern int ioctl_decode P((struct tcb *, long, long));
551extern int term_ioctl P((struct tcb *, long, long));
552extern int sock_ioctl P((struct tcb *, long, long));
553extern int proc_ioctl P((struct tcb *, int, int));
554extern int stream_ioctl P((struct tcb *, int, int));
Roland McGrathd83c50b2004-10-06 22:27:43 +0000555#ifdef LINUX
556extern int rtc_ioctl P((struct tcb *, long, long));
Dmitry V. Levinb011af52007-06-30 11:37:09 +0000557extern int scsi_ioctl P((struct tcb *, long, long));
Roland McGrathd83c50b2004-10-06 22:27:43 +0000558#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000559
560extern void tv_tv P((struct timeval *, int, int));
561extern int tv_nz P((struct timeval *));
562extern int tv_cmp P((struct timeval *, struct timeval *));
563extern double tv_float P((struct timeval *));
564extern void tv_add P((struct timeval *, struct timeval *, struct timeval *));
565extern void tv_sub P((struct timeval *, struct timeval *, struct timeval *));
566extern void tv_mul P((struct timeval *, struct timeval *, int));
567extern void tv_div P((struct timeval *, struct timeval *, int));
568
569#ifdef SUNOS4
570extern int fixvfork P((struct tcb *));
571#endif
Roland McGrath6d1a65c2004-07-12 07:44:08 +0000572#if !(defined(LINUX) && !defined(SPARC) && !defined(SPARC64) && !defined(IA64))
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000573extern long getrval2 P((struct tcb *));
574#endif
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000575#ifdef USE_PROCFS
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000576extern int proc_open P((struct tcb *tcp, int attaching));
577#endif
578
579#define umove(pid, addr, objp) \
580 umoven((pid), (addr), sizeof *(objp), (char *) (objp))
581
Dmitry V. Levina7945a32006-12-13 17:10:11 +0000582#define printtv(tcp, addr) \
Roland McGrath6afc5652007-07-24 01:57:11 +0000583 printtv_bitness((tcp), (addr), BITNESS_CURRENT, 0)
584#define printtv_special(tcp, addr) \
585 printtv_bitness((tcp), (addr), BITNESS_CURRENT, 1)
Dmitry V. Levina7945a32006-12-13 17:10:11 +0000586
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000587#ifdef __STDC__
588#ifdef __GNUC__
589extern void tprintf(const char *fmt, ...)
590 __attribute__ ((format (printf, 1, 2)));
591#else
592extern void tprintf(const char *fmt, ...);
593#endif
594#else
595extern void tprintf();
596#endif
597
598#ifndef HAVE_STRERROR
599const char *strerror P((int));
600#endif
601#ifndef HAVE_STRSIGNAL
602const char *strsignal P((int));
603#endif
604
605extern int current_personality;
Dmitry V. Levin4ebb4e32006-12-13 17:08:08 +0000606extern const int personality_wordsize[];
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000607
608struct sysent {
609 int nargs;
610 int sys_flags;
611 int (*sys_func)();
Roland McGrathee36ce12004-09-04 03:53:10 +0000612 const char *sys_name;
Roland McGrath76989d72005-06-07 23:21:31 +0000613 long native_scno; /* Match against SYS_* constants. */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000614};
615
Roland McGrathee36ce12004-09-04 03:53:10 +0000616extern const struct sysent *sysent;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000617extern int nsyscalls;
618
Roland McGrathee36ce12004-09-04 03:53:10 +0000619extern const char *const *errnoent;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000620extern int nerrnos;
621
622struct ioctlent {
Roland McGrathee36ce12004-09-04 03:53:10 +0000623 const char *doth;
624 const char *symbol;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000625 unsigned long code;
626};
627
Roland McGrathee36ce12004-09-04 03:53:10 +0000628extern const struct ioctlent *ioctlent;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000629extern int nioctlents;
Roland McGrathee36ce12004-09-04 03:53:10 +0000630
631extern const char *const *signalent;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000632extern int nsignals;
633
Roland McGrathee36ce12004-09-04 03:53:10 +0000634extern const struct ioctlent ioctlent0[];
635extern const int nioctlents0;
636extern const char *const signalent0[];
637extern const int nsignals0;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000638
639#if SUPPORTED_PERSONALITIES >= 2
Roland McGrathee36ce12004-09-04 03:53:10 +0000640extern const struct ioctlent ioctlent1[];
Michal Ludvig51d1ebc2004-09-07 14:06:03 +0000641extern const int nioctlents1;
Roland McGrathee36ce12004-09-04 03:53:10 +0000642extern const char *const signalent1[];
643extern const int nsignals1;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000644#endif /* SUPPORTED_PERSONALITIES >= 2 */
645
646#if SUPPORTED_PERSONALITIES >= 3
Roland McGrathee36ce12004-09-04 03:53:10 +0000647extern const struct ioctlent ioctlent2[];
648extern const int nioctlents2;
649extern const char *const signalent2[];
Michal Ludvig51d1ebc2004-09-07 14:06:03 +0000650extern const int nsignals2;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000651#endif /* SUPPORTED_PERSONALITIES >= 3 */
John Hughesbdf48f52001-03-06 15:08:09 +0000652
Roland McGrathe6d3a292003-01-14 09:46:18 +0000653#if defined(FREEBSD) || (defined(LINUX) \
Roland McGrathc0f8bbd2003-08-21 09:58:00 +0000654 && defined(POWERPC) && !defined(__powerpc64__)) \
Roland McGrath542c2c62008-05-20 01:11:56 +0000655 || defined (LINUX_MIPSO32)
John Hughes5a826b82001-03-07 13:21:24 +0000656/* ARRGH! off_t args are aligned on 64 bit boundaries! */
657#define ALIGN64(tcp,arg) \
658do { \
659 if (arg % 2) \
660 memmove (&tcp->u_arg[arg], &tcp->u_arg[arg + 1], \
661 (tcp->u_nargs - arg - 1) * sizeof tcp->u_arg[0]); \
662} while (0)
663#else
664#define ALIGN64(tcp,arg) do { } while (0)
665#endif
666
John Hughes0c79e012001-03-08 14:40:06 +0000667#if HAVE_LONG_LONG
John Hughes5a826b82001-03-07 13:21:24 +0000668
John Hughesbdf48f52001-03-06 15:08:09 +0000669/* _l refers to the lower numbered u_arg,
670 * _h refers to the higher numbered u_arg
671 */
John Hughes5a826b82001-03-07 13:21:24 +0000672
John Hughesb8a85a42001-03-28 08:05:27 +0000673#if HAVE_LITTLE_ENDIAN_LONG_LONG
John Hughes0c79e012001-03-08 14:40:06 +0000674#define LONG_LONG(_l,_h) \
Wichert Akkerman7ab47b62002-03-31 19:00:02 +0000675 ((long long)((unsigned long long)(unsigned)(_l) | ((unsigned long long)(_h)<<32)))
John Hughesbdf48f52001-03-06 15:08:09 +0000676#else
John Hughes0c79e012001-03-08 14:40:06 +0000677#define LONG_LONG(_l,_h) \
Wichert Akkerman7ab47b62002-03-31 19:00:02 +0000678 ((long long)((unsigned long long)(unsigned)(_h) | ((unsigned long long)(_l)<<32)))
John Hughesbdf48f52001-03-06 15:08:09 +0000679#endif
680#endif
Wichert Akkerman7b3346b2001-10-09 23:47:38 +0000681
682#ifdef IA64
683extern long ia32;
684#endif
Michal Ludvig17f8fb32002-11-06 13:17:21 +0000685
686extern int not_failing_only;