]> granicus.if.org Git - strace/blob - defs.h
eee4710963b3941d193c46e0f95bbedc530d13a6
[strace] / defs.h
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
162 extern long ptrace(int, int, char *, long);
163 #else /* !LINUX */
164 extern 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
258 extern 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 :               \
264          IOCTL_STATUS (t))
265 #define PR_WHY          pr_lwp.pr_why
266 #define PR_WHAT         pr_lwp.pr_what
267 #define PR_REG          pr_lwp.pr_context.uc_mcontext.gregs
268 #define PR_FLAGS        pr_lwp.pr_flags
269 #define PR_SYSCALL      pr_lwp.pr_syscall
270 #define PR_INFO         pr_lwp.pr_info
271 #define PIOCSTIP        PCSTOP
272 #define PIOCSET         PCSET
273 #define PIOCRESET       PCRESET
274 #define PIOCSTRACE      PCSTRACE
275 #define PIOCSFAULT      PCSFAULT
276 #define PIOCWSTOP       PCWSTOP
277 #define PIOCSTOP        PCSTOP
278 #define PIOCSENTRY      PCSENTRY
279 #define PIOCSEXIT       PCSEXIT
280 #define PIOCRUN         PCRUN
281 #else
282 #define IOCTL           ioctl
283 #define IOCTL_STATUS(t) ioctl (t->pfd, PIOCSTATUS, &t->status)
284 #define IOCTL_WSTOP(t)  ioctl (t->pfd, PIOCWSTOP, &t->status)
285 #define PR_WHY          pr_why
286 #define PR_WHAT         pr_what
287 #define PR_REG          pr_reg
288 #define PR_FLAGS        pr_flags
289 #define PR_SYSCALL      pr_syscall
290 #define PR_INFO         pr_info
291 #endif
292 #endif
293 #ifdef FREEBSD
294 #define IOCTL           ioctl
295 #define IOCTL_STATUS(t) ioctl (t->pfd, PIOCSTATUS, &t->status)
296 #define IOCTL_WSTOP(t)  ioctl (t->pfd, PIOCWAIT, &t->status)
297 #define PIOCRUN         PIOCCONT
298 #define PIOCWSTOP       PIOCWAIT
299 #define PR_WHY          why
300 #define PR_WHAT         val
301 #define PR_FLAGS        state
302 /* from /usr/src/sys/miscfs/procfs/procfs_vnops.c,
303    status.state = 0 for running, 1 for stopped */
304 #define PR_ASLEEP       1
305 #define PR_SYSENTRY     S_SCE
306 #define PR_SYSEXIT      S_SCX
307 #define PR_SIGNALLED    S_SIG
308 #define PR_FAULTED      S_CORE
309 #endif
310
311 #ifdef LINUX
312 # ifndef PTRACE_SETOPTIONS
313 #  define PTRACE_SETOPTIONS     0x4200
314 # endif
315 # ifndef PTRACE_O_TRACEFORK
316 #  define PTRACE_O_TRACEFORK    0x00000002
317 # endif
318 # ifndef PTRACE_O_TRACEVFORK
319 #  define PTRACE_O_TRACEVFORK   0x00000004
320 # endif
321 # ifndef PTRACE_O_TRACECLONE
322 #  define PTRACE_O_TRACECLONE   0x00000008
323 # endif
324
325 # ifndef PTRACE_EVENT_FORK
326 #  define PTRACE_EVENT_FORK     1
327 # endif
328 # ifndef PTRACE_EVENT_VFORK
329 #  define PTRACE_EVENT_VFORK    2
330 # endif
331 # ifndef PTRACE_EVENT_CLONE
332 #  define PTRACE_EVENT_CLONE    3
333 # endif
334 #endif /* LINUX */
335
336 /* Trace Control Block */
337 struct tcb {
338         short flags;            /* See below for TCB_ values */
339         int pid;                /* Process Id of this entry */
340         long scno;              /* System call number */
341         int u_nargs;            /* System call arguments */
342         long u_arg[MAX_ARGS];   /* System call arguments */
343 #if defined (LINUX_MIPSN32)
344         long long ext_arg[MAX_ARGS];    /* System call arguments */
345 #endif
346         int u_error;            /* Error code */
347         long u_rval;            /* (first) return value */
348 #ifdef HAVE_LONG_LONG
349         long long u_lrval;      /* long long return value */
350 #endif
351         FILE *outf;             /* Output file for this process */
352         int curcol;             /* Output column for this process */
353         const char *auxstr;     /* Auxiliary info from syscall (see RVAL_STR) */
354         struct timeval stime;   /* System time usage as of last process wait */
355         struct timeval dtime;   /* Delta for system time usage */
356         struct timeval etime;   /* Syscall entry time */
357                                 /* Support for tracing forked processes */
358         struct tcb *parent;     /* Parent of this process */
359         int nchildren;          /* # of traced children */
360         int waitpid;            /* pid(s) this process is waiting for */
361         int nzombies;           /* # of formerly traced children now dead */
362 #ifdef LINUX
363         int nclone_threads;     /* # of nchildren with CLONE_THREAD */
364         int nclone_waiting;     /* clone threads in wait4 (TCB_SUSPENDED) */
365 #endif
366                                 /* (1st arg of wait4()) */
367         long baddr;             /* `Breakpoint' address */
368         long inst[2];           /* Instructions on above */
369         int pfd;                /* proc file descriptor */
370 #ifdef SVR4
371 #ifdef HAVE_MP_PROCFS
372         int pfd_stat;
373         int pfd_as;
374         pstatus_t status;
375 #else
376         prstatus_t status;      /* procfs status structure */
377 #endif
378 #endif
379         int ptrace_errno;
380 #ifdef FREEBSD
381         struct procfs_status status;
382         int pfd_reg;
383         int pfd_status;
384 #endif
385 };
386
387 /* TCB flags */
388 #define TCB_STARTUP     00001   /* We have just begun ptracing this process */
389 #define TCB_INUSE       00002   /* This table entry is in use */
390 #define TCB_INSYSCALL   00004   /* A system call is in progress */
391 #define TCB_ATTACHED    00010   /* Process is not our own child */
392 #define TCB_EXITING     00020   /* As far as we know, this process is exiting */
393 #define TCB_SUSPENDED   00040   /* Process can not be allowed to resume just now */
394 #define TCB_BPTSET      00100   /* "Breakpoint" set after fork(2) */
395 #define TCB_SIGTRAPPED  00200   /* Process wanted to block SIGTRAP */
396 #define TCB_FOLLOWFORK  00400   /* Process should have forks followed */
397 #define TCB_REPRINT     01000   /* We should reprint this syscall on exit */
398 #ifdef LINUX
399 /* x86 does not need TCB_WAITEXECVE.
400  * It can detect execve's SIGTRAP by looking at eax/rax.
401  * See "stray syscall exit: eax = " message in syscall_fixup().
402  */
403 # if defined(ALPHA) || defined(AVR32) || defined(SPARC) || defined(SPARC64) \
404   || defined(POWERPC) || defined(IA64) || defined(HPPA) \
405   || defined(SH) || defined(SH64) || defined(S390) || defined(S390X) \
406   || defined(ARM) || defined(MIPS) || defined(BFIN) || defined(TILE)
407 #  define TCB_WAITEXECVE 02000  /* ignore SIGTRAP after exceve */
408 # endif
409 # define TCB_CLONE_THREAD  010000 /* CLONE_THREAD set in creating syscall */
410 # define TCB_GROUP_EXITING 020000 /* TCB_EXITING was exit_group, not _exit */
411 # include <sys/syscall.h>
412 # ifndef __NR_exit_group
413 # /* Hack: Most headers around are too old to have __NR_exit_group.  */
414 #  ifdef ALPHA
415 #   define __NR_exit_group 405
416 #  elif defined I386
417 #   define __NR_exit_group 252
418 #  elif defined X86_64
419 #   define __NR_exit_group 231
420 #  elif defined IA64
421 #   define __NR_exit_group 1236
422 #  elif defined POWERPC
423 #   define __NR_exit_group 234
424 #  elif defined S390 || defined S390X
425 #   define __NR_exit_group 248
426 #  elif defined SPARC || defined SPARC64
427 #   define __NR_exit_group 188
428 #  elif defined M68K
429 #   define __NR_exit_group 247
430 #  endif /* ALPHA et al */
431 # endif /* !__NR_exit_group */
432 #endif /* LINUX */
433
434 /* qualifier flags */
435 #define QUAL_TRACE      0001    /* this system call should be traced */
436 #define QUAL_ABBREV     0002    /* abbreviate the structures of this syscall */
437 #define QUAL_VERBOSE    0004    /* decode the structures of this syscall */
438 #define QUAL_RAW        0010    /* print all args in hex for this syscall */
439 #define QUAL_SIGNAL     0020    /* report events with this signal */
440 #define QUAL_FAULT      0040    /* report events with this fault */
441 #define QUAL_READ       0100    /* dump data read on this file descriptor */
442 #define QUAL_WRITE      0200    /* dump data written to this file descriptor */
443
444 #define entering(tcp)   (!((tcp)->flags & TCB_INSYSCALL))
445 #define exiting(tcp)    ((tcp)->flags & TCB_INSYSCALL)
446 #define syserror(tcp)   ((tcp)->u_error != 0)
447 #define verbose(tcp)    (qual_flags[(tcp)->scno] & QUAL_VERBOSE)
448 #define abbrev(tcp)     (qual_flags[(tcp)->scno] & QUAL_ABBREV)
449
450 struct xlat {
451         int val;
452         const char *str;
453 };
454
455 extern const struct xlat open_mode_flags[];
456 extern const struct xlat addrfams[];
457 extern const struct xlat struct_user_offsets[];
458 extern const struct xlat open_access_modes[];
459
460 /* Format of syscall return values */
461 #define RVAL_DECIMAL    000     /* decimal format */
462 #define RVAL_HEX        001     /* hex format */
463 #define RVAL_OCTAL      002     /* octal format */
464 #define RVAL_UDECIMAL   003     /* unsigned decimal format */
465 #define RVAL_LDECIMAL   004     /* long decimal format */
466 #define RVAL_LHEX       005     /* long hex format */
467 #define RVAL_LOCTAL     006     /* long octal format */
468 #define RVAL_LUDECIMAL  007     /* long unsigned decimal format */
469 #define RVAL_MASK       007     /* mask for these values */
470
471 #define RVAL_STR        010     /* Print `auxstr' field after return val */
472 #define RVAL_NONE       020     /* Print nothing */
473
474 #ifndef offsetof
475 #define offsetof(type, member)  (((char *) &(((type *) NULL)->member)) - \
476                                  ((char *) (type *) NULL))
477 #endif /* !offsetof */
478
479 /* get offset of member within a user struct */
480 #define uoff(member)    offsetof(struct user, member)
481
482 #define TRACE_FILE      001     /* Trace file-related syscalls. */
483 #define TRACE_IPC       002     /* Trace IPC-related syscalls. */
484 #define TRACE_NETWORK   004     /* Trace network-related syscalls. */
485 #define TRACE_PROCESS   010     /* Trace process-related syscalls. */
486 #define TRACE_SIGNAL    020     /* Trace signal-related syscalls. */
487 #define TRACE_DESC      040     /* Trace file descriptor-related syscalls. */
488
489 typedef enum {
490         CFLAG_NONE = 0,
491         CFLAG_ONLY_STATS,
492         CFLAG_BOTH
493 } cflag_t;
494
495 extern struct tcb **tcbtab;
496 extern int *qual_flags;
497 extern int debug, followfork;
498 extern unsigned int ptrace_setoptions;
499 extern int dtime, xflag, qflag;
500 extern cflag_t cflag;
501 extern int acolumn;
502 extern unsigned int nprocs, tcbtabsize;
503 extern int max_strlen;
504 extern struct tcb *tcp_last;
505
506 enum bitness_t { BITNESS_CURRENT = 0, BITNESS_32 };
507
508 extern int set_personality(int personality);
509 extern const char *xlookup(const struct xlat *, int);
510 extern struct tcb *alloc_tcb(int, int);
511 extern struct tcb *pid2tcb(int);
512 extern void droptcb(struct tcb *);
513 extern void expand_tcbtab(void);
514
515 #define alloctcb(pid)   alloc_tcb((pid), 1)
516
517 extern void set_sortby(const char *);
518 extern void set_overhead(int);
519 extern void qualify(const char *);
520 extern int get_scno(struct tcb *);
521 extern long known_scno(struct tcb *);
522 extern long do_ptrace(int request, struct tcb *tcp, void *addr, void *data);
523 extern int ptrace_restart(int request, struct tcb *tcp, int sig);
524 extern int force_result(struct tcb *, int, long);
525 extern int trace_syscall(struct tcb *);
526 extern int count_syscall(struct tcb *, struct timeval *);
527 extern void printxval(const struct xlat *, int, const char *);
528 extern int printargs(struct tcb *);
529 extern int addflags(const struct xlat *, int);
530 extern int printflags(const struct xlat *, int, const char *);
531 extern const char *sprintflags(const char *, const struct xlat *, int);
532 extern int umoven(struct tcb *, long, int, char *);
533 extern int umovestr(struct tcb *, long, int, char *);
534 extern int upeek(struct tcb *, long, long *);
535 extern void dumpiov(struct tcb *, int, long);
536 extern void dumpstr(struct tcb *, long, int);
537 extern void printstr(struct tcb *, long, int);
538 extern void printnum(struct tcb *, long, const char *);
539 extern void printnum_int(struct tcb *, long, const char *);
540 extern void printpath(struct tcb *, long);
541 extern void printpathn(struct tcb *, long, int);
542 extern void printtv_bitness(struct tcb *, long, enum bitness_t, int);
543 extern void sprinttv(struct tcb *, long, enum bitness_t, char *);
544 extern void print_timespec(struct tcb *, long);
545 extern void sprint_timespec(char *, struct tcb *, long);
546 #ifdef HAVE_SIGINFO_T
547 extern void printsiginfo(siginfo_t *, int);
548 #endif
549 extern void printsock(struct tcb *, long, int);
550 extern void print_sock_optmgmt(struct tcb *, long, int);
551 extern void printrusage(struct tcb *, long);
552 extern void printuid(const char *, unsigned long);
553 extern int clearbpt(struct tcb *);
554 extern int setbpt(struct tcb *);
555 extern int sigishandled(struct tcb *, int);
556 extern void printcall(struct tcb *);
557 extern const char *signame(int);
558 extern void print_sigset(struct tcb *, long, int);
559 extern void printsignal(int);
560 extern void printleader(struct tcb *);
561 extern void printtrailer(void);
562 extern void tabto(int);
563 extern void call_summary(FILE *);
564 extern void tprint_iov(struct tcb *, unsigned long, unsigned long);
565 extern void tprint_open_modes(mode_t);
566 extern const char *sprint_open_modes(mode_t);
567 extern int is_restart_error(struct tcb *);
568
569 extern int change_syscall(struct tcb *, int);
570 extern int internal_fork(struct tcb *);
571 extern int internal_exec(struct tcb *);
572 extern int internal_wait(struct tcb *, int);
573 extern int internal_exit(struct tcb *);
574
575 extern const struct ioctlent *ioctl_lookup(long);
576 extern const struct ioctlent *ioctl_next_match(const struct ioctlent *);
577 extern int ioctl_decode(struct tcb *, long, long);
578 extern int term_ioctl(struct tcb *, long, long);
579 extern int sock_ioctl(struct tcb *, long, long);
580 extern int proc_ioctl(struct tcb *, int, int);
581 extern int stream_ioctl(struct tcb *, int, int);
582 #ifdef LINUX
583 extern int rtc_ioctl(struct tcb *, long, long);
584 extern int scsi_ioctl(struct tcb *, long, long);
585 #endif
586
587 extern int tv_nz(struct timeval *);
588 extern int tv_cmp(struct timeval *, struct timeval *);
589 extern double tv_float(struct timeval *);
590 extern void tv_add(struct timeval *, struct timeval *, struct timeval *);
591 extern void tv_sub(struct timeval *, struct timeval *, struct timeval *);
592 extern void tv_mul(struct timeval *, struct timeval *, int);
593 extern void tv_div(struct timeval *, struct timeval *, int);
594
595 #ifdef SUNOS4
596 extern int fixvfork(struct tcb *);
597 #endif
598 #if !(defined(LINUX) && !defined(SPARC) && !defined(SPARC64) && !defined(IA64))
599 extern long getrval2(struct tcb *);
600 #endif
601 #ifdef USE_PROCFS
602 extern int proc_open(struct tcb *tcp, int attaching);
603 #endif
604
605 #define umove(pid, addr, objp)  \
606         umoven((pid), (addr), sizeof *(objp), (char *) (objp))
607
608 #define printtv(tcp, addr)      \
609         printtv_bitness((tcp), (addr), BITNESS_CURRENT, 0)
610 #define printtv_special(tcp, addr)      \
611         printtv_bitness((tcp), (addr), BITNESS_CURRENT, 1)
612
613 #ifdef __GNUC__
614 extern void tprintf(const char *fmt, ...)
615         __attribute__ ((format (printf, 1, 2)));
616 #else
617 extern void tprintf(const char *fmt, ...);
618 #endif
619
620 #ifndef HAVE_STRERROR
621 const char *strerror(int);
622 #endif
623 #ifndef HAVE_STRSIGNAL
624 const char *strsignal(int);
625 #endif
626
627 extern int current_personality;
628 extern const int personality_wordsize[];
629
630 struct sysent {
631         int     nargs;
632         int     sys_flags;
633         int     (*sys_func)();
634         const char *sys_name;
635         long    native_scno;    /* Match against SYS_* constants.  */
636 };
637
638 extern const struct sysent *sysent;
639 extern int nsyscalls;
640
641 extern const char *const *errnoent;
642 extern int nerrnos;
643
644 struct ioctlent {
645         const char *doth;
646         const char *symbol;
647         unsigned long code;
648 };
649
650 extern const struct ioctlent *ioctlent;
651 extern int nioctlents;
652
653 extern const char *const *signalent;
654 extern int nsignals;
655
656 extern const struct ioctlent ioctlent0[];
657 extern const int nioctlents0;
658 extern const char *const signalent0[];
659 extern const int nsignals0;
660
661 #if SUPPORTED_PERSONALITIES >= 2
662 extern const struct ioctlent ioctlent1[];
663 extern const int nioctlents1;
664 extern const char *const signalent1[];
665 extern const int nsignals1;
666 #endif /* SUPPORTED_PERSONALITIES >= 2 */
667
668 #if SUPPORTED_PERSONALITIES >= 3
669 extern const struct ioctlent ioctlent2[];
670 extern const int nioctlents2;
671 extern const char *const signalent2[];
672 extern const int nsignals2;
673 #endif /* SUPPORTED_PERSONALITIES >= 3 */
674
675 #if HAVE_LONG_LONG
676
677 /* _l refers to the lower numbered u_arg,
678  * _h refers to the higher numbered u_arg
679  */
680
681 #if HAVE_LITTLE_ENDIAN_LONG_LONG
682 #define LONG_LONG(_l,_h) \
683     ((long long)((unsigned long long)(unsigned)(_l) | ((unsigned long long)(_h)<<32)))
684 #else
685 #define LONG_LONG(_l,_h) \
686     ((long long)((unsigned long long)(unsigned)(_h) | ((unsigned long long)(_l)<<32)))
687 #endif
688
689 extern int printllval(struct tcb *, const char *, int);
690 #endif
691
692 #ifdef IA64
693 extern long ia32;
694 #endif
695
696 extern int not_failing_only;