]> granicus.if.org Git - strace/blob - defs.h
Move get_regs error check from trace_syscall_entering to get_scno
[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
30 #ifdef HAVE_CONFIG_H
31 # include "config.h"
32 #endif
33
34 #include <features.h>
35 #ifdef HAVE_STDBOOL_H
36 # include <stdbool.h>
37 #endif
38 #include <stdint.h>
39 #include <inttypes.h>
40 #include <sys/types.h>
41 #ifdef STDC_HEADERS
42 # include <stddef.h>
43 #endif
44 #include <unistd.h>
45 #include <stdlib.h>
46 #include <stdio.h>
47 /* Open-coding isprint(ch) et al proved more efficient than calling
48  * generalized libc interface. We don't *want* to do non-ASCII anyway.
49  */
50 /* #include <ctype.h> */
51 #include <string.h>
52 #include <errno.h>
53 #include <signal.h>
54 #include <time.h>
55 #include <sys/time.h>
56 #include <sys/syscall.h>
57
58 #ifndef HAVE_STRERROR
59 const char *strerror(int);
60 #endif
61 #ifndef HAVE_STPCPY
62 /* Some libc have stpcpy, some don't. Sigh...
63  * Roll our private implementation...
64  */
65 #undef stpcpy
66 #define stpcpy strace_stpcpy
67 extern char *stpcpy(char *dst, const char *src);
68 #endif
69
70 #if !defined __GNUC__
71 # define __attribute__(x) /*nothing*/
72 #endif
73
74 #ifndef offsetof
75 # define offsetof(type, member) \
76         (((char *) &(((type *) NULL)->member)) - ((char *) (type *) NULL))
77 #endif
78
79 #define ARRAY_SIZE(a) (sizeof(a) / sizeof((a)[0]))
80
81 /* macros */
82 #ifndef MAX
83 # define MAX(a, b)              (((a) > (b)) ? (a) : (b))
84 #endif
85 #ifndef MIN
86 # define MIN(a, b)              (((a) < (b)) ? (a) : (b))
87 #endif
88 #define CLAMP(val, min, max) MIN(MAX(min, val), max)
89
90 /* Glibc has an efficient macro for sigemptyset
91  * (it just does one or two assignments of 0 to internal vector of longs).
92  */
93 #if defined(__GLIBC__) && defined(__sigemptyset) && !defined(sigemptyset)
94 # define sigemptyset __sigemptyset
95 #endif
96
97 /* Configuration section */
98 #ifndef DEFAULT_STRLEN
99 /* default maximum # of bytes printed in `printstr', change with -s switch */
100 # define DEFAULT_STRLEN 32
101 #endif
102 #ifndef DEFAULT_ACOLUMN
103 # define DEFAULT_ACOLUMN        40      /* default alignment column for results */
104 #endif
105 /*
106  * Maximum number of args to a syscall.
107  *
108  * Make sure that all entries in all syscallent.h files have nargs <= MAX_ARGS!
109  * linux/<ARCH>/syscallent*.h:
110  *      all have nargs <= 6 except mips o32 which has nargs <= 7.
111  */
112 #ifndef MAX_ARGS
113 # ifdef LINUX_MIPSO32
114 #  define MAX_ARGS      7
115 # else
116 #  define MAX_ARGS      6
117 # endif
118 #endif
119 /* default sorting method for call profiling */
120 #ifndef DEFAULT_SORTBY
121 # define DEFAULT_SORTBY "time"
122 #endif
123 /*
124  * Experimental code using PTRACE_SEIZE can be enabled here.
125  * This needs Linux kernel 3.4.x or later to work.
126  */
127 #define USE_SEIZE 1
128 /* To force NOMMU build, set to 1 */
129 #define NOMMU_SYSTEM 0
130 /*
131  * Set to 1 to use speed-optimized vfprintf implementation.
132  * It results in strace using about 5% less CPU in user space
133  * (compared to glibc version).
134  * But strace spends a lot of time in kernel space,
135  * so overall it does not appear to be a significant win.
136  * Thus disabled by default.
137  */
138 #define USE_CUSTOM_PRINTF 0
139
140 #ifndef ERESTARTSYS
141 # define ERESTARTSYS    512
142 #endif
143 #ifndef ERESTARTNOINTR
144 # define ERESTARTNOINTR 513
145 #endif
146 #ifndef ERESTARTNOHAND
147 # define ERESTARTNOHAND 514
148 #endif
149 #ifndef ERESTART_RESTARTBLOCK
150 # define ERESTART_RESTARTBLOCK 516
151 #endif
152
153 #if defined(SPARC) || defined(SPARC64)
154 # define PERSONALITY0_WORDSIZE 4
155 # define PERSONALITY1_WORDSIZE 4
156 # if defined(SPARC64)
157 #  define SUPPORTED_PERSONALITIES 3
158 #  define PERSONALITY2_WORDSIZE 8
159 # else
160 #  define SUPPORTED_PERSONALITIES 2
161 # endif /* SPARC64 */
162 #endif /* SPARC[64] */
163
164 #ifdef X86_64
165 # define SUPPORTED_PERSONALITIES 3
166 # define PERSONALITY0_WORDSIZE 8
167 # define PERSONALITY1_WORDSIZE 4
168 # define PERSONALITY2_WORDSIZE 4
169 #endif
170
171 #ifdef X32
172 # define SUPPORTED_PERSONALITIES 2
173 # define PERSONALITY0_WORDSIZE 4
174 # define PERSONALITY1_WORDSIZE 4
175 #endif
176
177 #ifdef ARM
178 /* one personality */
179 #endif
180
181 #ifdef AARCH64
182 /* The existing ARM personality, then AArch64 */
183 # define SUPPORTED_PERSONALITIES 2
184 # define PERSONALITY0_WORDSIZE 4
185 # define PERSONALITY1_WORDSIZE 8
186 # define DEFAULT_PERSONALITY 1
187 #endif
188
189 #ifdef POWERPC64
190 # define SUPPORTED_PERSONALITIES 2
191 # define PERSONALITY0_WORDSIZE 8
192 # define PERSONALITY1_WORDSIZE 4
193 #endif
194
195 #ifdef TILE
196 # define SUPPORTED_PERSONALITIES 2
197 # define PERSONALITY0_WORDSIZE 8
198 # define PERSONALITY1_WORDSIZE 4
199 # ifdef __tilepro__
200 #  define DEFAULT_PERSONALITY 1
201 # endif
202 #endif
203
204 #ifndef SUPPORTED_PERSONALITIES
205 # define SUPPORTED_PERSONALITIES 1
206 #endif
207 #ifndef DEFAULT_PERSONALITY
208 # define DEFAULT_PERSONALITY 0
209 #endif
210 #ifndef PERSONALITY0_WORDSIZE
211 # define PERSONALITY0_WORDSIZE SIZEOF_LONG
212 #endif
213
214 typedef struct sysent {
215         unsigned nargs;
216         int     sys_flags;
217         int     (*sys_func)();
218         const char *sys_name;
219 } struct_sysent;
220
221 typedef struct ioctlent {
222         const char *symbol;
223         unsigned int code;
224 } struct_ioctlent;
225
226 /* Trace Control Block */
227 struct tcb {
228         int flags;              /* See below for TCB_ values */
229         int pid;                /* If 0, this tcb is free */
230         int qual_flg;           /* qual_flags[scno] or DEFAULT_QUAL_FLAGS + RAW */
231         int u_error;            /* Error code */
232         long scno;              /* System call number */
233         long u_arg[MAX_ARGS];   /* System call arguments */
234 #if defined(LINUX_MIPSN32) || defined(X32)
235         long long ext_arg[MAX_ARGS];
236         long long u_lrval;      /* long long return value */
237 #endif
238         long u_rval;            /* Return value */
239 #if SUPPORTED_PERSONALITIES > 1
240         unsigned int currpers;  /* Personality at the time of scno update */
241 #endif
242         int curcol;             /* Output column for this process */
243         FILE *outf;             /* Output file for this process */
244         const char *auxstr;     /* Auxiliary info from syscall (see RVAL_STR) */
245         const struct_sysent *s_ent; /* sysent[scno] or dummy struct for bad scno */
246         const struct_sysent *s_prev_ent; /* for "resuming interrupted SYSCALL" msg */
247         struct timeval stime;   /* System time usage as of last process wait */
248         struct timeval dtime;   /* Delta for system time usage */
249         struct timeval etime;   /* Syscall entry time */
250
251 #ifdef USE_LIBUNWIND
252         struct UPT_info* libunwind_ui;
253         struct mmap_cache_t* mmap_cache;
254         unsigned int mmap_cache_size;
255         unsigned int mmap_cache_generation;
256         struct queue_t* queue;
257 #endif
258 };
259
260 /* TCB flags */
261 /* We have attached to this process, but did not see it stopping yet */
262 #define TCB_STARTUP             0x01
263 #define TCB_IGNORE_ONE_SIGSTOP  0x02    /* Next SIGSTOP is to be ignored */
264 /*
265  * Are we in system call entry or in syscall exit?
266  *
267  * This bit is set after all syscall entry processing is done.
268  * Therefore, this bit will be set when next ptrace stop occurs,
269  * which should be syscall exit stop. Other stops which are possible
270  * directly after syscall entry (death, ptrace event stop)
271  * are simpler and handled without calling trace_syscall(), therefore
272  * the places where TCB_INSYSCALL can be set but we aren't in syscall stop
273  * are limited to trace(), this condition is never observed in trace_syscall()
274  * and below.
275  * The bit is cleared after all syscall exit processing is done.
276  *
277  * Use entering(tcp) / exiting(tcp) to check this bit to make code more readable.
278  */
279 #define TCB_INSYSCALL   0x04
280 #define TCB_ATTACHED    0x08    /* We attached to it already */
281 #define TCB_REPRINT     0x10    /* We should reprint this syscall on exit */
282 #define TCB_FILTERED    0x20    /* This system call has been filtered out */
283
284 /* qualifier flags */
285 #define QUAL_TRACE      0x001   /* this system call should be traced */
286 #define QUAL_ABBREV     0x002   /* abbreviate the structures of this syscall */
287 #define QUAL_VERBOSE    0x004   /* decode the structures of this syscall */
288 #define QUAL_RAW        0x008   /* print all args in hex for this syscall */
289 #define QUAL_SIGNAL     0x010   /* report events with this signal */
290 #define QUAL_READ       0x020   /* dump data read on this file descriptor */
291 #define QUAL_WRITE      0x040   /* dump data written to this file descriptor */
292 typedef uint8_t qualbits_t;
293 #define UNDEFINED_SCNO  0x100   /* Used only in tcp->qual_flg */
294
295 #define DEFAULT_QUAL_FLAGS (QUAL_TRACE | QUAL_ABBREV | QUAL_VERBOSE)
296
297 #define entering(tcp)   (!((tcp)->flags & TCB_INSYSCALL))
298 #define exiting(tcp)    ((tcp)->flags & TCB_INSYSCALL)
299 #define syserror(tcp)   ((tcp)->u_error != 0)
300 #define verbose(tcp)    ((tcp)->qual_flg & QUAL_VERBOSE)
301 #define abbrev(tcp)     ((tcp)->qual_flg & QUAL_ABBREV)
302 #define filtered(tcp)   ((tcp)->flags & TCB_FILTERED)
303
304 struct xlat {
305         unsigned int val;
306         const char *str;
307 };
308 #define XLAT(x) { x, #x }
309 #define XLAT_END { 0, NULL }
310
311 extern const struct xlat addrfams[];
312 extern const struct xlat at_flags[];
313 extern const struct xlat open_access_modes[];
314 extern const struct xlat open_mode_flags[];
315 extern const struct xlat whence_codes[];
316
317 /* Format of syscall return values */
318 #define RVAL_DECIMAL    000     /* decimal format */
319 #define RVAL_HEX        001     /* hex format */
320 #define RVAL_OCTAL      002     /* octal format */
321 #define RVAL_UDECIMAL   003     /* unsigned decimal format */
322 #if defined(LINUX_MIPSN32) || defined(X32)
323 # if 0 /* unused so far */
324 #  define RVAL_LDECIMAL 004     /* long decimal format */
325 #  define RVAL_LHEX     005     /* long hex format */
326 #  define RVAL_LOCTAL   006     /* long octal format */
327 # endif
328 # define RVAL_LUDECIMAL 007     /* long unsigned decimal format */
329 #endif
330 #define RVAL_FD         010     /* file descriptor */
331 #define RVAL_MASK       017     /* mask for these values */
332
333 #define RVAL_STR        020     /* Print `auxstr' field after return val */
334 #define RVAL_NONE       040     /* Print nothing */
335
336 #define TRACE_FILE      001     /* Trace file-related syscalls. */
337 #define TRACE_IPC       002     /* Trace IPC-related syscalls. */
338 #define TRACE_NETWORK   004     /* Trace network-related syscalls. */
339 #define TRACE_PROCESS   010     /* Trace process-related syscalls. */
340 #define TRACE_SIGNAL    020     /* Trace signal-related syscalls. */
341 #define TRACE_DESC      040     /* Trace file descriptor-related syscalls. */
342 #define TRACE_MEMORY    0100    /* Trace memory mapping-related syscalls. */
343 #define SYSCALL_NEVER_FAILS     0200    /* Syscall is always successful. */
344 #define STACKTRACE_INVALIDATE_CACHE 0400  /* Trigger proc/maps cache updating */
345 #define STACKTRACE_CAPTURE_ON_ENTER 01000 /* Capture stacktrace on "entering" stage */
346 #define TRACE_INDIRECT_SUBCALL  02000   /* Syscall is an indirect socket/ipc subcall. */
347
348 #if defined(ARM) || defined(AARCH64) \
349  || defined(I386) || defined(X32) || defined(X86_64) \
350  || defined(IA64) \
351  || defined(BFIN) \
352  || defined(M68K) \
353  || defined(MICROBLAZE) \
354  || defined(S390) \
355  || defined(SH) || defined(SH64) \
356  || defined(SPARC) || defined(SPARC64) \
357  /**/
358 # define NEED_UID16_PARSERS 1
359 #else
360 # define NEED_UID16_PARSERS 0
361 #endif
362
363 typedef enum {
364         CFLAG_NONE = 0,
365         CFLAG_ONLY_STATS,
366         CFLAG_BOTH
367 } cflag_t;
368 extern cflag_t cflag;
369 extern bool debug_flag;
370 extern bool Tflag;
371 extern bool iflag;
372 extern bool count_wallclock;
373 extern unsigned int qflag;
374 extern bool not_failing_only;
375 extern unsigned int show_fd_path;
376 extern bool hide_log_until_execve;
377 /* are we filtering traces based on paths? */
378 extern const char **paths_selected;
379 #define tracing_paths (paths_selected != NULL)
380 extern unsigned xflag;
381 extern unsigned followfork;
382 #ifdef USE_LIBUNWIND
383 /* if this is true do the stack trace for every system call */
384 extern bool stack_trace_enabled;
385 #endif
386 extern unsigned ptrace_setoptions;
387 extern unsigned max_strlen;
388 extern unsigned os_release;
389 #undef KERNEL_VERSION
390 #define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))
391
392 enum bitness_t { BITNESS_CURRENT = 0, BITNESS_32 };
393
394 void error_msg(const char *fmt, ...) __attribute__ ((format(printf, 1, 2)));
395 void perror_msg(const char *fmt, ...) __attribute__ ((format(printf, 1, 2)));
396 void error_msg_and_die(const char *fmt, ...) __attribute__ ((noreturn, format(printf, 1, 2)));
397 void perror_msg_and_die(const char *fmt, ...) __attribute__ ((noreturn, format(printf, 1, 2)));
398 void die_out_of_memory(void) __attribute__ ((noreturn));
399
400 #if USE_CUSTOM_PRINTF
401 /*
402  * See comment in vsprintf.c for allowed formats.
403  * Short version: %h[h]u, %zu, %tu are not allowed, use %[l[l]]u.
404  */
405 int strace_vfprintf(FILE *fp, const char *fmt, va_list args);
406 #else
407 # define strace_vfprintf vfprintf
408 #endif
409
410 extern void set_sortby(const char *);
411 extern void set_overhead(int);
412 extern void qualify(const char *);
413 extern void print_pc(struct tcb *);
414 extern int trace_syscall(struct tcb *);
415 extern void count_syscall(struct tcb *, const struct timeval *);
416 extern void call_summary(FILE *);
417
418 extern void clear_regs(void);
419 extern void get_regs(pid_t pid);
420 extern int get_scno(struct tcb *tcp);
421
422 extern int umoven(struct tcb *, long, unsigned int, void *);
423 #define umove(pid, addr, objp)  \
424         umoven((pid), (addr), sizeof(*(objp)), (void *) (objp))
425 extern int umovestr(struct tcb *, long, unsigned int, char *);
426 extern int upeek(int pid, long, long *);
427
428 #if defined ALPHA || defined IA64 || defined SH || defined SPARC || defined SPARC64
429 # define HAVE_GETRVAL2
430 extern long getrval2(struct tcb *);
431 #else
432 # undef HAVE_GETRVAL2
433 #endif
434
435 extern const char *signame(const int);
436 extern void pathtrace_select(const char *);
437 extern int pathtrace_match(struct tcb *);
438 extern int getfdpath(struct tcb *, int, char *, unsigned);
439
440 extern const char *xlookup(const struct xlat *, const unsigned int);
441 extern const char *xlat_search(const struct xlat *, const size_t, const unsigned int);
442
443 extern int string_to_uint(const char *str);
444 extern int next_set_bit(const void *bit_array, unsigned cur_bit, unsigned size_bits);
445
446 #define QUOTE_0_TERMINATED                      0x01
447 #define QUOTE_OMIT_LEADING_TRAILING_QUOTES      0x02
448
449 extern int print_quoted_string(const char *, unsigned int, unsigned int);
450
451 /* a refers to the lower numbered u_arg,
452  * b refers to the higher numbered u_arg
453  */
454 #if HAVE_LITTLE_ENDIAN_LONG_LONG
455 # define LONG_LONG(a,b) \
456         ((long long)((unsigned long long)(unsigned)(a) | ((unsigned long long)(b)<<32)))
457 #else
458 # define LONG_LONG(a,b) \
459         ((long long)((unsigned long long)(unsigned)(b) | ((unsigned long long)(a)<<32)))
460 #endif
461 extern int getllval(struct tcb *, unsigned long long *, int);
462 extern int printllval(struct tcb *, const char *, int)
463         __attribute__ ((format (printf, 2, 0)));
464
465 extern void printxval(const struct xlat *, const unsigned int, const char *);
466 extern int printargs(struct tcb *);
467 extern int printargs_lu(struct tcb *);
468 extern int printargs_ld(struct tcb *);
469 extern void addflags(const struct xlat *, int);
470 extern int printflags(const struct xlat *, int, const char *);
471 extern const char *sprintflags(const char *, const struct xlat *, int);
472 extern const char *sprintmode(int);
473 extern const char *sprinttime(time_t);
474 extern void dumpiov_in_msghdr(struct tcb *, long);
475 extern void dumpiov_in_mmsghdr(struct tcb *, long);
476 extern void dumpiov(struct tcb *, int, long);
477 extern void dumpstr(struct tcb *, long, int);
478 extern void printstr(struct tcb *, long, long);
479 extern void printnum_int(struct tcb *, long, const char *)
480         __attribute__ ((format (printf, 3, 0)));
481 extern void printnum_long(struct tcb *, long, const char *)
482         __attribute__ ((format (printf, 3, 0)));
483 extern void printpath(struct tcb *, long);
484 extern void printpathn(struct tcb *, long, unsigned int);
485 #define TIMESPEC_TEXT_BUFSIZE (sizeof(long)*3 * 2 + sizeof("{%u, %u}"))
486 #define TIMEVAL_TEXT_BUFSIZE  TIMESPEC_TEXT_BUFSIZE
487 extern void printtv_bitness(struct tcb *, long, enum bitness_t, int);
488 #define printtv(tcp, addr)      \
489         printtv_bitness((tcp), (addr), BITNESS_CURRENT, 0)
490 #define printtv_special(tcp, addr)      \
491         printtv_bitness((tcp), (addr), BITNESS_CURRENT, 1)
492 extern char *sprinttv(char *, struct tcb *, long, enum bitness_t, int special);
493 extern void print_timespec(struct tcb *, long);
494 extern void sprint_timespec(char *, struct tcb *, long);
495 extern void printsiginfo(const siginfo_t *, int);
496 extern void printsiginfo_at(struct tcb *tcp, long addr);
497 extern void printfd(struct tcb *, int);
498 extern bool print_sockaddr_by_inode(const unsigned long, const char *);
499 extern void print_dirfd(struct tcb *, int);
500 extern void printsock(struct tcb *, long, int);
501 extern void print_sock_optmgmt(struct tcb *, long, int);
502 extern void printrusage(struct tcb *, long);
503 #ifdef ALPHA
504 extern void printrusage32(struct tcb *, long);
505 #endif
506 extern void printuid(const char *, const unsigned int);
507 extern void print_sigset_addr_len(struct tcb *, long, long);
508 extern const char *sprintsigmask_n(const char *, const void *, unsigned int);
509 #define tprintsigmask_addr(prefix, mask) \
510         tprints(sprintsigmask_n((prefix), (mask), sizeof(mask)))
511 extern void printsignal(int);
512 extern void tprint_iov(struct tcb *, unsigned long, unsigned long, int decode_iov);
513 extern void tprint_iov_upto(struct tcb *, unsigned long, unsigned long, int decode_iov, unsigned long);
514 extern void tprint_open_modes(int);
515 extern const char *sprint_open_modes(int);
516 extern void print_loff_t(struct tcb *, long);
517 extern void print_seccomp_filter(struct tcb *tcp, unsigned long);
518
519 extern const struct_ioctlent *ioctl_lookup(const unsigned int);
520 extern const struct_ioctlent *ioctl_next_match(const struct_ioctlent *);
521 extern void ioctl_print_code(const unsigned int);
522 extern int ioctl_decode(struct tcb *, const unsigned int, long);
523 extern int ioctl_decode_command_number(const unsigned int);
524 extern int block_ioctl(struct tcb *, const unsigned int, long);
525 extern int evdev_ioctl(struct tcb *, const unsigned int, long);
526 extern int loop_ioctl(struct tcb *, const unsigned int, long);
527 extern int mtd_ioctl(struct tcb *, const unsigned int, long);
528 extern int ptp_ioctl(struct tcb *, const unsigned int, long);
529 extern int rtc_ioctl(struct tcb *, const unsigned int, long);
530 extern int scsi_ioctl(struct tcb *, const unsigned int, long);
531 extern int sock_ioctl(struct tcb *, const unsigned int, long);
532 extern int term_ioctl(struct tcb *, const unsigned int, long);
533 extern int ubi_ioctl(struct tcb *, const unsigned int, long);
534 extern int v4l2_ioctl(struct tcb *, const unsigned int, long);
535
536 extern int tv_nz(const struct timeval *);
537 extern int tv_cmp(const struct timeval *, const struct timeval *);
538 extern double tv_float(const struct timeval *);
539 extern void tv_add(struct timeval *, const struct timeval *, const struct timeval *);
540 extern void tv_sub(struct timeval *, const struct timeval *, const struct timeval *);
541 extern void tv_mul(struct timeval *, const struct timeval *, int);
542 extern void tv_div(struct timeval *, const struct timeval *, int);
543
544 #ifdef USE_LIBUNWIND
545 extern void unwind_init(void);
546 extern void unwind_tcb_init(struct tcb *tcp);
547 extern void unwind_tcb_fin(struct tcb *tcp);
548 extern void unwind_cache_invalidate(struct tcb* tcp);
549 extern void unwind_print_stacktrace(struct tcb* tcp);
550 extern void unwind_capture_stacktrace(struct tcb* tcp);
551 #endif
552
553 /* Strace log generation machinery.
554  *
555  * printing_tcp: tcb which has incomplete line being printed right now.
556  * NULL if last line has been completed ('\n'-terminated).
557  * printleader(tcp) examines it, finishes incomplete line if needed,
558  * the sets it to tcp.
559  * line_ended() clears printing_tcp and resets ->curcol = 0.
560  * tcp->curcol == 0 check is also used to detect completeness
561  * of last line, since in -ff mode just checking printing_tcp for NULL
562  * is not enough.
563  *
564  * If you change this code, test log generation in both -f and -ff modes
565  * using:
566  * strace -oLOG -f[f] test/threaded_execve
567  * strace -oLOG -f[f] test/sigkill_rain
568  * strace -oLOG -f[f] -p "`pidof web_browser`"
569  */
570 extern struct tcb *printing_tcp;
571 extern void printleader(struct tcb *);
572 extern void line_ended(void);
573 extern void tabto(void);
574 extern void tprintf(const char *fmt, ...) __attribute__ ((format (printf, 1, 2)));
575 extern void tprints(const char *str);
576
577 #if SUPPORTED_PERSONALITIES > 1
578 extern void set_personality(int personality);
579 extern unsigned current_personality;
580 #else
581 # define set_personality(personality) ((void)0)
582 # define current_personality 0
583 #endif
584
585 #if SUPPORTED_PERSONALITIES == 1
586 # define current_wordsize PERSONALITY0_WORDSIZE
587 #else
588 # if SUPPORTED_PERSONALITIES == 2 && PERSONALITY0_WORDSIZE == PERSONALITY1_WORDSIZE
589 #  define current_wordsize PERSONALITY0_WORDSIZE
590 # else
591 extern unsigned current_wordsize;
592 # endif
593 #endif
594
595 /* In many, many places we play fast and loose and use
596  * tprintf("%d", (int) tcp->u_arg[N]) to print fds, pids etc.
597  * We probably need to use widen_to_long() instead:
598  */
599 #if SUPPORTED_PERSONALITIES > 1 && SIZEOF_LONG > 4
600 # define widen_to_long(v) (current_wordsize == 4 ? (long)(int32_t)(v) : (long)(v))
601 #else
602 # define widen_to_long(v) ((long)(v))
603 #endif
604
605 extern const struct_sysent sysent0[];
606 extern const char *const errnoent0[];
607 extern const char *const signalent0[];
608 extern const struct_ioctlent ioctlent0[];
609 extern qualbits_t *qual_vec[SUPPORTED_PERSONALITIES];
610 #define qual_flags (qual_vec[current_personality])
611 #if SUPPORTED_PERSONALITIES > 1
612 extern const struct_sysent *sysent;
613 extern const char *const *errnoent;
614 extern const char *const *signalent;
615 extern const struct_ioctlent *ioctlent;
616 #else
617 # define sysent     sysent0
618 # define errnoent   errnoent0
619 # define signalent  signalent0
620 # define ioctlent   ioctlent0
621 #endif
622 extern unsigned nsyscalls;
623 extern unsigned nerrnos;
624 extern unsigned nsignals;
625 extern unsigned nioctlents;
626 extern unsigned num_quals;
627
628 /*
629  * If you need non-NULL sysent[scno].sys_func and sysent[scno].sys_name
630  */
631 #define SCNO_IS_VALID(scno) \
632         ((unsigned long)(scno) < nsyscalls && sysent[scno].sys_func)
633
634 /* Only ensures that sysent[scno] isn't out of range */
635 #define SCNO_IN_RANGE(scno) \
636         ((unsigned long)(scno) < nsyscalls)