]> granicus.if.org Git - strace/blob - defs.h
strace_log_merge: new file. Helper to merge timestamped strace -ff logs
[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 #include <features.h>
41
42 #ifdef _LARGEFILE64_SOURCE
43 /* This is the macro everything checks before using foo64 names.  */
44 # ifndef _LFS64_LARGEFILE
45 #  define _LFS64_LARGEFILE 1
46 # endif
47 #endif
48
49 /* Configuration section */
50 #ifndef MAX_QUALS
51 # if defined(MIPS)
52 #  define MAX_QUALS     7000    /* maximum number of syscalls, signals, etc. */
53 # else
54 #  define MAX_QUALS     2048    /* maximum number of syscalls, signals, etc. */
55 # endif
56 #endif
57 #ifndef DEFAULT_STRLEN
58 /* default maximum # of bytes printed in `printstr', change with -s switch */
59 # define DEFAULT_STRLEN 32
60 #endif
61 #ifndef DEFAULT_ACOLUMN
62 # define DEFAULT_ACOLUMN        40      /* default alignment column for results */
63 #endif
64
65 /* Maximum number of args to a syscall.
66  *
67  * Make sure that all entries in all syscallent.h files have nargs <= MAX_ARGS!
68  * linux/<ARCH>/syscallent.h: all have nargs <= 6.
69  */
70 #ifndef MAX_ARGS
71 # define MAX_ARGS       6
72 #endif
73
74 #ifndef DEFAULT_SORTBY
75 # define DEFAULT_SORTBY "time"  /* default sorting method for call profiling */
76 #endif
77
78 #include <sys/types.h>
79 #include <unistd.h>
80 #include <stdlib.h>
81 #include <stdio.h>
82 #include <ctype.h>
83 #include <string.h>
84 #include <time.h>
85 #include <sys/time.h>
86 #include <errno.h>
87
88 #ifdef HAVE_STDBOOL_H
89 # include <stdbool.h>
90 #endif
91
92 #ifdef STDC_HEADERS
93 # include <stddef.h>
94 #endif /* STDC_HEADERS */
95
96 #ifdef HAVE_SIGINFO_T
97 # include <signal.h>
98 #endif
99
100 #if defined(SPARC) || defined(SPARC64)
101 # define LINUXSPARC
102 #endif
103 #if defined(MIPS) && _MIPS_SIM == _MIPS_SIM_ABI32
104 # define LINUX_MIPSO32
105 #endif
106 #if defined(MIPS) && _MIPS_SIM == _MIPS_SIM_NABI32
107 # define LINUX_MIPSN32
108 # define LINUX_MIPS64
109 #endif
110 #if defined(MIPS) && _MIPS_SIM == _MIPS_SIM_ABI64
111 # define LINUX_MIPSN64
112 # define LINUX_MIPS64
113 #endif
114
115 #if (defined(LINUXSPARC) || defined(X86_64) || defined(ARM) || defined(AVR32)) && defined(__GLIBC__)
116 # include <sys/ptrace.h>
117 #else
118 /* Work around awkward prototype in ptrace.h. */
119 # define ptrace xptrace
120 # include <sys/ptrace.h>
121 # undef ptrace
122 # ifdef POWERPC
123 #  define __KERNEL__
124 #  include <asm/ptrace.h>
125 #  undef __KERNEL__
126 # endif
127 extern long ptrace(int, int, char *, long);
128 #endif
129
130 #if !defined(__GLIBC__)
131 # define PTRACE_PEEKUSER PTRACE_PEEKUSR
132 # define PTRACE_POKEUSER PTRACE_POKEUSR
133 #endif
134 #if defined(X86_64) || defined(I386)
135 /* For struct pt_regs. x86 strace uses PTRACE_GETREGS.
136  * PTRACE_GETREGS returns registers in the layout of this struct.
137  */
138 # include <asm/ptrace.h>
139 #endif
140 #ifdef ALPHA
141 # define REG_R0 0
142 # define REG_A0 16
143 # define REG_A3 19
144 # define REG_FP 30
145 # define REG_PC 64
146 #endif /* ALPHA */
147 #ifdef MIPS
148 # define REG_V0 2
149 # define REG_A0 4
150 # define REG_A3 7
151 # define REG_SP 29
152 # define REG_EPC 64
153 #endif /* MIPS */
154 #ifdef HPPA
155 # define PT_GR20 (20*4)
156 # define PT_GR26 (26*4)
157 # define PT_GR28 (28*4)
158 # define PT_IAOQ0 (106*4)
159 # define PT_IAOQ1 (107*4)
160 #endif /* HPPA */
161 #ifdef SH64
162    /* SH64 Linux - this code assumes the following kernel API for system calls:
163           PC           Offset 0
164           System Call  Offset 16 (actually, (syscall no.) | (0x1n << 16),
165                        where n = no. of parameters.
166           Other regs   Offset 24+
167
168           On entry:    R2-7 = parameters 1-6 (as many as necessary)
169           On return:   R9   = result. */
170
171    /* Offset for peeks of registers */
172 # define REG_OFFSET         (24)
173 # define REG_GENERAL(x)     (8*(x)+REG_OFFSET)
174 # define REG_PC             (0*8)
175 # define REG_SYSCALL        (2*8)
176 #endif /* SH64 */
177
178 #define SUPPORTED_PERSONALITIES 1
179 #define DEFAULT_PERSONALITY 0
180
181 #ifdef LINUXSPARC
182 /* Indexes into the pt_regs.u_reg[] array -- UREG_XX from kernel are all off
183  * by 1 and use Ix instead of Ox.  These work for both 32 and 64 bit Linux. */
184 # define U_REG_G1 0
185 # define U_REG_O0 7
186 # define U_REG_O1 8
187 # define PERSONALITY0_WORDSIZE 4
188 # define PERSONALITY1_WORDSIZE 4
189 # undef  SUPPORTED_PERSONALITIES
190 # if defined(SPARC64)
191 #  include <asm/psrcompat.h>
192 #  define SUPPORTED_PERSONALITIES 3
193 #  define PERSONALITY2_WORDSIZE 8
194 # else
195 #  include <asm/psr.h>
196 #  define SUPPORTED_PERSONALITIES 2
197 # endif /* SPARC64 */
198 #endif /* LINUXSPARC */
199
200 #ifdef X86_64
201 # undef SUPPORTED_PERSONALITIES
202 # define SUPPORTED_PERSONALITIES 2
203 # define PERSONALITY0_WORDSIZE 8
204 # define PERSONALITY1_WORDSIZE 4
205 #endif
206
207 #ifdef ARM
208 # undef SUPPORTED_PERSONALITIES
209 # define SUPPORTED_PERSONALITIES 2
210 # define PERSONALITY0_WORDSIZE 4
211 # define PERSONALITY1_WORDSIZE 4
212 #endif
213
214 #ifdef POWERPC64
215 # undef SUPPORTED_PERSONALITIES
216 # define SUPPORTED_PERSONALITIES 2
217 # define PERSONALITY0_WORDSIZE 8
218 # define PERSONALITY1_WORDSIZE 4
219 #endif
220
221 #if !HAVE_DECL_PTRACE_SETOPTIONS
222 # define PTRACE_SETOPTIONS      0x4200
223 #endif
224 #if !HAVE_DECL_PTRACE_GETEVENTMSG
225 # define PTRACE_GETEVENTMSG     0x4201
226 #endif
227 #if !HAVE_DECL_PTRACE_GETSIGINFO
228 # define PTRACE_GETSIGINFO      0x4202
229 #endif
230
231 #if !HAVE_DECL_PTRACE_O_TRACESYSGOOD
232 # define PTRACE_O_TRACESYSGOOD  0x00000001
233 #endif
234 #if !HAVE_DECL_PTRACE_O_TRACEFORK
235 # define PTRACE_O_TRACEFORK     0x00000002
236 #endif
237 #if !HAVE_DECL_PTRACE_O_TRACEVFORK
238 # define PTRACE_O_TRACEVFORK    0x00000004
239 #endif
240 #if !HAVE_DECL_PTRACE_O_TRACECLONE
241 # define PTRACE_O_TRACECLONE    0x00000008
242 #endif
243 #if !HAVE_DECL_PTRACE_O_TRACEEXEC
244 # define PTRACE_O_TRACEEXEC     0x00000010
245 #endif
246 #if !HAVE_DECL_PTRACE_O_TRACEEXIT
247 # define PTRACE_O_TRACEEXIT     0x00000040
248 #endif
249
250 #if !HAVE_DECL_PTRACE_EVENT_FORK
251 # define PTRACE_EVENT_FORK      1
252 #endif
253 #if !HAVE_DECL_PTRACE_EVENT_VFORK
254 # define PTRACE_EVENT_VFORK     2
255 #endif
256 #if !HAVE_DECL_PTRACE_EVENT_CLONE
257 # define PTRACE_EVENT_CLONE     3
258 #endif
259 #if !HAVE_DECL_PTRACE_EVENT_EXEC
260 # define PTRACE_EVENT_EXEC      4
261 #endif
262 #if !HAVE_DECL_PTRACE_EVENT_VFORK_DONE
263 # define PTRACE_EVENT_VFORK_DONE        5
264 #endif
265 #if !HAVE_DECL_PTRACE_EVENT_EXIT
266 # define PTRACE_EVENT_EXIT      6
267 #endif
268
269 /* Experimental code using PTRACE_SEIZE can be enabled here: */
270 //# define USE_SEIZE 1
271
272 #ifdef USE_SEIZE
273 # undef PTRACE_SEIZE
274 # define PTRACE_SEIZE           0x4206
275 # undef PTRACE_INTERRUPT
276 # define PTRACE_INTERRUPT       0x4207
277 # undef PTRACE_LISTEN
278 # define PTRACE_LISTEN          0x4208
279 # undef PTRACE_SEIZE_DEVEL
280 # define PTRACE_SEIZE_DEVEL     0x80000000
281 # undef PTRACE_EVENT_STOP
282 # define PTRACE_EVENT_STOP      7
283 # define PTRACE_EVENT_STOP1     128
284 #endif
285
286 #if !defined __GNUC__
287 # define __attribute__(x) /*nothing*/
288 #endif
289
290 #define ARRAY_SIZE(a) (sizeof(a) / sizeof((a)[0]))
291
292 #if defined(I386)
293 extern struct pt_regs i386_regs;
294 #endif
295
296 /* Trace Control Block */
297 struct tcb {
298         int flags;              /* See below for TCB_ values */
299         int pid;                /* Process Id of this entry */
300         int u_nargs;            /* System call argument count */
301         int u_error;            /* Error code */
302         long scno;              /* System call number */
303         long u_arg[MAX_ARGS];   /* System call arguments */
304 #if defined(LINUX_MIPSN32)
305         long long ext_arg[MAX_ARGS];    /* System call arguments */
306 #endif
307         long u_rval;            /* (first) return value */
308 #ifdef HAVE_LONG_LONG
309         long long u_lrval;      /* long long return value */
310 #endif
311         int ptrace_errno;
312 #if SUPPORTED_PERSONALITIES > 1
313         int currpers;           /* Personality at the time of scno update */
314 #endif
315         int curcol;             /* Output column for this process */
316         FILE *outf;             /* Output file for this process */
317         const char *auxstr;     /* Auxiliary info from syscall (see RVAL_STR) */
318         struct timeval stime;   /* System time usage as of last process wait */
319         struct timeval dtime;   /* Delta for system time usage */
320         struct timeval etime;   /* Syscall entry time */
321                                 /* Support for tracing forked processes */
322         long baddr;             /* `Breakpoint' address */
323         long inst[2];           /* Instructions on above */
324 };
325
326 /* TCB flags */
327 #define TCB_INUSE               00001   /* This table entry is in use */
328 /* We have attached to this process, but did not see it stopping yet.
329  * (If this bit is not set, we either didn't attach yet,
330  * or we did attach to it, already saw it stopping at least once,
331  * did some init work on it and cleared this bit. TODO: maybe it makes sense
332  * to split these two states?)
333  */
334 #define TCB_STARTUP             00002
335 #define TCB_IGNORE_ONE_SIGSTOP  00004   /* Next SIGSTOP is to be ignored */
336 /*
337  * Are we in system call entry or in syscall exit?
338  *
339  * This bit is set after all syscall entry processing is done.
340  * Therefore, this bit will be set when next ptrace stop occurs,
341  * which should be syscall exit stop. Other stops which are possible
342  * directly after syscall entry (death, ptrace event stop)
343  * are simpler and handled without calling trace_syscall(), therefore
344  * the places where TCB_INSYSCALL can be set but we aren't in syscall stop
345  * are limited to trace(), this condition is never observed in trace_syscall()
346  * and below.
347  * The bit is cleared after all syscall exit processing is done.
348  * User-generated SIGTRAPs and post-execve SIGTRAP make it necessary
349  * to be very careful and NOT set TCB_INSYSCALL bit when they are encountered.
350  * TCB_WAITEXECVE bit is used for this purpose (see below).
351  *
352  * Use entering(tcp) / exiting(tcp) to check this bit to make code more readable.
353  */
354 #define TCB_INSYSCALL   00010
355 /*
356  * Process is not our own child.
357  * In "strace [-f] PROG" case, traced child (PROG) will have this bit not set,
358  * but any its children (including threads) will.
359  * Note: if bit is set, it does *not* mean that attaching was already done.
360  * There is a small window at the init time when it's not true.
361  */
362 #define TCB_ATTACHED    00020
363 #define TCB_BPTSET      00100   /* "Breakpoint" set after fork(2) */
364 #define TCB_REPRINT     01000   /* We should reprint this syscall on exit */
365 #define TCB_FILTERED    02000   /* This system call has been filtered out */
366 /* x86 does not need TCB_WAITEXECVE.
367  * It can detect SIGTRAP by looking at eax/rax.
368  * See "not a syscall entry (eax = %ld)\n" message
369  * in syscall_fixup_on_sysenter().
370  */
371 #if defined(ALPHA) || defined(AVR32) || defined(SPARC) || defined(SPARC64) \
372   || defined(POWERPC) || defined(IA64) || defined(HPPA) \
373   || defined(SH) || defined(SH64) || defined(S390) || defined(S390X) \
374   || defined(ARM) || defined(MIPS) || defined(BFIN) || defined(TILE)
375 /* This tracee has entered into execve syscall. Expect post-execve SIGTRAP
376  * to happen. (When it is detected, tracee is continued and this bit is cleared.)
377  */
378 # define TCB_WAITEXECVE 04000
379 #endif
380 #include <sys/syscall.h>
381
382 /* qualifier flags */
383 #define QUAL_TRACE      0001    /* this system call should be traced */
384 #define QUAL_ABBREV     0002    /* abbreviate the structures of this syscall */
385 #define QUAL_VERBOSE    0004    /* decode the structures of this syscall */
386 #define QUAL_RAW        0010    /* print all args in hex for this syscall */
387 #define QUAL_SIGNAL     0020    /* report events with this signal */
388 #define QUAL_FAULT      0040    /* report events with this fault */
389 #define QUAL_READ       0100    /* dump data read on this file descriptor */
390 #define QUAL_WRITE      0200    /* dump data written to this file descriptor */
391
392 #define entering(tcp)   (!((tcp)->flags & TCB_INSYSCALL))
393 #define exiting(tcp)    ((tcp)->flags & TCB_INSYSCALL)
394 #define syserror(tcp)   ((tcp)->u_error != 0)
395 #define verbose(tcp)    (qual_flags[(tcp)->scno] & QUAL_VERBOSE)
396 #define abbrev(tcp)     (qual_flags[(tcp)->scno] & QUAL_ABBREV)
397 #define filtered(tcp)   ((tcp)->flags & TCB_FILTERED)
398
399 struct xlat {
400         int val;
401         const char *str;
402 };
403
404 extern const struct xlat open_mode_flags[];
405 extern const struct xlat addrfams[];
406 extern const struct xlat struct_user_offsets[];
407 extern const struct xlat open_access_modes[];
408
409 /* Format of syscall return values */
410 #define RVAL_DECIMAL    000     /* decimal format */
411 #define RVAL_HEX        001     /* hex format */
412 #define RVAL_OCTAL      002     /* octal format */
413 #define RVAL_UDECIMAL   003     /* unsigned decimal format */
414 #define RVAL_LDECIMAL   004     /* long decimal format */
415 #define RVAL_LHEX       005     /* long hex format */
416 #define RVAL_LOCTAL     006     /* long octal format */
417 #define RVAL_LUDECIMAL  007     /* long unsigned decimal format */
418 #define RVAL_MASK       007     /* mask for these values */
419
420 #define RVAL_STR        010     /* Print `auxstr' field after return val */
421 #define RVAL_NONE       020     /* Print nothing */
422
423 #ifndef offsetof
424 # define offsetof(type, member) (((char *) &(((type *) NULL)->member)) - \
425                                  ((char *) (type *) NULL))
426 #endif
427
428 /* get offset of member within a user struct */
429 #define uoff(member)    offsetof(struct user, member)
430
431 #define TRACE_FILE      001     /* Trace file-related syscalls. */
432 #define TRACE_IPC       002     /* Trace IPC-related syscalls. */
433 #define TRACE_NETWORK   004     /* Trace network-related syscalls. */
434 #define TRACE_PROCESS   010     /* Trace process-related syscalls. */
435 #define TRACE_SIGNAL    020     /* Trace signal-related syscalls. */
436 #define TRACE_DESC      040     /* Trace file descriptor-related syscalls. */
437 #define SYSCALL_NEVER_FAILS     0100    /* Syscall is always successful. */
438
439 typedef enum {
440         CFLAG_NONE = 0,
441         CFLAG_ONLY_STATS,
442         CFLAG_BOTH
443 } cflag_t;
444
445 extern int *qual_flags;
446 extern int debug, followfork;
447 extern unsigned int ptrace_setoptions;
448 extern int dtime, xflag, qflag;
449 extern cflag_t cflag;
450 extern int max_strlen;
451 /*
452  * Which tcb has incomplete line being printed right now?
453  * NULL if last line has been completed ('\n'-terminated).
454  * printleader(tcp) sets it. Clearing is open-coded.
455  */
456 extern struct tcb *printing_tcp;
457
458 enum bitness_t { BITNESS_CURRENT = 0, BITNESS_32 };
459
460 void error_msg(const char *fmt, ...) __attribute__ ((format(printf, 1, 2)));
461 void perror_msg(const char *fmt, ...) __attribute__ ((format(printf, 1, 2)));
462 void error_msg_and_die(const char *fmt, ...) __attribute__ ((noreturn, format(printf, 1, 2)));
463 void perror_msg_and_die(const char *fmt, ...) __attribute__ ((noreturn, format(printf, 1, 2)));
464 void die_out_of_memory(void) __attribute__ ((noreturn));
465
466 extern void set_personality(int personality);
467 extern const char *xlookup(const struct xlat *, int);
468 extern struct tcb *alloc_tcb(int, int);
469 extern void droptcb(struct tcb *);
470
471 #define alloctcb(pid)   alloc_tcb((pid), 1)
472
473 extern void set_sortby(const char *);
474 extern void set_overhead(int);
475 extern void qualify(const char *);
476 extern int ptrace_restart(int request, struct tcb *tcp, int sig);
477 extern int trace_syscall(struct tcb *);
478 extern void count_syscall(struct tcb *, struct timeval *);
479 extern void printxval(const struct xlat *, int, const char *);
480 extern int printargs(struct tcb *);
481 extern int printargs_lu(struct tcb *);
482 extern int printargs_ld(struct tcb *);
483 extern void addflags(const struct xlat *, int);
484 extern int printflags(const struct xlat *, int, const char *);
485 extern const char *sprintflags(const char *, const struct xlat *, int);
486 extern int umoven(struct tcb *, long, int, char *);
487 extern int umovestr(struct tcb *, long, int, char *);
488 extern int upeek(struct tcb *, long, long *);
489 extern void dumpiov(struct tcb *, int, long);
490 extern void dumpstr(struct tcb *, long, int);
491 extern void printstr(struct tcb *, long, int);
492 extern void printnum(struct tcb *, long, const char *);
493 extern void printnum_int(struct tcb *, long, const char *);
494 extern void printpath(struct tcb *, long);
495 extern void printpathn(struct tcb *, long, int);
496 #define TIMESPEC_TEXT_BUFSIZE (sizeof(long)*3 * 2 + sizeof("{%u, %u}"))
497 #define TIMEVAL_TEXT_BUFSIZE  TIMESPEC_TEXT_BUFSIZE
498 extern void printtv_bitness(struct tcb *, long, enum bitness_t, int);
499 extern char *sprinttv(char *, struct tcb *, long, enum bitness_t, int special);
500 extern void print_timespec(struct tcb *, long);
501 extern void sprint_timespec(char *, struct tcb *, long);
502 #ifdef HAVE_SIGINFO_T
503 extern void printsiginfo(siginfo_t *, int);
504 #endif
505 extern const char *getfdpath(struct tcb *, int);
506 extern void printfd(struct tcb *, int);
507 extern void printsock(struct tcb *, long, int);
508 extern void print_sock_optmgmt(struct tcb *, long, int);
509 extern void printrusage(struct tcb *, long);
510 #ifdef ALPHA
511 extern void printrusage32(struct tcb *, long);
512 #endif
513 extern void printuid(const char *, unsigned long);
514 extern int clearbpt(struct tcb *);
515 /*
516  * On Linux, "setbpt" is a misnomer: we don't set a breakpoint
517  * (IOW: no poking in user's text segment),
518  * instead we change fork/vfork/clone into clone(CLONE_PTRACE).
519  * On newer kernels, we use PTRACE_O_TRACECLONE/TRACE[V]FORK instead.
520  */
521 extern int setbpt(struct tcb *);
522 extern void printcall(struct tcb *);
523 extern const char *signame(int);
524 extern void print_sigset(struct tcb *, long, int);
525 extern void printsignal(int);
526 extern void printleader(struct tcb *);
527 extern void tabto(void);
528 extern void call_summary(FILE *);
529 extern void tprint_iov(struct tcb *, unsigned long, unsigned long, int decode_iov);
530 extern void tprint_open_modes(mode_t);
531 extern const char *sprint_open_modes(mode_t);
532 extern int is_restart_error(struct tcb *);
533
534 extern int pathtrace_select(const char *);
535 extern int pathtrace_match(struct tcb *);
536
537 extern int change_syscall(struct tcb *, int);
538 extern int internal_fork(struct tcb *);
539 extern int internal_exec(struct tcb *);
540
541 extern const struct ioctlent *ioctl_lookup(long);
542 extern const struct ioctlent *ioctl_next_match(const struct ioctlent *);
543 extern int ioctl_decode(struct tcb *, long, long);
544 extern int term_ioctl(struct tcb *, long, long);
545 extern int sock_ioctl(struct tcb *, long, long);
546 extern int proc_ioctl(struct tcb *, int, int);
547 extern int rtc_ioctl(struct tcb *, long, long);
548 extern int scsi_ioctl(struct tcb *, long, long);
549 extern int block_ioctl(struct tcb *, long, long);
550
551 extern int tv_nz(struct timeval *);
552 extern int tv_cmp(struct timeval *, struct timeval *);
553 extern double tv_float(struct timeval *);
554 extern void tv_add(struct timeval *, struct timeval *, struct timeval *);
555 extern void tv_sub(struct timeval *, struct timeval *, struct timeval *);
556 extern void tv_mul(struct timeval *, struct timeval *, int);
557 extern void tv_div(struct timeval *, struct timeval *, int);
558
559 #if !defined HAVE_STPCPY
560 /* Some libc have stpcpy, some don't. Sigh...
561  * Roll our private implementation...
562  */
563 #undef stpcpy
564 #define stpcpy strace_stpcpy
565 extern char *stpcpy(char *dst, const char *src);
566 #endif
567
568 #if defined(SPARC) || defined(SPARC64) || defined(IA64) || defined(SH)
569 extern long getrval2(struct tcb *);
570 #endif
571
572 #define umove(pid, addr, objp)  \
573         umoven((pid), (addr), sizeof *(objp), (char *) (objp))
574
575 #define printtv(tcp, addr)      \
576         printtv_bitness((tcp), (addr), BITNESS_CURRENT, 0)
577 #define printtv_special(tcp, addr)      \
578         printtv_bitness((tcp), (addr), BITNESS_CURRENT, 1)
579
580 extern void tprintf(const char *fmt, ...) __attribute__ ((format (printf, 1, 2)));
581 extern void tprints(const char *str);
582
583 #ifndef HAVE_STRERROR
584 const char *strerror(int);
585 #endif
586 #ifndef HAVE_STRSIGNAL
587 const char *strsignal(int);
588 #endif
589
590 extern int current_personality;
591 extern const int personality_wordsize[];
592
593 struct sysent {
594         unsigned nargs;
595         int     sys_flags;
596         int     (*sys_func)();
597         const char *sys_name;
598 };
599
600 struct ioctlent {
601         const char *doth;
602         const char *symbol;
603         unsigned long code;
604 };
605
606 extern const struct sysent *sysent;
607 extern unsigned nsyscalls;
608 extern const char *const *errnoent;
609 extern unsigned nerrnos;
610 extern const struct ioctlent *ioctlent;
611 extern unsigned nioctlents;
612 extern const char *const *signalent;
613 extern unsigned nsignals;
614
615 #define SCNO_IN_RANGE(scno) \
616   ((unsigned long)(scno) < nsyscalls && sysent[scno].sys_func)
617
618 #if HAVE_LONG_LONG
619
620 /* _l refers to the lower numbered u_arg,
621  * _h refers to the higher numbered u_arg
622  */
623
624 #if HAVE_LITTLE_ENDIAN_LONG_LONG
625 #define LONG_LONG(_l,_h) \
626     ((long long)((unsigned long long)(unsigned)(_l) | ((unsigned long long)(_h)<<32)))
627 #else
628 #define LONG_LONG(_l,_h) \
629     ((long long)((unsigned long long)(unsigned)(_h) | ((unsigned long long)(_l)<<32)))
630 #endif
631
632 extern int printllval(struct tcb *, const char *, int);
633 #endif
634
635 #ifdef IA64
636 extern long ia32;
637 #endif
638
639 extern int not_failing_only;
640 extern int show_fd_path;
641 extern int tracing_paths;