blob: 35a86e00d56a2b6a704b0047d6b4eec6ca23f68c [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>
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. The name of the author may not be used to endorse or promote products
16 * derived from this software without specific prior written permission.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000028 */
29
Roland McGrath795edb12005-02-02 04:44:57 +000030#ifdef HAVE_CONFIG_H
Denys Vlasenko329655a2012-02-25 02:42:32 +010031# include "config.h"
Roland McGrath795edb12005-02-02 04:44:57 +000032#endif
Dmitry V. Levin2690fad2013-05-07 08:03:41 +000033
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +010034#include <features.h>
Denys Vlasenkoa6d91de2012-03-16 12:02:22 +010035#ifdef HAVE_STDBOOL_H
36# include <stdbool.h>
37#endif
38#include <stdint.h>
39#include <inttypes.h>
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +010040#include <sys/types.h>
Denys Vlasenkoa6d91de2012-03-16 12:02:22 +010041#ifdef STDC_HEADERS
42# include <stddef.h>
43#endif
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>
53#include <signal.h>
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +010054#include <time.h>
55#include <sys/time.h>
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +010056#include <sys/syscall.h>
Roland McGrathe6d3a292003-01-14 09:46:18 +000057
Denys Vlasenko29898142012-03-15 15:02:49 +010058#ifndef HAVE_STRERROR
59const char *strerror(int);
60#endif
Denys Vlasenko29898142012-03-15 15:02:49 +010061#ifndef HAVE_STPCPY
62/* Some libc have stpcpy, some don't. Sigh...
63 * Roll our private implementation...
64 */
65#undef stpcpy
66#define stpcpy strace_stpcpy
67extern char *stpcpy(char *dst, const char *src);
68#endif
69
Dmitry V. Levinc84d0b82015-03-29 22:42:55 +000070#if defined __GNUC__ && defined __GNUC_MINOR__
71# define GNUC_PREREQ(maj, min) \
72 ((__GNUC__ << 16) + __GNUC_MINOR__ >= ((maj) << 16) + (min))
73#else
74# define __attribute__(x) /* empty */
75# define GNUC_PREREQ(maj, min) 0
76#endif
77
78#if GNUC_PREREQ(2, 5)
79# define ATTRIBUTE_NORETURN __attribute__((__noreturn__))
80#else
81# define ATTRIBUTE_NORETURN /* empty */
82#endif
83
84#if GNUC_PREREQ(2, 7)
85# define ATTRIBUTE_FORMAT(args) __attribute__((__format__ args))
86# define ATTRIBUTE_ALIGNED(arg) __attribute__((__aligned__(arg)))
87# define ATTRIBUTE_PACKED __attribute__((__packed__))
88#else
89# define ATTRIBUTE_FORMAT(args) /* empty */
90# define ATTRIBUTE_ALIGNED(arg) /* empty */
91# define ATTRIBUTE_PACKED /* empty */
92#endif
93
94#if GNUC_PREREQ(3, 0)
95# define ATTRIBUTE_MALLOC __attribute__((__malloc__))
96#else
97# define ATTRIBUTE_MALLOC /* empty */
98#endif
99
100#if GNUC_PREREQ(3, 1)
101# define ATTRIBUTE_NOINLINE __attribute__((__noinline__))
102#else
103# define ATTRIBUTE_NOINLINE /* empty */
104#endif
105
106#if GNUC_PREREQ(4, 3)
107# define ATTRIBUTE_ALLOC_SIZE(args) __attribute__((__alloc_size__ args))
108#else
109# define ATTRIBUTE_ALLOC_SIZE(args) /* empty */
Denys Vlasenko29898142012-03-15 15:02:49 +0100110#endif
111
Denys Vlasenko513e9c22012-03-21 14:39:22 +0100112#ifndef offsetof
113# define offsetof(type, member) \
114 (((char *) &(((type *) NULL)->member)) - ((char *) (type *) NULL))
115#endif
116
Denys Vlasenko29898142012-03-15 15:02:49 +0100117#define ARRAY_SIZE(a) (sizeof(a) / sizeof((a)[0]))
118
Mike Frysingerd648f292013-05-01 23:35:30 -0400119/* macros */
120#ifndef MAX
121# define MAX(a, b) (((a) > (b)) ? (a) : (b))
122#endif
123#ifndef MIN
124# define MIN(a, b) (((a) < (b)) ? (a) : (b))
125#endif
126#define CLAMP(val, min, max) MIN(MAX(min, val), max)
127
Denys Vlasenkoe4cc7c52012-03-23 11:29:01 +0100128/* Glibc has an efficient macro for sigemptyset
129 * (it just does one or two assignments of 0 to internal vector of longs).
130 */
131#if defined(__GLIBC__) && defined(__sigemptyset) && !defined(sigemptyset)
132# define sigemptyset __sigemptyset
133#endif
134
Denys Vlasenkod9560c12011-08-19 17:41:28 +0200135/* Configuration section */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000136#ifndef DEFAULT_STRLEN
Denys Vlasenko041b3ee2011-08-18 12:48:56 +0200137/* default maximum # of bytes printed in `printstr', change with -s switch */
Denys Vlasenko329655a2012-02-25 02:42:32 +0100138# define DEFAULT_STRLEN 32
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000139#endif
140#ifndef DEFAULT_ACOLUMN
Denys Vlasenko329655a2012-02-25 02:42:32 +0100141# define DEFAULT_ACOLUMN 40 /* default alignment column for results */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000142#endif
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +0100143/*
144 * Maximum number of args to a syscall.
Denys Vlasenkod9560c12011-08-19 17:41:28 +0200145 *
Denys Vlasenkoaa925db2012-02-25 15:19:02 +0100146 * Make sure that all entries in all syscallent.h files have nargs <= MAX_ARGS!
Dmitry V. Levin2690fad2013-05-07 08:03:41 +0000147 * linux/<ARCH>/syscallent*.h:
148 * all have nargs <= 6 except mips o32 which has nargs <= 7.
Denys Vlasenkod9560c12011-08-19 17:41:28 +0200149 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000150#ifndef MAX_ARGS
Dmitry V. Levin2690fad2013-05-07 08:03:41 +0000151# ifdef LINUX_MIPSO32
152# define MAX_ARGS 7
153# else
154# define MAX_ARGS 6
155# endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000156#endif
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +0100157/* default sorting method for call profiling */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000158#ifndef DEFAULT_SORTBY
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +0100159# define DEFAULT_SORTBY "time"
John Hughes58265892001-10-18 15:13:53 +0000160#endif
Denys Vlasenkod27809c2013-02-12 12:50:10 +0100161/*
162 * Experimental code using PTRACE_SEIZE can be enabled here.
Denys Vlasenko9472a272013-02-12 11:43:46 +0100163 * This needs Linux kernel 3.4.x or later to work.
164 */
165#define USE_SEIZE 1
Denys Vlasenko05f32512013-02-26 12:00:34 +0100166/* To force NOMMU build, set to 1 */
Denys Vlasenko5c9d8f42013-02-19 15:30:12 +0100167#define NOMMU_SYSTEM 0
Denys Vlasenko76da8312013-07-16 12:18:59 +0200168/*
169 * Set to 1 to use speed-optimized vfprintf implementation.
170 * It results in strace using about 5% less CPU in user space
171 * (compared to glibc version).
172 * But strace spends a lot of time in kernel space,
173 * so overall it does not appear to be a significant win.
174 * Thus disabled by default.
175 */
176#define USE_CUSTOM_PRINTF 0
Denys Vlasenko5c9d8f42013-02-19 15:30:12 +0100177
Denys Vlasenko47932212013-06-30 23:53:49 +0200178#ifndef ERESTARTSYS
179# define ERESTARTSYS 512
180#endif
181#ifndef ERESTARTNOINTR
182# define ERESTARTNOINTR 513
183#endif
184#ifndef ERESTARTNOHAND
185# define ERESTARTNOHAND 514
186#endif
187#ifndef ERESTART_RESTARTBLOCK
188# define ERESTART_RESTARTBLOCK 516
189#endif
190
Denys Vlasenko9472a272013-02-12 11:43:46 +0100191#if defined(SPARC) || defined(SPARC64)
Denys Vlasenko329655a2012-02-25 02:42:32 +0100192# define PERSONALITY0_WORDSIZE 4
Denys Vlasenko329655a2012-02-25 02:42:32 +0100193# if defined(SPARC64)
Denys Vlasenko329655a2012-02-25 02:42:32 +0100194# define SUPPORTED_PERSONALITIES 2
Denys Vlasenkodf4dd8b2015-03-25 14:16:08 +0100195# define PERSONALITY1_WORDSIZE 8
196# endif
197#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000198
Michal Ludvig0e035502002-09-23 15:41:01 +0000199#ifdef X86_64
H.J. Lu35be5812012-04-16 13:00:01 +0200200# define SUPPORTED_PERSONALITIES 3
Denys Vlasenko329655a2012-02-25 02:42:32 +0100201# define PERSONALITY0_WORDSIZE 8
202# define PERSONALITY1_WORDSIZE 4
H.J. Lu35be5812012-04-16 13:00:01 +0200203# define PERSONALITY2_WORDSIZE 4
Roland McGrathee9d4352002-12-18 04:16:10 +0000204#endif
205
H.J. Lu085e4282012-04-17 11:05:04 -0700206#ifdef X32
H.J. Lu085e4282012-04-17 11:05:04 -0700207# define SUPPORTED_PERSONALITIES 2
208# define PERSONALITY0_WORDSIZE 4
209# define PERSONALITY1_WORDSIZE 4
210#endif
211
Roland McGrath56703312008-05-20 01:35:55 +0000212#ifdef ARM
Denys Vlasenko7270de52013-02-21 15:46:34 +0100213/* one personality */
Roland McGrath56703312008-05-20 01:35:55 +0000214#endif
215
Steve McIntyre890a5ca2012-11-10 11:24:48 +0000216#ifdef AARCH64
Steve McIntyre890a5ca2012-11-10 11:24:48 +0000217/* The existing ARM personality, then AArch64 */
218# define SUPPORTED_PERSONALITIES 2
219# define PERSONALITY0_WORDSIZE 4
220# define PERSONALITY1_WORDSIZE 8
Steve McIntyre890a5ca2012-11-10 11:24:48 +0000221# define DEFAULT_PERSONALITY 1
222#endif
223
Andreas Schwabd69fa492010-07-12 21:39:57 +0200224#ifdef POWERPC64
Denys Vlasenko329655a2012-02-25 02:42:32 +0100225# define SUPPORTED_PERSONALITIES 2
226# define PERSONALITY0_WORDSIZE 8
227# define PERSONALITY1_WORDSIZE 4
Andreas Schwabd69fa492010-07-12 21:39:57 +0200228#endif
229
Chris Metcalf0b99a8a2013-02-05 17:48:33 +0100230#ifdef TILE
Chris Metcalf0b99a8a2013-02-05 17:48:33 +0100231# define SUPPORTED_PERSONALITIES 2
232# define PERSONALITY0_WORDSIZE 8
233# define PERSONALITY1_WORDSIZE 4
234# ifdef __tilepro__
Chris Metcalf0b99a8a2013-02-05 17:48:33 +0100235# define DEFAULT_PERSONALITY 1
236# endif
237#endif
238
Denys Vlasenko9472a272013-02-12 11:43:46 +0100239#ifndef SUPPORTED_PERSONALITIES
240# define SUPPORTED_PERSONALITIES 1
241#endif
242#ifndef DEFAULT_PERSONALITY
243# define DEFAULT_PERSONALITY 0
244#endif
Denys Vlasenko9fd4f962012-03-19 09:36:42 +0100245#ifndef PERSONALITY0_WORDSIZE
James Hogan3b09ebe2014-05-02 14:15:41 +0100246# define PERSONALITY0_WORDSIZE SIZEOF_LONG
Denys Vlasenko9fd4f962012-03-19 09:36:42 +0100247#endif
248
Denys Vlasenkoa9fe13c2013-02-22 13:26:10 +0100249typedef struct sysent {
Denys Vlasenko74ec14f2013-02-21 16:13:47 +0100250 unsigned nargs;
251 int sys_flags;
252 int (*sys_func)();
253 const char *sys_name;
Denys Vlasenkoa9fe13c2013-02-22 13:26:10 +0100254} struct_sysent;
Denys Vlasenko74ec14f2013-02-21 16:13:47 +0100255
Denys Vlasenkoa9fe13c2013-02-22 13:26:10 +0100256typedef struct ioctlent {
Denys Vlasenko74ec14f2013-02-21 16:13:47 +0100257 const char *symbol;
Dmitry V. Levinc7afb482015-01-19 18:44:21 +0000258 unsigned int code;
Denys Vlasenkoa9fe13c2013-02-22 13:26:10 +0100259} struct_ioctlent;
Denys Vlasenko74ec14f2013-02-21 16:13:47 +0100260
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000261/* Trace Control Block */
262struct tcb {
Denys Vlasenkod9ec1412011-08-20 01:39:05 +0200263 int flags; /* See below for TCB_ values */
Denys Vlasenkofadbf662013-06-26 14:14:29 +0200264 int pid; /* If 0, this tcb is free */
Denys Vlasenko74ec14f2013-02-21 16:13:47 +0100265 int qual_flg; /* qual_flags[scno] or DEFAULT_QUAL_FLAGS + RAW */
Denys Vlasenko92d443c2011-08-25 00:25:08 +0200266 int u_error; /* Error code */
267 long scno; /* System call number */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000268 long u_arg[MAX_ARGS]; /* System call arguments */
H.J. Lu35be5812012-04-16 13:00:01 +0200269#if defined(LINUX_MIPSN32) || defined(X32)
Denys Vlasenko9472a272013-02-12 11:43:46 +0100270 long long ext_arg[MAX_ARGS];
H.J. Ludd0130b2012-04-16 12:16:45 +0200271 long long u_lrval; /* long long return value */
272#endif
Denys Vlasenko9472a272013-02-12 11:43:46 +0100273 long u_rval; /* Return value */
Dmitry V. Levina5a839a2011-12-23 00:50:49 +0000274#if SUPPORTED_PERSONALITIES > 1
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +0000275 unsigned int currpers; /* Personality at the time of scno update */
Dmitry V. Levina5a839a2011-12-23 00:50:49 +0000276#endif
Dmitry V. Levin204c2bc2015-07-08 14:10:56 +0000277 int sys_func_rval; /* Syscall entry parser's return value */
Andreas Schwabccdff482009-10-27 16:27:13 +0100278 int curcol; /* Output column for this process */
Denys Vlasenko92d443c2011-08-25 00:25:08 +0200279 FILE *outf; /* Output file for this process */
Wichert Akkerman43a74822000-06-27 17:33:32 +0000280 const char *auxstr; /* Auxiliary info from syscall (see RVAL_STR) */
Denys Vlasenkoa9fe13c2013-02-22 13:26:10 +0100281 const struct_sysent *s_ent; /* sysent[scno] or dummy struct for bad scno */
Denys Vlasenko8497b622015-03-21 17:51:52 +0100282 const struct_sysent *s_prev_ent; /* for "resuming interrupted SYSCALL" msg */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000283 struct timeval stime; /* System time usage as of last process wait */
284 struct timeval dtime; /* Delta for system time usage */
285 struct timeval etime; /* Syscall entry time */
Luca Clementi327064b2013-07-23 00:11:35 -0700286
287#ifdef USE_LIBUNWIND
288 struct UPT_info* libunwind_ui;
289 struct mmap_cache_t* mmap_cache;
290 unsigned int mmap_cache_size;
Masatake YAMATO9bc65612014-04-16 15:33:07 +0900291 unsigned int mmap_cache_generation;
Masatake YAMATOf8e39d72014-04-16 15:33:06 +0900292 struct queue_t* queue;
Luca Clementi327064b2013-07-23 00:11:35 -0700293#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000294};
295
296/* TCB flags */
Denys Vlasenko68269aa2012-03-15 13:02:31 +0100297/* We have attached to this process, but did not see it stopping yet */
Denys Vlasenkofadbf662013-06-26 14:14:29 +0200298#define TCB_STARTUP 0x01
299#define TCB_IGNORE_ONE_SIGSTOP 0x02 /* Next SIGSTOP is to be ignored */
Denys Vlasenkob88f9612011-08-21 18:03:23 +0200300/*
301 * Are we in system call entry or in syscall exit?
302 *
303 * This bit is set after all syscall entry processing is done.
304 * Therefore, this bit will be set when next ptrace stop occurs,
305 * which should be syscall exit stop. Other stops which are possible
306 * directly after syscall entry (death, ptrace event stop)
307 * are simpler and handled without calling trace_syscall(), therefore
308 * the places where TCB_INSYSCALL can be set but we aren't in syscall stop
309 * are limited to trace(), this condition is never observed in trace_syscall()
310 * and below.
311 * The bit is cleared after all syscall exit processing is done.
Denys Vlasenkob88f9612011-08-21 18:03:23 +0200312 *
313 * Use entering(tcp) / exiting(tcp) to check this bit to make code more readable.
314 */
Denys Vlasenkofadbf662013-06-26 14:14:29 +0200315#define TCB_INSYSCALL 0x04
316#define TCB_ATTACHED 0x08 /* We attached to it already */
Dmitry V. Levin23ce9e42015-02-08 13:05:53 +0000317#define TCB_REPRINT 0x10 /* We should reprint this syscall on exit */
318#define TCB_FILTERED 0x20 /* This system call has been filtered out */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000319
320/* qualifier flags */
Denys Vlasenko74ec14f2013-02-21 16:13:47 +0100321#define QUAL_TRACE 0x001 /* this system call should be traced */
322#define QUAL_ABBREV 0x002 /* abbreviate the structures of this syscall */
323#define QUAL_VERBOSE 0x004 /* decode the structures of this syscall */
324#define QUAL_RAW 0x008 /* print all args in hex for this syscall */
325#define QUAL_SIGNAL 0x010 /* report events with this signal */
Denys Vlasenkoc1540fe2013-02-21 16:17:08 +0100326#define QUAL_READ 0x020 /* dump data read on this file descriptor */
327#define QUAL_WRITE 0x040 /* dump data written to this file descriptor */
Denys Vlasenkoa585c9d2013-02-21 16:15:43 +0100328typedef uint8_t qualbits_t;
Denys Vlasenkoc1540fe2013-02-21 16:17:08 +0100329#define UNDEFINED_SCNO 0x100 /* Used only in tcp->qual_flg */
Denys Vlasenko74ec14f2013-02-21 16:13:47 +0100330
331#define DEFAULT_QUAL_FLAGS (QUAL_TRACE | QUAL_ABBREV | QUAL_VERBOSE)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000332
333#define entering(tcp) (!((tcp)->flags & TCB_INSYSCALL))
334#define exiting(tcp) ((tcp)->flags & TCB_INSYSCALL)
335#define syserror(tcp) ((tcp)->u_error != 0)
Denys Vlasenko40d63b92013-02-22 13:23:38 +0100336#define verbose(tcp) ((tcp)->qual_flg & QUAL_VERBOSE)
337#define abbrev(tcp) ((tcp)->qual_flg & QUAL_ABBREV)
Grant Edwards8a082772011-04-07 20:25:40 +0000338#define filtered(tcp) ((tcp)->flags & TCB_FILTERED)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000339
340struct xlat {
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +0000341 unsigned int val;
Dmitry V. Levin30145dd2010-09-06 22:08:24 +0000342 const char *str;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000343};
Dmitry V. Levina69ddcb2014-02-05 01:28:45 +0000344#define XLAT(x) { x, #x }
Dmitry V. Levin82b1ea72014-02-05 02:18:52 +0000345#define XLAT_END { 0, NULL }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000346
Denys Vlasenkof535b542009-01-13 18:30:55 +0000347extern const struct xlat addrfams[];
Dmitry V. Levin43b110b2014-12-06 03:53:16 +0000348extern const struct xlat at_flags[];
Denys Vlasenkof535b542009-01-13 18:30:55 +0000349extern const struct xlat open_access_modes[];
Dmitry V. Levin43b110b2014-12-06 03:53:16 +0000350extern const struct xlat open_mode_flags[];
Denys Vlasenko86738a22013-02-17 14:31:55 +0100351extern const struct xlat whence_codes[];
Denys Vlasenkof535b542009-01-13 18:30:55 +0000352
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000353/* Format of syscall return values */
354#define RVAL_DECIMAL 000 /* decimal format */
355#define RVAL_HEX 001 /* hex format */
356#define RVAL_OCTAL 002 /* octal format */
357#define RVAL_UDECIMAL 003 /* unsigned decimal format */
H.J. Ludd0130b2012-04-16 12:16:45 +0200358#if defined(LINUX_MIPSN32) || defined(X32)
359# if 0 /* unused so far */
360# define RVAL_LDECIMAL 004 /* long decimal format */
361# define RVAL_LHEX 005 /* long hex format */
362# define RVAL_LOCTAL 006 /* long octal format */
363# endif
364# define RVAL_LUDECIMAL 007 /* long unsigned decimal format */
365#endif
Zubin Mithra64aa1b12014-06-04 08:30:41 +0530366#define RVAL_FD 010 /* file descriptor */
367#define RVAL_MASK 017 /* mask for these values */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000368
Zubin Mithra64aa1b12014-06-04 08:30:41 +0530369#define RVAL_STR 020 /* Print `auxstr' field after return val */
370#define RVAL_NONE 040 /* Print nothing */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000371
Dmitry V. Levin204c2bc2015-07-08 14:10:56 +0000372#define RVAL_DECODED 0100 /* syscall decoding finished */
373
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000374#define TRACE_FILE 001 /* Trace file-related syscalls. */
375#define TRACE_IPC 002 /* Trace IPC-related syscalls. */
376#define TRACE_NETWORK 004 /* Trace network-related syscalls. */
377#define TRACE_PROCESS 010 /* Trace process-related syscalls. */
378#define TRACE_SIGNAL 020 /* Trace signal-related syscalls. */
Roland McGrath2fe7b132005-07-05 03:25:35 +0000379#define TRACE_DESC 040 /* Trace file descriptor-related syscalls. */
Namhyung Kim96792962012-10-24 11:41:57 +0900380#define TRACE_MEMORY 0100 /* Trace memory mapping-related syscalls. */
381#define SYSCALL_NEVER_FAILS 0200 /* Syscall is always successful. */
Masatake YAMATO1d78d222014-04-16 15:33:11 +0900382#define STACKTRACE_INVALIDATE_CACHE 0400 /* Trigger proc/maps cache updating */
383#define STACKTRACE_CAPTURE_ON_ENTER 01000 /* Capture stacktrace on "entering" stage */
Dmitry V. Levin3b499ca2015-01-10 22:01:35 +0300384#define TRACE_INDIRECT_SUBCALL 02000 /* Syscall is an indirect socket/ipc subcall. */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000385
Dmitry V. Levin80f7db12014-12-13 21:49:01 +0000386#if defined(ARM) || defined(AARCH64) \
387 || defined(I386) || defined(X32) || defined(X86_64) \
Mike Frysingercc07f662015-02-26 02:15:33 -0500388 || defined(IA64) \
Dmitry V. Levin80f7db12014-12-13 21:49:01 +0000389 || defined(BFIN) \
390 || defined(M68K) \
391 || defined(MICROBLAZE) \
392 || defined(S390) \
393 || defined(SH) || defined(SH64) \
394 || defined(SPARC) || defined(SPARC64) \
395 /**/
396# define NEED_UID16_PARSERS 1
397#else
398# define NEED_UID16_PARSERS 0
399#endif
400
Dmitry V. Levine3a7ef52010-03-28 19:24:54 +0000401typedef enum {
402 CFLAG_NONE = 0,
403 CFLAG_ONLY_STATS,
404 CFLAG_BOTH
405} cflag_t;
Dmitry V. Levine3a7ef52010-03-28 19:24:54 +0000406extern cflag_t cflag;
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +0100407extern bool debug_flag;
408extern bool Tflag;
Anton Blancharda34dead2013-07-12 12:22:06 +0200409extern bool iflag;
Mark Hillse53bf232014-05-28 17:52:40 +0100410extern bool count_wallclock;
Daniel P. Berrange01997cf2013-05-13 11:30:55 +0100411extern unsigned int qflag;
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +0100412extern bool not_failing_only;
Dmitry V. Levin45e7b182014-08-08 23:38:26 +0000413extern unsigned int show_fd_path;
Denys Vlasenko2a3d2752013-05-14 16:07:46 +0200414extern bool hide_log_until_execve;
Denys Vlasenko38cfe7c2013-03-05 16:01:53 +0100415/* are we filtering traces based on paths? */
416extern const char **paths_selected;
417#define tracing_paths (paths_selected != NULL)
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +0100418extern unsigned xflag;
419extern unsigned followfork;
Luca Clementi327064b2013-07-23 00:11:35 -0700420#ifdef USE_LIBUNWIND
421/* if this is true do the stack trace for every system call */
422extern bool stack_trace_enabled;
423#endif
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +0100424extern unsigned ptrace_setoptions;
425extern unsigned max_strlen;
426extern unsigned os_release;
427#undef KERNEL_VERSION
428#define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +0100429
Dmitry V. Levina7945a32006-12-13 17:10:11 +0000430enum bitness_t { BITNESS_CURRENT = 0, BITNESS_32 };
431
Dmitry V. Levin5647cf82015-03-29 22:45:03 +0000432void error_msg(const char *fmt, ...) ATTRIBUTE_FORMAT((printf, 1, 2));
433void perror_msg(const char *fmt, ...) ATTRIBUTE_FORMAT((printf, 1, 2));
434void error_msg_and_die(const char *fmt, ...)
435 ATTRIBUTE_FORMAT((printf, 1, 2)) ATTRIBUTE_NORETURN;
436void perror_msg_and_die(const char *fmt, ...)
437 ATTRIBUTE_FORMAT((printf, 1, 2)) ATTRIBUTE_NORETURN;
438void die_out_of_memory(void) ATTRIBUTE_NORETURN;
Denys Vlasenko75422762011-05-27 14:36:01 +0200439
Dmitry V. Levin3e9d71f2015-05-25 20:41:02 +0000440void *xmalloc(size_t size) ATTRIBUTE_MALLOC ATTRIBUTE_ALLOC_SIZE((1));
441void *xcalloc(size_t nmemb, size_t size)
442 ATTRIBUTE_MALLOC ATTRIBUTE_ALLOC_SIZE((1, 2));
443void *xreallocarray(void *ptr, size_t nmemb, size_t size)
444 ATTRIBUTE_ALLOC_SIZE((2, 3));
445char *xstrdup(const char *str) ATTRIBUTE_MALLOC;
446
Denys Vlasenko76da8312013-07-16 12:18:59 +0200447#if USE_CUSTOM_PRINTF
Denys Vlasenko6e4f3c12012-04-16 18:22:19 +0200448/*
Denys Vlasenko6e4f3c12012-04-16 18:22:19 +0200449 * See comment in vsprintf.c for allowed formats.
450 * Short version: %h[h]u, %zu, %tu are not allowed, use %[l[l]]u.
Denys Vlasenko6e4f3c12012-04-16 18:22:19 +0200451 */
452int strace_vfprintf(FILE *fp, const char *fmt, va_list args);
453#else
454# define strace_vfprintf vfprintf
455#endif
456
Dmitry V. Levin30145dd2010-09-06 22:08:24 +0000457extern void set_sortby(const char *);
Andreas Schwabe5355de2009-10-27 16:56:43 +0100458extern void set_overhead(int);
Dmitry V. Levin30145dd2010-09-06 22:08:24 +0000459extern void qualify(const char *);
Denys Vlasenko5a2483b2013-07-01 12:49:14 +0200460extern void print_pc(struct tcb *);
Andreas Schwabe5355de2009-10-27 16:56:43 +0100461extern int trace_syscall(struct tcb *);
Dmitry V. Levinac5133d2014-05-29 18:10:00 +0000462extern void count_syscall(struct tcb *, const struct timeval *);
Denys Vlasenkod63b0d52012-03-23 11:26:36 +0100463extern void call_summary(FILE *);
464
Dmitry V. Levin9a176c92015-02-13 21:56:50 +0000465extern void clear_regs(void);
Denys Vlasenkoce7d9532013-02-05 16:36:13 +0100466extern void get_regs(pid_t pid);
Denys Vlasenko8497b622015-03-21 17:51:52 +0100467extern int get_scno(struct tcb *tcp);
Dmitry V. Levin9a176c92015-02-13 21:56:50 +0000468
Denys Vlasenko7e69ed92015-03-21 19:50:53 +0100469extern int umoven(struct tcb *, long, unsigned int, void *);
Denys Vlasenkod63b0d52012-03-23 11:26:36 +0100470#define umove(pid, addr, objp) \
Denys Vlasenko7e69ed92015-03-21 19:50:53 +0100471 umoven((pid), (addr), sizeof(*(objp)), (void *) (objp))
Dmitry V. Levin332a3262015-07-05 22:09:29 +0000472extern int umoven_or_printaddr(struct tcb *, long, unsigned int, void *);
473#define umove_or_printaddr(pid, addr, objp) \
474 umoven_or_printaddr((pid), (addr), sizeof(*(objp)), (void *) (objp))
Dmitry V. Levin97e59962015-01-14 08:05:45 +0000475extern int umovestr(struct tcb *, long, unsigned int, char *);
Denys Vlasenko752e5a02013-06-28 14:35:47 +0200476extern int upeek(int pid, long, long *);
Dmitry V. Levin78ed3f32015-03-23 00:04:27 +0000477
Dmitry V. Levin8e8d7d22015-03-23 23:14:08 +0000478#if defined ALPHA || defined IA64 || defined MIPS \
479 || defined SH || defined SPARC || defined SPARC64
Dmitry V. Levin78ed3f32015-03-23 00:04:27 +0000480# define HAVE_GETRVAL2
Denys Vlasenkod63b0d52012-03-23 11:26:36 +0100481extern long getrval2(struct tcb *);
Dmitry V. Levin78ed3f32015-03-23 00:04:27 +0000482#else
483# undef HAVE_GETRVAL2
Denys Vlasenkod63b0d52012-03-23 11:26:36 +0100484#endif
Denys Vlasenkod63b0d52012-03-23 11:26:36 +0100485
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +0000486extern const char *signame(const int);
Denys Vlasenko7239dbc2013-03-05 15:46:34 +0100487extern void pathtrace_select(const char *);
Denys Vlasenkod63b0d52012-03-23 11:26:36 +0100488extern int pathtrace_match(struct tcb *);
Denys Vlasenko61ad0a42013-03-06 18:24:34 +0100489extern int getfdpath(struct tcb *, int, char *, unsigned);
Denys Vlasenkod63b0d52012-03-23 11:26:36 +0100490
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +0000491extern const char *xlookup(const struct xlat *, const unsigned int);
Dmitry V. Levin4176d532014-09-21 22:42:45 +0000492extern const char *xlat_search(const struct xlat *, const size_t, const unsigned int);
Denys Vlasenkod63b0d52012-03-23 11:26:36 +0100493
Dmitry V. Levinea1fea62015-03-31 19:45:08 +0000494extern unsigned long get_pagesize(void);
Dmitry V. Levinccee1692012-03-25 21:49:48 +0000495extern int string_to_uint(const char *str);
Denys Vlasenkob338f2d2013-11-09 20:40:31 +0100496extern int next_set_bit(const void *bit_array, unsigned cur_bit, unsigned size_bits);
Dmitry V. Levinccee1692012-03-25 21:49:48 +0000497
Dmitry V. Levin513e96e2015-01-26 01:17:08 +0000498#define QUOTE_0_TERMINATED 0x01
499#define QUOTE_OMIT_LEADING_TRAILING_QUOTES 0x02
500
501extern int print_quoted_string(const char *, unsigned int, unsigned int);
502
Denys Vlasenkoc9d0fc02013-02-17 22:41:33 +0100503/* a refers to the lower numbered u_arg,
504 * b refers to the higher numbered u_arg
Denys Vlasenkod63b0d52012-03-23 11:26:36 +0100505 */
Dmitry V. Levind93c4e82015-06-17 20:09:13 +0000506#ifdef HAVE_LITTLE_ENDIAN_LONG_LONG
Denys Vlasenkoc9d0fc02013-02-17 22:41:33 +0100507# define LONG_LONG(a,b) \
508 ((long long)((unsigned long long)(unsigned)(a) | ((unsigned long long)(b)<<32)))
509#else
510# define LONG_LONG(a,b) \
511 ((long long)((unsigned long long)(unsigned)(b) | ((unsigned long long)(a)<<32)))
Denys Vlasenkod63b0d52012-03-23 11:26:36 +0100512#endif
Dmitry V. Levin1ea64732015-01-10 00:08:58 +0000513extern int getllval(struct tcb *, unsigned long long *, int);
Dmitry V. Levinf523f102015-02-17 22:47:25 +0000514extern int printllval(struct tcb *, const char *, int)
Dmitry V. Levin5647cf82015-03-29 22:45:03 +0000515 ATTRIBUTE_FORMAT((printf, 2, 0));
Denys Vlasenkoc9d0fc02013-02-17 22:41:33 +0100516
Dmitry V. Levin332a3262015-07-05 22:09:29 +0000517extern void printaddr(long);
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +0000518extern void printxval(const struct xlat *, const unsigned int, const char *);
Andreas Schwabe5355de2009-10-27 16:56:43 +0100519extern int printargs(struct tcb *);
Denys Vlasenko72879c62012-02-27 14:18:02 +0100520extern int printargs_lu(struct tcb *);
521extern int printargs_ld(struct tcb *);
Denys Vlasenko4924dbd2011-08-19 18:06:46 +0200522extern void addflags(const struct xlat *, int);
Andreas Schwabe5355de2009-10-27 16:56:43 +0100523extern int printflags(const struct xlat *, int, const char *);
524extern const char *sprintflags(const char *, const struct xlat *, int);
Dmitry V. Levin9514ac72014-12-06 03:53:16 +0000525extern const char *sprintmode(int);
Dmitry V. Levinb1a01b82014-12-06 03:53:16 +0000526extern const char *sprinttime(time_t);
Masatake YAMATO02f9f6b2014-10-15 22:11:43 +0900527extern void dumpiov_in_msghdr(struct tcb *, long);
Masatake YAMATOa807dce2014-11-07 01:23:26 +0900528extern void dumpiov_in_mmsghdr(struct tcb *, long);
Andreas Schwabe5355de2009-10-27 16:56:43 +0100529extern void dumpiov(struct tcb *, int, long);
530extern void dumpstr(struct tcb *, long, int);
Denys Vlasenkob5d43b82012-04-28 14:58:35 +0200531extern void printstr(struct tcb *, long, long);
Dmitry V. Levinc88163e2015-07-05 22:09:29 +0000532extern void printnum_short(struct tcb *, long, const char *)
533 ATTRIBUTE_FORMAT((printf, 3, 0));
Dmitry V. Levinf523f102015-02-17 22:47:25 +0000534extern void printnum_int(struct tcb *, long, const char *)
Dmitry V. Levin5647cf82015-03-29 22:45:03 +0000535 ATTRIBUTE_FORMAT((printf, 3, 0));
Dmitry V. Levinf523f102015-02-17 22:47:25 +0000536extern void printnum_long(struct tcb *, long, const char *)
Dmitry V. Levin5647cf82015-03-29 22:45:03 +0000537 ATTRIBUTE_FORMAT((printf, 3, 0));
Dmitry V. Levinc88163e2015-07-05 22:09:29 +0000538#if SIZEOF_LONG == 8
539# define printnum_int64 printnum_long
540#else
541extern void printnum_int64(struct tcb *, long, const char *)
542 ATTRIBUTE_FORMAT((printf, 3, 0));
543#endif
Andreas Schwabe5355de2009-10-27 16:56:43 +0100544extern void printpath(struct tcb *, long);
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +0000545extern void printpathn(struct tcb *, long, unsigned int);
Denys Vlasenkoa1d541e2012-01-20 11:04:04 +0100546#define TIMESPEC_TEXT_BUFSIZE (sizeof(long)*3 * 2 + sizeof("{%u, %u}"))
547#define TIMEVAL_TEXT_BUFSIZE TIMESPEC_TEXT_BUFSIZE
Andreas Schwabe5355de2009-10-27 16:56:43 +0100548extern void printtv_bitness(struct tcb *, long, enum bitness_t, int);
Denys Vlasenkod63b0d52012-03-23 11:26:36 +0100549#define printtv(tcp, addr) \
550 printtv_bitness((tcp), (addr), BITNESS_CURRENT, 0)
551#define printtv_special(tcp, addr) \
552 printtv_bitness((tcp), (addr), BITNESS_CURRENT, 1)
Denys Vlasenkoa1d541e2012-01-20 11:04:04 +0100553extern char *sprinttv(char *, struct tcb *, long, enum bitness_t, int special);
Andreas Schwabe5355de2009-10-27 16:56:43 +0100554extern void print_timespec(struct tcb *, long);
555extern void sprint_timespec(char *, struct tcb *, long);
Dmitry V. Levin537c9642015-03-27 23:28:15 +0000556extern void printsiginfo(const siginfo_t *, bool);
Denys Vlasenkod4d3ede2013-02-13 16:31:32 +0100557extern void printsiginfo_at(struct tcb *tcp, long addr);
Dmitry V. Levin31382132011-03-04 05:08:02 +0300558extern void printfd(struct tcb *, int);
Masatake YAMATOf605e922014-12-10 12:55:06 +0900559extern bool print_sockaddr_by_inode(const unsigned long, const char *);
Dmitry V. Levin99db95d2014-02-05 04:13:18 +0000560extern void print_dirfd(struct tcb *, int);
Andreas Schwabe5355de2009-10-27 16:56:43 +0100561extern void printsock(struct tcb *, long, int);
562extern void print_sock_optmgmt(struct tcb *, long, int);
563extern void printrusage(struct tcb *, long);
Sergei Trofimovich02a08fb2011-08-11 18:04:53 +0300564#ifdef ALPHA
565extern void printrusage32(struct tcb *, long);
566#endif
Dmitry V. Levin1da7c952014-12-13 18:24:13 +0000567extern void printuid(const char *, const unsigned int);
Denys Vlasenko5e133aa2013-07-18 17:02:21 +0200568extern void print_sigset_addr_len(struct tcb *, long, long);
Dmitry V. Levin74219ea2015-03-06 01:47:18 +0000569extern const char *sprintsigmask_n(const char *, const void *, unsigned int);
570#define tprintsigmask_addr(prefix, mask) \
571 tprints(sprintsigmask_n((prefix), (mask), sizeof(mask)))
Andreas Schwabe5355de2009-10-27 16:56:43 +0100572extern void printsignal(int);
Dmitry V. Levin88849682011-06-13 22:58:44 +0000573extern void tprint_iov(struct tcb *, unsigned long, unsigned long, int decode_iov);
Denys Vlasenkoe0bc2222012-04-28 14:26:18 +0200574extern void tprint_iov_upto(struct tcb *, unsigned long, unsigned long, int decode_iov, unsigned long);
Elliott Hughes22e34b92014-09-23 19:09:50 -0700575extern void tprint_open_modes(int);
576extern const char *sprint_open_modes(int);
Mike Frysinger0cbed352012-04-04 22:22:01 -0400577extern void print_loff_t(struct tcb *, long);
Dmitry V. Levin2af69032015-02-04 23:50:50 +0000578extern void print_seccomp_filter(struct tcb *tcp, unsigned long);
Grant Edwards8a082772011-04-07 20:25:40 +0000579
Dmitry V. Levinc7afb482015-01-19 18:44:21 +0000580extern int block_ioctl(struct tcb *, const unsigned int, long);
Etienne Gemsa4f750b92015-02-20 17:14:10 +0100581extern int evdev_ioctl(struct tcb *, const unsigned int, long);
Dmitry V. Levinc7afb482015-01-19 18:44:21 +0000582extern int loop_ioctl(struct tcb *, const unsigned int, long);
583extern int mtd_ioctl(struct tcb *, const unsigned int, long);
584extern int ptp_ioctl(struct tcb *, const unsigned int, long);
585extern int rtc_ioctl(struct tcb *, const unsigned int, long);
586extern int scsi_ioctl(struct tcb *, const unsigned int, long);
587extern int sock_ioctl(struct tcb *, const unsigned int, long);
588extern int term_ioctl(struct tcb *, const unsigned int, long);
589extern int ubi_ioctl(struct tcb *, const unsigned int, long);
590extern int v4l2_ioctl(struct tcb *, const unsigned int, long);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000591
Dmitry V. Levin447db452014-05-29 17:59:01 +0000592extern int tv_nz(const struct timeval *);
593extern int tv_cmp(const struct timeval *, const struct timeval *);
594extern double tv_float(const struct timeval *);
595extern void tv_add(struct timeval *, const struct timeval *, const struct timeval *);
596extern void tv_sub(struct timeval *, const struct timeval *, const struct timeval *);
597extern void tv_mul(struct timeval *, const struct timeval *, int);
598extern void tv_div(struct timeval *, const struct timeval *, int);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000599
Luca Clementi327064b2013-07-23 00:11:35 -0700600#ifdef USE_LIBUNWIND
Masatake YAMATO61413922014-04-16 15:33:02 +0900601extern void unwind_init(void);
602extern void unwind_tcb_init(struct tcb *tcp);
603extern void unwind_tcb_fin(struct tcb *tcp);
604extern void unwind_cache_invalidate(struct tcb* tcp);
605extern void unwind_print_stacktrace(struct tcb* tcp);
Masatake YAMATOf8e39d72014-04-16 15:33:06 +0900606extern void unwind_capture_stacktrace(struct tcb* tcp);
Luca Clementi327064b2013-07-23 00:11:35 -0700607#endif
608
Denys Vlasenko7de265d2012-03-13 11:44:31 +0100609/* Strace log generation machinery.
610 *
611 * printing_tcp: tcb which has incomplete line being printed right now.
612 * NULL if last line has been completed ('\n'-terminated).
613 * printleader(tcp) examines it, finishes incomplete line if needed,
614 * the sets it to tcp.
615 * line_ended() clears printing_tcp and resets ->curcol = 0.
616 * tcp->curcol == 0 check is also used to detect completeness
617 * of last line, since in -ff mode just checking printing_tcp for NULL
618 * is not enough.
619 *
620 * If you change this code, test log generation in both -f and -ff modes
621 * using:
622 * strace -oLOG -f[f] test/threaded_execve
623 * strace -oLOG -f[f] test/sigkill_rain
624 * strace -oLOG -f[f] -p "`pidof web_browser`"
625 */
626extern struct tcb *printing_tcp;
627extern void printleader(struct tcb *);
628extern void line_ended(void);
629extern void tabto(void);
Dmitry V. Levin5647cf82015-03-29 22:45:03 +0000630extern void tprintf(const char *fmt, ...) ATTRIBUTE_FORMAT((printf, 1, 2));
Denys Vlasenko7de265d2012-03-13 11:44:31 +0100631extern void tprints(const char *str);
632
Denys Vlasenko9fd4f962012-03-19 09:36:42 +0100633#if SUPPORTED_PERSONALITIES > 1
634extern void set_personality(int personality);
Denys Vlasenkoae8643e2013-02-15 14:55:14 +0100635extern unsigned current_personality;
Denys Vlasenko9fd4f962012-03-19 09:36:42 +0100636#else
637# define set_personality(personality) ((void)0)
638# define current_personality 0
Denys Vlasenkoae8643e2013-02-15 14:55:14 +0100639#endif
640
641#if SUPPORTED_PERSONALITIES == 1
642# define current_wordsize PERSONALITY0_WORDSIZE
643#else
644# if SUPPORTED_PERSONALITIES == 2 && PERSONALITY0_WORDSIZE == PERSONALITY1_WORDSIZE
645# define current_wordsize PERSONALITY0_WORDSIZE
646# else
647extern unsigned current_wordsize;
648# endif
Denys Vlasenko9fd4f962012-03-19 09:36:42 +0100649#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000650
Denys Vlasenkoe015d2d2013-02-15 14:58:52 +0100651/* In many, many places we play fast and loose and use
652 * tprintf("%d", (int) tcp->u_arg[N]) to print fds, pids etc.
653 * We probably need to use widen_to_long() instead:
654 */
655#if SUPPORTED_PERSONALITIES > 1 && SIZEOF_LONG > 4
656# define widen_to_long(v) (current_wordsize == 4 ? (long)(int32_t)(v) : (long)(v))
657#else
658# define widen_to_long(v) ((long)(v))
659#endif
660
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100661extern const struct_sysent sysent0[];
662extern const char *const errnoent0[];
663extern const char *const signalent0[];
664extern const struct_ioctlent ioctlent0[];
665extern qualbits_t *qual_vec[SUPPORTED_PERSONALITIES];
666#define qual_flags (qual_vec[current_personality])
667#if SUPPORTED_PERSONALITIES > 1
Denys Vlasenkoa9fe13c2013-02-22 13:26:10 +0100668extern const struct_sysent *sysent;
Denys Vlasenko39fca622011-08-20 02:12:33 +0200669extern const char *const *errnoent;
Roland McGrathee36ce12004-09-04 03:53:10 +0000670extern const char *const *signalent;
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100671extern const struct_ioctlent *ioctlent;
672#else
673# define sysent sysent0
674# define errnoent errnoent0
675# define signalent signalent0
676# define ioctlent ioctlent0
677#endif
678extern unsigned nsyscalls;
679extern unsigned nerrnos;
Denys Vlasenkoafc64032011-08-23 13:29:01 +0200680extern unsigned nsignals;
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100681extern unsigned nioctlents;
682extern unsigned num_quals;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000683
Denys Vlasenkoc956ef02013-02-16 14:25:56 +0100684/*
685 * If you need non-NULL sysent[scno].sys_func and sysent[scno].sys_name
686 */
Denys Vlasenko5721cdb2013-02-16 13:22:38 +0100687#define SCNO_IS_VALID(scno) \
Denys Vlasenkoc956ef02013-02-16 14:25:56 +0100688 ((unsigned long)(scno) < nsyscalls && sysent[scno].sys_func)
689
690/* Only ensures that sysent[scno] isn't out of range */
691#define SCNO_IN_RANGE(scno) \
692 ((unsigned long)(scno) < nsyscalls)
Dmitry V. Levina0bd3742015-04-07 01:36:50 +0000693
694#ifndef SYS_FUNC_NAME
695# define SYS_FUNC_NAME(syscall_name) sys_ ## syscall_name
696#endif
697
698#define SYS_FUNC(syscall_name) int SYS_FUNC_NAME(syscall_name)(struct tcb *tcp)