blob: 9d3158e5e83f0c012b0508ab702137c5501bf783 [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
Roland McGrathe6d3a292003-01-14 09:46:18 +000036#ifdef _LARGEFILE64_SOURCE
37/* This is the macro everything checks before using foo64 names. */
38# ifndef _LFS64_LARGEFILE
39# define _LFS64_LARGEFILE 1
40# endif
41#endif
42
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000043#ifdef HAVE_CONFIG_H
44#include "config.h"
45#endif
46
47/* configuration section */
48#ifndef MAX_QUALS
Roland McGrath63d01462002-12-30 00:25:36 +000049#if defined(LINUX) && defined(MIPS)
50#define MAX_QUALS 5000 /* maximum number of syscalls, signals, etc. */
Wichert Akkermanfd89ced2000-04-13 17:06:09 +000051#else
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +000052#define MAX_QUALS 2048 /* maximum number of syscalls, signals, etc. */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000053#endif
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +000054#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000055#ifndef DEFAULT_STRLEN
56#define DEFAULT_STRLEN 32 /* default maximum # of bytes printed in
57 `printstr', change with `-s' switch */
58#endif
59#ifndef DEFAULT_ACOLUMN
60#define DEFAULT_ACOLUMN 40 /* default alignment column for results */
61#endif
62#ifndef MAX_ARGS
63#define MAX_ARGS 32 /* maximum number of args to a syscall */
64#endif
65#ifndef DEFAULT_SORTBY
66#define DEFAULT_SORTBY "time" /* default sorting method for call profiling */
67#endif
68
69#include <sys/types.h>
70#include <unistd.h>
71#include <stdlib.h>
72#include <stdio.h>
73#include <ctype.h>
74#include <string.h>
Wichert Akkerman8c7122c2001-02-16 19:59:55 +000075#include <time.h>
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000076#include <sys/time.h>
77#include <errno.h>
78
79#ifdef STDC_HEADERS
80#include <stddef.h>
81#endif /* STDC_HEADERS */
82
John Hughes58265892001-10-18 15:13:53 +000083#ifdef HAVE_SIGINFO_T
84#include <signal.h>
85#endif
86
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +000087#if defined(LINUX)
Roland McGrath6d1a65c2004-07-12 07:44:08 +000088# if defined(SPARC) || defined(SPARC64)
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +000089# define LINUXSPARC
90# endif
91# if defined(ALPHA)
92# define LINUX_64BIT
93# endif
Michal Ludvig0e035502002-09-23 15:41:01 +000094# if defined(X86_64)
95# define LINUX_X86_64
96# endif
Roland McGrathee9d4352002-12-18 04:16:10 +000097#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000098
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +000099#if defined(SVR4) || defined(FREEBSD)
100#define USE_PROCFS
101#else
102#undef USE_PROCFS
103#endif
104
105#ifdef FREEBSD
106#ifndef I386
107#error "FreeBSD support is only for i386 arch right now."
108#endif
109#include <machine/psl.h>
110#include <machine/reg.h>
111#include <sys/syscall.h>
112#endif
113
114#ifdef USE_PROCFS
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000115#include <sys/procfs.h>
Wichert Akkermanea78f0f1999-11-29 15:34:02 +0000116#ifdef HAVE_MP_PROCFS
Wichert Akkerman9ce1a631999-08-29 23:15:07 +0000117#include <sys/uio.h>
118#endif
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000119#ifdef FREEBSD
120#include <sys/pioctl.h>
121#endif /* FREEBSD */
122#else /* !USE_PROCFS */
Michal Ludvig0e035502002-09-23 15:41:01 +0000123#if (defined(LINUXSPARC) || defined (LINUX_X86_64)) && defined(__GLIBC__)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000124#include <sys/ptrace.h>
125#else
126/* Work around awkward prototype in ptrace.h. */
127#define ptrace xptrace
128#include <sys/ptrace.h>
129#undef ptrace
130#ifdef POWERPC
131#define __KERNEL__
132#include <asm/ptrace.h>
133#undef __KERNEL__
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000134#endif
135#ifdef __STDC__
136#ifdef LINUX
137extern long ptrace(int, int, char *, long);
138#else /* !LINUX */
139extern int ptrace(int, int, char *, int, ...);
140#endif /* !LINUX */
141#else /* !__STDC__ */
142extern int ptrace();
143#endif /* !__STDC__ */
144#endif /* !LINUXSPARC */
145#endif /* !SVR4 */
146
147#ifdef LINUX
Wichert Akkermanb859bea1999-04-18 22:50:50 +0000148#if !defined(__GLIBC__)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000149#define PTRACE_PEEKUSER PTRACE_PEEKUSR
150#define PTRACE_POKEUSER PTRACE_POKEUSR
151#endif
152#ifdef ALPHA
Wichert Akkermanf90da011999-10-31 21:15:38 +0000153# define REG_R0 0
154# define REG_A0 16
155# define REG_A3 19
156# define REG_FP 30
157# define REG_PC 64
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000158#endif /* ALPHA */
Wichert Akkermanf90da011999-10-31 21:15:38 +0000159#ifdef MIPS
160# define REG_V0 2
161# define REG_A0 4
162# define REG_A3 7
163# define REG_SP 29
164# define REG_EPC 64
165#endif /* MIPS */
Wichert Akkermanc1652e22001-03-27 12:17:16 +0000166#ifdef HPPA
167# define PT_GR20 (20*4)
168# define PT_GR26 (26*4)
169# define PT_GR28 (28*4)
170# define PT_IAOQ0 (106*4)
171# define PT_IAOQ1 (107*4)
172#endif /* HPPA */
Roland McGrathf5a47772003-06-26 22:40:42 +0000173#ifdef SH64
174 /* SH64 Linux - this code assumes the following kernel API for system calls:
Roland McGrathe1e584b2003-06-02 19:18:58 +0000175 PC Offset 0
176 System Call Offset 16 (actually, (syscall no.) | (0x1n << 16),
177 where n = no. of parameters.
178 Other regs Offset 24+
179
180 On entry: R2-7 = parameters 1-6 (as many as necessary)
181 On return: R9 = result. */
182
183 /* Offset for peeks of registers */
184# define REG_OFFSET (24)
185# define REG_GENERAL(x) (8*(x)+REG_OFFSET)
186# define REG_PC (0*8)
187# define REG_SYSCALL (2*8)
Roland McGrathf5a47772003-06-26 22:40:42 +0000188#endif /* SH64 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000189#endif /* LINUX */
190
191#define SUPPORTED_PERSONALITIES 1
192#define DEFAULT_PERSONALITY 0
193
194#ifdef LINUXSPARC
195#include <linux/a.out.h>
196#include <asm/psr.h>
197#undef SUPPORTED_PERSONALITIES
Roland McGrath6d1a65c2004-07-12 07:44:08 +0000198#if defined(SPARC64)
199#define SUPPORTED_PERSONALITIES 3
200#else
Wichert Akkermanb859bea1999-04-18 22:50:50 +0000201#define SUPPORTED_PERSONALITIES 2
Roland McGrath6d1a65c2004-07-12 07:44:08 +0000202#endif /* SPARC64 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000203#endif /* LINUXSPARC */
204
Michal Ludvig0e035502002-09-23 15:41:01 +0000205#ifdef X86_64
206#undef SUPPORTED_PERSONALITIES
207#define SUPPORTED_PERSONALITIES 2
Roland McGrathee9d4352002-12-18 04:16:10 +0000208#endif
209
Wichert Akkerman9ce1a631999-08-29 23:15:07 +0000210#ifdef SVR4
Wichert Akkermanea78f0f1999-11-29 15:34:02 +0000211#ifdef HAVE_MP_PROCFS
Wichert Akkerman9ce1a631999-08-29 23:15:07 +0000212extern int mp_ioctl (int f, int c, void *a, int s);
213#define IOCTL(f,c,a) mp_ioctl (f, c, a, sizeof *a)
214#define IOCTL_STATUS(t) \
215 pread (t->pfd_stat, &t->status, sizeof t->status, 0)
216#define IOCTL_WSTOP(t) \
Wichert Akkerman16a03d22000-08-10 02:14:04 +0000217 (IOCTL (t->pfd, PCWSTOP, (char *)NULL) < 0 ? -1 : \
Wichert Akkerman9ce1a631999-08-29 23:15:07 +0000218 IOCTL_STATUS (t))
219#define PR_WHY pr_lwp.pr_why
220#define PR_WHAT pr_lwp.pr_what
221#define PR_REG pr_lwp.pr_context.uc_mcontext.gregs
222#define PR_FLAGS pr_lwp.pr_flags
John Hughes25299712001-03-06 10:10:06 +0000223#define PR_SYSCALL pr_lwp.pr_syscall
John Hughes58265892001-10-18 15:13:53 +0000224#define PR_INFO pr_lwp.pr_info
Wichert Akkerman9ce1a631999-08-29 23:15:07 +0000225#define PIOCSTIP PCSTOP
226#define PIOCSET PCSET
227#define PIOCRESET PCRESET
228#define PIOCSTRACE PCSTRACE
229#define PIOCSFAULT PCSFAULT
230#define PIOCWSTOP PCWSTOP
231#define PIOCSTOP PCSTOP
232#define PIOCSENTRY PCSENTRY
233#define PIOCSEXIT PCSEXIT
234#define PIOCRUN PCRUN
235#else
236#define IOCTL ioctl
237#define IOCTL_STATUS(t) ioctl (t->pfd, PIOCSTATUS, &t->status)
Roland McGrathee9d4352002-12-18 04:16:10 +0000238#define IOCTL_WSTOP(t) ioctl (t->pfd, PIOCWSTOP, &t->status)
Wichert Akkerman9ce1a631999-08-29 23:15:07 +0000239#define PR_WHY pr_why
240#define PR_WHAT pr_what
241#define PR_REG pr_reg
242#define PR_FLAGS pr_flags
John Hughes25299712001-03-06 10:10:06 +0000243#define PR_SYSCALL pr_syscall
John Hughes58265892001-10-18 15:13:53 +0000244#define PR_INFO pr_info
Wichert Akkerman9ce1a631999-08-29 23:15:07 +0000245#endif
246#endif
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000247#ifdef FREEBSD
248#define IOCTL ioctl
249#define IOCTL_STATUS(t) ioctl (t->pfd, PIOCSTATUS, &t->status)
250#define IOCTL_WSTOP(t) ioctl (t->pfd, PIOCWAIT, &t->status)
251#define PIOCRUN PIOCCONT
252#define PIOCWSTOP PIOCWAIT
253#define PR_WHY why
254#define PR_WHAT val
Wichert Akkerman2e4ffe52000-09-03 23:57:48 +0000255#define PR_FLAGS state
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000256/* from /usr/src/sys/miscfs/procfs/procfs_vnops.c,
257 status.state = 0 for running, 1 for stopped */
Wichert Akkerman2e4ffe52000-09-03 23:57:48 +0000258#define PR_ASLEEP 1
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000259#define PR_SYSENTRY S_SCE
260#define PR_SYSEXIT S_SCX
261#define PR_SIGNALLED S_SIG
262#define PR_FAULTED S_CORE
263#endif
Wichert Akkerman9ce1a631999-08-29 23:15:07 +0000264
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000265/* Trace Control Block */
266struct tcb {
267 short flags; /* See below for TCB_ values */
268 int pid; /* Process Id of this entry */
269 long scno; /* System call number */
270 int u_nargs; /* System call arguments */
271 long u_arg[MAX_ARGS]; /* System call arguments */
272 int u_error; /* Error code */
273 long u_rval; /* (first) return value */
Wichert Akkerman16a03d22000-08-10 02:14:04 +0000274#ifdef HAVE_LONG_LONG
275 long long u_lrval; /* long long return value */
276#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000277 FILE *outf; /* Output file for this process */
Wichert Akkerman43a74822000-06-27 17:33:32 +0000278 const char *auxstr; /* Auxiliary info from syscall (see RVAL_STR) */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000279 struct timeval stime; /* System time usage as of last process wait */
280 struct timeval dtime; /* Delta for system time usage */
281 struct timeval etime; /* Syscall entry time */
282 /* Support for tracing forked processes */
283 struct tcb *parent; /* Parent of this process */
284 int nchildren; /* # of traced children */
285 int waitpid; /* pid(s) this process is waiting for */
Roland McGrath09623452003-05-23 02:27:13 +0000286 int nzombies; /* # of formerly traced children now dead */
Roland McGrath923f7502003-01-09 06:53:27 +0000287#ifdef LINUX
288 int nclone_threads; /* # of nchildren with CLONE_THREAD */
289 int nclone_detached; /* # of nchildren with CLONE_DETACHED */
290 int nclone_waiting; /* clone threads in wait4 (TCB_SUSPENDED) */
291#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000292 /* (1st arg of wait4()) */
293 long baddr; /* `Breakpoint' address */
294 long inst[2]; /* Instructions on above */
295 int pfd; /* proc file descriptor */
296#ifdef SVR4
Wichert Akkermanea78f0f1999-11-29 15:34:02 +0000297#ifdef HAVE_MP_PROCFS
Wichert Akkerman9ce1a631999-08-29 23:15:07 +0000298 int pfd_stat;
299 int pfd_as;
300 pstatus_t status;
301#else
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000302 prstatus_t status; /* procfs status structure */
303#endif
Wichert Akkerman9ce1a631999-08-29 23:15:07 +0000304#endif
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000305#ifdef FREEBSD
306 struct procfs_status status;
307 int pfd_reg;
308 int pfd_status;
309#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000310};
311
312/* TCB flags */
313#define TCB_STARTUP 00001 /* We have just begun ptracing this process */
314#define TCB_INUSE 00002 /* This table entry is in use */
315#define TCB_INSYSCALL 00004 /* A system call is in progress */
316#define TCB_ATTACHED 00010 /* Process is not our own child */
317#define TCB_EXITING 00020 /* As far as we know, this process is exiting */
318#define TCB_SUSPENDED 00040 /* Process has done a wait(4), that can
319 not be allowed to complete just now */
320#define TCB_BPTSET 00100 /* "Breakpoint" set after fork(2) */
321#define TCB_SIGTRAPPED 00200 /* Process wanted to block SIGTRAP */
322#define TCB_FOLLOWFORK 00400 /* Process should have forks followed */
323#define TCB_REPRINT 01000 /* We should reprint this syscall on exit */
324#ifdef LINUX
Roland McGrath6d1a65c2004-07-12 07:44:08 +0000325# if defined(ALPHA) || defined(SPARC) || defined(SPARC64) || defined(POWERPC) || defined(IA64) || defined(HPPA) || defined(SH) || defined(SH64) || defined(S390) || defined(S390X) || defined(ARM)
Wichert Akkerman7b3346b2001-10-09 23:47:38 +0000326# define TCB_WAITEXECVE 02000 /* ignore SIGTRAP after exceve */
327# endif
Roland McGrath923f7502003-01-09 06:53:27 +0000328# define TCB_CLONE_DETACHED 04000 /* CLONE_DETACHED set in creating syscall */
329# define TCB_CLONE_THREAD 010000 /* CLONE_THREAD set in creating syscall */
330# define TCB_GROUP_EXITING 020000 /* TCB_EXITING was exit_group, not _exit */
331# include <sys/syscall.h>
332# ifndef __NR_exit_group
333# /* Hack: Most headers around are too old to have __NR_exit_group. */
334# ifdef ALPHA
335# define __NR_exit_group 405
336# elif defined I386
337# define __NR_exit_group 252
338# elif defined IA64
339# define __NR_exit_group 1236
340# elif defined POWERPC
341# define __NR_exit_group 234
342# elif defined S390 || defined S390X
343# define __NR_exit_group 248
Roland McGrath6d1a65c2004-07-12 07:44:08 +0000344# elif defined SPARC || defined SPARC64
Roland McGrath923f7502003-01-09 06:53:27 +0000345# define __NR_exit_group 188
346# endif /* ALPHA et al */
347# endif /* !__NR_exit_group */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000348#endif /* LINUX */
349
350/* qualifier flags */
351#define QUAL_TRACE 0001 /* this system call should be traced */
352#define QUAL_ABBREV 0002 /* abbreviate the structures of this syscall */
353#define QUAL_VERBOSE 0004 /* decode the structures of this syscall */
354#define QUAL_RAW 0010 /* print all args in hex for this syscall */
355#define QUAL_SIGNAL 0020 /* report events with this signal */
356#define QUAL_FAULT 0040 /* report events with this fault */
357#define QUAL_READ 0100 /* dump data read on this file descriptor */
358#define QUAL_WRITE 0200 /* dump data written to this file descriptor */
359
360#define entering(tcp) (!((tcp)->flags & TCB_INSYSCALL))
361#define exiting(tcp) ((tcp)->flags & TCB_INSYSCALL)
362#define syserror(tcp) ((tcp)->u_error != 0)
363#define verbose(tcp) (qual_flags[(tcp)->scno] & QUAL_VERBOSE)
364#define abbrev(tcp) (qual_flags[(tcp)->scno] & QUAL_ABBREV)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000365
366struct xlat {
367 int val;
368 char *str;
369};
370
371/* Format of syscall return values */
372#define RVAL_DECIMAL 000 /* decimal format */
373#define RVAL_HEX 001 /* hex format */
374#define RVAL_OCTAL 002 /* octal format */
375#define RVAL_UDECIMAL 003 /* unsigned decimal format */
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000376#define RVAL_LDECIMAL 004 /* long decimal format */
377#define RVAL_LHEX 005 /* long hex format */
378#define RVAL_LOCTAL 006 /* long octal format */
379#define RVAL_LUDECIMAL 007 /* long unsigned decimal format */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000380#define RVAL_MASK 007 /* mask for these values */
381
382#define RVAL_STR 010 /* Print `auxstr' field after return val */
383#define RVAL_NONE 020 /* Print nothing */
384
385#ifndef offsetof
386#define offsetof(type, member) (((char *) &(((type *) NULL)->member)) - \
387 ((char *) (type *) NULL))
388#endif /* !offsetof */
389
390/* get offset of member within a user struct */
391#define uoff(member) offsetof(struct user, member)
392
393#define TRACE_FILE 001 /* Trace file-related syscalls. */
394#define TRACE_IPC 002 /* Trace IPC-related syscalls. */
395#define TRACE_NETWORK 004 /* Trace network-related syscalls. */
396#define TRACE_PROCESS 010 /* Trace process-related syscalls. */
397#define TRACE_SIGNAL 020 /* Trace signal-related syscalls. */
398
Roland McGrathee9d4352002-12-18 04:16:10 +0000399extern struct tcb **tcbtab;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000400extern int qual_flags[];
401extern int debug, followfork, followvfork;
402extern int rflag, tflag, dtime, cflag, xflag, qflag;
403extern int acolumn;
404extern char *outfname;
Roland McGrathee9d4352002-12-18 04:16:10 +0000405extern unsigned int nprocs, tcbtabsize;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000406extern int max_strlen;
407extern struct tcb *tcp_last;
408
409#ifdef __STDC__
410#define P(args) args
411#else
412#define P(args) ()
413#endif
414
415extern int set_personality P((int personality));
Roland McGrathd9f816f2004-09-04 03:39:20 +0000416extern char *xlookup P((const struct xlat *, int));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000417extern struct tcb *alloctcb P((int));
Roland McGrath923f7502003-01-09 06:53:27 +0000418extern struct tcb *pid2tcb P((int));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000419extern void droptcb P((struct tcb *));
Roland McGrath7b54a7a2004-06-04 01:50:45 +0000420extern int expand_tcbtab P((void));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000421
422extern void set_sortby P((char *));
423extern void set_overhead P((int));
424extern void qualify P((char *));
425extern void newoutf P((struct tcb *));
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000426extern int get_scno P((struct tcb *));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000427extern int trace_syscall P((struct tcb *));
Roland McGrathd9f816f2004-09-04 03:39:20 +0000428extern void printxval P((const struct xlat *, int, char *));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000429extern int printargs P((struct tcb *));
Roland McGrathd9f816f2004-09-04 03:39:20 +0000430extern int addflags P((const struct xlat *, int));
431extern int printflags P((const struct xlat *, int));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000432extern int umoven P((struct tcb *, long, int, char *));
433extern int umovestr P((struct tcb *, long, int, char *));
434extern int upeek P((int, long, long *));
John Hughes1d08dcf2001-07-10 13:48:44 +0000435extern void dumpiov P((struct tcb *, int, long));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000436extern void dumpstr P((struct tcb *, long, int));
437extern void string_quote P((char *str));
438extern void printstr P((struct tcb *, long, int));
439extern void printnum P((struct tcb *, long, char *));
440extern void printpath P((struct tcb *, long));
441extern void printpathn P((struct tcb *, long, int));
442extern void printtv P((struct tcb *, long));
John Hughes58265892001-10-18 15:13:53 +0000443#ifdef HAVE_SIGINFO_T
444extern void printsiginfo P((siginfo_t *, int));
445#endif
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +0000446extern void printsock P((struct tcb *, long, int));
John Hughes38ae88d2002-05-23 11:48:58 +0000447extern void print_sock_optmgmt P((struct tcb *, long, int));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000448extern void printrusage P((struct tcb *, long));
Roland McGrath6bc12202003-11-13 22:32:27 +0000449extern void printuid P((const char *, unsigned long));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000450extern int clearbpt P((struct tcb *));
451extern int setbpt P((struct tcb *));
452extern int sigishandled P((struct tcb *, int));
453extern void printcall P((struct tcb *));
Roland McGrathee36ce12004-09-04 03:53:10 +0000454extern const char *signame P((int));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000455extern void printsignal P((int));
456extern void printleader P((struct tcb *));
457extern void printtrailer P((struct tcb *));
458extern void tabto P((int));
459extern void call_summary P((FILE *));
460extern void fake_execve P((struct tcb *, char *, char *[], char *[]));
Wichert Akkerman221f54f1999-11-18 17:26:45 +0000461extern void printtv32 P((struct tcb*, long));
John Hughes1d08dcf2001-07-10 13:48:44 +0000462extern void tprint_iov P((struct tcb *, int, long));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000463
Wichert Akkerman7a0b6491999-12-23 15:08:17 +0000464#ifdef LINUX
465extern int internal_clone P((struct tcb *));
466#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000467extern int internal_fork P((struct tcb *));
468extern int internal_exec P((struct tcb *));
Roland McGrathc74c0b72004-09-01 19:39:46 +0000469extern int internal_wait P((struct tcb *, int));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000470extern int internal_exit P((struct tcb *));
471
Roland McGrathee36ce12004-09-04 03:53:10 +0000472extern const struct ioctlent *ioctl_lookup P((long));
473extern const struct ioctlent *ioctl_next_match P((const struct ioctlent *));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000474extern int ioctl_decode P((struct tcb *, long, long));
475extern int term_ioctl P((struct tcb *, long, long));
476extern int sock_ioctl P((struct tcb *, long, long));
477extern int proc_ioctl P((struct tcb *, int, int));
478extern int stream_ioctl P((struct tcb *, int, int));
479
480extern void tv_tv P((struct timeval *, int, int));
481extern int tv_nz P((struct timeval *));
482extern int tv_cmp P((struct timeval *, struct timeval *));
483extern double tv_float P((struct timeval *));
484extern void tv_add P((struct timeval *, struct timeval *, struct timeval *));
485extern void tv_sub P((struct timeval *, struct timeval *, struct timeval *));
486extern void tv_mul P((struct timeval *, struct timeval *, int));
487extern void tv_div P((struct timeval *, struct timeval *, int));
488
489#ifdef SUNOS4
490extern int fixvfork P((struct tcb *));
491#endif
Roland McGrath6d1a65c2004-07-12 07:44:08 +0000492#if !(defined(LINUX) && !defined(SPARC) && !defined(SPARC64) && !defined(IA64))
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000493extern long getrval2 P((struct tcb *));
494#endif
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000495#ifdef USE_PROCFS
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000496extern int proc_open P((struct tcb *tcp, int attaching));
497#endif
498
499#define umove(pid, addr, objp) \
500 umoven((pid), (addr), sizeof *(objp), (char *) (objp))
501
502#ifdef __STDC__
503#ifdef __GNUC__
504extern void tprintf(const char *fmt, ...)
505 __attribute__ ((format (printf, 1, 2)));
506#else
507extern void tprintf(const char *fmt, ...);
508#endif
509#else
510extern void tprintf();
511#endif
512
513#ifndef HAVE_STRERROR
514const char *strerror P((int));
515#endif
516#ifndef HAVE_STRSIGNAL
517const char *strsignal P((int));
518#endif
519
520extern int current_personality;
521
522struct sysent {
523 int nargs;
524 int sys_flags;
525 int (*sys_func)();
Roland McGrathee36ce12004-09-04 03:53:10 +0000526 const char *sys_name;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000527};
528
Roland McGrathee36ce12004-09-04 03:53:10 +0000529extern const struct sysent *sysent;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000530extern int nsyscalls;
531
Roland McGrathee36ce12004-09-04 03:53:10 +0000532extern const char *const *errnoent;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000533extern int nerrnos;
534
535struct ioctlent {
Roland McGrathee36ce12004-09-04 03:53:10 +0000536 const char *doth;
537 const char *symbol;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000538 unsigned long code;
539};
540
Roland McGrathee36ce12004-09-04 03:53:10 +0000541extern const struct ioctlent *ioctlent;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000542extern int nioctlents;
Roland McGrathee36ce12004-09-04 03:53:10 +0000543
544extern const char *const *signalent;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000545extern int nsignals;
546
Roland McGrathee36ce12004-09-04 03:53:10 +0000547extern const struct ioctlent ioctlent0[];
548extern const int nioctlents0;
549extern const char *const signalent0[];
550extern const int nsignals0;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000551
552#if SUPPORTED_PERSONALITIES >= 2
Roland McGrathee36ce12004-09-04 03:53:10 +0000553extern const struct ioctlent ioctlent1[];
554extern constint nioctlents1;
555extern const char *const signalent1[];
556extern const int nsignals1;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000557#endif /* SUPPORTED_PERSONALITIES >= 2 */
558
559#if SUPPORTED_PERSONALITIES >= 3
Roland McGrathee36ce12004-09-04 03:53:10 +0000560extern const struct ioctlent ioctlent2[];
561extern const int nioctlents2;
562extern const char *const signalent2[];
563extern constint nsignals2;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000564#endif /* SUPPORTED_PERSONALITIES >= 3 */
John Hughesbdf48f52001-03-06 15:08:09 +0000565
Roland McGrathe6d3a292003-01-14 09:46:18 +0000566#if defined(FREEBSD) || (defined(LINUX) \
Roland McGrathc0f8bbd2003-08-21 09:58:00 +0000567 && defined(POWERPC) && !defined(__powerpc64__)) \
568 || (defined (LINUX) && defined (MIPS) && !defined(__mips64))
John Hughes5a826b82001-03-07 13:21:24 +0000569/* ARRGH! off_t args are aligned on 64 bit boundaries! */
570#define ALIGN64(tcp,arg) \
571do { \
572 if (arg % 2) \
573 memmove (&tcp->u_arg[arg], &tcp->u_arg[arg + 1], \
574 (tcp->u_nargs - arg - 1) * sizeof tcp->u_arg[0]); \
575} while (0)
576#else
577#define ALIGN64(tcp,arg) do { } while (0)
578#endif
579
John Hughes0c79e012001-03-08 14:40:06 +0000580#if HAVE_LONG_LONG
John Hughes5a826b82001-03-07 13:21:24 +0000581
John Hughesbdf48f52001-03-06 15:08:09 +0000582/* _l refers to the lower numbered u_arg,
583 * _h refers to the higher numbered u_arg
584 */
John Hughes5a826b82001-03-07 13:21:24 +0000585
John Hughesb8a85a42001-03-28 08:05:27 +0000586#if HAVE_LITTLE_ENDIAN_LONG_LONG
John Hughes0c79e012001-03-08 14:40:06 +0000587#define LONG_LONG(_l,_h) \
Wichert Akkerman7ab47b62002-03-31 19:00:02 +0000588 ((long long)((unsigned long long)(unsigned)(_l) | ((unsigned long long)(_h)<<32)))
John Hughesbdf48f52001-03-06 15:08:09 +0000589#else
John Hughes0c79e012001-03-08 14:40:06 +0000590#define LONG_LONG(_l,_h) \
Wichert Akkerman7ab47b62002-03-31 19:00:02 +0000591 ((long long)((unsigned long long)(unsigned)(_h) | ((unsigned long long)(_l)<<32)))
John Hughesbdf48f52001-03-06 15:08:09 +0000592#endif
593#endif
Wichert Akkerman7b3346b2001-10-09 23:47:38 +0000594
595#ifdef IA64
596extern long ia32;
597#endif
Michal Ludvig17f8fb32002-11-06 13:17:21 +0000598
599extern int not_failing_only;