blob: b0ad47e13caf837e60715d406d007f7572a78dd8 [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/user.h>
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000036#include <sys/param.h>
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000037
Wichert Akkerman15dea971999-10-06 13:06:34 +000038#ifdef HAVE_SYS_REG_H
Denys Vlasenko523635f2012-02-25 02:44:25 +010039# include <sys/reg.h>
Wichert Akkermanfaf72222000-02-19 23:59:03 +000040#elif defined(HAVE_LINUX_PTRACE_H)
Denys Vlasenko523635f2012-02-25 02:44:25 +010041# undef PTRACE_SYSCALL
Roland McGrathce9f0742004-03-01 21:29:22 +000042# ifdef HAVE_STRUCT_IA64_FPREG
43# define ia64_fpreg XXX_ia64_fpreg
44# endif
45# ifdef HAVE_STRUCT_PT_ALL_USER_REGS
46# define pt_all_user_regs XXX_pt_all_user_regs
47# endif
Ali Polatel0b4060f2013-09-24 20:04:32 +030048# ifdef HAVE_STRUCT_PTRACE_PEEKSIGINFO_ARGS
49# define ptrace_peeksiginfo_args XXX_ptrace_peeksiginfo_args
50# endif
Denys Vlasenko523635f2012-02-25 02:44:25 +010051# include <linux/ptrace.h>
Ali Polatel0b4060f2013-09-24 20:04:32 +030052# undef ptrace_peeksiginfo_args
Roland McGrathce9f0742004-03-01 21:29:22 +000053# undef ia64_fpreg
54# undef pt_all_user_regs
Wichert Akkerman15dea971999-10-06 13:06:34 +000055#endif
56
Denys Vlasenko84703742012-02-25 02:38:52 +010057#if defined(SPARC64)
Roland McGrath6d1a65c2004-07-12 07:44:08 +000058# undef PTRACE_GETREGS
59# define PTRACE_GETREGS PTRACE_GETREGS64
60# undef PTRACE_SETREGS
61# define PTRACE_SETREGS PTRACE_SETREGS64
Denys Vlasenko84703742012-02-25 02:38:52 +010062#endif
Roland McGrath6d1a65c2004-07-12 07:44:08 +000063
Denys Vlasenko84703742012-02-25 02:38:52 +010064#if defined(IA64)
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +000065# include <asm/ptrace_offsets.h>
66# include <asm/rse.h>
67#endif
68
Dmitry V. Levin32c049a2013-03-18 00:59:27 +000069/* for struct iovec */
70#include <sys/uio.h>
71/* for NT_PRSTATUS */
72#ifdef HAVE_ELF_H
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +010073# include <elf.h>
74#endif
75
Steve McIntyred8d3bd32012-10-24 17:58:16 +010076#if defined(AARCH64)
77# include <asm/ptrace.h>
James Hogan5f999a82013-02-22 14:44:10 +000078#endif
79
Chris Zankel8f636ed2013-03-25 10:22:07 -070080#if defined(XTENSA)
81# include <asm/ptrace.h>
82#endif
83
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000084#ifndef NSIG
Denys Vlasenko523635f2012-02-25 02:44:25 +010085# warning: NSIG is not defined, using 32
86# define NSIG 32
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000087#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000088
89#include "syscall.h"
90
91/* Define these shorthand notations to simplify the syscallent files. */
Roland McGrath2fe7b132005-07-05 03:25:35 +000092#define TD TRACE_DESC
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000093#define TF TRACE_FILE
94#define TI TRACE_IPC
95#define TN TRACE_NETWORK
96#define TP TRACE_PROCESS
97#define TS TRACE_SIGNAL
Namhyung Kim96792962012-10-24 11:41:57 +090098#define TM TRACE_MEMORY
Dmitry V. Levin50a218d2011-01-18 17:36:20 +000099#define NF SYSCALL_NEVER_FAILS
Denys Vlasenkoac1ce772011-08-23 13:24:17 +0200100#define MA MAX_ARGS
Masatake YAMATO1d78d222014-04-16 15:33:11 +0900101#define SI STACKTRACE_INVALIDATE_CACHE
102#define SE STACKTRACE_CAPTURE_ON_ENTER
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000103
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100104const struct_sysent sysent0[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000105#include "syscallent.h"
106};
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000107
Denys Vlasenkoa9fe13c2013-02-22 13:26:10 +0100108#if SUPPORTED_PERSONALITIES > 1
109static const struct_sysent sysent1[] = {
Denys Vlasenko523635f2012-02-25 02:44:25 +0100110# include "syscallent1.h"
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000111};
Denys Vlasenko39fca622011-08-20 02:12:33 +0200112#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000113
Denys Vlasenkoa9fe13c2013-02-22 13:26:10 +0100114#if SUPPORTED_PERSONALITIES > 2
115static const struct_sysent sysent2[] = {
Denys Vlasenko523635f2012-02-25 02:44:25 +0100116# include "syscallent2.h"
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000117};
Denys Vlasenko39fca622011-08-20 02:12:33 +0200118#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000119
120/* Now undef them since short defines cause wicked namespace pollution. */
Roland McGrath2fe7b132005-07-05 03:25:35 +0000121#undef TD
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000122#undef TF
123#undef TI
124#undef TN
125#undef TP
126#undef TS
Namhyung Kim96792962012-10-24 11:41:57 +0900127#undef TM
Dmitry V. Levin50a218d2011-01-18 17:36:20 +0000128#undef NF
Denys Vlasenkoac1ce772011-08-23 13:24:17 +0200129#undef MA
Masatake YAMATO1d78d222014-04-16 15:33:11 +0900130#undef SI
131#undef SE
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000132
Denys Vlasenko39fca622011-08-20 02:12:33 +0200133/*
134 * `ioctlent.h' may be generated from `ioctlent.raw' by the auxiliary
135 * program `ioctlsort', such that the list is sorted by the `code' field.
136 * This has the side-effect of resolving the _IO.. macros into
137 * plain integers, eliminating the need to include here everything
138 * in "/usr/include".
139 */
140
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100141const char *const errnoent0[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000142#include "errnoent.h"
143};
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100144const char *const signalent0[] = {
Denys Vlasenko39fca622011-08-20 02:12:33 +0200145#include "signalent.h"
146};
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100147const struct_ioctlent ioctlent0[] = {
Denys Vlasenko39fca622011-08-20 02:12:33 +0200148#include "ioctlent.h"
149};
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000150
Denys Vlasenkoa9fe13c2013-02-22 13:26:10 +0100151#if SUPPORTED_PERSONALITIES > 1
Roland McGrathee36ce12004-09-04 03:53:10 +0000152static const char *const errnoent1[] = {
Denys Vlasenko523635f2012-02-25 02:44:25 +0100153# include "errnoent1.h"
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000154};
Denys Vlasenko39fca622011-08-20 02:12:33 +0200155static const char *const signalent1[] = {
Denys Vlasenko523635f2012-02-25 02:44:25 +0100156# include "signalent1.h"
Denys Vlasenko39fca622011-08-20 02:12:33 +0200157};
Denys Vlasenkoa9fe13c2013-02-22 13:26:10 +0100158static const struct_ioctlent ioctlent1[] = {
Denys Vlasenko523635f2012-02-25 02:44:25 +0100159# include "ioctlent1.h"
Denys Vlasenko39fca622011-08-20 02:12:33 +0200160};
Denys Vlasenko39fca622011-08-20 02:12:33 +0200161#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000162
Denys Vlasenkoa9fe13c2013-02-22 13:26:10 +0100163#if SUPPORTED_PERSONALITIES > 2
Roland McGrathee36ce12004-09-04 03:53:10 +0000164static const char *const errnoent2[] = {
Denys Vlasenko523635f2012-02-25 02:44:25 +0100165# include "errnoent2.h"
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000166};
Denys Vlasenko39fca622011-08-20 02:12:33 +0200167static const char *const signalent2[] = {
Denys Vlasenko523635f2012-02-25 02:44:25 +0100168# include "signalent2.h"
Denys Vlasenko39fca622011-08-20 02:12:33 +0200169};
Denys Vlasenkoa9fe13c2013-02-22 13:26:10 +0100170static const struct_ioctlent ioctlent2[] = {
Denys Vlasenko523635f2012-02-25 02:44:25 +0100171# include "ioctlent2.h"
Denys Vlasenko39fca622011-08-20 02:12:33 +0200172};
Denys Vlasenko39fca622011-08-20 02:12:33 +0200173#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000174
Dmitry V. Levine6f55242013-02-26 22:02:30 +0000175enum {
176 nsyscalls0 = ARRAY_SIZE(sysent0)
177#if SUPPORTED_PERSONALITIES > 1
178 , nsyscalls1 = ARRAY_SIZE(sysent1)
179# if SUPPORTED_PERSONALITIES > 2
180 , nsyscalls2 = ARRAY_SIZE(sysent2)
181# endif
182#endif
183};
184
185enum {
186 nerrnos0 = ARRAY_SIZE(errnoent0)
187#if SUPPORTED_PERSONALITIES > 1
188 , nerrnos1 = ARRAY_SIZE(errnoent1)
189# if SUPPORTED_PERSONALITIES > 2
190 , nerrnos2 = ARRAY_SIZE(errnoent2)
191# endif
192#endif
193};
194
195enum {
196 nsignals0 = ARRAY_SIZE(signalent0)
197#if SUPPORTED_PERSONALITIES > 1
198 , nsignals1 = ARRAY_SIZE(signalent1)
199# if SUPPORTED_PERSONALITIES > 2
200 , nsignals2 = ARRAY_SIZE(signalent2)
201# endif
202#endif
203};
204
205enum {
206 nioctlents0 = ARRAY_SIZE(ioctlent0)
207#if SUPPORTED_PERSONALITIES > 1
208 , nioctlents1 = ARRAY_SIZE(ioctlent1)
209# if SUPPORTED_PERSONALITIES > 2
210 , nioctlents2 = ARRAY_SIZE(ioctlent2)
211# endif
212#endif
213};
214
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100215#if SUPPORTED_PERSONALITIES > 1
Denys Vlasenkoa9fe13c2013-02-22 13:26:10 +0100216const struct_sysent *sysent = sysent0;
Denys Vlasenko9fd4f962012-03-19 09:36:42 +0100217const char *const *errnoent = errnoent0;
218const char *const *signalent = signalent0;
Denys Vlasenkoa9fe13c2013-02-22 13:26:10 +0100219const struct_ioctlent *ioctlent = ioctlent0;
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100220#endif
Denys Vlasenko9fd4f962012-03-19 09:36:42 +0100221unsigned nsyscalls = nsyscalls0;
222unsigned nerrnos = nerrnos0;
223unsigned nsignals = nsignals0;
224unsigned nioctlents = nioctlents0;
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100225
226unsigned num_quals;
227qualbits_t *qual_vec[SUPPORTED_PERSONALITIES];
228
229static const unsigned nsyscall_vec[SUPPORTED_PERSONALITIES] = {
230 nsyscalls0,
231#if SUPPORTED_PERSONALITIES > 1
232 nsyscalls1,
233#endif
234#if SUPPORTED_PERSONALITIES > 2
235 nsyscalls2,
236#endif
237};
238static const struct_sysent *const sysent_vec[SUPPORTED_PERSONALITIES] = {
239 sysent0,
240#if SUPPORTED_PERSONALITIES > 1
241 sysent1,
242#endif
243#if SUPPORTED_PERSONALITIES > 2
244 sysent2,
245#endif
246};
247
248enum {
249 MAX_NSYSCALLS1 = (nsyscalls0
250#if SUPPORTED_PERSONALITIES > 1
251 > nsyscalls1 ? nsyscalls0 : nsyscalls1
252#endif
253 ),
254 MAX_NSYSCALLS2 = (MAX_NSYSCALLS1
255#if SUPPORTED_PERSONALITIES > 2
256 > nsyscalls2 ? MAX_NSYSCALLS1 : nsyscalls2
257#endif
258 ),
259 MAX_NSYSCALLS = MAX_NSYSCALLS2,
260 /* We are ready for arches with up to 255 signals,
261 * even though the largest known signo is on MIPS and it is 128.
262 * The number of existing syscalls on all arches is
263 * larger that 255 anyway, so it is just a pedantic matter.
264 */
265 MIN_QUALS = MAX_NSYSCALLS > 255 ? MAX_NSYSCALLS : 255
266};
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000267
Denys Vlasenko9fd4f962012-03-19 09:36:42 +0100268#if SUPPORTED_PERSONALITIES > 1
Denys Vlasenkoae8643e2013-02-15 14:55:14 +0100269unsigned current_personality;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000270
Denys Vlasenkoae8643e2013-02-15 14:55:14 +0100271# ifndef current_wordsize
272unsigned current_wordsize;
273static const int personality_wordsize[SUPPORTED_PERSONALITIES] = {
Roland McGrath4b2dcca2006-01-12 10:18:53 +0000274 PERSONALITY0_WORDSIZE,
Roland McGrath4b2dcca2006-01-12 10:18:53 +0000275 PERSONALITY1_WORDSIZE,
Denys Vlasenko9fd4f962012-03-19 09:36:42 +0100276# if SUPPORTED_PERSONALITIES > 2
Roland McGrath4b2dcca2006-01-12 10:18:53 +0000277 PERSONALITY2_WORDSIZE,
Denys Vlasenko9fd4f962012-03-19 09:36:42 +0100278# endif
Denys Vlasenko5c774b22011-08-20 01:50:09 +0200279};
Denys Vlasenkoae8643e2013-02-15 14:55:14 +0100280# endif
Roland McGrath4b2dcca2006-01-12 10:18:53 +0000281
Denys Vlasenko5c774b22011-08-20 01:50:09 +0200282void
Dmitry V. Levin3abe8b22006-12-20 22:37:21 +0000283set_personality(int personality)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000284{
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100285 nsyscalls = nsyscall_vec[personality];
286 sysent = sysent_vec[personality];
287
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000288 switch (personality) {
289 case 0:
290 errnoent = errnoent0;
291 nerrnos = nerrnos0;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000292 ioctlent = ioctlent0;
293 nioctlents = nioctlents0;
294 signalent = signalent0;
295 nsignals = nsignals0;
296 break;
297
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000298 case 1:
299 errnoent = errnoent1;
300 nerrnos = nerrnos1;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000301 ioctlent = ioctlent1;
302 nioctlents = nioctlents1;
303 signalent = signalent1;
304 nsignals = nsignals1;
305 break;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000306
Denys Vlasenkoa9fe13c2013-02-22 13:26:10 +0100307# if SUPPORTED_PERSONALITIES > 2
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000308 case 2:
309 errnoent = errnoent2;
310 nerrnos = nerrnos2;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000311 ioctlent = ioctlent2;
312 nioctlents = nioctlents2;
313 signalent = signalent2;
314 nsignals = nsignals2;
315 break;
Denys Vlasenko9fd4f962012-03-19 09:36:42 +0100316# endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000317 }
318
319 current_personality = personality;
Denys Vlasenkoae8643e2013-02-15 14:55:14 +0100320# ifndef current_wordsize
321 current_wordsize = personality_wordsize[personality];
322# endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000323}
324
Dmitry V. Levina5a839a2011-12-23 00:50:49 +0000325static void
326update_personality(struct tcb *tcp, int personality)
327{
328 if (personality == current_personality)
329 return;
330 set_personality(personality);
331
332 if (personality == tcp->currpers)
333 return;
334 tcp->currpers = personality;
335
H.J. Lu35be5812012-04-16 13:00:01 +0200336# if defined(POWERPC64)
Dmitry V. Levina5a839a2011-12-23 00:50:49 +0000337 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 }
H.J. Lu35be5812012-04-16 13:00:01 +0200342# elif defined(X86_64)
343 if (!qflag) {
344 static const char *const names[] = {"64 bit", "32 bit", "x32"};
345 fprintf(stderr, "[ Process PID=%d runs in %s mode. ]\n",
346 tcp->pid, names[personality]);
347 }
H.J. Lu085e4282012-04-17 11:05:04 -0700348# elif defined(X32)
349 if (!qflag) {
350 static const char *const names[] = {"x32", "32 bit"};
351 fprintf(stderr, "[ Process PID=%d runs in %s mode. ]\n",
352 tcp->pid, names[personality]);
353 }
Steve McIntyre890a5ca2012-11-10 11:24:48 +0000354# elif defined(AARCH64)
355 if (!qflag) {
Denys Vlasenko28ac68f2013-02-08 12:38:51 +0100356 static const char *const names[] = {"32-bit", "AArch64"};
Steve McIntyre890a5ca2012-11-10 11:24:48 +0000357 fprintf(stderr, "[ Process PID=%d runs in %s mode. ]\n",
358 tcp->pid, names[personality]);
359 }
Chris Metcalf0b99a8a2013-02-05 17:48:33 +0100360# elif defined(TILE)
361 if (!qflag) {
362 static const char *const names[] = {"64-bit", "32-bit"};
363 fprintf(stderr, "[ Process PID=%d runs in %s mode. ]\n",
364 tcp->pid, names[personality]);
365 }
Denys Vlasenko523635f2012-02-25 02:44:25 +0100366# endif
Dmitry V. Levina5a839a2011-12-23 00:50:49 +0000367}
368#endif
Roland McGrathe10e62a2004-09-04 04:20:43 +0000369
Denys Vlasenkoc1540fe2013-02-21 16:17:08 +0100370static int qual_syscall(), qual_signal(), qual_desc();
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000371
Roland McGrathe10e62a2004-09-04 04:20:43 +0000372static const struct qual_options {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000373 int bitflag;
Dmitry V. Levin30145dd2010-09-06 22:08:24 +0000374 const char *option_name;
Dmitry V. Levin35d05722010-09-15 16:18:20 +0000375 int (*qualify)(const char *, int, int);
Dmitry V. Levin30145dd2010-09-06 22:08:24 +0000376 const char *argument_name;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000377} qual_options[] = {
Roland McGrath9797ceb2002-12-30 10:23:00 +0000378 { QUAL_TRACE, "trace", qual_syscall, "system call" },
379 { QUAL_TRACE, "t", qual_syscall, "system call" },
380 { QUAL_ABBREV, "abbrev", qual_syscall, "system call" },
381 { QUAL_ABBREV, "a", qual_syscall, "system call" },
382 { QUAL_VERBOSE, "verbose", qual_syscall, "system call" },
383 { QUAL_VERBOSE, "v", qual_syscall, "system call" },
384 { QUAL_RAW, "raw", qual_syscall, "system call" },
385 { QUAL_RAW, "x", qual_syscall, "system call" },
386 { QUAL_SIGNAL, "signal", qual_signal, "signal" },
387 { QUAL_SIGNAL, "signals", qual_signal, "signal" },
388 { QUAL_SIGNAL, "s", qual_signal, "signal" },
Roland McGrath9797ceb2002-12-30 10:23:00 +0000389 { QUAL_READ, "read", qual_desc, "descriptor" },
390 { QUAL_READ, "reads", qual_desc, "descriptor" },
391 { QUAL_READ, "r", qual_desc, "descriptor" },
392 { QUAL_WRITE, "write", qual_desc, "descriptor" },
393 { QUAL_WRITE, "writes", qual_desc, "descriptor" },
394 { QUAL_WRITE, "w", qual_desc, "descriptor" },
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000395 { 0, NULL, NULL, NULL },
396};
397
Roland McGrath9797ceb2002-12-30 10:23:00 +0000398static void
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100399reallocate_qual(int n)
400{
401 unsigned p;
402 qualbits_t *qp;
403 for (p = 0; p < SUPPORTED_PERSONALITIES; p++) {
404 qp = qual_vec[p] = realloc(qual_vec[p], n * sizeof(qualbits_t));
405 if (!qp)
406 die_out_of_memory();
407 memset(&qp[num_quals], 0, (n - num_quals) * sizeof(qualbits_t));
408 }
409 num_quals = n;
410}
411
412static void
Dmitry V. Levin35d05722010-09-15 16:18:20 +0000413qualify_one(int n, int bitflag, int not, int pers)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000414{
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100415 unsigned p;
Roland McGrath138c6a32006-01-12 09:50:49 +0000416
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100417 if (num_quals <= n)
418 reallocate_qual(n + 1);
Roland McGrath138c6a32006-01-12 09:50:49 +0000419
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100420 for (p = 0; p < SUPPORTED_PERSONALITIES; p++) {
421 if (pers == p || pers < 0) {
422 if (not)
423 qual_vec[p][n] &= ~bitflag;
424 else
425 qual_vec[p][n] |= bitflag;
426 }
Roland McGrath138c6a32006-01-12 09:50:49 +0000427 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000428}
429
430static int
Dmitry V. Levin35d05722010-09-15 16:18:20 +0000431qual_syscall(const char *s, int bitflag, int not)
Roland McGrath9797ceb2002-12-30 10:23:00 +0000432{
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100433 unsigned p;
434 unsigned i;
Roland McGrathfe6b3522005-02-02 04:40:11 +0000435 int rc = -1;
Roland McGrath9797ceb2002-12-30 10:23:00 +0000436
Denys Vlasenkoe4cc7c52012-03-23 11:29:01 +0100437 if (*s >= '0' && *s <= '9') {
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100438 i = string_to_uint(s);
Denys Vlasenkob43dacd2013-02-23 18:19:28 +0100439 if (i >= MAX_NSYSCALLS)
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +0000440 return -1;
Dmitry V. Levin35d05722010-09-15 16:18:20 +0000441 qualify_one(i, bitflag, not, -1);
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +0000442 return 0;
Roland McGrath48a035f2006-01-12 09:45:56 +0000443 }
Roland McGrath138c6a32006-01-12 09:50:49 +0000444
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100445 for (p = 0; p < SUPPORTED_PERSONALITIES; p++) {
446 for (i = 0; i < nsyscall_vec[p]; i++) {
447 if (sysent_vec[p][i].sys_name
448 && strcmp(s, sysent_vec[p][i].sys_name) == 0
449 ) {
Dmitry V. Levin7b9e45e2013-03-01 15:50:22 +0000450 qualify_one(i, bitflag, not, p);
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100451 rc = 0;
452 }
Roland McGrath138c6a32006-01-12 09:50:49 +0000453 }
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100454 }
Dmitry V. Levinc18c7032007-08-22 21:43:30 +0000455
Roland McGrathfe6b3522005-02-02 04:40:11 +0000456 return rc;
Roland McGrath9797ceb2002-12-30 10:23:00 +0000457}
458
459static int
Dmitry V. Levin35d05722010-09-15 16:18:20 +0000460qual_signal(const char *s, int bitflag, int not)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000461{
462 int i;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000463
Denys Vlasenkoe4cc7c52012-03-23 11:29:01 +0100464 if (*s >= '0' && *s <= '9') {
Dmitry V. Levinccee1692012-03-25 21:49:48 +0000465 int signo = string_to_uint(s);
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100466 if (signo < 0 || signo > 255)
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +0000467 return -1;
Dmitry V. Levin35d05722010-09-15 16:18:20 +0000468 qualify_one(signo, bitflag, not, -1);
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +0000469 return 0;
Roland McGrath9797ceb2002-12-30 10:23:00 +0000470 }
Dmitry V. Levin30145dd2010-09-06 22:08:24 +0000471 if (strncasecmp(s, "SIG", 3) == 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000472 s += 3;
Denys Vlasenkoe4cc7c52012-03-23 11:29:01 +0100473 for (i = 0; i <= NSIG; i++) {
Dmitry V. Levin30145dd2010-09-06 22:08:24 +0000474 if (strcasecmp(s, signame(i) + 3) == 0) {
Dmitry V. Levin35d05722010-09-15 16:18:20 +0000475 qualify_one(i, bitflag, not, -1);
Roland McGrath76421df2005-02-02 03:51:18 +0000476 return 0;
Roland McGrath9797ceb2002-12-30 10:23:00 +0000477 }
Denys Vlasenkoe4cc7c52012-03-23 11:29:01 +0100478 }
Roland McGrath76421df2005-02-02 03:51:18 +0000479 return -1;
Roland McGrath9797ceb2002-12-30 10:23:00 +0000480}
481
482static int
Dmitry V. Levin35d05722010-09-15 16:18:20 +0000483qual_desc(const char *s, int bitflag, int not)
Roland McGrath9797ceb2002-12-30 10:23:00 +0000484{
Denys Vlasenkoe4cc7c52012-03-23 11:29:01 +0100485 if (*s >= '0' && *s <= '9') {
Dmitry V. Levinccee1692012-03-25 21:49:48 +0000486 int desc = string_to_uint(s);
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100487 if (desc < 0 || desc > 0x7fff) /* paranoia */
Roland McGrathfe6b3522005-02-02 04:40:11 +0000488 return -1;
Dmitry V. Levin35d05722010-09-15 16:18:20 +0000489 qualify_one(desc, bitflag, not, -1);
Roland McGrath2b619022003-04-10 18:58:20 +0000490 return 0;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000491 }
492 return -1;
493}
494
495static int
Dmitry V. Levin30145dd2010-09-06 22:08:24 +0000496lookup_class(const char *s)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000497{
498 if (strcmp(s, "file") == 0)
499 return TRACE_FILE;
500 if (strcmp(s, "ipc") == 0)
501 return TRACE_IPC;
502 if (strcmp(s, "network") == 0)
503 return TRACE_NETWORK;
504 if (strcmp(s, "process") == 0)
505 return TRACE_PROCESS;
506 if (strcmp(s, "signal") == 0)
507 return TRACE_SIGNAL;
Roland McGrath2fe7b132005-07-05 03:25:35 +0000508 if (strcmp(s, "desc") == 0)
509 return TRACE_DESC;
Namhyung Kim96792962012-10-24 11:41:57 +0900510 if (strcmp(s, "memory") == 0)
511 return TRACE_MEMORY;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000512 return -1;
513}
514
515void
Dmitry V. Levin30145dd2010-09-06 22:08:24 +0000516qualify(const char *s)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000517{
Roland McGrathe10e62a2004-09-04 04:20:43 +0000518 const struct qual_options *opt;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000519 int not;
Dmitry V. Levin30145dd2010-09-06 22:08:24 +0000520 char *copy;
521 const char *p;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000522 int i, n;
523
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100524 if (num_quals == 0)
525 reallocate_qual(MIN_QUALS);
526
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000527 opt = &qual_options[0];
528 for (i = 0; (p = qual_options[i].option_name); i++) {
529 n = strlen(p);
530 if (strncmp(s, p, n) == 0 && s[n] == '=') {
531 opt = &qual_options[i];
532 s += n + 1;
533 break;
534 }
535 }
536 not = 0;
537 if (*s == '!') {
538 not = 1;
539 s++;
540 }
541 if (strcmp(s, "none") == 0) {
542 not = 1 - not;
543 s = "all";
544 }
545 if (strcmp(s, "all") == 0) {
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100546 for (i = 0; i < num_quals; i++) {
Dmitry V. Levin35d05722010-09-15 16:18:20 +0000547 qualify_one(i, opt->bitflag, not, -1);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000548 }
549 return;
550 }
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100551 for (i = 0; i < num_quals; i++) {
Dmitry V. Levin35d05722010-09-15 16:18:20 +0000552 qualify_one(i, opt->bitflag, !not, -1);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000553 }
Denys Vlasenko5d645812011-08-20 12:48:18 +0200554 copy = strdup(s);
Denys Vlasenko1d46ba52011-08-31 14:00:02 +0200555 if (!copy)
556 die_out_of_memory();
Dmitry V. Levin30145dd2010-09-06 22:08:24 +0000557 for (p = strtok(copy, ","); p; p = strtok(NULL, ",")) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000558 if (opt->bitflag == QUAL_TRACE && (n = lookup_class(p)) > 0) {
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100559 unsigned pers;
560 for (pers = 0; pers < SUPPORTED_PERSONALITIES; pers++) {
561 for (i = 0; i < nsyscall_vec[pers]; i++)
562 if (sysent_vec[pers][i].sys_flags & n)
Dmitry V. Levin7b9e45e2013-03-01 15:50:22 +0000563 qualify_one(i, opt->bitflag, not, pers);
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100564 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000565 continue;
566 }
Dmitry V. Levin35d05722010-09-15 16:18:20 +0000567 if (opt->qualify(p, opt->bitflag, not)) {
Denys Vlasenko4c65c442012-03-08 11:54:10 +0100568 error_msg_and_die("invalid %s '%s'",
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000569 opt->argument_name, p);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000570 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000571 }
Dmitry V. Levin30145dd2010-09-06 22:08:24 +0000572 free(copy);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000573 return;
574}
575
Dmitry V. Levin648c22c2012-03-15 22:08:55 +0000576#ifdef SYS_socket_subcall
Roland McGratha4d48532005-06-08 20:45:28 +0000577static void
Dmitry V. Levin648c22c2012-03-15 22:08:55 +0000578decode_socket_subcall(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000579{
Dmitry V. Levin648c22c2012-03-15 22:08:55 +0000580 unsigned long addr;
Denys Vlasenko74ec14f2013-02-21 16:13:47 +0100581 unsigned int i, n, size;
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000582
Dmitry V. Levin648c22c2012-03-15 22:08:55 +0000583 if (tcp->u_arg[0] < 0 || tcp->u_arg[0] >= SYS_socket_nsubcalls)
584 return;
585
586 tcp->scno = SYS_socket_subcall + tcp->u_arg[0];
Denys Vlasenko74ec14f2013-02-21 16:13:47 +0100587 tcp->qual_flg = qual_flags[tcp->scno];
588 tcp->s_ent = &sysent[tcp->scno];
Dmitry V. Levin648c22c2012-03-15 22:08:55 +0000589 addr = tcp->u_arg[1];
Denys Vlasenko9fd4f962012-03-19 09:36:42 +0100590 size = current_wordsize;
Denys Vlasenko74ec14f2013-02-21 16:13:47 +0100591 n = tcp->s_ent->nargs;
592 for (i = 0; i < n; ++i) {
Dmitry V. Levin648c22c2012-03-15 22:08:55 +0000593 if (size == sizeof(int)) {
594 unsigned int arg;
595 if (umove(tcp, addr, &arg) < 0)
596 arg = 0;
597 tcp->u_arg[i] = arg;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000598 }
Dmitry V. Levin648c22c2012-03-15 22:08:55 +0000599 else {
600 unsigned long arg;
601 if (umove(tcp, addr, &arg) < 0)
602 arg = 0;
603 tcp->u_arg[i] = arg;
604 }
605 addr += size;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000606 }
607}
Dmitry V. Levin648c22c2012-03-15 22:08:55 +0000608#endif
Mike Frysinger3362e892012-03-15 01:09:19 -0400609
Dmitry V. Levin648c22c2012-03-15 22:08:55 +0000610#ifdef SYS_ipc_subcall
611static void
612decode_ipc_subcall(struct tcb *tcp)
613{
Denys Vlasenko74ec14f2013-02-21 16:13:47 +0100614 unsigned int i, n;
Dmitry V. Levin648c22c2012-03-15 22:08:55 +0000615
616 if (tcp->u_arg[0] < 0 || tcp->u_arg[0] >= SYS_ipc_nsubcalls)
617 return;
618
619 tcp->scno = SYS_ipc_subcall + tcp->u_arg[0];
Denys Vlasenko74ec14f2013-02-21 16:13:47 +0100620 tcp->qual_flg = qual_flags[tcp->scno];
621 tcp->s_ent = &sysent[tcp->scno];
622 n = tcp->s_ent->nargs;
623 for (i = 0; i < n; i++)
Dmitry V. Levin648c22c2012-03-15 22:08:55 +0000624 tcp->u_arg[i] = tcp->u_arg[i + 1];
625}
626#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000627
Denys Vlasenkoa6146922011-08-24 18:07:22 +0200628int
629printargs(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000630{
Denys Vlasenkoa6146922011-08-24 18:07:22 +0200631 if (entering(tcp)) {
632 int i;
Denys Vlasenko74ec14f2013-02-21 16:13:47 +0100633 int n = tcp->s_ent->nargs;
634 for (i = 0; i < n; i++)
Denys Vlasenkoa6146922011-08-24 18:07:22 +0200635 tprintf("%s%#lx", i ? ", " : "", tcp->u_arg[i]);
636 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000637 return 0;
638}
639
Denys Vlasenko72879c62012-02-27 14:18:02 +0100640int
641printargs_lu(struct tcb *tcp)
642{
643 if (entering(tcp)) {
644 int i;
Denys Vlasenko74ec14f2013-02-21 16:13:47 +0100645 int n = tcp->s_ent->nargs;
646 for (i = 0; i < n; i++)
Denys Vlasenko72879c62012-02-27 14:18:02 +0100647 tprintf("%s%lu", i ? ", " : "", tcp->u_arg[i]);
648 }
649 return 0;
650}
651
652int
653printargs_ld(struct tcb *tcp)
654{
655 if (entering(tcp)) {
656 int i;
Denys Vlasenko74ec14f2013-02-21 16:13:47 +0100657 int n = tcp->s_ent->nargs;
658 for (i = 0; i < n; i++)
Denys Vlasenko72879c62012-02-27 14:18:02 +0100659 tprintf("%s%ld", i ? ", " : "", tcp->u_arg[i]);
660 }
661 return 0;
662}
663
Denys Vlasenko1ebe08d2013-02-05 16:55:23 +0100664#if defined(SPARC) || defined(SPARC64) || defined(IA64) || defined(SH)
Denys Vlasenkoa6146922011-08-24 18:07:22 +0200665long
666getrval2(struct tcb *tcp)
667{
Denys Vlasenko1ebe08d2013-02-05 16:55:23 +0100668 long val;
Denys Vlasenkoa6146922011-08-24 18:07:22 +0200669
Denys Vlasenko1ebe08d2013-02-05 16:55:23 +0100670# if defined(SPARC) || defined(SPARC64)
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +0100671 val = sparc_regs.u_regs[U_REG_O1];
Denys Vlasenko1ebe08d2013-02-05 16:55:23 +0100672# elif defined(SH)
Denys Vlasenko752e5a02013-06-28 14:35:47 +0200673 if (upeek(tcp->pid, 4*(REG_REG0+1), &val) < 0)
Denys Vlasenkoa6146922011-08-24 18:07:22 +0200674 return -1;
Denys Vlasenko1ebe08d2013-02-05 16:55:23 +0100675# elif defined(IA64)
Denys Vlasenko752e5a02013-06-28 14:35:47 +0200676 if (upeek(tcp->pid, PT_R9, &val) < 0)
Denys Vlasenkoa6146922011-08-24 18:07:22 +0200677 return -1;
Denys Vlasenko1ebe08d2013-02-05 16:55:23 +0100678# endif
Denys Vlasenkoa6146922011-08-24 18:07:22 +0200679
Denys Vlasenkoa6146922011-08-24 18:07:22 +0200680 return val;
681}
Denys Vlasenko1ebe08d2013-02-05 16:55:23 +0100682#endif
Denys Vlasenkoa6146922011-08-24 18:07:22 +0200683
Denys Vlasenko523635f2012-02-25 02:44:25 +0100684#if defined(I386)
Denys Vlasenkob51f3642013-07-16 12:06:25 +0200685static struct user_regs_struct i386_regs;
Denys Vlasenkoe600ac62013-07-18 17:40:45 +0200686/* Cast suppresses signedness warning (.esp is long, not unsigned long) */
687uint32_t *const i386_esp_ptr = (uint32_t*)&i386_regs.esp;
Dmitry V. Levinb787b102013-03-18 10:17:14 +0000688# define ARCH_REGS_FOR_GETREGSET i386_regs
H.J. Lu35be5812012-04-16 13:00:01 +0200689#elif defined(X86_64) || defined(X32)
Denys Vlasenkoe73a89d2012-01-18 11:07:24 +0100690/*
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +0100691 * On i386, pt_regs and user_regs_struct are the same,
692 * but on 64 bit x86, user_regs_struct has six more fields:
Denys Vlasenkoe73a89d2012-01-18 11:07:24 +0100693 * fs_base, gs_base, ds, es, fs, gs.
694 * PTRACE_GETREGS fills them too, so struct pt_regs would overflow.
695 */
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +0100696struct i386_user_regs_struct {
697 uint32_t ebx;
698 uint32_t ecx;
699 uint32_t edx;
700 uint32_t esi;
701 uint32_t edi;
702 uint32_t ebp;
703 uint32_t eax;
704 uint32_t xds;
705 uint32_t xes;
706 uint32_t xfs;
707 uint32_t xgs;
708 uint32_t orig_eax;
709 uint32_t eip;
710 uint32_t xcs;
711 uint32_t eflags;
712 uint32_t esp;
713 uint32_t xss;
714};
715static union {
716 struct user_regs_struct x86_64_r;
717 struct i386_user_regs_struct i386_r;
718} x86_regs_union;
719# define x86_64_regs x86_regs_union.x86_64_r
720# define i386_regs x86_regs_union.i386_r
Denys Vlasenkob51f3642013-07-16 12:06:25 +0200721uint32_t *const i386_esp_ptr = &i386_regs.esp;
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +0100722static struct iovec x86_io = {
723 .iov_base = &x86_regs_union
724};
Denys Vlasenko523635f2012-02-25 02:44:25 +0100725#elif defined(IA64)
Denys Vlasenkoc09646a2013-07-01 12:28:17 +0200726bool ia64_ia32mode = 0; /* not static */
Denys Vlasenko89804ec2013-02-07 13:14:48 +0100727static long ia64_r8, ia64_r10;
Denys Vlasenko523635f2012-02-25 02:44:25 +0100728#elif defined(POWERPC)
Anton Blanchardce6e33b2013-06-26 15:53:33 +0200729struct pt_regs ppc_regs;
Denys Vlasenko523635f2012-02-25 02:44:25 +0100730#elif defined(M68K)
Denys Vlasenko89804ec2013-02-07 13:14:48 +0100731static long m68k_d0;
Denys Vlasenko523635f2012-02-25 02:44:25 +0100732#elif defined(BFIN)
Denys Vlasenkod22213a2013-02-13 17:52:31 +0100733static long bfin_r0;
Denys Vlasenko523635f2012-02-25 02:44:25 +0100734#elif defined(ARM)
Denys Vlasenko401374e2013-02-06 18:24:39 +0100735struct pt_regs arm_regs; /* not static */
Dmitry V. Levinb787b102013-03-18 10:17:14 +0000736# define ARCH_REGS_FOR_GETREGSET arm_regs
Steve McIntyred8d3bd32012-10-24 17:58:16 +0100737#elif defined(AARCH64)
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};
Denys Vlasenko523635f2012-02-25 02:44:25 +0100747#elif defined(ALPHA)
Denys Vlasenkod22213a2013-02-13 17:52:31 +0100748static long alpha_r0;
Denys Vlasenko89804ec2013-02-07 13:14:48 +0100749static long alpha_a3;
Denys Vlasenko523635f2012-02-25 02:44:25 +0100750#elif defined(AVR32)
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +0100751static struct pt_regs avr32_regs;
Denys Vlasenko523635f2012-02-25 02:44:25 +0100752#elif defined(SPARC) || defined(SPARC64)
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +0100753struct pt_regs sparc_regs; /* not static */
Denys Vlasenko523635f2012-02-25 02:44:25 +0100754#elif defined(LINUX_MIPSN32)
Denys Vlasenkod22213a2013-02-13 17:52:31 +0100755static long long mips_a3;
756static long long mips_r2;
Denys Vlasenko523635f2012-02-25 02:44:25 +0100757#elif defined(MIPS)
Denys Vlasenkod22213a2013-02-13 17:52:31 +0100758static long mips_a3;
759static long mips_r2;
Denys Vlasenko523635f2012-02-25 02:44:25 +0100760#elif defined(S390) || defined(S390X)
Denys Vlasenkof5730e92013-07-07 12:47:39 +0200761static long s390_gpr2;
Denys Vlasenko523635f2012-02-25 02:44:25 +0100762#elif defined(HPPA)
Denys Vlasenko89804ec2013-02-07 13:14:48 +0100763static long hppa_r28;
Denys Vlasenko523635f2012-02-25 02:44:25 +0100764#elif defined(SH)
Denys Vlasenkod22213a2013-02-13 17:52:31 +0100765static long sh_r0;
Denys Vlasenko523635f2012-02-25 02:44:25 +0100766#elif defined(SH64)
Denys Vlasenko89804ec2013-02-07 13:14:48 +0100767static long sh64_r9;
Denys Vlasenko523635f2012-02-25 02:44:25 +0100768#elif defined(CRISV10) || defined(CRISV32)
Denys Vlasenko89804ec2013-02-07 13:14:48 +0100769static long cris_r10;
Chris Metcalf0b99a8a2013-02-05 17:48:33 +0100770#elif defined(TILE)
771struct pt_regs tile_regs;
Denys Vlasenko523635f2012-02-25 02:44:25 +0100772#elif defined(MICROBLAZE)
Denys Vlasenko89804ec2013-02-07 13:14:48 +0100773static long microblaze_r3;
Christian Svensson492f81f2013-02-14 13:26:27 +0100774#elif defined(OR1K)
775static struct user_regs_struct or1k_regs;
Dmitry V. Levinb787b102013-03-18 10:17:14 +0000776# define ARCH_REGS_FOR_GETREGSET or1k_regs
James Hogan5f999a82013-02-22 14:44:10 +0000777#elif defined(METAG)
778static struct user_gp_regs metag_regs;
Dmitry V. Levinb787b102013-03-18 10:17:14 +0000779# define ARCH_REGS_FOR_GETREGSET metag_regs
Chris Zankel8f636ed2013-03-25 10:22:07 -0700780#elif defined(XTENSA)
781static long xtensa_a2;
Vineet Gupta7daacbb2013-08-16 12:47:06 +0530782# elif defined(ARC)
783static struct user_regs_struct arc_regs;
784# define ARCH_REGS_FOR_GETREGSET arc_regs
Denys Vlasenko523635f2012-02-25 02:44:25 +0100785#endif
Wichert Akkermanc7926982000-04-10 22:22:31 +0000786
Denys Vlasenkoce7d9532013-02-05 16:36:13 +0100787void
Denys Vlasenko5a2483b2013-07-01 12:49:14 +0200788print_pc(struct tcb *tcp)
Denys Vlasenkoce7d9532013-02-05 16:36:13 +0100789{
790#define PRINTBADPC tprintf(sizeof(long) == 4 ? "[????????] " : \
791 sizeof(long) == 8 ? "[????????????????] " : \
792 NULL /* crash */)
793 if (get_regs_error) {
794 PRINTBADPC;
795 return;
796 }
797#if defined(I386)
798 tprintf("[%08lx] ", i386_regs.eip);
799#elif defined(S390) || defined(S390X)
800 long psw;
Denys Vlasenko752e5a02013-06-28 14:35:47 +0200801 if (upeek(tcp->pid, PT_PSWADDR, &psw) < 0) {
Denys Vlasenkoce7d9532013-02-05 16:36:13 +0100802 PRINTBADPC;
803 return;
804 }
805# ifdef S390
806 tprintf("[%08lx] ", psw);
807# elif S390X
Dmitry V. Levinddba73e2013-02-05 19:01:58 +0000808 tprintf("[%016lx] ", psw);
Denys Vlasenkoce7d9532013-02-05 16:36:13 +0100809# endif
810#elif defined(X86_64) || defined(X32)
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +0100811 if (x86_io.iov_len == sizeof(i386_regs)) {
812 tprintf("[%08x] ", (unsigned) i386_regs.eip);
813 } else {
814# if defined(X86_64)
815 tprintf("[%016lx] ", (unsigned long) x86_64_regs.rip);
816# elif defined(X32)
817 /* Note: this truncates 64-bit rip to 32 bits */
818 tprintf("[%08lx] ", (unsigned long) x86_64_regs.rip);
819# endif
820 }
Denys Vlasenkoce7d9532013-02-05 16:36:13 +0100821#elif defined(IA64)
822 long ip;
Denys Vlasenko752e5a02013-06-28 14:35:47 +0200823 if (upeek(tcp->pid, PT_B0, &ip) < 0) {
Denys Vlasenkoce7d9532013-02-05 16:36:13 +0100824 PRINTBADPC;
825 return;
826 }
827 tprintf("[%08lx] ", ip);
828#elif defined(POWERPC)
Anton Blanchardce6e33b2013-06-26 15:53:33 +0200829 long pc = ppc_regs.nip;
Denys Vlasenkoce7d9532013-02-05 16:36:13 +0100830# ifdef POWERPC64
831 tprintf("[%016lx] ", pc);
832# else
833 tprintf("[%08lx] ", pc);
834# endif
835#elif defined(M68K)
836 long pc;
Denys Vlasenko752e5a02013-06-28 14:35:47 +0200837 if (upeek(tcp->pid, 4*PT_PC, &pc) < 0) {
Denys Vlasenkoce7d9532013-02-05 16:36:13 +0100838 tprints("[????????] ");
839 return;
840 }
841 tprintf("[%08lx] ", pc);
842#elif defined(ALPHA)
843 long pc;
Denys Vlasenko752e5a02013-06-28 14:35:47 +0200844 if (upeek(tcp->pid, REG_PC, &pc) < 0) {
Denys Vlasenkoce7d9532013-02-05 16:36:13 +0100845 tprints("[????????????????] ");
846 return;
847 }
848 tprintf("[%08lx] ", pc);
849#elif defined(SPARC)
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +0100850 tprintf("[%08lx] ", sparc_regs.pc);
Denys Vlasenkoce7d9532013-02-05 16:36:13 +0100851#elif defined(SPARC64)
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +0100852 tprintf("[%08lx] ", sparc_regs.tpc);
Denys Vlasenkoce7d9532013-02-05 16:36:13 +0100853#elif defined(HPPA)
854 long pc;
Denys Vlasenko752e5a02013-06-28 14:35:47 +0200855 if (upeek(tcp->pid, PT_IAOQ0, &pc) < 0) {
Denys Vlasenkoce7d9532013-02-05 16:36:13 +0100856 tprints("[????????] ");
857 return;
858 }
859 tprintf("[%08lx] ", pc);
860#elif defined(MIPS)
861 long pc;
Denys Vlasenko752e5a02013-06-28 14:35:47 +0200862 if (upeek(tcp->pid, REG_EPC, &pc) < 0) {
Denys Vlasenkoce7d9532013-02-05 16:36:13 +0100863 tprints("[????????] ");
864 return;
865 }
866 tprintf("[%08lx] ", pc);
867#elif defined(SH)
868 long pc;
Denys Vlasenko752e5a02013-06-28 14:35:47 +0200869 if (upeek(tcp->pid, 4*REG_PC, &pc) < 0) {
Denys Vlasenkoce7d9532013-02-05 16:36:13 +0100870 tprints("[????????] ");
871 return;
872 }
873 tprintf("[%08lx] ", pc);
874#elif defined(SH64)
875 long pc;
Denys Vlasenko752e5a02013-06-28 14:35:47 +0200876 if (upeek(tcp->pid, REG_PC, &pc) < 0) {
Denys Vlasenkoce7d9532013-02-05 16:36:13 +0100877 tprints("[????????????????] ");
878 return;
879 }
880 tprintf("[%08lx] ", pc);
881#elif defined(ARM)
Denys Vlasenko401374e2013-02-06 18:24:39 +0100882 tprintf("[%08lx] ", arm_regs.ARM_pc);
Denys Vlasenko28ac68f2013-02-08 12:38:51 +0100883#elif defined(AARCH64)
884 /* tprintf("[%016lx] ", aarch64_regs.regs[???]); */
Denys Vlasenkoce7d9532013-02-05 16:36:13 +0100885#elif defined(AVR32)
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +0100886 tprintf("[%08lx] ", avr32_regs.pc);
Denys Vlasenkoce7d9532013-02-05 16:36:13 +0100887#elif defined(BFIN)
888 long pc;
Denys Vlasenko752e5a02013-06-28 14:35:47 +0200889 if (upeek(tcp->pid, PT_PC, &pc) < 0) {
Denys Vlasenkoce7d9532013-02-05 16:36:13 +0100890 PRINTBADPC;
891 return;
892 }
893 tprintf("[%08lx] ", pc);
894#elif defined(CRISV10)
895 long pc;
Denys Vlasenko752e5a02013-06-28 14:35:47 +0200896 if (upeek(tcp->pid, 4*PT_IRP, &pc) < 0) {
Denys Vlasenkoce7d9532013-02-05 16:36:13 +0100897 PRINTBADPC;
898 return;
899 }
900 tprintf("[%08lx] ", pc);
901#elif defined(CRISV32)
902 long pc;
Denys Vlasenko752e5a02013-06-28 14:35:47 +0200903 if (upeek(tcp->pid, 4*PT_ERP, &pc) < 0) {
Denys Vlasenkoce7d9532013-02-05 16:36:13 +0100904 PRINTBADPC;
905 return;
906 }
907 tprintf("[%08lx] ", pc);
Chris Metcalf0b99a8a2013-02-05 17:48:33 +0100908#elif defined(TILE)
909# ifdef _LP64
Chris Metcalfaf8dc6b2013-02-05 13:02:42 -0500910 tprintf("[%016lx] ", (unsigned long) tile_regs.pc);
Chris Metcalf0b99a8a2013-02-05 17:48:33 +0100911# else
Chris Metcalfaf8dc6b2013-02-05 13:02:42 -0500912 tprintf("[%08lx] ", (unsigned long) tile_regs.pc);
Chris Metcalf0b99a8a2013-02-05 17:48:33 +0100913# endif
Christian Svensson492f81f2013-02-14 13:26:27 +0100914#elif defined(OR1K)
915 tprintf("[%08lx] ", or1k_regs.pc);
James Hogan5f999a82013-02-22 14:44:10 +0000916#elif defined(METAG)
917 tprintf("[%08lx] ", metag_regs.pc);
Chris Zankel8f636ed2013-03-25 10:22:07 -0700918#elif defined(XTENSA)
919 long pc;
Denys Vlasenko752e5a02013-06-28 14:35:47 +0200920 if (upeek(tcp->pid, REG_PC, &pc) < 0) {
Chris Zankel8f636ed2013-03-25 10:22:07 -0700921 PRINTBADPC;
922 return;
923 }
924 tprintf("[%08lx] ", pc);
Vineet Gupta7daacbb2013-08-16 12:47:06 +0530925#elif defined(ARC)
926 tprintf("[%08lx] ", arc_regs.efa);
Denys Vlasenkoce7d9532013-02-05 16:36:13 +0100927#endif /* architecture */
928}
929
Denys Vlasenko7270de52013-02-21 15:46:34 +0100930/* Shuffle syscall numbers so that we don't have huge gaps in syscall table.
931 * The shuffling should be reversible: shuffle_scno(shuffle_scno(n)) == n.
932 */
Elliott Hughes7a28f7f2014-03-03 23:45:26 +0000933#if defined(ARM) || defined(AARCH64) /* So far only 32-bit ARM needs this */
Denys Vlasenko7270de52013-02-21 15:46:34 +0100934static long
935shuffle_scno(unsigned long scno)
936{
937 if (scno <= ARM_LAST_ORDINARY_SYSCALL)
938 return scno;
939
940 /* __ARM_NR_cmpxchg? Swap with LAST_ORDINARY+1 */
941 if (scno == 0x000ffff0)
942 return ARM_LAST_ORDINARY_SYSCALL+1;
943 if (scno == ARM_LAST_ORDINARY_SYSCALL+1)
944 return 0x000ffff0;
945
946 /* Is it ARM specific syscall?
947 * Swap with [LAST_ORDINARY+2, LAST_ORDINARY+2 + LAST_SPECIAL] range.
948 */
949 if (scno >= 0x000f0000
950 && scno <= 0x000f0000 + ARM_LAST_SPECIAL_SYSCALL
951 ) {
952 return scno - 0x000f0000 + (ARM_LAST_ORDINARY_SYSCALL+2);
953 }
954 if (/* scno >= ARM_LAST_ORDINARY_SYSCALL+2 - always true */ 1
955 && scno <= (ARM_LAST_ORDINARY_SYSCALL+2) + ARM_LAST_SPECIAL_SYSCALL
956 ) {
957 return scno + 0x000f0000 - (ARM_LAST_ORDINARY_SYSCALL+2);
958 }
959
960 return scno;
961}
962#else
963# define shuffle_scno(scno) ((long)(scno))
964#endif
965
966static char*
967undefined_scno_name(struct tcb *tcp)
968{
969 static char buf[sizeof("syscall_%lu") + sizeof(long)*3];
970
971 sprintf(buf, "syscall_%lu", shuffle_scno(tcp->scno));
972 return buf;
973}
974
Anton Blanchard14d51a62013-06-26 14:42:37 +1000975#ifdef POWERPC
976/*
Denys Vlasenko7f5a1322013-06-28 14:36:39 +0200977 * PTRACE_GETREGS was added to the PowerPC kernel in v2.6.23,
978 * we provide a slow fallback for old kernels.
Anton Blanchard14d51a62013-06-26 14:42:37 +1000979 */
Denys Vlasenko7f5a1322013-06-28 14:36:39 +0200980static int powerpc_getregs_old(pid_t pid)
Anton Blanchard14d51a62013-06-26 14:42:37 +1000981{
982 int i;
983 long r;
984
Denys Vlasenko6b3016e2013-06-28 14:51:50 +0200985 if (iflag) {
Anton Blanchard9459dfb2013-07-12 12:24:02 +0200986 r = upeek(pid, sizeof(long) * PT_NIP, (long *)&ppc_regs.nip);
Denys Vlasenko6b3016e2013-06-28 14:51:50 +0200987 if (r)
988 goto out;
989 }
990#ifdef POWERPC64 /* else we never use it */
Anton Blanchard9459dfb2013-07-12 12:24:02 +0200991 r = upeek(pid, sizeof(long) * PT_MSR, (long *)&ppc_regs.msr);
Anton Blanchard14d51a62013-06-26 14:42:37 +1000992 if (r)
993 goto out;
Denys Vlasenko6b3016e2013-06-28 14:51:50 +0200994#endif
Anton Blanchard9459dfb2013-07-12 12:24:02 +0200995 r = upeek(pid, sizeof(long) * PT_CCR, (long *)&ppc_regs.ccr);
Anton Blanchard14d51a62013-06-26 14:42:37 +1000996 if (r)
997 goto out;
Anton Blanchard9459dfb2013-07-12 12:24:02 +0200998 r = upeek(pid, sizeof(long) * PT_ORIG_R3, (long *)&ppc_regs.orig_gpr3);
Anton Blanchard14d51a62013-06-26 14:42:37 +1000999 if (r)
1000 goto out;
Anton Blanchard14d51a62013-06-26 14:42:37 +10001001 for (i = 0; i <= 8; i++) {
Anton Blanchard9459dfb2013-07-12 12:24:02 +02001002 r = upeek(pid, sizeof(long) * (PT_R0 + i),
1003 (long *)&ppc_regs.gpr[i]);
Anton Blanchard14d51a62013-06-26 14:42:37 +10001004 if (r)
1005 goto out;
1006 }
Denys Vlasenko7f5a1322013-06-28 14:36:39 +02001007 out:
Anton Blanchard14d51a62013-06-26 14:42:37 +10001008 return r;
1009}
1010#endif
1011
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01001012#ifndef get_regs
1013long get_regs_error;
Dmitry V. Levinfaa177e2013-03-17 23:48:45 +00001014
1015#if defined(PTRACE_GETREGSET) && defined(NT_PRSTATUS)
Dmitry V. Levinfaa177e2013-03-17 23:48:45 +00001016static void get_regset(pid_t pid)
1017{
Dmitry V. Levinb787b102013-03-18 10:17:14 +00001018/* constant iovec */
1019# if defined(ARM) \
1020 || defined(I386) \
1021 || defined(METAG) \
Vineet Gupta7daacbb2013-08-16 12:47:06 +05301022 || defined(OR1K) \
1023 || defined(ARC)
Dmitry V. Levinb787b102013-03-18 10:17:14 +00001024 static struct iovec io = {
1025 .iov_base = &ARCH_REGS_FOR_GETREGSET,
1026 .iov_len = sizeof(ARCH_REGS_FOR_GETREGSET)
Dmitry V. Levinfaa177e2013-03-17 23:48:45 +00001027 };
Dmitry V. Levinb787b102013-03-18 10:17:14 +00001028 get_regs_error = ptrace(PTRACE_GETREGSET, pid, NT_PRSTATUS, &io);
1029
1030/* variable iovec */
1031# elif defined(X86_64) || defined(X32)
Dmitry V. Levinfaa177e2013-03-17 23:48:45 +00001032 /* x86_io.iov_base = &x86_regs_union; - already is */
1033 x86_io.iov_len = sizeof(x86_regs_union);
Dmitry V. Levinb787b102013-03-18 10:17:14 +00001034 get_regs_error = ptrace(PTRACE_GETREGSET, pid, NT_PRSTATUS, &x86_io);
1035# elif defined(AARCH64)
1036 /* aarch64_io.iov_base = &arm_regs_union; - already is */
1037 aarch64_io.iov_len = sizeof(arm_regs_union);
1038 get_regs_error = ptrace(PTRACE_GETREGSET, pid, NT_PRSTATUS, &aarch64_io);
1039# else
1040# warning both PTRACE_GETREGSET and NT_PRSTATUS are available but not yet used
Dmitry V. Levinfaa177e2013-03-17 23:48:45 +00001041# endif
Dmitry V. Levinb787b102013-03-18 10:17:14 +00001042}
Dmitry V. Levinfaa177e2013-03-17 23:48:45 +00001043#endif /* PTRACE_GETREGSET && NT_PRSTATUS */
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. Levinb787b102013-03-18 10:17:14 +00001048/* PTRACE_GETREGSET only */
Vineet Gupta7daacbb2013-08-16 12:47:06 +05301049# if defined(METAG) || defined(OR1K) || defined(X32) || defined(AARCH64) || defined(ARC)
Dmitry V. Levinb787b102013-03-18 10:17:14 +00001050 get_regset(pid);
1051
1052/* PTRACE_GETREGS only */
1053# elif defined(AVR32)
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +01001054 get_regs_error = ptrace(PTRACE_GETREGS, pid, NULL, &avr32_regs);
Dmitry V. Levinb787b102013-03-18 10:17:14 +00001055# elif defined(TILE)
1056 get_regs_error = ptrace(PTRACE_GETREGS, pid, NULL, &tile_regs);
1057# elif defined(SPARC) || defined(SPARC64)
1058 get_regs_error = ptrace(PTRACE_GETREGS, pid, (char *)&sparc_regs, 0);
Anton Blanchardce6e33b2013-06-26 15:53:33 +02001059# elif defined(POWERPC)
Denys Vlasenko7eb89322013-06-28 14:41:30 +02001060 static bool old_kernel = 0;
1061 if (old_kernel)
1062 goto old;
Anton Blanchardce6e33b2013-06-26 15:53:33 +02001063 get_regs_error = ptrace(PTRACE_GETREGS, pid, NULL, (long) &ppc_regs);
Denys Vlasenko7eb89322013-06-28 14:41:30 +02001064 if (get_regs_error && errno == EIO) {
1065 old_kernel = 1;
1066 old:
Anton Blanchard14d51a62013-06-26 14:42:37 +10001067 get_regs_error = powerpc_getregs_old(pid);
Denys Vlasenko7eb89322013-06-28 14:41:30 +02001068 }
Dmitry V. Levinb787b102013-03-18 10:17:14 +00001069
1070/* try PTRACE_GETREGSET first, fallback to PTRACE_GETREGS */
1071# else
Dmitry V. Levin27e3ae92013-03-17 23:18:35 +00001072# if defined(PTRACE_GETREGSET) && defined(NT_PRSTATUS)
1073 static int getregset_support;
1074
1075 if (getregset_support >= 0) {
Dmitry V. Levinfaa177e2013-03-17 23:48:45 +00001076 get_regset(pid);
Dmitry V. Levin27e3ae92013-03-17 23:18:35 +00001077 if (getregset_support > 0)
1078 return;
1079 if (get_regs_error >= 0) {
1080 getregset_support = 1;
1081 return;
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +01001082 }
Dmitry V. Levin27e3ae92013-03-17 23:18:35 +00001083 if (errno == EPERM || errno == ESRCH)
1084 return;
1085 getregset_support = -1;
1086 }
1087# endif /* PTRACE_GETREGSET && NT_PRSTATUS */
Dmitry V. Levinfaa177e2013-03-17 23:48:45 +00001088# if defined(ARM)
Dmitry V. Levinb787b102013-03-18 10:17:14 +00001089 get_regs_error = ptrace(PTRACE_GETREGS, pid, NULL, &arm_regs);
Dmitry V. Levinfaa177e2013-03-17 23:48:45 +00001090# elif defined(I386)
Dmitry V. Levinb787b102013-03-18 10:17:14 +00001091 get_regs_error = ptrace(PTRACE_GETREGS, pid, NULL, &i386_regs);
Dmitry V. Levinfaa177e2013-03-17 23:48:45 +00001092# elif defined(X86_64)
Dmitry V. Levin27e3ae92013-03-17 23:18:35 +00001093 /* Use old method, with unreliable heuristical detection of 32-bitness. */
1094 x86_io.iov_len = sizeof(x86_64_regs);
Dmitry V. Levinb787b102013-03-18 10:17:14 +00001095 get_regs_error = ptrace(PTRACE_GETREGS, pid, NULL, &x86_64_regs);
Dmitry V. Levin27e3ae92013-03-17 23:18:35 +00001096 if (!get_regs_error && x86_64_regs.cs == 0x23) {
1097 x86_io.iov_len = sizeof(i386_regs);
1098 /*
1099 * The order is important: i386_regs and x86_64_regs
1100 * are overlaid in memory!
1101 */
1102 i386_regs.ebx = x86_64_regs.rbx;
1103 i386_regs.ecx = x86_64_regs.rcx;
1104 i386_regs.edx = x86_64_regs.rdx;
1105 i386_regs.esi = x86_64_regs.rsi;
1106 i386_regs.edi = x86_64_regs.rdi;
1107 i386_regs.ebp = x86_64_regs.rbp;
1108 i386_regs.eax = x86_64_regs.rax;
1109 /* i386_regs.xds = x86_64_regs.ds; unused by strace */
1110 /* i386_regs.xes = x86_64_regs.es; ditto... */
1111 /* i386_regs.xfs = x86_64_regs.fs; */
1112 /* i386_regs.xgs = x86_64_regs.gs; */
1113 i386_regs.orig_eax = x86_64_regs.orig_rax;
1114 i386_regs.eip = x86_64_regs.rip;
1115 /* i386_regs.xcs = x86_64_regs.cs; */
1116 /* i386_regs.eflags = x86_64_regs.eflags; */
1117 i386_regs.esp = x86_64_regs.rsp;
1118 /* i386_regs.xss = x86_64_regs.ss; */
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +01001119 }
Dmitry V. Levinfaa177e2013-03-17 23:48:45 +00001120# else
Dmitry V. Levinb787b102013-03-18 10:17:14 +00001121# error unhandled architecture
Dmitry V. Levinfaa177e2013-03-17 23:48:45 +00001122# endif /* ARM || I386 || X86_64 */
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01001123# endif
1124}
Dmitry V. Levinb787b102013-03-18 10:17:14 +00001125#endif /* !get_regs */
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01001126
Denys Vlasenkob88f9612011-08-21 18:03:23 +02001127/* Returns:
Denys Vlasenko907735a2012-03-21 00:23:16 +01001128 * 0: "ignore this ptrace stop", bail out of trace_syscall_entering() silently.
1129 * 1: ok, continue in trace_syscall_entering().
1130 * other: error, trace_syscall_entering() should print error indicator
Denys Vlasenkob88f9612011-08-21 18:03:23 +02001131 * ("????" etc) and bail out.
1132 */
Denys Vlasenko9fd4f962012-03-19 09:36:42 +01001133static int
Denys Vlasenko06602d92011-08-24 17:53:52 +02001134get_scno(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001135{
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001136 long scno = 0;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001137
Denys Vlasenko523635f2012-02-25 02:44:25 +01001138#if defined(S390) || defined(S390X)
Denys Vlasenkof5730e92013-07-07 12:47:39 +02001139 if (upeek(tcp->pid, PT_GPR2, &s390_gpr2) < 0)
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001140 return -1;
Roland McGrath2f924ca2003-06-26 22:23:28 +00001141
Denys Vlasenkof5730e92013-07-07 12:47:39 +02001142 if (s390_gpr2 != -ENOSYS) {
Roland McGrath2f924ca2003-06-26 22:23:28 +00001143 /*
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +00001144 * Since kernel version 2.5.44 the scno gets passed in gpr2.
Roland McGrath2f924ca2003-06-26 22:23:28 +00001145 */
Denys Vlasenkof5730e92013-07-07 12:47:39 +02001146 scno = s390_gpr2;
Roland McGrath2f924ca2003-06-26 22:23:28 +00001147 } else {
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +00001148 /*
Michal Ludvig882eda82002-11-11 12:50:47 +00001149 * Old style of "passing" the scno via the SVC instruction.
1150 */
Denys Vlasenko7ba8e722013-02-08 15:50:05 +01001151 long psw;
Michal Ludvig882eda82002-11-11 12:50:47 +00001152 long opcode, offset_reg, tmp;
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001153 void *svc_addr;
Denys Vlasenko7c9ba8b2011-08-19 19:46:32 +02001154 static const int gpr_offset[16] = {
1155 PT_GPR0, PT_GPR1, PT_ORIGGPR2, PT_GPR3,
1156 PT_GPR4, PT_GPR5, PT_GPR6, PT_GPR7,
1157 PT_GPR8, PT_GPR9, PT_GPR10, PT_GPR11,
1158 PT_GPR12, PT_GPR13, PT_GPR14, PT_GPR15
1159 };
Roland McGrath761b5d72002-12-15 23:58:31 +00001160
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001161 if (upeek(tcp->pid, PT_PSWADDR, &psw) < 0)
Michal Ludvig882eda82002-11-11 12:50:47 +00001162 return -1;
Roland McGrath96dc5142003-01-20 10:23:04 +00001163 errno = 0;
Denys Vlasenko7ba8e722013-02-08 15:50:05 +01001164 opcode = ptrace(PTRACE_PEEKTEXT, tcp->pid, (char *)(psw - sizeof(long)), 0);
Roland McGrath96dc5142003-01-20 10:23:04 +00001165 if (errno) {
Denys Vlasenko905e8e02013-02-26 12:30:09 +01001166 perror_msg("peektext(psw-oneword)");
Michal Ludvig882eda82002-11-11 12:50:47 +00001167 return -1;
Roland McGrath96dc5142003-01-20 10:23:04 +00001168 }
Michal Ludvig882eda82002-11-11 12:50:47 +00001169
1170 /*
1171 * We have to check if the SVC got executed directly or via an
1172 * EXECUTE instruction. In case of EXECUTE it is necessary to do
1173 * instruction decoding to derive the system call number.
1174 * Unfortunately the opcode sizes of EXECUTE and SVC are differently,
1175 * so that this doesn't work if a SVC opcode is part of an EXECUTE
1176 * opcode. Since there is no way to find out the opcode size this
1177 * is the best we can do...
1178 */
Michal Ludvig882eda82002-11-11 12:50:47 +00001179 if ((opcode & 0xff00) == 0x0a00) {
1180 /* SVC opcode */
1181 scno = opcode & 0xff;
Roland McGrath761b5d72002-12-15 23:58:31 +00001182 }
Michal Ludvig882eda82002-11-11 12:50:47 +00001183 else {
1184 /* SVC got executed by EXECUTE instruction */
1185
1186 /*
1187 * Do instruction decoding of EXECUTE. If you really want to
1188 * understand this, read the Principles of Operations.
1189 */
1190 svc_addr = (void *) (opcode & 0xfff);
1191
1192 tmp = 0;
1193 offset_reg = (opcode & 0x000f0000) >> 16;
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
1198 tmp = 0;
1199 offset_reg = (opcode & 0x0000f000) >> 12;
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001200 if (offset_reg && (upeek(tcp->pid, gpr_offset[offset_reg], &tmp) < 0))
Michal Ludvig882eda82002-11-11 12:50:47 +00001201 return -1;
1202 svc_addr += tmp;
1203
Denys Vlasenkofb036672009-01-23 16:30:26 +00001204 scno = ptrace(PTRACE_PEEKTEXT, tcp->pid, svc_addr, 0);
Michal Ludvig882eda82002-11-11 12:50:47 +00001205 if (errno)
1206 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001207# if defined(S390X)
Michal Ludvig882eda82002-11-11 12:50:47 +00001208 scno >>= 48;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001209# else
Michal Ludvig882eda82002-11-11 12:50:47 +00001210 scno >>= 16;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001211# endif
Michal Ludvig882eda82002-11-11 12:50:47 +00001212 tmp = 0;
1213 offset_reg = (opcode & 0x00f00000) >> 20;
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001214 if (offset_reg && (upeek(tcp->pid, gpr_offset[offset_reg], &tmp) < 0))
Michal Ludvig882eda82002-11-11 12:50:47 +00001215 return -1;
1216
1217 scno = (scno | tmp) & 0xff;
1218 }
1219 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01001220#elif defined(POWERPC)
Anton Blanchardce6e33b2013-06-26 15:53:33 +02001221 scno = ppc_regs.gpr[0];
Denys Vlasenko523635f2012-02-25 02:44:25 +01001222# ifdef POWERPC64
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001223 int currpers;
Andreas Schwabd69fa492010-07-12 21:39:57 +02001224
James Yanga78d7772014-02-18 15:32:43 -06001225 /*
1226 * Check for 64/32 bit mode.
1227 * Embedded implementations covered by Book E extension of PPC use
1228 * bit 0 (CM) of 32-bit Machine state register (MSR).
1229 * Other implementations use bit 0 (SF) of 64-bit MSR.
1230 */
1231 currpers = (ppc_regs.msr & 0x8000000080000000) ? 0 : 1;
Dmitry V. Levina5a839a2011-12-23 00:50:49 +00001232 update_personality(tcp, currpers);
Denys Vlasenko523635f2012-02-25 02:44:25 +01001233# endif
1234#elif defined(AVR32)
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +01001235 scno = avr32_regs.r8;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001236#elif defined(BFIN)
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001237 if (upeek(tcp->pid, PT_ORIG_P0, &scno))
Dmitry V. Levin87ea1f42008-11-10 22:21:41 +00001238 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001239#elif defined(I386)
Denys Vlasenkoeb0e3e82011-08-30 18:53:49 +02001240 scno = i386_regs.orig_eax;
H.J. Lu35be5812012-04-16 13:00:01 +02001241#elif defined(X86_64) || defined(X32)
1242# ifndef __X32_SYSCALL_BIT
1243# define __X32_SYSCALL_BIT 0x40000000
1244# endif
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001245 int currpers;
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +01001246# if 1
1247 /* GETREGSET of NT_PRSTATUS tells us regset size,
1248 * which unambiguously detects i386.
1249 *
1250 * Linux kernel distinguishes x86-64 and x32 processes
1251 * solely by looking at __X32_SYSCALL_BIT:
1252 * arch/x86/include/asm/compat.h::is_x32_task():
1253 * if (task_pt_regs(current)->orig_ax & __X32_SYSCALL_BIT)
1254 * return true;
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001255 */
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +01001256 if (x86_io.iov_len == sizeof(i386_regs)) {
1257 scno = i386_regs.orig_eax;
1258 currpers = 1;
1259 } else {
1260 scno = x86_64_regs.orig_rax;
1261 currpers = 0;
1262 if (scno & __X32_SYSCALL_BIT) {
1263 scno -= __X32_SYSCALL_BIT;
1264 currpers = 2;
1265 }
1266 }
1267# elif 0
1268 /* cs = 0x33 for long mode (native 64 bit and x32)
1269 * cs = 0x23 for compatibility mode (32 bit)
1270 * ds = 0x2b for x32 mode (x86-64 in 32 bit)
1271 */
1272 scno = x86_64_regs.orig_rax;
Denys Vlasenkoeb0e3e82011-08-30 18:53:49 +02001273 switch (x86_64_regs.cs) {
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001274 case 0x23: currpers = 1; break;
H.J. Lu35be5812012-04-16 13:00:01 +02001275 case 0x33:
1276 if (x86_64_regs.ds == 0x2b) {
1277 currpers = 2;
Denys Vlasenko59aea0a2013-02-11 12:29:36 +01001278 scno &= ~__X32_SYSCALL_BIT;
H.J. Lu35be5812012-04-16 13:00:01 +02001279 } else
1280 currpers = 0;
1281 break;
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001282 default:
Denys Vlasenkoeb0e3e82011-08-30 18:53:49 +02001283 fprintf(stderr, "Unknown value CS=0x%08X while "
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001284 "detecting personality of process "
Denys Vlasenkoeb0e3e82011-08-30 18:53:49 +02001285 "PID=%d\n", (int)x86_64_regs.cs, tcp->pid);
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001286 currpers = current_personality;
1287 break;
1288 }
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +01001289# elif 0
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001290 /* This version analyzes the opcode of a syscall instruction.
1291 * (int 0x80 on i386 vs. syscall on x86-64)
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +01001292 * It works, but is too complicated, and strictly speaking, unreliable.
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001293 */
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +01001294 unsigned long call, rip = x86_64_regs.rip;
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001295 /* sizeof(syscall) == sizeof(int 0x80) == 2 */
1296 rip -= 2;
1297 errno = 0;
Denys Vlasenkoeb0e3e82011-08-30 18:53:49 +02001298 call = ptrace(PTRACE_PEEKTEXT, tcp->pid, (char *)rip, (char *)0);
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001299 if (errno)
1300 fprintf(stderr, "ptrace_peektext failed: %s\n",
1301 strerror(errno));
1302 switch (call & 0xffff) {
1303 /* x86-64: syscall = 0x0f 0x05 */
1304 case 0x050f: currpers = 0; break;
1305 /* i386: int 0x80 = 0xcd 0x80 */
1306 case 0x80cd: currpers = 1; break;
1307 default:
1308 currpers = current_personality;
1309 fprintf(stderr,
1310 "Unknown syscall opcode (0x%04X) while "
1311 "detecting personality of process "
Denys Vlasenkoeb0e3e82011-08-30 18:53:49 +02001312 "PID=%d\n", (int)call, tcp->pid);
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001313 break;
1314 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01001315# endif
Denys Vlasenko59aea0a2013-02-11 12:29:36 +01001316
H.J. Lu35be5812012-04-16 13:00:01 +02001317# ifdef X32
Denys Vlasenko59aea0a2013-02-11 12:29:36 +01001318 /* If we are built for a x32 system, then personality 0 is x32
1319 * (not x86_64), and stracing of x86_64 apps is not supported.
1320 * Stracing of i386 apps is still supported.
H.J. Lu085e4282012-04-17 11:05:04 -07001321 */
Denys Vlasenko59aea0a2013-02-11 12:29:36 +01001322 if (currpers == 0) {
1323 fprintf(stderr, "syscall_%lu(...) in unsupported "
1324 "64-bit mode of process PID=%d\n",
1325 scno, tcp->pid);
1326 return 0;
H.J. Lu35be5812012-04-16 13:00:01 +02001327 }
Denys Vlasenko59aea0a2013-02-11 12:29:36 +01001328 currpers &= ~2; /* map 2,1 to 0,1 */
H.J. Lu35be5812012-04-16 13:00:01 +02001329# endif
H.J. Lu085e4282012-04-17 11:05:04 -07001330 update_personality(tcp, currpers);
Denys Vlasenko523635f2012-02-25 02:44:25 +01001331#elif defined(IA64)
Wichert Akkerman7b3346b2001-10-09 23:47:38 +00001332# define IA64_PSR_IS ((long)1 << 34)
Denys Vlasenko4bdb6bb2013-02-06 18:09:31 +01001333 long psr;
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001334 if (upeek(tcp->pid, PT_CR_IPSR, &psr) >= 0)
Denys Vlasenkoc09646a2013-07-01 12:28:17 +02001335 ia64_ia32mode = ((psr & IA64_PSR_IS) != 0);
1336 if (ia64_ia32mode) {
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001337 if (upeek(tcp->pid, PT_R1, &scno) < 0)
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001338 return -1;
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +00001339 } else {
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001340 if (upeek(tcp->pid, PT_R15, &scno) < 0)
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +00001341 return -1;
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001342 }
Steve McIntyre890a5ca2012-11-10 11:24:48 +00001343#elif defined(AARCH64)
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01001344 switch (aarch64_io.iov_len) {
Steve McIntyre890a5ca2012-11-10 11:24:48 +00001345 case sizeof(aarch64_regs):
1346 /* We are in 64-bit mode */
Steve McIntyre890a5ca2012-11-10 11:24:48 +00001347 scno = aarch64_regs.regs[8];
1348 update_personality(tcp, 1);
1349 break;
Denys Vlasenko28ac68f2013-02-08 12:38:51 +01001350 case sizeof(arm_regs):
Steve McIntyre890a5ca2012-11-10 11:24:48 +00001351 /* We are in 32-bit mode */
Denys Vlasenko8b7aa2b2013-07-04 09:54:19 +02001352 /* Note: we don't support OABI, unlike 32-bit ARM build */
Denys Vlasenko28ac68f2013-02-08 12:38:51 +01001353 scno = arm_regs.ARM_r7;
Elliott Hughes7a28f7f2014-03-03 23:45:26 +00001354 scno = shuffle_scno(scno);
Steve McIntyre890a5ca2012-11-10 11:24:48 +00001355 update_personality(tcp, 0);
1356 break;
Steve McIntyre890a5ca2012-11-10 11:24:48 +00001357 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01001358#elif defined(ARM)
Denys Vlasenkoe7030e52013-02-20 18:08:25 +01001359 if (arm_regs.ARM_ip != 0) {
1360 /* It is not a syscall entry */
1361 fprintf(stderr, "pid %d stray syscall exit\n", tcp->pid);
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001362 tcp->flags |= TCB_INSYSCALL;
Denys Vlasenkoe7030e52013-02-20 18:08:25 +01001363 return 0;
1364 }
1365 /* Note: we support only 32-bit CPUs, not 26-bit */
1366
Dmitry V. Levin0160e162014-03-18 23:37:43 +00001367# if !defined(__ARM_EABI__) || ENABLE_ARM_OABI
Denys Vlasenko8b7aa2b2013-07-04 09:54:19 +02001368 if (arm_regs.ARM_cpsr & 0x20)
Denys Vlasenkoe7030e52013-02-20 18:08:25 +01001369 /* Thumb mode */
Denys Vlasenko8b7aa2b2013-07-04 09:54:19 +02001370 goto scno_in_r7;
1371 /* ARM mode */
1372 /* Check EABI/OABI by examining SVC insn's low 24 bits */
1373 errno = 0;
1374 scno = ptrace(PTRACE_PEEKTEXT, tcp->pid, (void *)(arm_regs.ARM_pc - 4), NULL);
1375 if (errno)
1376 return -1;
1377 /* EABI syscall convention? */
1378 if (scno != 0xef000000) {
1379 /* No, it's OABI */
1380 if ((scno & 0x0ff00000) != 0x0f900000) {
1381 fprintf(stderr, "pid %d unknown syscall trap 0x%08lx\n",
1382 tcp->pid, scno);
Denys Vlasenkoe7030e52013-02-20 18:08:25 +01001383 return -1;
Denys Vlasenkoe7030e52013-02-20 18:08:25 +01001384 }
Denys Vlasenko8b7aa2b2013-07-04 09:54:19 +02001385 /* Fixup the syscall number */
1386 scno &= 0x000fffff;
1387 } else {
1388 scno_in_r7:
1389 scno = arm_regs.ARM_r7;
Denys Vlasenkoe7030e52013-02-20 18:08:25 +01001390 }
Dmitry V. Levin0160e162014-03-18 23:37:43 +00001391# else /* __ARM_EABI__ || !ENABLE_ARM_OABI */
Denys Vlasenko8b7aa2b2013-07-04 09:54:19 +02001392 scno = arm_regs.ARM_r7;
1393# endif
Denys Vlasenko7270de52013-02-21 15:46:34 +01001394 scno = shuffle_scno(scno);
Denys Vlasenko523635f2012-02-25 02:44:25 +01001395#elif defined(M68K)
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001396 if (upeek(tcp->pid, 4*PT_ORIG_D0, &scno) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001397 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001398#elif defined(LINUX_MIPSN32)
Roland McGrath542c2c62008-05-20 01:11:56 +00001399 unsigned long long regs[38];
1400
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001401 if (ptrace(PTRACE_GETREGS, tcp->pid, NULL, (long) &regs) < 0)
Roland McGrath542c2c62008-05-20 01:11:56 +00001402 return -1;
Denys Vlasenkod22213a2013-02-13 17:52:31 +01001403 mips_a3 = regs[REG_A3];
1404 mips_r2 = regs[REG_V0];
Roland McGrath542c2c62008-05-20 01:11:56 +00001405
Denys Vlasenkod22213a2013-02-13 17:52:31 +01001406 scno = mips_r2;
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01001407 if (!SCNO_IN_RANGE(scno)) {
Denys Vlasenkod22213a2013-02-13 17:52:31 +01001408 if (mips_a3 == 0 || mips_a3 == -1) {
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001409 if (debug_flag)
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001410 fprintf(stderr, "stray syscall exit: v0 = %ld\n", scno);
Roland McGrath542c2c62008-05-20 01:11:56 +00001411 return 0;
1412 }
Roland McGrath542c2c62008-05-20 01:11:56 +00001413 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01001414#elif defined(MIPS)
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001415 if (upeek(tcp->pid, REG_A3, &mips_a3) < 0)
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +00001416 return -1;
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001417 if (upeek(tcp->pid, REG_V0, &scno) < 0)
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001418 return -1;
Wichert Akkermanf90da011999-10-31 21:15:38 +00001419
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01001420 if (!SCNO_IN_RANGE(scno)) {
Denys Vlasenkod22213a2013-02-13 17:52:31 +01001421 if (mips_a3 == 0 || mips_a3 == -1) {
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001422 if (debug_flag)
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001423 fprintf(stderr, "stray syscall exit: v0 = %ld\n", scno);
Roland McGrath542c2c62008-05-20 01:11:56 +00001424 return 0;
1425 }
Wichert Akkermanf90da011999-10-31 21:15:38 +00001426 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01001427#elif defined(ALPHA)
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001428 if (upeek(tcp->pid, REG_A3, &alpha_a3) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001429 return -1;
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001430 if (upeek(tcp->pid, REG_R0, &scno) < 0)
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001431 return -1;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001432
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001433 /*
1434 * Do some sanity checks to figure out if it's
1435 * really a syscall entry
1436 */
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01001437 if (!SCNO_IN_RANGE(scno)) {
Denys Vlasenko89804ec2013-02-07 13:14:48 +01001438 if (alpha_a3 == 0 || alpha_a3 == -1) {
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001439 if (debug_flag)
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001440 fprintf(stderr, "stray syscall exit: r0 = %ld\n", scno);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001441 return 0;
1442 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001443 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01001444#elif defined(SPARC) || defined(SPARC64)
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001445 /* Disassemble the syscall trap. */
1446 /* Retrieve the syscall trap instruction. */
Denys Vlasenko46455822013-02-05 17:02:59 +01001447 unsigned long trap;
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001448 errno = 0;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001449# if defined(SPARC64)
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +01001450 trap = ptrace(PTRACE_PEEKTEXT, tcp->pid, (char *)sparc_regs.tpc, 0);
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001451 trap >>= 32;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001452# else
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +01001453 trap = ptrace(PTRACE_PEEKTEXT, tcp->pid, (char *)sparc_regs.pc, 0);
Denys Vlasenko523635f2012-02-25 02:44:25 +01001454# endif
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001455 if (errno)
Wichert Akkermanc1652e22001-03-27 12:17:16 +00001456 return -1;
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001457
1458 /* Disassemble the trap to see what personality to use. */
1459 switch (trap) {
1460 case 0x91d02010:
1461 /* Linux/SPARC syscall trap. */
Dmitry V. Levina5a839a2011-12-23 00:50:49 +00001462 update_personality(tcp, 0);
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001463 break;
1464 case 0x91d0206d:
1465 /* Linux/SPARC64 syscall trap. */
Dmitry V. Levina5a839a2011-12-23 00:50:49 +00001466 update_personality(tcp, 2);
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001467 break;
1468 case 0x91d02000:
1469 /* SunOS syscall trap. (pers 1) */
1470 fprintf(stderr, "syscall: SunOS no support\n");
1471 return -1;
1472 case 0x91d02008:
1473 /* Solaris 2.x syscall trap. (per 2) */
Dmitry V. Levina5a839a2011-12-23 00:50:49 +00001474 update_personality(tcp, 1);
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001475 break;
1476 case 0x91d02009:
1477 /* NetBSD/FreeBSD syscall trap. */
1478 fprintf(stderr, "syscall: NetBSD/FreeBSD not supported\n");
1479 return -1;
1480 case 0x91d02027:
1481 /* Solaris 2.x gettimeofday */
Dmitry V. Levina5a839a2011-12-23 00:50:49 +00001482 update_personality(tcp, 1);
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001483 break;
1484 default:
Denys Vlasenko523635f2012-02-25 02:44:25 +01001485# if defined(SPARC64)
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +01001486 fprintf(stderr, "syscall: unknown syscall trap %08lx %016lx\n", trap, sparc_regs.tpc);
Denys Vlasenko523635f2012-02-25 02:44:25 +01001487# else
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +01001488 fprintf(stderr, "syscall: unknown syscall trap %08lx %08lx\n", trap, sparc_regs.pc);
Denys Vlasenko523635f2012-02-25 02:44:25 +01001489# endif
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001490 return -1;
1491 }
1492
1493 /* Extract the system call number from the registers. */
1494 if (trap == 0x91d02027)
1495 scno = 156;
1496 else
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +01001497 scno = sparc_regs.u_regs[U_REG_G1];
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001498 if (scno == 0) {
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +01001499 scno = sparc_regs.u_regs[U_REG_O0];
1500 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 +02001501 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01001502#elif defined(HPPA)
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001503 if (upeek(tcp->pid, PT_GR20, &scno) < 0)
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001504 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001505#elif defined(SH)
Denys Vlasenkoadedb512008-12-30 18:47:55 +00001506 /*
1507 * In the new syscall ABI, the system call number is in R3.
1508 */
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001509 if (upeek(tcp->pid, 4*(REG_REG0+3), &scno) < 0)
Denys Vlasenkoadedb512008-12-30 18:47:55 +00001510 return -1;
Wichert Akkermanccef6372002-05-01 16:39:22 +00001511
Denys Vlasenkoadedb512008-12-30 18:47:55 +00001512 if (scno < 0) {
1513 /* Odd as it may seem, a glibc bug has been known to cause
1514 glibc to issue bogus negative syscall numbers. So for
1515 our purposes, make strace print what it *should* have been */
1516 long correct_scno = (scno & 0xff);
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001517 if (debug_flag)
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +00001518 fprintf(stderr,
Denys Vlasenkoadedb512008-12-30 18:47:55 +00001519 "Detected glibc bug: bogus system call"
1520 " number = %ld, correcting to %ld\n",
1521 scno,
1522 correct_scno);
1523 scno = correct_scno;
1524 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01001525#elif defined(SH64)
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001526 if (upeek(tcp->pid, REG_SYSCALL, &scno) < 0)
Roland McGrathe1e584b2003-06-02 19:18:58 +00001527 return -1;
Denys Vlasenkoadedb512008-12-30 18:47:55 +00001528 scno &= 0xFFFF;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001529#elif defined(CRISV10) || defined(CRISV32)
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001530 if (upeek(tcp->pid, 4*PT_R9, &scno) < 0)
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001531 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001532#elif defined(TILE)
Chris Metcalf0b99a8a2013-02-05 17:48:33 +01001533 int currpers;
1534 scno = tile_regs.regs[10];
1535# ifdef __tilepro__
1536 currpers = 1;
1537# else
Denys Vlasenko59aea0a2013-02-11 12:29:36 +01001538# ifndef PT_FLAGS_COMPAT
1539# define PT_FLAGS_COMPAT 0x10000 /* from Linux 3.8 on */
1540# endif
Chris Metcalf0b99a8a2013-02-05 17:48:33 +01001541 if (tile_regs.flags & PT_FLAGS_COMPAT)
1542 currpers = 1;
1543 else
1544 currpers = 0;
1545# endif
1546 update_personality(tcp, currpers);
Denys Vlasenko523635f2012-02-25 02:44:25 +01001547#elif defined(MICROBLAZE)
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001548 if (upeek(tcp->pid, 0, &scno) < 0)
Edgar E. Iglesias939caba2010-07-06 14:21:07 +02001549 return -1;
Christian Svensson492f81f2013-02-14 13:26:27 +01001550#elif defined(OR1K)
1551 scno = or1k_regs.gpr[11];
James Hogan5f999a82013-02-22 14:44:10 +00001552#elif defined(METAG)
1553 scno = metag_regs.dx[0][1]; /* syscall number in D1Re0 (D1.0) */
Chris Zankel8f636ed2013-03-25 10:22:07 -07001554#elif defined(XTENSA)
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001555 if (upeek(tcp->pid, SYSCALL_NR, &scno) < 0)
Chris Zankel8f636ed2013-03-25 10:22:07 -07001556 return -1;
Vineet Gupta7daacbb2013-08-16 12:47:06 +05301557# elif defined(ARC)
1558 scno = arc_regs.scratch.r8;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001559#endif
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001560
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001561 tcp->scno = scno;
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01001562 if (SCNO_IS_VALID(tcp->scno)) {
1563 tcp->s_ent = &sysent[scno];
1564 tcp->qual_flg = qual_flags[scno];
1565 } else {
Denys Vlasenkoa9fe13c2013-02-22 13:26:10 +01001566 static const struct_sysent unknown = {
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01001567 .nargs = MAX_ARGS,
1568 .sys_flags = 0,
1569 .sys_func = printargs,
1570 .sys_name = "unknown", /* not used */
1571 };
1572 tcp->s_ent = &unknown;
1573 tcp->qual_flg = UNDEFINED_SCNO | QUAL_RAW | DEFAULT_QUAL_FLAGS;
1574 }
Pavel Machek4dc3b142000-02-01 17:58:41 +00001575 return 1;
1576}
1577
Denys Vlasenko20c41fd2011-08-25 10:23:00 +02001578/* Called at each syscall entry.
Denys Vlasenkobc161ec2009-01-02 18:02:45 +00001579 * Returns:
Denys Vlasenko907735a2012-03-21 00:23:16 +01001580 * 0: "ignore this ptrace stop", bail out of trace_syscall_entering() silently.
1581 * 1: ok, continue in trace_syscall_entering().
1582 * other: error, trace_syscall_entering() should print error indicator
Denys Vlasenkobc161ec2009-01-02 18:02:45 +00001583 * ("????" etc) and bail out.
1584 */
Roland McGratha4d48532005-06-08 20:45:28 +00001585static int
Denys Vlasenko8b4454c2011-08-25 10:40:14 +02001586syscall_fixup_on_sysenter(struct tcb *tcp)
Pavel Machek4dc3b142000-02-01 17:58:41 +00001587{
Denys Vlasenkob88f9612011-08-21 18:03:23 +02001588 /* A common case of "not a syscall entry" is post-execve SIGTRAP */
Denys Vlasenko523635f2012-02-25 02:44:25 +01001589#if defined(I386)
Denys Vlasenkoeb0e3e82011-08-30 18:53:49 +02001590 if (i386_regs.eax != -ENOSYS) {
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001591 if (debug_flag)
Denys Vlasenkoeb0e3e82011-08-30 18:53:49 +02001592 fprintf(stderr, "not a syscall entry (eax = %ld)\n", i386_regs.eax);
1593 return 0;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001594 }
H.J. Lu35be5812012-04-16 13:00:01 +02001595#elif defined(X86_64) || defined(X32)
Denys Vlasenkoeb0e3e82011-08-30 18:53:49 +02001596 {
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +01001597 long rax;
1598 if (x86_io.iov_len == sizeof(i386_regs)) {
1599 /* Sign extend from 32 bits */
1600 rax = (int32_t)i386_regs.eax;
1601 } else {
1602 /* Note: in X32 build, this truncates 64 to 32 bits */
1603 rax = x86_64_regs.rax;
1604 }
Denys Vlasenkoeb0e3e82011-08-30 18:53:49 +02001605 if (rax != -ENOSYS) {
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001606 if (debug_flag)
Denys Vlasenko18beb982011-08-24 16:59:23 +02001607 fprintf(stderr, "not a syscall entry (rax = %ld)\n", rax);
1608 return 0;
1609 }
Michal Ludvig0e035502002-09-23 15:41:01 +00001610 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01001611#elif defined(M68K)
Denys Vlasenkof20bff62011-08-25 10:31:24 +02001612 /* TODO? Eliminate upeek's in arches below like we did in x86 */
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001613 if (upeek(tcp->pid, 4*PT_D0, &m68k_d0) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001614 return -1;
Denys Vlasenko89804ec2013-02-07 13:14:48 +01001615 if (m68k_d0 != -ENOSYS) {
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001616 if (debug_flag)
Denys Vlasenko89804ec2013-02-07 13:14:48 +01001617 fprintf(stderr, "not a syscall entry (d0 = %ld)\n", m68k_d0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001618 return 0;
1619 }
Wichert Akkerman7b3346b2001-10-09 23:47:38 +00001620#elif defined(IA64)
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001621 if (upeek(tcp->pid, PT_R10, &ia64_r10) < 0)
Wichert Akkerman7b3346b2001-10-09 23:47:38 +00001622 return -1;
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001623 if (upeek(tcp->pid, PT_R8, &ia64_r8) < 0)
Wichert Akkerman7b3346b2001-10-09 23:47:38 +00001624 return -1;
Denys Vlasenkoc09646a2013-07-01 12:28:17 +02001625 if (ia64_ia32mode && ia64_r8 != -ENOSYS) {
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001626 if (debug_flag)
Denys Vlasenko89804ec2013-02-07 13:14:48 +01001627 fprintf(stderr, "not a syscall entry (r8 = %ld)\n", ia64_r8);
Wichert Akkerman7b3346b2001-10-09 23:47:38 +00001628 return 0;
1629 }
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001630#elif defined(CRISV10) || defined(CRISV32)
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001631 if (upeek(tcp->pid, 4*PT_R10, &cris_r10) < 0)
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001632 return -1;
Denys Vlasenko89804ec2013-02-07 13:14:48 +01001633 if (cris_r10 != -ENOSYS) {
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001634 if (debug_flag)
Denys Vlasenko89804ec2013-02-07 13:14:48 +01001635 fprintf(stderr, "not a syscall entry (r10 = %ld)\n", cris_r10);
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001636 return 0;
1637 }
Edgar E. Iglesias939caba2010-07-06 14:21:07 +02001638#elif defined(MICROBLAZE)
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001639 if (upeek(tcp->pid, 3 * 4, &microblaze_r3) < 0)
Edgar E. Iglesias939caba2010-07-06 14:21:07 +02001640 return -1;
Denys Vlasenko89804ec2013-02-07 13:14:48 +01001641 if (microblaze_r3 != -ENOSYS) {
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001642 if (debug_flag)
Denys Vlasenko89804ec2013-02-07 13:14:48 +01001643 fprintf(stderr, "not a syscall entry (r3 = %ld)\n", microblaze_r3);
Edgar E. Iglesias939caba2010-07-06 14:21:07 +02001644 return 0;
1645 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001646#endif
Pavel Machek4dc3b142000-02-01 17:58:41 +00001647 return 1;
1648}
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001649
Denys Vlasenko146b9442012-03-18 22:10:48 +01001650static void
1651internal_fork(struct tcb *tcp)
1652{
1653#if defined S390 || defined S390X || defined CRISV10 || defined CRISV32
1654# define ARG_FLAGS 1
1655#else
1656# define ARG_FLAGS 0
1657#endif
1658#ifndef CLONE_UNTRACED
1659# define CLONE_UNTRACED 0x00800000
1660#endif
1661 if ((ptrace_setoptions
1662 & (PTRACE_O_TRACECLONE | PTRACE_O_TRACEFORK | PTRACE_O_TRACEVFORK))
1663 == (PTRACE_O_TRACECLONE | PTRACE_O_TRACEFORK | PTRACE_O_TRACEVFORK))
1664 return;
1665
1666 if (!followfork)
1667 return;
1668
1669 if (entering(tcp)) {
1670 /*
1671 * We won't see the new child if clone is called with
1672 * CLONE_UNTRACED, so we keep the same logic with that option
1673 * and don't trace it.
1674 */
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01001675 if ((tcp->s_ent->sys_func == sys_clone)
1676 && (tcp->u_arg[ARG_FLAGS] & CLONE_UNTRACED)
1677 )
Denys Vlasenko146b9442012-03-18 22:10:48 +01001678 return;
1679 setbpt(tcp);
1680 } else {
1681 if (tcp->flags & TCB_BPTSET)
1682 clearbpt(tcp);
1683 }
1684}
1685
1686#if defined(TCB_WAITEXECVE)
1687static void
1688internal_exec(struct tcb *tcp)
1689{
1690 /* Maybe we have post-execve SIGTRAP suppressed? */
1691 if (ptrace_setoptions & PTRACE_O_TRACEEXEC)
1692 return; /* yes, no need to do anything */
1693
1694 if (exiting(tcp) && syserror(tcp))
1695 /* Error in execve, no post-execve SIGTRAP expected */
1696 tcp->flags &= ~TCB_WAITEXECVE;
1697 else
1698 tcp->flags |= TCB_WAITEXECVE;
1699}
1700#endif
1701
1702static void
Denys Vlasenko8d4ca0c2013-02-06 13:18:42 +01001703syscall_fixup_for_fork_exec(struct tcb *tcp)
Roland McGrathc1e45922008-05-27 23:18:29 +00001704{
Denys Vlasenkoa6146922011-08-24 18:07:22 +02001705 /*
1706 * We must always trace a few critical system calls in order to
1707 * correctly support following forks in the presence of tracing
1708 * qualifiers.
1709 */
1710 int (*func)();
1711
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01001712 func = tcp->s_ent->sys_func;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02001713
1714 if ( sys_fork == func
Denys Vlasenkoa6146922011-08-24 18:07:22 +02001715 || sys_clone == func
Denys Vlasenko146b9442012-03-18 22:10:48 +01001716 ) {
1717 internal_fork(tcp);
1718 return;
1719 }
Denys Vlasenkoa6146922011-08-24 18:07:22 +02001720
Denys Vlasenko84703742012-02-25 02:38:52 +01001721#if defined(TCB_WAITEXECVE)
Denys Vlasenkoa6146922011-08-24 18:07:22 +02001722 if ( sys_execve == func
Denys Vlasenko84703742012-02-25 02:38:52 +01001723# if defined(SPARC) || defined(SPARC64)
Denys Vlasenkoa6146922011-08-24 18:07:22 +02001724 || sys_execv == func
Denys Vlasenkoa7949742011-08-21 17:26:55 +02001725# endif
Denys Vlasenko146b9442012-03-18 22:10:48 +01001726 ) {
1727 internal_exec(tcp);
1728 return;
1729 }
Roland McGrathc1e45922008-05-27 23:18:29 +00001730#endif
Pavel Machek4dc3b142000-02-01 17:58:41 +00001731}
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001732
Denys Vlasenkobb6bb5c2012-03-20 17:10:35 +01001733/* Return -1 on error or 1 on success (never 0!) */
Roland McGratha4d48532005-06-08 20:45:28 +00001734static int
Denys Vlasenkobb6bb5c2012-03-20 17:10:35 +01001735get_syscall_args(struct tcb *tcp)
Pavel Machek4dc3b142000-02-01 17:58:41 +00001736{
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001737 int i, nargs;
1738
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01001739 nargs = tcp->s_ent->nargs;
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001740
Denys Vlasenko523635f2012-02-25 02:44:25 +01001741#if defined(S390) || defined(S390X)
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001742 for (i = 0; i < nargs; ++i)
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001743 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 +02001744 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001745#elif defined(ALPHA)
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001746 for (i = 0; i < nargs; ++i)
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001747 if (upeek(tcp->pid, REG_A0+i, &tcp->u_arg[i]) < 0)
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001748 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001749#elif defined(IA64)
Denys Vlasenkoc09646a2013-07-01 12:28:17 +02001750 if (!ia64_ia32mode) {
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001751 unsigned long *out0, cfm, sof, sol;
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001752 long rbs_end;
1753 /* be backwards compatible with kernel < 2.4.4... */
1754# ifndef PT_RBS_END
1755# define PT_RBS_END PT_AR_BSP
1756# endif
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +00001757
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001758 if (upeek(tcp->pid, PT_RBS_END, &rbs_end) < 0)
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001759 return -1;
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001760 if (upeek(tcp->pid, PT_CFM, (long *) &cfm) < 0)
Roland McGrath542c2c62008-05-20 01:11:56 +00001761 return -1;
1762
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001763 sof = (cfm >> 0) & 0x7f;
1764 sol = (cfm >> 7) & 0x7f;
1765 out0 = ia64_rse_skip_regs((unsigned long *) rbs_end, -sof + sol);
1766
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001767 for (i = 0; i < nargs; ++i) {
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001768 if (umoven(tcp, (unsigned long) ia64_rse_skip_regs(out0, i),
1769 sizeof(long), (char *) &tcp->u_arg[i]) < 0)
1770 return -1;
1771 }
1772 } else {
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001773 static const int argreg[MAX_ARGS] = { PT_R11 /* EBX = out0 */,
1774 PT_R9 /* ECX = out1 */,
1775 PT_R10 /* EDX = out2 */,
1776 PT_R14 /* ESI = out3 */,
1777 PT_R15 /* EDI = out4 */,
1778 PT_R13 /* EBP = out5 */};
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001779
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001780 for (i = 0; i < nargs; ++i) {
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001781 if (upeek(tcp->pid, argreg[i], &tcp->u_arg[i]) < 0)
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001782 return -1;
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001783 /* truncate away IVE sign-extension */
1784 tcp->u_arg[i] &= 0xffffffff;
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001785 }
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001786 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01001787#elif defined(LINUX_MIPSN32) || defined(LINUX_MIPSN64)
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001788 /* N32 and N64 both use up to six registers. */
1789 unsigned long long regs[38];
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001790
1791 if (ptrace(PTRACE_GETREGS, tcp->pid, NULL, (long) &regs) < 0)
1792 return -1;
1793
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001794 for (i = 0; i < nargs; ++i) {
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001795 tcp->u_arg[i] = regs[REG_A0 + i];
Denys Vlasenko523635f2012-02-25 02:44:25 +01001796# if defined(LINUX_MIPSN32)
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001797 tcp->ext_arg[i] = regs[REG_A0 + i];
Denys Vlasenko523635f2012-02-25 02:44:25 +01001798# endif
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001799 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01001800#elif defined(MIPS)
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001801 if (nargs > 4) {
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001802 long sp;
1803
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001804 if (upeek(tcp->pid, REG_SP, &sp) < 0)
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001805 return -1;
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001806 for (i = 0; i < 4; ++i)
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001807 if (upeek(tcp->pid, REG_A0 + i, &tcp->u_arg[i]) < 0)
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001808 return -1;
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001809 umoven(tcp, sp + 16, (nargs - 4) * sizeof(tcp->u_arg[0]),
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001810 (char *)(tcp->u_arg + 4));
1811 } else {
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001812 for (i = 0; i < nargs; ++i)
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001813 if (upeek(tcp->pid, REG_A0 + i, &tcp->u_arg[i]) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001814 return -1;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001815 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01001816#elif defined(POWERPC)
Anton Blanchardce6e33b2013-06-26 15:53:33 +02001817 (void)i;
1818 (void)nargs;
1819 tcp->u_arg[0] = ppc_regs.orig_gpr3;
1820 tcp->u_arg[1] = ppc_regs.gpr[4];
1821 tcp->u_arg[2] = ppc_regs.gpr[5];
1822 tcp->u_arg[3] = ppc_regs.gpr[6];
1823 tcp->u_arg[4] = ppc_regs.gpr[7];
1824 tcp->u_arg[5] = ppc_regs.gpr[8];
Denys Vlasenko523635f2012-02-25 02:44:25 +01001825#elif defined(SPARC) || defined(SPARC64)
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001826 for (i = 0; i < nargs; ++i)
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +01001827 tcp->u_arg[i] = sparc_regs.u_regs[U_REG_O0 + i];
Denys Vlasenko523635f2012-02-25 02:44:25 +01001828#elif defined(HPPA)
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001829 for (i = 0; i < nargs; ++i)
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001830 if (upeek(tcp->pid, PT_GR26-4*i, &tcp->u_arg[i]) < 0)
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001831 return -1;
Steve McIntyre890a5ca2012-11-10 11:24:48 +00001832#elif defined(ARM) || defined(AARCH64)
1833# if defined(AARCH64)
1834 if (tcp->currpers == 1)
1835 for (i = 0; i < nargs; ++i)
1836 tcp->u_arg[i] = aarch64_regs.regs[i];
1837 else
Denys Vlasenko28ac68f2013-02-08 12:38:51 +01001838# endif
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001839 for (i = 0; i < nargs; ++i)
Denys Vlasenko401374e2013-02-06 18:24:39 +01001840 tcp->u_arg[i] = arm_regs.uregs[i];
Denys Vlasenko523635f2012-02-25 02:44:25 +01001841#elif defined(AVR32)
Denys Vlasenkob5b25892011-08-30 19:04:54 +02001842 (void)i;
1843 (void)nargs;
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +01001844 tcp->u_arg[0] = avr32_regs.r12;
1845 tcp->u_arg[1] = avr32_regs.r11;
1846 tcp->u_arg[2] = avr32_regs.r10;
1847 tcp->u_arg[3] = avr32_regs.r9;
1848 tcp->u_arg[4] = avr32_regs.r5;
1849 tcp->u_arg[5] = avr32_regs.r3;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001850#elif defined(BFIN)
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001851 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 +02001852
Denys Vlasenko4b887a52011-08-23 13:32:38 +02001853 for (i = 0; i < nargs; ++i)
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001854 if (upeek(tcp->pid, argreg[i], &tcp->u_arg[i]) < 0)
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001855 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001856#elif defined(SH)
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001857 static const int syscall_regs[MAX_ARGS] = {
1858 4 * (REG_REG0+4), 4 * (REG_REG0+5), 4 * (REG_REG0+6),
1859 4 * (REG_REG0+7), 4 * (REG_REG0 ), 4 * (REG_REG0+1)
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001860 };
1861
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001862 for (i = 0; i < nargs; ++i)
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001863 if (upeek(tcp->pid, syscall_regs[i], &tcp->u_arg[i]) < 0)
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001864 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001865#elif defined(SH64)
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001866 int i;
1867 /* Registers used by SH5 Linux system calls for parameters */
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001868 static const int syscall_regs[MAX_ARGS] = { 2, 3, 4, 5, 6, 7 };
Roland McGrathe1e584b2003-06-02 19:18:58 +00001869
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001870 for (i = 0; i < nargs; ++i)
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001871 if (upeek(tcp->pid, REG_GENERAL(syscall_regs[i]), &tcp->u_arg[i]) < 0)
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001872 return -1;
Denys Vlasenko6cf36052013-02-15 15:01:38 +01001873#elif defined(I386)
1874 (void)i;
1875 (void)nargs;
1876 tcp->u_arg[0] = i386_regs.ebx;
1877 tcp->u_arg[1] = i386_regs.ecx;
1878 tcp->u_arg[2] = i386_regs.edx;
1879 tcp->u_arg[3] = i386_regs.esi;
1880 tcp->u_arg[4] = i386_regs.edi;
1881 tcp->u_arg[5] = i386_regs.ebp;
H.J. Lu35be5812012-04-16 13:00:01 +02001882#elif defined(X86_64) || defined(X32)
Denys Vlasenkoeb0e3e82011-08-30 18:53:49 +02001883 (void)i;
1884 (void)nargs;
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +01001885 if (x86_io.iov_len != sizeof(i386_regs)) {
1886 /* x86-64 or x32 ABI */
Denys Vlasenkoeb0e3e82011-08-30 18:53:49 +02001887 tcp->u_arg[0] = x86_64_regs.rdi;
1888 tcp->u_arg[1] = x86_64_regs.rsi;
1889 tcp->u_arg[2] = x86_64_regs.rdx;
1890 tcp->u_arg[3] = x86_64_regs.r10;
1891 tcp->u_arg[4] = x86_64_regs.r8;
1892 tcp->u_arg[5] = x86_64_regs.r9;
H.J. Lu35be5812012-04-16 13:00:01 +02001893# ifdef X32
1894 tcp->ext_arg[0] = x86_64_regs.rdi;
1895 tcp->ext_arg[1] = x86_64_regs.rsi;
1896 tcp->ext_arg[2] = x86_64_regs.rdx;
1897 tcp->ext_arg[3] = x86_64_regs.r10;
1898 tcp->ext_arg[4] = x86_64_regs.r8;
1899 tcp->ext_arg[5] = x86_64_regs.r9;
1900# endif
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +01001901 } else {
1902 /* i386 ABI */
Denys Vlasenko6cf36052013-02-15 15:01:38 +01001903 /* Zero-extend from 32 bits */
1904 /* Use widen_to_long(tcp->u_arg[N]) in syscall handlers
1905 * if you need to use *sign-extended* parameter.
1906 */
1907 tcp->u_arg[0] = (long)(uint32_t)i386_regs.ebx;
1908 tcp->u_arg[1] = (long)(uint32_t)i386_regs.ecx;
1909 tcp->u_arg[2] = (long)(uint32_t)i386_regs.edx;
1910 tcp->u_arg[3] = (long)(uint32_t)i386_regs.esi;
1911 tcp->u_arg[4] = (long)(uint32_t)i386_regs.edi;
1912 tcp->u_arg[5] = (long)(uint32_t)i386_regs.ebp;
Denys Vlasenkoeb0e3e82011-08-30 18:53:49 +02001913 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01001914#elif defined(MICROBLAZE)
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001915 for (i = 0; i < nargs; ++i)
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001916 if (upeek(tcp->pid, (5 + i) * 4, &tcp->u_arg[i]) < 0)
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001917 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001918#elif defined(CRISV10) || defined(CRISV32)
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001919 static const int crisregs[MAX_ARGS] = {
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001920 4*PT_ORIG_R10, 4*PT_R11, 4*PT_R12,
Denys Vlasenko0b6c73c2011-06-23 22:22:34 +02001921 4*PT_R13 , 4*PT_MOF, 4*PT_SRP
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001922 };
Roland McGrathe1e584b2003-06-02 19:18:58 +00001923
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001924 for (i = 0; i < nargs; ++i)
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001925 if (upeek(tcp->pid, crisregs[i], &tcp->u_arg[i]) < 0)
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001926 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001927#elif defined(TILE)
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001928 for (i = 0; i < nargs; ++i)
Chris Metcalf0b99a8a2013-02-05 17:48:33 +01001929 tcp->u_arg[i] = tile_regs.regs[i];
Denys Vlasenko523635f2012-02-25 02:44:25 +01001930#elif defined(M68K)
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001931 for (i = 0; i < nargs; ++i)
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001932 if (upeek(tcp->pid, (i < 5 ? i : i + 2)*4, &tcp->u_arg[i]) < 0)
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001933 return -1;
Christian Svensson492f81f2013-02-14 13:26:27 +01001934#elif defined(OR1K)
1935 (void)nargs;
1936 for (i = 0; i < 6; ++i)
1937 tcp->u_arg[i] = or1k_regs.gpr[3 + i];
James Hogan5f999a82013-02-22 14:44:10 +00001938#elif defined(METAG)
1939 for (i = 0; i < nargs; i++)
1940 /* arguments go backwards from D1Ar1 (D1.3) */
1941 tcp->u_arg[i] = ((unsigned long *)&metag_regs.dx[3][1])[-i];
Chris Zankel8f636ed2013-03-25 10:22:07 -07001942#elif defined(XTENSA)
1943 /* arg0: a6, arg1: a3, arg2: a4, arg3: a5, arg4: a8, arg5: a9 */
1944 static const int xtensaregs[MAX_ARGS] = { 6, 3, 4, 5, 8, 9 };
1945 for (i = 0; i < nargs; ++i)
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001946 if (upeek(tcp->pid, REG_A_BASE + xtensaregs[i], &tcp->u_arg[i]) < 0)
Chris Zankel8f636ed2013-03-25 10:22:07 -07001947 return -1;
Vineet Gupta7daacbb2013-08-16 12:47:06 +05301948# elif defined(ARC)
1949 long *arc_args = &arc_regs.scratch.r0;
1950 for (i = 0; i < nargs; ++i)
1951 tcp->u_arg[i] = *arc_args--;
1952
Denys Vlasenko523635f2012-02-25 02:44:25 +01001953#else /* Other architecture (32bits specific) */
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001954 for (i = 0; i < nargs; ++i)
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001955 if (upeek(tcp->pid, i*4, &tcp->u_arg[i]) < 0)
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001956 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001957#endif
Pavel Machek4dc3b142000-02-01 17:58:41 +00001958 return 1;
1959}
1960
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00001961static int
Denys Vlasenkoed4f4f02011-08-22 11:54:06 +02001962trace_syscall_entering(struct tcb *tcp)
1963{
1964 int res, scno_good;
1965
Denys Vlasenko2ce12ed2011-08-24 17:25:32 +02001966#if defined TCB_WAITEXECVE
1967 if (tcp->flags & TCB_WAITEXECVE) {
1968 /* This is the post-execve SIGTRAP. */
1969 tcp->flags &= ~TCB_WAITEXECVE;
1970 return 0;
1971 }
1972#endif
1973
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01001974 scno_good = res = (get_regs_error ? -1 : get_scno(tcp));
Denys Vlasenkoed4f4f02011-08-22 11:54:06 +02001975 if (res == 0)
1976 return res;
Denys Vlasenko907735a2012-03-21 00:23:16 +01001977 if (res == 1) {
Denys Vlasenko8b4454c2011-08-25 10:40:14 +02001978 res = syscall_fixup_on_sysenter(tcp);
Denys Vlasenko907735a2012-03-21 00:23:16 +01001979 if (res == 0)
1980 return res;
1981 if (res == 1)
1982 res = get_syscall_args(tcp);
1983 }
Denys Vlasenkoed4f4f02011-08-22 11:54:06 +02001984
1985 if (res != 1) {
1986 printleader(tcp);
Denys Vlasenkoed4f4f02011-08-22 11:54:06 +02001987 if (scno_good != 1)
Denys Vlasenkob7a6dae2012-03-20 16:48:35 +01001988 tprints("????" /* anti-trigraph gap */ "(");
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01001989 else if (tcp->qual_flg & UNDEFINED_SCNO)
Denys Vlasenko7270de52013-02-21 15:46:34 +01001990 tprintf("%s(", undefined_scno_name(tcp));
Denys Vlasenkoed4f4f02011-08-22 11:54:06 +02001991 else
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01001992 tprintf("%s(", tcp->s_ent->sys_name);
Denys Vlasenkoed4f4f02011-08-22 11:54:06 +02001993 /*
1994 * " <unavailable>" will be added later by the code which
1995 * detects ptrace errors.
1996 */
1997 goto ret;
1998 }
1999
Denys Vlasenko2a3d2752013-05-14 16:07:46 +02002000 if ( sys_execve == tcp->s_ent->sys_func
2001# if defined(SPARC) || defined(SPARC64)
2002 || sys_execv == tcp->s_ent->sys_func
2003# endif
2004 ) {
2005 hide_log_until_execve = 0;
2006 }
2007
Dmitry V. Levinb5e88d42012-02-20 17:02:38 +00002008#if defined(SYS_socket_subcall) || defined(SYS_ipc_subcall)
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01002009 while (1) {
Denys Vlasenko523635f2012-02-25 02:44:25 +01002010# ifdef SYS_socket_subcall
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01002011 if (tcp->s_ent->sys_func == sys_socketcall) {
Dmitry V. Levin648c22c2012-03-15 22:08:55 +00002012 decode_socket_subcall(tcp);
Dmitry V. Levinb5e88d42012-02-20 17:02:38 +00002013 break;
2014 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002015# endif
2016# ifdef SYS_ipc_subcall
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01002017 if (tcp->s_ent->sys_func == sys_ipc) {
Dmitry V. Levin648c22c2012-03-15 22:08:55 +00002018 decode_ipc_subcall(tcp);
Dmitry V. Levinb5e88d42012-02-20 17:02:38 +00002019 break;
2020 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002021# endif
Dmitry V. Levinb5e88d42012-02-20 17:02:38 +00002022 break;
2023 }
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01002024#endif
Dmitry V. Levinb5e88d42012-02-20 17:02:38 +00002025
Denys Vlasenko8d4ca0c2013-02-06 13:18:42 +01002026 if (need_fork_exec_workarounds)
2027 syscall_fixup_for_fork_exec(tcp);
Denys Vlasenkoed4f4f02011-08-22 11:54:06 +02002028
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01002029 if (!(tcp->qual_flg & QUAL_TRACE)
2030 || (tracing_paths && !pathtrace_match(tcp))
2031 ) {
Denys Vlasenkoed4f4f02011-08-22 11:54:06 +02002032 tcp->flags |= TCB_INSYSCALL | TCB_FILTERED;
2033 return 0;
2034 }
2035
2036 tcp->flags &= ~TCB_FILTERED;
2037
Denys Vlasenko2a3d2752013-05-14 16:07:46 +02002038 if (cflag == CFLAG_ONLY_STATS || hide_log_until_execve) {
Denys Vlasenkoed4f4f02011-08-22 11:54:06 +02002039 res = 0;
2040 goto ret;
2041 }
2042
Masatake YAMATOed69fc22014-04-16 15:33:35 +09002043#ifdef USE_LIBUNWIND
2044 if (stack_trace_enabled) {
2045 if (tcp->s_ent->sys_flags & STACKTRACE_CAPTURE_ON_ENTER)
2046 unwind_capture_stacktrace(tcp);
2047 }
2048#endif
2049
Denys Vlasenkoed4f4f02011-08-22 11:54:06 +02002050 printleader(tcp);
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01002051 if (tcp->qual_flg & UNDEFINED_SCNO)
Denys Vlasenko7270de52013-02-21 15:46:34 +01002052 tprintf("%s(", undefined_scno_name(tcp));
Denys Vlasenkoed4f4f02011-08-22 11:54:06 +02002053 else
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01002054 tprintf("%s(", tcp->s_ent->sys_name);
2055 if ((tcp->qual_flg & QUAL_RAW) && tcp->s_ent->sys_func != sys_exit)
Denys Vlasenkoed4f4f02011-08-22 11:54:06 +02002056 res = printargs(tcp);
2057 else
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01002058 res = tcp->s_ent->sys_func(tcp);
Denys Vlasenkoed4f4f02011-08-22 11:54:06 +02002059
Dmitry V. Levinb742d8c2012-09-17 22:40:12 +00002060 fflush(tcp->outf);
Denys Vlasenkoed4f4f02011-08-22 11:54:06 +02002061 ret:
2062 tcp->flags |= TCB_INSYSCALL;
2063 /* Measure the entrance time as late as possible to avoid errors. */
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01002064 if (Tflag || cflag)
Denys Vlasenkoed4f4f02011-08-22 11:54:06 +02002065 gettimeofday(&tcp->etime, NULL);
2066 return res;
2067}
2068
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002069/* Returns:
Denys Vlasenko907735a2012-03-21 00:23:16 +01002070 * 1: ok, continue in trace_syscall_exiting().
2071 * -1: error, trace_syscall_exiting() should print error indicator
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002072 * ("????" etc) and bail out.
2073 */
2074static int
2075get_syscall_result(struct tcb *tcp)
2076{
Denys Vlasenko523635f2012-02-25 02:44:25 +01002077#if defined(S390) || defined(S390X)
Denys Vlasenkof5730e92013-07-07 12:47:39 +02002078 if (upeek(tcp->pid, PT_GPR2, &s390_gpr2) < 0)
Denys Vlasenkof20bff62011-08-25 10:31:24 +02002079 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01002080#elif defined(POWERPC)
Denys Vlasenko44a6d042013-06-28 16:47:38 +02002081 /* already done by get_regs */
Denys Vlasenko523635f2012-02-25 02:44:25 +01002082#elif defined(AVR32)
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01002083 /* already done by get_regs */
Denys Vlasenko523635f2012-02-25 02:44:25 +01002084#elif defined(BFIN)
Denys Vlasenko752e5a02013-06-28 14:35:47 +02002085 if (upeek(tcp->pid, PT_R0, &bfin_r0) < 0)
Denys Vlasenkof20bff62011-08-25 10:31:24 +02002086 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01002087#elif defined(I386)
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01002088 /* already done by get_regs */
H.J. Lu35be5812012-04-16 13:00:01 +02002089#elif defined(X86_64) || defined(X32)
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01002090 /* already done by get_regs */
Denys Vlasenko523635f2012-02-25 02:44:25 +01002091#elif defined(IA64)
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002092# define IA64_PSR_IS ((long)1 << 34)
Denys Vlasenko4bdb6bb2013-02-06 18:09:31 +01002093 long psr;
Denys Vlasenko752e5a02013-06-28 14:35:47 +02002094 if (upeek(tcp->pid, PT_CR_IPSR, &psr) >= 0)
Denys Vlasenkoc09646a2013-07-01 12:28:17 +02002095 ia64_ia32mode = ((psr & IA64_PSR_IS) != 0);
Denys Vlasenko752e5a02013-06-28 14:35:47 +02002096 if (upeek(tcp->pid, PT_R8, &ia64_r8) < 0)
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002097 return -1;
Denys Vlasenko752e5a02013-06-28 14:35:47 +02002098 if (upeek(tcp->pid, PT_R10, &ia64_r10) < 0)
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002099 return -1;
Denys Vlasenko28ac68f2013-02-08 12:38:51 +01002100#elif defined(ARM)
2101 /* already done by get_regs */
Steve McIntyred8d3bd32012-10-24 17:58:16 +01002102#elif defined(AARCH64)
Denys Vlasenko28ac68f2013-02-08 12:38:51 +01002103 /* register reading already done by get_regs */
2104
2105 /* Used to do this, but we did it on syscall entry already: */
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01002106 /* We are in 64-bit mode (personality 1) if register struct is aarch64_regs,
2107 * else it's personality 0.
2108 */
Denys Vlasenko28ac68f2013-02-08 12:38:51 +01002109 /*update_personality(tcp, aarch64_io.iov_len == sizeof(aarch64_regs));*/
Denys Vlasenko523635f2012-02-25 02:44:25 +01002110#elif defined(M68K)
Denys Vlasenko752e5a02013-06-28 14:35:47 +02002111 if (upeek(tcp->pid, 4*PT_D0, &m68k_d0) < 0)
Denys Vlasenkof20bff62011-08-25 10:31:24 +02002112 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01002113#elif defined(LINUX_MIPSN32)
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002114 unsigned long long regs[38];
2115
2116 if (ptrace(PTRACE_GETREGS, tcp->pid, NULL, (long) &regs) < 0)
2117 return -1;
Denys Vlasenkod22213a2013-02-13 17:52:31 +01002118 mips_a3 = regs[REG_A3];
2119 mips_r2 = regs[REG_V0];
Denys Vlasenko523635f2012-02-25 02:44:25 +01002120#elif defined(MIPS)
Denys Vlasenko752e5a02013-06-28 14:35:47 +02002121 if (upeek(tcp->pid, REG_A3, &mips_a3) < 0)
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002122 return -1;
Denys Vlasenko752e5a02013-06-28 14:35:47 +02002123 if (upeek(tcp->pid, REG_V0, &mips_r2) < 0)
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002124 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01002125#elif defined(ALPHA)
Denys Vlasenko752e5a02013-06-28 14:35:47 +02002126 if (upeek(tcp->pid, REG_A3, &alpha_a3) < 0)
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002127 return -1;
Denys Vlasenko752e5a02013-06-28 14:35:47 +02002128 if (upeek(tcp->pid, REG_R0, &alpha_r0) < 0)
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002129 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01002130#elif defined(SPARC) || defined(SPARC64)
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01002131 /* already done by get_regs */
Denys Vlasenko523635f2012-02-25 02:44:25 +01002132#elif defined(HPPA)
Denys Vlasenko752e5a02013-06-28 14:35:47 +02002133 if (upeek(tcp->pid, PT_GR28, &hppa_r28) < 0)
Denys Vlasenkof20bff62011-08-25 10:31:24 +02002134 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01002135#elif defined(SH)
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01002136 /* new syscall ABI returns result in R0 */
Denys Vlasenko752e5a02013-06-28 14:35:47 +02002137 if (upeek(tcp->pid, 4*REG_REG0, (long *)&sh_r0) < 0)
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01002138 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01002139#elif defined(SH64)
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01002140 /* ABI defines result returned in r9 */
Denys Vlasenko752e5a02013-06-28 14:35:47 +02002141 if (upeek(tcp->pid, REG_GENERAL(9), (long *)&sh64_r9) < 0)
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01002142 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01002143#elif defined(CRISV10) || defined(CRISV32)
Denys Vlasenko752e5a02013-06-28 14:35:47 +02002144 if (upeek(tcp->pid, 4*PT_R10, &cris_r10) < 0)
Denys Vlasenkof20bff62011-08-25 10:31:24 +02002145 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01002146#elif defined(TILE)
Chris Metcalf0b99a8a2013-02-05 17:48:33 +01002147 /* already done by get_regs */
Denys Vlasenko523635f2012-02-25 02:44:25 +01002148#elif defined(MICROBLAZE)
Denys Vlasenko752e5a02013-06-28 14:35:47 +02002149 if (upeek(tcp->pid, 3 * 4, &microblaze_r3) < 0)
Denys Vlasenkof20bff62011-08-25 10:31:24 +02002150 return -1;
Christian Svensson492f81f2013-02-14 13:26:27 +01002151#elif defined(OR1K)
2152 /* already done by get_regs */
James Hogan5f999a82013-02-22 14:44:10 +00002153#elif defined(METAG)
2154 /* already done by get_regs */
Chris Zankel8f636ed2013-03-25 10:22:07 -07002155#elif defined(XTENSA)
Denys Vlasenko752e5a02013-06-28 14:35:47 +02002156 if (upeek(tcp->pid, REG_A_BASE + 2, &xtensa_a2) < 0)
Chris Zankel8f636ed2013-03-25 10:22:07 -07002157 return -1;
Vineet Gupta7daacbb2013-08-16 12:47:06 +05302158#elif defined(ARC)
2159 /* already done by get_regs */
Denys Vlasenko523635f2012-02-25 02:44:25 +01002160#endif
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002161 return 1;
2162}
2163
Denys Vlasenkobb6bb5c2012-03-20 17:10:35 +01002164/* Called at each syscall exit */
2165static void
Denys Vlasenko20c41fd2011-08-25 10:23:00 +02002166syscall_fixup_on_sysexit(struct tcb *tcp)
2167{
Denys Vlasenko523635f2012-02-25 02:44:25 +01002168#if defined(S390) || defined(S390X)
Denys Vlasenkoece98792011-08-25 10:25:35 +02002169 if ((tcp->flags & TCB_WAITEXECVE)
Denys Vlasenkof5730e92013-07-07 12:47:39 +02002170 && (s390_gpr2 == -ENOSYS || s390_gpr2 == tcp->scno)) {
Denys Vlasenko20c41fd2011-08-25 10:23:00 +02002171 /*
2172 * Return from execve.
2173 * Fake a return value of zero. We leave the TCB_WAITEXECVE
2174 * flag set for the post-execve SIGTRAP to see and reset.
2175 */
Denys Vlasenkof5730e92013-07-07 12:47:39 +02002176 s390_gpr2 = 0;
Denys Vlasenko20c41fd2011-08-25 10:23:00 +02002177 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002178#endif
Denys Vlasenko20c41fd2011-08-25 10:23:00 +02002179}
2180
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002181/*
2182 * Check the syscall return value register value for whether it is
2183 * a negated errno code indicating an error, or a success return value.
2184 */
2185static inline int
2186is_negated_errno(unsigned long int val)
2187{
2188 unsigned long int max = -(long int) nerrnos;
Denys Vlasenko2544f982013-02-19 17:39:56 +01002189#if SUPPORTED_PERSONALITIES > 1 && SIZEOF_LONG > 4
Denys Vlasenko9fd4f962012-03-19 09:36:42 +01002190 if (current_wordsize < sizeof(val)) {
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002191 val = (unsigned int) val;
2192 max = (unsigned int) max;
2193 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002194#endif
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002195 return val > max;
2196}
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002197
Denys Vlasenkoafea7dd2013-02-12 11:52:35 +01002198#if defined(X32)
2199static inline int
2200is_negated_errno_x32(unsigned long long val)
2201{
2202 unsigned long long max = -(long long) nerrnos;
2203 /*
2204 * current_wordsize is 4 even in personality 0 (native X32)
2205 * but truncation _must not_ be done in it.
2206 * can't check current_wordsize here!
2207 */
2208 if (current_personality != 0) {
2209 val = (uint32_t) val;
2210 max = (uint32_t) max;
2211 }
2212 return val > max;
2213}
2214#endif
2215
Denys Vlasenko907735a2012-03-21 00:23:16 +01002216/* Returns:
2217 * 1: ok, continue in trace_syscall_exiting().
2218 * -1: error, trace_syscall_exiting() should print error indicator
2219 * ("????" etc) and bail out.
2220 */
Denys Vlasenkoc956ef02013-02-16 14:25:56 +01002221static void
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002222get_error(struct tcb *tcp)
2223{
2224 int u_error = 0;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002225 int check_errno = 1;
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01002226 if (tcp->s_ent->sys_flags & SYSCALL_NEVER_FAILS) {
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002227 check_errno = 0;
2228 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002229#if defined(S390) || defined(S390X)
Denys Vlasenkof5730e92013-07-07 12:47:39 +02002230 if (check_errno && is_negated_errno(s390_gpr2)) {
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002231 tcp->u_rval = -1;
Denys Vlasenkof5730e92013-07-07 12:47:39 +02002232 u_error = -s390_gpr2;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002233 }
2234 else {
Denys Vlasenkof5730e92013-07-07 12:47:39 +02002235 tcp->u_rval = s390_gpr2;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002236 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002237#elif defined(I386)
Denys Vlasenkoeb0e3e82011-08-30 18:53:49 +02002238 if (check_errno && is_negated_errno(i386_regs.eax)) {
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002239 tcp->u_rval = -1;
Denys Vlasenkoeb0e3e82011-08-30 18:53:49 +02002240 u_error = -i386_regs.eax;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002241 }
2242 else {
Denys Vlasenkoeb0e3e82011-08-30 18:53:49 +02002243 tcp->u_rval = i386_regs.eax;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002244 }
Denys Vlasenkoafea7dd2013-02-12 11:52:35 +01002245#elif defined(X86_64)
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +01002246 long rax;
2247 if (x86_io.iov_len == sizeof(i386_regs)) {
2248 /* Sign extend from 32 bits */
2249 rax = (int32_t)i386_regs.eax;
2250 } else {
2251 rax = x86_64_regs.rax;
2252 }
2253 if (check_errno && is_negated_errno(rax)) {
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002254 tcp->u_rval = -1;
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +01002255 u_error = -rax;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002256 }
2257 else {
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +01002258 tcp->u_rval = rax;
Denys Vlasenkoafea7dd2013-02-12 11:52:35 +01002259 }
2260#elif defined(X32)
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +01002261 /* In X32, return value is 64-bit (llseek uses one).
2262 * Using merely "long rax" would not work.
2263 */
2264 long long rax;
2265 if (x86_io.iov_len == sizeof(i386_regs)) {
2266 /* Sign extend from 32 bits */
2267 rax = (int32_t)i386_regs.eax;
2268 } else {
2269 rax = x86_64_regs.rax;
2270 }
Denys Vlasenkoafea7dd2013-02-12 11:52:35 +01002271 /* Careful: is_negated_errno() works only on longs */
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +01002272 if (check_errno && is_negated_errno_x32(rax)) {
Denys Vlasenkoafea7dd2013-02-12 11:52:35 +01002273 tcp->u_rval = -1;
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +01002274 u_error = -rax;
Denys Vlasenkoafea7dd2013-02-12 11:52:35 +01002275 }
2276 else {
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +01002277 tcp->u_rval = rax; /* truncating */
2278 tcp->u_lrval = rax;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002279 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002280#elif defined(IA64)
Denys Vlasenkoc09646a2013-07-01 12:28:17 +02002281 if (ia64_ia32mode) {
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002282 int err;
2283
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002284 err = (int)ia64_r8;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002285 if (check_errno && is_negated_errno(err)) {
2286 tcp->u_rval = -1;
2287 u_error = -err;
2288 }
2289 else {
2290 tcp->u_rval = err;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002291 }
2292 } else {
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002293 if (check_errno && ia64_r10) {
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002294 tcp->u_rval = -1;
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002295 u_error = ia64_r8;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002296 } else {
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002297 tcp->u_rval = ia64_r8;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002298 }
2299 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002300#elif defined(MIPS)
Denys Vlasenkod22213a2013-02-13 17:52:31 +01002301 if (check_errno && mips_a3) {
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002302 tcp->u_rval = -1;
Denys Vlasenkod22213a2013-02-13 17:52:31 +01002303 u_error = mips_r2;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002304 } else {
Denys Vlasenkod22213a2013-02-13 17:52:31 +01002305 tcp->u_rval = mips_r2;
H.J. Ludd0130b2012-04-16 12:16:45 +02002306# if defined(LINUX_MIPSN32)
Denys Vlasenkod22213a2013-02-13 17:52:31 +01002307 tcp->u_lrval = mips_r2;
H.J. Ludd0130b2012-04-16 12:16:45 +02002308# endif
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002309 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002310#elif defined(POWERPC)
Denys Vlasenko44a6d042013-06-28 16:47:38 +02002311 if (check_errno && (ppc_regs.ccr & 0x10000000)) {
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002312 tcp->u_rval = -1;
Denys Vlasenko44a6d042013-06-28 16:47:38 +02002313 u_error = ppc_regs.gpr[3];
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002314 }
2315 else {
Denys Vlasenko44a6d042013-06-28 16:47:38 +02002316 tcp->u_rval = ppc_regs.gpr[3];
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002317 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002318#elif defined(M68K)
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002319 if (check_errno && is_negated_errno(m68k_d0)) {
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002320 tcp->u_rval = -1;
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002321 u_error = -m68k_d0;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002322 }
2323 else {
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002324 tcp->u_rval = m68k_d0;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002325 }
Steve McIntyre890a5ca2012-11-10 11:24:48 +00002326#elif defined(ARM) || defined(AARCH64)
2327# if defined(AARCH64)
2328 if (tcp->currpers == 1) {
2329 if (check_errno && is_negated_errno(aarch64_regs.regs[0])) {
2330 tcp->u_rval = -1;
2331 u_error = -aarch64_regs.regs[0];
2332 }
2333 else {
2334 tcp->u_rval = aarch64_regs.regs[0];
2335 }
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002336 }
Steve McIntyre890a5ca2012-11-10 11:24:48 +00002337 else
Denys Vlasenko28ac68f2013-02-08 12:38:51 +01002338# endif
Steve McIntyre890a5ca2012-11-10 11:24:48 +00002339 {
Denys Vlasenko401374e2013-02-06 18:24:39 +01002340 if (check_errno && is_negated_errno(arm_regs.ARM_r0)) {
Steve McIntyre890a5ca2012-11-10 11:24:48 +00002341 tcp->u_rval = -1;
Denys Vlasenko401374e2013-02-06 18:24:39 +01002342 u_error = -arm_regs.ARM_r0;
Steve McIntyre890a5ca2012-11-10 11:24:48 +00002343 }
2344 else {
Denys Vlasenko401374e2013-02-06 18:24:39 +01002345 tcp->u_rval = arm_regs.ARM_r0;
Steve McIntyre890a5ca2012-11-10 11:24:48 +00002346 }
Steve McIntyred8d3bd32012-10-24 17:58:16 +01002347 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002348#elif defined(AVR32)
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +01002349 if (check_errno && avr32_regs.r12 && (unsigned) -avr32_regs.r12 < nerrnos) {
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002350 tcp->u_rval = -1;
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +01002351 u_error = -avr32_regs.r12;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002352 }
2353 else {
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +01002354 tcp->u_rval = avr32_regs.r12;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002355 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002356#elif defined(BFIN)
Denys Vlasenkod22213a2013-02-13 17:52:31 +01002357 if (check_errno && is_negated_errno(bfin_r0)) {
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002358 tcp->u_rval = -1;
Denys Vlasenkod22213a2013-02-13 17:52:31 +01002359 u_error = -bfin_r0;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002360 } else {
Denys Vlasenkod22213a2013-02-13 17:52:31 +01002361 tcp->u_rval = bfin_r0;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002362 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002363#elif defined(ALPHA)
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002364 if (check_errno && alpha_a3) {
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002365 tcp->u_rval = -1;
Denys Vlasenkod22213a2013-02-13 17:52:31 +01002366 u_error = alpha_r0;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002367 }
2368 else {
Denys Vlasenkod22213a2013-02-13 17:52:31 +01002369 tcp->u_rval = alpha_r0;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002370 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002371#elif defined(SPARC)
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +01002372 if (check_errno && sparc_regs.psr & PSR_C) {
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002373 tcp->u_rval = -1;
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +01002374 u_error = sparc_regs.u_regs[U_REG_O0];
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002375 }
2376 else {
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +01002377 tcp->u_rval = sparc_regs.u_regs[U_REG_O0];
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002378 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002379#elif defined(SPARC64)
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +01002380 if (check_errno && sparc_regs.tstate & 0x1100000000UL) {
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002381 tcp->u_rval = -1;
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +01002382 u_error = sparc_regs.u_regs[U_REG_O0];
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002383 }
2384 else {
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +01002385 tcp->u_rval = sparc_regs.u_regs[U_REG_O0];
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002386 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002387#elif defined(HPPA)
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002388 if (check_errno && is_negated_errno(hppa_r28)) {
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002389 tcp->u_rval = -1;
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002390 u_error = -hppa_r28;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002391 }
2392 else {
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002393 tcp->u_rval = hppa_r28;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002394 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002395#elif defined(SH)
Denys Vlasenkod22213a2013-02-13 17:52:31 +01002396 if (check_errno && is_negated_errno(sh_r0)) {
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002397 tcp->u_rval = -1;
Denys Vlasenkod22213a2013-02-13 17:52:31 +01002398 u_error = -sh_r0;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002399 }
2400 else {
Denys Vlasenkod22213a2013-02-13 17:52:31 +01002401 tcp->u_rval = sh_r0;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002402 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002403#elif defined(SH64)
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002404 if (check_errno && is_negated_errno(sh64_r9)) {
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002405 tcp->u_rval = -1;
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002406 u_error = -sh64_r9;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002407 }
2408 else {
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002409 tcp->u_rval = sh64_r9;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002410 }
James Hogan5f999a82013-02-22 14:44:10 +00002411#elif defined(METAG)
2412 /* result pointer in D0Re0 (D0.0) */
2413 if (check_errno && is_negated_errno(metag_regs.dx[0][0])) {
2414 tcp->u_rval = -1;
2415 u_error = -metag_regs.dx[0][0];
2416 }
2417 else {
2418 tcp->u_rval = metag_regs.dx[0][0];
2419 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002420#elif defined(CRISV10) || defined(CRISV32)
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002421 if (check_errno && cris_r10 && (unsigned) -cris_r10 < nerrnos) {
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002422 tcp->u_rval = -1;
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002423 u_error = -cris_r10;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002424 }
2425 else {
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002426 tcp->u_rval = cris_r10;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002427 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002428#elif defined(TILE)
Chris Metcalf0b99a8a2013-02-05 17:48:33 +01002429 /*
2430 * The standard tile calling convention returns the value (or negative
2431 * errno) in r0, and zero (or positive errno) in r1.
2432 * Until at least kernel 3.8, however, the r1 value is not reflected
2433 * in ptregs at this point, so we use r0 here.
2434 */
2435 if (check_errno && is_negated_errno(tile_regs.regs[0])) {
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002436 tcp->u_rval = -1;
Chris Metcalf0b99a8a2013-02-05 17:48:33 +01002437 u_error = -tile_regs.regs[0];
2438 } else {
2439 tcp->u_rval = tile_regs.regs[0];
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002440 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002441#elif defined(MICROBLAZE)
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002442 if (check_errno && is_negated_errno(microblaze_r3)) {
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002443 tcp->u_rval = -1;
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002444 u_error = -microblaze_r3;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002445 }
2446 else {
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002447 tcp->u_rval = microblaze_r3;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002448 }
Christian Svensson492f81f2013-02-14 13:26:27 +01002449#elif defined(OR1K)
2450 if (check_errno && is_negated_errno(or1k_regs.gpr[11])) {
2451 tcp->u_rval = -1;
2452 u_error = -or1k_regs.gpr[11];
2453 }
2454 else {
2455 tcp->u_rval = or1k_regs.gpr[11];
2456 }
Chris Zankel8f636ed2013-03-25 10:22:07 -07002457#elif defined(XTENSA)
2458 if (check_errno && is_negated_errno(xtensa_a2)) {
2459 tcp->u_rval = -1;
2460 u_error = -xtensa_a2;
2461 }
2462 else {
2463 tcp->u_rval = xtensa_a2;
2464 }
Vineet Gupta7daacbb2013-08-16 12:47:06 +05302465#elif defined(ARC)
2466 if (check_errno && is_negated_errno(arc_regs.scratch.r0)) {
2467 tcp->u_rval = -1;
2468 u_error = -arc_regs.scratch.r0;
2469 }
2470 else {
2471 tcp->u_rval = arc_regs.scratch.r0;
2472 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002473#endif
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002474 tcp->u_error = u_error;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002475}
2476
2477static void
2478dumpio(struct tcb *tcp)
2479{
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01002480 int (*func)();
2481
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002482 if (syserror(tcp))
2483 return;
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +01002484 if ((unsigned long) tcp->u_arg[0] >= num_quals)
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002485 return;
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01002486 func = tcp->s_ent->sys_func;
2487 if (func == printargs)
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002488 return;
2489 if (qual_flags[tcp->u_arg[0]] & QUAL_READ) {
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01002490 if (func == sys_read ||
2491 func == sys_pread ||
2492 func == sys_recv ||
2493 func == sys_recvfrom)
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002494 dumpstr(tcp, tcp->u_arg[1], tcp->u_rval);
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01002495 else if (func == sys_readv)
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002496 dumpiov(tcp, tcp->u_arg[2], tcp->u_arg[1]);
2497 return;
2498 }
2499 if (qual_flags[tcp->u_arg[0]] & QUAL_WRITE) {
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01002500 if (func == sys_write ||
2501 func == sys_pwrite ||
2502 func == sys_send ||
2503 func == sys_sendto)
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002504 dumpstr(tcp, tcp->u_arg[1], tcp->u_arg[2]);
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01002505 else if (func == sys_writev)
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002506 dumpiov(tcp, tcp->u_arg[2], tcp->u_arg[1]);
2507 return;
2508 }
2509}
2510
Denys Vlasenkoed4f4f02011-08-22 11:54:06 +02002511static int
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002512trace_syscall_exiting(struct tcb *tcp)
Pavel Machek4dc3b142000-02-01 17:58:41 +00002513{
2514 int sys_res;
2515 struct timeval tv;
Denys Vlasenko1a5b5a72011-08-25 00:29:56 +02002516 int res;
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002517 long u_error;
Pavel Machek4dc3b142000-02-01 17:58:41 +00002518
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002519 /* Measure the exit time as early as possible to avoid errors. */
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01002520 if (Tflag || cflag)
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002521 gettimeofday(&tv, NULL);
Pavel Machek4dc3b142000-02-01 17:58:41 +00002522
Masatake YAMATOed69fc22014-04-16 15:33:35 +09002523#ifdef USE_LIBUNWIND
2524 if (stack_trace_enabled) {
2525 if (tcp->s_ent->sys_flags & STACKTRACE_INVALIDATE_CACHE)
2526 unwind_cache_invalidate(tcp);
2527 }
2528#endif
2529
Dmitry V. Levina5a839a2011-12-23 00:50:49 +00002530#if SUPPORTED_PERSONALITIES > 1
2531 update_personality(tcp, tcp->currpers);
2532#endif
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01002533 res = (get_regs_error ? -1 : get_syscall_result(tcp));
Denys Vlasenkobb6bb5c2012-03-20 17:10:35 +01002534 if (res == 1) {
2535 syscall_fixup_on_sysexit(tcp); /* never fails */
Denys Vlasenkoc956ef02013-02-16 14:25:56 +01002536 get_error(tcp); /* never fails */
2537 if (need_fork_exec_workarounds)
2538 syscall_fixup_for_fork_exec(tcp);
Denys Vlasenko2a3d2752013-05-14 16:07:46 +02002539 if (filtered(tcp) || hide_log_until_execve)
Denys Vlasenkoc956ef02013-02-16 14:25:56 +01002540 goto ret;
Pavel Machek4dc3b142000-02-01 17:58:41 +00002541 }
2542
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002543 if (cflag) {
Dmitry V. Levinac5133d2014-05-29 18:10:00 +00002544 count_syscall(tcp, &tv);
Denys Vlasenko7b609d52011-06-22 14:32:43 +02002545 if (cflag == CFLAG_ONLY_STATS) {
Denys Vlasenko3b738812011-08-22 02:06:35 +02002546 goto ret;
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002547 }
2548 }
2549
Denys Vlasenkoa44f9692012-03-21 11:06:20 +01002550 /* If not in -ff mode, and printing_tcp != tcp,
2551 * then the log currently does not end with output
2552 * of _our syscall entry_, but with something else.
2553 * We need to say which syscall's return is this.
2554 *
2555 * Forced reprinting via TCB_REPRINT is used only by
2556 * "strace -ff -oLOG test/threaded_execve" corner case.
2557 * It's the only case when -ff mode needs reprinting.
2558 */
2559 if ((followfork < 2 && printing_tcp != tcp) || (tcp->flags & TCB_REPRINT)) {
2560 tcp->flags &= ~TCB_REPRINT;
2561 printleader(tcp);
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01002562 if (tcp->qual_flg & UNDEFINED_SCNO)
Denys Vlasenko7270de52013-02-21 15:46:34 +01002563 tprintf("<... %s resumed> ", undefined_scno_name(tcp));
Denys Vlasenkoa44f9692012-03-21 11:06:20 +01002564 else
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01002565 tprintf("<... %s resumed> ", tcp->s_ent->sys_name);
Denys Vlasenkoa44f9692012-03-21 11:06:20 +01002566 }
2567 printing_tcp = tcp;
2568
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002569 if (res != 1) {
Denys Vlasenkoa44f9692012-03-21 11:06:20 +01002570 /* There was error in one of prior ptrace ops */
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002571 tprints(") ");
Denys Vlasenko102ec492011-08-25 01:27:59 +02002572 tabto();
Denys Vlasenko000b6012012-01-28 01:25:03 +01002573 tprints("= ? <unavailable>\n");
Denys Vlasenko7de265d2012-03-13 11:44:31 +01002574 line_ended();
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002575 tcp->flags &= ~TCB_INSYSCALL;
2576 return res;
2577 }
2578
Denys Vlasenkoa44f9692012-03-21 11:06:20 +01002579 sys_res = 0;
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01002580 if (tcp->qual_flg & QUAL_RAW) {
Denys Vlasenkoa44f9692012-03-21 11:06:20 +01002581 /* sys_res = printargs(tcp); - but it's nop on sysexit */
Denys Vlasenko7de265d2012-03-13 11:44:31 +01002582 } else {
Denys Vlasenko3b738812011-08-22 02:06:35 +02002583 /* FIXME: not_failing_only (IOW, option -z) is broken:
2584 * failure of syscall is known only after syscall return.
2585 * Thus we end up with something like this on, say, ENOENT:
2586 * open("doesnt_exist", O_RDONLY <unfinished ...>
2587 * {next syscall decode}
2588 * whereas the intended result is that open(...) line
2589 * is not shown at all.
2590 */
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002591 if (not_failing_only && tcp->u_error)
Denys Vlasenko3b738812011-08-22 02:06:35 +02002592 goto ret; /* ignore failed syscalls */
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01002593 sys_res = tcp->s_ent->sys_func(tcp);
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002594 }
2595
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002596 tprints(") ");
Denys Vlasenko102ec492011-08-25 01:27:59 +02002597 tabto();
Denys Vlasenko3b738812011-08-22 02:06:35 +02002598 u_error = tcp->u_error;
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01002599 if (tcp->qual_flg & QUAL_RAW) {
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002600 if (u_error)
2601 tprintf("= -1 (errno %ld)", u_error);
2602 else
2603 tprintf("= %#lx", tcp->u_rval);
2604 }
2605 else if (!(sys_res & RVAL_NONE) && u_error) {
2606 switch (u_error) {
Denys Vlasenkofe585652012-01-12 11:26:34 +01002607 /* Blocked signals do not interrupt any syscalls.
2608 * In this case syscalls don't return ERESTARTfoo codes.
2609 *
2610 * Deadly signals set to SIG_DFL interrupt syscalls
2611 * and kill the process regardless of which of the codes below
2612 * is returned by the interrupted syscall.
2613 * In some cases, kernel forces a kernel-generated deadly
2614 * signal to be unblocked and set to SIG_DFL (and thus cause
2615 * death) if it is blocked or SIG_IGNed: for example, SIGSEGV
2616 * or SIGILL. (The alternative is to leave process spinning
2617 * forever on the faulty instruction - not useful).
2618 *
2619 * SIG_IGNed signals and non-deadly signals set to SIG_DFL
2620 * (for example, SIGCHLD, SIGWINCH) interrupt syscalls,
2621 * but kernel will always restart them.
2622 */
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002623 case ERESTARTSYS:
Denys Vlasenkofe585652012-01-12 11:26:34 +01002624 /* Most common type of signal-interrupted syscall exit code.
2625 * The system call will be restarted with the same arguments
2626 * if SA_RESTART is set; otherwise, it will fail with EINTR.
2627 */
2628 tprints("= ? ERESTARTSYS (To be restarted if SA_RESTART is set)");
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002629 break;
2630 case ERESTARTNOINTR:
Denys Vlasenkofe585652012-01-12 11:26:34 +01002631 /* Rare. For example, fork() returns this if interrupted.
2632 * SA_RESTART is ignored (assumed set): the restart is unconditional.
2633 */
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002634 tprints("= ? ERESTARTNOINTR (To be restarted)");
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002635 break;
2636 case ERESTARTNOHAND:
Denys Vlasenkofe585652012-01-12 11:26:34 +01002637 /* pause(), rt_sigsuspend() etc use this code.
2638 * SA_RESTART is ignored (assumed not set):
2639 * syscall won't restart (will return EINTR instead)
Denys Vlasenko30c03232013-02-19 16:59:26 +01002640 * even after signal with SA_RESTART set. However,
2641 * after SIG_IGN or SIG_DFL signal it will restart
2642 * (thus the name "restart only if has no handler").
Denys Vlasenkofe585652012-01-12 11:26:34 +01002643 */
Denys Vlasenkoaba62922013-03-05 16:56:35 +01002644 tprints("= ? ERESTARTNOHAND (To be restarted if no handler)");
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002645 break;
2646 case ERESTART_RESTARTBLOCK:
Denys Vlasenkofe585652012-01-12 11:26:34 +01002647 /* Syscalls like nanosleep(), poll() which can't be
2648 * restarted with their original arguments use this
2649 * code. Kernel will execute restart_syscall() instead,
2650 * which changes arguments before restarting syscall.
2651 * SA_RESTART is ignored (assumed not set) similarly
2652 * to ERESTARTNOHAND. (Kernel can't honor SA_RESTART
2653 * since restart data is saved in "restart block"
2654 * in task struct, and if signal handler uses a syscall
2655 * which in turn saves another such restart block,
2656 * old data is lost and restart becomes impossible)
2657 */
2658 tprints("= ? ERESTART_RESTARTBLOCK (Interrupted by signal)");
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002659 break;
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002660 default:
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002661 if (u_error < 0)
Denys Vlasenkoa7949742011-08-21 17:26:55 +02002662 tprintf("= -1 E??? (errno %ld)", u_error);
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002663 else if (u_error < nerrnos)
Denys Vlasenkoa7949742011-08-21 17:26:55 +02002664 tprintf("= -1 %s (%s)", errnoent[u_error],
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002665 strerror(u_error));
2666 else
Denys Vlasenkoa7949742011-08-21 17:26:55 +02002667 tprintf("= -1 ERRNO_%ld (%s)", u_error,
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002668 strerror(u_error));
2669 break;
2670 }
2671 if ((sys_res & RVAL_STR) && tcp->auxstr)
2672 tprintf(" (%s)", tcp->auxstr);
2673 }
2674 else {
2675 if (sys_res & RVAL_NONE)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002676 tprints("= ?");
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002677 else {
2678 switch (sys_res & RVAL_MASK) {
2679 case RVAL_HEX:
2680 tprintf("= %#lx", tcp->u_rval);
2681 break;
2682 case RVAL_OCTAL:
2683 tprintf("= %#lo", tcp->u_rval);
2684 break;
2685 case RVAL_UDECIMAL:
2686 tprintf("= %lu", tcp->u_rval);
2687 break;
2688 case RVAL_DECIMAL:
2689 tprintf("= %ld", tcp->u_rval);
2690 break;
Zubin Mithra64aa1b12014-06-04 08:30:41 +05302691 case RVAL_FD:
2692 if (show_fd_path) {
2693 tprints("= ");
2694 printfd(tcp, tcp->u_rval);
2695 }
2696 else
2697 tprintf("= %ld", tcp->u_rval);
2698 break;
H.J. Ludd0130b2012-04-16 12:16:45 +02002699#if defined(LINUX_MIPSN32) || defined(X32)
2700 /*
2701 case RVAL_LHEX:
2702 tprintf("= %#llx", tcp->u_lrval);
2703 break;
2704 case RVAL_LOCTAL:
2705 tprintf("= %#llo", tcp->u_lrval);
2706 break;
2707 */
2708 case RVAL_LUDECIMAL:
2709 tprintf("= %llu", tcp->u_lrval);
2710 break;
2711 /*
2712 case RVAL_LDECIMAL:
2713 tprintf("= %lld", tcp->u_lrval);
2714 break;
2715 */
2716#endif
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002717 default:
2718 fprintf(stderr,
2719 "invalid rval format\n");
2720 break;
2721 }
2722 }
2723 if ((sys_res & RVAL_STR) && tcp->auxstr)
2724 tprintf(" (%s)", tcp->auxstr);
2725 }
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01002726 if (Tflag) {
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002727 tv_sub(&tv, &tv, &tcp->etime);
2728 tprintf(" <%ld.%06ld>",
2729 (long) tv.tv_sec, (long) tv.tv_usec);
2730 }
Denys Vlasenko000b6012012-01-28 01:25:03 +01002731 tprints("\n");
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002732 dumpio(tcp);
Denys Vlasenko7de265d2012-03-13 11:44:31 +01002733 line_ended();
2734
Luca Clementi327064b2013-07-23 00:11:35 -07002735#ifdef USE_LIBUNWIND
2736 if (stack_trace_enabled)
Masatake YAMATO61413922014-04-16 15:33:02 +09002737 unwind_print_stacktrace(tcp);
Luca Clementi327064b2013-07-23 00:11:35 -07002738#endif
2739
Denys Vlasenko3b738812011-08-22 02:06:35 +02002740 ret:
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002741 tcp->flags &= ~TCB_INSYSCALL;
2742 return 0;
2743}
2744
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002745int
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002746trace_syscall(struct tcb *tcp)
2747{
2748 return exiting(tcp) ?
2749 trace_syscall_exiting(tcp) : trace_syscall_entering(tcp);
2750}