blob: 5ba95f53d788952a0060c3a0d32f13813b4da3c6 [file] [log] [blame]
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001/*
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>
Elliott Hughesb7556142018-02-20 17:03:16 -08005 * Copyright (c) 2001-2018 The strace developers.
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00006 * 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.
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000029 */
30
Eugene Syromyatnikov18907922016-08-07 06:44:19 +030031#ifndef STRACE_DEFS_H
32#define STRACE_DEFS_H
33
Roland McGrath795edb12005-02-02 04:44:57 +000034#ifdef HAVE_CONFIG_H
Denys Vlasenko329655a2012-02-25 02:42:32 +010035# include "config.h"
Roland McGrath795edb12005-02-02 04:44:57 +000036#endif
Dmitry V. Levin2690fad2013-05-07 08:03:41 +000037
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +010038#include <features.h>
Dmitry V. Levin39888f92016-08-28 00:03:14 +000039#include <stdbool.h>
Denys Vlasenkoa6d91de2012-03-16 12:02:22 +010040#include <stdint.h>
41#include <inttypes.h>
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +010042#include <sys/types.h>
Dmitry V. Levin7082acc2016-10-04 00:13:09 +000043#include <stddef.h>
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +010044#include <unistd.h>
45#include <stdlib.h>
46#include <stdio.h>
Denys Vlasenko5198ed42013-03-06 23:44:23 +010047/* 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> */
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +010051#include <string.h>
Denys Vlasenkoa6d91de2012-03-16 12:02:22 +010052#include <errno.h>
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +010053#include <time.h>
54#include <sys/time.h>
Roland McGrathe6d3a292003-01-14 09:46:18 +000055
Elliott Hughesb7556142018-02-20 17:03:16 -080056#include "arch_defs.h"
Elliott Hughes77c3ff82017-09-08 17:11:00 -070057#include "error_prints.h"
Dmitry V. Levinf32126b2015-12-31 14:19:41 +000058#include "gcc_compat.h"
Elliott Hughes77c3ff82017-09-08 17:11:00 -070059#include "kernel_types.h"
Elliott Hughesdc75b012017-07-05 13:54:44 -070060#include "macros.h"
61#include "mpers_type.h"
Elliott Hughes77c3ff82017-09-08 17:11:00 -070062#include "string_to_uint.h"
Elliott Hughesd35df492017-02-15 15:19:05 -080063#include "sysent.h"
Elliott Hughes77c3ff82017-09-08 17:11:00 -070064#include "xmalloc.h"
Elvira Khabirova09294222015-08-04 01:47:02 +030065
Denys Vlasenko29898142012-03-15 15:02:49 +010066#ifndef HAVE_STRERROR
67const char *strerror(int);
68#endif
Denys Vlasenko29898142012-03-15 15:02:49 +010069#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
75extern char *stpcpy(char *dst, const char *src);
76#endif
77
Denys Vlasenkoe4cc7c52012-03-23 11:29:01 +010078/* Glibc has an efficient macro for sigemptyset
79 * (it just does one or two assignments of 0 to internal vector of longs).
80 */
81#if defined(__GLIBC__) && defined(__sigemptyset) && !defined(sigemptyset)
82# define sigemptyset __sigemptyset
83#endif
84
Denys Vlasenkod9560c12011-08-19 17:41:28 +020085/* Configuration section */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000086#ifndef DEFAULT_STRLEN
Denys Vlasenko041b3ee2011-08-18 12:48:56 +020087/* default maximum # of bytes printed in `printstr', change with -s switch */
Denys Vlasenko329655a2012-02-25 02:42:32 +010088# define DEFAULT_STRLEN 32
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000089#endif
90#ifndef DEFAULT_ACOLUMN
Denys Vlasenko329655a2012-02-25 02:42:32 +010091# define DEFAULT_ACOLUMN 40 /* default alignment column for results */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000092#endif
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +010093/*
94 * Maximum number of args to a syscall.
Denys Vlasenkod9560c12011-08-19 17:41:28 +020095 *
Denys Vlasenkoaa925db2012-02-25 15:19:02 +010096 * Make sure that all entries in all syscallent.h files have nargs <= MAX_ARGS!
Dmitry V. Levin2690fad2013-05-07 08:03:41 +000097 * linux/<ARCH>/syscallent*.h:
Elliott Hughesdc75b012017-07-05 13:54:44 -070098 * all have nargs <= 6 except mips o32 which has nargs <= 7.
Denys Vlasenkod9560c12011-08-19 17:41:28 +020099 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000100#ifndef MAX_ARGS
Dmitry V. Levin2690fad2013-05-07 08:03:41 +0000101# ifdef LINUX_MIPSO32
102# define MAX_ARGS 7
103# else
104# define MAX_ARGS 6
105# endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000106#endif
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +0100107/* default sorting method for call profiling */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000108#ifndef DEFAULT_SORTBY
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +0100109# define DEFAULT_SORTBY "time"
John Hughes58265892001-10-18 15:13:53 +0000110#endif
Elliott Hughes28e98bc2018-06-14 16:59:04 -0700111
Denys Vlasenko05f32512013-02-26 12:00:34 +0100112/* To force NOMMU build, set to 1 */
Denys Vlasenko5c9d8f42013-02-19 15:30:12 +0100113#define NOMMU_SYSTEM 0
114
Denys Vlasenko47932212013-06-30 23:53:49 +0200115#ifndef ERESTARTSYS
116# define ERESTARTSYS 512
117#endif
118#ifndef ERESTARTNOINTR
119# define ERESTARTNOINTR 513
120#endif
121#ifndef ERESTARTNOHAND
122# define ERESTARTNOHAND 514
123#endif
124#ifndef ERESTART_RESTARTBLOCK
125# define ERESTART_RESTARTBLOCK 516
126#endif
127
Elliott Hughesd35df492017-02-15 15:19:05 -0800128#define PERSONALITY0_WORDSIZE SIZEOF_LONG
129#define PERSONALITY0_KLONGSIZE SIZEOF_KERNEL_LONG_T
Dmitry V. Levin90a65a42016-08-08 21:11:47 +0000130#define PERSONALITY0_INCLUDE_PRINTERS_DECLS "native_printer_decls.h"
131#define PERSONALITY0_INCLUDE_PRINTERS_DEFS "native_printer_defs.h"
Elvira Khabirova09294222015-08-04 01:47:02 +0300132
Dmitry V. Levinabfc0a62016-08-08 21:52:05 +0000133#if SUPPORTED_PERSONALITIES > 1
Elliott Hughesd35df492017-02-15 15:19:05 -0800134# define PERSONALITY1_WORDSIZE 4
135# define PERSONALITY1_KLONGSIZE PERSONALITY1_WORDSIZE
Dmitry V. Levinabfc0a62016-08-08 21:52:05 +0000136#endif
137
Elliott Hughes77c3ff82017-09-08 17:11:00 -0700138#if SUPPORTED_PERSONALITIES > 2
139# define PERSONALITY2_WORDSIZE 4
140# define PERSONALITY2_KLONGSIZE PERSONALITY0_KLONGSIZE
141#endif
142
Dmitry V. Levin90a65a42016-08-08 21:11:47 +0000143#if SUPPORTED_PERSONALITIES > 1 && defined HAVE_M32_MPERS
144# define PERSONALITY1_INCLUDE_PRINTERS_DECLS "m32_printer_decls.h"
145# define PERSONALITY1_INCLUDE_PRINTERS_DEFS "m32_printer_defs.h"
146# define PERSONALITY1_INCLUDE_FUNCS "m32_funcs.h"
147# define MPERS_m32_IOCTL_MACROS "ioctl_redefs1.h"
Elliott Hughesb7556142018-02-20 17:03:16 -0800148# define HAVE_PERSONALITY_1_MPERS 1
Dmitry V. Levin90a65a42016-08-08 21:11:47 +0000149#else
Elvira Khabirova09294222015-08-04 01:47:02 +0300150# define PERSONALITY1_INCLUDE_PRINTERS_DECLS "native_printer_decls.h"
Elvira Khabirova09294222015-08-04 01:47:02 +0300151# define PERSONALITY1_INCLUDE_PRINTERS_DEFS "native_printer_defs.h"
Elvira Khabirova09294222015-08-04 01:47:02 +0300152# define PERSONALITY1_INCLUDE_FUNCS "empty.h"
Elliott Hughesb7556142018-02-20 17:03:16 -0800153# define HAVE_PERSONALITY_1_MPERS 0
Elvira Khabirova09294222015-08-04 01:47:02 +0300154#endif
Dmitry V. Levin90a65a42016-08-08 21:11:47 +0000155
156#if SUPPORTED_PERSONALITIES > 2 && defined HAVE_MX32_MPERS
157# define PERSONALITY2_INCLUDE_FUNCS "mx32_funcs.h"
158# define PERSONALITY2_INCLUDE_PRINTERS_DECLS "mx32_printer_decls.h"
159# define PERSONALITY2_INCLUDE_PRINTERS_DEFS "mx32_printer_defs.h"
160# define MPERS_mx32_IOCTL_MACROS "ioctl_redefs2.h"
Elliott Hughesb7556142018-02-20 17:03:16 -0800161# define HAVE_PERSONALITY_2_MPERS 1
Dmitry V. Levin90a65a42016-08-08 21:11:47 +0000162#else
163# define PERSONALITY2_INCLUDE_PRINTERS_DECLS "native_printer_decls.h"
164# define PERSONALITY2_INCLUDE_PRINTERS_DEFS "native_printer_defs.h"
Elvira Khabirova09294222015-08-04 01:47:02 +0300165# define PERSONALITY2_INCLUDE_FUNCS "empty.h"
Elliott Hughesb7556142018-02-20 17:03:16 -0800166# define HAVE_PERSONALITY_2_MPERS 0
Elvira Khabirova09294222015-08-04 01:47:02 +0300167#endif
168
Elliott Hughes03a418e2018-06-15 13:11:40 -0700169#ifdef WORDS_BIGENDIAN
170# define is_bigendian true
171#else
172# define is_bigendian false
173#endif
174
Denys Vlasenkoa9fe13c2013-02-22 13:26:10 +0100175typedef struct ioctlent {
Denys Vlasenko74ec14f2013-02-21 16:13:47 +0100176 const char *symbol;
Dmitry V. Levinc7afb482015-01-19 18:44:21 +0000177 unsigned int code;
Denys Vlasenkoa9fe13c2013-02-22 13:26:10 +0100178} struct_ioctlent;
Denys Vlasenko74ec14f2013-02-21 16:13:47 +0100179
Elliott Hughes28e98bc2018-06-14 16:59:04 -0700180#define INJECT_F_SIGNAL 0x01
181#define INJECT_F_ERROR 0x02
182#define INJECT_F_RETVAL 0x04
183#define INJECT_F_DELAY_ENTER 0x08
184#define INJECT_F_DELAY_EXIT 0x10
Elliott Hughes03a418e2018-06-15 13:11:40 -0700185#define INJECT_F_SYSCALL 0x20
186
187#define INJECT_ACTION_FLAGS \
188 (INJECT_F_SIGNAL \
189 |INJECT_F_ERROR \
190 |INJECT_F_RETVAL \
191 |INJECT_F_DELAY_ENTER \
192 |INJECT_F_DELAY_EXIT \
193 )
Elliott Hughes77c3ff82017-09-08 17:11:00 -0700194
195struct inject_data {
Elliott Hughes03a418e2018-06-15 13:11:40 -0700196 uint8_t flags; /* 6 of 8 flags are used so far */
Elliott Hughes28e98bc2018-06-14 16:59:04 -0700197 uint8_t signo; /* NSIG <= 128 */
198 uint16_t rval_idx; /* index in retval_vec */
199 uint16_t delay_idx; /* index in delay_data_vec */
Elliott Hughes03a418e2018-06-15 13:11:40 -0700200 uint16_t scno; /* syscall to be injected instead of -1 */
Elliott Hughesd35df492017-02-15 15:19:05 -0800201};
202
Elliott Hughes77c3ff82017-09-08 17:11:00 -0700203struct inject_opts {
204 uint16_t first;
205 uint16_t step;
206 struct inject_data data;
207};
208
Elliott Hughesd35df492017-02-15 15:19:05 -0800209#define MAX_ERRNO_VALUE 4095
Dmitry V. Levinb0c51132016-06-17 16:12:13 +0000210
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000211/* Trace Control Block */
212struct tcb {
Denys Vlasenkod9ec1412011-08-20 01:39:05 +0200213 int flags; /* See below for TCB_ values */
Denys Vlasenkofadbf662013-06-26 14:14:29 +0200214 int pid; /* If 0, this tcb is free */
Denys Vlasenko74ec14f2013-02-21 16:13:47 +0100215 int qual_flg; /* qual_flags[scno] or DEFAULT_QUAL_FLAGS + RAW */
Dmitry V. Levinba63d8a2016-10-03 11:48:55 +0000216 unsigned long u_error; /* Error code */
Elliott Hughesd35df492017-02-15 15:19:05 -0800217 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 */
Dmitry V. Levina5a839a2011-12-23 00:50:49 +0000220#if SUPPORTED_PERSONALITIES > 1
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +0000221 unsigned int currpers; /* Personality at the time of scno update */
Dmitry V. Levina5a839a2011-12-23 00:50:49 +0000222#endif
Dmitry V. Levin204c2bc2015-07-08 14:10:56 +0000223 int sys_func_rval; /* Syscall entry parser's return value */
Andreas Schwabccdff482009-10-27 16:27:13 +0100224 int curcol; /* Output column for this process */
Denys Vlasenko92d443c2011-08-25 00:25:08 +0200225 FILE *outf; /* Output file for this process */
Wichert Akkerman43a74822000-06-27 17:33:32 +0000226 const char *auxstr; /* Auxiliary info from syscall (see RVAL_STR) */
Patrik Jakobssona1546a92015-08-24 14:42:47 +0200227 void *_priv_data; /* Private data for syscall decoding functions */
228 void (*_free_priv_data)(void *); /* Callback for freeing priv_data */
Denys Vlasenkoa9fe13c2013-02-22 13:26:10 +0100229 const struct_sysent *s_ent; /* sysent[scno] or dummy struct for bad scno */
Denys Vlasenko8497b622015-03-21 17:51:52 +0100230 const struct_sysent *s_prev_ent; /* for "resuming interrupted SYSCALL" msg */
Elliott Hughesd35df492017-02-15 15:19:05 -0800231 struct inject_opts *inject_vec[SUPPORTED_PERSONALITIES];
Elliott Hughes28e98bc2018-06-14 16:59:04 -0700232 struct timespec stime; /* System time usage as of last process wait */
233 struct timespec dtime; /* Delta for system time usage */
234 struct timespec etime; /* Syscall entry time */
235 struct timespec delay_expiration_time; /* When does the delay end */
Luca Clementi327064b2013-07-23 00:11:35 -0700236
Elliott Hughesdc75b012017-07-05 13:54:44 -0700237 struct mmap_cache_t *mmap_cache;
Elliott Hughes28e98bc2018-06-14 16:59:04 -0700238
Elliott Hughesc1873762018-12-19 15:13:36 -0800239#ifdef HAVE_LINUX_KVM_H
240 struct vcpu_info *vcpu_info_list;
241#endif
242
Elliott Hughes03a418e2018-06-15 13:11:40 -0700243#ifdef ENABLE_STACKTRACE
Elliott Hughes28e98bc2018-06-14 16:59:04 -0700244 void *unwind_ctx;
245 struct unwind_queue_t *unwind_queue;
Luca Clementi327064b2013-07-23 00:11:35 -0700246#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000247};
248
249/* TCB flags */
Denys Vlasenko68269aa2012-03-15 13:02:31 +0100250/* We have attached to this process, but did not see it stopping yet */
Denys Vlasenkofadbf662013-06-26 14:14:29 +0200251#define TCB_STARTUP 0x01
252#define TCB_IGNORE_ONE_SIGSTOP 0x02 /* Next SIGSTOP is to be ignored */
Denys Vlasenkob88f9612011-08-21 18:03:23 +0200253/*
254 * Are we in system call entry or in syscall exit?
255 *
Elliott Hughesdc75b012017-07-05 13:54:44 -0700256 * This bit is set in syscall_entering_finish() and cleared in
257 * syscall_exiting_finish().
258 * Other stops which are possible directly after syscall entry (death, ptrace
259 * event stop) are handled without calling syscall_{entering,exiting}_*().
Denys Vlasenkob88f9612011-08-21 18:03:23 +0200260 *
Elliott Hughesdc75b012017-07-05 13:54:44 -0700261 * Use entering(tcp) / exiting(tcp) to check this bit to make code more
262 * readable.
Denys Vlasenkob88f9612011-08-21 18:03:23 +0200263 */
Denys Vlasenkofadbf662013-06-26 14:14:29 +0200264#define TCB_INSYSCALL 0x04
265#define TCB_ATTACHED 0x08 /* We attached to it already */
Dmitry V. Levin23ce9e42015-02-08 13:05:53 +0000266#define TCB_REPRINT 0x10 /* We should reprint this syscall on exit */
267#define TCB_FILTERED 0x20 /* This system call has been filtered out */
Elliott Hughesd35df492017-02-15 15:19:05 -0800268#define TCB_TAMPERED 0x40 /* A syscall has been tampered with */
269#define TCB_HIDE_LOG 0x80 /* We should hide everything (until execve) */
270#define TCB_SKIP_DETACH_ON_FIRST_EXEC 0x100 /* -b execve should skip detach on first execve */
Elliott Hughesb7556142018-02-20 17:03:16 -0800271#define TCB_GRABBED 0x200 /* We grab the process and can catch it
272 * in the middle of a syscall */
273#define TCB_RECOVERING 0x400 /* We try to recover after detecting incorrect
274 * syscall entering/exiting state */
Elliott Hughes28e98bc2018-06-14 16:59:04 -0700275#define TCB_INJECT_DELAY_EXIT 0x800 /* Current syscall needs to be delayed
276 on exit */
277#define TCB_DELAYED 0x1000 /* Current syscall has been delayed */
Elliott Hughes03a418e2018-06-15 13:11:40 -0700278#define TCB_TAMPERED_NO_FAIL 0x2000 /* We tamper tcb with syscall
279 that should not fail. */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000280
281/* qualifier flags */
Denys Vlasenko74ec14f2013-02-21 16:13:47 +0100282#define QUAL_TRACE 0x001 /* this system call should be traced */
283#define QUAL_ABBREV 0x002 /* abbreviate the structures of this syscall */
284#define QUAL_VERBOSE 0x004 /* decode the structures of this syscall */
285#define QUAL_RAW 0x008 /* print all args in hex for this syscall */
Elliott Hughesd35df492017-02-15 15:19:05 -0800286#define QUAL_INJECT 0x010 /* tamper with this system call on purpose */
Denys Vlasenko74ec14f2013-02-21 16:13:47 +0100287
288#define DEFAULT_QUAL_FLAGS (QUAL_TRACE | QUAL_ABBREV | QUAL_VERBOSE)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000289
290#define entering(tcp) (!((tcp)->flags & TCB_INSYSCALL))
291#define exiting(tcp) ((tcp)->flags & TCB_INSYSCALL)
292#define syserror(tcp) ((tcp)->u_error != 0)
Elliott Hughes77c3ff82017-09-08 17:11:00 -0700293#define traced(tcp) ((tcp)->qual_flg & QUAL_TRACE)
Denys Vlasenko40d63b92013-02-22 13:23:38 +0100294#define verbose(tcp) ((tcp)->qual_flg & QUAL_VERBOSE)
295#define abbrev(tcp) ((tcp)->qual_flg & QUAL_ABBREV)
Elliott Hughes77c3ff82017-09-08 17:11:00 -0700296#define raw(tcp) ((tcp)->qual_flg & QUAL_RAW)
297#define inject(tcp) ((tcp)->qual_flg & QUAL_INJECT)
Grant Edwards8a082772011-04-07 20:25:40 +0000298#define filtered(tcp) ((tcp)->flags & TCB_FILTERED)
Elliott Hughesd35df492017-02-15 15:19:05 -0800299#define hide_log(tcp) ((tcp)->flags & TCB_HIDE_LOG)
Elliott Hughesb7556142018-02-20 17:03:16 -0800300#define syscall_tampered(tcp) ((tcp)->flags & TCB_TAMPERED)
301#define recovering(tcp) ((tcp)->flags & TCB_RECOVERING)
Elliott Hughes28e98bc2018-06-14 16:59:04 -0700302#define inject_delay_exit(tcp) ((tcp)->flags & TCB_INJECT_DELAY_EXIT)
303#define syscall_delayed(tcp) ((tcp)->flags & TCB_DELAYED)
Elliott Hughes03a418e2018-06-15 13:11:40 -0700304#define syscall_tampered_nofail(tcp) ((tcp)->flags & TCB_TAMPERED_NO_FAIL)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000305
Dmitry V. Levin0e097042016-04-26 00:08:16 +0000306#include "xlat.h"
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000307
Dmitry V. Levine96aee72016-06-25 13:47:54 +0000308extern const struct xlat addrfams[];
Elliott Hughes03a418e2018-06-15 13:11:40 -0700309
310/** Protocol hardware identifiers array, sorted, defined in sockaddr.c. */
Elliott Hughes77c3ff82017-09-08 17:11:00 -0700311extern const struct xlat arp_hardware_types[];
Elliott Hughes03a418e2018-06-15 13:11:40 -0700312/** Protocol hardware identifiers array size without terminating record. */
313extern const size_t arp_hardware_types_size;
314
Dmitry V. Levin43b110b2014-12-06 03:53:16 +0000315extern const struct xlat at_flags[];
Elliott Hughes39bac052017-05-25 16:56:11 -0700316extern const struct xlat clocknames[];
Dmitry V. Levina367db82015-11-19 18:13:53 +0000317extern const struct xlat dirent_types[];
Elliott Hughes28e98bc2018-06-14 16:59:04 -0700318
Elliott Hughes03a418e2018-06-15 13:11:40 -0700319/** Ethernet protocols list, sorted, defined in sockaddr.c. */
Elliott Hughesdc75b012017-07-05 13:54:44 -0700320extern const struct xlat ethernet_protocols[];
Elliott Hughes28e98bc2018-06-14 16:59:04 -0700321/** Ethernet protocols array size without terminating record. */
322extern const size_t ethernet_protocols_size;
323
Elliott Hughes03a418e2018-06-15 13:11:40 -0700324/** IP protocols list, sorted, defined in net.c. */
Elliott Hughesdc75b012017-07-05 13:54:44 -0700325extern const struct xlat inet_protocols[];
Elliott Hughes03a418e2018-06-15 13:11:40 -0700326/** IP protocols array size without terminating record. */
327extern const size_t inet_protocols_size;
328
329extern const struct xlat evdev_abs[];
330/** Number of elements in evdev_abs array without the terminating record. */
331extern const size_t evdev_abs_size;
332
Elliott Hughesc1873762018-12-19 15:13:36 -0800333extern const struct xlat evdev_ev[];
Elliott Hughes03a418e2018-06-15 13:11:40 -0700334extern const struct xlat iffflags[];
Elliott Hughes77c3ff82017-09-08 17:11:00 -0700335extern const struct xlat ip_type_of_services[];
Elliott Hughes03a418e2018-06-15 13:11:40 -0700336extern const struct xlat ipc_private[];
Dmitry V. Levin95cce4f2016-06-27 00:02:55 +0000337extern const struct xlat msg_flags[];
Elliott Hughes39bac052017-05-25 16:56:11 -0700338extern const struct xlat netlink_protocols[];
Elliott Hughes28e98bc2018-06-14 16:59:04 -0700339extern const struct xlat nl_netfilter_msg_types[];
Elliott Hughes77c3ff82017-09-08 17:11:00 -0700340extern const struct xlat nl_route_types[];
Denys Vlasenkof535b542009-01-13 18:30:55 +0000341extern const struct xlat open_access_modes[];
Dmitry V. Levin43b110b2014-12-06 03:53:16 +0000342extern const struct xlat open_mode_flags[];
Elvira Khabirovac01ad062015-08-19 05:06:26 +0300343extern const struct xlat resource_flags[];
Elliott Hughes77c3ff82017-09-08 17:11:00 -0700344extern const struct xlat routing_scopes[];
345extern const struct xlat routing_table_ids[];
346extern const struct xlat routing_types[];
Elliott Hughes28e98bc2018-06-14 16:59:04 -0700347extern const struct xlat seccomp_filter_flags[];
Elliott Hughesbbf97dc2017-11-15 16:45:52 -0800348extern const struct xlat seccomp_ret_action[];
Elliott Hughes39bac052017-05-25 16:56:11 -0700349extern const struct xlat setns_types[];
Elliott Hughesd35df492017-02-15 15:19:05 -0800350extern const struct xlat sg_io_info[];
Dmitry V. Levin95cce4f2016-06-27 00:02:55 +0000351extern const struct xlat socketlayers[];
Elliott Hughesdc75b012017-07-05 13:54:44 -0700352extern const struct xlat socktypes[];
Elliott Hughes77c3ff82017-09-08 17:11:00 -0700353extern const struct xlat tcp_state_flags[];
354extern const struct xlat tcp_states[];
Denys Vlasenko86738a22013-02-17 14:31:55 +0100355extern const struct xlat whence_codes[];
Denys Vlasenkof535b542009-01-13 18:30:55 +0000356
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000357/* Format of syscall return values */
Elliott Hughes28e98bc2018-06-14 16:59:04 -0700358#define RVAL_UDECIMAL 000 /* unsigned decimal format */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000359#define RVAL_HEX 001 /* hex format */
360#define RVAL_OCTAL 002 /* octal format */
Zubin Mithra64aa1b12014-06-04 08:30:41 +0530361#define RVAL_FD 010 /* file descriptor */
Elliott Hughesd35df492017-02-15 15:19:05 -0800362#define RVAL_MASK 013 /* mask for these values */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000363
Zubin Mithra64aa1b12014-06-04 08:30:41 +0530364#define RVAL_STR 020 /* Print `auxstr' field after return val */
365#define RVAL_NONE 040 /* Print nothing */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000366
Dmitry V. Levin204c2bc2015-07-08 14:10:56 +0000367#define RVAL_DECODED 0100 /* syscall decoding finished */
Elliott Hughes77c3ff82017-09-08 17:11:00 -0700368#define RVAL_IOCTL_DECODED 0200 /* ioctl sub-parser successfully decoded
369 the argument */
Dmitry V. Levin204c2bc2015-07-08 14:10:56 +0000370
Gabriel Laskar8b6046a2015-12-04 01:07:33 +0100371#define IOCTL_NUMBER_UNKNOWN 0
372#define IOCTL_NUMBER_HANDLED 1
373#define IOCTL_NUMBER_STOP_LOOKUP 010
374
Elvira Khabirovac01ad062015-08-19 05:06:26 +0300375#define indirect_ipccall(tcp) (tcp->s_ent->sys_flags & TRACE_INDIRECT_SUBCALL)
376
Fabien Siron802cc282016-06-17 16:29:53 +0000377enum sock_proto {
378 SOCK_PROTO_UNKNOWN,
379 SOCK_PROTO_UNIX,
380 SOCK_PROTO_TCP,
381 SOCK_PROTO_UDP,
Elliott Hughesc1873762018-12-19 15:13:36 -0800382 SOCK_PROTO_UDPLITE,
383 SOCK_PROTO_DCCP,
384 SOCK_PROTO_SCTP,
385 SOCK_PROTO_L2TP_IP,
386 SOCK_PROTO_PING,
387 SOCK_PROTO_RAW,
Fabien Siron802cc282016-06-17 16:29:53 +0000388 SOCK_PROTO_TCPv6,
389 SOCK_PROTO_UDPv6,
Elliott Hughesc1873762018-12-19 15:13:36 -0800390 SOCK_PROTO_UDPLITEv6,
391 SOCK_PROTO_DCCPv6,
392 SOCK_PROTO_L2TP_IPv6,
393 SOCK_PROTO_SCTPv6,
394 SOCK_PROTO_PINGv6,
395 SOCK_PROTO_RAWv6,
396 SOCK_PROTO_NETLINK,
Fabien Siron802cc282016-06-17 16:29:53 +0000397};
398extern enum sock_proto get_proto_by_name(const char *);
Elliott Hughesc1873762018-12-19 15:13:36 -0800399extern int get_family_by_proto(enum sock_proto proto);
Fabien Siron802cc282016-06-17 16:29:53 +0000400
Fabien Siron2a54d8b2016-06-22 13:27:03 +0000401enum iov_decode {
402 IOV_DECODE_ADDR,
Fabien Siron2850f742016-07-06 15:49:22 +0000403 IOV_DECODE_STR,
404 IOV_DECODE_NETLINK
Fabien Siron2a54d8b2016-06-22 13:27:03 +0000405};
406
Dmitry V. Levine3a7ef52010-03-28 19:24:54 +0000407typedef enum {
408 CFLAG_NONE = 0,
409 CFLAG_ONLY_STATS,
410 CFLAG_BOTH
411} cflag_t;
Dmitry V. Levine3a7ef52010-03-28 19:24:54 +0000412extern cflag_t cflag;
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +0100413extern bool Tflag;
Anton Blancharda34dead2013-07-12 12:22:06 +0200414extern bool iflag;
Mark Hillse53bf232014-05-28 17:52:40 +0100415extern bool count_wallclock;
Daniel P. Berrange01997cf2013-05-13 11:30:55 +0100416extern unsigned int qflag;
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +0100417extern bool not_failing_only;
Dmitry V. Levin45e7b182014-08-08 23:38:26 +0000418extern unsigned int show_fd_path;
Denys Vlasenko38cfe7c2013-03-05 16:01:53 +0100419/* are we filtering traces based on paths? */
Elliott Hughes77c3ff82017-09-08 17:11:00 -0700420extern struct path_set {
421 const char **paths_selected;
Elliott Hughesb7556142018-02-20 17:03:16 -0800422 size_t num_selected;
423 size_t size;
Elliott Hughes77c3ff82017-09-08 17:11:00 -0700424} global_path_set;
425#define tracing_paths (global_path_set.num_selected != 0)
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +0100426extern unsigned xflag;
427extern unsigned followfork;
Elliott Hughes03a418e2018-06-15 13:11:40 -0700428#ifdef ENABLE_STACKTRACE
Luca Clementi327064b2013-07-23 00:11:35 -0700429/* if this is true do the stack trace for every system call */
430extern bool stack_trace_enabled;
431#endif
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +0100432extern unsigned ptrace_setoptions;
433extern unsigned max_strlen;
434extern unsigned os_release;
435#undef KERNEL_VERSION
Elliott Hughesdc75b012017-07-05 13:54:44 -0700436#define KERNEL_VERSION(a, b, c) (((a) << 16) + ((b) << 8) + (c))
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +0100437
Elliott Hughesb7556142018-02-20 17:03:16 -0800438extern int read_int_from_file(struct tcb *, const char *, int *);
Dmitry V. Levinbf2698a2016-07-03 22:15:45 +0000439
Dmitry V. Levin30145dd2010-09-06 22:08:24 +0000440extern void set_sortby(const char *);
Andreas Schwabe5355de2009-10-27 16:56:43 +0100441extern void set_overhead(int);
Denys Vlasenko5a2483b2013-07-01 12:49:14 +0200442extern void print_pc(struct tcb *);
Elliott Hughesdc75b012017-07-05 13:54:44 -0700443
444extern int syscall_entering_decode(struct tcb *);
445extern int syscall_entering_trace(struct tcb *, unsigned int *);
446extern void syscall_entering_finish(struct tcb *, int);
447
Elliott Hughes28e98bc2018-06-14 16:59:04 -0700448extern int syscall_exiting_decode(struct tcb *, struct timespec *);
449extern int syscall_exiting_trace(struct tcb *, struct timespec *, int);
Elliott Hughesdc75b012017-07-05 13:54:44 -0700450extern void syscall_exiting_finish(struct tcb *);
451
Elliott Hughes28e98bc2018-06-14 16:59:04 -0700452extern void count_syscall(struct tcb *, const struct timespec *);
Denys Vlasenkod63b0d52012-03-23 11:26:36 +0100453extern void call_summary(FILE *);
454
Elliott Hughesb7556142018-02-20 17:03:16 -0800455extern void clear_regs(struct tcb *tcp);
Elliott Hughes39bac052017-05-25 16:56:11 -0700456extern int get_scno(struct tcb *);
457extern kernel_ulong_t get_rt_sigframe_addr(struct tcb *);
458
Elliott Hughesd35df492017-02-15 15:19:05 -0800459/**
Elliott Hughesb7556142018-02-20 17:03:16 -0800460 * Convert a (shuffled) syscall number to the corresponding syscall name.
Elliott Hughesd35df492017-02-15 15:19:05 -0800461 *
462 * @param scno Syscall number.
463 * @return String literal corresponding to the syscall number in case latter
464 * is valid; NULL otherwise.
465 */
466extern const char *syscall_name(kernel_ulong_t scno);
Elliott Hughesb7556142018-02-20 17:03:16 -0800467/**
468 * Convert a syscall name to the corresponding (shuffled) syscall number.
469 *
470 * @param s Syscall name.
471 * @param p Personality.
472 * @param start From which position in syscall entry table resume the search.
473 * @return Shuffled syscall number (ready to use against sysent_vec)
474 * if syscall name is found; -1 otherwise.
475 */
476extern kernel_long_t scno_by_name(const char *s, unsigned p,
477 kernel_long_t start);
478/**
479 * Shuffle syscall numbers so that we don't have huge gaps in syscall table.
480 * The shuffling should be an involution: shuffle_scno(shuffle_scno(n)) == n.
481 *
482 * @param scno Raw or shuffled syscall number.
483 * @return Shuffled or raw syscall number, respectively.
484 */
485extern kernel_ulong_t shuffle_scno(kernel_ulong_t scno);
Eugene Syromyatnikov6fdb1042016-09-29 15:56:27 +0300486extern const char *err_name(unsigned long err);
Dmitry V. Levin9a176c92015-02-13 21:56:50 +0000487
Dmitry V. Levin9af94a22015-09-18 01:54:59 +0000488extern bool is_erestart(struct tcb *);
Dmitry V. Levin3858b932015-09-18 01:54:59 +0000489extern void temporarily_clear_syserror(struct tcb *);
490extern void restore_cleared_syserror(struct tcb *);
491
Patrik Jakobssona1546a92015-08-24 14:42:47 +0200492extern void *get_tcb_priv_data(const struct tcb *);
493extern int set_tcb_priv_data(struct tcb *, void *priv_data,
494 void (*free_priv_data)(void *));
495extern void free_tcb_priv_data(struct tcb *);
496
497static inline unsigned long get_tcb_priv_ulong(const struct tcb *tcp)
498{
499 return (unsigned long) get_tcb_priv_data(tcp);
500}
501
502static inline int set_tcb_priv_ulong(struct tcb *tcp, unsigned long val)
503{
504 return set_tcb_priv_data(tcp, (void *) val, 0);
505}
506
Elliott Hughes03a418e2018-06-15 13:11:40 -0700507/**
508 * @return 0 on success, -1 on error.
509 */
Elliott Hughesd35df492017-02-15 15:19:05 -0800510extern int
Elliott Hughesdc75b012017-07-05 13:54:44 -0700511umoven(struct tcb *, kernel_ulong_t addr, unsigned int len, void *laddr);
Denys Vlasenkod63b0d52012-03-23 11:26:36 +0100512#define umove(pid, addr, objp) \
Denys Vlasenko7e69ed92015-03-21 19:50:53 +0100513 umoven((pid), (addr), sizeof(*(objp)), (void *) (objp))
Elliott Hughesd35df492017-02-15 15:19:05 -0800514
Elliott Hughes03a418e2018-06-15 13:11:40 -0700515/**
516 * @return true on success, false on error.
517 */
518extern bool
519tfetch_mem64(struct tcb *, uint64_t addr, unsigned int len, void *laddr);
520
521static inline bool
522tfetch_mem(struct tcb *tcp, const kernel_ulong_t addr,
523 unsigned int len, void *laddr)
524{
525 return tfetch_mem64(tcp, addr, len, laddr);
526}
527#define tfetch_obj(pid, addr, objp) \
528 tfetch_mem((pid), (addr), sizeof(*(objp)), (void *) (objp))
529
530/**
531 * @return true on success, false on error.
532 */
533extern bool
534tfetch_mem64_ignore_syserror(struct tcb *, uint64_t addr,
535 unsigned int len, void *laddr);
536
537static inline bool
538tfetch_mem_ignore_syserror(struct tcb *tcp, const kernel_ulong_t addr,
539 unsigned int len, void *laddr)
540{
541 return tfetch_mem64_ignore_syserror(tcp, addr, len, laddr);
542}
543
544/**
545 * @return 0 on success, -1 on error (and print addr).
546 */
Elliott Hughesd35df492017-02-15 15:19:05 -0800547extern int
Elliott Hughes03a418e2018-06-15 13:11:40 -0700548umoven_or_printaddr64(struct tcb *, uint64_t addr,
549 unsigned int len, void *laddr);
550#define umove_or_printaddr64(pid, addr, objp) \
551 umoven_or_printaddr64((pid), (addr), sizeof(*(objp)), (void *) (objp))
552
553static inline int
554umoven_or_printaddr(struct tcb *tcp, const kernel_ulong_t addr,
555 unsigned int len, void *laddr)
556{
557 return umoven_or_printaddr64(tcp, addr, len, laddr);
558}
Dmitry V. Levin332a3262015-07-05 22:09:29 +0000559#define umove_or_printaddr(pid, addr, objp) \
560 umoven_or_printaddr((pid), (addr), sizeof(*(objp)), (void *) (objp))
Elliott Hughesd35df492017-02-15 15:19:05 -0800561
Elliott Hughes03a418e2018-06-15 13:11:40 -0700562/**
563 * @return 0 on success, -1 on error (and print addr).
564 */
Elliott Hughesd35df492017-02-15 15:19:05 -0800565extern int
Elliott Hughes03a418e2018-06-15 13:11:40 -0700566umoven_or_printaddr64_ignore_syserror(struct tcb *, uint64_t addr,
567 unsigned int len, void *laddr);
568#define umove_or_printaddr64_ignore_syserror(pid, addr, objp) \
569 umoven_or_printaddr64_ignore_syserror((pid), (addr), sizeof(*(objp)), \
570 (void *) (objp))
Elliott Hughesd35df492017-02-15 15:19:05 -0800571
Elliott Hughes03a418e2018-06-15 13:11:40 -0700572static inline int
573umoven_or_printaddr_ignore_syserror(struct tcb *tcp, const kernel_ulong_t addr,
574 unsigned int len, void *laddr)
575{
576 return umoven_or_printaddr64_ignore_syserror(tcp, addr, len, laddr);
577}
578#define umove_or_printaddr_ignore_syserror(pid, addr, objp) \
579 umoven_or_printaddr_ignore_syserror((pid), (addr), sizeof(*(objp)), \
580 (void *) (objp))
581
582/**
583 * @return strlen + 1 on success, 0 on success and no NUL seen, -1 on error.
584 */
Elliott Hughesd35df492017-02-15 15:19:05 -0800585extern int
Elliott Hughesdc75b012017-07-05 13:54:44 -0700586umovestr(struct tcb *, kernel_ulong_t addr, unsigned int len, char *laddr);
Elliott Hughesd35df492017-02-15 15:19:05 -0800587
Elliott Hughesb7556142018-02-20 17:03:16 -0800588extern int upeek(struct tcb *tcp, unsigned long, kernel_ulong_t *);
589extern int upoke(struct tcb *tcp, unsigned long, kernel_ulong_t);
Dmitry V. Levin78ed3f32015-03-23 00:04:27 +0000590
Elliott Hughesb7556142018-02-20 17:03:16 -0800591#if HAVE_ARCH_GETRVAL2
Denys Vlasenkod63b0d52012-03-23 11:26:36 +0100592extern long getrval2(struct tcb *);
593#endif
Denys Vlasenkod63b0d52012-03-23 11:26:36 +0100594
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +0000595extern const char *signame(const int);
Elliott Hughes77c3ff82017-09-08 17:11:00 -0700596extern void pathtrace_select_set(const char *, struct path_set *);
597extern bool pathtrace_match_set(struct tcb *, struct path_set *);
Elliott Hughes03a418e2018-06-15 13:11:40 -0700598
599static inline void
600pathtrace_select(const char *path)
601{
602 return pathtrace_select_set(path, &global_path_set);
603}
604
605static inline bool
606pathtrace_match(struct tcb *tcp)
607{
608 return pathtrace_match_set(tcp, &global_path_set);
609}
610
Denys Vlasenko61ad0a42013-03-06 18:24:34 +0100611extern int getfdpath(struct tcb *, int, char *, unsigned);
Elliott Hughesdc75b012017-07-05 13:54:44 -0700612extern unsigned long getfdinode(struct tcb *, int);
Fabien Siron2850f742016-07-06 15:49:22 +0000613extern enum sock_proto getfdproto(struct tcb *, int);
Denys Vlasenkod63b0d52012-03-23 11:26:36 +0100614
Dmitry V. Levinc0db59b2016-05-14 21:55:35 +0000615extern const char *xlookup(const struct xlat *, const uint64_t);
Dmitry V. Levin43242e62016-04-28 18:37:54 +0000616extern const char *xlat_search(const struct xlat *, const size_t, const uint64_t);
Elliott Hughes03a418e2018-06-15 13:11:40 -0700617extern const char *xlat_idx(const struct xlat *xlat, size_t nmemb, uint64_t val);
Denys Vlasenkod63b0d52012-03-23 11:26:36 +0100618
Elliott Hughesdc75b012017-07-05 13:54:44 -0700619struct dyxlat;
620struct dyxlat *dyxlat_alloc(size_t nmemb);
621void dyxlat_free(struct dyxlat *);
622const struct xlat *dyxlat_get(const struct dyxlat *);
623void dyxlat_add_pair(struct dyxlat *, uint64_t val, const char *str, size_t len);
624
Elliott Hughesb7556142018-02-20 17:03:16 -0800625const struct xlat *genl_families_xlat(struct tcb *tcp);
Elliott Hughesdc75b012017-07-05 13:54:44 -0700626
Dmitry V. Levinea1fea62015-03-31 19:45:08 +0000627extern unsigned long get_pagesize(void);
Denys Vlasenkob338f2d2013-11-09 20:40:31 +0100628extern int next_set_bit(const void *bit_array, unsigned cur_bit, unsigned size_bits);
Dmitry V. Levinccee1692012-03-25 21:49:48 +0000629
Elliott Hughesdc75b012017-07-05 13:54:44 -0700630/*
631 * Returns STR if it does not start with PREFIX,
632 * or a pointer to the first char in STR after PREFIX.
633 * The length of PREFIX is specified by PREFIX_LEN.
634 */
635static inline const char *
636str_strip_prefix_len(const char *str, const char *prefix, size_t prefix_len)
637{
638 return strncmp(str, prefix, prefix_len) ? str : str + prefix_len;
639}
640
641#define STR_STRIP_PREFIX(str, prefix) \
642 str_strip_prefix_len((str), (prefix), sizeof(prefix) - 1)
643
644#define QUOTE_0_TERMINATED 0x01
645#define QUOTE_OMIT_LEADING_TRAILING_QUOTES 0x02
646#define QUOTE_OMIT_TRAILING_0 0x08
647#define QUOTE_FORCE_HEX 0x10
Elliott Hughesb7556142018-02-20 17:03:16 -0800648#define QUOTE_EMIT_COMMENT 0x20
Dmitry V. Levin513e96e2015-01-26 01:17:08 +0000649
Elliott Hughes28e98bc2018-06-14 16:59:04 -0700650extern int string_quote(const char *, char *, unsigned int, unsigned int,
651 const char *escape_chars);
652extern int print_quoted_string_ex(const char *, unsigned int, unsigned int,
653 const char *escape_chars);
Dmitry V. Levin513e96e2015-01-26 01:17:08 +0000654extern int print_quoted_string(const char *, unsigned int, unsigned int);
Elliott Hughes77c3ff82017-09-08 17:11:00 -0700655extern int print_quoted_cstring(const char *, unsigned int);
Dmitry V. Levin513e96e2015-01-26 01:17:08 +0000656
Denys Vlasenkoc9d0fc02013-02-17 22:41:33 +0100657/* a refers to the lower numbered u_arg,
658 * b refers to the higher numbered u_arg
Denys Vlasenkod63b0d52012-03-23 11:26:36 +0100659 */
Dmitry V. Levinda126fb2015-12-14 11:57:59 +0000660#ifdef WORDS_BIGENDIAN
Elliott Hughesdc75b012017-07-05 13:54:44 -0700661# define ULONG_LONG(a, b) \
Elliott Hughesd35df492017-02-15 15:19:05 -0800662 ((unsigned long long)(unsigned)(b) | ((unsigned long long)(a)<<32))
Dmitry V. Levinda126fb2015-12-14 11:57:59 +0000663#else
Elliott Hughesdc75b012017-07-05 13:54:44 -0700664# define ULONG_LONG(a, b) \
Elliott Hughesd35df492017-02-15 15:19:05 -0800665 ((unsigned long long)(unsigned)(a) | ((unsigned long long)(b)<<32))
Denys Vlasenkod63b0d52012-03-23 11:26:36 +0100666#endif
Dmitry V. Levin1ea64732015-01-10 00:08:58 +0000667extern int getllval(struct tcb *, unsigned long long *, int);
Dmitry V. Levinf523f102015-02-17 22:47:25 +0000668extern int printllval(struct tcb *, const char *, int)
Dmitry V. Levin5647cf82015-03-29 22:45:03 +0000669 ATTRIBUTE_FORMAT((printf, 2, 0));
Denys Vlasenkoc9d0fc02013-02-17 22:41:33 +0100670
Elliott Hughes28e98bc2018-06-14 16:59:04 -0700671extern void printaddr64(uint64_t addr);
Elliott Hughes03a418e2018-06-15 13:11:40 -0700672
673static inline void
674printaddr(const kernel_ulong_t addr)
675{
676 printaddr64(addr);
677}
678
679#define xlat_verbose(style_) ((style_) & XLAT_STYLE_VERBOSITY_MASK)
680#define xlat_format(style_) ((style_) & XLAT_STYLE_FORMAT_MASK)
681
682extern enum xlat_style xlat_verbosity;
683
684extern int printxvals_ex(uint64_t val, const char *dflt,
685 enum xlat_style, const struct xlat *, ...)
Dmitry V. Levinb0d23cc2016-04-01 00:52:01 +0000686 ATTRIBUTE_SENTINEL;
Elliott Hughes03a418e2018-06-15 13:11:40 -0700687#define printxvals(val_, dflt_, ...) \
688 printxvals_ex((val_), (dflt_), XLAT_STYLE_DEFAULT, __VA_ARGS__)
689
690extern int printxval_searchn_ex(const struct xlat *, size_t xlat_size,
691 uint64_t val, const char *dflt,
692 enum xlat_style);
693
694static inline int
695printxval_searchn(const struct xlat *xlat, size_t xlat_size, uint64_t val,
696 const char *dflt)
697{
698 return printxval_searchn_ex(xlat, xlat_size, val, dflt,
699 XLAT_STYLE_DEFAULT);
700}
701
Elliott Hughes28e98bc2018-06-14 16:59:04 -0700702/**
703 * Wrapper around printxval_searchn that passes ARRAY_SIZE - 1
704 * as the array size, as all arrays are XLAT_END-terminated and
705 * printxval_searchn expects a size without the terminating record.
706 */
Elliott Hughesd35df492017-02-15 15:19:05 -0800707#define printxval_search(xlat__, val__, dflt__) \
Elliott Hughes28e98bc2018-06-14 16:59:04 -0700708 printxval_searchn(xlat__, ARRAY_SIZE(xlat__) - 1, val__, dflt__)
Elliott Hughesc1873762018-12-19 15:13:36 -0800709#define printxval_search_ex(xlat__, val__, dflt__, style__) \
Elliott Hughes03a418e2018-06-15 13:11:40 -0700710 printxval_searchn_ex((xlat__), ARRAY_SIZE(xlat__) - 1, (val__), \
Elliott Hughesc1873762018-12-19 15:13:36 -0800711 (dflt__), (style__))
Elliott Hughes03a418e2018-06-15 13:11:40 -0700712
713extern int printxval_indexn_ex(const struct xlat *, size_t xlat_size,
714 uint64_t val, const char *dflt, enum xlat_style);
715
716static inline int
717printxval_indexn(const struct xlat *xlat, size_t xlat_size, uint64_t val,
718 const char *dflt)
719{
720 return printxval_indexn_ex(xlat, xlat_size, val, dflt,
721 XLAT_STYLE_DEFAULT);
722}
723
724#define printxval_index(xlat__, val__, dflt__) \
725 printxval_indexn(xlat__, ARRAY_SIZE(xlat__) - 1, val__, dflt__)
726#define printxval_index_ex(xlat__, val__, dflt__) \
727 printxval_indexn_ex((xlat__), ARRAY_SIZE(xlat__) - 1, (val__), \
728 (dflt__), XLAT_STYLE_DEFAULT)
729
730extern int sprintxval_ex(char *buf, size_t size, const struct xlat *,
731 unsigned int val, const char *dflt, enum xlat_style);
732
733static inline int
734sprintxval(char *buf, size_t size, const struct xlat *xlat, unsigned int val,
735 const char *dflt)
736{
737 return sprintxval_ex(buf, size, xlat, val, dflt, XLAT_STYLE_DEFAULT);
738}
739
740extern void printxval_dispatch_ex(const struct xlat *, size_t xlat_size,
741 uint64_t val, const char *dflt,
742 enum xlat_type, enum xlat_style);
743static inline void
744printxval_dispatch(const struct xlat *xlat, size_t xlat_size, uint64_t val,
745 const char *dflt, enum xlat_type xt)
746{
747 return printxval_dispatch_ex(xlat, xlat_size, val, dflt, xt,
748 XLAT_STYLE_DEFAULT);
749}
750
Elliott Hughesc1873762018-12-19 15:13:36 -0800751enum xlat_style_private_flag_bits {
752 /* print_array */
753 PAF_PRINT_INDICES_BIT = XLAT_STYLE_SPEC_BITS + 1,
754 PAF_INDEX_XLAT_SORTED_BIT,
755 PAF_INDEX_XLAT_VALUE_INDEXED_BIT,
756
757 /* print_xlat */
758 PXF_DEFAULT_STR_BIT,
759};
760
761#define FLAG_(name_) name_ = 1 << name_##_BIT
762
763enum xlat_style_private_flags {
764 /* print_array */
765 FLAG_(PAF_PRINT_INDICES),
766 FLAG_(PAF_INDEX_XLAT_SORTED),
767 FLAG_(PAF_INDEX_XLAT_VALUE_INDEXED),
768
769 /* print_xlat */
770 FLAG_(PXF_DEFAULT_STR),
771};
772
773#undef FLAG_
774
Elliott Hughes03a418e2018-06-15 13:11:40 -0700775/** Print a value in accordance with xlat formatting settings. */
776extern void print_xlat_ex(uint64_t val, const char *str, enum xlat_style style);
777#define print_xlat(val_) \
778 print_xlat_ex((val_), #val_, XLAT_STYLE_DEFAULT)
779#define print_xlat32(val_) \
780 print_xlat_ex((uint32_t) (val_), #val_, XLAT_STYLE_DEFAULT)
781#define print_xlat_u(val_) \
782 print_xlat_ex((val_), #val_, XLAT_STYLE_FMT_U)
783#define print_xlat_d(val_) \
784 print_xlat_ex((val_), #val_, XLAT_STYLE_FMT_D)
785
Andreas Schwabe5355de2009-10-27 16:56:43 +0100786extern int printargs(struct tcb *);
Dmitry V. Levin1ab6e252016-02-14 16:26:37 +0000787extern int printargs_u(struct tcb *);
788extern int printargs_d(struct tcb *);
789
Elliott Hughes03a418e2018-06-15 13:11:40 -0700790extern int printflags_ex(uint64_t flags, const char *dflt,
791 enum xlat_style, const struct xlat *, ...)
Elliott Hughesdc75b012017-07-05 13:54:44 -0700792 ATTRIBUTE_SENTINEL;
Elliott Hughes03a418e2018-06-15 13:11:40 -0700793extern const char *sprintflags_ex(const char *prefix, const struct xlat *,
794 uint64_t flags, enum xlat_style);
795
796static inline const char *
797sprintflags(const char *prefix, const struct xlat *xlat, uint64_t flags)
798{
799 return sprintflags_ex(prefix, xlat, flags, XLAT_STYLE_DEFAULT);
800}
801
Elliott Hughes39bac052017-05-25 16:56:11 -0700802extern const char *sprinttime(long long sec);
803extern const char *sprinttime_nsec(long long sec, unsigned long long nsec);
804extern const char *sprinttime_usec(long long sec, unsigned long long usec);
Elliott Hughes03a418e2018-06-15 13:11:40 -0700805
806extern const char *sprint_mac_addr(const uint8_t addr[], size_t size);
807
Dmitry V. Levin8d374382016-08-03 14:05:39 +0000808extern void print_symbolic_mode_t(unsigned int);
809extern void print_numeric_umode_t(unsigned short);
810extern void print_numeric_long_umask(unsigned long);
Elliott Hughesd35df492017-02-15 15:19:05 -0800811extern void print_dev_t(unsigned long long dev);
Elliott Hughes39bac052017-05-25 16:56:11 -0700812extern void print_abnormal_hi(kernel_ulong_t);
Dmitry V. Levin2479ef02015-08-18 14:58:27 +0000813
Elliott Hughes03a418e2018-06-15 13:11:40 -0700814extern bool print_int32_array_member(struct tcb *, void *elem_buf,
815 size_t elem_size, void *data);
816extern bool print_uint32_array_member(struct tcb *, void *elem_buf,
817 size_t elem_size, void *data);
818extern bool print_uint64_array_member(struct tcb *, void *elem_buf,
819 size_t elem_size, void *data);
820
821typedef bool (*tfetch_mem_fn)(struct tcb *, kernel_ulong_t addr,
822 unsigned int size, void *dest);
823typedef bool (*print_fn)(struct tcb *, void *elem_buf,
824 size_t elem_size, void *opaque_data);
825
Elliott Hughes03a418e2018-06-15 13:11:40 -0700826
827/**
828 * @param flags Combination of xlat style settings and additional flags from
829 * enum print_array_flags.
830 */
831extern bool
832print_array_ex(struct tcb *,
833 kernel_ulong_t start_addr,
834 size_t nmemb,
835 void *elem_buf,
836 size_t elem_size,
837 tfetch_mem_fn tfetch_mem_func,
838 print_fn print_func,
839 void *opaque_data,
840 unsigned int flags,
841 const struct xlat *index_xlat,
842 size_t index_xlat_size,
843 const char *index_dflt);
844
845static inline bool
846print_array(struct tcb *const tcp,
847 const kernel_ulong_t start_addr,
848 const size_t nmemb,
849 void *const elem_buf,
850 const size_t elem_size,
851 tfetch_mem_fn tfetch_mem_func,
852 print_fn print_func,
853 void *const opaque_data)
854{
855 return print_array_ex(tcp, start_addr, nmemb, elem_buf, elem_size,
856 tfetch_mem_func, print_func, opaque_data,
857 0, NULL, 0, NULL);
858}
859
Elliott Hughesb7556142018-02-20 17:03:16 -0800860extern kernel_ulong_t *
861fetch_indirect_syscall_args(struct tcb *, kernel_ulong_t addr, unsigned int n_args);
862
Elliott Hughesd35df492017-02-15 15:19:05 -0800863extern void
864dumpiov_in_msghdr(struct tcb *, kernel_ulong_t addr, kernel_ulong_t data_size);
Dmitry V. Levin2479ef02015-08-18 14:58:27 +0000865
Elliott Hughesd35df492017-02-15 15:19:05 -0800866extern void
867dumpiov_in_mmsghdr(struct tcb *, kernel_ulong_t addr);
868
869extern void
870dumpiov_upto(struct tcb *, int len, kernel_ulong_t addr, kernel_ulong_t data_size);
871
872extern void
873dumpstr(struct tcb *, kernel_ulong_t addr, int len);
874
Elliott Hughesb7556142018-02-20 17:03:16 -0800875extern int
Elliott Hughesd35df492017-02-15 15:19:05 -0800876printstr_ex(struct tcb *, kernel_ulong_t addr, kernel_ulong_t len,
877 unsigned int user_style);
878
Elliott Hughesb7556142018-02-20 17:03:16 -0800879extern int
Elliott Hughesd35df492017-02-15 15:19:05 -0800880printpathn(struct tcb *, kernel_ulong_t addr, unsigned int n);
881
Elliott Hughesb7556142018-02-20 17:03:16 -0800882extern int
Elliott Hughesd35df492017-02-15 15:19:05 -0800883printpath(struct tcb *, kernel_ulong_t addr);
884
Dmitry V. Levin2950de32015-09-18 17:44:16 +0000885#define TIMESPEC_TEXT_BUFSIZE \
Elliott Hughes39bac052017-05-25 16:56:11 -0700886 (sizeof(long long) * 3 * 2 + sizeof("{tv_sec=-, tv_nsec=}"))
Dmitry V. Levin31382132011-03-04 05:08:02 +0300887extern void printfd(struct tcb *, int);
Elliott Hughes77c3ff82017-09-08 17:11:00 -0700888extern void print_sockaddr(const void *sa, int len);
Elliott Hughesdc75b012017-07-05 13:54:44 -0700889extern bool
890print_inet_addr(int af, const void *addr, unsigned int len, const char *var_name);
Elliott Hughes77c3ff82017-09-08 17:11:00 -0700891extern bool
892decode_inet_addr(struct tcb *, kernel_ulong_t addr,
893 unsigned int len, int family, const char *var_name);
Elliott Hughesc1873762018-12-19 15:13:36 -0800894extern void print_ax25_addr(const void /* ax25_address */ *addr);
895extern void print_x25_addr(const void /* struct x25_address */ *addr);
Elliott Hughesdc75b012017-07-05 13:54:44 -0700896extern const char *get_sockaddr_by_inode(struct tcb *, int fd, unsigned long inode);
897extern bool print_sockaddr_by_inode(struct tcb *, int fd, unsigned long inode);
Dmitry V. Levin99db95d2014-02-05 04:13:18 +0000898extern void print_dirfd(struct tcb *, int);
Elliott Hughesd35df492017-02-15 15:19:05 -0800899
900extern int
901decode_sockaddr(struct tcb *, kernel_ulong_t addr, int addrlen);
902
Dmitry V. Levin1da7c952014-12-13 18:24:13 +0000903extern void printuid(const char *, const unsigned int);
Elliott Hughesd35df492017-02-15 15:19:05 -0800904
905extern void
906print_sigset_addr_len(struct tcb *, kernel_ulong_t addr, kernel_ulong_t len);
Elliott Hughes39bac052017-05-25 16:56:11 -0700907extern void
908print_sigset_addr(struct tcb *, kernel_ulong_t addr);
Elliott Hughesd35df492017-02-15 15:19:05 -0800909
Dmitry V. Levin74219ea2015-03-06 01:47:18 +0000910extern const char *sprintsigmask_n(const char *, const void *, unsigned int);
911#define tprintsigmask_addr(prefix, mask) \
912 tprints(sprintsigmask_n((prefix), (mask), sizeof(mask)))
Andreas Schwabe5355de2009-10-27 16:56:43 +0100913extern void printsignal(int);
Elliott Hughesd35df492017-02-15 15:19:05 -0800914
915extern void
916tprint_iov_upto(struct tcb *, kernel_ulong_t len, kernel_ulong_t addr,
917 enum iov_decode, kernel_ulong_t data_size);
918
919extern void
Elliott Hughesdc75b012017-07-05 13:54:44 -0700920decode_netlink(struct tcb *, int fd, kernel_ulong_t addr, kernel_ulong_t len);
Elliott Hughesd35df492017-02-15 15:19:05 -0800921
Dmitry V. Levindd9a5112016-04-28 23:40:37 +0000922extern void tprint_open_modes(unsigned int);
923extern const char *sprint_open_modes(unsigned int);
Elliott Hughesd35df492017-02-15 15:19:05 -0800924
925extern void
Elliott Hughes77c3ff82017-09-08 17:11:00 -0700926decode_seccomp_fprog(struct tcb *, kernel_ulong_t addr);
Elliott Hughesd35df492017-02-15 15:19:05 -0800927
928extern void
929print_seccomp_fprog(struct tcb *, kernel_ulong_t addr, unsigned short len);
Grant Edwards8a082772011-04-07 20:25:40 +0000930
Elliott Hughes77c3ff82017-09-08 17:11:00 -0700931extern void
932decode_sock_fprog(struct tcb *, kernel_ulong_t addr);
933
934extern void
935print_sock_fprog(struct tcb *, kernel_ulong_t addr, unsigned short len);
936
Dmitry V. Levina7c4ee42016-08-24 00:29:40 +0000937struct strace_stat;
Elliott Hughesdc75b012017-07-05 13:54:44 -0700938extern void print_struct_stat(struct tcb *, const struct strace_stat *const st);
Dmitry V. Levina7c4ee42016-08-24 00:29:40 +0000939
Dmitry V. Levin67c2f672016-04-26 00:21:26 +0000940struct strace_statfs;
Elliott Hughes77c3ff82017-09-08 17:11:00 -0700941struct strace_keyctl_kdf_params;
Elliott Hughesd35df492017-02-15 15:19:05 -0800942
943extern void
944print_struct_statfs(struct tcb *, kernel_ulong_t addr);
945
946extern void
947print_struct_statfs64(struct tcb *, kernel_ulong_t addr, kernel_ulong_t size);
Dmitry V. Levin67c2f672016-04-26 00:21:26 +0000948
Elliott Hughes03a418e2018-06-15 13:11:40 -0700949extern int
950fetch_perf_event_attr(struct tcb *const tcp, const kernel_ulong_t addr);
951extern void
952print_perf_event_attr(struct tcb *const tcp, const kernel_ulong_t addr);
953
Elliott Hughesc1873762018-12-19 15:13:36 -0800954extern const char *get_ifname(const unsigned int ifindex);
Dmitry V. Levin45ae9372016-06-23 17:38:18 +0000955extern void print_ifindex(unsigned int);
Dmitry V. Levin45ae9372016-06-23 17:38:18 +0000956
Elliott Hughes03a418e2018-06-15 13:11:40 -0700957extern void print_bpf_filter_code(const uint16_t code, bool extended);
958
Elliott Hughesd35df492017-02-15 15:19:05 -0800959extern void qualify(const char *);
960extern unsigned int qual_flags(const unsigned int);
961
962#define DECL_IOCTL(name) \
963extern int \
Elliott Hughes77c3ff82017-09-08 17:11:00 -0700964name ## _ioctl(struct tcb *, unsigned int request, kernel_ulong_t arg) \
965/* End of DECL_IOCTL definition. */
966
Elliott Hughesd35df492017-02-15 15:19:05 -0800967DECL_IOCTL(dm);
Elliott Hughes28e98bc2018-06-14 16:59:04 -0700968DECL_IOCTL(evdev);
Elliott Hughesd35df492017-02-15 15:19:05 -0800969DECL_IOCTL(file);
970DECL_IOCTL(fs_x);
Elliott Hughes03a418e2018-06-15 13:11:40 -0700971DECL_IOCTL(inotify);
Elliott Hughesb7556142018-02-20 17:03:16 -0800972DECL_IOCTL(kvm);
Elliott Hughesc1873762018-12-19 15:13:36 -0800973DECL_IOCTL(nbd);
Elliott Hughes39bac052017-05-25 16:56:11 -0700974DECL_IOCTL(nsfs);
Elliott Hughesd35df492017-02-15 15:19:05 -0800975DECL_IOCTL(ptp);
976DECL_IOCTL(scsi);
977DECL_IOCTL(term);
978DECL_IOCTL(ubi);
979DECL_IOCTL(uffdio);
980#undef DECL_IOCTL
981
982extern int decode_sg_io_v4(struct tcb *, const kernel_ulong_t arg);
Elliott Hughes28e98bc2018-06-14 16:59:04 -0700983extern void print_evdev_ff_type(const kernel_ulong_t val);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000984
Elliott Hughesdc75b012017-07-05 13:54:44 -0700985struct nlmsghdr;
986
987typedef bool (*netlink_decoder_t)(struct tcb *, const struct nlmsghdr *,
Elliott Hughes77c3ff82017-09-08 17:11:00 -0700988 kernel_ulong_t addr, unsigned int len);
Elliott Hughesdc75b012017-07-05 13:54:44 -0700989
990#define DECL_NETLINK(name) \
991extern bool \
992decode_netlink_ ## name(struct tcb *, const struct nlmsghdr *, \
Elliott Hughes77c3ff82017-09-08 17:11:00 -0700993 kernel_ulong_t addr, unsigned int len) \
994/* End of DECL_NETLINK definition. */
995
996DECL_NETLINK(crypto);
Elliott Hughes28e98bc2018-06-14 16:59:04 -0700997DECL_NETLINK(netfilter);
Elliott Hughes77c3ff82017-09-08 17:11:00 -0700998DECL_NETLINK(route);
999DECL_NETLINK(selinux);
Elliott Hughesdc75b012017-07-05 13:54:44 -07001000DECL_NETLINK(sock_diag);
1001
Elliott Hughes03a418e2018-06-15 13:11:40 -07001002extern void
1003decode_netlink_kobject_uevent(struct tcb *, kernel_ulong_t addr,
1004 kernel_ulong_t len);
1005
Elliott Hughes28e98bc2018-06-14 16:59:04 -07001006extern int ts_nz(const struct timespec *);
1007extern int ts_cmp(const struct timespec *, const struct timespec *);
1008extern double ts_float(const struct timespec *);
1009extern void ts_add(struct timespec *, const struct timespec *, const struct timespec *);
1010extern void ts_sub(struct timespec *, const struct timespec *, const struct timespec *);
1011extern void ts_mul(struct timespec *, const struct timespec *, int);
1012extern void ts_div(struct timespec *, const struct timespec *, int);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001013
Elliott Hughes03a418e2018-06-15 13:11:40 -07001014#ifdef ENABLE_STACKTRACE
Masatake YAMATO61413922014-04-16 15:33:02 +09001015extern void unwind_init(void);
Elliott Hughesdc75b012017-07-05 13:54:44 -07001016extern void unwind_tcb_init(struct tcb *);
1017extern void unwind_tcb_fin(struct tcb *);
Elliott Hughes28e98bc2018-06-14 16:59:04 -07001018extern void unwind_tcb_print(struct tcb *);
1019extern void unwind_tcb_capture(struct tcb *);
Luca Clementi327064b2013-07-23 00:11:35 -07001020#endif
1021
Elliott Hughesc1873762018-12-19 15:13:36 -08001022#ifdef HAVE_LINUX_KVM_H
1023extern void kvm_run_structure_decoder_init(void);
1024extern void kvm_vcpu_info_free(struct tcb *);
1025#endif
1026
Elliott Hughesb7556142018-02-20 17:03:16 -08001027static inline int
Elliott Hughesd35df492017-02-15 15:19:05 -08001028printstrn(struct tcb *tcp, kernel_ulong_t addr, kernel_ulong_t len)
Eugene Syromyatnikovee70a1b2016-10-03 21:35:45 +03001029{
Elliott Hughesb7556142018-02-20 17:03:16 -08001030 return printstr_ex(tcp, addr, len, 0);
Eugene Syromyatnikovee70a1b2016-10-03 21:35:45 +03001031}
1032
Elliott Hughesb7556142018-02-20 17:03:16 -08001033static inline int
Elliott Hughesd35df492017-02-15 15:19:05 -08001034printstr(struct tcb *tcp, kernel_ulong_t addr)
1035{
Elliott Hughesb7556142018-02-20 17:03:16 -08001036 return printstr_ex(tcp, addr, -1, QUOTE_0_TERMINATED);
Elliott Hughesd35df492017-02-15 15:19:05 -08001037}
1038
Dmitry V. Levin00beed62016-04-28 18:55:18 +00001039static inline int
Elliott Hughesdc75b012017-07-05 13:54:44 -07001040printflags64(const struct xlat *x, uint64_t flags, const char *dflt)
1041{
Elliott Hughes03a418e2018-06-15 13:11:40 -07001042 return printflags_ex(flags, dflt, XLAT_STYLE_DEFAULT, x, NULL);
Elliott Hughesdc75b012017-07-05 13:54:44 -07001043}
1044
1045static inline int
Dmitry V. Levin00beed62016-04-28 18:55:18 +00001046printflags(const struct xlat *x, unsigned int flags, const char *dflt)
1047{
1048 return printflags64(x, flags, dflt);
1049}
1050
Dmitry V. Levin77ab8dd2016-05-16 22:44:50 +00001051static inline int
Dmitry V. Levin482bab02016-04-28 18:15:20 +00001052printxval64(const struct xlat *x, const uint64_t val, const char *dflt)
1053{
Elliott Hughesd35df492017-02-15 15:19:05 -08001054 return printxvals(val, dflt, x, NULL);
Dmitry V. Levin482bab02016-04-28 18:15:20 +00001055}
1056
Elliott Hughesd35df492017-02-15 15:19:05 -08001057static inline int
Dmitry V. Levin7d63aa52016-04-28 17:50:51 +00001058printxval(const struct xlat *x, const unsigned int val, const char *dflt)
1059{
Elliott Hughesd35df492017-02-15 15:19:05 -08001060 return printxvals(val, dflt, x, NULL);
Dmitry V. Levin7d63aa52016-04-28 17:50:51 +00001061}
1062
Elliott Hughes03a418e2018-06-15 13:11:40 -07001063static inline int
1064printxval64_u(const struct xlat *x, const uint64_t val, const char *dflt)
1065{
1066 return printxvals_ex(val, dflt, XLAT_STYLE_FMT_U, x, NULL);
1067}
1068
1069static inline int
1070printxval_u(const struct xlat *x, const unsigned int val, const char *dflt)
1071{
1072 return printxvals_ex(val, dflt, XLAT_STYLE_FMT_U, x, NULL);
1073}
1074
1075static inline int
1076printxval64_d(const struct xlat *x, const int64_t val, const char *dflt)
1077{
1078 return printxvals_ex(val, dflt, XLAT_STYLE_FMT_D, x, NULL);
1079}
1080
1081static inline int
1082printxval_d(const struct xlat *x, const int val, const char *dflt)
1083{
1084 return printxvals_ex(val, dflt, XLAT_STYLE_FMT_D, x, NULL);
1085}
1086
Dmitry V. Levin77ab8dd2016-05-16 22:44:50 +00001087static inline void
Elliott Hughesd35df492017-02-15 15:19:05 -08001088tprint_iov(struct tcb *tcp, kernel_ulong_t len, kernel_ulong_t addr,
1089 enum iov_decode decode_iov)
Dmitry V. Levin77ab8dd2016-05-16 22:44:50 +00001090{
Elliott Hughesd35df492017-02-15 15:19:05 -08001091 tprint_iov_upto(tcp, len, addr, decode_iov, -1);
Dmitry V. Levin77ab8dd2016-05-16 22:44:50 +00001092}
1093
Elliott Hughesd35df492017-02-15 15:19:05 -08001094#ifdef ALPHA
1095typedef struct {
1096 int tv_sec, tv_usec;
1097} timeval32_t;
1098
1099extern void print_timeval32_t(const timeval32_t *);
1100extern void printrusage32(struct tcb *, kernel_ulong_t);
Elliott Hughesdc75b012017-07-05 13:54:44 -07001101extern const char *sprint_timeval32(struct tcb *, kernel_ulong_t addr);
1102extern void print_timeval32(struct tcb *, kernel_ulong_t addr);
1103extern void print_timeval32_utimes(struct tcb *, kernel_ulong_t addr);
1104extern void print_itimerval32(struct tcb *, kernel_ulong_t addr);
Elliott Hughesd35df492017-02-15 15:19:05 -08001105#endif
1106
1107#ifdef HAVE_STRUCT_USER_DESC
Elliott Hughesb7556142018-02-20 17:03:16 -08001108/**
1109 * Filter what to print from the point of view of the get_thread_area syscall.
1110 * Kernel copies only entry_number field at first and then tries to write the
1111 * whole structure.
1112 */
1113enum user_desc_print_filter {
1114 /* Print the "entering" part of struct user_desc - entry_number. */
1115 USER_DESC_ENTERING = 1,
1116 /* Print the "exiting" part of the structure. */
1117 USER_DESC_EXITING = 2,
1118 USER_DESC_BOTH = USER_DESC_ENTERING | USER_DESC_EXITING,
1119};
1120
1121extern void print_user_desc(struct tcb *, kernel_ulong_t addr,
1122 enum user_desc_print_filter filter);
Elliott Hughesd35df492017-02-15 15:19:05 -08001123#endif
1124
Denys Vlasenko7de265d2012-03-13 11:44:31 +01001125/* Strace log generation machinery.
1126 *
1127 * printing_tcp: tcb which has incomplete line being printed right now.
1128 * NULL if last line has been completed ('\n'-terminated).
1129 * printleader(tcp) examines it, finishes incomplete line if needed,
1130 * the sets it to tcp.
1131 * line_ended() clears printing_tcp and resets ->curcol = 0.
1132 * tcp->curcol == 0 check is also used to detect completeness
1133 * of last line, since in -ff mode just checking printing_tcp for NULL
1134 * is not enough.
1135 *
1136 * If you change this code, test log generation in both -f and -ff modes
1137 * using:
1138 * strace -oLOG -f[f] test/threaded_execve
1139 * strace -oLOG -f[f] test/sigkill_rain
1140 * strace -oLOG -f[f] -p "`pidof web_browser`"
1141 */
1142extern struct tcb *printing_tcp;
1143extern void printleader(struct tcb *);
1144extern void line_ended(void);
1145extern void tabto(void);
Dmitry V. Levin5647cf82015-03-29 22:45:03 +00001146extern void tprintf(const char *fmt, ...) ATTRIBUTE_FORMAT((printf, 1, 2));
Denys Vlasenko7de265d2012-03-13 11:44:31 +01001147extern void tprints(const char *str);
Elliott Hughes39bac052017-05-25 16:56:11 -07001148extern void tprintf_comment(const char *fmt, ...) ATTRIBUTE_FORMAT((printf, 1, 2));
1149extern void tprints_comment(const char *str);
Denys Vlasenko7de265d2012-03-13 11:44:31 +01001150
Elliott Hughes03a418e2018-06-15 13:11:40 -07001151static inline void
1152printaddr_comment(const kernel_ulong_t addr)
1153{
1154 tprintf_comment("%#llx", (unsigned long long) addr);
1155}
1156
1157static inline void
1158print_mac_addr(const char *prefix, const uint8_t addr[], size_t size)
1159{
1160 tprints(prefix);
1161 tprints(sprint_mac_addr(addr, size));
1162}
1163
Denys Vlasenko9fd4f962012-03-19 09:36:42 +01001164#if SUPPORTED_PERSONALITIES > 1
Elliott Hughesb7556142018-02-20 17:03:16 -08001165extern void set_personality(unsigned int personality);
Denys Vlasenkoae8643e2013-02-15 14:55:14 +01001166extern unsigned current_personality;
Denys Vlasenko9fd4f962012-03-19 09:36:42 +01001167#else
1168# define set_personality(personality) ((void)0)
1169# define current_personality 0
Denys Vlasenkoae8643e2013-02-15 14:55:14 +01001170#endif
1171
1172#if SUPPORTED_PERSONALITIES == 1
1173# define current_wordsize PERSONALITY0_WORDSIZE
Elliott Hughesd35df492017-02-15 15:19:05 -08001174# define current_klongsize PERSONALITY0_KLONGSIZE
Denys Vlasenkoae8643e2013-02-15 14:55:14 +01001175#else
1176# if SUPPORTED_PERSONALITIES == 2 && PERSONALITY0_WORDSIZE == PERSONALITY1_WORDSIZE
1177# define current_wordsize PERSONALITY0_WORDSIZE
1178# else
1179extern unsigned current_wordsize;
1180# endif
Elliott Hughesd35df492017-02-15 15:19:05 -08001181# if SUPPORTED_PERSONALITIES == 2 && PERSONALITY0_KLONGSIZE == PERSONALITY1_KLONGSIZE
1182# define current_klongsize PERSONALITY0_KLONGSIZE
1183# else
1184extern unsigned current_klongsize;
1185# endif
Denys Vlasenko9fd4f962012-03-19 09:36:42 +01001186#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001187
Elliott Hughes28e98bc2018-06-14 16:59:04 -07001188#define max_addr() (~0ULL >> ((8 - current_wordsize) * 8))
1189#define max_kaddr() (~0ULL >> ((8 - current_klongsize) * 8))
1190
1191/*
1192 * When u64 is interpreted by the kernel as an address, there is a difference
1193 * in behaviour between 32-bit and 64-bit kernel in the way u64_to_user_ptr
1194 * works (32-bit kernel trims higher bits during conversion which may result
1195 * to a valid address). Since 32-bit strace cannot figure out what kind of
1196 * kernel the tracee is running on, it has to account for both possibilities.
1197 */
1198#if CAN_ARCH_BE_COMPAT_ON_64BIT_KERNEL
1199
1200/**
1201 * Print raw 64-bit value as an address if it's too big to fit in strace's
1202 * kernel_long_t.
1203 */
1204static inline void
1205print_big_u64_addr(const uint64_t addr)
1206{
1207 if (sizeof(kernel_long_t) < 8 && addr > max_kaddr()) {
1208 printaddr64(addr);
1209 tprints(" or ");
1210 }
1211}
1212#else /* !CAN_ARCH_BE_COMPAT_ON_64BIT_KERNEL */
1213# define print_big_u64_addr(addr_) ((void) 0)
1214#endif /* CAN_ARCH_BE_COMPAT_ON_64BIT_KERNEL */
1215
Elliott Hughesb7556142018-02-20 17:03:16 -08001216#if SIZEOF_KERNEL_LONG_T > 4 \
1217 && (SIZEOF_LONG < SIZEOF_KERNEL_LONG_T || !defined(current_wordsize))
1218# define ANY_WORDSIZE_LESS_THAN_KERNEL_LONG 1
1219#else
1220# define ANY_WORDSIZE_LESS_THAN_KERNEL_LONG 0
1221#endif
Elliott Hughesd35df492017-02-15 15:19:05 -08001222
1223#define DECL_PRINTNUM(name) \
1224extern bool \
1225printnum_ ## name(struct tcb *, kernel_ulong_t addr, const char *fmt) \
Elliott Hughes77c3ff82017-09-08 17:11:00 -07001226 ATTRIBUTE_FORMAT((printf, 3, 0)) \
1227/* End of DECL_PRINTNUM definition. */
1228
Elliott Hughesd35df492017-02-15 15:19:05 -08001229DECL_PRINTNUM(short);
1230DECL_PRINTNUM(int);
1231DECL_PRINTNUM(int64);
1232#undef DECL_PRINTNUM
1233
1234#define DECL_PRINTNUM_ADDR(name) \
1235extern bool \
Elliott Hughes77c3ff82017-09-08 17:11:00 -07001236printnum_addr_ ## name(struct tcb *, kernel_ulong_t addr) \
1237/* End of DECL_PRINTNUM_ADDR definition. */
1238
Elliott Hughesd35df492017-02-15 15:19:05 -08001239DECL_PRINTNUM_ADDR(int);
1240DECL_PRINTNUM_ADDR(int64);
1241#undef DECL_PRINTNUM_ADDR
1242
1243#ifndef current_wordsize
1244extern bool
1245printnum_long_int(struct tcb *, kernel_ulong_t addr,
1246 const char *fmt_long, const char *fmt_int)
1247 ATTRIBUTE_FORMAT((printf, 3, 0))
1248 ATTRIBUTE_FORMAT((printf, 4, 0));
Elliott Hughes03a418e2018-06-15 13:11:40 -07001249
Elliott Hughesd35df492017-02-15 15:19:05 -08001250extern bool printnum_addr_long_int(struct tcb *, kernel_ulong_t addr);
Elliott Hughes03a418e2018-06-15 13:11:40 -07001251
1252static inline bool
1253printnum_slong(struct tcb *tcp, kernel_ulong_t addr)
1254{
1255 return printnum_long_int(tcp, addr, "%" PRId64, "%d");
1256}
1257
1258static inline bool
1259printnum_ulong(struct tcb *tcp, kernel_ulong_t addr)
1260{
1261 return printnum_long_int(tcp, addr, "%" PRIu64, "%u");
1262}
1263
1264static inline bool
1265printnum_ptr(struct tcb *tcp, kernel_ulong_t addr)
1266{
1267 return printnum_addr_long_int(tcp, addr);
1268}
1269
Elliott Hughesd35df492017-02-15 15:19:05 -08001270#elif current_wordsize > 4
Elliott Hughes03a418e2018-06-15 13:11:40 -07001271
1272static inline bool
1273printnum_slong(struct tcb *tcp, kernel_ulong_t addr)
1274{
1275 return printnum_int64(tcp, addr, "%" PRId64);
1276}
1277
1278static inline bool
1279printnum_ulong(struct tcb *tcp, kernel_ulong_t addr)
1280{
1281 return printnum_int64(tcp, addr, "%" PRIu64);
1282}
1283
1284static inline bool
1285printnum_ptr(struct tcb *tcp, kernel_ulong_t addr)
1286{
1287 return printnum_addr_int64(tcp, addr);
1288}
1289
Elliott Hughesd35df492017-02-15 15:19:05 -08001290#else /* current_wordsize == 4 */
Elliott Hughes03a418e2018-06-15 13:11:40 -07001291
1292static inline bool
1293printnum_slong(struct tcb *tcp, kernel_ulong_t addr)
1294{
1295 return printnum_int(tcp, addr, "%d");
1296}
1297
1298static inline bool
1299printnum_ulong(struct tcb *tcp, kernel_ulong_t addr)
1300{
1301 return printnum_int(tcp, addr, "%u");
1302}
1303
1304static inline bool
1305printnum_ptr(struct tcb *tcp, kernel_ulong_t addr)
1306{
1307 return printnum_addr_int(tcp, addr);
1308}
1309
Denys Vlasenkoe015d2d2013-02-15 14:58:52 +01001310#endif
1311
Elliott Hughesd35df492017-02-15 15:19:05 -08001312#ifndef current_klongsize
1313extern bool printnum_addr_klong_int(struct tcb *, kernel_ulong_t addr);
Elliott Hughes03a418e2018-06-15 13:11:40 -07001314
1315static inline bool
1316printnum_kptr(struct tcb *tcp, kernel_ulong_t addr)
1317{
1318 return printnum_addr_klong_int(tcp, addr);
1319}
1320
Elliott Hughesd35df492017-02-15 15:19:05 -08001321#elif current_klongsize > 4
Elliott Hughes03a418e2018-06-15 13:11:40 -07001322
1323static inline bool
1324printnum_kptr(struct tcb *tcp, kernel_ulong_t addr)
1325{
1326 return printnum_addr_int64(tcp, addr);
1327}
1328
Elliott Hughesd35df492017-02-15 15:19:05 -08001329#else /* current_klongsize == 4 */
Elliott Hughes03a418e2018-06-15 13:11:40 -07001330
1331static inline bool
1332printnum_kptr(struct tcb *tcp, kernel_ulong_t addr)
1333{
1334 return printnum_addr_int(tcp, addr);
1335}
1336
Elliott Hughesd35df492017-02-15 15:19:05 -08001337#endif
1338
1339#define DECL_PRINTPAIR(name) \
1340extern bool \
1341printpair_ ## name(struct tcb *, kernel_ulong_t addr, const char *fmt) \
Elliott Hughes77c3ff82017-09-08 17:11:00 -07001342 ATTRIBUTE_FORMAT((printf, 3, 0)) \
1343/* End of DECL_PRINTPAIR definition. */
1344
Elliott Hughesd35df492017-02-15 15:19:05 -08001345DECL_PRINTPAIR(int);
1346DECL_PRINTPAIR(int64);
1347#undef DECL_PRINTPAIR
1348
1349static inline kernel_long_t
1350truncate_klong_to_current_wordsize(const kernel_long_t v)
1351{
1352#if ANY_WORDSIZE_LESS_THAN_KERNEL_LONG
1353 if (current_wordsize < sizeof(v)) {
1354 return (int) v;
1355 } else
1356#endif
1357 {
1358 return v;
1359 }
1360}
1361
1362static inline kernel_ulong_t
1363truncate_kulong_to_current_wordsize(const kernel_ulong_t v)
1364{
1365#if ANY_WORDSIZE_LESS_THAN_KERNEL_LONG
1366 if (current_wordsize < sizeof(v)) {
1367 return (unsigned int) v;
1368 } else
1369#endif
1370 {
1371 return v;
1372 }
1373}
1374
1375/*
1376 * Cast a pointer or a pointer-sized integer to kernel_ulong_t.
1377 */
1378#define ptr_to_kulong(v) ((kernel_ulong_t) (unsigned long) (v))
1379
Dmitry V. Levin84a979c2016-05-26 10:12:17 +00001380/*
Dmitry V. Levin031fc802016-08-23 00:24:10 +00001381 * Zero-extend a signed integer type to unsigned long long.
Dmitry V. Levin84a979c2016-05-26 10:12:17 +00001382 */
Dmitry V. Levin031fc802016-08-23 00:24:10 +00001383#define zero_extend_signed_to_ull(v) \
Dmitry V. Levin906dc4a2016-09-26 20:27:53 +00001384 (sizeof(v) == sizeof(char) ? (unsigned long long) (unsigned char) (v) : \
1385 sizeof(v) == sizeof(short) ? (unsigned long long) (unsigned short) (v) : \
Dmitry V. Levinb2dd4632016-08-23 00:24:17 +00001386 sizeof(v) == sizeof(int) ? (unsigned long long) (unsigned int) (v) : \
Dmitry V. Levin84a979c2016-05-26 10:12:17 +00001387 sizeof(v) == sizeof(long) ? (unsigned long long) (unsigned long) (v) : \
1388 (unsigned long long) (v))
1389
Dmitry V. Levinb685f902016-08-23 00:24:22 +00001390/*
1391 * Sign-extend an unsigned integer type to long long.
1392 */
1393#define sign_extend_unsigned_to_ll(v) \
Dmitry V. Levin906dc4a2016-09-26 20:27:53 +00001394 (sizeof(v) == sizeof(char) ? (long long) (char) (v) : \
1395 sizeof(v) == sizeof(short) ? (long long) (short) (v) : \
Dmitry V. Levinb685f902016-08-23 00:24:22 +00001396 sizeof(v) == sizeof(int) ? (long long) (int) (v) : \
1397 sizeof(v) == sizeof(long) ? (long long) (long) (v) : \
1398 (long long) (v))
1399
Elliott Hughes03a418e2018-06-15 13:11:40 -07001400extern const char *const errnoent[];
1401extern const char *const signalent[];
1402extern const unsigned int nerrnos;
1403extern const unsigned int nsignals;
1404
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +01001405extern const struct_sysent sysent0[];
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +01001406extern const struct_ioctlent ioctlent0[];
Elvira Khabirova09294222015-08-04 01:47:02 +03001407
Elliott Hughesb7556142018-02-20 17:03:16 -08001408extern const char *const personality_names[];
Elliott Hughes03a418e2018-06-15 13:11:40 -07001409/* Personality designators to be used for specifying personality */
1410extern const char *const personality_designators[];
Elliott Hughesb7556142018-02-20 17:03:16 -08001411
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +01001412#if SUPPORTED_PERSONALITIES > 1
Denys Vlasenkoa9fe13c2013-02-22 13:26:10 +01001413extern const struct_sysent *sysent;
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +01001414extern const struct_ioctlent *ioctlent;
1415#else
1416# define sysent sysent0
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +01001417# define ioctlent ioctlent0
1418#endif
Elvira Khabirova09294222015-08-04 01:47:02 +03001419
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +01001420extern unsigned nsyscalls;
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +01001421extern unsigned nioctlents;
Elliott Hughesd35df492017-02-15 15:19:05 -08001422
1423extern const unsigned int nsyscall_vec[SUPPORTED_PERSONALITIES];
1424extern const struct_sysent *const sysent_vec[SUPPORTED_PERSONALITIES];
1425extern struct inject_opts *inject_vec[SUPPORTED_PERSONALITIES];
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001426
Dmitry V. Levina8fce092016-05-21 22:53:06 +00001427#ifdef IN_MPERS_BOOTSTRAP
1428/* Transform multi-line MPERS_PRINTER_DECL statements to one-liners. */
1429# define MPERS_PRINTER_DECL(type, name, ...) MPERS_PRINTER_DECL(type, name, __VA_ARGS__)
1430#else /* !IN_MPERS_BOOTSTRAP */
1431# if SUPPORTED_PERSONALITIES > 1
1432# include "printers.h"
1433# else
1434# include "native_printer_decls.h"
1435# endif
1436# define MPERS_PRINTER_DECL(type, name, ...) type MPERS_FUNC_NAME(name)(__VA_ARGS__)
1437#endif /* !IN_MPERS_BOOTSTRAP */
Elvira Khabirova09294222015-08-04 01:47:02 +03001438
Elliott Hughesd35df492017-02-15 15:19:05 -08001439/* Checks that sysent[scno] is not out of range. */
1440static inline bool
1441scno_in_range(kernel_ulong_t scno)
1442{
1443 return scno < nsyscalls;
1444}
Denys Vlasenkoc956ef02013-02-16 14:25:56 +01001445
Elliott Hughesd35df492017-02-15 15:19:05 -08001446/*
1447 * Checks whether scno is not out of range,
1448 * its corresponding sysent[scno].sys_func is non-NULL,
1449 * and its sysent[scno].sys_flags has no TRACE_INDIRECT_SUBCALL flag set.
1450 */
1451static inline bool
1452scno_is_valid(kernel_ulong_t scno)
1453{
1454 return scno_in_range(scno)
1455 && sysent[scno].sys_func
1456 && !(sysent[scno].sys_flags & TRACE_INDIRECT_SUBCALL);
1457}
Dmitry V. Levina0bd3742015-04-07 01:36:50 +00001458
Elvira Khabirova09294222015-08-04 01:47:02 +03001459#define MPERS_FUNC_NAME__(prefix, name) prefix ## name
1460#define MPERS_FUNC_NAME_(prefix, name) MPERS_FUNC_NAME__(prefix, name)
1461#define MPERS_FUNC_NAME(name) MPERS_FUNC_NAME_(MPERS_PREFIX, name)
1462
Szabolcs Nagy34683e32015-12-15 18:32:17 +00001463#define SYS_FUNC_NAME(syscall_name) MPERS_FUNC_NAME(syscall_name)
Dmitry V. Levina0bd3742015-04-07 01:36:50 +00001464
Szabolcs Nagy34683e32015-12-15 18:32:17 +00001465#define SYS_FUNC(syscall_name) int SYS_FUNC_NAME(sys_ ## syscall_name)(struct tcb *tcp)
Elvira Khabirova09294222015-08-04 01:47:02 +03001466
Dmitry V. Levin42ceb0f2016-08-07 22:02:46 +00001467#endif /* !STRACE_DEFS_H */