blob: 66154f7e28f6083a1dadd041d137f57c92edeb74 [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>
Wichert Akkerman4dc8a2a1999-12-23 14:20:14 +00005 * Copyright (c) 1996-1999 Wichert Akkerman <wichert@cistron.nl>
6 * Copyright (c) 1999 IBM Deutschland Entwicklung GmbH, IBM Corporation
7 * Linux for s390 port by D.J. Barrow
8 * <barrow_dj@mail.yahoo.com,djbarrow@de.ibm.com>
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00009 * All rights reserved.
10 *
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in the
18 * documentation and/or other materials provided with the distribution.
19 * 3. The name of the author may not be used to endorse or promote products
20 * derived from this software without specific prior written permission.
21 *
22 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
23 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
24 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
25 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
26 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
27 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
31 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000032 */
33
34#include "defs.h"
Dmitry V. Levine2fb0bb2015-09-15 21:51:15 +000035#include "native_defs.h"
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000036#include <sys/param.h>
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000037
Dmitry V. Levin5503dd22015-02-13 02:12:14 +000038/* for struct iovec */
39#include <sys/uio.h>
Maarten ter Huurne40c174b2014-10-20 01:02:48 +020040
Dmitry V. Levin7211dbc2015-02-28 12:20:21 +000041#include "regs.h"
Dmitry V. Levinfadf3792015-02-13 00:26:38 +000042#include "ptrace.h"
Wichert Akkerman15dea971999-10-06 13:06:34 +000043
Denys Vlasenko84703742012-02-25 02:38:52 +010044#if defined(SPARC64)
Roland McGrath6d1a65c2004-07-12 07:44:08 +000045# undef PTRACE_GETREGS
46# define PTRACE_GETREGS PTRACE_GETREGS64
47# undef PTRACE_SETREGS
48# define PTRACE_SETREGS PTRACE_SETREGS64
Denys Vlasenko84703742012-02-25 02:38:52 +010049#endif
Roland McGrath6d1a65c2004-07-12 07:44:08 +000050
Dmitry V. Levin5503dd22015-02-13 02:12:14 +000051#if defined SPARC64
52# include <asm/psrcompat.h>
53#elif defined SPARC
54# include <asm/psr.h>
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +010055#endif
56
Dmitry V. Levin48f08902015-03-05 23:30:02 +000057#ifdef IA64
58# include <asm/rse.h>
59#endif
60
Dmitry V. Levin4c3f2ae2015-02-13 22:53:00 +000061#ifndef NT_PRSTATUS
62# define NT_PRSTATUS 1
63#endif
64
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000065#ifndef NSIG
Denys Vlasenko523635f2012-02-25 02:44:25 +010066# warning: NSIG is not defined, using 32
67# define NSIG 32
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000068#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000069
70#include "syscall.h"
71
72/* Define these shorthand notations to simplify the syscallent files. */
Roland McGrath2fe7b132005-07-05 03:25:35 +000073#define TD TRACE_DESC
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000074#define TF TRACE_FILE
75#define TI TRACE_IPC
76#define TN TRACE_NETWORK
77#define TP TRACE_PROCESS
78#define TS TRACE_SIGNAL
Namhyung Kim96792962012-10-24 11:41:57 +090079#define TM TRACE_MEMORY
Dmitry V. Levin50a218d2011-01-18 17:36:20 +000080#define NF SYSCALL_NEVER_FAILS
Denys Vlasenkoac1ce772011-08-23 13:24:17 +020081#define MA MAX_ARGS
Masatake YAMATO1d78d222014-04-16 15:33:11 +090082#define SI STACKTRACE_INVALIDATE_CACHE
83#define SE STACKTRACE_CAPTURE_ON_ENTER
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000084
Elvira Khabirova28e32df2015-07-10 22:24:54 +030085#define SEN_NAME(syscall_name) SEN_ ## syscall_name
86#define SEN(syscall_name) SEN_NAME(syscall_name), SYS_FUNC_NAME(syscall_name)
Elvira Khabirova140ecf82015-07-10 22:24:48 +030087
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +010088const struct_sysent sysent0[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000089#include "syscallent.h"
90};
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000091
Denys Vlasenkoa9fe13c2013-02-22 13:26:10 +010092#if SUPPORTED_PERSONALITIES > 1
Elvira Khabirova09294222015-08-04 01:47:02 +030093# include PERSONALITY1_INCLUDE_FUNCS
Denys Vlasenkoa9fe13c2013-02-22 13:26:10 +010094static const struct_sysent sysent1[] = {
Denys Vlasenko523635f2012-02-25 02:44:25 +010095# include "syscallent1.h"
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000096};
Denys Vlasenko39fca622011-08-20 02:12:33 +020097#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000098
Denys Vlasenkoa9fe13c2013-02-22 13:26:10 +010099#if SUPPORTED_PERSONALITIES > 2
Elvira Khabirova09294222015-08-04 01:47:02 +0300100# include PERSONALITY2_INCLUDE_FUNCS
Denys Vlasenkoa9fe13c2013-02-22 13:26:10 +0100101static const struct_sysent sysent2[] = {
Denys Vlasenko523635f2012-02-25 02:44:25 +0100102# include "syscallent2.h"
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000103};
Denys Vlasenko39fca622011-08-20 02:12:33 +0200104#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000105
106/* Now undef them since short defines cause wicked namespace pollution. */
Elvira Khabirova140ecf82015-07-10 22:24:48 +0300107#undef SEN
Elvira Khabirova28e32df2015-07-10 22:24:54 +0300108#undef SEN_NAME
Roland McGrath2fe7b132005-07-05 03:25:35 +0000109#undef TD
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000110#undef TF
111#undef TI
112#undef TN
113#undef TP
114#undef TS
Namhyung Kim96792962012-10-24 11:41:57 +0900115#undef TM
Dmitry V. Levin50a218d2011-01-18 17:36:20 +0000116#undef NF
Denys Vlasenkoac1ce772011-08-23 13:24:17 +0200117#undef MA
Masatake YAMATO1d78d222014-04-16 15:33:11 +0900118#undef SI
119#undef SE
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000120
Denys Vlasenko39fca622011-08-20 02:12:33 +0200121/*
Dmitry V. Levindf7aa2b2015-01-19 17:02:16 +0000122 * `ioctlent[012].h' files are automatically generated by the auxiliary
Denys Vlasenko39fca622011-08-20 02:12:33 +0200123 * program `ioctlsort', such that the list is sorted by the `code' field.
124 * This has the side-effect of resolving the _IO.. macros into
125 * plain integers, eliminating the need to include here everything
126 * in "/usr/include".
127 */
128
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100129const char *const errnoent0[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000130#include "errnoent.h"
131};
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100132const char *const signalent0[] = {
Denys Vlasenko39fca622011-08-20 02:12:33 +0200133#include "signalent.h"
134};
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100135const struct_ioctlent ioctlent0[] = {
Dmitry V. Levindf7aa2b2015-01-19 17:02:16 +0000136#include "ioctlent0.h"
Denys Vlasenko39fca622011-08-20 02:12:33 +0200137};
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000138
Denys Vlasenkoa9fe13c2013-02-22 13:26:10 +0100139#if SUPPORTED_PERSONALITIES > 1
Roland McGrathee36ce12004-09-04 03:53:10 +0000140static const char *const errnoent1[] = {
Denys Vlasenko523635f2012-02-25 02:44:25 +0100141# include "errnoent1.h"
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000142};
Denys Vlasenko39fca622011-08-20 02:12:33 +0200143static const char *const signalent1[] = {
Denys Vlasenko523635f2012-02-25 02:44:25 +0100144# include "signalent1.h"
Denys Vlasenko39fca622011-08-20 02:12:33 +0200145};
Denys Vlasenkoa9fe13c2013-02-22 13:26:10 +0100146static const struct_ioctlent ioctlent1[] = {
Denys Vlasenko523635f2012-02-25 02:44:25 +0100147# include "ioctlent1.h"
Denys Vlasenko39fca622011-08-20 02:12:33 +0200148};
Elvira Khabirova09294222015-08-04 01:47:02 +0300149# include PERSONALITY0_INCLUDE_PRINTERS_DECLS
150static const struct_printers printers0 = {
151# include PERSONALITY0_INCLUDE_PRINTERS_DEFS
152};
153# include PERSONALITY1_INCLUDE_PRINTERS_DECLS
154static const struct_printers printers1 = {
155# include PERSONALITY1_INCLUDE_PRINTERS_DEFS
156};
Denys Vlasenko39fca622011-08-20 02:12:33 +0200157#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000158
Denys Vlasenkoa9fe13c2013-02-22 13:26:10 +0100159#if SUPPORTED_PERSONALITIES > 2
Roland McGrathee36ce12004-09-04 03:53:10 +0000160static const char *const errnoent2[] = {
Denys Vlasenko523635f2012-02-25 02:44:25 +0100161# include "errnoent2.h"
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000162};
Denys Vlasenko39fca622011-08-20 02:12:33 +0200163static const char *const signalent2[] = {
Denys Vlasenko523635f2012-02-25 02:44:25 +0100164# include "signalent2.h"
Denys Vlasenko39fca622011-08-20 02:12:33 +0200165};
Denys Vlasenkoa9fe13c2013-02-22 13:26:10 +0100166static const struct_ioctlent ioctlent2[] = {
Denys Vlasenko523635f2012-02-25 02:44:25 +0100167# include "ioctlent2.h"
Denys Vlasenko39fca622011-08-20 02:12:33 +0200168};
Elvira Khabirova09294222015-08-04 01:47:02 +0300169# include PERSONALITY2_INCLUDE_PRINTERS_DECLS
170static const struct_printers printers2 = {
171# include PERSONALITY2_INCLUDE_PRINTERS_DEFS
172};
Denys Vlasenko39fca622011-08-20 02:12:33 +0200173#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000174
Dmitry V. Levine6f55242013-02-26 22:02:30 +0000175enum {
176 nsyscalls0 = ARRAY_SIZE(sysent0)
177#if SUPPORTED_PERSONALITIES > 1
178 , nsyscalls1 = ARRAY_SIZE(sysent1)
179# if SUPPORTED_PERSONALITIES > 2
180 , nsyscalls2 = ARRAY_SIZE(sysent2)
181# endif
182#endif
183};
184
185enum {
186 nerrnos0 = ARRAY_SIZE(errnoent0)
187#if SUPPORTED_PERSONALITIES > 1
188 , nerrnos1 = ARRAY_SIZE(errnoent1)
189# if SUPPORTED_PERSONALITIES > 2
190 , nerrnos2 = ARRAY_SIZE(errnoent2)
191# endif
192#endif
193};
194
195enum {
196 nsignals0 = ARRAY_SIZE(signalent0)
197#if SUPPORTED_PERSONALITIES > 1
198 , nsignals1 = ARRAY_SIZE(signalent1)
199# if SUPPORTED_PERSONALITIES > 2
200 , nsignals2 = ARRAY_SIZE(signalent2)
201# endif
202#endif
203};
204
205enum {
206 nioctlents0 = ARRAY_SIZE(ioctlent0)
207#if SUPPORTED_PERSONALITIES > 1
208 , nioctlents1 = ARRAY_SIZE(ioctlent1)
209# if SUPPORTED_PERSONALITIES > 2
210 , nioctlents2 = ARRAY_SIZE(ioctlent2)
211# endif
212#endif
213};
214
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100215#if SUPPORTED_PERSONALITIES > 1
Denys Vlasenkoa9fe13c2013-02-22 13:26:10 +0100216const struct_sysent *sysent = sysent0;
Denys Vlasenko9fd4f962012-03-19 09:36:42 +0100217const char *const *errnoent = errnoent0;
218const char *const *signalent = signalent0;
Denys Vlasenkoa9fe13c2013-02-22 13:26:10 +0100219const struct_ioctlent *ioctlent = ioctlent0;
Elvira Khabirova09294222015-08-04 01:47:02 +0300220const struct_printers *printers = &printers0;
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100221#endif
Elvira Khabirova09294222015-08-04 01:47:02 +0300222
Denys Vlasenko9fd4f962012-03-19 09:36:42 +0100223unsigned nsyscalls = nsyscalls0;
224unsigned nerrnos = nerrnos0;
225unsigned nsignals = nsignals0;
226unsigned nioctlents = nioctlents0;
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100227
228unsigned num_quals;
229qualbits_t *qual_vec[SUPPORTED_PERSONALITIES];
230
231static const unsigned nsyscall_vec[SUPPORTED_PERSONALITIES] = {
232 nsyscalls0,
233#if SUPPORTED_PERSONALITIES > 1
234 nsyscalls1,
235#endif
236#if SUPPORTED_PERSONALITIES > 2
237 nsyscalls2,
238#endif
239};
240static const struct_sysent *const sysent_vec[SUPPORTED_PERSONALITIES] = {
241 sysent0,
242#if SUPPORTED_PERSONALITIES > 1
243 sysent1,
244#endif
245#if SUPPORTED_PERSONALITIES > 2
246 sysent2,
247#endif
248};
249
250enum {
251 MAX_NSYSCALLS1 = (nsyscalls0
252#if SUPPORTED_PERSONALITIES > 1
253 > nsyscalls1 ? nsyscalls0 : nsyscalls1
254#endif
255 ),
256 MAX_NSYSCALLS2 = (MAX_NSYSCALLS1
257#if SUPPORTED_PERSONALITIES > 2
258 > nsyscalls2 ? MAX_NSYSCALLS1 : nsyscalls2
259#endif
260 ),
261 MAX_NSYSCALLS = MAX_NSYSCALLS2,
262 /* We are ready for arches with up to 255 signals,
263 * even though the largest known signo is on MIPS and it is 128.
264 * The number of existing syscalls on all arches is
265 * larger that 255 anyway, so it is just a pedantic matter.
266 */
267 MIN_QUALS = MAX_NSYSCALLS > 255 ? MAX_NSYSCALLS : 255
268};
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000269
Denys Vlasenko9fd4f962012-03-19 09:36:42 +0100270#if SUPPORTED_PERSONALITIES > 1
Denys Vlasenkoae8643e2013-02-15 14:55:14 +0100271unsigned current_personality;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000272
Denys Vlasenkoae8643e2013-02-15 14:55:14 +0100273# ifndef current_wordsize
274unsigned current_wordsize;
275static const int personality_wordsize[SUPPORTED_PERSONALITIES] = {
Roland McGrath4b2dcca2006-01-12 10:18:53 +0000276 PERSONALITY0_WORDSIZE,
Roland McGrath4b2dcca2006-01-12 10:18:53 +0000277 PERSONALITY1_WORDSIZE,
Denys Vlasenko9fd4f962012-03-19 09:36:42 +0100278# if SUPPORTED_PERSONALITIES > 2
Roland McGrath4b2dcca2006-01-12 10:18:53 +0000279 PERSONALITY2_WORDSIZE,
Denys Vlasenko9fd4f962012-03-19 09:36:42 +0100280# endif
Denys Vlasenko5c774b22011-08-20 01:50:09 +0200281};
Denys Vlasenkoae8643e2013-02-15 14:55:14 +0100282# endif
Roland McGrath4b2dcca2006-01-12 10:18:53 +0000283
Denys Vlasenko5c774b22011-08-20 01:50:09 +0200284void
Dmitry V. Levin3abe8b22006-12-20 22:37:21 +0000285set_personality(int personality)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000286{
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100287 nsyscalls = nsyscall_vec[personality];
288 sysent = sysent_vec[personality];
289
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000290 switch (personality) {
291 case 0:
292 errnoent = errnoent0;
293 nerrnos = nerrnos0;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000294 ioctlent = ioctlent0;
295 nioctlents = nioctlents0;
296 signalent = signalent0;
297 nsignals = nsignals0;
Elvira Khabirova09294222015-08-04 01:47:02 +0300298 printers = &printers0;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000299 break;
300
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000301 case 1:
302 errnoent = errnoent1;
303 nerrnos = nerrnos1;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000304 ioctlent = ioctlent1;
305 nioctlents = nioctlents1;
306 signalent = signalent1;
307 nsignals = nsignals1;
Elvira Khabirova09294222015-08-04 01:47:02 +0300308 printers = &printers1;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000309 break;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000310
Denys Vlasenkoa9fe13c2013-02-22 13:26:10 +0100311# if SUPPORTED_PERSONALITIES > 2
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000312 case 2:
313 errnoent = errnoent2;
314 nerrnos = nerrnos2;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000315 ioctlent = ioctlent2;
316 nioctlents = nioctlents2;
317 signalent = signalent2;
318 nsignals = nsignals2;
Elvira Khabirova09294222015-08-04 01:47:02 +0300319 printers = &printers2;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000320 break;
Denys Vlasenko9fd4f962012-03-19 09:36:42 +0100321# endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000322 }
323
324 current_personality = personality;
Denys Vlasenkoae8643e2013-02-15 14:55:14 +0100325# ifndef current_wordsize
326 current_wordsize = personality_wordsize[personality];
327# endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000328}
329
Dmitry V. Levina5a839a2011-12-23 00:50:49 +0000330static void
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +0000331update_personality(struct tcb *tcp, unsigned int personality)
Dmitry V. Levina5a839a2011-12-23 00:50:49 +0000332{
333 if (personality == current_personality)
334 return;
335 set_personality(personality);
336
337 if (personality == tcp->currpers)
338 return;
339 tcp->currpers = personality;
340
Dmitry V. Levin6c8ef052015-05-25 22:51:19 +0000341# undef PERSONALITY_NAMES
342# if defined POWERPC64
343# define PERSONALITY_NAMES {"64 bit", "32 bit"}
344# elif defined X86_64
345# define PERSONALITY_NAMES {"64 bit", "32 bit", "x32"}
346# elif defined X32
347# define PERSONALITY_NAMES {"x32", "32 bit"}
348# elif defined AARCH64
Dmitry V. Levinc37173f2015-12-09 00:43:39 +0000349# define PERSONALITY_NAMES {"64 bit", "32 bit"}
Dmitry V. Levin6c8ef052015-05-25 22:51:19 +0000350# elif defined TILE
351# define PERSONALITY_NAMES {"64-bit", "32-bit"}
352# endif
353# ifdef PERSONALITY_NAMES
Dmitry V. Levina5a839a2011-12-23 00:50:49 +0000354 if (!qflag) {
Dmitry V. Levin6c8ef052015-05-25 22:51:19 +0000355 static const char *const names[] = PERSONALITY_NAMES;
356 error_msg("[ Process PID=%d runs in %s mode. ]",
357 tcp->pid, names[personality]);
Chris Metcalf0b99a8a2013-02-05 17:48:33 +0100358 }
Denys Vlasenko523635f2012-02-25 02:44:25 +0100359# endif
Dmitry V. Levina5a839a2011-12-23 00:50:49 +0000360}
361#endif
Roland McGrathe10e62a2004-09-04 04:20:43 +0000362
Denys Vlasenkoc1540fe2013-02-21 16:17:08 +0100363static int qual_syscall(), qual_signal(), qual_desc();
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000364
Roland McGrathe10e62a2004-09-04 04:20:43 +0000365static const struct qual_options {
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +0000366 unsigned int bitflag;
Dmitry V. Levin30145dd2010-09-06 22:08:24 +0000367 const char *option_name;
Dmitry V. Levin35d05722010-09-15 16:18:20 +0000368 int (*qualify)(const char *, int, int);
Dmitry V. Levin30145dd2010-09-06 22:08:24 +0000369 const char *argument_name;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000370} qual_options[] = {
Roland McGrath9797ceb2002-12-30 10:23:00 +0000371 { QUAL_TRACE, "trace", qual_syscall, "system call" },
372 { QUAL_TRACE, "t", qual_syscall, "system call" },
373 { QUAL_ABBREV, "abbrev", qual_syscall, "system call" },
374 { QUAL_ABBREV, "a", qual_syscall, "system call" },
375 { QUAL_VERBOSE, "verbose", qual_syscall, "system call" },
376 { QUAL_VERBOSE, "v", qual_syscall, "system call" },
377 { QUAL_RAW, "raw", qual_syscall, "system call" },
378 { QUAL_RAW, "x", qual_syscall, "system call" },
379 { QUAL_SIGNAL, "signal", qual_signal, "signal" },
380 { QUAL_SIGNAL, "signals", qual_signal, "signal" },
381 { QUAL_SIGNAL, "s", qual_signal, "signal" },
Roland McGrath9797ceb2002-12-30 10:23:00 +0000382 { QUAL_READ, "read", qual_desc, "descriptor" },
383 { QUAL_READ, "reads", qual_desc, "descriptor" },
384 { QUAL_READ, "r", qual_desc, "descriptor" },
385 { QUAL_WRITE, "write", qual_desc, "descriptor" },
386 { QUAL_WRITE, "writes", qual_desc, "descriptor" },
387 { QUAL_WRITE, "w", qual_desc, "descriptor" },
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000388 { 0, NULL, NULL, NULL },
389};
390
Roland McGrath9797ceb2002-12-30 10:23:00 +0000391static void
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +0000392reallocate_qual(const unsigned int n)
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100393{
394 unsigned p;
395 qualbits_t *qp;
396 for (p = 0; p < SUPPORTED_PERSONALITIES; p++) {
Dmitry V. Levin3e9d71f2015-05-25 20:41:02 +0000397 qp = qual_vec[p] = xreallocarray(qual_vec[p], n,
398 sizeof(qualbits_t));
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100399 memset(&qp[num_quals], 0, (n - num_quals) * sizeof(qualbits_t));
400 }
401 num_quals = n;
402}
403
404static void
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +0000405qualify_one(const unsigned int n, unsigned int bitflag, const int not, const int pers)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000406{
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +0000407 int p;
Roland McGrath138c6a32006-01-12 09:50:49 +0000408
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100409 if (num_quals <= n)
410 reallocate_qual(n + 1);
Roland McGrath138c6a32006-01-12 09:50:49 +0000411
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100412 for (p = 0; p < SUPPORTED_PERSONALITIES; p++) {
413 if (pers == p || pers < 0) {
414 if (not)
415 qual_vec[p][n] &= ~bitflag;
416 else
417 qual_vec[p][n] |= bitflag;
418 }
Roland McGrath138c6a32006-01-12 09:50:49 +0000419 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000420}
421
422static int
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +0000423qual_syscall(const char *s, const unsigned int bitflag, const int not)
Roland McGrath9797ceb2002-12-30 10:23:00 +0000424{
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +0000425 int p;
426 unsigned int i;
Roland McGrathfe6b3522005-02-02 04:40:11 +0000427 int rc = -1;
Roland McGrath9797ceb2002-12-30 10:23:00 +0000428
Denys Vlasenkoe4cc7c52012-03-23 11:29:01 +0100429 if (*s >= '0' && *s <= '9') {
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100430 i = string_to_uint(s);
Denys Vlasenkob43dacd2013-02-23 18:19:28 +0100431 if (i >= MAX_NSYSCALLS)
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +0000432 return -1;
Dmitry V. Levin35d05722010-09-15 16:18:20 +0000433 qualify_one(i, bitflag, not, -1);
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +0000434 return 0;
Roland McGrath48a035f2006-01-12 09:45:56 +0000435 }
Roland McGrath138c6a32006-01-12 09:50:49 +0000436
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100437 for (p = 0; p < SUPPORTED_PERSONALITIES; p++) {
438 for (i = 0; i < nsyscall_vec[p]; i++) {
439 if (sysent_vec[p][i].sys_name
440 && strcmp(s, sysent_vec[p][i].sys_name) == 0
441 ) {
Dmitry V. Levin7b9e45e2013-03-01 15:50:22 +0000442 qualify_one(i, bitflag, not, p);
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100443 rc = 0;
444 }
Roland McGrath138c6a32006-01-12 09:50:49 +0000445 }
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100446 }
Dmitry V. Levinc18c7032007-08-22 21:43:30 +0000447
Roland McGrathfe6b3522005-02-02 04:40:11 +0000448 return rc;
Roland McGrath9797ceb2002-12-30 10:23:00 +0000449}
450
451static int
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +0000452qual_signal(const char *s, const unsigned int bitflag, const int not)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000453{
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +0000454 unsigned int i;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000455
Denys Vlasenkoe4cc7c52012-03-23 11:29:01 +0100456 if (*s >= '0' && *s <= '9') {
Dmitry V. Levinccee1692012-03-25 21:49:48 +0000457 int signo = string_to_uint(s);
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100458 if (signo < 0 || signo > 255)
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +0000459 return -1;
Dmitry V. Levin35d05722010-09-15 16:18:20 +0000460 qualify_one(signo, bitflag, not, -1);
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +0000461 return 0;
Roland McGrath9797ceb2002-12-30 10:23:00 +0000462 }
Dmitry V. Levin30145dd2010-09-06 22:08:24 +0000463 if (strncasecmp(s, "SIG", 3) == 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000464 s += 3;
Denys Vlasenkoe4cc7c52012-03-23 11:29:01 +0100465 for (i = 0; i <= NSIG; i++) {
Dmitry V. Levin30145dd2010-09-06 22:08:24 +0000466 if (strcasecmp(s, signame(i) + 3) == 0) {
Dmitry V. Levin35d05722010-09-15 16:18:20 +0000467 qualify_one(i, bitflag, not, -1);
Roland McGrath76421df2005-02-02 03:51:18 +0000468 return 0;
Roland McGrath9797ceb2002-12-30 10:23:00 +0000469 }
Denys Vlasenkoe4cc7c52012-03-23 11:29:01 +0100470 }
Roland McGrath76421df2005-02-02 03:51:18 +0000471 return -1;
Roland McGrath9797ceb2002-12-30 10:23:00 +0000472}
473
474static int
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +0000475qual_desc(const char *s, const unsigned int bitflag, const int not)
Roland McGrath9797ceb2002-12-30 10:23:00 +0000476{
Denys Vlasenkoe4cc7c52012-03-23 11:29:01 +0100477 if (*s >= '0' && *s <= '9') {
Dmitry V. Levinccee1692012-03-25 21:49:48 +0000478 int desc = string_to_uint(s);
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100479 if (desc < 0 || desc > 0x7fff) /* paranoia */
Roland McGrathfe6b3522005-02-02 04:40:11 +0000480 return -1;
Dmitry V. Levin35d05722010-09-15 16:18:20 +0000481 qualify_one(desc, bitflag, not, -1);
Roland McGrath2b619022003-04-10 18:58:20 +0000482 return 0;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000483 }
484 return -1;
485}
486
487static int
Dmitry V. Levin30145dd2010-09-06 22:08:24 +0000488lookup_class(const char *s)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000489{
490 if (strcmp(s, "file") == 0)
491 return TRACE_FILE;
492 if (strcmp(s, "ipc") == 0)
493 return TRACE_IPC;
494 if (strcmp(s, "network") == 0)
495 return TRACE_NETWORK;
496 if (strcmp(s, "process") == 0)
497 return TRACE_PROCESS;
498 if (strcmp(s, "signal") == 0)
499 return TRACE_SIGNAL;
Roland McGrath2fe7b132005-07-05 03:25:35 +0000500 if (strcmp(s, "desc") == 0)
501 return TRACE_DESC;
Namhyung Kim96792962012-10-24 11:41:57 +0900502 if (strcmp(s, "memory") == 0)
503 return TRACE_MEMORY;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000504 return -1;
505}
506
507void
Dmitry V. Levin30145dd2010-09-06 22:08:24 +0000508qualify(const char *s)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000509{
Roland McGrathe10e62a2004-09-04 04:20:43 +0000510 const struct qual_options *opt;
Dmitry V. Levin30145dd2010-09-06 22:08:24 +0000511 char *copy;
512 const char *p;
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +0000513 int not;
514 unsigned int i;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000515
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100516 if (num_quals == 0)
517 reallocate_qual(MIN_QUALS);
518
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000519 opt = &qual_options[0];
520 for (i = 0; (p = qual_options[i].option_name); i++) {
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +0000521 unsigned int len = strlen(p);
522 if (strncmp(s, p, len) == 0 && s[len] == '=') {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000523 opt = &qual_options[i];
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +0000524 s += len + 1;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000525 break;
526 }
527 }
528 not = 0;
529 if (*s == '!') {
530 not = 1;
531 s++;
532 }
533 if (strcmp(s, "none") == 0) {
534 not = 1 - not;
535 s = "all";
536 }
537 if (strcmp(s, "all") == 0) {
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100538 for (i = 0; i < num_quals; i++) {
Dmitry V. Levin35d05722010-09-15 16:18:20 +0000539 qualify_one(i, opt->bitflag, not, -1);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000540 }
541 return;
542 }
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100543 for (i = 0; i < num_quals; i++) {
Dmitry V. Levin35d05722010-09-15 16:18:20 +0000544 qualify_one(i, opt->bitflag, !not, -1);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000545 }
Dmitry V. Levin3e9d71f2015-05-25 20:41:02 +0000546 copy = xstrdup(s);
Dmitry V. Levin30145dd2010-09-06 22:08:24 +0000547 for (p = strtok(copy, ","); p; p = strtok(NULL, ",")) {
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +0000548 int n;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000549 if (opt->bitflag == QUAL_TRACE && (n = lookup_class(p)) > 0) {
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100550 unsigned pers;
551 for (pers = 0; pers < SUPPORTED_PERSONALITIES; pers++) {
552 for (i = 0; i < nsyscall_vec[pers]; i++)
553 if (sysent_vec[pers][i].sys_flags & n)
Dmitry V. Levin7b9e45e2013-03-01 15:50:22 +0000554 qualify_one(i, opt->bitflag, not, pers);
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100555 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000556 continue;
557 }
Dmitry V. Levin35d05722010-09-15 16:18:20 +0000558 if (opt->qualify(p, opt->bitflag, not)) {
Denys Vlasenko4c65c442012-03-08 11:54:10 +0100559 error_msg_and_die("invalid %s '%s'",
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000560 opt->argument_name, p);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000561 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000562 }
Dmitry V. Levin30145dd2010-09-06 22:08:24 +0000563 free(copy);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000564 return;
565}
566
Dmitry V. Levin648c22c2012-03-15 22:08:55 +0000567#ifdef SYS_socket_subcall
Roland McGratha4d48532005-06-08 20:45:28 +0000568static void
Dmitry V. Levin648c22c2012-03-15 22:08:55 +0000569decode_socket_subcall(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000570{
Dmitry V. Levin648c22c2012-03-15 22:08:55 +0000571 unsigned long addr;
Dmitry V. Levinc2155692015-03-22 15:52:40 +0000572 unsigned int n;
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000573
Dmitry V. Levin648c22c2012-03-15 22:08:55 +0000574 if (tcp->u_arg[0] < 0 || tcp->u_arg[0] >= SYS_socket_nsubcalls)
575 return;
576
577 tcp->scno = SYS_socket_subcall + tcp->u_arg[0];
Denys Vlasenko74ec14f2013-02-21 16:13:47 +0100578 tcp->qual_flg = qual_flags[tcp->scno];
579 tcp->s_ent = &sysent[tcp->scno];
Dmitry V. Levin648c22c2012-03-15 22:08:55 +0000580 addr = tcp->u_arg[1];
Denys Vlasenko74ec14f2013-02-21 16:13:47 +0100581 n = tcp->s_ent->nargs;
Dmitry V. Levinc2155692015-03-22 15:52:40 +0000582 if (sizeof(tcp->u_arg[0]) == current_wordsize) {
583 memset(tcp->u_arg, 0, n * sizeof(tcp->u_arg[0]));
584 (void) umoven(tcp, addr, n * sizeof(tcp->u_arg[0]), tcp->u_arg);
585 } else {
586 unsigned int args[n];
587 unsigned int i;
588
589 memset(args, 0, sizeof(args));
590 (void) umove(tcp, addr, &args);
591 for (i = 0; i < n; ++i)
592 tcp->u_arg[i] = args[i];
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000593 }
594}
Dmitry V. Levin648c22c2012-03-15 22:08:55 +0000595#endif
Mike Frysinger3362e892012-03-15 01:09:19 -0400596
Dmitry V. Levin648c22c2012-03-15 22:08:55 +0000597#ifdef SYS_ipc_subcall
598static void
599decode_ipc_subcall(struct tcb *tcp)
600{
Denys Vlasenko74ec14f2013-02-21 16:13:47 +0100601 unsigned int i, n;
Dmitry V. Levin648c22c2012-03-15 22:08:55 +0000602
603 if (tcp->u_arg[0] < 0 || tcp->u_arg[0] >= SYS_ipc_nsubcalls)
604 return;
605
606 tcp->scno = SYS_ipc_subcall + tcp->u_arg[0];
Denys Vlasenko74ec14f2013-02-21 16:13:47 +0100607 tcp->qual_flg = qual_flags[tcp->scno];
608 tcp->s_ent = &sysent[tcp->scno];
609 n = tcp->s_ent->nargs;
610 for (i = 0; i < n; i++)
Dmitry V. Levin648c22c2012-03-15 22:08:55 +0000611 tcp->u_arg[i] = tcp->u_arg[i + 1];
612}
613#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000614
Dmitry V. Levinf34b97f2015-04-17 09:14:19 +0000615#ifdef LINUX_MIPSO32
616static void
617decode_mips_subcall(struct tcb *tcp)
618{
619 if (!SCNO_IS_VALID(tcp->u_arg[0]))
620 return;
621 tcp->scno = tcp->u_arg[0];
622 tcp->qual_flg = qual_flags[tcp->scno];
623 tcp->s_ent = &sysent[tcp->scno];
624 memmove(&tcp->u_arg[0], &tcp->u_arg[1],
625 sizeof(tcp->u_arg) - sizeof(tcp->u_arg[0]));
626 /*
627 * Fetching the last arg of 7-arg syscalls (fadvise64_64
628 * and sync_file_range) would require additional code,
629 * see linux/mips/get_syscall_args.c
630 */
631}
632
633SYS_FUNC(syscall)
634{
635 return printargs(tcp);
636}
637#endif
638
Denys Vlasenkoa6146922011-08-24 18:07:22 +0200639int
640printargs(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000641{
Denys Vlasenkoa6146922011-08-24 18:07:22 +0200642 if (entering(tcp)) {
643 int i;
Denys Vlasenko74ec14f2013-02-21 16:13:47 +0100644 int n = tcp->s_ent->nargs;
645 for (i = 0; i < n; i++)
Denys Vlasenkoa6146922011-08-24 18:07:22 +0200646 tprintf("%s%#lx", i ? ", " : "", tcp->u_arg[i]);
647 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000648 return 0;
649}
650
Denys Vlasenko72879c62012-02-27 14:18:02 +0100651int
652printargs_lu(struct tcb *tcp)
653{
654 if (entering(tcp)) {
655 int i;
Denys Vlasenko74ec14f2013-02-21 16:13:47 +0100656 int n = tcp->s_ent->nargs;
657 for (i = 0; i < n; i++)
Denys Vlasenko72879c62012-02-27 14:18:02 +0100658 tprintf("%s%lu", i ? ", " : "", tcp->u_arg[i]);
659 }
660 return 0;
661}
662
663int
664printargs_ld(struct tcb *tcp)
665{
666 if (entering(tcp)) {
667 int i;
Denys Vlasenko74ec14f2013-02-21 16:13:47 +0100668 int n = tcp->s_ent->nargs;
669 for (i = 0; i < n; i++)
Denys Vlasenko72879c62012-02-27 14:18:02 +0100670 tprintf("%s%ld", i ? ", " : "", tcp->u_arg[i]);
671 }
672 return 0;
673}
674
Dmitry V. Levin1b786072015-03-22 18:09:55 +0000675static void
676dumpio(struct tcb *tcp)
677{
Elvira Khabirova483c15f2015-07-10 22:24:58 +0300678 int sen;
Dmitry V. Levin1b786072015-03-22 18:09:55 +0000679
680 if (syserror(tcp))
681 return;
682 if ((unsigned long) tcp->u_arg[0] >= num_quals)
683 return;
Elvira Khabirova483c15f2015-07-10 22:24:58 +0300684 sen = tcp->s_ent->sen;
685 if (SEN_printargs == sen)
Dmitry V. Levin1b786072015-03-22 18:09:55 +0000686 return;
687 if (qual_flags[tcp->u_arg[0]] & QUAL_READ) {
Elvira Khabirova483c15f2015-07-10 22:24:58 +0300688 switch (sen) {
689 case SEN_read:
690 case SEN_pread:
691 case SEN_recv:
692 case SEN_recvfrom:
Dmitry V. Levin1b786072015-03-22 18:09:55 +0000693 dumpstr(tcp, tcp->u_arg[1], tcp->u_rval);
694 return;
Elvira Khabirova483c15f2015-07-10 22:24:58 +0300695 case SEN_readv:
Dmitry V. Levin1b786072015-03-22 18:09:55 +0000696 dumpiov(tcp, tcp->u_arg[2], tcp->u_arg[1]);
697 return;
Elvira Khabirova483c15f2015-07-10 22:24:58 +0300698 case SEN_recvmsg:
Dmitry V. Levin1b786072015-03-22 18:09:55 +0000699 dumpiov_in_msghdr(tcp, tcp->u_arg[1]);
700 return;
Elvira Khabirova483c15f2015-07-10 22:24:58 +0300701 case SEN_recvmmsg:
Dmitry V. Levin1b786072015-03-22 18:09:55 +0000702 dumpiov_in_mmsghdr(tcp, tcp->u_arg[1]);
703 return;
Dmitry V. Levin1b786072015-03-22 18:09:55 +0000704 }
705 }
706 if (qual_flags[tcp->u_arg[0]] & QUAL_WRITE) {
Elvira Khabirova483c15f2015-07-10 22:24:58 +0300707 switch (sen) {
708 case SEN_write:
709 case SEN_pwrite:
710 case SEN_send:
711 case SEN_sendto:
Dmitry V. Levin1b786072015-03-22 18:09:55 +0000712 dumpstr(tcp, tcp->u_arg[1], tcp->u_arg[2]);
Elvira Khabirova483c15f2015-07-10 22:24:58 +0300713 break;
714 case SEN_writev:
Dmitry V. Levin1b786072015-03-22 18:09:55 +0000715 dumpiov(tcp, tcp->u_arg[2], tcp->u_arg[1]);
Elvira Khabirova483c15f2015-07-10 22:24:58 +0300716 break;
Elvira Khabirova483c15f2015-07-10 22:24:58 +0300717 case SEN_sendmsg:
Dmitry V. Levin1b786072015-03-22 18:09:55 +0000718 dumpiov_in_msghdr(tcp, tcp->u_arg[1]);
Elvira Khabirova483c15f2015-07-10 22:24:58 +0300719 break;
720 case SEN_sendmmsg:
Dmitry V. Levin1b786072015-03-22 18:09:55 +0000721 dumpiov_in_mmsghdr(tcp, tcp->u_arg[1]);
Elvira Khabirova483c15f2015-07-10 22:24:58 +0300722 break;
Elvira Khabirova483c15f2015-07-10 22:24:58 +0300723 }
Dmitry V. Levin1b786072015-03-22 18:09:55 +0000724 }
725}
726
727/*
728 * Shuffle syscall numbers so that we don't have huge gaps in syscall table.
729 * The shuffling should be an involution: shuffle_scno(shuffle_scno(n)) == n.
730 */
731#if defined(ARM) || defined(AARCH64) /* So far only 32-bit ARM needs this */
732static long
733shuffle_scno(unsigned long scno)
734{
735 if (scno < ARM_FIRST_SHUFFLED_SYSCALL)
736 return scno;
737
738 /* __ARM_NR_cmpxchg? Swap with LAST_ORDINARY+1 */
739 if (scno == ARM_FIRST_SHUFFLED_SYSCALL)
740 return 0x000ffff0;
741 if (scno == 0x000ffff0)
742 return ARM_FIRST_SHUFFLED_SYSCALL;
743
744#define ARM_SECOND_SHUFFLED_SYSCALL (ARM_FIRST_SHUFFLED_SYSCALL + 1)
745 /*
746 * Is it ARM specific syscall?
747 * Swap [0x000f0000, 0x000f0000 + LAST_SPECIAL] range
748 * with [SECOND_SHUFFLED, SECOND_SHUFFLED + LAST_SPECIAL] range.
749 */
750 if (scno >= 0x000f0000 &&
751 scno <= 0x000f0000 + ARM_LAST_SPECIAL_SYSCALL) {
752 return scno - 0x000f0000 + ARM_SECOND_SHUFFLED_SYSCALL;
753 }
754 if (scno <= ARM_SECOND_SHUFFLED_SYSCALL + ARM_LAST_SPECIAL_SYSCALL) {
755 return scno + 0x000f0000 - ARM_SECOND_SHUFFLED_SYSCALL;
756 }
757
758 return scno;
759}
760#else
761# define shuffle_scno(scno) ((long)(scno))
762#endif
763
Mike Frysingerd2eaf672015-08-18 03:24:59 -0400764const char *
765syscall_name(long scno)
Dmitry V. Levin1b786072015-03-22 18:09:55 +0000766{
767 static char buf[sizeof("syscall_%lu") + sizeof(long)*3];
768
Mike Frysingerd2eaf672015-08-18 03:24:59 -0400769 if (SCNO_IS_VALID(scno))
770 return sysent[scno].sys_name;
771 else {
772 sprintf(buf, "syscall_%lu", shuffle_scno(scno));
773 return buf;
774 }
Dmitry V. Levin1b786072015-03-22 18:09:55 +0000775}
776
777static long get_regs_error;
778
779void
780clear_regs(void)
781{
782 get_regs_error = -1;
783}
784
785static int get_syscall_args(struct tcb *);
786static int get_syscall_result(struct tcb *);
Dmitry V. Levin7386ca72015-11-30 13:57:51 +0000787static int arch_get_scno(struct tcb *tcp);
788static void get_error(struct tcb *, const bool);
789#if defined X86_64 || defined POWERPC
790static int getregs_old(pid_t);
791#endif
Dmitry V. Levin1b786072015-03-22 18:09:55 +0000792
793static int
794trace_syscall_entering(struct tcb *tcp)
795{
796 int res, scno_good;
797
798 scno_good = res = get_scno(tcp);
799 if (res == 0)
800 return res;
801 if (res == 1)
802 res = get_syscall_args(tcp);
803
804 if (res != 1) {
805 printleader(tcp);
806 if (scno_good != 1)
807 tprints("????" /* anti-trigraph gap */ "(");
808 else if (tcp->qual_flg & UNDEFINED_SCNO)
Mike Frysingerd2eaf672015-08-18 03:24:59 -0400809 tprintf("%s(", syscall_name(tcp->scno));
Dmitry V. Levin1b786072015-03-22 18:09:55 +0000810 else
811 tprintf("%s(", tcp->s_ent->sys_name);
812 /*
813 * " <unavailable>" will be added later by the code which
814 * detects ptrace errors.
815 */
816 goto ret;
817 }
818
Dmitry V. Levinf34b97f2015-04-17 09:14:19 +0000819#ifdef LINUX_MIPSO32
Elvira Khabirova483c15f2015-07-10 22:24:58 +0300820 if (SEN_syscall == tcp->s_ent->sen)
Dmitry V. Levinf34b97f2015-04-17 09:14:19 +0000821 decode_mips_subcall(tcp);
822#endif
823
Elvira Khabirova483c15f2015-07-10 22:24:58 +0300824 if ( SEN_execve == tcp->s_ent->sen
Dmitry V. Levin1b786072015-03-22 18:09:55 +0000825# if defined(SPARC) || defined(SPARC64)
Elvira Khabirova483c15f2015-07-10 22:24:58 +0300826 || SEN_execv == tcp->s_ent->sen
Dmitry V. Levin1b786072015-03-22 18:09:55 +0000827# endif
828 ) {
829 hide_log_until_execve = 0;
830 }
831
832#if defined(SYS_socket_subcall) || defined(SYS_ipc_subcall)
Elvira Khabirova483c15f2015-07-10 22:24:58 +0300833 switch (tcp->s_ent->sen) {
Dmitry V. Levin1b786072015-03-22 18:09:55 +0000834# ifdef SYS_socket_subcall
Elvira Khabirova483c15f2015-07-10 22:24:58 +0300835 case SEN_socketcall:
Dmitry V. Levin1b786072015-03-22 18:09:55 +0000836 decode_socket_subcall(tcp);
837 break;
Dmitry V. Levin1b786072015-03-22 18:09:55 +0000838# endif
839# ifdef SYS_ipc_subcall
Elvira Khabirova483c15f2015-07-10 22:24:58 +0300840 case SEN_ipc:
Dmitry V. Levin1b786072015-03-22 18:09:55 +0000841 decode_ipc_subcall(tcp);
842 break;
Dmitry V. Levin1b786072015-03-22 18:09:55 +0000843# endif
Dmitry V. Levin1b786072015-03-22 18:09:55 +0000844 }
845#endif
846
847 if (!(tcp->qual_flg & QUAL_TRACE)
848 || (tracing_paths && !pathtrace_match(tcp))
849 ) {
850 tcp->flags |= TCB_INSYSCALL | TCB_FILTERED;
Dmitry V. Levin204c2bc2015-07-08 14:10:56 +0000851 tcp->sys_func_rval = 0;
Dmitry V. Levin1b786072015-03-22 18:09:55 +0000852 return 0;
853 }
854
855 tcp->flags &= ~TCB_FILTERED;
856
857 if (cflag == CFLAG_ONLY_STATS || hide_log_until_execve) {
858 res = 0;
859 goto ret;
860 }
861
862#ifdef USE_LIBUNWIND
863 if (stack_trace_enabled) {
864 if (tcp->s_ent->sys_flags & STACKTRACE_CAPTURE_ON_ENTER)
865 unwind_capture_stacktrace(tcp);
866 }
867#endif
868
869 printleader(tcp);
870 if (tcp->qual_flg & UNDEFINED_SCNO)
Mike Frysingerd2eaf672015-08-18 03:24:59 -0400871 tprintf("%s(", syscall_name(tcp->scno));
Dmitry V. Levin1b786072015-03-22 18:09:55 +0000872 else
873 tprintf("%s(", tcp->s_ent->sys_name);
Elvira Khabirova483c15f2015-07-10 22:24:58 +0300874 if ((tcp->qual_flg & QUAL_RAW) && SEN_exit != tcp->s_ent->sen)
Dmitry V. Levin1b786072015-03-22 18:09:55 +0000875 res = printargs(tcp);
876 else
877 res = tcp->s_ent->sys_func(tcp);
878
879 fflush(tcp->outf);
880 ret:
881 tcp->flags |= TCB_INSYSCALL;
Dmitry V. Levin204c2bc2015-07-08 14:10:56 +0000882 tcp->sys_func_rval = res;
Dmitry V. Levin1b786072015-03-22 18:09:55 +0000883 /* Measure the entrance time as late as possible to avoid errors. */
884 if (Tflag || cflag)
885 gettimeofday(&tcp->etime, NULL);
886 return res;
887}
888
889static int
890trace_syscall_exiting(struct tcb *tcp)
891{
892 int sys_res;
893 struct timeval tv;
894 int res;
895 long u_error;
896
897 /* Measure the exit time as early as possible to avoid errors. */
898 if (Tflag || cflag)
899 gettimeofday(&tv, NULL);
900
901#ifdef USE_LIBUNWIND
902 if (stack_trace_enabled) {
903 if (tcp->s_ent->sys_flags & STACKTRACE_INVALIDATE_CACHE)
904 unwind_cache_invalidate(tcp);
905 }
906#endif
907
908#if SUPPORTED_PERSONALITIES > 1
909 update_personality(tcp, tcp->currpers);
910#endif
911 res = (get_regs_error ? -1 : get_syscall_result(tcp));
Dmitry V. Levin4b80f342015-06-29 11:57:44 +0000912 if (filtered(tcp) || hide_log_until_execve)
913 goto ret;
Dmitry V. Levin1b786072015-03-22 18:09:55 +0000914
915 if (cflag) {
916 count_syscall(tcp, &tv);
917 if (cflag == CFLAG_ONLY_STATS) {
918 goto ret;
919 }
920 }
921
922 /* If not in -ff mode, and printing_tcp != tcp,
923 * then the log currently does not end with output
924 * of _our syscall entry_, but with something else.
925 * We need to say which syscall's return is this.
926 *
927 * Forced reprinting via TCB_REPRINT is used only by
928 * "strace -ff -oLOG test/threaded_execve" corner case.
929 * It's the only case when -ff mode needs reprinting.
930 */
931 if ((followfork < 2 && printing_tcp != tcp) || (tcp->flags & TCB_REPRINT)) {
932 tcp->flags &= ~TCB_REPRINT;
933 printleader(tcp);
934 if (tcp->qual_flg & UNDEFINED_SCNO)
Mike Frysingerd2eaf672015-08-18 03:24:59 -0400935 tprintf("<... %s resumed> ", syscall_name(tcp->scno));
Dmitry V. Levin1b786072015-03-22 18:09:55 +0000936 else
937 tprintf("<... %s resumed> ", tcp->s_ent->sys_name);
938 }
939 printing_tcp = tcp;
940
941 tcp->s_prev_ent = NULL;
942 if (res != 1) {
943 /* There was error in one of prior ptrace ops */
944 tprints(") ");
945 tabto();
946 tprints("= ? <unavailable>\n");
947 line_ended();
948 tcp->flags &= ~TCB_INSYSCALL;
Dmitry V. Levin204c2bc2015-07-08 14:10:56 +0000949 tcp->sys_func_rval = 0;
Dmitry V. Levin1b786072015-03-22 18:09:55 +0000950 return res;
951 }
952 tcp->s_prev_ent = tcp->s_ent;
953
954 sys_res = 0;
955 if (tcp->qual_flg & QUAL_RAW) {
956 /* sys_res = printargs(tcp); - but it's nop on sysexit */
957 } else {
958 /* FIXME: not_failing_only (IOW, option -z) is broken:
959 * failure of syscall is known only after syscall return.
960 * Thus we end up with something like this on, say, ENOENT:
961 * open("doesnt_exist", O_RDONLY <unfinished ...>
962 * {next syscall decode}
963 * whereas the intended result is that open(...) line
964 * is not shown at all.
965 */
966 if (not_failing_only && tcp->u_error)
967 goto ret; /* ignore failed syscalls */
Dmitry V. Levin204c2bc2015-07-08 14:10:56 +0000968 if (tcp->sys_func_rval & RVAL_DECODED)
969 sys_res = tcp->sys_func_rval;
970 else
971 sys_res = tcp->s_ent->sys_func(tcp);
Dmitry V. Levin1b786072015-03-22 18:09:55 +0000972 }
973
974 tprints(") ");
975 tabto();
976 u_error = tcp->u_error;
977 if (tcp->qual_flg & QUAL_RAW) {
978 if (u_error)
979 tprintf("= -1 (errno %ld)", u_error);
980 else
981 tprintf("= %#lx", tcp->u_rval);
982 }
983 else if (!(sys_res & RVAL_NONE) && u_error) {
984 switch (u_error) {
985 /* Blocked signals do not interrupt any syscalls.
986 * In this case syscalls don't return ERESTARTfoo codes.
987 *
988 * Deadly signals set to SIG_DFL interrupt syscalls
989 * and kill the process regardless of which of the codes below
990 * is returned by the interrupted syscall.
991 * In some cases, kernel forces a kernel-generated deadly
992 * signal to be unblocked and set to SIG_DFL (and thus cause
993 * death) if it is blocked or SIG_IGNed: for example, SIGSEGV
994 * or SIGILL. (The alternative is to leave process spinning
995 * forever on the faulty instruction - not useful).
996 *
997 * SIG_IGNed signals and non-deadly signals set to SIG_DFL
998 * (for example, SIGCHLD, SIGWINCH) interrupt syscalls,
999 * but kernel will always restart them.
1000 */
1001 case ERESTARTSYS:
1002 /* Most common type of signal-interrupted syscall exit code.
1003 * The system call will be restarted with the same arguments
1004 * if SA_RESTART is set; otherwise, it will fail with EINTR.
1005 */
1006 tprints("= ? ERESTARTSYS (To be restarted if SA_RESTART is set)");
1007 break;
1008 case ERESTARTNOINTR:
1009 /* Rare. For example, fork() returns this if interrupted.
1010 * SA_RESTART is ignored (assumed set): the restart is unconditional.
1011 */
1012 tprints("= ? ERESTARTNOINTR (To be restarted)");
1013 break;
1014 case ERESTARTNOHAND:
1015 /* pause(), rt_sigsuspend() etc use this code.
1016 * SA_RESTART is ignored (assumed not set):
1017 * syscall won't restart (will return EINTR instead)
1018 * even after signal with SA_RESTART set. However,
1019 * after SIG_IGN or SIG_DFL signal it will restart
1020 * (thus the name "restart only if has no handler").
1021 */
1022 tprints("= ? ERESTARTNOHAND (To be restarted if no handler)");
1023 break;
1024 case ERESTART_RESTARTBLOCK:
1025 /* Syscalls like nanosleep(), poll() which can't be
1026 * restarted with their original arguments use this
1027 * code. Kernel will execute restart_syscall() instead,
1028 * which changes arguments before restarting syscall.
1029 * SA_RESTART is ignored (assumed not set) similarly
1030 * to ERESTARTNOHAND. (Kernel can't honor SA_RESTART
1031 * since restart data is saved in "restart block"
1032 * in task struct, and if signal handler uses a syscall
1033 * which in turn saves another such restart block,
1034 * old data is lost and restart becomes impossible)
1035 */
1036 tprints("= ? ERESTART_RESTARTBLOCK (Interrupted by signal)");
1037 break;
1038 default:
1039 if ((unsigned long) u_error < nerrnos
1040 && errnoent[u_error])
1041 tprintf("= -1 %s (%s)", errnoent[u_error],
1042 strerror(u_error));
1043 else
1044 tprintf("= -1 ERRNO_%lu (%s)", u_error,
1045 strerror(u_error));
1046 break;
1047 }
1048 if ((sys_res & RVAL_STR) && tcp->auxstr)
1049 tprintf(" (%s)", tcp->auxstr);
1050 }
1051 else {
1052 if (sys_res & RVAL_NONE)
1053 tprints("= ?");
1054 else {
1055 switch (sys_res & RVAL_MASK) {
1056 case RVAL_HEX:
1057#if SUPPORTED_PERSONALITIES > 1
1058 if (current_wordsize < sizeof(long))
1059 tprintf("= %#x",
1060 (unsigned int) tcp->u_rval);
1061 else
1062#endif
1063 tprintf("= %#lx", tcp->u_rval);
1064 break;
1065 case RVAL_OCTAL:
1066 tprintf("= %#lo", tcp->u_rval);
1067 break;
1068 case RVAL_UDECIMAL:
1069 tprintf("= %lu", tcp->u_rval);
1070 break;
1071 case RVAL_DECIMAL:
1072 tprintf("= %ld", tcp->u_rval);
1073 break;
1074 case RVAL_FD:
1075 if (show_fd_path) {
1076 tprints("= ");
1077 printfd(tcp, tcp->u_rval);
1078 }
1079 else
1080 tprintf("= %ld", tcp->u_rval);
1081 break;
1082#if defined(LINUX_MIPSN32) || defined(X32)
1083 /*
1084 case RVAL_LHEX:
1085 tprintf("= %#llx", tcp->u_lrval);
1086 break;
1087 case RVAL_LOCTAL:
1088 tprintf("= %#llo", tcp->u_lrval);
1089 break;
1090 */
1091 case RVAL_LUDECIMAL:
1092 tprintf("= %llu", tcp->u_lrval);
1093 break;
1094 /*
1095 case RVAL_LDECIMAL:
1096 tprintf("= %lld", tcp->u_lrval);
1097 break;
1098 */
1099#endif
1100 default:
Dmitry V. Levin6c8ef052015-05-25 22:51:19 +00001101 error_msg("invalid rval format");
Dmitry V. Levin1b786072015-03-22 18:09:55 +00001102 break;
1103 }
1104 }
1105 if ((sys_res & RVAL_STR) && tcp->auxstr)
1106 tprintf(" (%s)", tcp->auxstr);
1107 }
1108 if (Tflag) {
1109 tv_sub(&tv, &tv, &tcp->etime);
1110 tprintf(" <%ld.%06ld>",
1111 (long) tv.tv_sec, (long) tv.tv_usec);
1112 }
1113 tprints("\n");
1114 dumpio(tcp);
1115 line_ended();
1116
1117#ifdef USE_LIBUNWIND
1118 if (stack_trace_enabled)
1119 unwind_print_stacktrace(tcp);
1120#endif
1121
1122 ret:
1123 tcp->flags &= ~TCB_INSYSCALL;
Dmitry V. Levin204c2bc2015-07-08 14:10:56 +00001124 tcp->sys_func_rval = 0;
Dmitry V. Levin1b786072015-03-22 18:09:55 +00001125 return 0;
1126}
1127
1128int
1129trace_syscall(struct tcb *tcp)
1130{
1131 return exiting(tcp) ?
1132 trace_syscall_exiting(tcp) : trace_syscall_entering(tcp);
1133}
1134
Dmitry V. Levin9af94a22015-09-18 01:54:59 +00001135bool
1136is_erestart(struct tcb *tcp)
1137{
1138 switch (tcp->u_error) {
1139 case ERESTARTSYS:
1140 case ERESTARTNOINTR:
1141 case ERESTARTNOHAND:
1142 case ERESTART_RESTARTBLOCK:
1143 return true;
1144 default:
1145 return false;
1146 }
1147}
1148
Dmitry V. Levin3858b932015-09-18 01:54:59 +00001149static int saved_u_error;
1150
1151void
1152temporarily_clear_syserror(struct tcb *tcp)
1153{
1154 saved_u_error = tcp->u_error;
1155 tcp->u_error = 0;
1156}
1157
1158void
1159restore_cleared_syserror(struct tcb *tcp)
1160{
1161 tcp->u_error = saved_u_error;
1162}
1163
Dmitry V. Levinbdb07e32015-11-27 01:51:22 +00001164#include "kernel_types.h"
Dmitry V. Levin1b786072015-03-22 18:09:55 +00001165
1166/*
1167 * Check the syscall return value register value for whether it is
1168 * a negated errno code indicating an error, or a success return value.
1169 */
1170static inline bool
1171is_negated_errno(kernel_ulong_t val)
1172{
1173 /* Linux kernel defines MAX_ERRNO to 4095. */
1174 kernel_ulong_t max = -(kernel_long_t) 4095;
1175
1176#if SUPPORTED_PERSONALITIES > 1 && SIZEOF_LONG > 4
1177 if (current_wordsize < sizeof(val)) {
1178 val = (uint32_t) val;
1179 max = (uint32_t) max;
1180 }
1181#elif defined X32
1182 /*
1183 * current_wordsize is 4 even in personality 0 (native X32)
1184 * but truncation _must not_ be done in it.
1185 * can't check current_wordsize here!
1186 */
1187 if (current_personality != 0) {
1188 val = (uint32_t) val;
1189 max = (uint32_t) max;
1190 }
1191#endif
1192
1193 return val >= max;
1194}
1195
Dmitry V. Levind70d1c42015-03-22 22:13:55 +00001196#include "arch_regs.c"
Wichert Akkermanc7926982000-04-10 22:22:31 +00001197
Dmitry V. Levin78ed3f32015-03-23 00:04:27 +00001198#ifdef HAVE_GETRVAL2
Dmitry V. Levind70d1c42015-03-22 22:13:55 +00001199# include "arch_getrval2.c"
Dmitry V. Levin48f08902015-03-05 23:30:02 +00001200#endif
1201
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01001202void
Denys Vlasenko5a2483b2013-07-01 12:49:14 +02001203print_pc(struct tcb *tcp)
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01001204{
Dmitry V. Levin5105d4a2015-11-30 03:30:51 +00001205#if defined ARCH_PC_REG
1206# define ARCH_GET_PC 0
1207#elif defined ARCH_PC_PEEK_ADDR
1208 long pc;
1209# define ARCH_PC_REG pc
1210# define ARCH_GET_PC upeek(tcp->pid, ARCH_PC_PEEK_ADDR, &pc)
Dmitry V. Levinb2d9ff22015-02-23 13:43:20 +00001211#else
Dmitry V. Levin5105d4a2015-11-30 03:30:51 +00001212# error Neither ARCH_PC_REG nor ARCH_PC_PEEK_ADDR is defined
Dmitry V. Levine96cb622015-02-15 15:52:02 +00001213#endif
Dmitry V. Levin5105d4a2015-11-30 03:30:51 +00001214 if (get_regs_error || ARCH_GET_PC)
1215 tprints(current_wordsize == 4 ? "[????????] "
1216 : "[????????????????] ");
1217 else
1218 tprintf(current_wordsize == 4 ? "[%08lx] " : "[%016lx] ",
1219 (unsigned long) ARCH_PC_REG);
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01001220}
1221
Dmitry V. Levind6db1db2015-02-13 23:41:04 +00001222#if defined ARCH_REGS_FOR_GETREGSET
1223static long
1224get_regset(pid_t pid)
Dmitry V. Levinfaa177e2013-03-17 23:48:45 +00001225{
Dmitry V. Levind6db1db2015-02-13 23:41:04 +00001226# ifdef ARCH_IOVEC_FOR_GETREGSET
1227 /* variable iovec */
1228 ARCH_IOVEC_FOR_GETREGSET.iov_len = sizeof(ARCH_REGS_FOR_GETREGSET);
1229 return ptrace(PTRACE_GETREGSET, pid, NT_PRSTATUS,
1230 &ARCH_IOVEC_FOR_GETREGSET);
1231# else
1232 /* constant iovec */
Dmitry V. Levinb787b102013-03-18 10:17:14 +00001233 static struct iovec io = {
1234 .iov_base = &ARCH_REGS_FOR_GETREGSET,
1235 .iov_len = sizeof(ARCH_REGS_FOR_GETREGSET)
Dmitry V. Levinfaa177e2013-03-17 23:48:45 +00001236 };
Dmitry V. Levind6db1db2015-02-13 23:41:04 +00001237 return ptrace(PTRACE_GETREGSET, pid, NT_PRSTATUS, &io);
Dmitry V. Levinb787b102013-03-18 10:17:14 +00001238
Dmitry V. Levinfaa177e2013-03-17 23:48:45 +00001239# endif
Dmitry V. Levinb787b102013-03-18 10:17:14 +00001240}
Dmitry V. Levind6db1db2015-02-13 23:41:04 +00001241#endif /* ARCH_REGS_FOR_GETREGSET */
Dmitry V. Levinb787b102013-03-18 10:17:14 +00001242
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +01001243void
1244get_regs(pid_t pid)
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01001245{
Dmitry V. Levinf51aec62015-11-30 00:01:01 +00001246#undef USE_GET_SYSCALL_RESULT_REGS
Dmitry V. Levin7abf2e82015-02-13 23:56:54 +00001247#ifdef ARCH_REGS_FOR_GETREGSET
1248# ifdef X86_64
1249 /* Try PTRACE_GETREGSET first, fallback to PTRACE_GETREGS. */
Dmitry V. Levin27e3ae92013-03-17 23:18:35 +00001250 static int getregset_support;
1251
1252 if (getregset_support >= 0) {
Dmitry V. Levind6db1db2015-02-13 23:41:04 +00001253 get_regs_error = get_regset(pid);
Dmitry V. Levin27e3ae92013-03-17 23:18:35 +00001254 if (getregset_support > 0)
1255 return;
1256 if (get_regs_error >= 0) {
1257 getregset_support = 1;
1258 return;
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +01001259 }
Dmitry V. Levin27e3ae92013-03-17 23:18:35 +00001260 if (errno == EPERM || errno == ESRCH)
1261 return;
1262 getregset_support = -1;
1263 }
Dmitry V. Levinf3e9e612015-11-30 15:30:05 +00001264 get_regs_error = getregs_old(pid);
Dmitry V. Levin7abf2e82015-02-13 23:56:54 +00001265# else /* !X86_64 */
1266 /* Assume that PTRACE_GETREGSET works. */
1267 get_regs_error = get_regset(pid);
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01001268# endif
Dmitry V. Levin7abf2e82015-02-13 23:56:54 +00001269#elif defined ARCH_REGS_FOR_GETREGS
1270# if defined SPARC || defined SPARC64
1271 /* SPARC systems have the meaning of data and addr reversed */
1272 get_regs_error = ptrace(PTRACE_GETREGS, pid, (char *)&ARCH_REGS_FOR_GETREGS, 0);
1273# elif defined POWERPC
1274 static bool old_kernel = 0;
1275 if (old_kernel)
1276 goto old;
1277 get_regs_error = ptrace(PTRACE_GETREGS, pid, NULL, &ARCH_REGS_FOR_GETREGS);
1278 if (get_regs_error && errno == EIO) {
1279 old_kernel = 1;
1280 old:
Dmitry V. Levind70d1c42015-03-22 22:13:55 +00001281 get_regs_error = getregs_old(pid);
Dmitry V. Levin7abf2e82015-02-13 23:56:54 +00001282 }
1283# else
1284 /* Assume that PTRACE_GETREGS works. */
1285 get_regs_error = ptrace(PTRACE_GETREGS, pid, NULL, &ARCH_REGS_FOR_GETREGS);
1286# endif
1287
1288#else /* !ARCH_REGS_FOR_GETREGSET && !ARCH_REGS_FOR_GETREGS */
Dmitry V. Levinf51aec62015-11-30 00:01:01 +00001289# define USE_GET_SYSCALL_RESULT_REGS 1
1290# warning get_regs is not implemented for this architecture yet
Dmitry V. Levin7abf2e82015-02-13 23:56:54 +00001291 get_regs_error = 0;
1292#endif
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01001293}
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01001294
Dmitry V. Levin16510512015-11-30 01:46:52 +00001295/*
1296 * Returns:
Denys Vlasenko907735a2012-03-21 00:23:16 +01001297 * 0: "ignore this ptrace stop", bail out of trace_syscall_entering() silently.
1298 * 1: ok, continue in trace_syscall_entering().
1299 * other: error, trace_syscall_entering() should print error indicator
Denys Vlasenkob88f9612011-08-21 18:03:23 +02001300 * ("????" etc) and bail out.
1301 */
Denys Vlasenko8497b622015-03-21 17:51:52 +01001302int
Denys Vlasenko06602d92011-08-24 17:53:52 +02001303get_scno(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001304{
Dmitry V. Levin144cda22015-03-23 18:48:32 +00001305 if (get_regs_error)
1306 return -1;
1307
Dmitry V. Levin16510512015-11-30 01:46:52 +00001308 int rc = arch_get_scno(tcp);
1309 if (rc != 1)
1310 return rc;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001311
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01001312 if (SCNO_IS_VALID(tcp->scno)) {
Dmitry V. Levin16510512015-11-30 01:46:52 +00001313 tcp->s_ent = &sysent[tcp->scno];
1314 tcp->qual_flg = qual_flags[tcp->scno];
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01001315 } else {
Denys Vlasenkoa9fe13c2013-02-22 13:26:10 +01001316 static const struct_sysent unknown = {
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01001317 .nargs = MAX_ARGS,
1318 .sys_flags = 0,
1319 .sys_func = printargs,
Denys Vlasenkocc59f142015-04-07 12:46:59 +02001320 .sys_name = "system call",
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01001321 };
1322 tcp->s_ent = &unknown;
1323 tcp->qual_flg = UNDEFINED_SCNO | QUAL_RAW | DEFAULT_QUAL_FLAGS;
Dmitry V. Levinea009002015-03-24 01:59:07 +00001324 if (debug_flag)
Dmitry V. Levin16510512015-11-30 01:46:52 +00001325 error_msg("pid %d invalid syscall %ld", tcp->pid, tcp->scno);
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01001326 }
Pavel Machek4dc3b142000-02-01 17:58:41 +00001327 return 1;
1328}
1329
Dmitry V. Levinf51aec62015-11-30 00:01:01 +00001330#ifdef USE_GET_SYSCALL_RESULT_REGS
Dmitry V. Levin7386ca72015-11-30 13:57:51 +00001331static int get_syscall_result_regs(struct tcb *);
Dmitry V. Levinf51aec62015-11-30 00:01:01 +00001332#endif
Denys Vlasenkoa6146922011-08-24 18:07:22 +02001333
Dmitry V. Levin1b786072015-03-22 18:09:55 +00001334/* Returns:
1335 * 1: ok, continue in trace_syscall_exiting().
1336 * -1: error, trace_syscall_exiting() should print error indicator
1337 * ("????" etc) and bail out.
1338 */
Denys Vlasenkoed4f4f02011-08-22 11:54:06 +02001339static int
Dmitry V. Levin1b786072015-03-22 18:09:55 +00001340get_syscall_result(struct tcb *tcp)
Pavel Machek4dc3b142000-02-01 17:58:41 +00001341{
Dmitry V. Levinf51aec62015-11-30 00:01:01 +00001342#ifdef USE_GET_SYSCALL_RESULT_REGS
1343 if (get_syscall_result_regs(tcp))
1344 return -1;
Masatake YAMATOed69fc22014-04-16 15:33:35 +09001345#endif
Dmitry V. Levin0c8c5c92015-11-29 00:06:45 +00001346 tcp->u_error = 0;
1347 get_error(tcp, !(tcp->s_ent->sys_flags & SYSCALL_NEVER_FAILS));
1348
Dmitry V. Levin1b786072015-03-22 18:09:55 +00001349 return 1;
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00001350}
Dmitry V. Levin7386ca72015-11-30 13:57:51 +00001351
1352#include "get_scno.c"
1353#include "get_syscall_args.c"
1354#ifdef USE_GET_SYSCALL_RESULT_REGS
1355# include "get_syscall_result.c"
1356#endif
1357#include "get_error.c"
1358#if defined X86_64 || defined POWERPC
1359# include "getregs_old.c"
1360#endif