]> granicus.if.org Git - strace/blob - defs.h
seccomp: decode SECCOMP_GET_ACTION_AVAIL operation
[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  * Copyright (c) 2001-2017 The strace developers.
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  * 3. The name of the author may not be used to endorse or promote products
17  *    derived from this software without specific prior written permission.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
20  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
21  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
22  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
23  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
24  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
28  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29  */
30
31 #ifndef STRACE_DEFS_H
32 #define STRACE_DEFS_H
33
34 #ifdef HAVE_CONFIG_H
35 # include "config.h"
36 #endif
37
38 #include <features.h>
39 #include <stdbool.h>
40 #include <stdint.h>
41 #include <inttypes.h>
42 #include <sys/types.h>
43 #include <stddef.h>
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 <time.h>
54 #include <sys/time.h>
55
56 #include "error_prints.h"
57 #include "gcc_compat.h"
58 #include "kernel_types.h"
59 #include "macros.h"
60 #include "mpers_type.h"
61 #include "string_to_uint.h"
62 #include "supported_personalities.h"
63 #include "sysent.h"
64 #include "xmalloc.h"
65
66 #ifndef HAVE_STRERROR
67 const char *strerror(int);
68 #endif
69 #ifndef HAVE_STPCPY
70 /* Some libc have stpcpy, some don't. Sigh...
71  * Roll our private implementation...
72  */
73 #undef stpcpy
74 #define stpcpy strace_stpcpy
75 extern char *stpcpy(char *dst, const char *src);
76 #endif
77
78 /* macros */
79 #ifndef MAX
80 # define MAX(a, b)              (((a) > (b)) ? (a) : (b))
81 #endif
82 #ifndef MIN
83 # define MIN(a, b)              (((a) < (b)) ? (a) : (b))
84 #endif
85 #define CLAMP(val, min, max) MIN(MAX(min, val), max)
86
87 /* Glibc has an efficient macro for sigemptyset
88  * (it just does one or two assignments of 0 to internal vector of longs).
89  */
90 #if defined(__GLIBC__) && defined(__sigemptyset) && !defined(sigemptyset)
91 # define sigemptyset __sigemptyset
92 #endif
93
94 /* Configuration section */
95 #ifndef DEFAULT_STRLEN
96 /* default maximum # of bytes printed in `printstr', change with -s switch */
97 # define DEFAULT_STRLEN 32
98 #endif
99 #ifndef DEFAULT_ACOLUMN
100 # define DEFAULT_ACOLUMN        40      /* default alignment column for results */
101 #endif
102 /*
103  * Maximum number of args to a syscall.
104  *
105  * Make sure that all entries in all syscallent.h files have nargs <= MAX_ARGS!
106  * linux/<ARCH>/syscallent*.h:
107  *      all have nargs <= 6 except mips o32 which has nargs <= 7.
108  */
109 #ifndef MAX_ARGS
110 # ifdef LINUX_MIPSO32
111 #  define MAX_ARGS      7
112 # else
113 #  define MAX_ARGS      6
114 # endif
115 #endif
116 /* default sorting method for call profiling */
117 #ifndef DEFAULT_SORTBY
118 # define DEFAULT_SORTBY "time"
119 #endif
120 /*
121  * Experimental code using PTRACE_SEIZE can be enabled here.
122  * This needs Linux kernel 3.4.x or later to work.
123  */
124 #define USE_SEIZE 1
125 /* To force NOMMU build, set to 1 */
126 #define NOMMU_SYSTEM 0
127
128 #ifndef ERESTARTSYS
129 # define ERESTARTSYS    512
130 #endif
131 #ifndef ERESTARTNOINTR
132 # define ERESTARTNOINTR 513
133 #endif
134 #ifndef ERESTARTNOHAND
135 # define ERESTARTNOHAND 514
136 #endif
137 #ifndef ERESTART_RESTARTBLOCK
138 # define ERESTART_RESTARTBLOCK 516
139 #endif
140
141 #define PERSONALITY0_WORDSIZE  SIZEOF_LONG
142 #define PERSONALITY0_KLONGSIZE SIZEOF_KERNEL_LONG_T
143 #define PERSONALITY0_INCLUDE_PRINTERS_DECLS "native_printer_decls.h"
144 #define PERSONALITY0_INCLUDE_PRINTERS_DEFS "native_printer_defs.h"
145
146 #if SUPPORTED_PERSONALITIES > 1
147 # define PERSONALITY1_WORDSIZE  4
148 # define PERSONALITY1_KLONGSIZE PERSONALITY1_WORDSIZE
149 #endif
150
151 #if SUPPORTED_PERSONALITIES > 2
152 # define PERSONALITY2_WORDSIZE  4
153 # define PERSONALITY2_KLONGSIZE PERSONALITY0_KLONGSIZE
154 #endif
155
156 #if SUPPORTED_PERSONALITIES > 1 && defined HAVE_M32_MPERS
157 # define PERSONALITY1_INCLUDE_PRINTERS_DECLS "m32_printer_decls.h"
158 # define PERSONALITY1_INCLUDE_PRINTERS_DEFS "m32_printer_defs.h"
159 # define PERSONALITY1_INCLUDE_FUNCS "m32_funcs.h"
160 # define MPERS_m32_IOCTL_MACROS "ioctl_redefs1.h"
161 #else
162 # define PERSONALITY1_INCLUDE_PRINTERS_DECLS "native_printer_decls.h"
163 # define PERSONALITY1_INCLUDE_PRINTERS_DEFS "native_printer_defs.h"
164 # define PERSONALITY1_INCLUDE_FUNCS "empty.h"
165 #endif
166
167 #if SUPPORTED_PERSONALITIES > 2 && defined HAVE_MX32_MPERS
168 # define PERSONALITY2_INCLUDE_FUNCS "mx32_funcs.h"
169 # define PERSONALITY2_INCLUDE_PRINTERS_DECLS "mx32_printer_decls.h"
170 # define PERSONALITY2_INCLUDE_PRINTERS_DEFS "mx32_printer_defs.h"
171 # define MPERS_mx32_IOCTL_MACROS "ioctl_redefs2.h"
172 #else
173 # define PERSONALITY2_INCLUDE_PRINTERS_DECLS "native_printer_decls.h"
174 # define PERSONALITY2_INCLUDE_PRINTERS_DEFS "native_printer_defs.h"
175 # define PERSONALITY2_INCLUDE_FUNCS "empty.h"
176 #endif
177
178 typedef struct ioctlent {
179         const char *symbol;
180         unsigned int code;
181 } struct_ioctlent;
182
183 #define INJECT_F_SIGNAL 1
184 #define INJECT_F_RETVAL 2
185
186 struct inject_data {
187         uint16_t flags;
188         uint16_t signo;
189         int rval;
190 };
191
192 struct inject_opts {
193         uint16_t first;
194         uint16_t step;
195         struct inject_data data;
196 };
197
198 #define MAX_ERRNO_VALUE                 4095
199
200 /* Trace Control Block */
201 struct tcb {
202         int flags;              /* See below for TCB_ values */
203         int pid;                /* If 0, this tcb is free */
204         int qual_flg;           /* qual_flags[scno] or DEFAULT_QUAL_FLAGS + RAW */
205         unsigned long u_error;  /* Error code */
206         kernel_ulong_t scno;    /* System call number */
207         kernel_ulong_t u_arg[MAX_ARGS]; /* System call arguments */
208         kernel_long_t u_rval;   /* Return value */
209 #if SUPPORTED_PERSONALITIES > 1
210         unsigned int currpers;  /* Personality at the time of scno update */
211 #endif
212         int sys_func_rval;      /* Syscall entry parser's return value */
213         int curcol;             /* Output column for this process */
214         FILE *outf;             /* Output file for this process */
215         const char *auxstr;     /* Auxiliary info from syscall (see RVAL_STR) */
216         void *_priv_data;       /* Private data for syscall decoding functions */
217         void (*_free_priv_data)(void *); /* Callback for freeing priv_data */
218         const struct_sysent *s_ent; /* sysent[scno] or dummy struct for bad scno */
219         const struct_sysent *s_prev_ent; /* for "resuming interrupted SYSCALL" msg */
220         struct inject_opts *inject_vec[SUPPORTED_PERSONALITIES];
221         struct timeval stime;   /* System time usage as of last process wait */
222         struct timeval dtime;   /* Delta for system time usage */
223         struct timeval etime;   /* Syscall entry time */
224
225 #ifdef USE_LIBUNWIND
226         struct UPT_info *libunwind_ui;
227         struct mmap_cache_t *mmap_cache;
228         unsigned int mmap_cache_size;
229         unsigned int mmap_cache_generation;
230         struct queue_t *queue;
231 #endif
232 };
233
234 /* TCB flags */
235 /* We have attached to this process, but did not see it stopping yet */
236 #define TCB_STARTUP             0x01
237 #define TCB_IGNORE_ONE_SIGSTOP  0x02    /* Next SIGSTOP is to be ignored */
238 /*
239  * Are we in system call entry or in syscall exit?
240  *
241  * This bit is set in syscall_entering_finish() and cleared in
242  * syscall_exiting_finish().
243  * Other stops which are possible directly after syscall entry (death, ptrace
244  * event stop) are handled without calling syscall_{entering,exiting}_*().
245  *
246  * Use entering(tcp) / exiting(tcp) to check this bit to make code more
247  * readable.
248  */
249 #define TCB_INSYSCALL   0x04
250 #define TCB_ATTACHED    0x08    /* We attached to it already */
251 #define TCB_REPRINT     0x10    /* We should reprint this syscall on exit */
252 #define TCB_FILTERED    0x20    /* This system call has been filtered out */
253 #define TCB_TAMPERED    0x40    /* A syscall has been tampered with */
254 #define TCB_HIDE_LOG    0x80    /* We should hide everything (until execve) */
255 #define TCB_SKIP_DETACH_ON_FIRST_EXEC   0x100   /* -b execve should skip detach on first execve */
256
257 /* qualifier flags */
258 #define QUAL_TRACE      0x001   /* this system call should be traced */
259 #define QUAL_ABBREV     0x002   /* abbreviate the structures of this syscall */
260 #define QUAL_VERBOSE    0x004   /* decode the structures of this syscall */
261 #define QUAL_RAW        0x008   /* print all args in hex for this syscall */
262 #define QUAL_INJECT     0x010   /* tamper with this system call on purpose */
263
264 #define DEFAULT_QUAL_FLAGS (QUAL_TRACE | QUAL_ABBREV | QUAL_VERBOSE)
265
266 #define entering(tcp)   (!((tcp)->flags & TCB_INSYSCALL))
267 #define exiting(tcp)    ((tcp)->flags & TCB_INSYSCALL)
268 #define syserror(tcp)   ((tcp)->u_error != 0)
269 #define traced(tcp)     ((tcp)->qual_flg & QUAL_TRACE)
270 #define verbose(tcp)    ((tcp)->qual_flg & QUAL_VERBOSE)
271 #define abbrev(tcp)     ((tcp)->qual_flg & QUAL_ABBREV)
272 #define raw(tcp)        ((tcp)->qual_flg & QUAL_RAW)
273 #define inject(tcp)     ((tcp)->qual_flg & QUAL_INJECT)
274 #define filtered(tcp)   ((tcp)->flags & TCB_FILTERED)
275 #define hide_log(tcp)   ((tcp)->flags & TCB_HIDE_LOG)
276
277 #include "xlat.h"
278
279 extern const struct xlat addrfams[];
280 extern const struct xlat arp_hardware_types[];
281 extern const struct xlat at_flags[];
282 extern const struct xlat clocknames[];
283 extern const struct xlat dirent_types[];
284 extern const struct xlat ethernet_protocols[];
285 extern const struct xlat evdev_abs[];
286 extern const struct xlat iffflags[];
287 extern const struct xlat inet_protocols[];
288 extern const struct xlat ip_type_of_services[];
289 extern const struct xlat msg_flags[];
290 extern const struct xlat netlink_protocols[];
291 extern const struct xlat nl_route_types[];
292 extern const struct xlat open_access_modes[];
293 extern const struct xlat open_mode_flags[];
294 extern const struct xlat resource_flags[];
295 extern const struct xlat routing_scopes[];
296 extern const struct xlat routing_table_ids[];
297 extern const struct xlat routing_types[];
298 extern const struct xlat seccomp_ret_action[];
299 extern const struct xlat setns_types[];
300 extern const struct xlat sg_io_info[];
301 extern const struct xlat socketlayers[];
302 extern const struct xlat socktypes[];
303 extern const struct xlat tcp_state_flags[];
304 extern const struct xlat tcp_states[];
305 extern const struct xlat whence_codes[];
306
307 /* Format of syscall return values */
308 #define RVAL_DECIMAL    000     /* decimal format */
309 #define RVAL_HEX        001     /* hex format */
310 #define RVAL_OCTAL      002     /* octal format */
311 #define RVAL_UDECIMAL   003     /* unsigned decimal format */
312 #define RVAL_FD         010     /* file descriptor */
313 #define RVAL_MASK       013     /* mask for these values */
314
315 #define RVAL_STR        020     /* Print `auxstr' field after return val */
316 #define RVAL_NONE       040     /* Print nothing */
317
318 #define RVAL_DECODED    0100    /* syscall decoding finished */
319 #define RVAL_IOCTL_DECODED 0200 /* ioctl sub-parser successfully decoded
320                                    the argument */
321
322 #define IOCTL_NUMBER_UNKNOWN 0
323 #define IOCTL_NUMBER_HANDLED 1
324 #define IOCTL_NUMBER_STOP_LOOKUP 010
325
326 #define indirect_ipccall(tcp) (tcp->s_ent->sys_flags & TRACE_INDIRECT_SUBCALL)
327
328 #if defined(ARM) || defined(AARCH64) \
329  || defined(I386) || defined(X32) || defined(X86_64) \
330  || defined(IA64) \
331  || defined(BFIN) \
332  || defined(M68K) \
333  || defined(MICROBLAZE) \
334  || defined(RISCV) \
335  || defined(S390) \
336  || defined(SH) || defined(SH64) \
337  || defined(SPARC) || defined(SPARC64) \
338  /**/
339 # define NEED_UID16_PARSERS 1
340 #else
341 # define NEED_UID16_PARSERS 0
342 #endif
343
344 enum sock_proto {
345         SOCK_PROTO_UNKNOWN,
346         SOCK_PROTO_UNIX,
347         SOCK_PROTO_TCP,
348         SOCK_PROTO_UDP,
349         SOCK_PROTO_TCPv6,
350         SOCK_PROTO_UDPv6,
351         SOCK_PROTO_NETLINK
352 };
353 extern enum sock_proto get_proto_by_name(const char *);
354
355 enum iov_decode {
356         IOV_DECODE_ADDR,
357         IOV_DECODE_STR,
358         IOV_DECODE_NETLINK
359 };
360
361 typedef enum {
362         CFLAG_NONE = 0,
363         CFLAG_ONLY_STATS,
364         CFLAG_BOTH
365 } cflag_t;
366 extern cflag_t cflag;
367 extern bool debug_flag;
368 extern bool Tflag;
369 extern bool iflag;
370 extern bool count_wallclock;
371 extern unsigned int qflag;
372 extern bool not_failing_only;
373 extern unsigned int show_fd_path;
374 /* are we filtering traces based on paths? */
375 extern struct path_set {
376         const char **paths_selected;
377         unsigned int num_selected;
378 } global_path_set;
379 #define tracing_paths (global_path_set.num_selected != 0)
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 extern int read_int_from_file(const char *, int *);
393
394 extern void set_sortby(const char *);
395 extern void set_overhead(int);
396 extern void print_pc(struct tcb *);
397
398 extern int syscall_entering_decode(struct tcb *);
399 extern int syscall_entering_trace(struct tcb *, unsigned int *);
400 extern void syscall_entering_finish(struct tcb *, int);
401
402 extern int syscall_exiting_decode(struct tcb *, struct timeval *);
403 extern int syscall_exiting_trace(struct tcb *, struct timeval, int);
404 extern void syscall_exiting_finish(struct tcb *);
405
406 extern void count_syscall(struct tcb *, const struct timeval *);
407 extern void call_summary(FILE *);
408
409 extern void clear_regs(void);
410 extern int get_scno(struct tcb *);
411 extern kernel_ulong_t get_rt_sigframe_addr(struct tcb *);
412
413 /**
414  * Convert syscall number to syscall name.
415  *
416  * @param scno Syscall number.
417  * @return     String literal corresponding to the syscall number in case latter
418  *             is valid; NULL otherwise.
419  */
420 extern const char *syscall_name(kernel_ulong_t scno);
421 extern const char *err_name(unsigned long err);
422
423 extern bool is_erestart(struct tcb *);
424 extern void temporarily_clear_syserror(struct tcb *);
425 extern void restore_cleared_syserror(struct tcb *);
426
427 extern void *get_tcb_priv_data(const struct tcb *);
428 extern int set_tcb_priv_data(struct tcb *, void *priv_data,
429                              void (*free_priv_data)(void *));
430 extern void free_tcb_priv_data(struct tcb *);
431
432 static inline unsigned long get_tcb_priv_ulong(const struct tcb *tcp)
433 {
434         return (unsigned long) get_tcb_priv_data(tcp);
435 }
436
437 static inline int set_tcb_priv_ulong(struct tcb *tcp, unsigned long val)
438 {
439         return set_tcb_priv_data(tcp, (void *) val, 0);
440 }
441
442 extern int
443 umoven(struct tcb *, kernel_ulong_t addr, unsigned int len, void *laddr);
444 #define umove(pid, addr, objp)  \
445         umoven((pid), (addr), sizeof(*(objp)), (void *) (objp))
446
447 extern int
448 umoven_or_printaddr(struct tcb *, kernel_ulong_t addr,
449                     unsigned int len, void *laddr);
450 #define umove_or_printaddr(pid, addr, objp)     \
451         umoven_or_printaddr((pid), (addr), sizeof(*(objp)), (void *) (objp))
452
453 extern int
454 umoven_or_printaddr_ignore_syserror(struct tcb *, kernel_ulong_t addr,
455                                     unsigned int len, void *laddr);
456
457 extern int
458 umovestr(struct tcb *, kernel_ulong_t addr, unsigned int len, char *laddr);
459
460 extern int upeek(int pid, unsigned long, kernel_ulong_t *);
461 extern int upoke(int pid, unsigned long, kernel_ulong_t);
462
463 extern bool
464 print_array(struct tcb *,
465             kernel_ulong_t start_addr,
466             size_t nmemb,
467             void *elem_buf,
468             size_t elem_size,
469             int (*umoven_func)(struct tcb *,
470                                      kernel_ulong_t,
471                                      unsigned int,
472                                      void *),
473             bool (*print_func)(struct tcb *,
474                                      void *elem_buf,
475                                      size_t elem_size,
476                                      void *opaque_data),
477             void *opaque_data);
478
479 #if defined ALPHA || defined IA64 || defined MIPS \
480  || defined SH || defined SPARC || defined SPARC64
481 # define HAVE_GETRVAL2
482 extern long getrval2(struct tcb *);
483 #else
484 # undef HAVE_GETRVAL2
485 #endif
486
487 extern const char *signame(const int);
488 extern void pathtrace_select_set(const char *, struct path_set *);
489 extern bool pathtrace_match_set(struct tcb *, struct path_set *);
490 #define pathtrace_select(tcp)   \
491         pathtrace_select_set(tcp, &global_path_set)
492 #define pathtrace_match(tcp)    \
493         pathtrace_match_set(tcp, &global_path_set)
494 extern int getfdpath(struct tcb *, int, char *, unsigned);
495 extern unsigned long getfdinode(struct tcb *, int);
496 extern enum sock_proto getfdproto(struct tcb *, int);
497
498 extern const char *xlookup(const struct xlat *, const uint64_t);
499 extern const char *xlat_search(const struct xlat *, const size_t, const uint64_t);
500
501 struct dyxlat;
502 struct dyxlat *dyxlat_alloc(size_t nmemb);
503 void dyxlat_free(struct dyxlat *);
504 const struct xlat *dyxlat_get(const struct dyxlat *);
505 void dyxlat_add_pair(struct dyxlat *, uint64_t val, const char *str, size_t len);
506
507 const struct xlat *genl_families_xlat(void);
508
509 extern unsigned long get_pagesize(void);
510 extern int next_set_bit(const void *bit_array, unsigned cur_bit, unsigned size_bits);
511
512 /*
513  * Returns STR if it does not start with PREFIX,
514  * or a pointer to the first char in STR after PREFIX.
515  * The length of PREFIX is specified by PREFIX_LEN.
516  */
517 static inline const char *
518 str_strip_prefix_len(const char *str, const char *prefix, size_t prefix_len)
519 {
520         return strncmp(str, prefix, prefix_len) ? str : str + prefix_len;
521 }
522
523 #define STR_STRIP_PREFIX(str, prefix)   \
524         str_strip_prefix_len((str), (prefix), sizeof(prefix) - 1)
525
526 #define QUOTE_0_TERMINATED                      0x01
527 #define QUOTE_OMIT_LEADING_TRAILING_QUOTES      0x02
528 #define QUOTE_OMIT_TRAILING_0                   0x08
529 #define QUOTE_FORCE_HEX                         0x10
530
531 extern int string_quote(const char *, char *, unsigned int, unsigned int);
532 extern int print_quoted_string(const char *, unsigned int, unsigned int);
533 extern int print_quoted_cstring(const char *, unsigned int);
534
535 /* a refers to the lower numbered u_arg,
536  * b refers to the higher numbered u_arg
537  */
538 #ifdef WORDS_BIGENDIAN
539 # define ULONG_LONG(a, b) \
540         ((unsigned long long)(unsigned)(b) | ((unsigned long long)(a)<<32))
541 #else
542 # define ULONG_LONG(a, b) \
543         ((unsigned long long)(unsigned)(a) | ((unsigned long long)(b)<<32))
544 #endif
545 extern int getllval(struct tcb *, unsigned long long *, int);
546 extern int printllval(struct tcb *, const char *, int)
547         ATTRIBUTE_FORMAT((printf, 2, 0));
548
549 extern void printaddr(kernel_ulong_t addr);
550 extern int printxvals(const uint64_t, const char *, const struct xlat *, ...)
551         ATTRIBUTE_SENTINEL;
552 extern int printxval_searchn(const struct xlat *xlat, size_t xlat_size,
553         uint64_t val, const char *dflt);
554 #define printxval_search(xlat__, val__, dflt__) \
555         printxval_searchn(xlat__, ARRAY_SIZE(xlat__), val__, dflt__)
556 extern int printargs(struct tcb *);
557 extern int printargs_u(struct tcb *);
558 extern int printargs_d(struct tcb *);
559
560 extern void addflags(const struct xlat *, uint64_t);
561 extern int printflags_ex(uint64_t, const char *, const struct xlat *, ...)
562         ATTRIBUTE_SENTINEL;
563 extern const char *sprintflags(const char *, const struct xlat *, uint64_t);
564 extern const char *sprinttime(long long sec);
565 extern const char *sprinttime_nsec(long long sec, unsigned long long nsec);
566 extern const char *sprinttime_usec(long long sec, unsigned long long usec);
567 extern void print_symbolic_mode_t(unsigned int);
568 extern void print_numeric_umode_t(unsigned short);
569 extern void print_numeric_long_umask(unsigned long);
570 extern void print_dev_t(unsigned long long dev);
571 extern void print_abnormal_hi(kernel_ulong_t);
572
573 extern void
574 dumpiov_in_msghdr(struct tcb *, kernel_ulong_t addr, kernel_ulong_t data_size);
575
576 extern void
577 dumpiov_in_mmsghdr(struct tcb *, kernel_ulong_t addr);
578
579 extern void
580 dumpiov_upto(struct tcb *, int len, kernel_ulong_t addr, kernel_ulong_t data_size);
581
582 extern void
583 dumpstr(struct tcb *, kernel_ulong_t addr, int len);
584
585 extern void
586 printstr_ex(struct tcb *, kernel_ulong_t addr, kernel_ulong_t len,
587             unsigned int user_style);
588
589 extern void
590 printpathn(struct tcb *, kernel_ulong_t addr, unsigned int n);
591
592 extern void
593 printpath(struct tcb *, kernel_ulong_t addr);
594
595 #define TIMESPEC_TEXT_BUFSIZE \
596                 (sizeof(long long) * 3 * 2 + sizeof("{tv_sec=-, tv_nsec=}"))
597 extern void printfd(struct tcb *, int);
598 extern void print_sockaddr(const void *sa, int len);
599 extern bool
600 print_inet_addr(int af, const void *addr, unsigned int len, const char *var_name);
601 extern bool
602 decode_inet_addr(struct tcb *, kernel_ulong_t addr,
603                  unsigned int len, int family, const char *var_name);
604 extern const char *get_sockaddr_by_inode(struct tcb *, int fd, unsigned long inode);
605 extern bool print_sockaddr_by_inode(struct tcb *, int fd, unsigned long inode);
606 extern void print_dirfd(struct tcb *, int);
607
608 extern int
609 decode_sockaddr(struct tcb *, kernel_ulong_t addr, int addrlen);
610
611 extern void printuid(const char *, const unsigned int);
612
613 extern void
614 print_sigset_addr_len(struct tcb *, kernel_ulong_t addr, kernel_ulong_t len);
615 extern void
616 print_sigset_addr(struct tcb *, kernel_ulong_t addr);
617
618 extern const char *sprintsigmask_n(const char *, const void *, unsigned int);
619 #define tprintsigmask_addr(prefix, mask) \
620         tprints(sprintsigmask_n((prefix), (mask), sizeof(mask)))
621 extern void printsignal(int);
622
623 extern void
624 tprint_iov_upto(struct tcb *, kernel_ulong_t len, kernel_ulong_t addr,
625                 enum iov_decode, kernel_ulong_t data_size);
626
627 extern void
628 decode_netlink(struct tcb *, int fd, kernel_ulong_t addr, kernel_ulong_t len);
629
630 extern void tprint_open_modes(unsigned int);
631 extern const char *sprint_open_modes(unsigned int);
632
633 extern void
634 decode_seccomp_fprog(struct tcb *, kernel_ulong_t addr);
635
636 extern void
637 print_seccomp_fprog(struct tcb *, kernel_ulong_t addr, unsigned short len);
638
639 extern void
640 decode_sock_fprog(struct tcb *, kernel_ulong_t addr);
641
642 extern void
643 print_sock_fprog(struct tcb *, kernel_ulong_t addr, unsigned short len);
644
645 struct strace_stat;
646 extern void print_struct_stat(struct tcb *, const struct strace_stat *const st);
647
648 struct strace_statfs;
649 struct strace_keyctl_kdf_params;
650
651 extern void
652 print_struct_statfs(struct tcb *, kernel_ulong_t addr);
653
654 extern void
655 print_struct_statfs64(struct tcb *, kernel_ulong_t addr, kernel_ulong_t size);
656
657 extern void print_ifindex(unsigned int);
658
659 extern void qualify(const char *);
660 extern unsigned int qual_flags(const unsigned int);
661
662 #define DECL_IOCTL(name)                                                \
663 extern int                                                              \
664 name ## _ioctl(struct tcb *, unsigned int request, kernel_ulong_t arg)  \
665 /* End of DECL_IOCTL definition. */
666
667 DECL_IOCTL(dm);
668 DECL_IOCTL(file);
669 DECL_IOCTL(fs_x);
670 DECL_IOCTL(nsfs);
671 DECL_IOCTL(ptp);
672 DECL_IOCTL(scsi);
673 DECL_IOCTL(term);
674 DECL_IOCTL(ubi);
675 DECL_IOCTL(uffdio);
676 #undef DECL_IOCTL
677
678 extern int decode_sg_io_v4(struct tcb *, const kernel_ulong_t arg);
679
680 struct nlmsghdr;
681
682 typedef bool (*netlink_decoder_t)(struct tcb *, const struct nlmsghdr *,
683                                   kernel_ulong_t addr, unsigned int len);
684
685 #define DECL_NETLINK(name)                                              \
686 extern bool                                                             \
687 decode_netlink_ ## name(struct tcb *, const struct nlmsghdr *,          \
688                         kernel_ulong_t addr, unsigned int len)          \
689 /* End of DECL_NETLINK definition. */
690
691 DECL_NETLINK(crypto);
692 DECL_NETLINK(route);
693 DECL_NETLINK(selinux);
694 DECL_NETLINK(sock_diag);
695
696 extern int tv_nz(const struct timeval *);
697 extern int tv_cmp(const struct timeval *, const struct timeval *);
698 extern double tv_float(const struct timeval *);
699 extern void tv_add(struct timeval *, const struct timeval *, const struct timeval *);
700 extern void tv_sub(struct timeval *, const struct timeval *, const struct timeval *);
701 extern void tv_mul(struct timeval *, const struct timeval *, int);
702 extern void tv_div(struct timeval *, const struct timeval *, int);
703
704 #ifdef USE_LIBUNWIND
705 extern void unwind_init(void);
706 extern void unwind_tcb_init(struct tcb *);
707 extern void unwind_tcb_fin(struct tcb *);
708 extern void unwind_cache_invalidate(struct tcb *);
709 extern void unwind_print_stacktrace(struct tcb *);
710 extern void unwind_capture_stacktrace(struct tcb *);
711 #endif
712
713 static inline void
714 printstrn(struct tcb *tcp, kernel_ulong_t addr, kernel_ulong_t len)
715 {
716         printstr_ex(tcp, addr, len, 0);
717 }
718
719 static inline void
720 printstr(struct tcb *tcp, kernel_ulong_t addr)
721 {
722         printstr_ex(tcp, addr, -1, QUOTE_0_TERMINATED);
723 }
724
725 static inline int
726 printflags64(const struct xlat *x, uint64_t flags, const char *dflt)
727 {
728         return printflags_ex(flags, dflt, x, NULL);
729 }
730
731 static inline int
732 printflags(const struct xlat *x, unsigned int flags, const char *dflt)
733 {
734         return printflags64(x, flags, dflt);
735 }
736
737 static inline int
738 printxval64(const struct xlat *x, const uint64_t val, const char *dflt)
739 {
740         return printxvals(val, dflt, x, NULL);
741 }
742
743 static inline int
744 printxval(const struct xlat *x, const unsigned int val, const char *dflt)
745 {
746         return printxvals(val, dflt, x, NULL);
747 }
748
749 static inline void
750 tprint_iov(struct tcb *tcp, kernel_ulong_t len, kernel_ulong_t addr,
751            enum iov_decode decode_iov)
752 {
753         tprint_iov_upto(tcp, len, addr, decode_iov, -1);
754 }
755
756 #ifdef ALPHA
757 typedef struct {
758         int tv_sec, tv_usec;
759 } timeval32_t;
760
761 extern void print_timeval32_t(const timeval32_t *);
762 extern void printrusage32(struct tcb *, kernel_ulong_t);
763 extern const char *sprint_timeval32(struct tcb *, kernel_ulong_t addr);
764 extern void print_timeval32(struct tcb *, kernel_ulong_t addr);
765 extern void print_timeval32_utimes(struct tcb *, kernel_ulong_t addr);
766 extern void print_itimerval32(struct tcb *, kernel_ulong_t addr);
767 #endif
768
769 #ifdef HAVE_STRUCT_USER_DESC
770 extern void print_user_desc(struct tcb *, kernel_ulong_t addr);
771 #endif
772
773 /* Strace log generation machinery.
774  *
775  * printing_tcp: tcb which has incomplete line being printed right now.
776  * NULL if last line has been completed ('\n'-terminated).
777  * printleader(tcp) examines it, finishes incomplete line if needed,
778  * the sets it to tcp.
779  * line_ended() clears printing_tcp and resets ->curcol = 0.
780  * tcp->curcol == 0 check is also used to detect completeness
781  * of last line, since in -ff mode just checking printing_tcp for NULL
782  * is not enough.
783  *
784  * If you change this code, test log generation in both -f and -ff modes
785  * using:
786  * strace -oLOG -f[f] test/threaded_execve
787  * strace -oLOG -f[f] test/sigkill_rain
788  * strace -oLOG -f[f] -p "`pidof web_browser`"
789  */
790 extern struct tcb *printing_tcp;
791 extern void printleader(struct tcb *);
792 extern void line_ended(void);
793 extern void tabto(void);
794 extern void tprintf(const char *fmt, ...) ATTRIBUTE_FORMAT((printf, 1, 2));
795 extern void tprints(const char *str);
796 extern void tprintf_comment(const char *fmt, ...) ATTRIBUTE_FORMAT((printf, 1, 2));
797 extern void tprints_comment(const char *str);
798
799 #if SUPPORTED_PERSONALITIES > 1
800 extern void set_personality(int personality);
801 extern unsigned current_personality;
802 #else
803 # define set_personality(personality) ((void)0)
804 # define current_personality 0
805 #endif
806
807 #if SUPPORTED_PERSONALITIES == 1
808 # define current_wordsize PERSONALITY0_WORDSIZE
809 # define current_klongsize PERSONALITY0_KLONGSIZE
810 #else
811 # if SUPPORTED_PERSONALITIES == 2 && PERSONALITY0_WORDSIZE == PERSONALITY1_WORDSIZE
812 #  define current_wordsize PERSONALITY0_WORDSIZE
813 # else
814 extern unsigned current_wordsize;
815 # endif
816 # if SUPPORTED_PERSONALITIES == 2 && PERSONALITY0_KLONGSIZE == PERSONALITY1_KLONGSIZE
817 #  define current_klongsize PERSONALITY0_KLONGSIZE
818 # else
819 extern unsigned current_klongsize;
820 # endif
821 #endif
822
823 #define ANY_WORDSIZE_LESS_THAN_KERNEL_LONG      \
824         (SIZEOF_KERNEL_LONG_T > 4               \
825          && (SIZEOF_LONG < SIZEOF_KERNEL_LONG_T || !defined(current_wordsize)))
826
827 #define DECL_PRINTNUM(name)                                             \
828 extern bool                                                             \
829 printnum_ ## name(struct tcb *, kernel_ulong_t addr, const char *fmt)   \
830         ATTRIBUTE_FORMAT((printf, 3, 0))                                \
831 /* End of DECL_PRINTNUM definition. */
832
833 DECL_PRINTNUM(short);
834 DECL_PRINTNUM(int);
835 DECL_PRINTNUM(int64);
836 #undef DECL_PRINTNUM
837
838 #define DECL_PRINTNUM_ADDR(name)                                        \
839 extern bool                                                             \
840 printnum_addr_ ## name(struct tcb *, kernel_ulong_t addr)               \
841 /* End of DECL_PRINTNUM_ADDR definition. */
842
843 DECL_PRINTNUM_ADDR(int);
844 DECL_PRINTNUM_ADDR(int64);
845 #undef DECL_PRINTNUM_ADDR
846
847 #ifndef current_wordsize
848 extern bool
849 printnum_long_int(struct tcb *, kernel_ulong_t addr,
850                   const char *fmt_long, const char *fmt_int)
851         ATTRIBUTE_FORMAT((printf, 3, 0))
852         ATTRIBUTE_FORMAT((printf, 4, 0));
853 extern bool printnum_addr_long_int(struct tcb *, kernel_ulong_t addr);
854 # define printnum_slong(tcp, addr) \
855         printnum_long_int((tcp), (addr), "%" PRId64, "%d")
856 # define printnum_ulong(tcp, addr) \
857         printnum_long_int((tcp), (addr), "%" PRIu64, "%u")
858 # define printnum_ptr(tcp, addr) \
859         printnum_addr_long_int((tcp), (addr))
860 #elif current_wordsize > 4
861 # define printnum_slong(tcp, addr) \
862         printnum_int64((tcp), (addr), "%" PRId64)
863 # define printnum_ulong(tcp, addr) \
864         printnum_int64((tcp), (addr), "%" PRIu64)
865 # define printnum_ptr(tcp, addr) \
866         printnum_addr_int64((tcp), (addr))
867 #else /* current_wordsize == 4 */
868 # define printnum_slong(tcp, addr) \
869         printnum_int((tcp), (addr), "%d")
870 # define printnum_ulong(tcp, addr) \
871         printnum_int((tcp), (addr), "%u")
872 # define printnum_ptr(tcp, addr) \
873         printnum_addr_int((tcp), (addr))
874 #endif
875
876 #ifndef current_klongsize
877 extern bool printnum_addr_klong_int(struct tcb *, kernel_ulong_t addr);
878 # define printnum_kptr(tcp, addr) \
879         printnum_addr_klong_int((tcp), (addr))
880 #elif current_klongsize > 4
881 # define printnum_kptr(tcp, addr) \
882         printnum_addr_int64((tcp), (addr))
883 #else /* current_klongsize == 4 */
884 # define printnum_kptr(tcp, addr) \
885         printnum_addr_int((tcp), (addr))
886 #endif
887
888 #define DECL_PRINTPAIR(name)                                            \
889 extern bool                                                             \
890 printpair_ ## name(struct tcb *, kernel_ulong_t addr, const char *fmt)  \
891         ATTRIBUTE_FORMAT((printf, 3, 0))                                \
892 /* End of DECL_PRINTPAIR definition. */
893
894 DECL_PRINTPAIR(int);
895 DECL_PRINTPAIR(int64);
896 #undef DECL_PRINTPAIR
897
898 static inline kernel_long_t
899 truncate_klong_to_current_wordsize(const kernel_long_t v)
900 {
901 #if ANY_WORDSIZE_LESS_THAN_KERNEL_LONG
902         if (current_wordsize < sizeof(v)) {
903                 return (int) v;
904         } else
905 #endif
906         {
907                 return v;
908         }
909 }
910
911 static inline kernel_ulong_t
912 truncate_kulong_to_current_wordsize(const kernel_ulong_t v)
913 {
914 #if ANY_WORDSIZE_LESS_THAN_KERNEL_LONG
915         if (current_wordsize < sizeof(v)) {
916                 return (unsigned int) v;
917         } else
918 #endif
919         {
920                 return v;
921         }
922 }
923
924 /*
925  * Cast a pointer or a pointer-sized integer to kernel_ulong_t.
926  */
927 #define ptr_to_kulong(v) ((kernel_ulong_t) (unsigned long) (v))
928
929 /*
930  * Zero-extend a signed integer type to unsigned long long.
931  */
932 #define zero_extend_signed_to_ull(v) \
933         (sizeof(v) == sizeof(char) ? (unsigned long long) (unsigned char) (v) : \
934          sizeof(v) == sizeof(short) ? (unsigned long long) (unsigned short) (v) : \
935          sizeof(v) == sizeof(int) ? (unsigned long long) (unsigned int) (v) : \
936          sizeof(v) == sizeof(long) ? (unsigned long long) (unsigned long) (v) : \
937          (unsigned long long) (v))
938
939 /*
940  * Sign-extend an unsigned integer type to long long.
941  */
942 #define sign_extend_unsigned_to_ll(v) \
943         (sizeof(v) == sizeof(char) ? (long long) (char) (v) : \
944          sizeof(v) == sizeof(short) ? (long long) (short) (v) : \
945          sizeof(v) == sizeof(int) ? (long long) (int) (v) : \
946          sizeof(v) == sizeof(long) ? (long long) (long) (v) : \
947          (long long) (v))
948
949 extern const struct_sysent sysent0[];
950 extern const char *const errnoent0[];
951 extern const char *const signalent0[];
952 extern const struct_ioctlent ioctlent0[];
953
954 #if SUPPORTED_PERSONALITIES > 1
955 extern const struct_sysent *sysent;
956 extern const char *const *errnoent;
957 extern const char *const *signalent;
958 extern const struct_ioctlent *ioctlent;
959 #else
960 # define sysent     sysent0
961 # define errnoent   errnoent0
962 # define signalent  signalent0
963 # define ioctlent   ioctlent0
964 #endif
965
966 extern unsigned nsyscalls;
967 extern unsigned nerrnos;
968 extern unsigned nsignals;
969 extern unsigned nioctlents;
970
971 extern const unsigned int nsyscall_vec[SUPPORTED_PERSONALITIES];
972 extern const struct_sysent *const sysent_vec[SUPPORTED_PERSONALITIES];
973 extern struct inject_opts *inject_vec[SUPPORTED_PERSONALITIES];
974
975 #ifdef IN_MPERS_BOOTSTRAP
976 /* Transform multi-line MPERS_PRINTER_DECL statements to one-liners.  */
977 # define MPERS_PRINTER_DECL(type, name, ...) MPERS_PRINTER_DECL(type, name, __VA_ARGS__)
978 #else /* !IN_MPERS_BOOTSTRAP */
979 # if SUPPORTED_PERSONALITIES > 1
980 #  include "printers.h"
981 # else
982 #  include "native_printer_decls.h"
983 # endif
984 # define MPERS_PRINTER_DECL(type, name, ...) type MPERS_FUNC_NAME(name)(__VA_ARGS__)
985 #endif /* !IN_MPERS_BOOTSTRAP */
986
987 /* Checks that sysent[scno] is not out of range. */
988 static inline bool
989 scno_in_range(kernel_ulong_t scno)
990 {
991         return scno < nsyscalls;
992 }
993
994 /*
995  * Checks whether scno is not out of range,
996  * its corresponding sysent[scno].sys_func is non-NULL,
997  * and its sysent[scno].sys_flags has no TRACE_INDIRECT_SUBCALL flag set.
998  */
999 static inline bool
1000 scno_is_valid(kernel_ulong_t scno)
1001 {
1002         return scno_in_range(scno)
1003                && sysent[scno].sys_func
1004                && !(sysent[scno].sys_flags & TRACE_INDIRECT_SUBCALL);
1005 }
1006
1007 #define MPERS_FUNC_NAME__(prefix, name) prefix ## name
1008 #define MPERS_FUNC_NAME_(prefix, name) MPERS_FUNC_NAME__(prefix, name)
1009 #define MPERS_FUNC_NAME(name) MPERS_FUNC_NAME_(MPERS_PREFIX, name)
1010
1011 #define SYS_FUNC_NAME(syscall_name) MPERS_FUNC_NAME(syscall_name)
1012
1013 #define SYS_FUNC(syscall_name) int SYS_FUNC_NAME(sys_ ## syscall_name)(struct tcb *tcp)
1014
1015 #endif /* !STRACE_DEFS_H */