blob: 228536b479a7f51ac8dd4cb98fd69939c73e8f5a [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"
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000035#include <sys/param.h>
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000036
Dmitry V. Levin5503dd22015-02-13 02:12:14 +000037/* for struct iovec */
38#include <sys/uio.h>
Maarten ter Huurne40c174b2014-10-20 01:02:48 +020039
Dmitry V. Levin7211dbc2015-02-28 12:20:21 +000040#include "regs.h"
Dmitry V. Levinfadf3792015-02-13 00:26:38 +000041#include "ptrace.h"
Wichert Akkerman15dea971999-10-06 13:06:34 +000042
Denys Vlasenko84703742012-02-25 02:38:52 +010043#if defined(SPARC64)
Roland McGrath6d1a65c2004-07-12 07:44:08 +000044# undef PTRACE_GETREGS
45# define PTRACE_GETREGS PTRACE_GETREGS64
46# undef PTRACE_SETREGS
47# define PTRACE_SETREGS PTRACE_SETREGS64
Denys Vlasenko84703742012-02-25 02:38:52 +010048#endif
Roland McGrath6d1a65c2004-07-12 07:44:08 +000049
Dmitry V. Levin5503dd22015-02-13 02:12:14 +000050#if defined SPARC64
51# include <asm/psrcompat.h>
52#elif defined SPARC
53# include <asm/psr.h>
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +010054#endif
55
Dmitry V. Levin4c3f2ae2015-02-13 22:53:00 +000056#ifndef NT_PRSTATUS
57# define NT_PRSTATUS 1
58#endif
59
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000060#ifndef NSIG
Denys Vlasenko523635f2012-02-25 02:44:25 +010061# warning: NSIG is not defined, using 32
62# define NSIG 32
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000063#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000064
65#include "syscall.h"
66
67/* Define these shorthand notations to simplify the syscallent files. */
Roland McGrath2fe7b132005-07-05 03:25:35 +000068#define TD TRACE_DESC
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000069#define TF TRACE_FILE
70#define TI TRACE_IPC
71#define TN TRACE_NETWORK
72#define TP TRACE_PROCESS
73#define TS TRACE_SIGNAL
Namhyung Kim96792962012-10-24 11:41:57 +090074#define TM TRACE_MEMORY
Dmitry V. Levin50a218d2011-01-18 17:36:20 +000075#define NF SYSCALL_NEVER_FAILS
Denys Vlasenkoac1ce772011-08-23 13:24:17 +020076#define MA MAX_ARGS
Masatake YAMATO1d78d222014-04-16 15:33:11 +090077#define SI STACKTRACE_INVALIDATE_CACHE
78#define SE STACKTRACE_CAPTURE_ON_ENTER
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000079
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +010080const struct_sysent sysent0[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000081#include "syscallent.h"
82};
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000083
Denys Vlasenkoa9fe13c2013-02-22 13:26:10 +010084#if SUPPORTED_PERSONALITIES > 1
85static const struct_sysent sysent1[] = {
Denys Vlasenko523635f2012-02-25 02:44:25 +010086# include "syscallent1.h"
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000087};
Denys Vlasenko39fca622011-08-20 02:12:33 +020088#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000089
Denys Vlasenkoa9fe13c2013-02-22 13:26:10 +010090#if SUPPORTED_PERSONALITIES > 2
91static const struct_sysent sysent2[] = {
Denys Vlasenko523635f2012-02-25 02:44:25 +010092# include "syscallent2.h"
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000093};
Denys Vlasenko39fca622011-08-20 02:12:33 +020094#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000095
96/* Now undef them since short defines cause wicked namespace pollution. */
Roland McGrath2fe7b132005-07-05 03:25:35 +000097#undef TD
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000098#undef TF
99#undef TI
100#undef TN
101#undef TP
102#undef TS
Namhyung Kim96792962012-10-24 11:41:57 +0900103#undef TM
Dmitry V. Levin50a218d2011-01-18 17:36:20 +0000104#undef NF
Denys Vlasenkoac1ce772011-08-23 13:24:17 +0200105#undef MA
Masatake YAMATO1d78d222014-04-16 15:33:11 +0900106#undef SI
107#undef SE
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000108
Denys Vlasenko39fca622011-08-20 02:12:33 +0200109/*
Dmitry V. Levindf7aa2b2015-01-19 17:02:16 +0000110 * `ioctlent[012].h' files are automatically generated by the auxiliary
Denys Vlasenko39fca622011-08-20 02:12:33 +0200111 * program `ioctlsort', such that the list is sorted by the `code' field.
112 * This has the side-effect of resolving the _IO.. macros into
113 * plain integers, eliminating the need to include here everything
114 * in "/usr/include".
115 */
116
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100117const char *const errnoent0[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000118#include "errnoent.h"
119};
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100120const char *const signalent0[] = {
Denys Vlasenko39fca622011-08-20 02:12:33 +0200121#include "signalent.h"
122};
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100123const struct_ioctlent ioctlent0[] = {
Dmitry V. Levindf7aa2b2015-01-19 17:02:16 +0000124#include "ioctlent0.h"
Denys Vlasenko39fca622011-08-20 02:12:33 +0200125};
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000126
Denys Vlasenkoa9fe13c2013-02-22 13:26:10 +0100127#if SUPPORTED_PERSONALITIES > 1
Roland McGrathee36ce12004-09-04 03:53:10 +0000128static const char *const errnoent1[] = {
Denys Vlasenko523635f2012-02-25 02:44:25 +0100129# include "errnoent1.h"
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000130};
Denys Vlasenko39fca622011-08-20 02:12:33 +0200131static const char *const signalent1[] = {
Denys Vlasenko523635f2012-02-25 02:44:25 +0100132# include "signalent1.h"
Denys Vlasenko39fca622011-08-20 02:12:33 +0200133};
Denys Vlasenkoa9fe13c2013-02-22 13:26:10 +0100134static const struct_ioctlent ioctlent1[] = {
Denys Vlasenko523635f2012-02-25 02:44:25 +0100135# include "ioctlent1.h"
Denys Vlasenko39fca622011-08-20 02:12:33 +0200136};
Denys Vlasenko39fca622011-08-20 02:12:33 +0200137#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000138
Denys Vlasenkoa9fe13c2013-02-22 13:26:10 +0100139#if SUPPORTED_PERSONALITIES > 2
Roland McGrathee36ce12004-09-04 03:53:10 +0000140static const char *const errnoent2[] = {
Denys Vlasenko523635f2012-02-25 02:44:25 +0100141# include "errnoent2.h"
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000142};
Denys Vlasenko39fca622011-08-20 02:12:33 +0200143static const char *const signalent2[] = {
Denys Vlasenko523635f2012-02-25 02:44:25 +0100144# include "signalent2.h"
Denys Vlasenko39fca622011-08-20 02:12:33 +0200145};
Denys Vlasenkoa9fe13c2013-02-22 13:26:10 +0100146static const struct_ioctlent ioctlent2[] = {
Denys Vlasenko523635f2012-02-25 02:44:25 +0100147# include "ioctlent2.h"
Denys Vlasenko39fca622011-08-20 02:12:33 +0200148};
Denys Vlasenko39fca622011-08-20 02:12:33 +0200149#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000150
Dmitry V. Levine6f55242013-02-26 22:02:30 +0000151enum {
152 nsyscalls0 = ARRAY_SIZE(sysent0)
153#if SUPPORTED_PERSONALITIES > 1
154 , nsyscalls1 = ARRAY_SIZE(sysent1)
155# if SUPPORTED_PERSONALITIES > 2
156 , nsyscalls2 = ARRAY_SIZE(sysent2)
157# endif
158#endif
159};
160
161enum {
162 nerrnos0 = ARRAY_SIZE(errnoent0)
163#if SUPPORTED_PERSONALITIES > 1
164 , nerrnos1 = ARRAY_SIZE(errnoent1)
165# if SUPPORTED_PERSONALITIES > 2
166 , nerrnos2 = ARRAY_SIZE(errnoent2)
167# endif
168#endif
169};
170
171enum {
172 nsignals0 = ARRAY_SIZE(signalent0)
173#if SUPPORTED_PERSONALITIES > 1
174 , nsignals1 = ARRAY_SIZE(signalent1)
175# if SUPPORTED_PERSONALITIES > 2
176 , nsignals2 = ARRAY_SIZE(signalent2)
177# endif
178#endif
179};
180
181enum {
182 nioctlents0 = ARRAY_SIZE(ioctlent0)
183#if SUPPORTED_PERSONALITIES > 1
184 , nioctlents1 = ARRAY_SIZE(ioctlent1)
185# if SUPPORTED_PERSONALITIES > 2
186 , nioctlents2 = ARRAY_SIZE(ioctlent2)
187# endif
188#endif
189};
190
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100191#if SUPPORTED_PERSONALITIES > 1
Denys Vlasenkoa9fe13c2013-02-22 13:26:10 +0100192const struct_sysent *sysent = sysent0;
Denys Vlasenko9fd4f962012-03-19 09:36:42 +0100193const char *const *errnoent = errnoent0;
194const char *const *signalent = signalent0;
Denys Vlasenkoa9fe13c2013-02-22 13:26:10 +0100195const struct_ioctlent *ioctlent = ioctlent0;
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100196#endif
Denys Vlasenko9fd4f962012-03-19 09:36:42 +0100197unsigned nsyscalls = nsyscalls0;
198unsigned nerrnos = nerrnos0;
199unsigned nsignals = nsignals0;
200unsigned nioctlents = nioctlents0;
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100201
202unsigned num_quals;
203qualbits_t *qual_vec[SUPPORTED_PERSONALITIES];
204
205static const unsigned nsyscall_vec[SUPPORTED_PERSONALITIES] = {
206 nsyscalls0,
207#if SUPPORTED_PERSONALITIES > 1
208 nsyscalls1,
209#endif
210#if SUPPORTED_PERSONALITIES > 2
211 nsyscalls2,
212#endif
213};
214static const struct_sysent *const sysent_vec[SUPPORTED_PERSONALITIES] = {
215 sysent0,
216#if SUPPORTED_PERSONALITIES > 1
217 sysent1,
218#endif
219#if SUPPORTED_PERSONALITIES > 2
220 sysent2,
221#endif
222};
223
224enum {
225 MAX_NSYSCALLS1 = (nsyscalls0
226#if SUPPORTED_PERSONALITIES > 1
227 > nsyscalls1 ? nsyscalls0 : nsyscalls1
228#endif
229 ),
230 MAX_NSYSCALLS2 = (MAX_NSYSCALLS1
231#if SUPPORTED_PERSONALITIES > 2
232 > nsyscalls2 ? MAX_NSYSCALLS1 : nsyscalls2
233#endif
234 ),
235 MAX_NSYSCALLS = MAX_NSYSCALLS2,
236 /* We are ready for arches with up to 255 signals,
237 * even though the largest known signo is on MIPS and it is 128.
238 * The number of existing syscalls on all arches is
239 * larger that 255 anyway, so it is just a pedantic matter.
240 */
241 MIN_QUALS = MAX_NSYSCALLS > 255 ? MAX_NSYSCALLS : 255
242};
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000243
Denys Vlasenko9fd4f962012-03-19 09:36:42 +0100244#if SUPPORTED_PERSONALITIES > 1
Denys Vlasenkoae8643e2013-02-15 14:55:14 +0100245unsigned current_personality;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000246
Denys Vlasenkoae8643e2013-02-15 14:55:14 +0100247# ifndef current_wordsize
248unsigned current_wordsize;
249static const int personality_wordsize[SUPPORTED_PERSONALITIES] = {
Roland McGrath4b2dcca2006-01-12 10:18:53 +0000250 PERSONALITY0_WORDSIZE,
Roland McGrath4b2dcca2006-01-12 10:18:53 +0000251 PERSONALITY1_WORDSIZE,
Denys Vlasenko9fd4f962012-03-19 09:36:42 +0100252# if SUPPORTED_PERSONALITIES > 2
Roland McGrath4b2dcca2006-01-12 10:18:53 +0000253 PERSONALITY2_WORDSIZE,
Denys Vlasenko9fd4f962012-03-19 09:36:42 +0100254# endif
Denys Vlasenko5c774b22011-08-20 01:50:09 +0200255};
Denys Vlasenkoae8643e2013-02-15 14:55:14 +0100256# endif
Roland McGrath4b2dcca2006-01-12 10:18:53 +0000257
Denys Vlasenko5c774b22011-08-20 01:50:09 +0200258void
Dmitry V. Levin3abe8b22006-12-20 22:37:21 +0000259set_personality(int personality)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000260{
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100261 nsyscalls = nsyscall_vec[personality];
262 sysent = sysent_vec[personality];
263
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000264 switch (personality) {
265 case 0:
266 errnoent = errnoent0;
267 nerrnos = nerrnos0;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000268 ioctlent = ioctlent0;
269 nioctlents = nioctlents0;
270 signalent = signalent0;
271 nsignals = nsignals0;
272 break;
273
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000274 case 1:
275 errnoent = errnoent1;
276 nerrnos = nerrnos1;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000277 ioctlent = ioctlent1;
278 nioctlents = nioctlents1;
279 signalent = signalent1;
280 nsignals = nsignals1;
281 break;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000282
Denys Vlasenkoa9fe13c2013-02-22 13:26:10 +0100283# if SUPPORTED_PERSONALITIES > 2
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000284 case 2:
285 errnoent = errnoent2;
286 nerrnos = nerrnos2;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000287 ioctlent = ioctlent2;
288 nioctlents = nioctlents2;
289 signalent = signalent2;
290 nsignals = nsignals2;
291 break;
Denys Vlasenko9fd4f962012-03-19 09:36:42 +0100292# endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000293 }
294
295 current_personality = personality;
Denys Vlasenkoae8643e2013-02-15 14:55:14 +0100296# ifndef current_wordsize
297 current_wordsize = personality_wordsize[personality];
298# endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000299}
300
Dmitry V. Levina5a839a2011-12-23 00:50:49 +0000301static void
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +0000302update_personality(struct tcb *tcp, unsigned int personality)
Dmitry V. Levina5a839a2011-12-23 00:50:49 +0000303{
304 if (personality == current_personality)
305 return;
306 set_personality(personality);
307
308 if (personality == tcp->currpers)
309 return;
310 tcp->currpers = personality;
311
H.J. Lu35be5812012-04-16 13:00:01 +0200312# if defined(POWERPC64)
Dmitry V. Levina5a839a2011-12-23 00:50:49 +0000313 if (!qflag) {
314 static const char *const names[] = {"64 bit", "32 bit"};
315 fprintf(stderr, "[ Process PID=%d runs in %s mode. ]\n",
316 tcp->pid, names[personality]);
317 }
H.J. Lu35be5812012-04-16 13:00:01 +0200318# elif defined(X86_64)
319 if (!qflag) {
320 static const char *const names[] = {"64 bit", "32 bit", "x32"};
321 fprintf(stderr, "[ Process PID=%d runs in %s mode. ]\n",
322 tcp->pid, names[personality]);
323 }
H.J. Lu085e4282012-04-17 11:05:04 -0700324# elif defined(X32)
325 if (!qflag) {
326 static const char *const names[] = {"x32", "32 bit"};
327 fprintf(stderr, "[ Process PID=%d runs in %s mode. ]\n",
328 tcp->pid, names[personality]);
329 }
Steve McIntyre890a5ca2012-11-10 11:24:48 +0000330# elif defined(AARCH64)
331 if (!qflag) {
Denys Vlasenko28ac68f2013-02-08 12:38:51 +0100332 static const char *const names[] = {"32-bit", "AArch64"};
Steve McIntyre890a5ca2012-11-10 11:24:48 +0000333 fprintf(stderr, "[ Process PID=%d runs in %s mode. ]\n",
334 tcp->pid, names[personality]);
335 }
Chris Metcalf0b99a8a2013-02-05 17:48:33 +0100336# elif defined(TILE)
337 if (!qflag) {
338 static const char *const names[] = {"64-bit", "32-bit"};
339 fprintf(stderr, "[ Process PID=%d runs in %s mode. ]\n",
340 tcp->pid, names[personality]);
341 }
Denys Vlasenko523635f2012-02-25 02:44:25 +0100342# endif
Dmitry V. Levina5a839a2011-12-23 00:50:49 +0000343}
344#endif
Roland McGrathe10e62a2004-09-04 04:20:43 +0000345
Denys Vlasenkoc1540fe2013-02-21 16:17:08 +0100346static int qual_syscall(), qual_signal(), qual_desc();
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000347
Roland McGrathe10e62a2004-09-04 04:20:43 +0000348static const struct qual_options {
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +0000349 unsigned int bitflag;
Dmitry V. Levin30145dd2010-09-06 22:08:24 +0000350 const char *option_name;
Dmitry V. Levin35d05722010-09-15 16:18:20 +0000351 int (*qualify)(const char *, int, int);
Dmitry V. Levin30145dd2010-09-06 22:08:24 +0000352 const char *argument_name;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000353} qual_options[] = {
Roland McGrath9797ceb2002-12-30 10:23:00 +0000354 { QUAL_TRACE, "trace", qual_syscall, "system call" },
355 { QUAL_TRACE, "t", qual_syscall, "system call" },
356 { QUAL_ABBREV, "abbrev", qual_syscall, "system call" },
357 { QUAL_ABBREV, "a", qual_syscall, "system call" },
358 { QUAL_VERBOSE, "verbose", qual_syscall, "system call" },
359 { QUAL_VERBOSE, "v", qual_syscall, "system call" },
360 { QUAL_RAW, "raw", qual_syscall, "system call" },
361 { QUAL_RAW, "x", qual_syscall, "system call" },
362 { QUAL_SIGNAL, "signal", qual_signal, "signal" },
363 { QUAL_SIGNAL, "signals", qual_signal, "signal" },
364 { QUAL_SIGNAL, "s", qual_signal, "signal" },
Roland McGrath9797ceb2002-12-30 10:23:00 +0000365 { QUAL_READ, "read", qual_desc, "descriptor" },
366 { QUAL_READ, "reads", qual_desc, "descriptor" },
367 { QUAL_READ, "r", qual_desc, "descriptor" },
368 { QUAL_WRITE, "write", qual_desc, "descriptor" },
369 { QUAL_WRITE, "writes", qual_desc, "descriptor" },
370 { QUAL_WRITE, "w", qual_desc, "descriptor" },
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000371 { 0, NULL, NULL, NULL },
372};
373
Roland McGrath9797ceb2002-12-30 10:23:00 +0000374static void
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +0000375reallocate_qual(const unsigned int n)
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100376{
377 unsigned p;
378 qualbits_t *qp;
379 for (p = 0; p < SUPPORTED_PERSONALITIES; p++) {
380 qp = qual_vec[p] = realloc(qual_vec[p], n * sizeof(qualbits_t));
381 if (!qp)
382 die_out_of_memory();
383 memset(&qp[num_quals], 0, (n - num_quals) * sizeof(qualbits_t));
384 }
385 num_quals = n;
386}
387
388static void
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +0000389qualify_one(const unsigned int n, unsigned int bitflag, const int not, const int pers)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000390{
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +0000391 int p;
Roland McGrath138c6a32006-01-12 09:50:49 +0000392
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100393 if (num_quals <= n)
394 reallocate_qual(n + 1);
Roland McGrath138c6a32006-01-12 09:50:49 +0000395
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100396 for (p = 0; p < SUPPORTED_PERSONALITIES; p++) {
397 if (pers == p || pers < 0) {
398 if (not)
399 qual_vec[p][n] &= ~bitflag;
400 else
401 qual_vec[p][n] |= bitflag;
402 }
Roland McGrath138c6a32006-01-12 09:50:49 +0000403 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000404}
405
406static int
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +0000407qual_syscall(const char *s, const unsigned int bitflag, const int not)
Roland McGrath9797ceb2002-12-30 10:23:00 +0000408{
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +0000409 int p;
410 unsigned int i;
Roland McGrathfe6b3522005-02-02 04:40:11 +0000411 int rc = -1;
Roland McGrath9797ceb2002-12-30 10:23:00 +0000412
Denys Vlasenkoe4cc7c52012-03-23 11:29:01 +0100413 if (*s >= '0' && *s <= '9') {
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100414 i = string_to_uint(s);
Denys Vlasenkob43dacd2013-02-23 18:19:28 +0100415 if (i >= MAX_NSYSCALLS)
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +0000416 return -1;
Dmitry V. Levin35d05722010-09-15 16:18:20 +0000417 qualify_one(i, bitflag, not, -1);
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +0000418 return 0;
Roland McGrath48a035f2006-01-12 09:45:56 +0000419 }
Roland McGrath138c6a32006-01-12 09:50:49 +0000420
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100421 for (p = 0; p < SUPPORTED_PERSONALITIES; p++) {
422 for (i = 0; i < nsyscall_vec[p]; i++) {
423 if (sysent_vec[p][i].sys_name
424 && strcmp(s, sysent_vec[p][i].sys_name) == 0
425 ) {
Dmitry V. Levin7b9e45e2013-03-01 15:50:22 +0000426 qualify_one(i, bitflag, not, p);
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100427 rc = 0;
428 }
Roland McGrath138c6a32006-01-12 09:50:49 +0000429 }
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100430 }
Dmitry V. Levinc18c7032007-08-22 21:43:30 +0000431
Roland McGrathfe6b3522005-02-02 04:40:11 +0000432 return rc;
Roland McGrath9797ceb2002-12-30 10:23:00 +0000433}
434
435static int
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +0000436qual_signal(const char *s, const unsigned int bitflag, const int not)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000437{
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +0000438 unsigned int i;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000439
Denys Vlasenkoe4cc7c52012-03-23 11:29:01 +0100440 if (*s >= '0' && *s <= '9') {
Dmitry V. Levinccee1692012-03-25 21:49:48 +0000441 int signo = string_to_uint(s);
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100442 if (signo < 0 || signo > 255)
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +0000443 return -1;
Dmitry V. Levin35d05722010-09-15 16:18:20 +0000444 qualify_one(signo, bitflag, not, -1);
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +0000445 return 0;
Roland McGrath9797ceb2002-12-30 10:23:00 +0000446 }
Dmitry V. Levin30145dd2010-09-06 22:08:24 +0000447 if (strncasecmp(s, "SIG", 3) == 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000448 s += 3;
Denys Vlasenkoe4cc7c52012-03-23 11:29:01 +0100449 for (i = 0; i <= NSIG; i++) {
Dmitry V. Levin30145dd2010-09-06 22:08:24 +0000450 if (strcasecmp(s, signame(i) + 3) == 0) {
Dmitry V. Levin35d05722010-09-15 16:18:20 +0000451 qualify_one(i, bitflag, not, -1);
Roland McGrath76421df2005-02-02 03:51:18 +0000452 return 0;
Roland McGrath9797ceb2002-12-30 10:23:00 +0000453 }
Denys Vlasenkoe4cc7c52012-03-23 11:29:01 +0100454 }
Roland McGrath76421df2005-02-02 03:51:18 +0000455 return -1;
Roland McGrath9797ceb2002-12-30 10:23:00 +0000456}
457
458static int
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +0000459qual_desc(const char *s, const unsigned int bitflag, const int not)
Roland McGrath9797ceb2002-12-30 10:23:00 +0000460{
Denys Vlasenkoe4cc7c52012-03-23 11:29:01 +0100461 if (*s >= '0' && *s <= '9') {
Dmitry V. Levinccee1692012-03-25 21:49:48 +0000462 int desc = string_to_uint(s);
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100463 if (desc < 0 || desc > 0x7fff) /* paranoia */
Roland McGrathfe6b3522005-02-02 04:40:11 +0000464 return -1;
Dmitry V. Levin35d05722010-09-15 16:18:20 +0000465 qualify_one(desc, bitflag, not, -1);
Roland McGrath2b619022003-04-10 18:58:20 +0000466 return 0;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000467 }
468 return -1;
469}
470
471static int
Dmitry V. Levin30145dd2010-09-06 22:08:24 +0000472lookup_class(const char *s)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000473{
474 if (strcmp(s, "file") == 0)
475 return TRACE_FILE;
476 if (strcmp(s, "ipc") == 0)
477 return TRACE_IPC;
478 if (strcmp(s, "network") == 0)
479 return TRACE_NETWORK;
480 if (strcmp(s, "process") == 0)
481 return TRACE_PROCESS;
482 if (strcmp(s, "signal") == 0)
483 return TRACE_SIGNAL;
Roland McGrath2fe7b132005-07-05 03:25:35 +0000484 if (strcmp(s, "desc") == 0)
485 return TRACE_DESC;
Namhyung Kim96792962012-10-24 11:41:57 +0900486 if (strcmp(s, "memory") == 0)
487 return TRACE_MEMORY;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000488 return -1;
489}
490
491void
Dmitry V. Levin30145dd2010-09-06 22:08:24 +0000492qualify(const char *s)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000493{
Roland McGrathe10e62a2004-09-04 04:20:43 +0000494 const struct qual_options *opt;
Dmitry V. Levin30145dd2010-09-06 22:08:24 +0000495 char *copy;
496 const char *p;
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +0000497 int not;
498 unsigned int i;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000499
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100500 if (num_quals == 0)
501 reallocate_qual(MIN_QUALS);
502
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000503 opt = &qual_options[0];
504 for (i = 0; (p = qual_options[i].option_name); i++) {
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +0000505 unsigned int len = strlen(p);
506 if (strncmp(s, p, len) == 0 && s[len] == '=') {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000507 opt = &qual_options[i];
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +0000508 s += len + 1;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000509 break;
510 }
511 }
512 not = 0;
513 if (*s == '!') {
514 not = 1;
515 s++;
516 }
517 if (strcmp(s, "none") == 0) {
518 not = 1 - not;
519 s = "all";
520 }
521 if (strcmp(s, "all") == 0) {
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100522 for (i = 0; i < num_quals; i++) {
Dmitry V. Levin35d05722010-09-15 16:18:20 +0000523 qualify_one(i, opt->bitflag, not, -1);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000524 }
525 return;
526 }
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100527 for (i = 0; i < num_quals; i++) {
Dmitry V. Levin35d05722010-09-15 16:18:20 +0000528 qualify_one(i, opt->bitflag, !not, -1);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000529 }
Denys Vlasenko5d645812011-08-20 12:48:18 +0200530 copy = strdup(s);
Denys Vlasenko1d46ba52011-08-31 14:00:02 +0200531 if (!copy)
532 die_out_of_memory();
Dmitry V. Levin30145dd2010-09-06 22:08:24 +0000533 for (p = strtok(copy, ","); p; p = strtok(NULL, ",")) {
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +0000534 int n;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000535 if (opt->bitflag == QUAL_TRACE && (n = lookup_class(p)) > 0) {
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100536 unsigned pers;
537 for (pers = 0; pers < SUPPORTED_PERSONALITIES; pers++) {
538 for (i = 0; i < nsyscall_vec[pers]; i++)
539 if (sysent_vec[pers][i].sys_flags & n)
Dmitry V. Levin7b9e45e2013-03-01 15:50:22 +0000540 qualify_one(i, opt->bitflag, not, pers);
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100541 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000542 continue;
543 }
Dmitry V. Levin35d05722010-09-15 16:18:20 +0000544 if (opt->qualify(p, opt->bitflag, not)) {
Denys Vlasenko4c65c442012-03-08 11:54:10 +0100545 error_msg_and_die("invalid %s '%s'",
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000546 opt->argument_name, p);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000547 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000548 }
Dmitry V. Levin30145dd2010-09-06 22:08:24 +0000549 free(copy);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000550 return;
551}
552
Dmitry V. Levin648c22c2012-03-15 22:08:55 +0000553#ifdef SYS_socket_subcall
Roland McGratha4d48532005-06-08 20:45:28 +0000554static void
Dmitry V. Levin648c22c2012-03-15 22:08:55 +0000555decode_socket_subcall(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000556{
Dmitry V. Levin648c22c2012-03-15 22:08:55 +0000557 unsigned long addr;
Denys Vlasenko74ec14f2013-02-21 16:13:47 +0100558 unsigned int i, n, size;
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000559
Dmitry V. Levin648c22c2012-03-15 22:08:55 +0000560 if (tcp->u_arg[0] < 0 || tcp->u_arg[0] >= SYS_socket_nsubcalls)
561 return;
562
563 tcp->scno = SYS_socket_subcall + tcp->u_arg[0];
Denys Vlasenko74ec14f2013-02-21 16:13:47 +0100564 tcp->qual_flg = qual_flags[tcp->scno];
565 tcp->s_ent = &sysent[tcp->scno];
Dmitry V. Levin648c22c2012-03-15 22:08:55 +0000566 addr = tcp->u_arg[1];
Denys Vlasenko9fd4f962012-03-19 09:36:42 +0100567 size = current_wordsize;
Denys Vlasenko74ec14f2013-02-21 16:13:47 +0100568 n = tcp->s_ent->nargs;
569 for (i = 0; i < n; ++i) {
Dmitry V. Levin648c22c2012-03-15 22:08:55 +0000570 if (size == sizeof(int)) {
571 unsigned int arg;
572 if (umove(tcp, addr, &arg) < 0)
573 arg = 0;
574 tcp->u_arg[i] = arg;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000575 }
Dmitry V. Levin648c22c2012-03-15 22:08:55 +0000576 else {
577 unsigned long arg;
578 if (umove(tcp, addr, &arg) < 0)
579 arg = 0;
580 tcp->u_arg[i] = arg;
581 }
582 addr += size;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000583 }
584}
Dmitry V. Levin648c22c2012-03-15 22:08:55 +0000585#endif
Mike Frysinger3362e892012-03-15 01:09:19 -0400586
Dmitry V. Levin648c22c2012-03-15 22:08:55 +0000587#ifdef SYS_ipc_subcall
588static void
589decode_ipc_subcall(struct tcb *tcp)
590{
Denys Vlasenko74ec14f2013-02-21 16:13:47 +0100591 unsigned int i, n;
Dmitry V. Levin648c22c2012-03-15 22:08:55 +0000592
593 if (tcp->u_arg[0] < 0 || tcp->u_arg[0] >= SYS_ipc_nsubcalls)
594 return;
595
596 tcp->scno = SYS_ipc_subcall + tcp->u_arg[0];
Denys Vlasenko74ec14f2013-02-21 16:13:47 +0100597 tcp->qual_flg = qual_flags[tcp->scno];
598 tcp->s_ent = &sysent[tcp->scno];
599 n = tcp->s_ent->nargs;
600 for (i = 0; i < n; i++)
Dmitry V. Levin648c22c2012-03-15 22:08:55 +0000601 tcp->u_arg[i] = tcp->u_arg[i + 1];
602}
603#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000604
Denys Vlasenkoa6146922011-08-24 18:07:22 +0200605int
606printargs(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000607{
Denys Vlasenkoa6146922011-08-24 18:07:22 +0200608 if (entering(tcp)) {
609 int i;
Denys Vlasenko74ec14f2013-02-21 16:13:47 +0100610 int n = tcp->s_ent->nargs;
611 for (i = 0; i < n; i++)
Denys Vlasenkoa6146922011-08-24 18:07:22 +0200612 tprintf("%s%#lx", i ? ", " : "", tcp->u_arg[i]);
613 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000614 return 0;
615}
616
Denys Vlasenko72879c62012-02-27 14:18:02 +0100617int
618printargs_lu(struct tcb *tcp)
619{
620 if (entering(tcp)) {
621 int i;
Denys Vlasenko74ec14f2013-02-21 16:13:47 +0100622 int n = tcp->s_ent->nargs;
623 for (i = 0; i < n; i++)
Denys Vlasenko72879c62012-02-27 14:18:02 +0100624 tprintf("%s%lu", i ? ", " : "", tcp->u_arg[i]);
625 }
626 return 0;
627}
628
629int
630printargs_ld(struct tcb *tcp)
631{
632 if (entering(tcp)) {
633 int i;
Denys Vlasenko74ec14f2013-02-21 16:13:47 +0100634 int n = tcp->s_ent->nargs;
635 for (i = 0; i < n; i++)
Denys Vlasenko72879c62012-02-27 14:18:02 +0100636 tprintf("%s%ld", i ? ", " : "", tcp->u_arg[i]);
637 }
638 return 0;
639}
640
Denys Vlasenko1ebe08d2013-02-05 16:55:23 +0100641#if defined(SPARC) || defined(SPARC64) || defined(IA64) || defined(SH)
Denys Vlasenkoa6146922011-08-24 18:07:22 +0200642long
643getrval2(struct tcb *tcp)
644{
Denys Vlasenko1ebe08d2013-02-05 16:55:23 +0100645 long val;
Denys Vlasenkoa6146922011-08-24 18:07:22 +0200646
Denys Vlasenko1ebe08d2013-02-05 16:55:23 +0100647# if defined(SPARC) || defined(SPARC64)
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +0100648 val = sparc_regs.u_regs[U_REG_O1];
Denys Vlasenko1ebe08d2013-02-05 16:55:23 +0100649# elif defined(SH)
Denys Vlasenko752e5a02013-06-28 14:35:47 +0200650 if (upeek(tcp->pid, 4*(REG_REG0+1), &val) < 0)
Denys Vlasenkoa6146922011-08-24 18:07:22 +0200651 return -1;
Denys Vlasenko1ebe08d2013-02-05 16:55:23 +0100652# elif defined(IA64)
Denys Vlasenko752e5a02013-06-28 14:35:47 +0200653 if (upeek(tcp->pid, PT_R9, &val) < 0)
Denys Vlasenkoa6146922011-08-24 18:07:22 +0200654 return -1;
Denys Vlasenko1ebe08d2013-02-05 16:55:23 +0100655# endif
Denys Vlasenkoa6146922011-08-24 18:07:22 +0200656
Denys Vlasenkoa6146922011-08-24 18:07:22 +0200657 return val;
658}
Denys Vlasenko1ebe08d2013-02-05 16:55:23 +0100659#endif
Denys Vlasenkoa6146922011-08-24 18:07:22 +0200660
Denys Vlasenko523635f2012-02-25 02:44:25 +0100661#if defined(I386)
Denys Vlasenkob51f3642013-07-16 12:06:25 +0200662static struct user_regs_struct i386_regs;
Dmitry V. Levinf97a4772015-02-15 00:08:11 +0000663long *const i386_esp_ptr = &i386_regs.esp;
Dmitry V. Levin7abf2e82015-02-13 23:56:54 +0000664# define ARCH_REGS_FOR_GETREGS i386_regs
H.J. Lu35be5812012-04-16 13:00:01 +0200665#elif defined(X86_64) || defined(X32)
Denys Vlasenkoe73a89d2012-01-18 11:07:24 +0100666/*
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +0100667 * On i386, pt_regs and user_regs_struct are the same,
668 * but on 64 bit x86, user_regs_struct has six more fields:
Denys Vlasenkoe73a89d2012-01-18 11:07:24 +0100669 * fs_base, gs_base, ds, es, fs, gs.
670 * PTRACE_GETREGS fills them too, so struct pt_regs would overflow.
671 */
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +0100672struct i386_user_regs_struct {
673 uint32_t ebx;
674 uint32_t ecx;
675 uint32_t edx;
676 uint32_t esi;
677 uint32_t edi;
678 uint32_t ebp;
679 uint32_t eax;
680 uint32_t xds;
681 uint32_t xes;
682 uint32_t xfs;
683 uint32_t xgs;
684 uint32_t orig_eax;
685 uint32_t eip;
686 uint32_t xcs;
687 uint32_t eflags;
688 uint32_t esp;
689 uint32_t xss;
690};
691static union {
692 struct user_regs_struct x86_64_r;
693 struct i386_user_regs_struct i386_r;
694} x86_regs_union;
695# define x86_64_regs x86_regs_union.x86_64_r
696# define i386_regs x86_regs_union.i386_r
Denys Vlasenkob51f3642013-07-16 12:06:25 +0200697uint32_t *const i386_esp_ptr = &i386_regs.esp;
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +0100698static struct iovec x86_io = {
699 .iov_base = &x86_regs_union
700};
Dmitry V. Levind6db1db2015-02-13 23:41:04 +0000701# define ARCH_REGS_FOR_GETREGSET x86_regs_union
702# define ARCH_IOVEC_FOR_GETREGSET x86_io
Denys Vlasenko523635f2012-02-25 02:44:25 +0100703#elif defined(IA64)
Dmitry V. Levin23ce9e42015-02-08 13:05:53 +0000704static bool ia64_ia32mode;
Denys Vlasenko89804ec2013-02-07 13:14:48 +0100705static long ia64_r8, ia64_r10;
Denys Vlasenko523635f2012-02-25 02:44:25 +0100706#elif defined(POWERPC)
Dmitry V. Levin23ce9e42015-02-08 13:05:53 +0000707struct pt_regs ppc_regs; /* not static */
Dmitry V. Levin7abf2e82015-02-13 23:56:54 +0000708# define ARCH_REGS_FOR_GETREGS ppc_regs
Denys Vlasenko523635f2012-02-25 02:44:25 +0100709#elif defined(M68K)
Denys Vlasenko89804ec2013-02-07 13:14:48 +0100710static long m68k_d0;
Denys Vlasenko523635f2012-02-25 02:44:25 +0100711#elif defined(BFIN)
Denys Vlasenkod22213a2013-02-13 17:52:31 +0100712static long bfin_r0;
Denys Vlasenko523635f2012-02-25 02:44:25 +0100713#elif defined(ARM)
Denys Vlasenko401374e2013-02-06 18:24:39 +0100714struct pt_regs arm_regs; /* not static */
Dmitry V. Levin7abf2e82015-02-13 23:56:54 +0000715# define ARCH_REGS_FOR_GETREGS arm_regs
Steve McIntyred8d3bd32012-10-24 17:58:16 +0100716#elif defined(AARCH64)
Dmitry V. Levin5503dd22015-02-13 02:12:14 +0000717struct arm_pt_regs {
718 int uregs[18];
719};
720# define ARM_cpsr uregs[16]
721# define ARM_pc uregs[15]
722# define ARM_lr uregs[14]
723# define ARM_sp uregs[13]
724# define ARM_ip uregs[12]
725# define ARM_fp uregs[11]
726# define ARM_r10 uregs[10]
727# define ARM_r9 uregs[9]
728# define ARM_r8 uregs[8]
729# define ARM_r7 uregs[7]
730# define ARM_r6 uregs[6]
731# define ARM_r5 uregs[5]
732# define ARM_r4 uregs[4]
733# define ARM_r3 uregs[3]
734# define ARM_r2 uregs[2]
735# define ARM_r1 uregs[1]
736# define ARM_r0 uregs[0]
737# define ARM_ORIG_r0 uregs[17]
Denys Vlasenko28ac68f2013-02-08 12:38:51 +0100738static union {
Denys Vlasenko59aea0a2013-02-11 12:29:36 +0100739 struct user_pt_regs aarch64_r;
740 struct arm_pt_regs arm_r;
Denys Vlasenko28ac68f2013-02-08 12:38:51 +0100741} arm_regs_union;
Denys Vlasenko59aea0a2013-02-11 12:29:36 +0100742# define aarch64_regs arm_regs_union.aarch64_r
743# define arm_regs arm_regs_union.arm_r
Denys Vlasenkoce7d9532013-02-05 16:36:13 +0100744static struct iovec aarch64_io = {
Denys Vlasenko59aea0a2013-02-11 12:29:36 +0100745 .iov_base = &arm_regs_union
Denys Vlasenkoce7d9532013-02-05 16:36:13 +0100746};
Dmitry V. Levind6db1db2015-02-13 23:41:04 +0000747# define ARCH_REGS_FOR_GETREGSET arm_regs_union
748# define ARCH_IOVEC_FOR_GETREGSET aarch64_io
Denys Vlasenko523635f2012-02-25 02:44:25 +0100749#elif defined(ALPHA)
Denys Vlasenkod22213a2013-02-13 17:52:31 +0100750static long alpha_r0;
Denys Vlasenko89804ec2013-02-07 13:14:48 +0100751static long alpha_a3;
Denys Vlasenko523635f2012-02-25 02:44:25 +0100752#elif defined(AVR32)
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +0100753static struct pt_regs avr32_regs;
Dmitry V. Levin7abf2e82015-02-13 23:56:54 +0000754# define ARCH_REGS_FOR_GETREGS avr32_regs
Denys Vlasenko523635f2012-02-25 02:44:25 +0100755#elif defined(SPARC) || defined(SPARC64)
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +0100756struct pt_regs sparc_regs; /* not static */
Dmitry V. Levin7abf2e82015-02-13 23:56:54 +0000757# define ARCH_REGS_FOR_GETREGS sparc_regs
Denys Vlasenko523635f2012-02-25 02:44:25 +0100758#elif defined(MIPS)
Dmitry V. Levin4f2d1ae2015-02-15 03:27:13 +0000759struct mips_regs mips_regs; /* not static */
760/* PTRACE_GETREGS on MIPS is available since linux v2.6.15. */
761# define ARCH_REGS_FOR_GETREGS mips_regs
Denys Vlasenko523635f2012-02-25 02:44:25 +0100762#elif defined(S390) || defined(S390X)
Denys Vlasenkof5730e92013-07-07 12:47:39 +0200763static long s390_gpr2;
Denys Vlasenko523635f2012-02-25 02:44:25 +0100764#elif defined(HPPA)
Denys Vlasenko89804ec2013-02-07 13:14:48 +0100765static long hppa_r28;
Denys Vlasenko523635f2012-02-25 02:44:25 +0100766#elif defined(SH)
Denys Vlasenkod22213a2013-02-13 17:52:31 +0100767static long sh_r0;
Denys Vlasenko523635f2012-02-25 02:44:25 +0100768#elif defined(SH64)
Denys Vlasenko89804ec2013-02-07 13:14:48 +0100769static long sh64_r9;
Denys Vlasenko523635f2012-02-25 02:44:25 +0100770#elif defined(CRISV10) || defined(CRISV32)
Denys Vlasenko89804ec2013-02-07 13:14:48 +0100771static long cris_r10;
Chris Metcalf0b99a8a2013-02-05 17:48:33 +0100772#elif defined(TILE)
Dmitry V. Levin23ce9e42015-02-08 13:05:53 +0000773struct pt_regs tile_regs; /* not static */
Dmitry V. Levin7abf2e82015-02-13 23:56:54 +0000774# define ARCH_REGS_FOR_GETREGS tile_regs
Denys Vlasenko523635f2012-02-25 02:44:25 +0100775#elif defined(MICROBLAZE)
Denys Vlasenko89804ec2013-02-07 13:14:48 +0100776static long microblaze_r3;
Christian Svensson492f81f2013-02-14 13:26:27 +0100777#elif defined(OR1K)
778static struct user_regs_struct or1k_regs;
Dmitry V. Levinb787b102013-03-18 10:17:14 +0000779# define ARCH_REGS_FOR_GETREGSET or1k_regs
James Hogan5f999a82013-02-22 14:44:10 +0000780#elif defined(METAG)
781static struct user_gp_regs metag_regs;
Dmitry V. Levinb787b102013-03-18 10:17:14 +0000782# define ARCH_REGS_FOR_GETREGSET metag_regs
Chris Zankel8f636ed2013-03-25 10:22:07 -0700783#elif defined(XTENSA)
784static long xtensa_a2;
Vineet Gupta7daacbb2013-08-16 12:47:06 +0530785# elif defined(ARC)
786static struct user_regs_struct arc_regs;
787# define ARCH_REGS_FOR_GETREGSET arc_regs
Denys Vlasenko523635f2012-02-25 02:44:25 +0100788#endif
Wichert Akkermanc7926982000-04-10 22:22:31 +0000789
Dmitry V. Levin9a176c92015-02-13 21:56:50 +0000790static long get_regs_error;
791
Denys Vlasenkoce7d9532013-02-05 16:36:13 +0100792void
Denys Vlasenko5a2483b2013-07-01 12:49:14 +0200793print_pc(struct tcb *tcp)
Denys Vlasenkoce7d9532013-02-05 16:36:13 +0100794{
Dmitry V. Levine96cb622015-02-15 15:52:02 +0000795 const char *fmt;
796 const char *bad;
797
Dmitry V. Levinb2d9ff22015-02-23 13:43:20 +0000798#ifdef current_wordsize
Dmitry V. Levine96cb622015-02-15 15:52:02 +0000799# define pc_wordsize current_wordsize
Dmitry V. Levinb2d9ff22015-02-23 13:43:20 +0000800#else
801# define pc_wordsize personality_wordsize[tcp->currpers]
Dmitry V. Levine96cb622015-02-15 15:52:02 +0000802#endif
803
804 if (pc_wordsize == 4) {
805 fmt = "[%08lx] ";
806 bad = "[????????] ";
807 } else {
808 fmt = "[%016lx] ";
809 bad = "[????????????????] ";
810 }
811
812#undef pc_wordsize
813#define PRINTBADPC tprints(bad)
814
Denys Vlasenkoce7d9532013-02-05 16:36:13 +0100815 if (get_regs_error) {
816 PRINTBADPC;
817 return;
818 }
Dmitry V. Levine96cb622015-02-15 15:52:02 +0000819
Denys Vlasenkoce7d9532013-02-05 16:36:13 +0100820#if defined(I386)
Dmitry V. Levine96cb622015-02-15 15:52:02 +0000821 tprintf(fmt, i386_regs.eip);
822#elif defined(X86_64) || defined(X32)
823 if (x86_io.iov_len == sizeof(i386_regs))
824 tprintf(fmt, (unsigned long) i386_regs.eip);
825 else
826 tprintf(fmt, (unsigned long) x86_64_regs.rip);
Denys Vlasenkoce7d9532013-02-05 16:36:13 +0100827#elif defined(S390) || defined(S390X)
828 long psw;
Denys Vlasenko752e5a02013-06-28 14:35:47 +0200829 if (upeek(tcp->pid, PT_PSWADDR, &psw) < 0) {
Denys Vlasenkoce7d9532013-02-05 16:36:13 +0100830 PRINTBADPC;
831 return;
832 }
Dmitry V. Levine96cb622015-02-15 15:52:02 +0000833 tprintf(fmt, psw);
Denys Vlasenkoce7d9532013-02-05 16:36:13 +0100834#elif defined(IA64)
835 long ip;
Denys Vlasenko752e5a02013-06-28 14:35:47 +0200836 if (upeek(tcp->pid, PT_B0, &ip) < 0) {
Denys Vlasenkoce7d9532013-02-05 16:36:13 +0100837 PRINTBADPC;
838 return;
839 }
Dmitry V. Levine96cb622015-02-15 15:52:02 +0000840 tprintf(fmt, ip);
Denys Vlasenkoce7d9532013-02-05 16:36:13 +0100841#elif defined(POWERPC)
Dmitry V. Levine96cb622015-02-15 15:52:02 +0000842 tprintf(fmt, ppc_regs.nip);
Denys Vlasenkoce7d9532013-02-05 16:36:13 +0100843#elif defined(M68K)
844 long pc;
Denys Vlasenko752e5a02013-06-28 14:35:47 +0200845 if (upeek(tcp->pid, 4*PT_PC, &pc) < 0) {
Dmitry V. Levine96cb622015-02-15 15:52:02 +0000846 PRINTBADPC;
Denys Vlasenkoce7d9532013-02-05 16:36:13 +0100847 return;
848 }
Dmitry V. Levine96cb622015-02-15 15:52:02 +0000849 tprintf(fmt, pc);
Denys Vlasenkoce7d9532013-02-05 16:36:13 +0100850#elif defined(ALPHA)
851 long pc;
Denys Vlasenko752e5a02013-06-28 14:35:47 +0200852 if (upeek(tcp->pid, REG_PC, &pc) < 0) {
Dmitry V. Levine96cb622015-02-15 15:52:02 +0000853 PRINTBADPC;
Denys Vlasenkoce7d9532013-02-05 16:36:13 +0100854 return;
855 }
Dmitry V. Levine96cb622015-02-15 15:52:02 +0000856 tprintf(fmt, pc);
Denys Vlasenkoce7d9532013-02-05 16:36:13 +0100857#elif defined(SPARC)
Dmitry V. Levine96cb622015-02-15 15:52:02 +0000858 tprintf(fmt, sparc_regs.pc);
Denys Vlasenkoce7d9532013-02-05 16:36:13 +0100859#elif defined(SPARC64)
Dmitry V. Levine96cb622015-02-15 15:52:02 +0000860 tprintf(fmt, sparc_regs.tpc);
Denys Vlasenkoce7d9532013-02-05 16:36:13 +0100861#elif defined(HPPA)
862 long pc;
Denys Vlasenko752e5a02013-06-28 14:35:47 +0200863 if (upeek(tcp->pid, PT_IAOQ0, &pc) < 0) {
Dmitry V. Levine96cb622015-02-15 15:52:02 +0000864 PRINTBADPC;
Denys Vlasenkoce7d9532013-02-05 16:36:13 +0100865 return;
866 }
Dmitry V. Levine96cb622015-02-15 15:52:02 +0000867 tprintf(fmt, pc);
Dmitry V. Levin4f2d1ae2015-02-15 03:27:13 +0000868#elif defined MIPS
Dmitry V. Levine96cb622015-02-15 15:52:02 +0000869 tprintf(fmt, (unsigned long) mips_REG_EPC);
Denys Vlasenkoce7d9532013-02-05 16:36:13 +0100870#elif defined(SH)
871 long pc;
Denys Vlasenko752e5a02013-06-28 14:35:47 +0200872 if (upeek(tcp->pid, 4*REG_PC, &pc) < 0) {
Dmitry V. Levine96cb622015-02-15 15:52:02 +0000873 PRINTBADPC;
Denys Vlasenkoce7d9532013-02-05 16:36:13 +0100874 return;
875 }
Dmitry V. Levine96cb622015-02-15 15:52:02 +0000876 tprintf(fmt, pc);
Denys Vlasenkoce7d9532013-02-05 16:36:13 +0100877#elif defined(SH64)
878 long pc;
Denys Vlasenko752e5a02013-06-28 14:35:47 +0200879 if (upeek(tcp->pid, REG_PC, &pc) < 0) {
Dmitry V. Levine96cb622015-02-15 15:52:02 +0000880 PRINTBADPC;
Denys Vlasenkoce7d9532013-02-05 16:36:13 +0100881 return;
882 }
Dmitry V. Levine96cb622015-02-15 15:52:02 +0000883 tprintf(fmt, pc);
Dmitry V. Levind819fe82015-03-02 03:38:27 +0000884#elif defined(AARCH64)
885 if (aarch64_io.iov_len == sizeof(arm_regs))
886 tprintf(fmt, (unsigned long) arm_regs.ARM_pc);
887 else
888 tprintf(fmt, (unsigned long) aarch64_regs.pc);
Denys Vlasenkoce7d9532013-02-05 16:36:13 +0100889#elif defined(ARM)
Dmitry V. Levine96cb622015-02-15 15:52:02 +0000890 tprintf(fmt, arm_regs.ARM_pc);
Denys Vlasenkoce7d9532013-02-05 16:36:13 +0100891#elif defined(AVR32)
Dmitry V. Levine96cb622015-02-15 15:52:02 +0000892 tprintf(fmt, avr32_regs.pc);
Denys Vlasenkoce7d9532013-02-05 16:36:13 +0100893#elif defined(BFIN)
894 long pc;
Denys Vlasenko752e5a02013-06-28 14:35:47 +0200895 if (upeek(tcp->pid, PT_PC, &pc) < 0) {
Denys Vlasenkoce7d9532013-02-05 16:36:13 +0100896 PRINTBADPC;
897 return;
898 }
Dmitry V. Levine96cb622015-02-15 15:52:02 +0000899 tprintf(fmt, pc);
Denys Vlasenkoce7d9532013-02-05 16:36:13 +0100900#elif defined(CRISV10)
901 long pc;
Denys Vlasenko752e5a02013-06-28 14:35:47 +0200902 if (upeek(tcp->pid, 4*PT_IRP, &pc) < 0) {
Denys Vlasenkoce7d9532013-02-05 16:36:13 +0100903 PRINTBADPC;
904 return;
905 }
Dmitry V. Levine96cb622015-02-15 15:52:02 +0000906 tprintf(fmt, pc);
Denys Vlasenkoce7d9532013-02-05 16:36:13 +0100907#elif defined(CRISV32)
908 long pc;
Denys Vlasenko752e5a02013-06-28 14:35:47 +0200909 if (upeek(tcp->pid, 4*PT_ERP, &pc) < 0) {
Denys Vlasenkoce7d9532013-02-05 16:36:13 +0100910 PRINTBADPC;
911 return;
912 }
Dmitry V. Levine96cb622015-02-15 15:52:02 +0000913 tprintf(fmt, pc);
Chris Metcalf0b99a8a2013-02-05 17:48:33 +0100914#elif defined(TILE)
Dmitry V. Levine96cb622015-02-15 15:52:02 +0000915 tprintf(fmt, (unsigned long) tile_regs.pc);
Christian Svensson492f81f2013-02-14 13:26:27 +0100916#elif defined(OR1K)
Dmitry V. Levine96cb622015-02-15 15:52:02 +0000917 tprintf(fmt, or1k_regs.pc);
James Hogan5f999a82013-02-22 14:44:10 +0000918#elif defined(METAG)
Dmitry V. Levine96cb622015-02-15 15:52:02 +0000919 tprintf(fmt, metag_regs.pc);
Chris Zankel8f636ed2013-03-25 10:22:07 -0700920#elif defined(XTENSA)
921 long pc;
Denys Vlasenko752e5a02013-06-28 14:35:47 +0200922 if (upeek(tcp->pid, REG_PC, &pc) < 0) {
Chris Zankel8f636ed2013-03-25 10:22:07 -0700923 PRINTBADPC;
924 return;
925 }
Dmitry V. Levine96cb622015-02-15 15:52:02 +0000926 tprintf(fmt, pc);
Vineet Gupta7daacbb2013-08-16 12:47:06 +0530927#elif defined(ARC)
Dmitry V. Levine96cb622015-02-15 15:52:02 +0000928 tprintf(fmt, arc_regs.efa);
929#else
930# warning print_pc is not implemented for this architecture
931 PRINTBADPC;
Denys Vlasenkoce7d9532013-02-05 16:36:13 +0100932#endif /* architecture */
933}
934
Dmitry V. Levincf7248d2015-01-11 17:26:29 +0000935/*
936 * Shuffle syscall numbers so that we don't have huge gaps in syscall table.
937 * The shuffling should be an involution: shuffle_scno(shuffle_scno(n)) == n.
Denys Vlasenko7270de52013-02-21 15:46:34 +0100938 */
Elliott Hughes7a28f7f2014-03-03 23:45:26 +0000939#if defined(ARM) || defined(AARCH64) /* So far only 32-bit ARM needs this */
Denys Vlasenko7270de52013-02-21 15:46:34 +0100940static long
941shuffle_scno(unsigned long scno)
942{
Dmitry V. Levincf7248d2015-01-11 17:26:29 +0000943 if (scno < ARM_FIRST_SHUFFLED_SYSCALL)
Denys Vlasenko7270de52013-02-21 15:46:34 +0100944 return scno;
945
946 /* __ARM_NR_cmpxchg? Swap with LAST_ORDINARY+1 */
Dmitry V. Levincf7248d2015-01-11 17:26:29 +0000947 if (scno == ARM_FIRST_SHUFFLED_SYSCALL)
Denys Vlasenko7270de52013-02-21 15:46:34 +0100948 return 0x000ffff0;
Dmitry V. Levincf7248d2015-01-11 17:26:29 +0000949 if (scno == 0x000ffff0)
950 return ARM_FIRST_SHUFFLED_SYSCALL;
Denys Vlasenko7270de52013-02-21 15:46:34 +0100951
Dmitry V. Levincf7248d2015-01-11 17:26:29 +0000952#define ARM_SECOND_SHUFFLED_SYSCALL (ARM_FIRST_SHUFFLED_SYSCALL + 1)
953 /*
954 * Is it ARM specific syscall?
955 * Swap [0x000f0000, 0x000f0000 + LAST_SPECIAL] range
956 * with [SECOND_SHUFFLED, SECOND_SHUFFLED + LAST_SPECIAL] range.
Denys Vlasenko7270de52013-02-21 15:46:34 +0100957 */
Dmitry V. Levincf7248d2015-01-11 17:26:29 +0000958 if (scno >= 0x000f0000 &&
959 scno <= 0x000f0000 + ARM_LAST_SPECIAL_SYSCALL) {
960 return scno - 0x000f0000 + ARM_SECOND_SHUFFLED_SYSCALL;
Denys Vlasenko7270de52013-02-21 15:46:34 +0100961 }
Dmitry V. Levincf7248d2015-01-11 17:26:29 +0000962 if (scno <= ARM_SECOND_SHUFFLED_SYSCALL + ARM_LAST_SPECIAL_SYSCALL) {
963 return scno + 0x000f0000 - ARM_SECOND_SHUFFLED_SYSCALL;
Denys Vlasenko7270de52013-02-21 15:46:34 +0100964 }
965
966 return scno;
967}
968#else
969# define shuffle_scno(scno) ((long)(scno))
970#endif
971
972static char*
973undefined_scno_name(struct tcb *tcp)
974{
975 static char buf[sizeof("syscall_%lu") + sizeof(long)*3];
976
977 sprintf(buf, "syscall_%lu", shuffle_scno(tcp->scno));
978 return buf;
979}
980
Anton Blanchard14d51a62013-06-26 14:42:37 +1000981#ifdef POWERPC
982/*
Denys Vlasenko7f5a1322013-06-28 14:36:39 +0200983 * PTRACE_GETREGS was added to the PowerPC kernel in v2.6.23,
984 * we provide a slow fallback for old kernels.
Anton Blanchard14d51a62013-06-26 14:42:37 +1000985 */
Denys Vlasenko7f5a1322013-06-28 14:36:39 +0200986static int powerpc_getregs_old(pid_t pid)
Anton Blanchard14d51a62013-06-26 14:42:37 +1000987{
988 int i;
989 long r;
990
Denys Vlasenko6b3016e2013-06-28 14:51:50 +0200991 if (iflag) {
Anton Blanchard9459dfb2013-07-12 12:24:02 +0200992 r = upeek(pid, sizeof(long) * PT_NIP, (long *)&ppc_regs.nip);
Denys Vlasenko6b3016e2013-06-28 14:51:50 +0200993 if (r)
994 goto out;
995 }
996#ifdef POWERPC64 /* else we never use it */
Anton Blanchard9459dfb2013-07-12 12:24:02 +0200997 r = upeek(pid, sizeof(long) * PT_MSR, (long *)&ppc_regs.msr);
Anton Blanchard14d51a62013-06-26 14:42:37 +1000998 if (r)
999 goto out;
Denys Vlasenko6b3016e2013-06-28 14:51:50 +02001000#endif
Anton Blanchard9459dfb2013-07-12 12:24:02 +02001001 r = upeek(pid, sizeof(long) * PT_CCR, (long *)&ppc_regs.ccr);
Anton Blanchard14d51a62013-06-26 14:42:37 +10001002 if (r)
1003 goto out;
Anton Blanchard9459dfb2013-07-12 12:24:02 +02001004 r = upeek(pid, sizeof(long) * PT_ORIG_R3, (long *)&ppc_regs.orig_gpr3);
Anton Blanchard14d51a62013-06-26 14:42:37 +10001005 if (r)
1006 goto out;
Anton Blanchard14d51a62013-06-26 14:42:37 +10001007 for (i = 0; i <= 8; i++) {
Anton Blanchard9459dfb2013-07-12 12:24:02 +02001008 r = upeek(pid, sizeof(long) * (PT_R0 + i),
1009 (long *)&ppc_regs.gpr[i]);
Anton Blanchard14d51a62013-06-26 14:42:37 +10001010 if (r)
1011 goto out;
1012 }
Denys Vlasenko7f5a1322013-06-28 14:36:39 +02001013 out:
Anton Blanchard14d51a62013-06-26 14:42:37 +10001014 return r;
1015}
1016#endif
1017
Dmitry V. Levin9a176c92015-02-13 21:56:50 +00001018void
1019clear_regs(void)
1020{
1021 get_regs_error = -1;
1022}
Dmitry V. Levinfaa177e2013-03-17 23:48:45 +00001023
Dmitry V. Levind6db1db2015-02-13 23:41:04 +00001024#if defined ARCH_REGS_FOR_GETREGSET
1025static long
1026get_regset(pid_t pid)
Dmitry V. Levinfaa177e2013-03-17 23:48:45 +00001027{
Dmitry V. Levind6db1db2015-02-13 23:41:04 +00001028# ifdef ARCH_IOVEC_FOR_GETREGSET
1029 /* variable iovec */
1030 ARCH_IOVEC_FOR_GETREGSET.iov_len = sizeof(ARCH_REGS_FOR_GETREGSET);
1031 return ptrace(PTRACE_GETREGSET, pid, NT_PRSTATUS,
1032 &ARCH_IOVEC_FOR_GETREGSET);
1033# else
1034 /* constant iovec */
Dmitry V. Levinb787b102013-03-18 10:17:14 +00001035 static struct iovec io = {
1036 .iov_base = &ARCH_REGS_FOR_GETREGSET,
1037 .iov_len = sizeof(ARCH_REGS_FOR_GETREGSET)
Dmitry V. Levinfaa177e2013-03-17 23:48:45 +00001038 };
Dmitry V. Levind6db1db2015-02-13 23:41:04 +00001039 return ptrace(PTRACE_GETREGSET, pid, NT_PRSTATUS, &io);
Dmitry V. Levinb787b102013-03-18 10:17:14 +00001040
Dmitry V. Levinfaa177e2013-03-17 23:48:45 +00001041# endif
Dmitry V. Levinb787b102013-03-18 10:17:14 +00001042}
Dmitry V. Levind6db1db2015-02-13 23:41:04 +00001043#endif /* ARCH_REGS_FOR_GETREGSET */
Dmitry V. Levinb787b102013-03-18 10:17:14 +00001044
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +01001045void
1046get_regs(pid_t pid)
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01001047{
Dmitry V. Levin7abf2e82015-02-13 23:56:54 +00001048#ifdef ARCH_REGS_FOR_GETREGSET
1049# ifdef X86_64
1050 /* Try PTRACE_GETREGSET first, fallback to PTRACE_GETREGS. */
Dmitry V. Levin27e3ae92013-03-17 23:18:35 +00001051 static int getregset_support;
1052
1053 if (getregset_support >= 0) {
Dmitry V. Levind6db1db2015-02-13 23:41:04 +00001054 get_regs_error = get_regset(pid);
Dmitry V. Levin27e3ae92013-03-17 23:18:35 +00001055 if (getregset_support > 0)
1056 return;
1057 if (get_regs_error >= 0) {
1058 getregset_support = 1;
1059 return;
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +01001060 }
Dmitry V. Levin27e3ae92013-03-17 23:18:35 +00001061 if (errno == EPERM || errno == ESRCH)
1062 return;
1063 getregset_support = -1;
1064 }
Dmitry V. Levin27e3ae92013-03-17 23:18:35 +00001065 /* Use old method, with unreliable heuristical detection of 32-bitness. */
1066 x86_io.iov_len = sizeof(x86_64_regs);
Dmitry V. Levinb787b102013-03-18 10:17:14 +00001067 get_regs_error = ptrace(PTRACE_GETREGS, pid, NULL, &x86_64_regs);
Dmitry V. Levin27e3ae92013-03-17 23:18:35 +00001068 if (!get_regs_error && x86_64_regs.cs == 0x23) {
1069 x86_io.iov_len = sizeof(i386_regs);
1070 /*
1071 * The order is important: i386_regs and x86_64_regs
1072 * are overlaid in memory!
1073 */
1074 i386_regs.ebx = x86_64_regs.rbx;
1075 i386_regs.ecx = x86_64_regs.rcx;
1076 i386_regs.edx = x86_64_regs.rdx;
1077 i386_regs.esi = x86_64_regs.rsi;
1078 i386_regs.edi = x86_64_regs.rdi;
1079 i386_regs.ebp = x86_64_regs.rbp;
1080 i386_regs.eax = x86_64_regs.rax;
1081 /* i386_regs.xds = x86_64_regs.ds; unused by strace */
1082 /* i386_regs.xes = x86_64_regs.es; ditto... */
1083 /* i386_regs.xfs = x86_64_regs.fs; */
1084 /* i386_regs.xgs = x86_64_regs.gs; */
1085 i386_regs.orig_eax = x86_64_regs.orig_rax;
1086 i386_regs.eip = x86_64_regs.rip;
1087 /* i386_regs.xcs = x86_64_regs.cs; */
1088 /* i386_regs.eflags = x86_64_regs.eflags; */
1089 i386_regs.esp = x86_64_regs.rsp;
1090 /* i386_regs.xss = x86_64_regs.ss; */
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +01001091 }
Dmitry V. Levin7abf2e82015-02-13 23:56:54 +00001092# else /* !X86_64 */
1093 /* Assume that PTRACE_GETREGSET works. */
1094 get_regs_error = get_regset(pid);
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01001095# endif
Dmitry V. Levin7abf2e82015-02-13 23:56:54 +00001096#elif defined ARCH_REGS_FOR_GETREGS
1097# if defined SPARC || defined SPARC64
1098 /* SPARC systems have the meaning of data and addr reversed */
1099 get_regs_error = ptrace(PTRACE_GETREGS, pid, (char *)&ARCH_REGS_FOR_GETREGS, 0);
1100# elif defined POWERPC
1101 static bool old_kernel = 0;
1102 if (old_kernel)
1103 goto old;
1104 get_regs_error = ptrace(PTRACE_GETREGS, pid, NULL, &ARCH_REGS_FOR_GETREGS);
1105 if (get_regs_error && errno == EIO) {
1106 old_kernel = 1;
1107 old:
1108 get_regs_error = powerpc_getregs_old(pid);
1109 }
1110# else
1111 /* Assume that PTRACE_GETREGS works. */
1112 get_regs_error = ptrace(PTRACE_GETREGS, pid, NULL, &ARCH_REGS_FOR_GETREGS);
1113# endif
1114
1115#else /* !ARCH_REGS_FOR_GETREGSET && !ARCH_REGS_FOR_GETREGS */
1116# warning get_regs is not implemented for this architecture yet
1117 get_regs_error = 0;
1118#endif
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01001119}
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01001120
Denys Vlasenkob88f9612011-08-21 18:03:23 +02001121/* Returns:
Denys Vlasenko907735a2012-03-21 00:23:16 +01001122 * 0: "ignore this ptrace stop", bail out of trace_syscall_entering() silently.
1123 * 1: ok, continue in trace_syscall_entering().
1124 * other: error, trace_syscall_entering() should print error indicator
Denys Vlasenkob88f9612011-08-21 18:03:23 +02001125 * ("????" etc) and bail out.
1126 */
Denys Vlasenko9fd4f962012-03-19 09:36:42 +01001127static int
Denys Vlasenko06602d92011-08-24 17:53:52 +02001128get_scno(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001129{
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001130 long scno = 0;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001131
Denys Vlasenko523635f2012-02-25 02:44:25 +01001132#if defined(S390) || defined(S390X)
Denys Vlasenkof5730e92013-07-07 12:47:39 +02001133 if (upeek(tcp->pid, PT_GPR2, &s390_gpr2) < 0)
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001134 return -1;
Roland McGrath2f924ca2003-06-26 22:23:28 +00001135
Denys Vlasenkof5730e92013-07-07 12:47:39 +02001136 if (s390_gpr2 != -ENOSYS) {
Roland McGrath2f924ca2003-06-26 22:23:28 +00001137 /*
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +00001138 * Since kernel version 2.5.44 the scno gets passed in gpr2.
Roland McGrath2f924ca2003-06-26 22:23:28 +00001139 */
Denys Vlasenkof5730e92013-07-07 12:47:39 +02001140 scno = s390_gpr2;
Roland McGrath2f924ca2003-06-26 22:23:28 +00001141 } else {
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +00001142 /*
Michal Ludvig882eda82002-11-11 12:50:47 +00001143 * Old style of "passing" the scno via the SVC instruction.
1144 */
Denys Vlasenko7ba8e722013-02-08 15:50:05 +01001145 long psw;
Michal Ludvig882eda82002-11-11 12:50:47 +00001146 long opcode, offset_reg, tmp;
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001147 void *svc_addr;
Denys Vlasenko7c9ba8b2011-08-19 19:46:32 +02001148 static const int gpr_offset[16] = {
1149 PT_GPR0, PT_GPR1, PT_ORIGGPR2, PT_GPR3,
1150 PT_GPR4, PT_GPR5, PT_GPR6, PT_GPR7,
1151 PT_GPR8, PT_GPR9, PT_GPR10, PT_GPR11,
1152 PT_GPR12, PT_GPR13, PT_GPR14, PT_GPR15
1153 };
Roland McGrath761b5d72002-12-15 23:58:31 +00001154
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001155 if (upeek(tcp->pid, PT_PSWADDR, &psw) < 0)
Michal Ludvig882eda82002-11-11 12:50:47 +00001156 return -1;
Roland McGrath96dc5142003-01-20 10:23:04 +00001157 errno = 0;
Denys Vlasenko7ba8e722013-02-08 15:50:05 +01001158 opcode = ptrace(PTRACE_PEEKTEXT, tcp->pid, (char *)(psw - sizeof(long)), 0);
Roland McGrath96dc5142003-01-20 10:23:04 +00001159 if (errno) {
Denys Vlasenko905e8e02013-02-26 12:30:09 +01001160 perror_msg("peektext(psw-oneword)");
Michal Ludvig882eda82002-11-11 12:50:47 +00001161 return -1;
Roland McGrath96dc5142003-01-20 10:23:04 +00001162 }
Michal Ludvig882eda82002-11-11 12:50:47 +00001163
1164 /*
1165 * We have to check if the SVC got executed directly or via an
1166 * EXECUTE instruction. In case of EXECUTE it is necessary to do
1167 * instruction decoding to derive the system call number.
1168 * Unfortunately the opcode sizes of EXECUTE and SVC are differently,
1169 * so that this doesn't work if a SVC opcode is part of an EXECUTE
1170 * opcode. Since there is no way to find out the opcode size this
1171 * is the best we can do...
1172 */
Michal Ludvig882eda82002-11-11 12:50:47 +00001173 if ((opcode & 0xff00) == 0x0a00) {
1174 /* SVC opcode */
1175 scno = opcode & 0xff;
Roland McGrath761b5d72002-12-15 23:58:31 +00001176 }
Michal Ludvig882eda82002-11-11 12:50:47 +00001177 else {
1178 /* SVC got executed by EXECUTE instruction */
1179
1180 /*
1181 * Do instruction decoding of EXECUTE. If you really want to
1182 * understand this, read the Principles of Operations.
1183 */
1184 svc_addr = (void *) (opcode & 0xfff);
1185
1186 tmp = 0;
1187 offset_reg = (opcode & 0x000f0000) >> 16;
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001188 if (offset_reg && (upeek(tcp->pid, gpr_offset[offset_reg], &tmp) < 0))
Michal Ludvig882eda82002-11-11 12:50:47 +00001189 return -1;
1190 svc_addr += tmp;
1191
1192 tmp = 0;
1193 offset_reg = (opcode & 0x0000f000) >> 12;
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001194 if (offset_reg && (upeek(tcp->pid, gpr_offset[offset_reg], &tmp) < 0))
Michal Ludvig882eda82002-11-11 12:50:47 +00001195 return -1;
1196 svc_addr += tmp;
1197
Denys Vlasenkofb036672009-01-23 16:30:26 +00001198 scno = ptrace(PTRACE_PEEKTEXT, tcp->pid, svc_addr, 0);
Michal Ludvig882eda82002-11-11 12:50:47 +00001199 if (errno)
1200 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001201# if defined(S390X)
Michal Ludvig882eda82002-11-11 12:50:47 +00001202 scno >>= 48;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001203# else
Michal Ludvig882eda82002-11-11 12:50:47 +00001204 scno >>= 16;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001205# endif
Michal Ludvig882eda82002-11-11 12:50:47 +00001206 tmp = 0;
1207 offset_reg = (opcode & 0x00f00000) >> 20;
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001208 if (offset_reg && (upeek(tcp->pid, gpr_offset[offset_reg], &tmp) < 0))
Michal Ludvig882eda82002-11-11 12:50:47 +00001209 return -1;
1210
1211 scno = (scno | tmp) & 0xff;
1212 }
1213 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01001214#elif defined(POWERPC)
Anton Blanchardce6e33b2013-06-26 15:53:33 +02001215 scno = ppc_regs.gpr[0];
Denys Vlasenko523635f2012-02-25 02:44:25 +01001216# ifdef POWERPC64
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +00001217 unsigned int currpers;
Andreas Schwabd69fa492010-07-12 21:39:57 +02001218
James Yanga78d7772014-02-18 15:32:43 -06001219 /*
1220 * Check for 64/32 bit mode.
1221 * Embedded implementations covered by Book E extension of PPC use
1222 * bit 0 (CM) of 32-bit Machine state register (MSR).
1223 * Other implementations use bit 0 (SF) of 64-bit MSR.
1224 */
1225 currpers = (ppc_regs.msr & 0x8000000080000000) ? 0 : 1;
Dmitry V. Levina5a839a2011-12-23 00:50:49 +00001226 update_personality(tcp, currpers);
Denys Vlasenko523635f2012-02-25 02:44:25 +01001227# endif
1228#elif defined(AVR32)
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +01001229 scno = avr32_regs.r8;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001230#elif defined(BFIN)
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001231 if (upeek(tcp->pid, PT_ORIG_P0, &scno))
Dmitry V. Levin87ea1f42008-11-10 22:21:41 +00001232 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001233#elif defined(I386)
Denys Vlasenkoeb0e3e82011-08-30 18:53:49 +02001234 scno = i386_regs.orig_eax;
H.J. Lu35be5812012-04-16 13:00:01 +02001235#elif defined(X86_64) || defined(X32)
1236# ifndef __X32_SYSCALL_BIT
1237# define __X32_SYSCALL_BIT 0x40000000
1238# endif
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +00001239 unsigned int currpers;
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +01001240# if 1
1241 /* GETREGSET of NT_PRSTATUS tells us regset size,
1242 * which unambiguously detects i386.
1243 *
1244 * Linux kernel distinguishes x86-64 and x32 processes
1245 * solely by looking at __X32_SYSCALL_BIT:
1246 * arch/x86/include/asm/compat.h::is_x32_task():
1247 * if (task_pt_regs(current)->orig_ax & __X32_SYSCALL_BIT)
1248 * return true;
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001249 */
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +01001250 if (x86_io.iov_len == sizeof(i386_regs)) {
1251 scno = i386_regs.orig_eax;
1252 currpers = 1;
1253 } else {
1254 scno = x86_64_regs.orig_rax;
1255 currpers = 0;
1256 if (scno & __X32_SYSCALL_BIT) {
Dmitry V. Levinc3948322015-02-05 16:15:46 +00001257 /*
1258 * Syscall number -1 requires special treatment:
1259 * it might be a side effect of SECCOMP_RET_ERRNO
1260 * filtering that sets orig_rax to -1
1261 * in some versions of linux kernel.
1262 * If that is the case, then
1263 * __X32_SYSCALL_BIT logic does not apply.
1264 */
1265 if ((long long) x86_64_regs.orig_rax != -1) {
1266 scno -= __X32_SYSCALL_BIT;
1267 currpers = 2;
1268 } else {
1269# ifdef X32
1270 currpers = 2;
1271# endif
1272 }
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +01001273 }
1274 }
1275# elif 0
1276 /* cs = 0x33 for long mode (native 64 bit and x32)
1277 * cs = 0x23 for compatibility mode (32 bit)
1278 * ds = 0x2b for x32 mode (x86-64 in 32 bit)
1279 */
1280 scno = x86_64_regs.orig_rax;
Denys Vlasenkoeb0e3e82011-08-30 18:53:49 +02001281 switch (x86_64_regs.cs) {
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001282 case 0x23: currpers = 1; break;
H.J. Lu35be5812012-04-16 13:00:01 +02001283 case 0x33:
1284 if (x86_64_regs.ds == 0x2b) {
1285 currpers = 2;
Denys Vlasenko59aea0a2013-02-11 12:29:36 +01001286 scno &= ~__X32_SYSCALL_BIT;
H.J. Lu35be5812012-04-16 13:00:01 +02001287 } else
1288 currpers = 0;
1289 break;
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001290 default:
Denys Vlasenkoeb0e3e82011-08-30 18:53:49 +02001291 fprintf(stderr, "Unknown value CS=0x%08X while "
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001292 "detecting personality of process "
Denys Vlasenkoeb0e3e82011-08-30 18:53:49 +02001293 "PID=%d\n", (int)x86_64_regs.cs, tcp->pid);
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001294 currpers = current_personality;
1295 break;
1296 }
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +01001297# elif 0
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001298 /* This version analyzes the opcode of a syscall instruction.
1299 * (int 0x80 on i386 vs. syscall on x86-64)
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +01001300 * It works, but is too complicated, and strictly speaking, unreliable.
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001301 */
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +01001302 unsigned long call, rip = x86_64_regs.rip;
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001303 /* sizeof(syscall) == sizeof(int 0x80) == 2 */
1304 rip -= 2;
1305 errno = 0;
Denys Vlasenkoeb0e3e82011-08-30 18:53:49 +02001306 call = ptrace(PTRACE_PEEKTEXT, tcp->pid, (char *)rip, (char *)0);
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001307 if (errno)
1308 fprintf(stderr, "ptrace_peektext failed: %s\n",
1309 strerror(errno));
1310 switch (call & 0xffff) {
1311 /* x86-64: syscall = 0x0f 0x05 */
1312 case 0x050f: currpers = 0; break;
1313 /* i386: int 0x80 = 0xcd 0x80 */
1314 case 0x80cd: currpers = 1; break;
1315 default:
1316 currpers = current_personality;
1317 fprintf(stderr,
1318 "Unknown syscall opcode (0x%04X) while "
1319 "detecting personality of process "
Denys Vlasenkoeb0e3e82011-08-30 18:53:49 +02001320 "PID=%d\n", (int)call, tcp->pid);
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001321 break;
1322 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01001323# endif
Denys Vlasenko59aea0a2013-02-11 12:29:36 +01001324
H.J. Lu35be5812012-04-16 13:00:01 +02001325# ifdef X32
Denys Vlasenko59aea0a2013-02-11 12:29:36 +01001326 /* If we are built for a x32 system, then personality 0 is x32
1327 * (not x86_64), and stracing of x86_64 apps is not supported.
1328 * Stracing of i386 apps is still supported.
H.J. Lu085e4282012-04-17 11:05:04 -07001329 */
Denys Vlasenko59aea0a2013-02-11 12:29:36 +01001330 if (currpers == 0) {
1331 fprintf(stderr, "syscall_%lu(...) in unsupported "
1332 "64-bit mode of process PID=%d\n",
1333 scno, tcp->pid);
1334 return 0;
H.J. Lu35be5812012-04-16 13:00:01 +02001335 }
Denys Vlasenko59aea0a2013-02-11 12:29:36 +01001336 currpers &= ~2; /* map 2,1 to 0,1 */
H.J. Lu35be5812012-04-16 13:00:01 +02001337# endif
H.J. Lu085e4282012-04-17 11:05:04 -07001338 update_personality(tcp, currpers);
Denys Vlasenko523635f2012-02-25 02:44:25 +01001339#elif defined(IA64)
Wichert Akkerman7b3346b2001-10-09 23:47:38 +00001340# define IA64_PSR_IS ((long)1 << 34)
Denys Vlasenko4bdb6bb2013-02-06 18:09:31 +01001341 long psr;
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001342 if (upeek(tcp->pid, PT_CR_IPSR, &psr) >= 0)
Denys Vlasenkoc09646a2013-07-01 12:28:17 +02001343 ia64_ia32mode = ((psr & IA64_PSR_IS) != 0);
1344 if (ia64_ia32mode) {
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001345 if (upeek(tcp->pid, PT_R1, &scno) < 0)
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001346 return -1;
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +00001347 } else {
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001348 if (upeek(tcp->pid, PT_R15, &scno) < 0)
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +00001349 return -1;
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001350 }
Steve McIntyre890a5ca2012-11-10 11:24:48 +00001351#elif defined(AARCH64)
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01001352 switch (aarch64_io.iov_len) {
Steve McIntyre890a5ca2012-11-10 11:24:48 +00001353 case sizeof(aarch64_regs):
1354 /* We are in 64-bit mode */
Steve McIntyre890a5ca2012-11-10 11:24:48 +00001355 scno = aarch64_regs.regs[8];
1356 update_personality(tcp, 1);
1357 break;
Denys Vlasenko28ac68f2013-02-08 12:38:51 +01001358 case sizeof(arm_regs):
Steve McIntyre890a5ca2012-11-10 11:24:48 +00001359 /* We are in 32-bit mode */
Denys Vlasenko8b7aa2b2013-07-04 09:54:19 +02001360 /* Note: we don't support OABI, unlike 32-bit ARM build */
Denys Vlasenko28ac68f2013-02-08 12:38:51 +01001361 scno = arm_regs.ARM_r7;
Elliott Hughes7a28f7f2014-03-03 23:45:26 +00001362 scno = shuffle_scno(scno);
Steve McIntyre890a5ca2012-11-10 11:24:48 +00001363 update_personality(tcp, 0);
1364 break;
Steve McIntyre890a5ca2012-11-10 11:24:48 +00001365 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01001366#elif defined(ARM)
Denys Vlasenkoe7030e52013-02-20 18:08:25 +01001367 if (arm_regs.ARM_ip != 0) {
1368 /* It is not a syscall entry */
1369 fprintf(stderr, "pid %d stray syscall exit\n", tcp->pid);
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001370 tcp->flags |= TCB_INSYSCALL;
Denys Vlasenkoe7030e52013-02-20 18:08:25 +01001371 return 0;
1372 }
1373 /* Note: we support only 32-bit CPUs, not 26-bit */
1374
Dmitry V. Levin0160e162014-03-18 23:37:43 +00001375# if !defined(__ARM_EABI__) || ENABLE_ARM_OABI
Denys Vlasenko8b7aa2b2013-07-04 09:54:19 +02001376 if (arm_regs.ARM_cpsr & 0x20)
Denys Vlasenkoe7030e52013-02-20 18:08:25 +01001377 /* Thumb mode */
Denys Vlasenko8b7aa2b2013-07-04 09:54:19 +02001378 goto scno_in_r7;
1379 /* ARM mode */
1380 /* Check EABI/OABI by examining SVC insn's low 24 bits */
1381 errno = 0;
1382 scno = ptrace(PTRACE_PEEKTEXT, tcp->pid, (void *)(arm_regs.ARM_pc - 4), NULL);
1383 if (errno)
1384 return -1;
1385 /* EABI syscall convention? */
Dmitry V. Levin03b44542015-01-14 07:21:36 +00001386 if ((unsigned long) scno != 0xef000000) {
Denys Vlasenko8b7aa2b2013-07-04 09:54:19 +02001387 /* No, it's OABI */
1388 if ((scno & 0x0ff00000) != 0x0f900000) {
1389 fprintf(stderr, "pid %d unknown syscall trap 0x%08lx\n",
1390 tcp->pid, scno);
Denys Vlasenkoe7030e52013-02-20 18:08:25 +01001391 return -1;
Denys Vlasenkoe7030e52013-02-20 18:08:25 +01001392 }
Denys Vlasenko8b7aa2b2013-07-04 09:54:19 +02001393 /* Fixup the syscall number */
1394 scno &= 0x000fffff;
1395 } else {
1396 scno_in_r7:
1397 scno = arm_regs.ARM_r7;
Denys Vlasenkoe7030e52013-02-20 18:08:25 +01001398 }
Dmitry V. Levin0160e162014-03-18 23:37:43 +00001399# else /* __ARM_EABI__ || !ENABLE_ARM_OABI */
Denys Vlasenko8b7aa2b2013-07-04 09:54:19 +02001400 scno = arm_regs.ARM_r7;
1401# endif
Denys Vlasenko7270de52013-02-21 15:46:34 +01001402 scno = shuffle_scno(scno);
Denys Vlasenko523635f2012-02-25 02:44:25 +01001403#elif defined(M68K)
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001404 if (upeek(tcp->pid, 4*PT_ORIG_D0, &scno) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001405 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001406#elif defined(MIPS)
Dmitry V. Levin4f2d1ae2015-02-15 03:27:13 +00001407 scno = mips_REG_V0;
Wichert Akkermanf90da011999-10-31 21:15:38 +00001408
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01001409 if (!SCNO_IN_RANGE(scno)) {
Dmitry V. Levinf6777152015-03-02 15:06:51 +00001410 if (mips_REG_A3 == 0 || mips_REG_A3 == (uint64_t) -1) {
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001411 if (debug_flag)
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001412 fprintf(stderr, "stray syscall exit: v0 = %ld\n", scno);
Roland McGrath542c2c62008-05-20 01:11:56 +00001413 return 0;
1414 }
Wichert Akkermanf90da011999-10-31 21:15:38 +00001415 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01001416#elif defined(ALPHA)
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001417 if (upeek(tcp->pid, REG_A3, &alpha_a3) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001418 return -1;
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001419 if (upeek(tcp->pid, REG_R0, &scno) < 0)
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001420 return -1;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001421
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001422 /*
1423 * Do some sanity checks to figure out if it's
1424 * really a syscall entry
1425 */
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01001426 if (!SCNO_IN_RANGE(scno)) {
Denys Vlasenko89804ec2013-02-07 13:14:48 +01001427 if (alpha_a3 == 0 || alpha_a3 == -1) {
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001428 if (debug_flag)
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001429 fprintf(stderr, "stray syscall exit: r0 = %ld\n", scno);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001430 return 0;
1431 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001432 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01001433#elif defined(SPARC) || defined(SPARC64)
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001434 /* Disassemble the syscall trap. */
1435 /* Retrieve the syscall trap instruction. */
Denys Vlasenko46455822013-02-05 17:02:59 +01001436 unsigned long trap;
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001437 errno = 0;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001438# if defined(SPARC64)
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +01001439 trap = ptrace(PTRACE_PEEKTEXT, tcp->pid, (char *)sparc_regs.tpc, 0);
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001440 trap >>= 32;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001441# else
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +01001442 trap = ptrace(PTRACE_PEEKTEXT, tcp->pid, (char *)sparc_regs.pc, 0);
Denys Vlasenko523635f2012-02-25 02:44:25 +01001443# endif
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001444 if (errno)
Wichert Akkermanc1652e22001-03-27 12:17:16 +00001445 return -1;
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001446
1447 /* Disassemble the trap to see what personality to use. */
1448 switch (trap) {
1449 case 0x91d02010:
1450 /* Linux/SPARC syscall trap. */
Dmitry V. Levina5a839a2011-12-23 00:50:49 +00001451 update_personality(tcp, 0);
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001452 break;
1453 case 0x91d0206d:
1454 /* Linux/SPARC64 syscall trap. */
Dmitry V. Levina5a839a2011-12-23 00:50:49 +00001455 update_personality(tcp, 2);
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001456 break;
1457 case 0x91d02000:
1458 /* SunOS syscall trap. (pers 1) */
1459 fprintf(stderr, "syscall: SunOS no support\n");
1460 return -1;
1461 case 0x91d02008:
1462 /* Solaris 2.x syscall trap. (per 2) */
Dmitry V. Levina5a839a2011-12-23 00:50:49 +00001463 update_personality(tcp, 1);
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001464 break;
1465 case 0x91d02009:
1466 /* NetBSD/FreeBSD syscall trap. */
1467 fprintf(stderr, "syscall: NetBSD/FreeBSD not supported\n");
1468 return -1;
1469 case 0x91d02027:
1470 /* Solaris 2.x gettimeofday */
Dmitry V. Levina5a839a2011-12-23 00:50:49 +00001471 update_personality(tcp, 1);
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001472 break;
1473 default:
Denys Vlasenko523635f2012-02-25 02:44:25 +01001474# if defined(SPARC64)
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +01001475 fprintf(stderr, "syscall: unknown syscall trap %08lx %016lx\n", trap, sparc_regs.tpc);
Denys Vlasenko523635f2012-02-25 02:44:25 +01001476# else
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +01001477 fprintf(stderr, "syscall: unknown syscall trap %08lx %08lx\n", trap, sparc_regs.pc);
Denys Vlasenko523635f2012-02-25 02:44:25 +01001478# endif
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001479 return -1;
1480 }
1481
1482 /* Extract the system call number from the registers. */
1483 if (trap == 0x91d02027)
1484 scno = 156;
1485 else
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +01001486 scno = sparc_regs.u_regs[U_REG_G1];
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001487 if (scno == 0) {
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +01001488 scno = sparc_regs.u_regs[U_REG_O0];
1489 memmove(&sparc_regs.u_regs[U_REG_O0], &sparc_regs.u_regs[U_REG_O1], 7*sizeof(sparc_regs.u_regs[0]));
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001490 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01001491#elif defined(HPPA)
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001492 if (upeek(tcp->pid, PT_GR20, &scno) < 0)
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001493 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001494#elif defined(SH)
Denys Vlasenkoadedb512008-12-30 18:47:55 +00001495 /*
1496 * In the new syscall ABI, the system call number is in R3.
1497 */
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001498 if (upeek(tcp->pid, 4*(REG_REG0+3), &scno) < 0)
Denys Vlasenkoadedb512008-12-30 18:47:55 +00001499 return -1;
Wichert Akkermanccef6372002-05-01 16:39:22 +00001500
Denys Vlasenkoadedb512008-12-30 18:47:55 +00001501 if (scno < 0) {
1502 /* Odd as it may seem, a glibc bug has been known to cause
1503 glibc to issue bogus negative syscall numbers. So for
1504 our purposes, make strace print what it *should* have been */
1505 long correct_scno = (scno & 0xff);
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001506 if (debug_flag)
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +00001507 fprintf(stderr,
Denys Vlasenkoadedb512008-12-30 18:47:55 +00001508 "Detected glibc bug: bogus system call"
1509 " number = %ld, correcting to %ld\n",
1510 scno,
1511 correct_scno);
1512 scno = correct_scno;
1513 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01001514#elif defined(SH64)
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001515 if (upeek(tcp->pid, REG_SYSCALL, &scno) < 0)
Roland McGrathe1e584b2003-06-02 19:18:58 +00001516 return -1;
Denys Vlasenkoadedb512008-12-30 18:47:55 +00001517 scno &= 0xFFFF;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001518#elif defined(CRISV10) || defined(CRISV32)
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001519 if (upeek(tcp->pid, 4*PT_R9, &scno) < 0)
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001520 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001521#elif defined(TILE)
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +00001522 unsigned int currpers;
Chris Metcalf0b99a8a2013-02-05 17:48:33 +01001523 scno = tile_regs.regs[10];
1524# ifdef __tilepro__
1525 currpers = 1;
1526# else
Denys Vlasenko59aea0a2013-02-11 12:29:36 +01001527# ifndef PT_FLAGS_COMPAT
1528# define PT_FLAGS_COMPAT 0x10000 /* from Linux 3.8 on */
1529# endif
Chris Metcalf0b99a8a2013-02-05 17:48:33 +01001530 if (tile_regs.flags & PT_FLAGS_COMPAT)
1531 currpers = 1;
1532 else
1533 currpers = 0;
1534# endif
1535 update_personality(tcp, currpers);
Denys Vlasenko523635f2012-02-25 02:44:25 +01001536#elif defined(MICROBLAZE)
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001537 if (upeek(tcp->pid, 0, &scno) < 0)
Edgar E. Iglesias939caba2010-07-06 14:21:07 +02001538 return -1;
Christian Svensson492f81f2013-02-14 13:26:27 +01001539#elif defined(OR1K)
1540 scno = or1k_regs.gpr[11];
James Hogan5f999a82013-02-22 14:44:10 +00001541#elif defined(METAG)
1542 scno = metag_regs.dx[0][1]; /* syscall number in D1Re0 (D1.0) */
Chris Zankel8f636ed2013-03-25 10:22:07 -07001543#elif defined(XTENSA)
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001544 if (upeek(tcp->pid, SYSCALL_NR, &scno) < 0)
Chris Zankel8f636ed2013-03-25 10:22:07 -07001545 return -1;
Vineet Gupta7daacbb2013-08-16 12:47:06 +05301546# elif defined(ARC)
1547 scno = arc_regs.scratch.r8;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001548#endif
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001549
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001550 tcp->scno = scno;
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01001551 if (SCNO_IS_VALID(tcp->scno)) {
1552 tcp->s_ent = &sysent[scno];
1553 tcp->qual_flg = qual_flags[scno];
1554 } else {
Denys Vlasenkoa9fe13c2013-02-22 13:26:10 +01001555 static const struct_sysent unknown = {
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01001556 .nargs = MAX_ARGS,
1557 .sys_flags = 0,
1558 .sys_func = printargs,
1559 .sys_name = "unknown", /* not used */
1560 };
1561 tcp->s_ent = &unknown;
1562 tcp->qual_flg = UNDEFINED_SCNO | QUAL_RAW | DEFAULT_QUAL_FLAGS;
1563 }
Pavel Machek4dc3b142000-02-01 17:58:41 +00001564 return 1;
1565}
1566
Dmitry V. Levind70c41d2015-02-05 23:43:06 +00001567/*
1568 * Cannot rely on __kernel_[u]long_t being defined,
1569 * it is quite a recent feature of <asm/posix_types.h>.
1570 */
1571#ifdef __kernel_long_t
1572typedef __kernel_long_t kernel_long_t;
1573typedef __kernel_ulong_t kernel_ulong_t;
1574#else
1575# ifdef X32
1576typedef long long kernel_long_t;
1577typedef unsigned long long kernel_ulong_t;
1578# else
1579typedef long kernel_long_t;
1580typedef unsigned long kernel_ulong_t;
1581# endif
1582#endif
1583
1584/*
1585 * Check the syscall return value register value for whether it is
1586 * a negated errno code indicating an error, or a success return value.
1587 */
1588static inline bool
1589is_negated_errno(kernel_ulong_t val)
1590{
Dmitry V. Levinfb585db2015-02-19 16:58:52 +00001591 /* Linux kernel defines MAX_ERRNO to 4095. */
1592 kernel_ulong_t max = -(kernel_long_t) 4095;
Dmitry V. Levind70c41d2015-02-05 23:43:06 +00001593
1594#if SUPPORTED_PERSONALITIES > 1 && SIZEOF_LONG > 4
1595 if (current_wordsize < sizeof(val)) {
1596 val = (uint32_t) val;
1597 max = (uint32_t) max;
1598 }
1599#elif defined X32
1600 /*
1601 * current_wordsize is 4 even in personality 0 (native X32)
1602 * but truncation _must not_ be done in it.
1603 * can't check current_wordsize here!
1604 */
1605 if (current_personality != 0) {
1606 val = (uint32_t) val;
1607 max = (uint32_t) max;
1608 }
1609#endif
1610
Dmitry V. Levinfb585db2015-02-19 16:58:52 +00001611 return val >= max;
Dmitry V. Levind70c41d2015-02-05 23:43:06 +00001612}
1613
Denys Vlasenkobb6bb5c2012-03-20 17:10:35 +01001614/* Return -1 on error or 1 on success (never 0!) */
Roland McGratha4d48532005-06-08 20:45:28 +00001615static int
Denys Vlasenkobb6bb5c2012-03-20 17:10:35 +01001616get_syscall_args(struct tcb *tcp)
Pavel Machek4dc3b142000-02-01 17:58:41 +00001617{
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001618 int i, nargs;
1619
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01001620 nargs = tcp->s_ent->nargs;
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001621
Denys Vlasenko523635f2012-02-25 02:44:25 +01001622#if defined(S390) || defined(S390X)
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001623 for (i = 0; i < nargs; ++i)
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001624 if (upeek(tcp->pid, i==0 ? PT_ORIGGPR2 : PT_GPR2 + i*sizeof(long), &tcp->u_arg[i]) < 0)
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001625 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001626#elif defined(ALPHA)
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001627 for (i = 0; i < nargs; ++i)
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001628 if (upeek(tcp->pid, REG_A0+i, &tcp->u_arg[i]) < 0)
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001629 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001630#elif defined(IA64)
Denys Vlasenkoc09646a2013-07-01 12:28:17 +02001631 if (!ia64_ia32mode) {
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001632 unsigned long *out0, cfm, sof, sol;
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001633 long rbs_end;
1634 /* be backwards compatible with kernel < 2.4.4... */
1635# ifndef PT_RBS_END
1636# define PT_RBS_END PT_AR_BSP
1637# endif
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +00001638
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001639 if (upeek(tcp->pid, PT_RBS_END, &rbs_end) < 0)
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001640 return -1;
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001641 if (upeek(tcp->pid, PT_CFM, (long *) &cfm) < 0)
Roland McGrath542c2c62008-05-20 01:11:56 +00001642 return -1;
1643
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001644 sof = (cfm >> 0) & 0x7f;
1645 sol = (cfm >> 7) & 0x7f;
1646 out0 = ia64_rse_skip_regs((unsigned long *) rbs_end, -sof + sol);
1647
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001648 for (i = 0; i < nargs; ++i) {
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001649 if (umoven(tcp, (unsigned long) ia64_rse_skip_regs(out0, i),
1650 sizeof(long), (char *) &tcp->u_arg[i]) < 0)
1651 return -1;
1652 }
1653 } else {
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001654 static const int argreg[MAX_ARGS] = { PT_R11 /* EBX = out0 */,
1655 PT_R9 /* ECX = out1 */,
1656 PT_R10 /* EDX = out2 */,
1657 PT_R14 /* ESI = out3 */,
1658 PT_R15 /* EDI = out4 */,
1659 PT_R13 /* EBP = out5 */};
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001660
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001661 for (i = 0; i < nargs; ++i) {
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001662 if (upeek(tcp->pid, argreg[i], &tcp->u_arg[i]) < 0)
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001663 return -1;
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001664 /* truncate away IVE sign-extension */
1665 tcp->u_arg[i] &= 0xffffffff;
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001666 }
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001667 }
Dmitry V. Levin4f2d1ae2015-02-15 03:27:13 +00001668#elif defined LINUX_MIPSN64
1669 (void)i;
1670 (void)nargs;
1671 tcp->u_arg[0] = mips_REG_A0;
1672 tcp->u_arg[1] = mips_REG_A1;
1673 tcp->u_arg[2] = mips_REG_A2;
1674 tcp->u_arg[3] = mips_REG_A3;
1675 tcp->u_arg[4] = mips_REG_A4;
1676 tcp->u_arg[5] = mips_REG_A5;
1677#elif defined LINUX_MIPSN32
1678 (void)i;
1679 (void)nargs;
1680 tcp->u_arg[0] = tcp->ext_arg[0] = mips_REG_A0;
1681 tcp->u_arg[1] = tcp->ext_arg[1] = mips_REG_A1;
1682 tcp->u_arg[2] = tcp->ext_arg[2] = mips_REG_A2;
1683 tcp->u_arg[3] = tcp->ext_arg[3] = mips_REG_A3;
1684 tcp->u_arg[4] = tcp->ext_arg[4] = mips_REG_A4;
1685 tcp->u_arg[5] = tcp->ext_arg[5] = mips_REG_A5;
1686#elif defined LINUX_MIPSO32
1687 (void)i;
1688 (void)nargs;
1689 tcp->u_arg[0] = mips_REG_A0;
1690 tcp->u_arg[1] = mips_REG_A1;
1691 tcp->u_arg[2] = mips_REG_A2;
1692 tcp->u_arg[3] = mips_REG_A3;
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001693 if (nargs > 4) {
Dmitry V. Levin4f2d1ae2015-02-15 03:27:13 +00001694 umoven(tcp, mips_REG_SP + 4 * 4,
1695 (nargs - 4) * sizeof(tcp->u_arg[0]),
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001696 (char *)(tcp->u_arg + 4));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001697 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01001698#elif defined(POWERPC)
Anton Blanchardce6e33b2013-06-26 15:53:33 +02001699 (void)i;
1700 (void)nargs;
1701 tcp->u_arg[0] = ppc_regs.orig_gpr3;
1702 tcp->u_arg[1] = ppc_regs.gpr[4];
1703 tcp->u_arg[2] = ppc_regs.gpr[5];
1704 tcp->u_arg[3] = ppc_regs.gpr[6];
1705 tcp->u_arg[4] = ppc_regs.gpr[7];
1706 tcp->u_arg[5] = ppc_regs.gpr[8];
Denys Vlasenko523635f2012-02-25 02:44:25 +01001707#elif defined(SPARC) || defined(SPARC64)
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001708 for (i = 0; i < nargs; ++i)
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +01001709 tcp->u_arg[i] = sparc_regs.u_regs[U_REG_O0 + i];
Denys Vlasenko523635f2012-02-25 02:44:25 +01001710#elif defined(HPPA)
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001711 for (i = 0; i < nargs; ++i)
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001712 if (upeek(tcp->pid, PT_GR26-4*i, &tcp->u_arg[i]) < 0)
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001713 return -1;
Steve McIntyre890a5ca2012-11-10 11:24:48 +00001714#elif defined(ARM) || defined(AARCH64)
1715# if defined(AARCH64)
1716 if (tcp->currpers == 1)
1717 for (i = 0; i < nargs; ++i)
1718 tcp->u_arg[i] = aarch64_regs.regs[i];
1719 else
Denys Vlasenko28ac68f2013-02-08 12:38:51 +01001720# endif
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001721 for (i = 0; i < nargs; ++i)
Denys Vlasenko401374e2013-02-06 18:24:39 +01001722 tcp->u_arg[i] = arm_regs.uregs[i];
Denys Vlasenko523635f2012-02-25 02:44:25 +01001723#elif defined(AVR32)
Denys Vlasenkob5b25892011-08-30 19:04:54 +02001724 (void)i;
1725 (void)nargs;
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +01001726 tcp->u_arg[0] = avr32_regs.r12;
1727 tcp->u_arg[1] = avr32_regs.r11;
1728 tcp->u_arg[2] = avr32_regs.r10;
1729 tcp->u_arg[3] = avr32_regs.r9;
1730 tcp->u_arg[4] = avr32_regs.r5;
1731 tcp->u_arg[5] = avr32_regs.r3;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001732#elif defined(BFIN)
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001733 static const int argreg[MAX_ARGS] = { PT_R0, PT_R1, PT_R2, PT_R3, PT_R4, PT_R5 };
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001734
Denys Vlasenko4b887a52011-08-23 13:32:38 +02001735 for (i = 0; i < nargs; ++i)
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001736 if (upeek(tcp->pid, argreg[i], &tcp->u_arg[i]) < 0)
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001737 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001738#elif defined(SH)
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001739 static const int syscall_regs[MAX_ARGS] = {
1740 4 * (REG_REG0+4), 4 * (REG_REG0+5), 4 * (REG_REG0+6),
1741 4 * (REG_REG0+7), 4 * (REG_REG0 ), 4 * (REG_REG0+1)
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001742 };
1743
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001744 for (i = 0; i < nargs; ++i)
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001745 if (upeek(tcp->pid, syscall_regs[i], &tcp->u_arg[i]) < 0)
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001746 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001747#elif defined(SH64)
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001748 int i;
1749 /* Registers used by SH5 Linux system calls for parameters */
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001750 static const int syscall_regs[MAX_ARGS] = { 2, 3, 4, 5, 6, 7 };
Roland McGrathe1e584b2003-06-02 19:18:58 +00001751
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001752 for (i = 0; i < nargs; ++i)
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001753 if (upeek(tcp->pid, REG_GENERAL(syscall_regs[i]), &tcp->u_arg[i]) < 0)
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001754 return -1;
Denys Vlasenko6cf36052013-02-15 15:01:38 +01001755#elif defined(I386)
1756 (void)i;
1757 (void)nargs;
1758 tcp->u_arg[0] = i386_regs.ebx;
1759 tcp->u_arg[1] = i386_regs.ecx;
1760 tcp->u_arg[2] = i386_regs.edx;
1761 tcp->u_arg[3] = i386_regs.esi;
1762 tcp->u_arg[4] = i386_regs.edi;
1763 tcp->u_arg[5] = i386_regs.ebp;
H.J. Lu35be5812012-04-16 13:00:01 +02001764#elif defined(X86_64) || defined(X32)
Denys Vlasenkoeb0e3e82011-08-30 18:53:49 +02001765 (void)i;
1766 (void)nargs;
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +01001767 if (x86_io.iov_len != sizeof(i386_regs)) {
1768 /* x86-64 or x32 ABI */
Denys Vlasenkoeb0e3e82011-08-30 18:53:49 +02001769 tcp->u_arg[0] = x86_64_regs.rdi;
1770 tcp->u_arg[1] = x86_64_regs.rsi;
1771 tcp->u_arg[2] = x86_64_regs.rdx;
1772 tcp->u_arg[3] = x86_64_regs.r10;
1773 tcp->u_arg[4] = x86_64_regs.r8;
1774 tcp->u_arg[5] = x86_64_regs.r9;
H.J. Lu35be5812012-04-16 13:00:01 +02001775# ifdef X32
1776 tcp->ext_arg[0] = x86_64_regs.rdi;
1777 tcp->ext_arg[1] = x86_64_regs.rsi;
1778 tcp->ext_arg[2] = x86_64_regs.rdx;
1779 tcp->ext_arg[3] = x86_64_regs.r10;
1780 tcp->ext_arg[4] = x86_64_regs.r8;
1781 tcp->ext_arg[5] = x86_64_regs.r9;
1782# endif
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +01001783 } else {
1784 /* i386 ABI */
Denys Vlasenko6cf36052013-02-15 15:01:38 +01001785 /* Zero-extend from 32 bits */
1786 /* Use widen_to_long(tcp->u_arg[N]) in syscall handlers
1787 * if you need to use *sign-extended* parameter.
1788 */
1789 tcp->u_arg[0] = (long)(uint32_t)i386_regs.ebx;
1790 tcp->u_arg[1] = (long)(uint32_t)i386_regs.ecx;
1791 tcp->u_arg[2] = (long)(uint32_t)i386_regs.edx;
1792 tcp->u_arg[3] = (long)(uint32_t)i386_regs.esi;
1793 tcp->u_arg[4] = (long)(uint32_t)i386_regs.edi;
1794 tcp->u_arg[5] = (long)(uint32_t)i386_regs.ebp;
Denys Vlasenkoeb0e3e82011-08-30 18:53:49 +02001795 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01001796#elif defined(MICROBLAZE)
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001797 for (i = 0; i < nargs; ++i)
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001798 if (upeek(tcp->pid, (5 + i) * 4, &tcp->u_arg[i]) < 0)
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001799 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001800#elif defined(CRISV10) || defined(CRISV32)
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001801 static const int crisregs[MAX_ARGS] = {
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001802 4*PT_ORIG_R10, 4*PT_R11, 4*PT_R12,
Denys Vlasenko0b6c73c2011-06-23 22:22:34 +02001803 4*PT_R13 , 4*PT_MOF, 4*PT_SRP
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001804 };
Roland McGrathe1e584b2003-06-02 19:18:58 +00001805
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001806 for (i = 0; i < nargs; ++i)
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001807 if (upeek(tcp->pid, crisregs[i], &tcp->u_arg[i]) < 0)
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001808 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001809#elif defined(TILE)
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001810 for (i = 0; i < nargs; ++i)
Chris Metcalf0b99a8a2013-02-05 17:48:33 +01001811 tcp->u_arg[i] = tile_regs.regs[i];
Denys Vlasenko523635f2012-02-25 02:44:25 +01001812#elif defined(M68K)
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001813 for (i = 0; i < nargs; ++i)
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001814 if (upeek(tcp->pid, (i < 5 ? i : i + 2)*4, &tcp->u_arg[i]) < 0)
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001815 return -1;
Christian Svensson492f81f2013-02-14 13:26:27 +01001816#elif defined(OR1K)
1817 (void)nargs;
1818 for (i = 0; i < 6; ++i)
1819 tcp->u_arg[i] = or1k_regs.gpr[3 + i];
James Hogan5f999a82013-02-22 14:44:10 +00001820#elif defined(METAG)
1821 for (i = 0; i < nargs; i++)
1822 /* arguments go backwards from D1Ar1 (D1.3) */
1823 tcp->u_arg[i] = ((unsigned long *)&metag_regs.dx[3][1])[-i];
Chris Zankel8f636ed2013-03-25 10:22:07 -07001824#elif defined(XTENSA)
1825 /* arg0: a6, arg1: a3, arg2: a4, arg3: a5, arg4: a8, arg5: a9 */
1826 static const int xtensaregs[MAX_ARGS] = { 6, 3, 4, 5, 8, 9 };
1827 for (i = 0; i < nargs; ++i)
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001828 if (upeek(tcp->pid, REG_A_BASE + xtensaregs[i], &tcp->u_arg[i]) < 0)
Chris Zankel8f636ed2013-03-25 10:22:07 -07001829 return -1;
Vineet Gupta7daacbb2013-08-16 12:47:06 +05301830# elif defined(ARC)
1831 long *arc_args = &arc_regs.scratch.r0;
1832 for (i = 0; i < nargs; ++i)
1833 tcp->u_arg[i] = *arc_args--;
1834
Denys Vlasenko523635f2012-02-25 02:44:25 +01001835#else /* Other architecture (32bits specific) */
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001836 for (i = 0; i < nargs; ++i)
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001837 if (upeek(tcp->pid, i*4, &tcp->u_arg[i]) < 0)
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001838 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001839#endif
Pavel Machek4dc3b142000-02-01 17:58:41 +00001840 return 1;
1841}
1842
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00001843static int
Denys Vlasenkoed4f4f02011-08-22 11:54:06 +02001844trace_syscall_entering(struct tcb *tcp)
1845{
1846 int res, scno_good;
1847
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01001848 scno_good = res = (get_regs_error ? -1 : get_scno(tcp));
Denys Vlasenkoed4f4f02011-08-22 11:54:06 +02001849 if (res == 0)
1850 return res;
Dmitry V. Levin23ce9e42015-02-08 13:05:53 +00001851 if (res == 1)
1852 res = get_syscall_args(tcp);
Denys Vlasenkoed4f4f02011-08-22 11:54:06 +02001853
1854 if (res != 1) {
1855 printleader(tcp);
Denys Vlasenkoed4f4f02011-08-22 11:54:06 +02001856 if (scno_good != 1)
Denys Vlasenkob7a6dae2012-03-20 16:48:35 +01001857 tprints("????" /* anti-trigraph gap */ "(");
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01001858 else if (tcp->qual_flg & UNDEFINED_SCNO)
Denys Vlasenko7270de52013-02-21 15:46:34 +01001859 tprintf("%s(", undefined_scno_name(tcp));
Denys Vlasenkoed4f4f02011-08-22 11:54:06 +02001860 else
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01001861 tprintf("%s(", tcp->s_ent->sys_name);
Denys Vlasenkoed4f4f02011-08-22 11:54:06 +02001862 /*
1863 * " <unavailable>" will be added later by the code which
1864 * detects ptrace errors.
1865 */
1866 goto ret;
1867 }
1868
Denys Vlasenko2a3d2752013-05-14 16:07:46 +02001869 if ( sys_execve == tcp->s_ent->sys_func
1870# if defined(SPARC) || defined(SPARC64)
1871 || sys_execv == tcp->s_ent->sys_func
1872# endif
1873 ) {
1874 hide_log_until_execve = 0;
1875 }
1876
Dmitry V. Levinb5e88d42012-02-20 17:02:38 +00001877#if defined(SYS_socket_subcall) || defined(SYS_ipc_subcall)
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01001878 while (1) {
Denys Vlasenko523635f2012-02-25 02:44:25 +01001879# ifdef SYS_socket_subcall
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01001880 if (tcp->s_ent->sys_func == sys_socketcall) {
Dmitry V. Levin648c22c2012-03-15 22:08:55 +00001881 decode_socket_subcall(tcp);
Dmitry V. Levinb5e88d42012-02-20 17:02:38 +00001882 break;
1883 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01001884# endif
1885# ifdef SYS_ipc_subcall
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01001886 if (tcp->s_ent->sys_func == sys_ipc) {
Dmitry V. Levin648c22c2012-03-15 22:08:55 +00001887 decode_ipc_subcall(tcp);
Dmitry V. Levinb5e88d42012-02-20 17:02:38 +00001888 break;
1889 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01001890# endif
Dmitry V. Levinb5e88d42012-02-20 17:02:38 +00001891 break;
1892 }
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01001893#endif
Dmitry V. Levinb5e88d42012-02-20 17:02:38 +00001894
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01001895 if (!(tcp->qual_flg & QUAL_TRACE)
1896 || (tracing_paths && !pathtrace_match(tcp))
1897 ) {
Denys Vlasenkoed4f4f02011-08-22 11:54:06 +02001898 tcp->flags |= TCB_INSYSCALL | TCB_FILTERED;
1899 return 0;
1900 }
1901
1902 tcp->flags &= ~TCB_FILTERED;
1903
Denys Vlasenko2a3d2752013-05-14 16:07:46 +02001904 if (cflag == CFLAG_ONLY_STATS || hide_log_until_execve) {
Denys Vlasenkoed4f4f02011-08-22 11:54:06 +02001905 res = 0;
1906 goto ret;
1907 }
1908
Masatake YAMATOed69fc22014-04-16 15:33:35 +09001909#ifdef USE_LIBUNWIND
1910 if (stack_trace_enabled) {
1911 if (tcp->s_ent->sys_flags & STACKTRACE_CAPTURE_ON_ENTER)
1912 unwind_capture_stacktrace(tcp);
1913 }
1914#endif
1915
Denys Vlasenkoed4f4f02011-08-22 11:54:06 +02001916 printleader(tcp);
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01001917 if (tcp->qual_flg & UNDEFINED_SCNO)
Denys Vlasenko7270de52013-02-21 15:46:34 +01001918 tprintf("%s(", undefined_scno_name(tcp));
Denys Vlasenkoed4f4f02011-08-22 11:54:06 +02001919 else
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01001920 tprintf("%s(", tcp->s_ent->sys_name);
1921 if ((tcp->qual_flg & QUAL_RAW) && tcp->s_ent->sys_func != sys_exit)
Denys Vlasenkoed4f4f02011-08-22 11:54:06 +02001922 res = printargs(tcp);
1923 else
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01001924 res = tcp->s_ent->sys_func(tcp);
Denys Vlasenkoed4f4f02011-08-22 11:54:06 +02001925
Dmitry V. Levinb742d8c2012-09-17 22:40:12 +00001926 fflush(tcp->outf);
Denys Vlasenkoed4f4f02011-08-22 11:54:06 +02001927 ret:
1928 tcp->flags |= TCB_INSYSCALL;
1929 /* Measure the entrance time as late as possible to avoid errors. */
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001930 if (Tflag || cflag)
Denys Vlasenkoed4f4f02011-08-22 11:54:06 +02001931 gettimeofday(&tcp->etime, NULL);
1932 return res;
1933}
1934
Denys Vlasenkoa6146922011-08-24 18:07:22 +02001935/* Returns:
Denys Vlasenko907735a2012-03-21 00:23:16 +01001936 * 1: ok, continue in trace_syscall_exiting().
1937 * -1: error, trace_syscall_exiting() should print error indicator
Denys Vlasenkoa6146922011-08-24 18:07:22 +02001938 * ("????" etc) and bail out.
1939 */
1940static int
1941get_syscall_result(struct tcb *tcp)
1942{
Dmitry V. Levin5d092242015-02-13 23:06:36 +00001943#if defined ARCH_REGS_FOR_GETREGSET || defined ARCH_REGS_FOR_GETREGS
1944 /* already done by get_regs */
1945#elif defined(S390) || defined(S390X)
Denys Vlasenkof5730e92013-07-07 12:47:39 +02001946 if (upeek(tcp->pid, PT_GPR2, &s390_gpr2) < 0)
Denys Vlasenkof20bff62011-08-25 10:31:24 +02001947 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001948#elif defined(BFIN)
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001949 if (upeek(tcp->pid, PT_R0, &bfin_r0) < 0)
Denys Vlasenkof20bff62011-08-25 10:31:24 +02001950 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001951#elif defined(IA64)
Denys Vlasenkoa6146922011-08-24 18:07:22 +02001952# define IA64_PSR_IS ((long)1 << 34)
Denys Vlasenko4bdb6bb2013-02-06 18:09:31 +01001953 long psr;
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001954 if (upeek(tcp->pid, PT_CR_IPSR, &psr) >= 0)
Denys Vlasenkoc09646a2013-07-01 12:28:17 +02001955 ia64_ia32mode = ((psr & IA64_PSR_IS) != 0);
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001956 if (upeek(tcp->pid, PT_R8, &ia64_r8) < 0)
Denys Vlasenkoa6146922011-08-24 18:07:22 +02001957 return -1;
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001958 if (upeek(tcp->pid, PT_R10, &ia64_r10) < 0)
Denys Vlasenkoa6146922011-08-24 18:07:22 +02001959 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001960#elif defined(M68K)
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001961 if (upeek(tcp->pid, 4*PT_D0, &m68k_d0) < 0)
Denys Vlasenkof20bff62011-08-25 10:31:24 +02001962 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001963#elif defined(ALPHA)
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001964 if (upeek(tcp->pid, REG_A3, &alpha_a3) < 0)
Denys Vlasenkoa6146922011-08-24 18:07:22 +02001965 return -1;
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001966 if (upeek(tcp->pid, REG_R0, &alpha_r0) < 0)
Denys Vlasenkoa6146922011-08-24 18:07:22 +02001967 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001968#elif defined(HPPA)
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001969 if (upeek(tcp->pid, PT_GR28, &hppa_r28) < 0)
Denys Vlasenkof20bff62011-08-25 10:31:24 +02001970 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001971#elif defined(SH)
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01001972 /* new syscall ABI returns result in R0 */
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001973 if (upeek(tcp->pid, 4*REG_REG0, (long *)&sh_r0) < 0)
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01001974 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001975#elif defined(SH64)
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01001976 /* ABI defines result returned in r9 */
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001977 if (upeek(tcp->pid, REG_GENERAL(9), (long *)&sh64_r9) < 0)
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01001978 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001979#elif defined(CRISV10) || defined(CRISV32)
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001980 if (upeek(tcp->pid, 4*PT_R10, &cris_r10) < 0)
Denys Vlasenkof20bff62011-08-25 10:31:24 +02001981 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001982#elif defined(MICROBLAZE)
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001983 if (upeek(tcp->pid, 3 * 4, &microblaze_r3) < 0)
Denys Vlasenkof20bff62011-08-25 10:31:24 +02001984 return -1;
Chris Zankel8f636ed2013-03-25 10:22:07 -07001985#elif defined(XTENSA)
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001986 if (upeek(tcp->pid, REG_A_BASE + 2, &xtensa_a2) < 0)
Chris Zankel8f636ed2013-03-25 10:22:07 -07001987 return -1;
Dmitry V. Levin5d092242015-02-13 23:06:36 +00001988#else
1989# error get_syscall_result is not implemented for this architecture
Denys Vlasenko523635f2012-02-25 02:44:25 +01001990#endif
Denys Vlasenkoa6146922011-08-24 18:07:22 +02001991 return 1;
1992}
1993
Denys Vlasenko907735a2012-03-21 00:23:16 +01001994/* Returns:
1995 * 1: ok, continue in trace_syscall_exiting().
1996 * -1: error, trace_syscall_exiting() should print error indicator
1997 * ("????" etc) and bail out.
1998 */
Denys Vlasenkoc956ef02013-02-16 14:25:56 +01001999static void
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002000get_error(struct tcb *tcp)
2001{
2002 int u_error = 0;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002003 int check_errno = 1;
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01002004 if (tcp->s_ent->sys_flags & SYSCALL_NEVER_FAILS) {
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002005 check_errno = 0;
2006 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002007#if defined(S390) || defined(S390X)
Denys Vlasenkof5730e92013-07-07 12:47:39 +02002008 if (check_errno && is_negated_errno(s390_gpr2)) {
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002009 tcp->u_rval = -1;
Denys Vlasenkof5730e92013-07-07 12:47:39 +02002010 u_error = -s390_gpr2;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002011 }
2012 else {
Denys Vlasenkof5730e92013-07-07 12:47:39 +02002013 tcp->u_rval = s390_gpr2;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002014 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002015#elif defined(I386)
Denys Vlasenkoeb0e3e82011-08-30 18:53:49 +02002016 if (check_errno && is_negated_errno(i386_regs.eax)) {
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002017 tcp->u_rval = -1;
Denys Vlasenkoeb0e3e82011-08-30 18:53:49 +02002018 u_error = -i386_regs.eax;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002019 }
2020 else {
Denys Vlasenkoeb0e3e82011-08-30 18:53:49 +02002021 tcp->u_rval = i386_regs.eax;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002022 }
Dmitry V. Levinf46ab5f2015-02-05 18:50:24 +00002023#elif defined(X86_64) || defined(X32)
2024 /*
2025 * In X32, return value is 64-bit (llseek uses one).
2026 * Using merely "long rax" would not work.
2027 */
2028 kernel_long_t rax;
2029
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +01002030 if (x86_io.iov_len == sizeof(i386_regs)) {
2031 /* Sign extend from 32 bits */
Dmitry V. Levinf46ab5f2015-02-05 18:50:24 +00002032 rax = (int32_t) i386_regs.eax;
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +01002033 } else {
2034 rax = x86_64_regs.rax;
2035 }
2036 if (check_errno && is_negated_errno(rax)) {
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002037 tcp->u_rval = -1;
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +01002038 u_error = -rax;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002039 }
2040 else {
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +01002041 tcp->u_rval = rax;
Dmitry V. Levinf46ab5f2015-02-05 18:50:24 +00002042# ifdef X32
2043 /* tcp->u_rval contains a truncated value */
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +01002044 tcp->u_lrval = rax;
Dmitry V. Levinf46ab5f2015-02-05 18:50:24 +00002045# endif
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002046 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002047#elif defined(IA64)
Denys Vlasenkoc09646a2013-07-01 12:28:17 +02002048 if (ia64_ia32mode) {
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002049 int err;
2050
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002051 err = (int)ia64_r8;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002052 if (check_errno && is_negated_errno(err)) {
2053 tcp->u_rval = -1;
2054 u_error = -err;
2055 }
2056 else {
2057 tcp->u_rval = err;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002058 }
2059 } else {
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002060 if (check_errno && ia64_r10) {
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002061 tcp->u_rval = -1;
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002062 u_error = ia64_r8;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002063 } else {
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002064 tcp->u_rval = ia64_r8;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002065 }
2066 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002067#elif defined(MIPS)
Dmitry V. Levin4f2d1ae2015-02-15 03:27:13 +00002068 if (check_errno && mips_REG_A3) {
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002069 tcp->u_rval = -1;
Dmitry V. Levin4f2d1ae2015-02-15 03:27:13 +00002070 u_error = mips_REG_V0;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002071 } else {
Dmitry V. Levin4f2d1ae2015-02-15 03:27:13 +00002072# if defined LINUX_MIPSN32
2073 tcp->u_lrval = mips_REG_V0;
H.J. Ludd0130b2012-04-16 12:16:45 +02002074# endif
Dmitry V. Levin4f2d1ae2015-02-15 03:27:13 +00002075 tcp->u_rval = mips_REG_V0;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002076 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002077#elif defined(POWERPC)
Denys Vlasenko44a6d042013-06-28 16:47:38 +02002078 if (check_errno && (ppc_regs.ccr & 0x10000000)) {
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002079 tcp->u_rval = -1;
Denys Vlasenko44a6d042013-06-28 16:47:38 +02002080 u_error = ppc_regs.gpr[3];
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002081 }
2082 else {
Denys Vlasenko44a6d042013-06-28 16:47:38 +02002083 tcp->u_rval = ppc_regs.gpr[3];
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002084 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002085#elif defined(M68K)
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002086 if (check_errno && is_negated_errno(m68k_d0)) {
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002087 tcp->u_rval = -1;
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002088 u_error = -m68k_d0;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002089 }
2090 else {
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002091 tcp->u_rval = m68k_d0;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002092 }
Steve McIntyre890a5ca2012-11-10 11:24:48 +00002093#elif defined(ARM) || defined(AARCH64)
2094# if defined(AARCH64)
2095 if (tcp->currpers == 1) {
2096 if (check_errno && is_negated_errno(aarch64_regs.regs[0])) {
2097 tcp->u_rval = -1;
2098 u_error = -aarch64_regs.regs[0];
2099 }
2100 else {
2101 tcp->u_rval = aarch64_regs.regs[0];
2102 }
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002103 }
Steve McIntyre890a5ca2012-11-10 11:24:48 +00002104 else
Denys Vlasenko28ac68f2013-02-08 12:38:51 +01002105# endif
Steve McIntyre890a5ca2012-11-10 11:24:48 +00002106 {
Denys Vlasenko401374e2013-02-06 18:24:39 +01002107 if (check_errno && is_negated_errno(arm_regs.ARM_r0)) {
Steve McIntyre890a5ca2012-11-10 11:24:48 +00002108 tcp->u_rval = -1;
Denys Vlasenko401374e2013-02-06 18:24:39 +01002109 u_error = -arm_regs.ARM_r0;
Steve McIntyre890a5ca2012-11-10 11:24:48 +00002110 }
2111 else {
Denys Vlasenko401374e2013-02-06 18:24:39 +01002112 tcp->u_rval = arm_regs.ARM_r0;
Steve McIntyre890a5ca2012-11-10 11:24:48 +00002113 }
Steve McIntyred8d3bd32012-10-24 17:58:16 +01002114 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002115#elif defined(AVR32)
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +01002116 if (check_errno && avr32_regs.r12 && (unsigned) -avr32_regs.r12 < nerrnos) {
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002117 tcp->u_rval = -1;
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +01002118 u_error = -avr32_regs.r12;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002119 }
2120 else {
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +01002121 tcp->u_rval = avr32_regs.r12;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002122 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002123#elif defined(BFIN)
Denys Vlasenkod22213a2013-02-13 17:52:31 +01002124 if (check_errno && is_negated_errno(bfin_r0)) {
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002125 tcp->u_rval = -1;
Denys Vlasenkod22213a2013-02-13 17:52:31 +01002126 u_error = -bfin_r0;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002127 } else {
Denys Vlasenkod22213a2013-02-13 17:52:31 +01002128 tcp->u_rval = bfin_r0;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002129 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002130#elif defined(ALPHA)
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002131 if (check_errno && alpha_a3) {
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002132 tcp->u_rval = -1;
Denys Vlasenkod22213a2013-02-13 17:52:31 +01002133 u_error = alpha_r0;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002134 }
2135 else {
Denys Vlasenkod22213a2013-02-13 17:52:31 +01002136 tcp->u_rval = alpha_r0;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002137 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002138#elif defined(SPARC)
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +01002139 if (check_errno && sparc_regs.psr & PSR_C) {
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002140 tcp->u_rval = -1;
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +01002141 u_error = sparc_regs.u_regs[U_REG_O0];
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002142 }
2143 else {
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +01002144 tcp->u_rval = sparc_regs.u_regs[U_REG_O0];
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002145 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002146#elif defined(SPARC64)
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +01002147 if (check_errno && sparc_regs.tstate & 0x1100000000UL) {
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002148 tcp->u_rval = -1;
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +01002149 u_error = sparc_regs.u_regs[U_REG_O0];
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002150 }
2151 else {
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +01002152 tcp->u_rval = sparc_regs.u_regs[U_REG_O0];
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002153 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002154#elif defined(HPPA)
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002155 if (check_errno && is_negated_errno(hppa_r28)) {
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002156 tcp->u_rval = -1;
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002157 u_error = -hppa_r28;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002158 }
2159 else {
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002160 tcp->u_rval = hppa_r28;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002161 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002162#elif defined(SH)
Denys Vlasenkod22213a2013-02-13 17:52:31 +01002163 if (check_errno && is_negated_errno(sh_r0)) {
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002164 tcp->u_rval = -1;
Denys Vlasenkod22213a2013-02-13 17:52:31 +01002165 u_error = -sh_r0;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002166 }
2167 else {
Denys Vlasenkod22213a2013-02-13 17:52:31 +01002168 tcp->u_rval = sh_r0;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002169 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002170#elif defined(SH64)
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002171 if (check_errno && is_negated_errno(sh64_r9)) {
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002172 tcp->u_rval = -1;
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002173 u_error = -sh64_r9;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002174 }
2175 else {
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002176 tcp->u_rval = sh64_r9;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002177 }
James Hogan5f999a82013-02-22 14:44:10 +00002178#elif defined(METAG)
2179 /* result pointer in D0Re0 (D0.0) */
2180 if (check_errno && is_negated_errno(metag_regs.dx[0][0])) {
2181 tcp->u_rval = -1;
2182 u_error = -metag_regs.dx[0][0];
2183 }
2184 else {
2185 tcp->u_rval = metag_regs.dx[0][0];
2186 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002187#elif defined(CRISV10) || defined(CRISV32)
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002188 if (check_errno && cris_r10 && (unsigned) -cris_r10 < nerrnos) {
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002189 tcp->u_rval = -1;
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002190 u_error = -cris_r10;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002191 }
2192 else {
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002193 tcp->u_rval = cris_r10;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002194 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002195#elif defined(TILE)
Chris Metcalf0b99a8a2013-02-05 17:48:33 +01002196 /*
2197 * The standard tile calling convention returns the value (or negative
2198 * errno) in r0, and zero (or positive errno) in r1.
2199 * Until at least kernel 3.8, however, the r1 value is not reflected
2200 * in ptregs at this point, so we use r0 here.
2201 */
2202 if (check_errno && is_negated_errno(tile_regs.regs[0])) {
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002203 tcp->u_rval = -1;
Chris Metcalf0b99a8a2013-02-05 17:48:33 +01002204 u_error = -tile_regs.regs[0];
2205 } else {
2206 tcp->u_rval = tile_regs.regs[0];
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002207 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002208#elif defined(MICROBLAZE)
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002209 if (check_errno && is_negated_errno(microblaze_r3)) {
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002210 tcp->u_rval = -1;
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002211 u_error = -microblaze_r3;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002212 }
2213 else {
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002214 tcp->u_rval = microblaze_r3;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002215 }
Christian Svensson492f81f2013-02-14 13:26:27 +01002216#elif defined(OR1K)
2217 if (check_errno && is_negated_errno(or1k_regs.gpr[11])) {
2218 tcp->u_rval = -1;
2219 u_error = -or1k_regs.gpr[11];
2220 }
2221 else {
2222 tcp->u_rval = or1k_regs.gpr[11];
2223 }
Chris Zankel8f636ed2013-03-25 10:22:07 -07002224#elif defined(XTENSA)
2225 if (check_errno && is_negated_errno(xtensa_a2)) {
2226 tcp->u_rval = -1;
2227 u_error = -xtensa_a2;
2228 }
2229 else {
2230 tcp->u_rval = xtensa_a2;
2231 }
Vineet Gupta7daacbb2013-08-16 12:47:06 +05302232#elif defined(ARC)
2233 if (check_errno && is_negated_errno(arc_regs.scratch.r0)) {
2234 tcp->u_rval = -1;
2235 u_error = -arc_regs.scratch.r0;
2236 }
2237 else {
2238 tcp->u_rval = arc_regs.scratch.r0;
2239 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002240#endif
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002241 tcp->u_error = u_error;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002242}
2243
2244static void
2245dumpio(struct tcb *tcp)
2246{
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01002247 int (*func)();
2248
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002249 if (syserror(tcp))
2250 return;
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +01002251 if ((unsigned long) tcp->u_arg[0] >= num_quals)
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002252 return;
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01002253 func = tcp->s_ent->sys_func;
2254 if (func == printargs)
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002255 return;
2256 if (qual_flags[tcp->u_arg[0]] & QUAL_READ) {
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01002257 if (func == sys_read ||
2258 func == sys_pread ||
2259 func == sys_recv ||
Aurelien Jacobsdc521212015-01-31 23:57:00 +01002260 func == sys_recvfrom) {
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002261 dumpstr(tcp, tcp->u_arg[1], tcp->u_rval);
Aurelien Jacobsdc521212015-01-31 23:57:00 +01002262 return;
2263 } else if (func == sys_readv) {
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002264 dumpiov(tcp, tcp->u_arg[2], tcp->u_arg[1]);
Aurelien Jacobsdc521212015-01-31 23:57:00 +01002265 return;
Masatake YAMATO02f9f6b2014-10-15 22:11:43 +09002266#if HAVE_SENDMSG
Aurelien Jacobsdc521212015-01-31 23:57:00 +01002267 } else if (func == sys_recvmsg) {
Masatake YAMATO02f9f6b2014-10-15 22:11:43 +09002268 dumpiov_in_msghdr(tcp, tcp->u_arg[1]);
Aurelien Jacobsdc521212015-01-31 23:57:00 +01002269 return;
2270 } else if (func == sys_recvmmsg) {
Masatake YAMATOa807dce2014-11-07 01:23:26 +09002271 dumpiov_in_mmsghdr(tcp, tcp->u_arg[1]);
Aurelien Jacobsdc521212015-01-31 23:57:00 +01002272 return;
Masatake YAMATO02f9f6b2014-10-15 22:11:43 +09002273#endif
Aurelien Jacobsdc521212015-01-31 23:57:00 +01002274 }
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002275 }
2276 if (qual_flags[tcp->u_arg[0]] & QUAL_WRITE) {
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01002277 if (func == sys_write ||
2278 func == sys_pwrite ||
2279 func == sys_send ||
2280 func == sys_sendto)
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002281 dumpstr(tcp, tcp->u_arg[1], tcp->u_arg[2]);
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01002282 else if (func == sys_writev)
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002283 dumpiov(tcp, tcp->u_arg[2], tcp->u_arg[1]);
Masatake YAMATO02f9f6b2014-10-15 22:11:43 +09002284#if HAVE_SENDMSG
2285 else if (func == sys_sendmsg)
2286 dumpiov_in_msghdr(tcp, tcp->u_arg[1]);
Masatake YAMATOa807dce2014-11-07 01:23:26 +09002287 else if (func == sys_sendmmsg)
2288 dumpiov_in_mmsghdr(tcp, tcp->u_arg[1]);
Masatake YAMATO02f9f6b2014-10-15 22:11:43 +09002289#endif
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002290 }
2291}
2292
Denys Vlasenkoed4f4f02011-08-22 11:54:06 +02002293static int
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002294trace_syscall_exiting(struct tcb *tcp)
Pavel Machek4dc3b142000-02-01 17:58:41 +00002295{
2296 int sys_res;
2297 struct timeval tv;
Denys Vlasenko1a5b5a72011-08-25 00:29:56 +02002298 int res;
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002299 long u_error;
Pavel Machek4dc3b142000-02-01 17:58:41 +00002300
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002301 /* Measure the exit time as early as possible to avoid errors. */
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01002302 if (Tflag || cflag)
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002303 gettimeofday(&tv, NULL);
Pavel Machek4dc3b142000-02-01 17:58:41 +00002304
Masatake YAMATOed69fc22014-04-16 15:33:35 +09002305#ifdef USE_LIBUNWIND
2306 if (stack_trace_enabled) {
2307 if (tcp->s_ent->sys_flags & STACKTRACE_INVALIDATE_CACHE)
2308 unwind_cache_invalidate(tcp);
2309 }
2310#endif
2311
Dmitry V. Levina5a839a2011-12-23 00:50:49 +00002312#if SUPPORTED_PERSONALITIES > 1
2313 update_personality(tcp, tcp->currpers);
2314#endif
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01002315 res = (get_regs_error ? -1 : get_syscall_result(tcp));
Denys Vlasenkobb6bb5c2012-03-20 17:10:35 +01002316 if (res == 1) {
Denys Vlasenkoc956ef02013-02-16 14:25:56 +01002317 get_error(tcp); /* never fails */
Denys Vlasenko2a3d2752013-05-14 16:07:46 +02002318 if (filtered(tcp) || hide_log_until_execve)
Denys Vlasenkoc956ef02013-02-16 14:25:56 +01002319 goto ret;
Pavel Machek4dc3b142000-02-01 17:58:41 +00002320 }
2321
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002322 if (cflag) {
Dmitry V. Levinac5133d2014-05-29 18:10:00 +00002323 count_syscall(tcp, &tv);
Denys Vlasenko7b609d52011-06-22 14:32:43 +02002324 if (cflag == CFLAG_ONLY_STATS) {
Denys Vlasenko3b738812011-08-22 02:06:35 +02002325 goto ret;
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002326 }
2327 }
2328
Denys Vlasenkoa44f9692012-03-21 11:06:20 +01002329 /* If not in -ff mode, and printing_tcp != tcp,
2330 * then the log currently does not end with output
2331 * of _our syscall entry_, but with something else.
2332 * We need to say which syscall's return is this.
2333 *
2334 * Forced reprinting via TCB_REPRINT is used only by
2335 * "strace -ff -oLOG test/threaded_execve" corner case.
2336 * It's the only case when -ff mode needs reprinting.
2337 */
2338 if ((followfork < 2 && printing_tcp != tcp) || (tcp->flags & TCB_REPRINT)) {
2339 tcp->flags &= ~TCB_REPRINT;
2340 printleader(tcp);
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01002341 if (tcp->qual_flg & UNDEFINED_SCNO)
Denys Vlasenko7270de52013-02-21 15:46:34 +01002342 tprintf("<... %s resumed> ", undefined_scno_name(tcp));
Denys Vlasenkoa44f9692012-03-21 11:06:20 +01002343 else
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01002344 tprintf("<... %s resumed> ", tcp->s_ent->sys_name);
Denys Vlasenkoa44f9692012-03-21 11:06:20 +01002345 }
2346 printing_tcp = tcp;
2347
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002348 if (res != 1) {
Denys Vlasenkoa44f9692012-03-21 11:06:20 +01002349 /* There was error in one of prior ptrace ops */
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002350 tprints(") ");
Denys Vlasenko102ec492011-08-25 01:27:59 +02002351 tabto();
Denys Vlasenko000b6012012-01-28 01:25:03 +01002352 tprints("= ? <unavailable>\n");
Denys Vlasenko7de265d2012-03-13 11:44:31 +01002353 line_ended();
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002354 tcp->flags &= ~TCB_INSYSCALL;
2355 return res;
2356 }
2357
Denys Vlasenkoa44f9692012-03-21 11:06:20 +01002358 sys_res = 0;
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01002359 if (tcp->qual_flg & QUAL_RAW) {
Denys Vlasenkoa44f9692012-03-21 11:06:20 +01002360 /* sys_res = printargs(tcp); - but it's nop on sysexit */
Denys Vlasenko7de265d2012-03-13 11:44:31 +01002361 } else {
Denys Vlasenko3b738812011-08-22 02:06:35 +02002362 /* FIXME: not_failing_only (IOW, option -z) is broken:
2363 * failure of syscall is known only after syscall return.
2364 * Thus we end up with something like this on, say, ENOENT:
2365 * open("doesnt_exist", O_RDONLY <unfinished ...>
2366 * {next syscall decode}
2367 * whereas the intended result is that open(...) line
2368 * is not shown at all.
2369 */
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002370 if (not_failing_only && tcp->u_error)
Denys Vlasenko3b738812011-08-22 02:06:35 +02002371 goto ret; /* ignore failed syscalls */
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01002372 sys_res = tcp->s_ent->sys_func(tcp);
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002373 }
2374
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002375 tprints(") ");
Denys Vlasenko102ec492011-08-25 01:27:59 +02002376 tabto();
Denys Vlasenko3b738812011-08-22 02:06:35 +02002377 u_error = tcp->u_error;
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01002378 if (tcp->qual_flg & QUAL_RAW) {
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002379 if (u_error)
2380 tprintf("= -1 (errno %ld)", u_error);
2381 else
2382 tprintf("= %#lx", tcp->u_rval);
2383 }
2384 else if (!(sys_res & RVAL_NONE) && u_error) {
2385 switch (u_error) {
Denys Vlasenkofe585652012-01-12 11:26:34 +01002386 /* Blocked signals do not interrupt any syscalls.
2387 * In this case syscalls don't return ERESTARTfoo codes.
2388 *
2389 * Deadly signals set to SIG_DFL interrupt syscalls
2390 * and kill the process regardless of which of the codes below
2391 * is returned by the interrupted syscall.
2392 * In some cases, kernel forces a kernel-generated deadly
2393 * signal to be unblocked and set to SIG_DFL (and thus cause
2394 * death) if it is blocked or SIG_IGNed: for example, SIGSEGV
2395 * or SIGILL. (The alternative is to leave process spinning
2396 * forever on the faulty instruction - not useful).
2397 *
2398 * SIG_IGNed signals and non-deadly signals set to SIG_DFL
2399 * (for example, SIGCHLD, SIGWINCH) interrupt syscalls,
2400 * but kernel will always restart them.
2401 */
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002402 case ERESTARTSYS:
Denys Vlasenkofe585652012-01-12 11:26:34 +01002403 /* Most common type of signal-interrupted syscall exit code.
2404 * The system call will be restarted with the same arguments
2405 * if SA_RESTART is set; otherwise, it will fail with EINTR.
2406 */
2407 tprints("= ? ERESTARTSYS (To be restarted if SA_RESTART is set)");
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002408 break;
2409 case ERESTARTNOINTR:
Denys Vlasenkofe585652012-01-12 11:26:34 +01002410 /* Rare. For example, fork() returns this if interrupted.
2411 * SA_RESTART is ignored (assumed set): the restart is unconditional.
2412 */
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002413 tprints("= ? ERESTARTNOINTR (To be restarted)");
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002414 break;
2415 case ERESTARTNOHAND:
Denys Vlasenkofe585652012-01-12 11:26:34 +01002416 /* pause(), rt_sigsuspend() etc use this code.
2417 * SA_RESTART is ignored (assumed not set):
2418 * syscall won't restart (will return EINTR instead)
Denys Vlasenko30c03232013-02-19 16:59:26 +01002419 * even after signal with SA_RESTART set. However,
2420 * after SIG_IGN or SIG_DFL signal it will restart
2421 * (thus the name "restart only if has no handler").
Denys Vlasenkofe585652012-01-12 11:26:34 +01002422 */
Denys Vlasenkoaba62922013-03-05 16:56:35 +01002423 tprints("= ? ERESTARTNOHAND (To be restarted if no handler)");
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002424 break;
2425 case ERESTART_RESTARTBLOCK:
Denys Vlasenkofe585652012-01-12 11:26:34 +01002426 /* Syscalls like nanosleep(), poll() which can't be
2427 * restarted with their original arguments use this
2428 * code. Kernel will execute restart_syscall() instead,
2429 * which changes arguments before restarting syscall.
2430 * SA_RESTART is ignored (assumed not set) similarly
2431 * to ERESTARTNOHAND. (Kernel can't honor SA_RESTART
2432 * since restart data is saved in "restart block"
2433 * in task struct, and if signal handler uses a syscall
2434 * which in turn saves another such restart block,
2435 * old data is lost and restart becomes impossible)
2436 */
2437 tprints("= ? ERESTART_RESTARTBLOCK (Interrupted by signal)");
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002438 break;
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002439 default:
Dmitry V. Levinb2f8c772015-02-23 03:10:25 +00002440 if ((unsigned long) u_error < nerrnos
2441 && errnoent[u_error])
Denys Vlasenkoa7949742011-08-21 17:26:55 +02002442 tprintf("= -1 %s (%s)", errnoent[u_error],
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002443 strerror(u_error));
2444 else
Dmitry V. Levinb2f8c772015-02-23 03:10:25 +00002445 tprintf("= -1 ERRNO_%lu (%s)", u_error,
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002446 strerror(u_error));
2447 break;
2448 }
2449 if ((sys_res & RVAL_STR) && tcp->auxstr)
2450 tprintf(" (%s)", tcp->auxstr);
2451 }
2452 else {
2453 if (sys_res & RVAL_NONE)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002454 tprints("= ?");
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002455 else {
2456 switch (sys_res & RVAL_MASK) {
2457 case RVAL_HEX:
Dmitry V. Levind93d9f82015-02-28 23:41:11 +00002458#if SUPPORTED_PERSONALITIES > 1
2459 if (current_wordsize < sizeof(long))
2460 tprintf("= %#x",
2461 (unsigned int) tcp->u_rval);
2462 else
2463#endif
2464 tprintf("= %#lx", tcp->u_rval);
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002465 break;
2466 case RVAL_OCTAL:
2467 tprintf("= %#lo", tcp->u_rval);
2468 break;
2469 case RVAL_UDECIMAL:
2470 tprintf("= %lu", tcp->u_rval);
2471 break;
2472 case RVAL_DECIMAL:
2473 tprintf("= %ld", tcp->u_rval);
2474 break;
Zubin Mithra64aa1b12014-06-04 08:30:41 +05302475 case RVAL_FD:
2476 if (show_fd_path) {
2477 tprints("= ");
2478 printfd(tcp, tcp->u_rval);
2479 }
2480 else
2481 tprintf("= %ld", tcp->u_rval);
2482 break;
H.J. Ludd0130b2012-04-16 12:16:45 +02002483#if defined(LINUX_MIPSN32) || defined(X32)
2484 /*
2485 case RVAL_LHEX:
2486 tprintf("= %#llx", tcp->u_lrval);
2487 break;
2488 case RVAL_LOCTAL:
2489 tprintf("= %#llo", tcp->u_lrval);
2490 break;
2491 */
2492 case RVAL_LUDECIMAL:
2493 tprintf("= %llu", tcp->u_lrval);
2494 break;
2495 /*
2496 case RVAL_LDECIMAL:
2497 tprintf("= %lld", tcp->u_lrval);
2498 break;
2499 */
2500#endif
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002501 default:
2502 fprintf(stderr,
2503 "invalid rval format\n");
2504 break;
2505 }
2506 }
2507 if ((sys_res & RVAL_STR) && tcp->auxstr)
2508 tprintf(" (%s)", tcp->auxstr);
2509 }
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01002510 if (Tflag) {
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002511 tv_sub(&tv, &tv, &tcp->etime);
2512 tprintf(" <%ld.%06ld>",
2513 (long) tv.tv_sec, (long) tv.tv_usec);
2514 }
Denys Vlasenko000b6012012-01-28 01:25:03 +01002515 tprints("\n");
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002516 dumpio(tcp);
Denys Vlasenko7de265d2012-03-13 11:44:31 +01002517 line_ended();
2518
Luca Clementi327064b2013-07-23 00:11:35 -07002519#ifdef USE_LIBUNWIND
2520 if (stack_trace_enabled)
Masatake YAMATO61413922014-04-16 15:33:02 +09002521 unwind_print_stacktrace(tcp);
Luca Clementi327064b2013-07-23 00:11:35 -07002522#endif
2523
Denys Vlasenko3b738812011-08-22 02:06:35 +02002524 ret:
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002525 tcp->flags &= ~TCB_INSYSCALL;
2526 return 0;
2527}
2528
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002529int
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002530trace_syscall(struct tcb *tcp)
2531{
2532 return exiting(tcp) ?
2533 trace_syscall_exiting(tcp) : trace_syscall_entering(tcp);
2534}