]> granicus.if.org Git - strace/blob - defs.h
Show the syscall name in "resuming interrupted call" message
[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                                 /* Support for tracing forked processes: */
251         long inst[2];           /* Saved clone args (badly named) */
252
253 #ifdef USE_LIBUNWIND
254         struct UPT_info* libunwind_ui;
255         struct mmap_cache_t* mmap_cache;
256         unsigned int mmap_cache_size;
257         unsigned int mmap_cache_generation;
258         struct queue_t* queue;
259 #endif
260 };
261
262 /* TCB flags */
263 /* We have attached to this process, but did not see it stopping yet */
264 #define TCB_STARTUP             0x01
265 #define TCB_IGNORE_ONE_SIGSTOP  0x02    /* Next SIGSTOP is to be ignored */
266 /*
267  * Are we in system call entry or in syscall exit?
268  *
269  * This bit is set after all syscall entry processing is done.
270  * Therefore, this bit will be set when next ptrace stop occurs,
271  * which should be syscall exit stop. Other stops which are possible
272  * directly after syscall entry (death, ptrace event stop)
273  * are simpler and handled without calling trace_syscall(), therefore
274  * the places where TCB_INSYSCALL can be set but we aren't in syscall stop
275  * are limited to trace(), this condition is never observed in trace_syscall()
276  * and below.
277  * The bit is cleared after all syscall exit processing is done.
278  *
279  * Use entering(tcp) / exiting(tcp) to check this bit to make code more readable.
280  */
281 #define TCB_INSYSCALL   0x04
282 #define TCB_ATTACHED    0x08    /* We attached to it already */
283 #define TCB_REPRINT     0x10    /* We should reprint this syscall on exit */
284 #define TCB_FILTERED    0x20    /* This system call has been filtered out */
285
286 /* qualifier flags */
287 #define QUAL_TRACE      0x001   /* this system call should be traced */
288 #define QUAL_ABBREV     0x002   /* abbreviate the structures of this syscall */
289 #define QUAL_VERBOSE    0x004   /* decode the structures of this syscall */
290 #define QUAL_RAW        0x008   /* print all args in hex for this syscall */
291 #define QUAL_SIGNAL     0x010   /* report events with this signal */
292 #define QUAL_READ       0x020   /* dump data read on this file descriptor */
293 #define QUAL_WRITE      0x040   /* dump data written to this file descriptor */
294 typedef uint8_t qualbits_t;
295 #define UNDEFINED_SCNO  0x100   /* Used only in tcp->qual_flg */
296
297 #define DEFAULT_QUAL_FLAGS (QUAL_TRACE | QUAL_ABBREV | QUAL_VERBOSE)
298
299 #define entering(tcp)   (!((tcp)->flags & TCB_INSYSCALL))
300 #define exiting(tcp)    ((tcp)->flags & TCB_INSYSCALL)
301 #define syserror(tcp)   ((tcp)->u_error != 0)
302 #define verbose(tcp)    ((tcp)->qual_flg & QUAL_VERBOSE)
303 #define abbrev(tcp)     ((tcp)->qual_flg & QUAL_ABBREV)
304 #define filtered(tcp)   ((tcp)->flags & TCB_FILTERED)
305
306 struct xlat {
307         unsigned int val;
308         const char *str;
309 };
310 #define XLAT(x) { x, #x }
311 #define XLAT_END { 0, NULL }
312
313 extern const struct xlat addrfams[];
314 extern const struct xlat at_flags[];
315 extern const struct xlat open_access_modes[];
316 extern const struct xlat open_mode_flags[];
317 extern const struct xlat whence_codes[];
318
319 /* Format of syscall return values */
320 #define RVAL_DECIMAL    000     /* decimal format */
321 #define RVAL_HEX        001     /* hex format */
322 #define RVAL_OCTAL      002     /* octal format */
323 #define RVAL_UDECIMAL   003     /* unsigned decimal format */
324 #if defined(LINUX_MIPSN32) || defined(X32)
325 # if 0 /* unused so far */
326 #  define RVAL_LDECIMAL 004     /* long decimal format */
327 #  define RVAL_LHEX     005     /* long hex format */
328 #  define RVAL_LOCTAL   006     /* long octal format */
329 # endif
330 # define RVAL_LUDECIMAL 007     /* long unsigned decimal format */
331 #endif
332 #define RVAL_FD         010     /* file descriptor */
333 #define RVAL_MASK       017     /* mask for these values */
334
335 #define RVAL_STR        020     /* Print `auxstr' field after return val */
336 #define RVAL_NONE       040     /* Print nothing */
337
338 #define TRACE_FILE      001     /* Trace file-related syscalls. */
339 #define TRACE_IPC       002     /* Trace IPC-related syscalls. */
340 #define TRACE_NETWORK   004     /* Trace network-related syscalls. */
341 #define TRACE_PROCESS   010     /* Trace process-related syscalls. */
342 #define TRACE_SIGNAL    020     /* Trace signal-related syscalls. */
343 #define TRACE_DESC      040     /* Trace file descriptor-related syscalls. */
344 #define TRACE_MEMORY    0100    /* Trace memory mapping-related syscalls. */
345 #define SYSCALL_NEVER_FAILS     0200    /* Syscall is always successful. */
346 #define STACKTRACE_INVALIDATE_CACHE 0400  /* Trigger proc/maps cache updating */
347 #define STACKTRACE_CAPTURE_ON_ENTER 01000 /* Capture stacktrace on "entering" stage */
348 #define TRACE_INDIRECT_SUBCALL  02000   /* Syscall is an indirect socket/ipc subcall. */
349
350 #if defined(ARM) || defined(AARCH64) \
351  || defined(I386) || defined(X32) || defined(X86_64) \
352  || defined(IA64) \
353  || defined(BFIN) \
354  || defined(M68K) \
355  || defined(MICROBLAZE) \
356  || defined(S390) \
357  || defined(SH) || defined(SH64) \
358  || defined(SPARC) || defined(SPARC64) \
359  /**/
360 # define NEED_UID16_PARSERS 1
361 #else
362 # define NEED_UID16_PARSERS 0
363 #endif
364
365 typedef enum {
366         CFLAG_NONE = 0,
367         CFLAG_ONLY_STATS,
368         CFLAG_BOTH
369 } cflag_t;
370 extern cflag_t cflag;
371 extern bool debug_flag;
372 extern bool Tflag;
373 extern bool iflag;
374 extern bool count_wallclock;
375 extern unsigned int qflag;
376 extern bool not_failing_only;
377 extern unsigned int show_fd_path;
378 extern bool hide_log_until_execve;
379 /* are we filtering traces based on paths? */
380 extern const char **paths_selected;
381 #define tracing_paths (paths_selected != NULL)
382 extern unsigned xflag;
383 extern unsigned followfork;
384 #ifdef USE_LIBUNWIND
385 /* if this is true do the stack trace for every system call */
386 extern bool stack_trace_enabled;
387 #endif
388 extern unsigned ptrace_setoptions;
389 extern unsigned max_strlen;
390 extern unsigned os_release;
391 #undef KERNEL_VERSION
392 #define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))
393
394 enum bitness_t { BITNESS_CURRENT = 0, BITNESS_32 };
395
396 void error_msg(const char *fmt, ...) __attribute__ ((format(printf, 1, 2)));
397 void perror_msg(const char *fmt, ...) __attribute__ ((format(printf, 1, 2)));
398 void error_msg_and_die(const char *fmt, ...) __attribute__ ((noreturn, format(printf, 1, 2)));
399 void perror_msg_and_die(const char *fmt, ...) __attribute__ ((noreturn, format(printf, 1, 2)));
400 void die_out_of_memory(void) __attribute__ ((noreturn));
401
402 #if USE_CUSTOM_PRINTF
403 /*
404  * See comment in vsprintf.c for allowed formats.
405  * Short version: %h[h]u, %zu, %tu are not allowed, use %[l[l]]u.
406  */
407 int strace_vfprintf(FILE *fp, const char *fmt, va_list args);
408 #else
409 # define strace_vfprintf vfprintf
410 #endif
411
412 extern void set_sortby(const char *);
413 extern void set_overhead(int);
414 extern void qualify(const char *);
415 extern void print_pc(struct tcb *);
416 extern int trace_syscall(struct tcb *);
417 extern void count_syscall(struct tcb *, const struct timeval *);
418 extern void call_summary(FILE *);
419
420 extern void clear_regs(void);
421 extern void get_regs(pid_t pid);
422 extern int get_scno(struct tcb *tcp);
423
424 extern int umoven(struct tcb *, long, unsigned int, char *);
425 #define umove(pid, addr, objp)  \
426         umoven((pid), (addr), sizeof(*(objp)), (char *) (objp))
427 extern int umovestr(struct tcb *, long, unsigned int, char *);
428 extern int upeek(int pid, long, long *);
429 #if defined(SPARC) || defined(SPARC64) || defined(IA64) || defined(SH)
430 extern long getrval2(struct tcb *);
431 #endif
432
433 extern const char *signame(const int);
434 extern void pathtrace_select(const char *);
435 extern int pathtrace_match(struct tcb *);
436 extern int getfdpath(struct tcb *, int, char *, unsigned);
437
438 extern const char *xlookup(const struct xlat *, const unsigned int);
439 extern const char *xlat_search(const struct xlat *, const size_t, const unsigned int);
440
441 extern int string_to_uint(const char *str);
442 extern int next_set_bit(const void *bit_array, unsigned cur_bit, unsigned size_bits);
443
444 #define QUOTE_0_TERMINATED                      0x01
445 #define QUOTE_OMIT_LEADING_TRAILING_QUOTES      0x02
446
447 extern int print_quoted_string(const char *, unsigned int, unsigned int);
448
449 /* a refers to the lower numbered u_arg,
450  * b refers to the higher numbered u_arg
451  */
452 #if HAVE_LITTLE_ENDIAN_LONG_LONG
453 # define LONG_LONG(a,b) \
454         ((long long)((unsigned long long)(unsigned)(a) | ((unsigned long long)(b)<<32)))
455 #else
456 # define LONG_LONG(a,b) \
457         ((long long)((unsigned long long)(unsigned)(b) | ((unsigned long long)(a)<<32)))
458 #endif
459 extern int getllval(struct tcb *, unsigned long long *, int);
460 extern int printllval(struct tcb *, const char *, int)
461         __attribute__ ((format (printf, 2, 0)));
462
463 extern void printxval(const struct xlat *, const unsigned int, const char *);
464 extern int printargs(struct tcb *);
465 extern int printargs_lu(struct tcb *);
466 extern int printargs_ld(struct tcb *);
467 extern void addflags(const struct xlat *, int);
468 extern int printflags(const struct xlat *, int, const char *);
469 extern const char *sprintflags(const char *, const struct xlat *, int);
470 extern const char *sprintmode(int);
471 extern const char *sprinttime(time_t);
472 extern void dumpiov_in_msghdr(struct tcb *, long);
473 extern void dumpiov_in_mmsghdr(struct tcb *, long);
474 extern void dumpiov(struct tcb *, int, long);
475 extern void dumpstr(struct tcb *, long, int);
476 extern void printstr(struct tcb *, long, long);
477 extern void printnum_int(struct tcb *, long, const char *)
478         __attribute__ ((format (printf, 3, 0)));
479 extern void printnum_long(struct tcb *, long, const char *)
480         __attribute__ ((format (printf, 3, 0)));
481 extern void printpath(struct tcb *, long);
482 extern void printpathn(struct tcb *, long, unsigned int);
483 #define TIMESPEC_TEXT_BUFSIZE (sizeof(long)*3 * 2 + sizeof("{%u, %u}"))
484 #define TIMEVAL_TEXT_BUFSIZE  TIMESPEC_TEXT_BUFSIZE
485 extern void printtv_bitness(struct tcb *, long, enum bitness_t, int);
486 #define printtv(tcp, addr)      \
487         printtv_bitness((tcp), (addr), BITNESS_CURRENT, 0)
488 #define printtv_special(tcp, addr)      \
489         printtv_bitness((tcp), (addr), BITNESS_CURRENT, 1)
490 extern char *sprinttv(char *, struct tcb *, long, enum bitness_t, int special);
491 extern void print_timespec(struct tcb *, long);
492 extern void sprint_timespec(char *, struct tcb *, long);
493 extern void printsiginfo(const siginfo_t *, int);
494 extern void printsiginfo_at(struct tcb *tcp, long addr);
495 extern void printfd(struct tcb *, int);
496 extern bool print_sockaddr_by_inode(const unsigned long, const char *);
497 extern void print_dirfd(struct tcb *, int);
498 extern void printsock(struct tcb *, long, int);
499 extern void print_sock_optmgmt(struct tcb *, long, int);
500 extern void printrusage(struct tcb *, long);
501 #ifdef ALPHA
502 extern void printrusage32(struct tcb *, long);
503 #endif
504 extern void printuid(const char *, const unsigned int);
505 extern void print_sigset_addr_len(struct tcb *, long, long);
506 extern const char *sprintsigmask_n(const char *, const void *, unsigned int);
507 #define tprintsigmask_addr(prefix, mask) \
508         tprints(sprintsigmask_n((prefix), (mask), sizeof(mask)))
509 extern void printsignal(int);
510 extern void tprint_iov(struct tcb *, unsigned long, unsigned long, int decode_iov);
511 extern void tprint_iov_upto(struct tcb *, unsigned long, unsigned long, int decode_iov, unsigned long);
512 extern void tprint_open_modes(int);
513 extern const char *sprint_open_modes(int);
514 extern void print_loff_t(struct tcb *, long);
515 extern void print_seccomp_filter(struct tcb *tcp, unsigned long);
516
517 extern const struct_ioctlent *ioctl_lookup(const unsigned int);
518 extern const struct_ioctlent *ioctl_next_match(const struct_ioctlent *);
519 extern void ioctl_print_code(const unsigned int);
520 extern int ioctl_decode(struct tcb *, const unsigned int, long);
521 extern int ioctl_decode_command_number(const unsigned int);
522 extern int block_ioctl(struct tcb *, const unsigned int, long);
523 extern int evdev_ioctl(struct tcb *, const unsigned int, long);
524 extern int loop_ioctl(struct tcb *, const unsigned int, long);
525 extern int mtd_ioctl(struct tcb *, const unsigned int, long);
526 extern int ptp_ioctl(struct tcb *, const unsigned int, long);
527 extern int rtc_ioctl(struct tcb *, const unsigned int, long);
528 extern int scsi_ioctl(struct tcb *, const unsigned int, long);
529 extern int sock_ioctl(struct tcb *, const unsigned int, long);
530 extern int term_ioctl(struct tcb *, const unsigned int, long);
531 extern int ubi_ioctl(struct tcb *, const unsigned int, long);
532 extern int v4l2_ioctl(struct tcb *, const unsigned int, long);
533
534 extern int tv_nz(const struct timeval *);
535 extern int tv_cmp(const struct timeval *, const struct timeval *);
536 extern double tv_float(const struct timeval *);
537 extern void tv_add(struct timeval *, const struct timeval *, const struct timeval *);
538 extern void tv_sub(struct timeval *, const struct timeval *, const struct timeval *);
539 extern void tv_mul(struct timeval *, const struct timeval *, int);
540 extern void tv_div(struct timeval *, const struct timeval *, int);
541
542 #ifdef USE_LIBUNWIND
543 extern void unwind_init(void);
544 extern void unwind_tcb_init(struct tcb *tcp);
545 extern void unwind_tcb_fin(struct tcb *tcp);
546 extern void unwind_cache_invalidate(struct tcb* tcp);
547 extern void unwind_print_stacktrace(struct tcb* tcp);
548 extern void unwind_capture_stacktrace(struct tcb* tcp);
549 #endif
550
551 /* Strace log generation machinery.
552  *
553  * printing_tcp: tcb which has incomplete line being printed right now.
554  * NULL if last line has been completed ('\n'-terminated).
555  * printleader(tcp) examines it, finishes incomplete line if needed,
556  * the sets it to tcp.
557  * line_ended() clears printing_tcp and resets ->curcol = 0.
558  * tcp->curcol == 0 check is also used to detect completeness
559  * of last line, since in -ff mode just checking printing_tcp for NULL
560  * is not enough.
561  *
562  * If you change this code, test log generation in both -f and -ff modes
563  * using:
564  * strace -oLOG -f[f] test/threaded_execve
565  * strace -oLOG -f[f] test/sigkill_rain
566  * strace -oLOG -f[f] -p "`pidof web_browser`"
567  */
568 extern struct tcb *printing_tcp;
569 extern void printleader(struct tcb *);
570 extern void line_ended(void);
571 extern void tabto(void);
572 extern void tprintf(const char *fmt, ...) __attribute__ ((format (printf, 1, 2)));
573 extern void tprints(const char *str);
574
575 #if SUPPORTED_PERSONALITIES > 1
576 extern void set_personality(int personality);
577 extern unsigned current_personality;
578 #else
579 # define set_personality(personality) ((void)0)
580 # define current_personality 0
581 #endif
582
583 #if SUPPORTED_PERSONALITIES == 1
584 # define current_wordsize PERSONALITY0_WORDSIZE
585 #else
586 # if SUPPORTED_PERSONALITIES == 2 && PERSONALITY0_WORDSIZE == PERSONALITY1_WORDSIZE
587 #  define current_wordsize PERSONALITY0_WORDSIZE
588 # else
589 extern unsigned current_wordsize;
590 # endif
591 #endif
592
593 /* In many, many places we play fast and loose and use
594  * tprintf("%d", (int) tcp->u_arg[N]) to print fds, pids etc.
595  * We probably need to use widen_to_long() instead:
596  */
597 #if SUPPORTED_PERSONALITIES > 1 && SIZEOF_LONG > 4
598 # define widen_to_long(v) (current_wordsize == 4 ? (long)(int32_t)(v) : (long)(v))
599 #else
600 # define widen_to_long(v) ((long)(v))
601 #endif
602
603 extern const struct_sysent sysent0[];
604 extern const char *const errnoent0[];
605 extern const char *const signalent0[];
606 extern const struct_ioctlent ioctlent0[];
607 extern qualbits_t *qual_vec[SUPPORTED_PERSONALITIES];
608 #define qual_flags (qual_vec[current_personality])
609 #if SUPPORTED_PERSONALITIES > 1
610 extern const struct_sysent *sysent;
611 extern const char *const *errnoent;
612 extern const char *const *signalent;
613 extern const struct_ioctlent *ioctlent;
614 #else
615 # define sysent     sysent0
616 # define errnoent   errnoent0
617 # define signalent  signalent0
618 # define ioctlent   ioctlent0
619 #endif
620 extern unsigned nsyscalls;
621 extern unsigned nerrnos;
622 extern unsigned nsignals;
623 extern unsigned nioctlents;
624 extern unsigned num_quals;
625
626 /*
627  * If you need non-NULL sysent[scno].sys_func and sysent[scno].sys_name
628  */
629 #define SCNO_IS_VALID(scno) \
630         ((unsigned long)(scno) < nsyscalls && sysent[scno].sys_func)
631
632 /* Only ensures that sysent[scno] isn't out of range */
633 #define SCNO_IN_RANGE(scno) \
634         ((unsigned long)(scno) < nsyscalls)