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