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