defs.h revision 1b0df40644ca23fe068d7f004dbc15b07ff85086
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 * 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
32#ifdef HAVE_CONFIG_H
33#include "config.h"
34#endif
35
36#ifdef MIPS
37#include <sgidefs.h>
38#endif
39
40#ifdef linux
41#include <features.h>
42#endif
43
44#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
51/* configuration section */
52#ifndef MAX_QUALS
53#if defined(LINUX) && defined(MIPS)
54#define MAX_QUALS	7000	/* maximum number of syscalls, signals, etc. */
55#else
56#define MAX_QUALS	2048	/* maximum number of syscalls, signals, etc. */
57#endif
58#endif
59#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
67# 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
72#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>
83#include <time.h>
84#include <sys/time.h>
85#include <errno.h>
86
87#ifdef HAVE_STDBOOL_H
88#include <stdbool.h>
89#endif
90
91#ifdef STDC_HEADERS
92#include <stddef.h>
93#endif /* STDC_HEADERS */
94
95#ifdef HAVE_SIGINFO_T
96#include <signal.h>
97#endif
98
99#if defined(LINUX)
100#  if defined(SPARC) || defined(SPARC64)
101#     define LINUXSPARC
102#  endif
103#  if defined(X86_64)
104#     define LINUX_X86_64
105#  endif
106#  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
117#  if defined(ARM)
118#     define LINUX_ARM
119#  endif
120#  if defined(AVR32)
121#     define LINUX_AVR32
122#  endif
123#endif
124
125#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
141#include <sys/procfs.h>
142#ifdef HAVE_MP_PROCFS
143#include <sys/uio.h>
144#endif
145#ifdef FREEBSD
146#include <sys/pioctl.h>
147#endif /* FREEBSD */
148#else /* !USE_PROCFS */
149#if (defined(LINUXSPARC) || defined(LINUX_X86_64) || defined(LINUX_ARM) || defined(LINUX_AVR32)) && defined(__GLIBC__)
150#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__
160#endif
161#ifdef LINUX
162extern long ptrace(int, int, char *, long);
163#else /* !LINUX */
164extern int ptrace(int, int, char *, int, ...);
165#endif /* !LINUX */
166#endif /* !LINUXSPARC */
167#endif /* !SVR4 */
168
169#ifdef LINUX
170#if !defined(__GLIBC__)
171#define	PTRACE_PEEKUSER	PTRACE_PEEKUSR
172#define	PTRACE_POKEUSER	PTRACE_POKEUSR
173#endif
174#ifdef ALPHA
175#  define REG_R0 0
176#  define REG_A0 16
177#  define REG_A3 19
178#  define REG_FP 30
179#  define REG_PC 64
180#endif /* ALPHA */
181#ifdef MIPS
182#  define REG_V0 2
183#  define REG_A0 4
184#  define REG_A3 7
185#  define REG_SP 29
186#  define REG_EPC 64
187#endif /* MIPS */
188#ifdef HPPA
189#  define PT_GR20 (20*4)
190#  define PT_GR26 (26*4)
191#  define PT_GR28 (28*4)
192#  define PT_IAOQ0 (106*4)
193#  define PT_IAOQ1 (107*4)
194#endif /* HPPA */
195#ifdef SH64
196   /* SH64 Linux - this code assumes the following kernel API for system calls:
197          PC           Offset 0
198          System Call  Offset 16 (actually, (syscall no.) | (0x1n << 16),
199                       where n = no. of parameters.
200          Other regs   Offset 24+
201
202          On entry:    R2-7 = parameters 1-6 (as many as necessary)
203          On return:   R9   = result. */
204
205   /* Offset for peeks of registers */
206#  define REG_OFFSET         (24)
207#  define REG_GENERAL(x)     (8*(x)+REG_OFFSET)
208#  define REG_PC             (0*8)
209#  define REG_SYSCALL        (2*8)
210#endif /* SH64 */
211#endif /* LINUX */
212
213#define SUPPORTED_PERSONALITIES 1
214#define DEFAULT_PERSONALITY 0
215
216#ifdef LINUXSPARC
217/* Indexes into the pt_regs.u_reg[] array -- UREG_XX from kernel are all off
218 * by 1 and use Ix instead of Ox.  These work for both 32 and 64 bit Linux. */
219#define U_REG_G1 0
220#define U_REG_O0 7
221#define U_REG_O1 8
222#define PERSONALITY0_WORDSIZE 4
223#define PERSONALITY1_WORDSIZE 4
224#undef  SUPPORTED_PERSONALITIES
225#if defined(SPARC64)
226#include <asm/psrcompat.h>
227#define SUPPORTED_PERSONALITIES 3
228#define PERSONALITY2_WORDSIZE 8
229#else
230#include <asm/psr.h>
231#define SUPPORTED_PERSONALITIES 2
232#endif /* SPARC64 */
233#endif /* LINUXSPARC */
234
235#ifdef X86_64
236#undef SUPPORTED_PERSONALITIES
237#define SUPPORTED_PERSONALITIES 2
238#define PERSONALITY0_WORDSIZE 8
239#define PERSONALITY1_WORDSIZE 4
240#endif
241
242#ifdef ARM
243#undef SUPPORTED_PERSONALITIES
244#define SUPPORTED_PERSONALITIES 2
245#define PERSONALITY0_WORDSIZE 4
246#define PERSONALITY1_WORDSIZE 4
247#endif
248
249#ifdef POWERPC64
250#undef SUPPORTED_PERSONALITIES
251#define SUPPORTED_PERSONALITIES 2
252#define PERSONALITY0_WORDSIZE 8
253#define PERSONALITY1_WORDSIZE 4
254#endif
255
256#ifdef SVR4
257#ifdef HAVE_MP_PROCFS
258extern int mp_ioctl(int f, int c, void *a, int s);
259#define IOCTL(f,c,a)	mp_ioctl(f, c, a, sizeof *a)
260#define IOCTL_STATUS(t) \
261	 pread(t->pfd_stat, &t->status, sizeof t->status, 0)
262#define IOCTL_WSTOP(t) \
263	(IOCTL(t->pfd, PCWSTOP, (char *)NULL) < 0 ? -1 : IOCTL_STATUS(t))
264#define PR_WHY		pr_lwp.pr_why
265#define PR_WHAT		pr_lwp.pr_what
266#define PR_REG		pr_lwp.pr_context.uc_mcontext.gregs
267#define PR_FLAGS	pr_lwp.pr_flags
268#define PR_SYSCALL	pr_lwp.pr_syscall
269#define PR_INFO		pr_lwp.pr_info
270#define PIOCSTIP	PCSTOP
271#define PIOCSET		PCSET
272#define PIOCRESET	PCRESET
273#define PIOCSTRACE	PCSTRACE
274#define PIOCSFAULT	PCSFAULT
275#define PIOCWSTOP	PCWSTOP
276#define PIOCSTOP	PCSTOP
277#define PIOCSENTRY	PCSENTRY
278#define PIOCSEXIT	PCSEXIT
279#define PIOCRUN		PCRUN
280#else
281#define IOCTL		ioctl
282#define IOCTL_STATUS(t)	ioctl(t->pfd, PIOCSTATUS, &t->status)
283#define IOCTL_WSTOP(t)	ioctl(t->pfd, PIOCWSTOP, &t->status)
284#define PR_WHY		pr_why
285#define PR_WHAT		pr_what
286#define PR_REG		pr_reg
287#define PR_FLAGS	pr_flags
288#define PR_SYSCALL	pr_syscall
289#define PR_INFO		pr_info
290#endif
291#endif
292#ifdef FREEBSD
293#define IOCTL		ioctl
294#define IOCTL_STATUS(t)	ioctl(t->pfd, PIOCSTATUS, &t->status)
295#define IOCTL_WSTOP(t)	ioctl(t->pfd, PIOCWAIT, &t->status)
296#define PIOCRUN         PIOCCONT
297#define PIOCWSTOP       PIOCWAIT
298#define PR_WHY		why
299#define PR_WHAT		val
300#define PR_FLAGS	state
301/* from /usr/src/sys/miscfs/procfs/procfs_vnops.c,
302   status.state = 0 for running, 1 for stopped */
303#define PR_ASLEEP	1
304#define PR_SYSENTRY     S_SCE
305#define PR_SYSEXIT      S_SCX
306#define PR_SIGNALLED    S_SIG
307#define PR_FAULTED      S_CORE
308#endif
309
310#ifdef LINUX
311# if !HAVE_DECL_PTRACE_SETOPTIONS
312#  define PTRACE_SETOPTIONS	0x4200
313# endif
314# if !HAVE_DECL_PTRACE_GETEVENTMSG
315#  define PTRACE_GETEVENTMSG	0x4201
316# endif
317# if !HAVE_DECL_PTRACE_GETSIGINFO
318#  define PTRACE_GETSIGINFO	0x4202
319# endif
320
321# if !HAVE_DECL_PTRACE_O_TRACESYSGOOD
322#  define PTRACE_O_TRACESYSGOOD	0x00000001
323# endif
324# if !HAVE_DECL_PTRACE_O_TRACEFORK
325#  define PTRACE_O_TRACEFORK	0x00000002
326# endif
327# if !HAVE_DECL_PTRACE_O_TRACEVFORK
328#  define PTRACE_O_TRACEVFORK	0x00000004
329# endif
330# if !HAVE_DECL_PTRACE_O_TRACECLONE
331#  define PTRACE_O_TRACECLONE	0x00000008
332# endif
333# if !HAVE_DECL_PTRACE_O_TRACEEXEC
334#  define PTRACE_O_TRACEEXEC	0x00000010
335# endif
336# if !HAVE_DECL_PTRACE_O_TRACEEXIT
337#  define PTRACE_O_TRACEEXIT	0x00000040
338# endif
339
340# if !HAVE_DECL_PTRACE_EVENT_FORK
341#  define PTRACE_EVENT_FORK	1
342# endif
343# if !HAVE_DECL_PTRACE_EVENT_VFORK
344#  define PTRACE_EVENT_VFORK	2
345# endif
346# if !HAVE_DECL_PTRACE_EVENT_CLONE
347#  define PTRACE_EVENT_CLONE	3
348# endif
349# if !HAVE_DECL_PTRACE_EVENT_EXEC
350#  define PTRACE_EVENT_EXEC	4
351# endif
352# if !HAVE_DECL_PTRACE_EVENT_VFORK_DONE
353#  define PTRACE_EVENT_VFORK_DONE	5
354# endif
355# if !HAVE_DECL_PTRACE_EVENT_EXIT
356#  define PTRACE_EVENT_EXIT	6
357# endif
358#endif /* LINUX */
359
360#if !defined __GNUC__
361# define __attribute__(x) /*nothing*/
362#endif
363
364#define ARRAY_SIZE(a) (sizeof(a) / sizeof((a)[0]))
365
366/* Trace Control Block */
367struct tcb {
368	short flags;		/* See below for TCB_ values */
369	int pid;		/* Process Id of this entry */
370	long scno;		/* System call number */
371	int u_nargs;		/* System call arguments */
372	long u_arg[MAX_ARGS];	/* System call arguments */
373#if defined (LINUX_MIPSN32)
374	long long ext_arg[MAX_ARGS];	/* System call arguments */
375#endif
376	int u_error;		/* Error code */
377	long u_rval;		/* (first) return value */
378#ifdef HAVE_LONG_LONG
379	long long u_lrval;	/* long long return value */
380#endif
381	FILE *outf;		/* Output file for this process */
382	int curcol;		/* Output column for this process */
383	const char *auxstr;	/* Auxiliary info from syscall (see RVAL_STR) */
384	struct timeval stime;	/* System time usage as of last process wait */
385	struct timeval dtime;	/* Delta for system time usage */
386	struct timeval etime;	/* Syscall entry time */
387				/* Support for tracing forked processes */
388	struct tcb *parent;	/* Parent of this process */
389#ifdef LINUX
390	int nclone_threads;	/* # of children with CLONE_THREAD */
391#endif
392				/* (1st arg of wait4()) */
393	long baddr;		/* `Breakpoint' address */
394	long inst[2];		/* Instructions on above */
395	int pfd;		/* proc file descriptor */
396#ifdef SVR4
397#ifdef HAVE_MP_PROCFS
398	int pfd_stat;
399	int pfd_as;
400	pstatus_t status;
401#else
402	prstatus_t status;	/* procfs status structure */
403#endif
404#endif
405	int ptrace_errno;
406#ifdef FREEBSD
407	struct procfs_status status;
408	int pfd_reg;
409	int pfd_status;
410#endif
411};
412
413/* TCB flags */
414#define TCB_STARTUP	00001	/* We have just begun ptracing this process */
415#define TCB_INUSE	00002	/* This table entry is in use */
416#define TCB_INSYSCALL	00004	/* A system call is in progress */
417#define TCB_ATTACHED	00010	/* Process is not our own child */
418#define TCB_EXITING	00020	/* As far as we know, this process is exiting */
419#define TCB_SUSPENDED	00040	/* Process can not be allowed to resume just now */
420#define TCB_BPTSET	00100	/* "Breakpoint" set after fork(2) */
421#define TCB_SIGTRAPPED	00200	/* Process wanted to block SIGTRAP */
422#define TCB_REPRINT	01000	/* We should reprint this syscall on exit */
423#define TCB_FILTERED	02000	/* This system call has been filtered out */
424#ifdef LINUX
425/* x86 does not need TCB_WAITEXECVE.
426 * It can detect execve's SIGTRAP by looking at eax/rax.
427 * See "stray syscall exit: eax = " message in syscall_fixup().
428 */
429# if defined(ALPHA) || defined(AVR32) || defined(SPARC) || defined(SPARC64) \
430  || defined(POWERPC) || defined(IA64) || defined(HPPA) \
431  || defined(SH) || defined(SH64) || defined(S390) || defined(S390X) \
432  || defined(ARM) || defined(MIPS) || defined(BFIN) || defined(TILE)
433#  define TCB_WAITEXECVE 04000	/* ignore SIGTRAP after exceve */
434# endif
435# define TCB_CLONE_THREAD  010000 /* CLONE_THREAD set in creating syscall */
436# define TCB_GROUP_EXITING 020000 /* TCB_EXITING was exit_group, not _exit */
437# include <sys/syscall.h>
438# ifndef __NR_exit_group
439# /* Hack: Most headers around are too old to have __NR_exit_group.  */
440#  ifdef ALPHA
441#   define __NR_exit_group 405
442#  elif defined I386
443#   define __NR_exit_group 252
444#  elif defined X86_64
445#   define __NR_exit_group 231
446#  elif defined IA64
447#   define __NR_exit_group 1236
448#  elif defined POWERPC
449#   define __NR_exit_group 234
450#  elif defined S390 || defined S390X
451#   define __NR_exit_group 248
452#  elif defined SPARC || defined SPARC64
453#   define __NR_exit_group 188
454#  elif defined M68K
455#   define __NR_exit_group 247
456#  endif /* ALPHA et al */
457# endif	/* !__NR_exit_group */
458#endif /* LINUX */
459
460/* qualifier flags */
461#define QUAL_TRACE	0001	/* this system call should be traced */
462#define QUAL_ABBREV	0002	/* abbreviate the structures of this syscall */
463#define QUAL_VERBOSE	0004	/* decode the structures of this syscall */
464#define QUAL_RAW	0010	/* print all args in hex for this syscall */
465#define QUAL_SIGNAL	0020	/* report events with this signal */
466#define QUAL_FAULT	0040	/* report events with this fault */
467#define QUAL_READ	0100	/* dump data read on this file descriptor */
468#define QUAL_WRITE	0200	/* dump data written to this file descriptor */
469
470#define entering(tcp)	(!((tcp)->flags & TCB_INSYSCALL))
471#define exiting(tcp)	((tcp)->flags & TCB_INSYSCALL)
472#define syserror(tcp)	((tcp)->u_error != 0)
473#define verbose(tcp)	(qual_flags[(tcp)->scno] & QUAL_VERBOSE)
474#define abbrev(tcp)	(qual_flags[(tcp)->scno] & QUAL_ABBREV)
475#define filtered(tcp)	((tcp)->flags & TCB_FILTERED)
476
477struct xlat {
478	int val;
479	const char *str;
480};
481
482extern const struct xlat open_mode_flags[];
483extern const struct xlat addrfams[];
484extern const struct xlat struct_user_offsets[];
485extern const struct xlat open_access_modes[];
486
487/* Format of syscall return values */
488#define RVAL_DECIMAL	000	/* decimal format */
489#define RVAL_HEX	001	/* hex format */
490#define RVAL_OCTAL	002	/* octal format */
491#define RVAL_UDECIMAL	003	/* unsigned decimal format */
492#define RVAL_LDECIMAL	004	/* long decimal format */
493#define RVAL_LHEX	005	/* long hex format */
494#define RVAL_LOCTAL	006	/* long octal format */
495#define RVAL_LUDECIMAL	007	/* long unsigned decimal format */
496#define RVAL_MASK	007	/* mask for these values */
497
498#define RVAL_STR	010	/* Print `auxstr' field after return val */
499#define RVAL_NONE	020	/* Print nothing */
500
501#ifndef offsetof
502#define offsetof(type, member)	(((char *) &(((type *) NULL)->member)) - \
503				 ((char *) (type *) NULL))
504#endif /* !offsetof */
505
506/* get offset of member within a user struct */
507#define uoff(member)	offsetof(struct user, member)
508
509#define TRACE_FILE	001	/* Trace file-related syscalls. */
510#define TRACE_IPC	002	/* Trace IPC-related syscalls. */
511#define TRACE_NETWORK	004	/* Trace network-related syscalls. */
512#define TRACE_PROCESS	010	/* Trace process-related syscalls. */
513#define TRACE_SIGNAL	020	/* Trace signal-related syscalls. */
514#define TRACE_DESC	040	/* Trace file descriptor-related syscalls. */
515#define SYSCALL_NEVER_FAILS	0100	/* Syscall is always successful. */
516
517typedef enum {
518	CFLAG_NONE = 0,
519	CFLAG_ONLY_STATS,
520	CFLAG_BOTH
521} cflag_t;
522
523extern int *qual_flags;
524extern int debug, followfork;
525extern unsigned int ptrace_setoptions;
526extern int dtime, xflag, qflag;
527extern cflag_t cflag;
528extern int acolumn;
529extern int max_strlen;
530extern struct tcb *tcp_last;
531
532enum bitness_t { BITNESS_CURRENT = 0, BITNESS_32 };
533
534void error_msg(const char *fmt, ...) __attribute__ ((format(printf, 1, 2)));
535void perror_msg(const char *fmt, ...) __attribute__ ((format(printf, 1, 2)));
536void error_msg_and_die(const char *fmt, ...) __attribute__ ((noreturn, format(printf, 1, 2)));
537void perror_msg_and_die(const char *fmt, ...) __attribute__ ((noreturn, format(printf, 1, 2)));
538
539extern int set_personality(int personality);
540extern const char *xlookup(const struct xlat *, int);
541extern struct tcb *alloc_tcb(int, int);
542extern struct tcb *pid2tcb(int);
543extern void droptcb(struct tcb *);
544
545#define alloctcb(pid)	alloc_tcb((pid), 1)
546
547extern void set_sortby(const char *);
548extern void set_overhead(int);
549extern void qualify(const char *);
550extern int get_scno(struct tcb *);
551extern long known_scno(struct tcb *);
552extern long do_ptrace(int request, struct tcb *tcp, void *addr, void *data);
553extern int ptrace_restart(int request, struct tcb *tcp, int sig);
554extern int force_result(struct tcb *, int, long);
555extern int trace_syscall(struct tcb *);
556extern int count_syscall(struct tcb *, struct timeval *);
557extern void printxval(const struct xlat *, int, const char *);
558extern int printargs(struct tcb *);
559extern int addflags(const struct xlat *, int);
560extern int printflags(const struct xlat *, int, const char *);
561extern const char *sprintflags(const char *, const struct xlat *, int);
562extern int umoven(struct tcb *, long, int, char *);
563extern int umovestr(struct tcb *, long, int, char *);
564extern int upeek(struct tcb *, long, long *);
565extern void dumpiov(struct tcb *, int, long);
566extern void dumpstr(struct tcb *, long, int);
567extern void printstr(struct tcb *, long, int);
568extern void printnum(struct tcb *, long, const char *);
569extern void printnum_int(struct tcb *, long, const char *);
570extern void printpath(struct tcb *, long);
571extern void printpathn(struct tcb *, long, int);
572extern void printtv_bitness(struct tcb *, long, enum bitness_t, int);
573extern void sprinttv(struct tcb *, long, enum bitness_t, char *);
574extern void print_timespec(struct tcb *, long);
575extern void sprint_timespec(char *, struct tcb *, long);
576#ifdef HAVE_SIGINFO_T
577extern void printsiginfo(siginfo_t *, int);
578#endif
579extern const char *getfdpath(struct tcb *, int);
580extern void printfd(struct tcb *, int);
581extern void printsock(struct tcb *, long, int);
582extern void print_sock_optmgmt(struct tcb *, long, int);
583extern void printrusage(struct tcb *, long);
584extern void printuid(const char *, unsigned long);
585extern int clearbpt(struct tcb *);
586/*
587 * On Linux, "setbpt" is a misnomer: we don't set a breakpoint
588 * (IOW: no poking in user's text segment),
589 * instead we change fork/vfork/clone into clone(CLONE_PTRACE).
590 * On newer kernels, we use PTRACE_O_TRACECLONE/TRACE[V]FORK instead.
591 */
592extern int setbpt(struct tcb *);
593extern int sigishandled(struct tcb *, int);
594extern void printcall(struct tcb *);
595extern const char *signame(int);
596extern void print_sigset(struct tcb *, long, int);
597extern void printsignal(int);
598extern void printleader(struct tcb *);
599extern void printtrailer(void);
600extern void tabto(int);
601extern void call_summary(FILE *);
602extern void tprint_iov(struct tcb *, unsigned long, unsigned long, int decode_iov);
603extern void tprint_open_modes(mode_t);
604extern const char *sprint_open_modes(mode_t);
605extern int is_restart_error(struct tcb *);
606
607extern int pathtrace_select(const char *);
608extern int pathtrace_match(struct tcb *);
609
610extern int change_syscall(struct tcb *, int);
611extern int internal_fork(struct tcb *);
612extern int internal_exec(struct tcb *);
613extern int internal_exit(struct tcb *);
614#ifdef LINUX
615extern int handle_new_child(struct tcb *, int, int);
616#endif
617
618extern const struct ioctlent *ioctl_lookup(long);
619extern const struct ioctlent *ioctl_next_match(const struct ioctlent *);
620extern int ioctl_decode(struct tcb *, long, long);
621extern int term_ioctl(struct tcb *, long, long);
622extern int sock_ioctl(struct tcb *, long, long);
623extern int proc_ioctl(struct tcb *, int, int);
624extern int stream_ioctl(struct tcb *, int, int);
625#ifdef LINUX
626extern int rtc_ioctl(struct tcb *, long, long);
627extern int scsi_ioctl(struct tcb *, long, long);
628extern int block_ioctl(struct tcb *, long, long);
629#endif
630
631extern int tv_nz(struct timeval *);
632extern int tv_cmp(struct timeval *, struct timeval *);
633extern double tv_float(struct timeval *);
634extern void tv_add(struct timeval *, struct timeval *, struct timeval *);
635extern void tv_sub(struct timeval *, struct timeval *, struct timeval *);
636extern void tv_mul(struct timeval *, struct timeval *, int);
637extern void tv_div(struct timeval *, struct timeval *, int);
638
639#ifdef SUNOS4
640extern int fixvfork(struct tcb *);
641#endif
642#if !(defined(LINUX) && !defined(SPARC) && !defined(SPARC64) && !defined(IA64) \
643	&& !defined(SH))
644extern long getrval2(struct tcb *);
645#endif
646#ifdef USE_PROCFS
647extern int proc_open(struct tcb *tcp, int attaching);
648#endif
649
650#define umove(pid, addr, objp)	\
651	umoven((pid), (addr), sizeof *(objp), (char *) (objp))
652
653#define printtv(tcp, addr)	\
654	printtv_bitness((tcp), (addr), BITNESS_CURRENT, 0)
655#define printtv_special(tcp, addr)	\
656	printtv_bitness((tcp), (addr), BITNESS_CURRENT, 1)
657
658extern void tprintf(const char *fmt, ...) __attribute__ ((format (printf, 1, 2)));
659
660#ifndef HAVE_STRERROR
661const char *strerror(int);
662#endif
663#ifndef HAVE_STRSIGNAL
664const char *strsignal(int);
665#endif
666
667extern int current_personality;
668extern const int personality_wordsize[];
669
670struct sysent {
671	int	nargs;
672	int	sys_flags;
673	int	(*sys_func)();
674	const char *sys_name;
675	long	native_scno;	/* Match against SYS_* constants.  */
676};
677
678extern const struct sysent *sysent;
679extern int nsyscalls;
680
681extern const char *const *errnoent;
682extern int nerrnos;
683
684struct ioctlent {
685	const char *doth;
686	const char *symbol;
687	unsigned long code;
688};
689
690extern const struct ioctlent *ioctlent;
691extern int nioctlents;
692
693extern const char *const *signalent;
694extern int nsignals;
695
696extern const struct ioctlent ioctlent0[];
697extern const int nioctlents0;
698extern const char *const signalent0[];
699extern const int nsignals0;
700
701#if SUPPORTED_PERSONALITIES >= 2
702extern const struct ioctlent ioctlent1[];
703extern const int nioctlents1;
704extern const char *const signalent1[];
705extern const int nsignals1;
706#endif /* SUPPORTED_PERSONALITIES >= 2 */
707
708#if SUPPORTED_PERSONALITIES >= 3
709extern const struct ioctlent ioctlent2[];
710extern const int nioctlents2;
711extern const char *const signalent2[];
712extern const int nsignals2;
713#endif /* SUPPORTED_PERSONALITIES >= 3 */
714
715#if HAVE_LONG_LONG
716
717/* _l refers to the lower numbered u_arg,
718 * _h refers to the higher numbered u_arg
719 */
720
721#if HAVE_LITTLE_ENDIAN_LONG_LONG
722#define LONG_LONG(_l,_h) \
723    ((long long)((unsigned long long)(unsigned)(_l) | ((unsigned long long)(_h)<<32)))
724#else
725#define LONG_LONG(_l,_h) \
726    ((long long)((unsigned long long)(unsigned)(_h) | ((unsigned long long)(_l)<<32)))
727#endif
728
729extern int printllval(struct tcb *, const char *, int);
730#endif
731
732#ifdef IA64
733extern long ia32;
734#endif
735
736extern int not_failing_only;
737extern int show_fd_path;
738extern int tracing_paths;
739