]> granicus.if.org Git - strace/blob - defs.h
Make strace somewhat resilient against process disappearing
[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 #define MAX_ARGS        32      /* maximum number of args to a syscall */
68 #endif
69 #ifndef DEFAULT_SORTBY
70 #define DEFAULT_SORTBY "time"   /* default sorting method for call profiling */
71 #endif
72
73 #include <sys/types.h>
74 #include <unistd.h>
75 #include <stdlib.h>
76 #include <stdio.h>
77 #include <ctype.h>
78 #include <string.h>
79 #include <time.h>
80 #include <sys/time.h>
81 #include <errno.h>
82
83 #ifdef HAVE_STDBOOL_H
84 #include <stdbool.h>
85 #endif
86
87 #ifdef STDC_HEADERS
88 #include <stddef.h>
89 #endif /* STDC_HEADERS */
90
91 #ifdef HAVE_SIGINFO_T
92 #include <signal.h>
93 #endif
94
95 #if defined(LINUX)
96 #  if defined(SPARC) || defined(SPARC64)
97 #     define LINUXSPARC
98 #  endif
99 #  if defined(ALPHA)
100 #     define LINUX_64BIT
101 #  endif
102 #  if defined(X86_64)
103 #     define LINUX_X86_64
104 #  endif
105 #  if defined(MIPS) && _MIPS_SIM == _MIPS_SIM_ABI32
106 #     define LINUX_MIPSO32
107 #  endif
108 #  if defined(MIPS) && _MIPS_SIM == _MIPS_SIM_NABI32
109 #     define LINUX_MIPSN32
110 #     define LINUX_MIPS64
111 #  endif
112 #  if defined(MIPS) && _MIPS_SIM == _MIPS_SIM_ABI64
113 #     define LINUX_MIPSN64
114 #     define LINUX_MIPS64
115 #  endif
116 #endif
117
118 #if defined(SVR4) || defined(FREEBSD)
119 #define USE_PROCFS
120 #else
121 #undef USE_PROCFS
122 #endif
123
124 #ifdef FREEBSD
125 #ifndef I386
126 #error "FreeBSD support is only for i386 arch right now."
127 #endif
128 #include <machine/psl.h>
129 #include <machine/reg.h>
130 #include <sys/syscall.h>
131 #endif
132
133 #ifdef USE_PROCFS
134 #include <sys/procfs.h>
135 #ifdef HAVE_MP_PROCFS
136 #include <sys/uio.h>
137 #endif
138 #ifdef FREEBSD
139 #include <sys/pioctl.h>
140 #endif /* FREEBSD */
141 #else /* !USE_PROCFS */
142 #if (defined(LINUXSPARC) || defined (LINUX_X86_64)) && defined(__GLIBC__)
143 #include <sys/ptrace.h>
144 #else
145 /* Work around awkward prototype in ptrace.h. */
146 #define ptrace xptrace
147 #include <sys/ptrace.h>
148 #undef ptrace
149 #ifdef POWERPC
150 #define __KERNEL__
151 #include <asm/ptrace.h>
152 #undef __KERNEL__
153 #endif
154 #ifdef __STDC__
155 #ifdef LINUX
156 extern long ptrace(int, int, char *, long);
157 #else /* !LINUX */
158 extern int ptrace(int, int, char *, int, ...);
159 #endif /* !LINUX */
160 #else /* !__STDC__ */
161 extern int ptrace();
162 #endif /* !__STDC__ */
163 #endif /* !LINUXSPARC */
164 #endif /* !SVR4 */
165
166 #ifdef LINUX
167 #if !defined(__GLIBC__)
168 #define PTRACE_PEEKUSER PTRACE_PEEKUSR
169 #define PTRACE_POKEUSER PTRACE_POKEUSR
170 #endif
171 #ifdef ALPHA
172 #  define REG_R0 0
173 #  define REG_A0 16
174 #  define REG_A3 19
175 #  define REG_FP 30
176 #  define REG_PC 64
177 #endif /* ALPHA */
178 #ifdef MIPS
179 #  define REG_V0 2
180 #  define REG_A0 4
181 #  define REG_A3 7
182 #  define REG_SP 29
183 #  define REG_EPC 64
184 #endif /* MIPS */
185 #ifdef HPPA
186 #  define PT_GR20 (20*4)
187 #  define PT_GR26 (26*4)
188 #  define PT_GR28 (28*4)
189 #  define PT_IAOQ0 (106*4)
190 #  define PT_IAOQ1 (107*4)
191 #endif /* HPPA */
192 #ifdef SH64
193    /* SH64 Linux - this code assumes the following kernel API for system calls:
194           PC           Offset 0
195           System Call  Offset 16 (actually, (syscall no.) | (0x1n << 16),
196                        where n = no. of parameters.
197           Other regs   Offset 24+
198
199           On entry:    R2-7 = parameters 1-6 (as many as necessary)
200           On return:   R9   = result. */
201
202    /* Offset for peeks of registers */
203 #  define REG_OFFSET         (24)
204 #  define REG_GENERAL(x)     (8*(x)+REG_OFFSET)
205 #  define REG_PC             (0*8)
206 #  define REG_SYSCALL        (2*8)
207 #endif /* SH64 */
208 #endif /* LINUX */
209
210 #define SUPPORTED_PERSONALITIES 1
211 #define DEFAULT_PERSONALITY 0
212
213 #ifdef LINUXSPARC
214 #define PERSONALITY0_WORDSIZE 4
215 #define PERSONALITY1_WORDSIZE 4
216 #undef  SUPPORTED_PERSONALITIES
217 #if defined(SPARC64)
218 #include <asm/psrcompat.h>
219 #define SUPPORTED_PERSONALITIES 3
220 #define PERSONALITY2_WORDSIZE 8
221 #else
222 #include <asm/psr.h>
223 #define SUPPORTED_PERSONALITIES 2
224 #endif /* SPARC64 */
225 #endif /* LINUXSPARC */
226
227 #ifdef X86_64
228 #undef SUPPORTED_PERSONALITIES
229 #define SUPPORTED_PERSONALITIES 2
230 #define PERSONALITY0_WORDSIZE 8
231 #define PERSONALITY1_WORDSIZE 4
232 #endif
233
234 #ifdef ARM
235 #undef SUPPORTED_PERSONALITIES
236 #define SUPPORTED_PERSONALITIES 2
237 #define PERSONALITY0_WORDSIZE 4
238 #define PERSONALITY1_WORDSIZE 4
239 #endif
240
241 #ifdef SVR4
242 #ifdef HAVE_MP_PROCFS
243 extern int mp_ioctl (int f, int c, void *a, int s);
244 #define IOCTL(f,c,a)    mp_ioctl (f, c, a, sizeof *a)
245 #define IOCTL_STATUS(t) \
246          pread (t->pfd_stat, &t->status, sizeof t->status, 0)
247 #define IOCTL_WSTOP(t)                                          \
248         (IOCTL (t->pfd, PCWSTOP, (char *)NULL) < 0 ? -1 :               \
249          IOCTL_STATUS (t))
250 #define PR_WHY          pr_lwp.pr_why
251 #define PR_WHAT         pr_lwp.pr_what
252 #define PR_REG          pr_lwp.pr_context.uc_mcontext.gregs
253 #define PR_FLAGS        pr_lwp.pr_flags
254 #define PR_SYSCALL      pr_lwp.pr_syscall
255 #define PR_INFO         pr_lwp.pr_info
256 #define PIOCSTIP        PCSTOP
257 #define PIOCSET         PCSET
258 #define PIOCRESET       PCRESET
259 #define PIOCSTRACE      PCSTRACE
260 #define PIOCSFAULT      PCSFAULT
261 #define PIOCWSTOP       PCWSTOP
262 #define PIOCSTOP        PCSTOP
263 #define PIOCSENTRY      PCSENTRY
264 #define PIOCSEXIT       PCSEXIT
265 #define PIOCRUN         PCRUN
266 #else
267 #define IOCTL           ioctl
268 #define IOCTL_STATUS(t) ioctl (t->pfd, PIOCSTATUS, &t->status)
269 #define IOCTL_WSTOP(t)  ioctl (t->pfd, PIOCWSTOP, &t->status)
270 #define PR_WHY          pr_why
271 #define PR_WHAT         pr_what
272 #define PR_REG          pr_reg
273 #define PR_FLAGS        pr_flags
274 #define PR_SYSCALL      pr_syscall
275 #define PR_INFO         pr_info
276 #endif
277 #endif
278 #ifdef FREEBSD
279 #define IOCTL           ioctl
280 #define IOCTL_STATUS(t) ioctl (t->pfd, PIOCSTATUS, &t->status)
281 #define IOCTL_WSTOP(t)  ioctl (t->pfd, PIOCWAIT, &t->status)
282 #define PIOCRUN         PIOCCONT
283 #define PIOCWSTOP       PIOCWAIT
284 #define PR_WHY          why
285 #define PR_WHAT         val
286 #define PR_FLAGS        state
287 /* from /usr/src/sys/miscfs/procfs/procfs_vnops.c,
288    status.state = 0 for running, 1 for stopped */
289 #define PR_ASLEEP       1
290 #define PR_SYSENTRY     S_SCE
291 #define PR_SYSEXIT      S_SCX
292 #define PR_SIGNALLED    S_SIG
293 #define PR_FAULTED      S_CORE
294 #endif
295
296 /* Trace Control Block */
297 struct tcb {
298         short flags;            /* See below for TCB_ values */
299         int pid;                /* Process Id of this entry */
300         long scno;              /* System call number */
301         int u_nargs;            /* System call arguments */
302         long u_arg[MAX_ARGS];   /* System call arguments */
303 #if defined (LINUX_MIPSN32)
304         long long ext_arg[MAX_ARGS];    /* System call arguments */
305 #endif
306         int u_error;            /* Error code */
307         long u_rval;            /* (first) return value */
308 #ifdef HAVE_LONG_LONG
309         long long u_lrval;      /* long long return value */
310 #endif
311         FILE *outf;             /* Output file for this process */
312         const char *auxstr;     /* Auxiliary info from syscall (see RVAL_STR) */
313         struct timeval stime;   /* System time usage as of last process wait */
314         struct timeval dtime;   /* Delta for system time usage */
315         struct timeval etime;   /* Syscall entry time */
316                                 /* Support for tracing forked processes */
317         struct tcb *parent;     /* Parent of this process */
318         int nchildren;          /* # of traced children */
319         int waitpid;            /* pid(s) this process is waiting for */
320         int nzombies;           /* # of formerly traced children now dead */
321 #ifdef LINUX
322         int nclone_threads;     /* # of nchildren with CLONE_THREAD */
323         int nclone_detached;    /* # of nchildren with CLONE_DETACHED */
324         int nclone_waiting;     /* clone threads in wait4 (TCB_SUSPENDED) */
325 #endif
326                                 /* (1st arg of wait4()) */
327         long baddr;             /* `Breakpoint' address */
328         long inst[2];           /* Instructions on above */
329         int pfd;                /* proc file descriptor */
330 #ifdef SVR4
331 #ifdef HAVE_MP_PROCFS
332         int pfd_stat;
333         int pfd_as;
334         pstatus_t status;
335 #else
336         prstatus_t status;      /* procfs status structure */
337 #endif
338 #endif
339         int ptrace_errno;
340 #ifdef FREEBSD
341         struct procfs_status status;
342         int pfd_reg;
343         int pfd_status;
344 #endif
345 };
346
347 /* TCB flags */
348 #define TCB_STARTUP     00001   /* We have just begun ptracing this process */
349 #define TCB_INUSE       00002   /* This table entry is in use */
350 #define TCB_INSYSCALL   00004   /* A system call is in progress */
351 #define TCB_ATTACHED    00010   /* Process is not our own child */
352 #define TCB_EXITING     00020   /* As far as we know, this process is exiting */
353 #define TCB_SUSPENDED   00040   /* Process has done a wait(4), that can
354                                    not be allowed to complete just now */
355 #define TCB_BPTSET      00100   /* "Breakpoint" set after fork(2) */
356 #define TCB_SIGTRAPPED  00200   /* Process wanted to block SIGTRAP */
357 #define TCB_FOLLOWFORK  00400   /* Process should have forks followed */
358 #define TCB_REPRINT     01000   /* We should reprint this syscall on exit */
359 #ifdef LINUX
360 # if defined(ALPHA) || defined(SPARC) || defined(SPARC64) || defined(POWERPC) || defined(IA64) || defined(HPPA) || defined(SH) || defined(SH64) || defined(S390) || defined(S390X) || defined(ARM) || defined(MIPS) || defined(BFIN)
361 #  define TCB_WAITEXECVE 02000  /* ignore SIGTRAP after exceve */
362 # endif
363 # define TCB_CLONE_DETACHED 04000 /* CLONE_DETACHED set in creating syscall */
364 # define TCB_CLONE_THREAD  010000 /* CLONE_THREAD set in creating syscall */
365 # define TCB_GROUP_EXITING 020000 /* TCB_EXITING was exit_group, not _exit */
366 # include <sys/syscall.h>
367 # ifndef __NR_exit_group
368 # /* Hack: Most headers around are too old to have __NR_exit_group.  */
369 #  ifdef ALPHA
370 #   define __NR_exit_group 405
371 #  elif defined I386
372 #   define __NR_exit_group 252
373 #  elif defined X86_64
374 #   define __NR_exit_group 231
375 #  elif defined IA64
376 #   define __NR_exit_group 1236
377 #  elif defined POWERPC
378 #   define __NR_exit_group 234
379 #  elif defined S390 || defined S390X
380 #   define __NR_exit_group 248
381 #  elif defined SPARC || defined SPARC64
382 #   define __NR_exit_group 188
383 #  elif defined M68K
384 #   define __NR_exit_group 247
385 #  endif /* ALPHA et al */
386 # endif /* !__NR_exit_group */
387 #endif /* LINUX */
388
389 /* qualifier flags */
390 #define QUAL_TRACE      0001    /* this system call should be traced */
391 #define QUAL_ABBREV     0002    /* abbreviate the structures of this syscall */
392 #define QUAL_VERBOSE    0004    /* decode the structures of this syscall */
393 #define QUAL_RAW        0010    /* print all args in hex for this syscall */
394 #define QUAL_SIGNAL     0020    /* report events with this signal */
395 #define QUAL_FAULT      0040    /* report events with this fault */
396 #define QUAL_READ       0100    /* dump data read on this file descriptor */
397 #define QUAL_WRITE      0200    /* dump data written to this file descriptor */
398
399 #define entering(tcp)   (!((tcp)->flags & TCB_INSYSCALL))
400 #define exiting(tcp)    ((tcp)->flags & TCB_INSYSCALL)
401 #define syserror(tcp)   ((tcp)->u_error != 0)
402 #define verbose(tcp)    (qual_flags[(tcp)->scno] & QUAL_VERBOSE)
403 #define abbrev(tcp)     (qual_flags[(tcp)->scno] & QUAL_ABBREV)
404
405 struct xlat {
406         int val;
407         char *str;
408 };
409
410 /* Format of syscall return values */
411 #define RVAL_DECIMAL    000     /* decimal format */
412 #define RVAL_HEX        001     /* hex format */
413 #define RVAL_OCTAL      002     /* octal format */
414 #define RVAL_UDECIMAL   003     /* unsigned decimal format */
415 #define RVAL_LDECIMAL   004     /* long decimal format */
416 #define RVAL_LHEX       005     /* long hex format */
417 #define RVAL_LOCTAL     006     /* long octal format */
418 #define RVAL_LUDECIMAL  007     /* long unsigned decimal format */
419 #define RVAL_MASK       007     /* mask for these values */
420
421 #define RVAL_STR        010     /* Print `auxstr' field after return val */
422 #define RVAL_NONE       020     /* Print nothing */
423
424 #ifndef offsetof
425 #define offsetof(type, member)  (((char *) &(((type *) NULL)->member)) - \
426                                  ((char *) (type *) NULL))
427 #endif /* !offsetof */
428
429 /* get offset of member within a user struct */
430 #define uoff(member)    offsetof(struct user, member)
431
432 #define TRACE_FILE      001     /* Trace file-related syscalls. */
433 #define TRACE_IPC       002     /* Trace IPC-related syscalls. */
434 #define TRACE_NETWORK   004     /* Trace network-related syscalls. */
435 #define TRACE_PROCESS   010     /* Trace process-related syscalls. */
436 #define TRACE_SIGNAL    020     /* Trace signal-related syscalls. */
437 #define TRACE_DESC      040     /* Trace file descriptor-related syscalls. */
438
439 extern struct tcb **tcbtab;
440 extern int *qual_flags;
441 extern int debug, followfork;
442 extern int dtime, cflag, xflag, qflag;
443 extern int acolumn;
444 extern unsigned int nprocs, tcbtabsize;
445 extern int max_strlen;
446 extern struct tcb *tcp_last;
447
448 #ifdef __STDC__
449 #define P(args) args
450 #else
451 #define P(args) ()
452 #endif
453
454 enum bitness_t { BITNESS_CURRENT = 0, BITNESS_32 };
455
456 extern int set_personality P((int personality));
457 extern const char *xlookup P((const struct xlat *, int));
458 extern struct tcb *alloc_tcb P((int, int));
459 extern struct tcb *pid2tcb P((int));
460 extern void droptcb P((struct tcb *));
461 extern int expand_tcbtab P((void));
462
463 #define alloctcb(pid)   alloc_tcb((pid), 1)
464
465 extern void set_sortby P((char *));
466 extern void set_overhead P((int));
467 extern void qualify P((char *));
468 extern int get_scno P((struct tcb *));
469 extern long known_scno P((struct tcb *));
470 extern long do_ptrace P((int request, struct tcb *tcp, void *addr, void *data));
471 extern int ptrace_restart P((int request, struct tcb *tcp, int sig));
472 extern int trace_syscall P((struct tcb *));
473 extern int count_syscall P((struct tcb *, struct timeval *));
474 extern void printxval P((const struct xlat *, int, const char *));
475 extern int printargs P((struct tcb *));
476 extern int addflags P((const struct xlat *, int));
477 extern int printflags P((const struct xlat *, int, const char *));
478 extern const char *sprintflags P((const char *, const struct xlat *, int));
479 extern int umoven P((struct tcb *, long, int, char *));
480 extern int umovestr P((struct tcb *, long, int, char *));
481 extern int upeek P((struct tcb *, long, long *));
482 extern void dumpiov P((struct tcb *, int, long));
483 extern void dumpstr P((struct tcb *, long, int));
484 extern void printstr P((struct tcb *, long, int));
485 extern void printnum P((struct tcb *, long, char *));
486 extern void printnum_int P((struct tcb *, long, char *));
487 extern void printpath P((struct tcb *, long));
488 extern void printpathn P((struct tcb *, long, int));
489 extern void printtv_bitness P((struct tcb *, long, enum bitness_t, int));
490 extern void sprinttv P((struct tcb *, long, enum bitness_t, char *));
491 extern void print_timespec P((struct tcb *, long));
492 extern void sprint_timespec P((char *, struct tcb *, long));
493 #ifdef HAVE_SIGINFO_T
494 extern void printsiginfo P((siginfo_t *, int));
495 #endif
496 extern void printsock P((struct tcb *, long, int));
497 extern void print_sock_optmgmt P((struct tcb *, long, int));
498 extern void printrusage P((struct tcb *, long));
499 extern void printuid P((const char *, unsigned long));
500 extern int clearbpt P((struct tcb *));
501 extern int setbpt P((struct tcb *));
502 extern int sigishandled P((struct tcb *, int));
503 extern void printcall P((struct tcb *));
504 extern const char *signame P((int));
505 extern void print_sigset P((struct tcb *, long, int));
506 extern void printsignal P((int));
507 extern void printleader P((struct tcb *));
508 extern void printtrailer P((struct tcb *));
509 extern void tabto P((int));
510 extern void call_summary P((FILE *));
511 extern void tprint_iov P((struct tcb *, unsigned long, unsigned long));
512 extern void tprint_open_modes P((struct tcb *, mode_t));
513 extern int is_restart_error P((struct tcb *));
514
515 #ifdef LINUX
516 extern int internal_clone P((struct tcb *));
517 #endif
518 extern int internal_fork P((struct tcb *));
519 extern int internal_exec P((struct tcb *));
520 extern int internal_wait P((struct tcb *, int));
521 extern int internal_exit P((struct tcb *));
522
523 extern const struct ioctlent *ioctl_lookup P((long));
524 extern const struct ioctlent *ioctl_next_match P((const struct ioctlent *));
525 extern int ioctl_decode P((struct tcb *, long, long));
526 extern int term_ioctl P((struct tcb *, long, long));
527 extern int sock_ioctl P((struct tcb *, long, long));
528 extern int proc_ioctl P((struct tcb *, int, int));
529 extern int stream_ioctl P((struct tcb *, int, int));
530 #ifdef LINUX
531 extern int rtc_ioctl P((struct tcb *, long, long));
532 extern int scsi_ioctl P((struct tcb *, long, long));
533 #endif
534
535 extern void tv_tv P((struct timeval *, int, int));
536 extern int tv_nz P((struct timeval *));
537 extern int tv_cmp P((struct timeval *, struct timeval *));
538 extern double tv_float P((struct timeval *));
539 extern void tv_add P((struct timeval *, struct timeval *, struct timeval *));
540 extern void tv_sub P((struct timeval *, struct timeval *, struct timeval *));
541 extern void tv_mul P((struct timeval *, struct timeval *, int));
542 extern void tv_div P((struct timeval *, struct timeval *, int));
543
544 #ifdef SUNOS4
545 extern int fixvfork P((struct tcb *));
546 #endif
547 #if !(defined(LINUX) && !defined(SPARC) && !defined(SPARC64) && !defined(IA64))
548 extern long getrval2 P((struct tcb *));
549 #endif
550 #ifdef USE_PROCFS
551 extern int proc_open P((struct tcb *tcp, int attaching));
552 #endif
553
554 #define umove(pid, addr, objp)  \
555         umoven((pid), (addr), sizeof *(objp), (char *) (objp))
556
557 #define printtv(tcp, addr)      \
558         printtv_bitness((tcp), (addr), BITNESS_CURRENT, 0)
559 #define printtv_special(tcp, addr)      \
560         printtv_bitness((tcp), (addr), BITNESS_CURRENT, 1)
561
562 #ifdef __STDC__
563 #ifdef __GNUC__
564 extern void tprintf(const char *fmt, ...)
565         __attribute__ ((format (printf, 1, 2)));
566 #else
567 extern void tprintf(const char *fmt, ...);
568 #endif
569 #else
570 extern void tprintf();
571 #endif
572
573 #ifndef HAVE_STRERROR
574 const char *strerror P((int));
575 #endif
576 #ifndef HAVE_STRSIGNAL
577 const char *strsignal P((int));
578 #endif
579
580 extern int current_personality;
581 extern const int personality_wordsize[];
582
583 struct sysent {
584         int     nargs;
585         int     sys_flags;
586         int     (*sys_func)();
587         const char *sys_name;
588         long    native_scno;    /* Match against SYS_* constants.  */
589 };
590
591 extern const struct sysent *sysent;
592 extern int nsyscalls;
593
594 extern const char *const *errnoent;
595 extern int nerrnos;
596
597 struct ioctlent {
598         const char *doth;
599         const char *symbol;
600         unsigned long code;
601 };
602
603 extern const struct ioctlent *ioctlent;
604 extern int nioctlents;
605
606 extern const char *const *signalent;
607 extern int nsignals;
608
609 extern const struct ioctlent ioctlent0[];
610 extern const int nioctlents0;
611 extern const char *const signalent0[];
612 extern const int nsignals0;
613
614 #if SUPPORTED_PERSONALITIES >= 2
615 extern const struct ioctlent ioctlent1[];
616 extern const int nioctlents1;
617 extern const char *const signalent1[];
618 extern const int nsignals1;
619 #endif /* SUPPORTED_PERSONALITIES >= 2 */
620
621 #if SUPPORTED_PERSONALITIES >= 3
622 extern const struct ioctlent ioctlent2[];
623 extern const int nioctlents2;
624 extern const char *const signalent2[];
625 extern const int nsignals2;
626 #endif /* SUPPORTED_PERSONALITIES >= 3 */
627
628 #if defined(FREEBSD) || (defined(LINUX) \
629                          && defined(POWERPC) && !defined(__powerpc64__)) \
630   || defined (LINUX_MIPSO32)
631 /* ARRGH!  off_t args are aligned on 64 bit boundaries! */
632 #define ALIGN64(tcp,arg)                                                \
633 do {                                                                    \
634         if (arg % 2)                                                    \
635             memmove (&tcp->u_arg[arg], &tcp->u_arg[arg + 1],            \
636                      (tcp->u_nargs - arg - 1) * sizeof tcp->u_arg[0]);  \
637 } while (0)
638 #else
639 #define ALIGN64(tcp,arg) do { } while (0)
640 #endif
641
642 #if HAVE_LONG_LONG
643
644 /* _l refers to the lower numbered u_arg,
645  * _h refers to the higher numbered u_arg
646  */
647
648 #if HAVE_LITTLE_ENDIAN_LONG_LONG
649 #define LONG_LONG(_l,_h) \
650     ((long long)((unsigned long long)(unsigned)(_l) | ((unsigned long long)(_h)<<32)))
651 #else
652 #define LONG_LONG(_l,_h) \
653     ((long long)((unsigned long long)(unsigned)(_h) | ((unsigned long long)(_l)<<32)))
654 #endif
655 #endif
656
657 #ifdef IA64
658 extern long ia32;
659 #endif
660
661 extern int not_failing_only;