blob: e109478eef5e8e157e2e3ffe1879cd2cd3c97ee3 [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>
40# ifndef PTRACE_PEEKUSR
41# define PTRACE_PEEKUSR PTRACE_PEEKUSER
42# endif
Wichert Akkermanfaf72222000-02-19 23:59:03 +000043#elif defined(HAVE_LINUX_PTRACE_H)
Denys Vlasenko523635f2012-02-25 02:44:25 +010044# undef PTRACE_SYSCALL
Roland McGrathce9f0742004-03-01 21:29:22 +000045# ifdef HAVE_STRUCT_IA64_FPREG
46# define ia64_fpreg XXX_ia64_fpreg
47# endif
48# ifdef HAVE_STRUCT_PT_ALL_USER_REGS
49# define pt_all_user_regs XXX_pt_all_user_regs
50# endif
Denys Vlasenko523635f2012-02-25 02:44:25 +010051# include <linux/ptrace.h>
Roland McGrathce9f0742004-03-01 21:29:22 +000052# undef ia64_fpreg
53# undef pt_all_user_regs
Wichert Akkerman15dea971999-10-06 13:06:34 +000054#endif
55
Denys Vlasenko84703742012-02-25 02:38:52 +010056#if defined(SPARC64)
Roland McGrath6d1a65c2004-07-12 07:44:08 +000057# undef PTRACE_GETREGS
58# define PTRACE_GETREGS PTRACE_GETREGS64
59# undef PTRACE_SETREGS
60# define PTRACE_SETREGS PTRACE_SETREGS64
Denys Vlasenko84703742012-02-25 02:38:52 +010061#endif
Roland McGrath6d1a65c2004-07-12 07:44:08 +000062
Denys Vlasenko84703742012-02-25 02:38:52 +010063#if defined(IA64)
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +000064# include <asm/ptrace_offsets.h>
65# include <asm/rse.h>
66#endif
67
Dmitry V. Levin32c049a2013-03-18 00:59:27 +000068/* for struct iovec */
69#include <sys/uio.h>
70/* for NT_PRSTATUS */
71#ifdef HAVE_ELF_H
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +010072# include <elf.h>
73#endif
74
Steve McIntyred8d3bd32012-10-24 17:58:16 +010075#if defined(AARCH64)
76# include <asm/ptrace.h>
James Hogan5f999a82013-02-22 14:44:10 +000077#endif
78
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000079#ifndef ERESTARTSYS
Denys Vlasenko523635f2012-02-25 02:44:25 +010080# define ERESTARTSYS 512
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000081#endif
Denys Vlasenko3da96932012-03-17 03:17:15 +010082#ifndef ERESTARTNOINTR
Denys Vlasenko523635f2012-02-25 02:44:25 +010083# define ERESTARTNOINTR 513
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000084#endif
Denys Vlasenko3da96932012-03-17 03:17:15 +010085#ifndef ERESTARTNOHAND
86# define ERESTARTNOHAND 514 /* restart if no handler */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000087#endif
Denys Vlasenko3da96932012-03-17 03:17:15 +010088#ifndef ERESTART_RESTARTBLOCK
Denys Vlasenko523635f2012-02-25 02:44:25 +010089# define ERESTART_RESTARTBLOCK 516 /* restart by calling sys_restart_syscall */
Roland McGrath9c555e72003-07-09 09:47:59 +000090#endif
Denys Vlasenko523635f2012-02-25 02:44:25 +010091
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000092#ifndef NSIG
Denys Vlasenko523635f2012-02-25 02:44:25 +010093# warning: NSIG is not defined, using 32
94# define NSIG 32
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000095#endif
96#ifdef ARM
Denys Vlasenko041b3ee2011-08-18 12:48:56 +020097/* Ugh. Is this really correct? ARM has no RT signals?! */
Denys Vlasenko523635f2012-02-25 02:44:25 +010098# undef NSIG
99# define NSIG 32
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000100#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000101
102#include "syscall.h"
103
104/* Define these shorthand notations to simplify the syscallent files. */
Roland McGrath2fe7b132005-07-05 03:25:35 +0000105#define TD TRACE_DESC
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000106#define TF TRACE_FILE
107#define TI TRACE_IPC
108#define TN TRACE_NETWORK
109#define TP TRACE_PROCESS
110#define TS TRACE_SIGNAL
Namhyung Kim96792962012-10-24 11:41:57 +0900111#define TM TRACE_MEMORY
Dmitry V. Levin50a218d2011-01-18 17:36:20 +0000112#define NF SYSCALL_NEVER_FAILS
Denys Vlasenkoac1ce772011-08-23 13:24:17 +0200113#define MA MAX_ARGS
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000114
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100115const struct_sysent sysent0[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000116#include "syscallent.h"
117};
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000118
Denys Vlasenkoa9fe13c2013-02-22 13:26:10 +0100119#if SUPPORTED_PERSONALITIES > 1
120static const struct_sysent sysent1[] = {
Denys Vlasenko523635f2012-02-25 02:44:25 +0100121# include "syscallent1.h"
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000122};
Denys Vlasenko39fca622011-08-20 02:12:33 +0200123#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000124
Denys Vlasenkoa9fe13c2013-02-22 13:26:10 +0100125#if SUPPORTED_PERSONALITIES > 2
126static const struct_sysent sysent2[] = {
Denys Vlasenko523635f2012-02-25 02:44:25 +0100127# include "syscallent2.h"
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000128};
Denys Vlasenko39fca622011-08-20 02:12:33 +0200129#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000130
131/* Now undef them since short defines cause wicked namespace pollution. */
Roland McGrath2fe7b132005-07-05 03:25:35 +0000132#undef TD
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000133#undef TF
134#undef TI
135#undef TN
136#undef TP
137#undef TS
Namhyung Kim96792962012-10-24 11:41:57 +0900138#undef TM
Dmitry V. Levin50a218d2011-01-18 17:36:20 +0000139#undef NF
Denys Vlasenkoac1ce772011-08-23 13:24:17 +0200140#undef MA
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000141
Denys Vlasenko39fca622011-08-20 02:12:33 +0200142/*
143 * `ioctlent.h' may be generated from `ioctlent.raw' by the auxiliary
144 * program `ioctlsort', such that the list is sorted by the `code' field.
145 * This has the side-effect of resolving the _IO.. macros into
146 * plain integers, eliminating the need to include here everything
147 * in "/usr/include".
148 */
149
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100150const char *const errnoent0[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000151#include "errnoent.h"
152};
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100153const char *const signalent0[] = {
Denys Vlasenko39fca622011-08-20 02:12:33 +0200154#include "signalent.h"
155};
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100156const struct_ioctlent ioctlent0[] = {
Denys Vlasenko39fca622011-08-20 02:12:33 +0200157#include "ioctlent.h"
158};
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000159
Denys Vlasenkoa9fe13c2013-02-22 13:26:10 +0100160#if SUPPORTED_PERSONALITIES > 1
Roland McGrathee36ce12004-09-04 03:53:10 +0000161static const char *const errnoent1[] = {
Denys Vlasenko523635f2012-02-25 02:44:25 +0100162# include "errnoent1.h"
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000163};
Denys Vlasenko39fca622011-08-20 02:12:33 +0200164static const char *const signalent1[] = {
Denys Vlasenko523635f2012-02-25 02:44:25 +0100165# include "signalent1.h"
Denys Vlasenko39fca622011-08-20 02:12:33 +0200166};
Denys Vlasenkoa9fe13c2013-02-22 13:26:10 +0100167static const struct_ioctlent ioctlent1[] = {
Denys Vlasenko523635f2012-02-25 02:44:25 +0100168# include "ioctlent1.h"
Denys Vlasenko39fca622011-08-20 02:12:33 +0200169};
Denys Vlasenko39fca622011-08-20 02:12:33 +0200170#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000171
Denys Vlasenkoa9fe13c2013-02-22 13:26:10 +0100172#if SUPPORTED_PERSONALITIES > 2
Roland McGrathee36ce12004-09-04 03:53:10 +0000173static const char *const errnoent2[] = {
Denys Vlasenko523635f2012-02-25 02:44:25 +0100174# include "errnoent2.h"
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000175};
Denys Vlasenko39fca622011-08-20 02:12:33 +0200176static const char *const signalent2[] = {
Denys Vlasenko523635f2012-02-25 02:44:25 +0100177# include "signalent2.h"
Denys Vlasenko39fca622011-08-20 02:12:33 +0200178};
Denys Vlasenkoa9fe13c2013-02-22 13:26:10 +0100179static const struct_ioctlent ioctlent2[] = {
Denys Vlasenko523635f2012-02-25 02:44:25 +0100180# include "ioctlent2.h"
Denys Vlasenko39fca622011-08-20 02:12:33 +0200181};
Denys Vlasenko39fca622011-08-20 02:12:33 +0200182#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000183
Dmitry V. Levine6f55242013-02-26 22:02:30 +0000184enum {
185 nsyscalls0 = ARRAY_SIZE(sysent0)
186#if SUPPORTED_PERSONALITIES > 1
187 , nsyscalls1 = ARRAY_SIZE(sysent1)
188# if SUPPORTED_PERSONALITIES > 2
189 , nsyscalls2 = ARRAY_SIZE(sysent2)
190# endif
191#endif
192};
193
194enum {
195 nerrnos0 = ARRAY_SIZE(errnoent0)
196#if SUPPORTED_PERSONALITIES > 1
197 , nerrnos1 = ARRAY_SIZE(errnoent1)
198# if SUPPORTED_PERSONALITIES > 2
199 , nerrnos2 = ARRAY_SIZE(errnoent2)
200# endif
201#endif
202};
203
204enum {
205 nsignals0 = ARRAY_SIZE(signalent0)
206#if SUPPORTED_PERSONALITIES > 1
207 , nsignals1 = ARRAY_SIZE(signalent1)
208# if SUPPORTED_PERSONALITIES > 2
209 , nsignals2 = ARRAY_SIZE(signalent2)
210# endif
211#endif
212};
213
214enum {
215 nioctlents0 = ARRAY_SIZE(ioctlent0)
216#if SUPPORTED_PERSONALITIES > 1
217 , nioctlents1 = ARRAY_SIZE(ioctlent1)
218# if SUPPORTED_PERSONALITIES > 2
219 , nioctlents2 = ARRAY_SIZE(ioctlent2)
220# endif
221#endif
222};
223
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100224#if SUPPORTED_PERSONALITIES > 1
Denys Vlasenkoa9fe13c2013-02-22 13:26:10 +0100225const struct_sysent *sysent = sysent0;
Denys Vlasenko9fd4f962012-03-19 09:36:42 +0100226const char *const *errnoent = errnoent0;
227const char *const *signalent = signalent0;
Denys Vlasenkoa9fe13c2013-02-22 13:26:10 +0100228const struct_ioctlent *ioctlent = ioctlent0;
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100229#endif
Denys Vlasenko9fd4f962012-03-19 09:36:42 +0100230unsigned nsyscalls = nsyscalls0;
231unsigned nerrnos = nerrnos0;
232unsigned nsignals = nsignals0;
233unsigned nioctlents = nioctlents0;
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100234
235unsigned num_quals;
236qualbits_t *qual_vec[SUPPORTED_PERSONALITIES];
237
238static const unsigned nsyscall_vec[SUPPORTED_PERSONALITIES] = {
239 nsyscalls0,
240#if SUPPORTED_PERSONALITIES > 1
241 nsyscalls1,
242#endif
243#if SUPPORTED_PERSONALITIES > 2
244 nsyscalls2,
245#endif
246};
247static const struct_sysent *const sysent_vec[SUPPORTED_PERSONALITIES] = {
248 sysent0,
249#if SUPPORTED_PERSONALITIES > 1
250 sysent1,
251#endif
252#if SUPPORTED_PERSONALITIES > 2
253 sysent2,
254#endif
255};
256
257enum {
258 MAX_NSYSCALLS1 = (nsyscalls0
259#if SUPPORTED_PERSONALITIES > 1
260 > nsyscalls1 ? nsyscalls0 : nsyscalls1
261#endif
262 ),
263 MAX_NSYSCALLS2 = (MAX_NSYSCALLS1
264#if SUPPORTED_PERSONALITIES > 2
265 > nsyscalls2 ? MAX_NSYSCALLS1 : nsyscalls2
266#endif
267 ),
268 MAX_NSYSCALLS = MAX_NSYSCALLS2,
269 /* We are ready for arches with up to 255 signals,
270 * even though the largest known signo is on MIPS and it is 128.
271 * The number of existing syscalls on all arches is
272 * larger that 255 anyway, so it is just a pedantic matter.
273 */
274 MIN_QUALS = MAX_NSYSCALLS > 255 ? MAX_NSYSCALLS : 255
275};
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000276
Denys Vlasenko9fd4f962012-03-19 09:36:42 +0100277#if SUPPORTED_PERSONALITIES > 1
Denys Vlasenkoae8643e2013-02-15 14:55:14 +0100278unsigned current_personality;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000279
Denys Vlasenkoae8643e2013-02-15 14:55:14 +0100280# ifndef current_wordsize
281unsigned current_wordsize;
282static const int personality_wordsize[SUPPORTED_PERSONALITIES] = {
Roland McGrath4b2dcca2006-01-12 10:18:53 +0000283 PERSONALITY0_WORDSIZE,
Roland McGrath4b2dcca2006-01-12 10:18:53 +0000284 PERSONALITY1_WORDSIZE,
Denys Vlasenko9fd4f962012-03-19 09:36:42 +0100285# if SUPPORTED_PERSONALITIES > 2
Roland McGrath4b2dcca2006-01-12 10:18:53 +0000286 PERSONALITY2_WORDSIZE,
Denys Vlasenko9fd4f962012-03-19 09:36:42 +0100287# endif
Denys Vlasenko5c774b22011-08-20 01:50:09 +0200288};
Denys Vlasenkoae8643e2013-02-15 14:55:14 +0100289# endif
Roland McGrath4b2dcca2006-01-12 10:18:53 +0000290
Denys Vlasenko5c774b22011-08-20 01:50:09 +0200291void
Dmitry V. Levin3abe8b22006-12-20 22:37:21 +0000292set_personality(int personality)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000293{
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100294 nsyscalls = nsyscall_vec[personality];
295 sysent = sysent_vec[personality];
296
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000297 switch (personality) {
298 case 0:
299 errnoent = errnoent0;
300 nerrnos = nerrnos0;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000301 ioctlent = ioctlent0;
302 nioctlents = nioctlents0;
303 signalent = signalent0;
304 nsignals = nsignals0;
305 break;
306
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000307 case 1:
308 errnoent = errnoent1;
309 nerrnos = nerrnos1;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000310 ioctlent = ioctlent1;
311 nioctlents = nioctlents1;
312 signalent = signalent1;
313 nsignals = nsignals1;
314 break;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000315
Denys Vlasenkoa9fe13c2013-02-22 13:26:10 +0100316# if SUPPORTED_PERSONALITIES > 2
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000317 case 2:
318 errnoent = errnoent2;
319 nerrnos = nerrnos2;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000320 ioctlent = ioctlent2;
321 nioctlents = nioctlents2;
322 signalent = signalent2;
323 nsignals = nsignals2;
324 break;
Denys Vlasenko9fd4f962012-03-19 09:36:42 +0100325# endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000326 }
327
328 current_personality = personality;
Denys Vlasenkoae8643e2013-02-15 14:55:14 +0100329# ifndef current_wordsize
330 current_wordsize = personality_wordsize[personality];
331# endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000332}
333
Dmitry V. Levina5a839a2011-12-23 00:50:49 +0000334static void
335update_personality(struct tcb *tcp, int personality)
336{
337 if (personality == current_personality)
338 return;
339 set_personality(personality);
340
341 if (personality == tcp->currpers)
342 return;
343 tcp->currpers = personality;
344
H.J. Lu35be5812012-04-16 13:00:01 +0200345# if defined(POWERPC64)
Dmitry V. Levina5a839a2011-12-23 00:50:49 +0000346 if (!qflag) {
347 static const char *const names[] = {"64 bit", "32 bit"};
348 fprintf(stderr, "[ Process PID=%d runs in %s mode. ]\n",
349 tcp->pid, names[personality]);
350 }
H.J. Lu35be5812012-04-16 13:00:01 +0200351# elif defined(X86_64)
352 if (!qflag) {
353 static const char *const names[] = {"64 bit", "32 bit", "x32"};
354 fprintf(stderr, "[ Process PID=%d runs in %s mode. ]\n",
355 tcp->pid, names[personality]);
356 }
H.J. Lu085e4282012-04-17 11:05:04 -0700357# elif defined(X32)
358 if (!qflag) {
359 static const char *const names[] = {"x32", "32 bit"};
360 fprintf(stderr, "[ Process PID=%d runs in %s mode. ]\n",
361 tcp->pid, names[personality]);
362 }
Steve McIntyre890a5ca2012-11-10 11:24:48 +0000363# elif defined(AARCH64)
364 if (!qflag) {
Denys Vlasenko28ac68f2013-02-08 12:38:51 +0100365 static const char *const names[] = {"32-bit", "AArch64"};
Steve McIntyre890a5ca2012-11-10 11:24:48 +0000366 fprintf(stderr, "[ Process PID=%d runs in %s mode. ]\n",
367 tcp->pid, names[personality]);
368 }
Chris Metcalf0b99a8a2013-02-05 17:48:33 +0100369# elif defined(TILE)
370 if (!qflag) {
371 static const char *const names[] = {"64-bit", "32-bit"};
372 fprintf(stderr, "[ Process PID=%d runs in %s mode. ]\n",
373 tcp->pid, names[personality]);
374 }
Denys Vlasenko523635f2012-02-25 02:44:25 +0100375# endif
Dmitry V. Levina5a839a2011-12-23 00:50:49 +0000376}
377#endif
Roland McGrathe10e62a2004-09-04 04:20:43 +0000378
Denys Vlasenkoc1540fe2013-02-21 16:17:08 +0100379static int qual_syscall(), qual_signal(), qual_desc();
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000380
Roland McGrathe10e62a2004-09-04 04:20:43 +0000381static const struct qual_options {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000382 int bitflag;
Dmitry V. Levin30145dd2010-09-06 22:08:24 +0000383 const char *option_name;
Dmitry V. Levin35d05722010-09-15 16:18:20 +0000384 int (*qualify)(const char *, int, int);
Dmitry V. Levin30145dd2010-09-06 22:08:24 +0000385 const char *argument_name;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000386} qual_options[] = {
Roland McGrath9797ceb2002-12-30 10:23:00 +0000387 { QUAL_TRACE, "trace", qual_syscall, "system call" },
388 { QUAL_TRACE, "t", qual_syscall, "system call" },
389 { QUAL_ABBREV, "abbrev", qual_syscall, "system call" },
390 { QUAL_ABBREV, "a", qual_syscall, "system call" },
391 { QUAL_VERBOSE, "verbose", qual_syscall, "system call" },
392 { QUAL_VERBOSE, "v", qual_syscall, "system call" },
393 { QUAL_RAW, "raw", qual_syscall, "system call" },
394 { QUAL_RAW, "x", qual_syscall, "system call" },
395 { QUAL_SIGNAL, "signal", qual_signal, "signal" },
396 { QUAL_SIGNAL, "signals", qual_signal, "signal" },
397 { QUAL_SIGNAL, "s", qual_signal, "signal" },
Roland McGrath9797ceb2002-12-30 10:23:00 +0000398 { QUAL_READ, "read", qual_desc, "descriptor" },
399 { QUAL_READ, "reads", qual_desc, "descriptor" },
400 { QUAL_READ, "r", qual_desc, "descriptor" },
401 { QUAL_WRITE, "write", qual_desc, "descriptor" },
402 { QUAL_WRITE, "writes", qual_desc, "descriptor" },
403 { QUAL_WRITE, "w", qual_desc, "descriptor" },
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000404 { 0, NULL, NULL, NULL },
405};
406
Roland McGrath9797ceb2002-12-30 10:23:00 +0000407static void
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100408reallocate_qual(int n)
409{
410 unsigned p;
411 qualbits_t *qp;
412 for (p = 0; p < SUPPORTED_PERSONALITIES; p++) {
413 qp = qual_vec[p] = realloc(qual_vec[p], n * sizeof(qualbits_t));
414 if (!qp)
415 die_out_of_memory();
416 memset(&qp[num_quals], 0, (n - num_quals) * sizeof(qualbits_t));
417 }
418 num_quals = n;
419}
420
421static void
Dmitry V. Levin35d05722010-09-15 16:18:20 +0000422qualify_one(int n, int bitflag, int not, int pers)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000423{
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100424 unsigned p;
Roland McGrath138c6a32006-01-12 09:50:49 +0000425
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100426 if (num_quals <= n)
427 reallocate_qual(n + 1);
Roland McGrath138c6a32006-01-12 09:50:49 +0000428
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100429 for (p = 0; p < SUPPORTED_PERSONALITIES; p++) {
430 if (pers == p || pers < 0) {
431 if (not)
432 qual_vec[p][n] &= ~bitflag;
433 else
434 qual_vec[p][n] |= bitflag;
435 }
Roland McGrath138c6a32006-01-12 09:50:49 +0000436 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000437}
438
439static int
Dmitry V. Levin35d05722010-09-15 16:18:20 +0000440qual_syscall(const char *s, int bitflag, int not)
Roland McGrath9797ceb2002-12-30 10:23:00 +0000441{
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100442 unsigned p;
443 unsigned i;
Roland McGrathfe6b3522005-02-02 04:40:11 +0000444 int rc = -1;
Roland McGrath9797ceb2002-12-30 10:23:00 +0000445
Denys Vlasenkoe4cc7c52012-03-23 11:29:01 +0100446 if (*s >= '0' && *s <= '9') {
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100447 i = string_to_uint(s);
Denys Vlasenkob43dacd2013-02-23 18:19:28 +0100448 if (i >= MAX_NSYSCALLS)
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +0000449 return -1;
Dmitry V. Levin35d05722010-09-15 16:18:20 +0000450 qualify_one(i, bitflag, not, -1);
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +0000451 return 0;
Roland McGrath48a035f2006-01-12 09:45:56 +0000452 }
Roland McGrath138c6a32006-01-12 09:50:49 +0000453
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100454 for (p = 0; p < SUPPORTED_PERSONALITIES; p++) {
455 for (i = 0; i < nsyscall_vec[p]; i++) {
456 if (sysent_vec[p][i].sys_name
457 && strcmp(s, sysent_vec[p][i].sys_name) == 0
458 ) {
Dmitry V. Levin7b9e45e2013-03-01 15:50:22 +0000459 qualify_one(i, bitflag, not, p);
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100460 rc = 0;
461 }
Roland McGrath138c6a32006-01-12 09:50:49 +0000462 }
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100463 }
Dmitry V. Levinc18c7032007-08-22 21:43:30 +0000464
Roland McGrathfe6b3522005-02-02 04:40:11 +0000465 return rc;
Roland McGrath9797ceb2002-12-30 10:23:00 +0000466}
467
468static int
Dmitry V. Levin35d05722010-09-15 16:18:20 +0000469qual_signal(const char *s, int bitflag, int not)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000470{
471 int i;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000472
Denys Vlasenkoe4cc7c52012-03-23 11:29:01 +0100473 if (*s >= '0' && *s <= '9') {
Dmitry V. Levinccee1692012-03-25 21:49:48 +0000474 int signo = string_to_uint(s);
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100475 if (signo < 0 || signo > 255)
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +0000476 return -1;
Dmitry V. Levin35d05722010-09-15 16:18:20 +0000477 qualify_one(signo, bitflag, not, -1);
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +0000478 return 0;
Roland McGrath9797ceb2002-12-30 10:23:00 +0000479 }
Dmitry V. Levin30145dd2010-09-06 22:08:24 +0000480 if (strncasecmp(s, "SIG", 3) == 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000481 s += 3;
Denys Vlasenkoe4cc7c52012-03-23 11:29:01 +0100482 for (i = 0; i <= NSIG; i++) {
Dmitry V. Levin30145dd2010-09-06 22:08:24 +0000483 if (strcasecmp(s, signame(i) + 3) == 0) {
Dmitry V. Levin35d05722010-09-15 16:18:20 +0000484 qualify_one(i, bitflag, not, -1);
Roland McGrath76421df2005-02-02 03:51:18 +0000485 return 0;
Roland McGrath9797ceb2002-12-30 10:23:00 +0000486 }
Denys Vlasenkoe4cc7c52012-03-23 11:29:01 +0100487 }
Roland McGrath76421df2005-02-02 03:51:18 +0000488 return -1;
Roland McGrath9797ceb2002-12-30 10:23:00 +0000489}
490
491static int
Dmitry V. Levin35d05722010-09-15 16:18:20 +0000492qual_desc(const char *s, int bitflag, int not)
Roland McGrath9797ceb2002-12-30 10:23:00 +0000493{
Denys Vlasenkoe4cc7c52012-03-23 11:29:01 +0100494 if (*s >= '0' && *s <= '9') {
Dmitry V. Levinccee1692012-03-25 21:49:48 +0000495 int desc = string_to_uint(s);
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100496 if (desc < 0 || desc > 0x7fff) /* paranoia */
Roland McGrathfe6b3522005-02-02 04:40:11 +0000497 return -1;
Dmitry V. Levin35d05722010-09-15 16:18:20 +0000498 qualify_one(desc, bitflag, not, -1);
Roland McGrath2b619022003-04-10 18:58:20 +0000499 return 0;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000500 }
501 return -1;
502}
503
504static int
Dmitry V. Levin30145dd2010-09-06 22:08:24 +0000505lookup_class(const char *s)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000506{
507 if (strcmp(s, "file") == 0)
508 return TRACE_FILE;
509 if (strcmp(s, "ipc") == 0)
510 return TRACE_IPC;
511 if (strcmp(s, "network") == 0)
512 return TRACE_NETWORK;
513 if (strcmp(s, "process") == 0)
514 return TRACE_PROCESS;
515 if (strcmp(s, "signal") == 0)
516 return TRACE_SIGNAL;
Roland McGrath2fe7b132005-07-05 03:25:35 +0000517 if (strcmp(s, "desc") == 0)
518 return TRACE_DESC;
Namhyung Kim96792962012-10-24 11:41:57 +0900519 if (strcmp(s, "memory") == 0)
520 return TRACE_MEMORY;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000521 return -1;
522}
523
524void
Dmitry V. Levin30145dd2010-09-06 22:08:24 +0000525qualify(const char *s)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000526{
Roland McGrathe10e62a2004-09-04 04:20:43 +0000527 const struct qual_options *opt;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000528 int not;
Dmitry V. Levin30145dd2010-09-06 22:08:24 +0000529 char *copy;
530 const char *p;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000531 int i, n;
532
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100533 if (num_quals == 0)
534 reallocate_qual(MIN_QUALS);
535
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000536 opt = &qual_options[0];
537 for (i = 0; (p = qual_options[i].option_name); i++) {
538 n = strlen(p);
539 if (strncmp(s, p, n) == 0 && s[n] == '=') {
540 opt = &qual_options[i];
541 s += n + 1;
542 break;
543 }
544 }
545 not = 0;
546 if (*s == '!') {
547 not = 1;
548 s++;
549 }
550 if (strcmp(s, "none") == 0) {
551 not = 1 - not;
552 s = "all";
553 }
554 if (strcmp(s, "all") == 0) {
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100555 for (i = 0; i < num_quals; i++) {
Dmitry V. Levin35d05722010-09-15 16:18:20 +0000556 qualify_one(i, opt->bitflag, not, -1);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000557 }
558 return;
559 }
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100560 for (i = 0; i < num_quals; i++) {
Dmitry V. Levin35d05722010-09-15 16:18:20 +0000561 qualify_one(i, opt->bitflag, !not, -1);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000562 }
Denys Vlasenko5d645812011-08-20 12:48:18 +0200563 copy = strdup(s);
Denys Vlasenko1d46ba52011-08-31 14:00:02 +0200564 if (!copy)
565 die_out_of_memory();
Dmitry V. Levin30145dd2010-09-06 22:08:24 +0000566 for (p = strtok(copy, ","); p; p = strtok(NULL, ",")) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000567 if (opt->bitflag == QUAL_TRACE && (n = lookup_class(p)) > 0) {
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100568 unsigned pers;
569 for (pers = 0; pers < SUPPORTED_PERSONALITIES; pers++) {
570 for (i = 0; i < nsyscall_vec[pers]; i++)
571 if (sysent_vec[pers][i].sys_flags & n)
Dmitry V. Levin7b9e45e2013-03-01 15:50:22 +0000572 qualify_one(i, opt->bitflag, not, pers);
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100573 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000574 continue;
575 }
Dmitry V. Levin35d05722010-09-15 16:18:20 +0000576 if (opt->qualify(p, opt->bitflag, not)) {
Denys Vlasenko4c65c442012-03-08 11:54:10 +0100577 error_msg_and_die("invalid %s '%s'",
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000578 opt->argument_name, p);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000579 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000580 }
Dmitry V. Levin30145dd2010-09-06 22:08:24 +0000581 free(copy);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000582 return;
583}
584
Dmitry V. Levin648c22c2012-03-15 22:08:55 +0000585#ifdef SYS_socket_subcall
Roland McGratha4d48532005-06-08 20:45:28 +0000586static void
Dmitry V. Levin648c22c2012-03-15 22:08:55 +0000587decode_socket_subcall(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000588{
Dmitry V. Levin648c22c2012-03-15 22:08:55 +0000589 unsigned long addr;
Denys Vlasenko74ec14f2013-02-21 16:13:47 +0100590 unsigned int i, n, size;
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000591
Dmitry V. Levin648c22c2012-03-15 22:08:55 +0000592 if (tcp->u_arg[0] < 0 || tcp->u_arg[0] >= SYS_socket_nsubcalls)
593 return;
594
595 tcp->scno = SYS_socket_subcall + tcp->u_arg[0];
Denys Vlasenko74ec14f2013-02-21 16:13:47 +0100596 tcp->qual_flg = qual_flags[tcp->scno];
597 tcp->s_ent = &sysent[tcp->scno];
Dmitry V. Levin648c22c2012-03-15 22:08:55 +0000598 addr = tcp->u_arg[1];
Denys Vlasenko9fd4f962012-03-19 09:36:42 +0100599 size = current_wordsize;
Denys Vlasenko74ec14f2013-02-21 16:13:47 +0100600 n = tcp->s_ent->nargs;
601 for (i = 0; i < n; ++i) {
Dmitry V. Levin648c22c2012-03-15 22:08:55 +0000602 if (size == sizeof(int)) {
603 unsigned int arg;
604 if (umove(tcp, addr, &arg) < 0)
605 arg = 0;
606 tcp->u_arg[i] = arg;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000607 }
Dmitry V. Levin648c22c2012-03-15 22:08:55 +0000608 else {
609 unsigned long arg;
610 if (umove(tcp, addr, &arg) < 0)
611 arg = 0;
612 tcp->u_arg[i] = arg;
613 }
614 addr += size;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000615 }
616}
Dmitry V. Levin648c22c2012-03-15 22:08:55 +0000617#endif
Mike Frysinger3362e892012-03-15 01:09:19 -0400618
Dmitry V. Levin648c22c2012-03-15 22:08:55 +0000619#ifdef SYS_ipc_subcall
620static void
621decode_ipc_subcall(struct tcb *tcp)
622{
Denys Vlasenko74ec14f2013-02-21 16:13:47 +0100623 unsigned int i, n;
Dmitry V. Levin648c22c2012-03-15 22:08:55 +0000624
625 if (tcp->u_arg[0] < 0 || tcp->u_arg[0] >= SYS_ipc_nsubcalls)
626 return;
627
628 tcp->scno = SYS_ipc_subcall + tcp->u_arg[0];
Denys Vlasenko74ec14f2013-02-21 16:13:47 +0100629 tcp->qual_flg = qual_flags[tcp->scno];
630 tcp->s_ent = &sysent[tcp->scno];
631 n = tcp->s_ent->nargs;
632 for (i = 0; i < n; i++)
Dmitry V. Levin648c22c2012-03-15 22:08:55 +0000633 tcp->u_arg[i] = tcp->u_arg[i + 1];
634}
635#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000636
Denys Vlasenkoa6146922011-08-24 18:07:22 +0200637int
638printargs(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000639{
Denys Vlasenkoa6146922011-08-24 18:07:22 +0200640 if (entering(tcp)) {
641 int i;
Denys Vlasenko74ec14f2013-02-21 16:13:47 +0100642 int n = tcp->s_ent->nargs;
643 for (i = 0; i < n; i++)
Denys Vlasenkoa6146922011-08-24 18:07:22 +0200644 tprintf("%s%#lx", i ? ", " : "", tcp->u_arg[i]);
645 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000646 return 0;
647}
648
Denys Vlasenko72879c62012-02-27 14:18:02 +0100649int
650printargs_lu(struct tcb *tcp)
651{
652 if (entering(tcp)) {
653 int i;
Denys Vlasenko74ec14f2013-02-21 16:13:47 +0100654 int n = tcp->s_ent->nargs;
655 for (i = 0; i < n; i++)
Denys Vlasenko72879c62012-02-27 14:18:02 +0100656 tprintf("%s%lu", i ? ", " : "", tcp->u_arg[i]);
657 }
658 return 0;
659}
660
661int
662printargs_ld(struct tcb *tcp)
663{
664 if (entering(tcp)) {
665 int i;
Denys Vlasenko74ec14f2013-02-21 16:13:47 +0100666 int n = tcp->s_ent->nargs;
667 for (i = 0; i < n; i++)
Denys Vlasenko72879c62012-02-27 14:18:02 +0100668 tprintf("%s%ld", i ? ", " : "", tcp->u_arg[i]);
669 }
670 return 0;
671}
672
Denys Vlasenko1ebe08d2013-02-05 16:55:23 +0100673#if defined(SPARC) || defined(SPARC64) || defined(IA64) || defined(SH)
Denys Vlasenkoa6146922011-08-24 18:07:22 +0200674long
675getrval2(struct tcb *tcp)
676{
Denys Vlasenko1ebe08d2013-02-05 16:55:23 +0100677 long val;
Denys Vlasenkoa6146922011-08-24 18:07:22 +0200678
Denys Vlasenko1ebe08d2013-02-05 16:55:23 +0100679# if defined(SPARC) || defined(SPARC64)
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +0100680 val = sparc_regs.u_regs[U_REG_O1];
Denys Vlasenko1ebe08d2013-02-05 16:55:23 +0100681# elif defined(SH)
Denys Vlasenkoa6146922011-08-24 18:07:22 +0200682 if (upeek(tcp, 4*(REG_REG0+1), &val) < 0)
683 return -1;
Denys Vlasenko1ebe08d2013-02-05 16:55:23 +0100684# elif defined(IA64)
Denys Vlasenkoa6146922011-08-24 18:07:22 +0200685 if (upeek(tcp, PT_R9, &val) < 0)
686 return -1;
Denys Vlasenko1ebe08d2013-02-05 16:55:23 +0100687# endif
Denys Vlasenkoa6146922011-08-24 18:07:22 +0200688
Denys Vlasenkoa6146922011-08-24 18:07:22 +0200689 return val;
690}
Denys Vlasenko1ebe08d2013-02-05 16:55:23 +0100691#endif
Denys Vlasenkoa6146922011-08-24 18:07:22 +0200692
Denys Vlasenkoa6146922011-08-24 18:07:22 +0200693int
694is_restart_error(struct tcb *tcp)
695{
Denys Vlasenkoa6146922011-08-24 18:07:22 +0200696 switch (tcp->u_error) {
697 case ERESTARTSYS:
698 case ERESTARTNOINTR:
699 case ERESTARTNOHAND:
700 case ERESTART_RESTARTBLOCK:
701 return 1;
702 default:
703 break;
704 }
Denys Vlasenkoa6146922011-08-24 18:07:22 +0200705 return 0;
706}
707
Denys Vlasenko523635f2012-02-25 02:44:25 +0100708#if defined(I386)
Denys Vlasenko2550d482013-02-15 21:04:28 +0100709struct user_regs_struct i386_regs;
H.J. Lu35be5812012-04-16 13:00:01 +0200710#elif defined(X86_64) || defined(X32)
Denys Vlasenkoe73a89d2012-01-18 11:07:24 +0100711/*
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +0100712 * On i386, pt_regs and user_regs_struct are the same,
713 * but on 64 bit x86, user_regs_struct has six more fields:
Denys Vlasenkoe73a89d2012-01-18 11:07:24 +0100714 * fs_base, gs_base, ds, es, fs, gs.
715 * PTRACE_GETREGS fills them too, so struct pt_regs would overflow.
716 */
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +0100717struct i386_user_regs_struct {
718 uint32_t ebx;
719 uint32_t ecx;
720 uint32_t edx;
721 uint32_t esi;
722 uint32_t edi;
723 uint32_t ebp;
724 uint32_t eax;
725 uint32_t xds;
726 uint32_t xes;
727 uint32_t xfs;
728 uint32_t xgs;
729 uint32_t orig_eax;
730 uint32_t eip;
731 uint32_t xcs;
732 uint32_t eflags;
733 uint32_t esp;
734 uint32_t xss;
735};
736static union {
737 struct user_regs_struct x86_64_r;
738 struct i386_user_regs_struct i386_r;
739} x86_regs_union;
740# define x86_64_regs x86_regs_union.x86_64_r
741# define i386_regs x86_regs_union.i386_r
742static struct iovec x86_io = {
743 .iov_base = &x86_regs_union
744};
Denys Vlasenko523635f2012-02-25 02:44:25 +0100745#elif defined(IA64)
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200746long ia32 = 0; /* not static */
Denys Vlasenko89804ec2013-02-07 13:14:48 +0100747static long ia64_r8, ia64_r10;
Denys Vlasenko523635f2012-02-25 02:44:25 +0100748#elif defined(POWERPC)
Denys Vlasenko46dc8b22012-03-21 00:07:25 +0100749static long ppc_result;
Denys Vlasenko523635f2012-02-25 02:44:25 +0100750#elif defined(M68K)
Denys Vlasenko89804ec2013-02-07 13:14:48 +0100751static long m68k_d0;
Denys Vlasenko523635f2012-02-25 02:44:25 +0100752#elif defined(BFIN)
Denys Vlasenkod22213a2013-02-13 17:52:31 +0100753static long bfin_r0;
Denys Vlasenko523635f2012-02-25 02:44:25 +0100754#elif defined(ARM)
Denys Vlasenko401374e2013-02-06 18:24:39 +0100755struct pt_regs arm_regs; /* not static */
Steve McIntyred8d3bd32012-10-24 17:58:16 +0100756#elif defined(AARCH64)
Denys Vlasenko28ac68f2013-02-08 12:38:51 +0100757static union {
Denys Vlasenko59aea0a2013-02-11 12:29:36 +0100758 struct user_pt_regs aarch64_r;
759 struct arm_pt_regs arm_r;
Denys Vlasenko28ac68f2013-02-08 12:38:51 +0100760} arm_regs_union;
Denys Vlasenko59aea0a2013-02-11 12:29:36 +0100761# define aarch64_regs arm_regs_union.aarch64_r
762# define arm_regs arm_regs_union.arm_r
Denys Vlasenkoce7d9532013-02-05 16:36:13 +0100763static struct iovec aarch64_io = {
Denys Vlasenko59aea0a2013-02-11 12:29:36 +0100764 .iov_base = &arm_regs_union
Denys Vlasenkoce7d9532013-02-05 16:36:13 +0100765};
Denys Vlasenko523635f2012-02-25 02:44:25 +0100766#elif defined(ALPHA)
Denys Vlasenkod22213a2013-02-13 17:52:31 +0100767static long alpha_r0;
Denys Vlasenko89804ec2013-02-07 13:14:48 +0100768static long alpha_a3;
Denys Vlasenko523635f2012-02-25 02:44:25 +0100769#elif defined(AVR32)
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +0100770static struct pt_regs avr32_regs;
Denys Vlasenko523635f2012-02-25 02:44:25 +0100771#elif defined(SPARC) || defined(SPARC64)
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +0100772struct pt_regs sparc_regs; /* not static */
Denys Vlasenko523635f2012-02-25 02:44:25 +0100773#elif defined(LINUX_MIPSN32)
Denys Vlasenkod22213a2013-02-13 17:52:31 +0100774static long long mips_a3;
775static long long mips_r2;
Denys Vlasenko523635f2012-02-25 02:44:25 +0100776#elif defined(MIPS)
Denys Vlasenkod22213a2013-02-13 17:52:31 +0100777static long mips_a3;
778static long mips_r2;
Denys Vlasenko523635f2012-02-25 02:44:25 +0100779#elif defined(S390) || defined(S390X)
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200780static long gpr2;
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200781static long syscall_mode;
Denys Vlasenko523635f2012-02-25 02:44:25 +0100782#elif defined(HPPA)
Denys Vlasenko89804ec2013-02-07 13:14:48 +0100783static long hppa_r28;
Denys Vlasenko523635f2012-02-25 02:44:25 +0100784#elif defined(SH)
Denys Vlasenkod22213a2013-02-13 17:52:31 +0100785static long sh_r0;
Denys Vlasenko523635f2012-02-25 02:44:25 +0100786#elif defined(SH64)
Denys Vlasenko89804ec2013-02-07 13:14:48 +0100787static long sh64_r9;
Denys Vlasenko523635f2012-02-25 02:44:25 +0100788#elif defined(CRISV10) || defined(CRISV32)
Denys Vlasenko89804ec2013-02-07 13:14:48 +0100789static long cris_r10;
Chris Metcalf0b99a8a2013-02-05 17:48:33 +0100790#elif defined(TILE)
791struct pt_regs tile_regs;
Denys Vlasenko523635f2012-02-25 02:44:25 +0100792#elif defined(MICROBLAZE)
Denys Vlasenko89804ec2013-02-07 13:14:48 +0100793static long microblaze_r3;
Christian Svensson492f81f2013-02-14 13:26:27 +0100794#elif defined(OR1K)
795static struct user_regs_struct or1k_regs;
796static struct iovec or1k_io = {
797 .iov_base = &or1k_regs
798};
James Hogan5f999a82013-02-22 14:44:10 +0000799#elif defined(METAG)
800static struct user_gp_regs metag_regs;
801static struct iovec metag_io = {
802 .iov_base = &metag_regs
803};
Denys Vlasenko523635f2012-02-25 02:44:25 +0100804#endif
Wichert Akkermanc7926982000-04-10 22:22:31 +0000805
Denys Vlasenkoce7d9532013-02-05 16:36:13 +0100806void
807printcall(struct tcb *tcp)
808{
809#define PRINTBADPC tprintf(sizeof(long) == 4 ? "[????????] " : \
810 sizeof(long) == 8 ? "[????????????????] " : \
811 NULL /* crash */)
812 if (get_regs_error) {
813 PRINTBADPC;
814 return;
815 }
816#if defined(I386)
817 tprintf("[%08lx] ", i386_regs.eip);
818#elif defined(S390) || defined(S390X)
819 long psw;
820 if (upeek(tcp, PT_PSWADDR, &psw) < 0) {
821 PRINTBADPC;
822 return;
823 }
824# ifdef S390
825 tprintf("[%08lx] ", psw);
826# elif S390X
Dmitry V. Levinddba73e2013-02-05 19:01:58 +0000827 tprintf("[%016lx] ", psw);
Denys Vlasenkoce7d9532013-02-05 16:36:13 +0100828# endif
829#elif defined(X86_64) || defined(X32)
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +0100830 if (x86_io.iov_len == sizeof(i386_regs)) {
831 tprintf("[%08x] ", (unsigned) i386_regs.eip);
832 } else {
833# if defined(X86_64)
834 tprintf("[%016lx] ", (unsigned long) x86_64_regs.rip);
835# elif defined(X32)
836 /* Note: this truncates 64-bit rip to 32 bits */
837 tprintf("[%08lx] ", (unsigned long) x86_64_regs.rip);
838# endif
839 }
Denys Vlasenkoce7d9532013-02-05 16:36:13 +0100840#elif defined(IA64)
841 long ip;
Denys Vlasenkoce7d9532013-02-05 16:36:13 +0100842 if (upeek(tcp, PT_B0, &ip) < 0) {
843 PRINTBADPC;
844 return;
845 }
846 tprintf("[%08lx] ", ip);
847#elif defined(POWERPC)
848 long pc;
Denys Vlasenkoce7d9532013-02-05 16:36:13 +0100849 if (upeek(tcp, sizeof(unsigned long)*PT_NIP, &pc) < 0) {
850 PRINTBADPC;
851 return;
852 }
853# ifdef POWERPC64
854 tprintf("[%016lx] ", pc);
855# else
856 tprintf("[%08lx] ", pc);
857# endif
858#elif defined(M68K)
859 long pc;
Denys Vlasenkoce7d9532013-02-05 16:36:13 +0100860 if (upeek(tcp, 4*PT_PC, &pc) < 0) {
861 tprints("[????????] ");
862 return;
863 }
864 tprintf("[%08lx] ", pc);
865#elif defined(ALPHA)
866 long pc;
Denys Vlasenkoce7d9532013-02-05 16:36:13 +0100867 if (upeek(tcp, REG_PC, &pc) < 0) {
868 tprints("[????????????????] ");
869 return;
870 }
871 tprintf("[%08lx] ", pc);
872#elif defined(SPARC)
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +0100873 tprintf("[%08lx] ", sparc_regs.pc);
Denys Vlasenkoce7d9532013-02-05 16:36:13 +0100874#elif defined(SPARC64)
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +0100875 tprintf("[%08lx] ", sparc_regs.tpc);
Denys Vlasenkoce7d9532013-02-05 16:36:13 +0100876#elif defined(HPPA)
877 long pc;
Denys Vlasenkoce7d9532013-02-05 16:36:13 +0100878 if (upeek(tcp, PT_IAOQ0, &pc) < 0) {
879 tprints("[????????] ");
880 return;
881 }
882 tprintf("[%08lx] ", pc);
883#elif defined(MIPS)
884 long pc;
Denys Vlasenkoce7d9532013-02-05 16:36:13 +0100885 if (upeek(tcp, REG_EPC, &pc) < 0) {
886 tprints("[????????] ");
887 return;
888 }
889 tprintf("[%08lx] ", pc);
890#elif defined(SH)
891 long pc;
Denys Vlasenkoce7d9532013-02-05 16:36:13 +0100892 if (upeek(tcp, 4*REG_PC, &pc) < 0) {
893 tprints("[????????] ");
894 return;
895 }
896 tprintf("[%08lx] ", pc);
897#elif defined(SH64)
898 long pc;
Denys Vlasenkoce7d9532013-02-05 16:36:13 +0100899 if (upeek(tcp, REG_PC, &pc) < 0) {
900 tprints("[????????????????] ");
901 return;
902 }
903 tprintf("[%08lx] ", pc);
904#elif defined(ARM)
Denys Vlasenko401374e2013-02-06 18:24:39 +0100905 tprintf("[%08lx] ", arm_regs.ARM_pc);
Denys Vlasenko28ac68f2013-02-08 12:38:51 +0100906#elif defined(AARCH64)
907 /* tprintf("[%016lx] ", aarch64_regs.regs[???]); */
Denys Vlasenkoce7d9532013-02-05 16:36:13 +0100908#elif defined(AVR32)
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +0100909 tprintf("[%08lx] ", avr32_regs.pc);
Denys Vlasenkoce7d9532013-02-05 16:36:13 +0100910#elif defined(BFIN)
911 long pc;
Denys Vlasenkoce7d9532013-02-05 16:36:13 +0100912 if (upeek(tcp, PT_PC, &pc) < 0) {
913 PRINTBADPC;
914 return;
915 }
916 tprintf("[%08lx] ", pc);
917#elif defined(CRISV10)
918 long pc;
Denys Vlasenkoce7d9532013-02-05 16:36:13 +0100919 if (upeek(tcp, 4*PT_IRP, &pc) < 0) {
920 PRINTBADPC;
921 return;
922 }
923 tprintf("[%08lx] ", pc);
924#elif defined(CRISV32)
925 long pc;
Denys Vlasenkoce7d9532013-02-05 16:36:13 +0100926 if (upeek(tcp, 4*PT_ERP, &pc) < 0) {
927 PRINTBADPC;
928 return;
929 }
930 tprintf("[%08lx] ", pc);
Chris Metcalf0b99a8a2013-02-05 17:48:33 +0100931#elif defined(TILE)
932# ifdef _LP64
Chris Metcalfaf8dc6b2013-02-05 13:02:42 -0500933 tprintf("[%016lx] ", (unsigned long) tile_regs.pc);
Chris Metcalf0b99a8a2013-02-05 17:48:33 +0100934# else
Chris Metcalfaf8dc6b2013-02-05 13:02:42 -0500935 tprintf("[%08lx] ", (unsigned long) tile_regs.pc);
Chris Metcalf0b99a8a2013-02-05 17:48:33 +0100936# endif
Christian Svensson492f81f2013-02-14 13:26:27 +0100937#elif defined(OR1K)
938 tprintf("[%08lx] ", or1k_regs.pc);
James Hogan5f999a82013-02-22 14:44:10 +0000939#elif defined(METAG)
940 tprintf("[%08lx] ", metag_regs.pc);
Denys Vlasenkoce7d9532013-02-05 16:36:13 +0100941#endif /* architecture */
942}
943
Denys Vlasenko7270de52013-02-21 15:46:34 +0100944/* Shuffle syscall numbers so that we don't have huge gaps in syscall table.
945 * The shuffling should be reversible: shuffle_scno(shuffle_scno(n)) == n.
946 */
947#if defined(ARM) /* So far only ARM needs this */
948static long
949shuffle_scno(unsigned long scno)
950{
951 if (scno <= ARM_LAST_ORDINARY_SYSCALL)
952 return scno;
953
954 /* __ARM_NR_cmpxchg? Swap with LAST_ORDINARY+1 */
955 if (scno == 0x000ffff0)
956 return ARM_LAST_ORDINARY_SYSCALL+1;
957 if (scno == ARM_LAST_ORDINARY_SYSCALL+1)
958 return 0x000ffff0;
959
960 /* Is it ARM specific syscall?
961 * Swap with [LAST_ORDINARY+2, LAST_ORDINARY+2 + LAST_SPECIAL] range.
962 */
963 if (scno >= 0x000f0000
964 && scno <= 0x000f0000 + ARM_LAST_SPECIAL_SYSCALL
965 ) {
966 return scno - 0x000f0000 + (ARM_LAST_ORDINARY_SYSCALL+2);
967 }
968 if (/* scno >= ARM_LAST_ORDINARY_SYSCALL+2 - always true */ 1
969 && scno <= (ARM_LAST_ORDINARY_SYSCALL+2) + ARM_LAST_SPECIAL_SYSCALL
970 ) {
971 return scno + 0x000f0000 - (ARM_LAST_ORDINARY_SYSCALL+2);
972 }
973
974 return scno;
975}
976#else
977# define shuffle_scno(scno) ((long)(scno))
978#endif
979
980static char*
981undefined_scno_name(struct tcb *tcp)
982{
983 static char buf[sizeof("syscall_%lu") + sizeof(long)*3];
984
985 sprintf(buf, "syscall_%lu", shuffle_scno(tcp->scno));
986 return buf;
987}
988
Denys Vlasenkoce7d9532013-02-05 16:36:13 +0100989#ifndef get_regs
990long get_regs_error;
Dmitry V. Levinfaa177e2013-03-17 23:48:45 +0000991
992#if defined(PTRACE_GETREGSET) && defined(NT_PRSTATUS)
993# if defined(ARM)
994static void get_regset(pid_t pid)
995{
996 static struct iovec arm_io = {
997 .iov_base = &arm_regs,
998 .iov_len = sizeof(arm_regs)
999 };
1000 get_regs_error = ptrace(PTRACE_GETREGSET, pid,
1001 NT_PRSTATUS, (long) &arm_io);
1002}
1003# elif defined(I386)
1004static void get_regset(pid_t pid)
1005{
1006 static struct iovec i386_io = {
1007 .iov_base = &i386_regs,
1008 .iov_len = sizeof(i386_regs)
1009 };
1010 get_regs_error = ptrace(PTRACE_GETREGSET, pid,
1011 NT_PRSTATUS, (long) &i386_io);
1012}
1013# elif defined(X86_64)
1014static void get_regset(pid_t pid)
1015{
1016 /* x86_io.iov_base = &x86_regs_union; - already is */
1017 x86_io.iov_len = sizeof(x86_regs_union);
1018 get_regs_error = ptrace(PTRACE_GETREGSET, pid,
1019 NT_PRSTATUS, (long) &x86_io);
1020}
1021# endif
1022#endif /* PTRACE_GETREGSET && NT_PRSTATUS */
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +01001023void
1024get_regs(pid_t pid)
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01001025{
1026# if defined(AVR32)
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +01001027 get_regs_error = ptrace(PTRACE_GETREGS, pid, NULL, &avr32_regs);
Dmitry V. Levinee348c62013-03-17 23:15:18 +00001028# elif defined(X32)
1029 /* x86_io.iov_base = &x86_regs_union; - already is */
1030 x86_io.iov_len = sizeof(x86_regs_union);
1031 get_regs_error = ptrace(PTRACE_GETREGSET, pid,
1032 NT_PRSTATUS, (long) &x86_io);
Dmitry V. Levinfaa177e2013-03-17 23:48:45 +00001033# elif defined(ARM) || defined(I386) || defined(X86_64)
Dmitry V. Levin27e3ae92013-03-17 23:18:35 +00001034# if defined(PTRACE_GETREGSET) && defined(NT_PRSTATUS)
1035 static int getregset_support;
1036
1037 if (getregset_support >= 0) {
Dmitry V. Levinfaa177e2013-03-17 23:48:45 +00001038 get_regset(pid);
Dmitry V. Levin27e3ae92013-03-17 23:18:35 +00001039 if (getregset_support > 0)
1040 return;
1041 if (get_regs_error >= 0) {
1042 getregset_support = 1;
1043 return;
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +01001044 }
Dmitry V. Levin27e3ae92013-03-17 23:18:35 +00001045 if (errno == EPERM || errno == ESRCH)
1046 return;
1047 getregset_support = -1;
1048 }
1049# endif /* PTRACE_GETREGSET && NT_PRSTATUS */
Dmitry V. Levinfaa177e2013-03-17 23:48:45 +00001050# if defined(ARM)
1051 get_regs_error = ptrace(PTRACE_GETREGS, pid, NULL, (long) &arm_regs);
1052# elif defined(I386)
1053 get_regs_error = ptrace(PTRACE_GETREGS, pid, NULL, (long) &i386_regs);
1054# elif defined(X86_64)
Dmitry V. Levin27e3ae92013-03-17 23:18:35 +00001055 /* Use old method, with unreliable heuristical detection of 32-bitness. */
1056 x86_io.iov_len = sizeof(x86_64_regs);
1057 get_regs_error = ptrace(PTRACE_GETREGS, pid, NULL, (long) &x86_64_regs);
1058 if (!get_regs_error && x86_64_regs.cs == 0x23) {
1059 x86_io.iov_len = sizeof(i386_regs);
1060 /*
1061 * The order is important: i386_regs and x86_64_regs
1062 * are overlaid in memory!
1063 */
1064 i386_regs.ebx = x86_64_regs.rbx;
1065 i386_regs.ecx = x86_64_regs.rcx;
1066 i386_regs.edx = x86_64_regs.rdx;
1067 i386_regs.esi = x86_64_regs.rsi;
1068 i386_regs.edi = x86_64_regs.rdi;
1069 i386_regs.ebp = x86_64_regs.rbp;
1070 i386_regs.eax = x86_64_regs.rax;
1071 /* i386_regs.xds = x86_64_regs.ds; unused by strace */
1072 /* i386_regs.xes = x86_64_regs.es; ditto... */
1073 /* i386_regs.xfs = x86_64_regs.fs; */
1074 /* i386_regs.xgs = x86_64_regs.gs; */
1075 i386_regs.orig_eax = x86_64_regs.orig_rax;
1076 i386_regs.eip = x86_64_regs.rip;
1077 /* i386_regs.xcs = x86_64_regs.cs; */
1078 /* i386_regs.eflags = x86_64_regs.eflags; */
1079 i386_regs.esp = x86_64_regs.rsp;
1080 /* i386_regs.xss = x86_64_regs.ss; */
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +01001081 }
Dmitry V. Levinfaa177e2013-03-17 23:48:45 +00001082# else
1083# error fix me
1084# endif /* ARM || I386 || X86_64 */
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01001085# elif defined(AARCH64)
Denys Vlasenko59aea0a2013-02-11 12:29:36 +01001086 /*aarch64_io.iov_base = &arm_regs_union; - already is */
1087 aarch64_io.iov_len = sizeof(arm_regs_union);
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01001088 get_regs_error = ptrace(PTRACE_GETREGSET, pid, NT_PRSTATUS, (void *)&aarch64_io);
Denys Vlasenko28ac68f2013-02-08 12:38:51 +01001089# if 0
1090 /* Paranoia checks */
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01001091 if (get_regs_error)
1092 return;
1093 switch (aarch64_io.iov_len) {
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01001094 case sizeof(aarch64_regs):
1095 /* We are in 64-bit mode */
Denys Vlasenko28ac68f2013-02-08 12:38:51 +01001096 break;
1097 case sizeof(arm_regs):
1098 /* We are in 32-bit mode */
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01001099 break;
1100 default:
1101 get_regs_error = -1;
1102 break;
1103 }
Denys Vlasenko28ac68f2013-02-08 12:38:51 +01001104# endif
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01001105# elif defined(SPARC) || defined(SPARC64)
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +01001106 get_regs_error = ptrace(PTRACE_GETREGS, pid, (char *)&sparc_regs, 0);
Chris Metcalf0b99a8a2013-02-05 17:48:33 +01001107# elif defined(TILE)
Chris Metcalfaf8dc6b2013-02-05 13:02:42 -05001108 get_regs_error = ptrace(PTRACE_GETREGS, pid, NULL, (long) &tile_regs);
Christian Svensson492f81f2013-02-14 13:26:27 +01001109# elif defined(OR1K)
1110 or1k_io.iov_len = sizeof(or1k_regs);
1111 get_regs_error = ptrace(PTRACE_GETREGSET, pid, NT_PRSTATUS, &or1k_io);
James Hogan5f999a82013-02-22 14:44:10 +00001112# elif defined(METAG)
1113 metag_io.iov_len = sizeof(metag_regs);
1114 get_regs_error = ptrace(PTRACE_GETREGSET, pid, NT_PRSTATUS, &metag_io);
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01001115# endif
1116}
1117#endif
1118
Denys Vlasenkob88f9612011-08-21 18:03:23 +02001119/* Returns:
Denys Vlasenko907735a2012-03-21 00:23:16 +01001120 * 0: "ignore this ptrace stop", bail out of trace_syscall_entering() silently.
1121 * 1: ok, continue in trace_syscall_entering().
1122 * other: error, trace_syscall_entering() should print error indicator
Denys Vlasenkob88f9612011-08-21 18:03:23 +02001123 * ("????" etc) and bail out.
1124 */
Denys Vlasenko9fd4f962012-03-19 09:36:42 +01001125static int
Denys Vlasenko06602d92011-08-24 17:53:52 +02001126get_scno(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001127{
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001128 long scno = 0;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001129
Denys Vlasenko523635f2012-02-25 02:44:25 +01001130#if defined(S390) || defined(S390X)
Denys Vlasenko932fc7d2008-12-16 18:18:40 +00001131 if (upeek(tcp, PT_GPR2, &syscall_mode) < 0)
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001132 return -1;
Roland McGrath2f924ca2003-06-26 22:23:28 +00001133
1134 if (syscall_mode != -ENOSYS) {
1135 /*
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +00001136 * Since kernel version 2.5.44 the scno gets passed in gpr2.
Roland McGrath2f924ca2003-06-26 22:23:28 +00001137 */
1138 scno = syscall_mode;
1139 } else {
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +00001140 /*
Michal Ludvig882eda82002-11-11 12:50:47 +00001141 * Old style of "passing" the scno via the SVC instruction.
1142 */
Denys Vlasenko7ba8e722013-02-08 15:50:05 +01001143 long psw;
Michal Ludvig882eda82002-11-11 12:50:47 +00001144 long opcode, offset_reg, tmp;
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001145 void *svc_addr;
Denys Vlasenko7c9ba8b2011-08-19 19:46:32 +02001146 static const int gpr_offset[16] = {
1147 PT_GPR0, PT_GPR1, PT_ORIGGPR2, PT_GPR3,
1148 PT_GPR4, PT_GPR5, PT_GPR6, PT_GPR7,
1149 PT_GPR8, PT_GPR9, PT_GPR10, PT_GPR11,
1150 PT_GPR12, PT_GPR13, PT_GPR14, PT_GPR15
1151 };
Roland McGrath761b5d72002-12-15 23:58:31 +00001152
Denys Vlasenko7ba8e722013-02-08 15:50:05 +01001153 if (upeek(tcp, PT_PSWADDR, &psw) < 0)
Michal Ludvig882eda82002-11-11 12:50:47 +00001154 return -1;
Roland McGrath96dc5142003-01-20 10:23:04 +00001155 errno = 0;
Denys Vlasenko7ba8e722013-02-08 15:50:05 +01001156 opcode = ptrace(PTRACE_PEEKTEXT, tcp->pid, (char *)(psw - sizeof(long)), 0);
Roland McGrath96dc5142003-01-20 10:23:04 +00001157 if (errno) {
Denys Vlasenko905e8e02013-02-26 12:30:09 +01001158 perror_msg("peektext(psw-oneword)");
Michal Ludvig882eda82002-11-11 12:50:47 +00001159 return -1;
Roland McGrath96dc5142003-01-20 10:23:04 +00001160 }
Michal Ludvig882eda82002-11-11 12:50:47 +00001161
1162 /*
1163 * We have to check if the SVC got executed directly or via an
1164 * EXECUTE instruction. In case of EXECUTE it is necessary to do
1165 * instruction decoding to derive the system call number.
1166 * Unfortunately the opcode sizes of EXECUTE and SVC are differently,
1167 * so that this doesn't work if a SVC opcode is part of an EXECUTE
1168 * opcode. Since there is no way to find out the opcode size this
1169 * is the best we can do...
1170 */
Michal Ludvig882eda82002-11-11 12:50:47 +00001171 if ((opcode & 0xff00) == 0x0a00) {
1172 /* SVC opcode */
1173 scno = opcode & 0xff;
Roland McGrath761b5d72002-12-15 23:58:31 +00001174 }
Michal Ludvig882eda82002-11-11 12:50:47 +00001175 else {
1176 /* SVC got executed by EXECUTE instruction */
1177
1178 /*
1179 * Do instruction decoding of EXECUTE. If you really want to
1180 * understand this, read the Principles of Operations.
1181 */
1182 svc_addr = (void *) (opcode & 0xfff);
1183
1184 tmp = 0;
1185 offset_reg = (opcode & 0x000f0000) >> 16;
Denys Vlasenko932fc7d2008-12-16 18:18:40 +00001186 if (offset_reg && (upeek(tcp, gpr_offset[offset_reg], &tmp) < 0))
Michal Ludvig882eda82002-11-11 12:50:47 +00001187 return -1;
1188 svc_addr += tmp;
1189
1190 tmp = 0;
1191 offset_reg = (opcode & 0x0000f000) >> 12;
Denys Vlasenko932fc7d2008-12-16 18:18:40 +00001192 if (offset_reg && (upeek(tcp, gpr_offset[offset_reg], &tmp) < 0))
Michal Ludvig882eda82002-11-11 12:50:47 +00001193 return -1;
1194 svc_addr += tmp;
1195
Denys Vlasenkofb036672009-01-23 16:30:26 +00001196 scno = ptrace(PTRACE_PEEKTEXT, tcp->pid, svc_addr, 0);
Michal Ludvig882eda82002-11-11 12:50:47 +00001197 if (errno)
1198 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001199# if defined(S390X)
Michal Ludvig882eda82002-11-11 12:50:47 +00001200 scno >>= 48;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001201# else
Michal Ludvig882eda82002-11-11 12:50:47 +00001202 scno >>= 16;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001203# endif
Michal Ludvig882eda82002-11-11 12:50:47 +00001204 tmp = 0;
1205 offset_reg = (opcode & 0x00f00000) >> 20;
Denys Vlasenko932fc7d2008-12-16 18:18:40 +00001206 if (offset_reg && (upeek(tcp, gpr_offset[offset_reg], &tmp) < 0))
Michal Ludvig882eda82002-11-11 12:50:47 +00001207 return -1;
1208
1209 scno = (scno | tmp) & 0xff;
1210 }
1211 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01001212#elif defined(POWERPC)
Denys Vlasenko932fc7d2008-12-16 18:18:40 +00001213 if (upeek(tcp, sizeof(unsigned long)*PT_R0, &scno) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001214 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001215# ifdef POWERPC64
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001216 /* TODO: speed up strace by not doing this at every syscall.
1217 * We only need to do it after execve.
1218 */
1219 int currpers;
1220 long val;
Andreas Schwabd69fa492010-07-12 21:39:57 +02001221
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001222 /* Check for 64/32 bit mode. */
1223 if (upeek(tcp, sizeof(unsigned long)*PT_MSR, &val) < 0)
1224 return -1;
1225 /* SF is bit 0 of MSR */
1226 if (val < 0)
1227 currpers = 0;
1228 else
1229 currpers = 1;
Dmitry V. Levina5a839a2011-12-23 00:50:49 +00001230 update_personality(tcp, currpers);
Denys Vlasenko523635f2012-02-25 02:44:25 +01001231# endif
1232#elif defined(AVR32)
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +01001233 scno = avr32_regs.r8;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001234#elif defined(BFIN)
Denys Vlasenko932fc7d2008-12-16 18:18:40 +00001235 if (upeek(tcp, PT_ORIG_P0, &scno))
Dmitry V. Levin87ea1f42008-11-10 22:21:41 +00001236 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001237#elif defined(I386)
Denys Vlasenkoeb0e3e82011-08-30 18:53:49 +02001238 scno = i386_regs.orig_eax;
H.J. Lu35be5812012-04-16 13:00:01 +02001239#elif defined(X86_64) || defined(X32)
1240# ifndef __X32_SYSCALL_BIT
1241# define __X32_SYSCALL_BIT 0x40000000
1242# endif
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001243 int currpers;
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +01001244# if 1
1245 /* GETREGSET of NT_PRSTATUS tells us regset size,
1246 * which unambiguously detects i386.
1247 *
1248 * Linux kernel distinguishes x86-64 and x32 processes
1249 * solely by looking at __X32_SYSCALL_BIT:
1250 * arch/x86/include/asm/compat.h::is_x32_task():
1251 * if (task_pt_regs(current)->orig_ax & __X32_SYSCALL_BIT)
1252 * return true;
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001253 */
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +01001254 if (x86_io.iov_len == sizeof(i386_regs)) {
1255 scno = i386_regs.orig_eax;
1256 currpers = 1;
1257 } else {
1258 scno = x86_64_regs.orig_rax;
1259 currpers = 0;
1260 if (scno & __X32_SYSCALL_BIT) {
1261 scno -= __X32_SYSCALL_BIT;
1262 currpers = 2;
1263 }
1264 }
1265# elif 0
1266 /* cs = 0x33 for long mode (native 64 bit and x32)
1267 * cs = 0x23 for compatibility mode (32 bit)
1268 * ds = 0x2b for x32 mode (x86-64 in 32 bit)
1269 */
1270 scno = x86_64_regs.orig_rax;
Denys Vlasenkoeb0e3e82011-08-30 18:53:49 +02001271 switch (x86_64_regs.cs) {
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001272 case 0x23: currpers = 1; break;
H.J. Lu35be5812012-04-16 13:00:01 +02001273 case 0x33:
1274 if (x86_64_regs.ds == 0x2b) {
1275 currpers = 2;
Denys Vlasenko59aea0a2013-02-11 12:29:36 +01001276 scno &= ~__X32_SYSCALL_BIT;
H.J. Lu35be5812012-04-16 13:00:01 +02001277 } else
1278 currpers = 0;
1279 break;
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001280 default:
Denys Vlasenkoeb0e3e82011-08-30 18:53:49 +02001281 fprintf(stderr, "Unknown value CS=0x%08X while "
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001282 "detecting personality of process "
Denys Vlasenkoeb0e3e82011-08-30 18:53:49 +02001283 "PID=%d\n", (int)x86_64_regs.cs, tcp->pid);
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001284 currpers = current_personality;
1285 break;
1286 }
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +01001287# elif 0
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001288 /* This version analyzes the opcode of a syscall instruction.
1289 * (int 0x80 on i386 vs. syscall on x86-64)
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +01001290 * It works, but is too complicated, and strictly speaking, unreliable.
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001291 */
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +01001292 unsigned long call, rip = x86_64_regs.rip;
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001293 /* sizeof(syscall) == sizeof(int 0x80) == 2 */
1294 rip -= 2;
1295 errno = 0;
Denys Vlasenkoeb0e3e82011-08-30 18:53:49 +02001296 call = ptrace(PTRACE_PEEKTEXT, tcp->pid, (char *)rip, (char *)0);
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001297 if (errno)
1298 fprintf(stderr, "ptrace_peektext failed: %s\n",
1299 strerror(errno));
1300 switch (call & 0xffff) {
1301 /* x86-64: syscall = 0x0f 0x05 */
1302 case 0x050f: currpers = 0; break;
1303 /* i386: int 0x80 = 0xcd 0x80 */
1304 case 0x80cd: currpers = 1; break;
1305 default:
1306 currpers = current_personality;
1307 fprintf(stderr,
1308 "Unknown syscall opcode (0x%04X) while "
1309 "detecting personality of process "
Denys Vlasenkoeb0e3e82011-08-30 18:53:49 +02001310 "PID=%d\n", (int)call, tcp->pid);
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001311 break;
1312 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01001313# endif
Denys Vlasenko59aea0a2013-02-11 12:29:36 +01001314
H.J. Lu35be5812012-04-16 13:00:01 +02001315# ifdef X32
Denys Vlasenko59aea0a2013-02-11 12:29:36 +01001316 /* If we are built for a x32 system, then personality 0 is x32
1317 * (not x86_64), and stracing of x86_64 apps is not supported.
1318 * Stracing of i386 apps is still supported.
H.J. Lu085e4282012-04-17 11:05:04 -07001319 */
Denys Vlasenko59aea0a2013-02-11 12:29:36 +01001320 if (currpers == 0) {
1321 fprintf(stderr, "syscall_%lu(...) in unsupported "
1322 "64-bit mode of process PID=%d\n",
1323 scno, tcp->pid);
1324 return 0;
H.J. Lu35be5812012-04-16 13:00:01 +02001325 }
Denys Vlasenko59aea0a2013-02-11 12:29:36 +01001326 currpers &= ~2; /* map 2,1 to 0,1 */
H.J. Lu35be5812012-04-16 13:00:01 +02001327# endif
H.J. Lu085e4282012-04-17 11:05:04 -07001328 update_personality(tcp, currpers);
Denys Vlasenko523635f2012-02-25 02:44:25 +01001329#elif defined(IA64)
Wichert Akkerman7b3346b2001-10-09 23:47:38 +00001330# define IA64_PSR_IS ((long)1 << 34)
Denys Vlasenko4bdb6bb2013-02-06 18:09:31 +01001331 long psr;
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001332 if (upeek(tcp, PT_CR_IPSR, &psr) >= 0)
Wichert Akkerman7b3346b2001-10-09 23:47:38 +00001333 ia32 = (psr & IA64_PSR_IS) != 0;
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001334 if (ia32) {
Denys Vlasenkoeb0e3e82011-08-30 18:53:49 +02001335 if (upeek(tcp, PT_R1, &scno) < 0)
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001336 return -1;
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +00001337 } else {
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001338 if (upeek(tcp, PT_R15, &scno) < 0)
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +00001339 return -1;
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001340 }
Steve McIntyre890a5ca2012-11-10 11:24:48 +00001341#elif defined(AARCH64)
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01001342 switch (aarch64_io.iov_len) {
Steve McIntyre890a5ca2012-11-10 11:24:48 +00001343 case sizeof(aarch64_regs):
1344 /* We are in 64-bit mode */
Steve McIntyre890a5ca2012-11-10 11:24:48 +00001345 scno = aarch64_regs.regs[8];
1346 update_personality(tcp, 1);
1347 break;
Denys Vlasenko28ac68f2013-02-08 12:38:51 +01001348 case sizeof(arm_regs):
Steve McIntyre890a5ca2012-11-10 11:24:48 +00001349 /* We are in 32-bit mode */
Denys Vlasenko28ac68f2013-02-08 12:38:51 +01001350 scno = arm_regs.ARM_r7;
Steve McIntyre890a5ca2012-11-10 11:24:48 +00001351 update_personality(tcp, 0);
1352 break;
Steve McIntyre890a5ca2012-11-10 11:24:48 +00001353 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01001354#elif defined(ARM)
Denys Vlasenkoe7030e52013-02-20 18:08:25 +01001355 if (arm_regs.ARM_ip != 0) {
1356 /* It is not a syscall entry */
1357 fprintf(stderr, "pid %d stray syscall exit\n", tcp->pid);
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001358 tcp->flags |= TCB_INSYSCALL;
Denys Vlasenkoe7030e52013-02-20 18:08:25 +01001359 return 0;
1360 }
1361 /* Note: we support only 32-bit CPUs, not 26-bit */
1362
1363 if (arm_regs.ARM_cpsr & 0x20) {
1364 /* Thumb mode */
1365 scno = arm_regs.ARM_r7;
1366 } else {
1367 /* ARM mode */
1368 errno = 0;
1369 scno = ptrace(PTRACE_PEEKTEXT, tcp->pid, (void *)(arm_regs.ARM_pc - 4), NULL);
1370 if (errno)
1371 return -1;
1372
1373 /* EABI syscall convention? */
1374 if (scno == 0xef000000) {
1375 scno = arm_regs.ARM_r7; /* yes */
1376 } else {
1377 if ((scno & 0x0ff00000) != 0x0f900000) {
1378 fprintf(stderr, "pid %d unknown syscall trap 0x%08lx\n",
1379 tcp->pid, scno);
1380 return -1;
1381 }
1382 /* Fixup the syscall number */
1383 scno &= 0x000fffff;
1384 }
1385 }
Denys Vlasenko7270de52013-02-21 15:46:34 +01001386
1387 scno = shuffle_scno(scno);
Denys Vlasenko523635f2012-02-25 02:44:25 +01001388#elif defined(M68K)
Denys Vlasenko932fc7d2008-12-16 18:18:40 +00001389 if (upeek(tcp, 4*PT_ORIG_D0, &scno) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001390 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001391#elif defined(LINUX_MIPSN32)
Roland McGrath542c2c62008-05-20 01:11:56 +00001392 unsigned long long regs[38];
1393
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001394 if (ptrace(PTRACE_GETREGS, tcp->pid, NULL, (long) &regs) < 0)
Roland McGrath542c2c62008-05-20 01:11:56 +00001395 return -1;
Denys Vlasenkod22213a2013-02-13 17:52:31 +01001396 mips_a3 = regs[REG_A3];
1397 mips_r2 = regs[REG_V0];
Roland McGrath542c2c62008-05-20 01:11:56 +00001398
Denys Vlasenkod22213a2013-02-13 17:52:31 +01001399 scno = mips_r2;
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01001400 if (!SCNO_IN_RANGE(scno)) {
Denys Vlasenkod22213a2013-02-13 17:52:31 +01001401 if (mips_a3 == 0 || mips_a3 == -1) {
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001402 if (debug_flag)
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001403 fprintf(stderr, "stray syscall exit: v0 = %ld\n", scno);
Roland McGrath542c2c62008-05-20 01:11:56 +00001404 return 0;
1405 }
Roland McGrath542c2c62008-05-20 01:11:56 +00001406 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01001407#elif defined(MIPS)
Denys Vlasenkod22213a2013-02-13 17:52:31 +01001408 if (upeek(tcp, REG_A3, &mips_a3) < 0)
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +00001409 return -1;
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001410 if (upeek(tcp, REG_V0, &scno) < 0)
1411 return -1;
Wichert Akkermanf90da011999-10-31 21:15:38 +00001412
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01001413 if (!SCNO_IN_RANGE(scno)) {
Denys Vlasenkod22213a2013-02-13 17:52:31 +01001414 if (mips_a3 == 0 || mips_a3 == -1) {
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001415 if (debug_flag)
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001416 fprintf(stderr, "stray syscall exit: v0 = %ld\n", scno);
Roland McGrath542c2c62008-05-20 01:11:56 +00001417 return 0;
1418 }
Wichert Akkermanf90da011999-10-31 21:15:38 +00001419 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01001420#elif defined(ALPHA)
Denys Vlasenko89804ec2013-02-07 13:14:48 +01001421 if (upeek(tcp, REG_A3, &alpha_a3) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001422 return -1;
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001423 if (upeek(tcp, REG_R0, &scno) < 0)
1424 return -1;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001425
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001426 /*
1427 * Do some sanity checks to figure out if it's
1428 * really a syscall entry
1429 */
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01001430 if (!SCNO_IN_RANGE(scno)) {
Denys Vlasenko89804ec2013-02-07 13:14:48 +01001431 if (alpha_a3 == 0 || alpha_a3 == -1) {
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001432 if (debug_flag)
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001433 fprintf(stderr, "stray syscall exit: r0 = %ld\n", scno);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001434 return 0;
1435 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001436 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01001437#elif defined(SPARC) || defined(SPARC64)
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001438 /* Disassemble the syscall trap. */
1439 /* Retrieve the syscall trap instruction. */
Denys Vlasenko46455822013-02-05 17:02:59 +01001440 unsigned long trap;
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001441 errno = 0;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001442# if defined(SPARC64)
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +01001443 trap = ptrace(PTRACE_PEEKTEXT, tcp->pid, (char *)sparc_regs.tpc, 0);
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001444 trap >>= 32;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001445# else
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +01001446 trap = ptrace(PTRACE_PEEKTEXT, tcp->pid, (char *)sparc_regs.pc, 0);
Denys Vlasenko523635f2012-02-25 02:44:25 +01001447# endif
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001448 if (errno)
Wichert Akkermanc1652e22001-03-27 12:17:16 +00001449 return -1;
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001450
1451 /* Disassemble the trap to see what personality to use. */
1452 switch (trap) {
1453 case 0x91d02010:
1454 /* Linux/SPARC syscall trap. */
Dmitry V. Levina5a839a2011-12-23 00:50:49 +00001455 update_personality(tcp, 0);
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001456 break;
1457 case 0x91d0206d:
1458 /* Linux/SPARC64 syscall trap. */
Dmitry V. Levina5a839a2011-12-23 00:50:49 +00001459 update_personality(tcp, 2);
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001460 break;
1461 case 0x91d02000:
1462 /* SunOS syscall trap. (pers 1) */
1463 fprintf(stderr, "syscall: SunOS no support\n");
1464 return -1;
1465 case 0x91d02008:
1466 /* Solaris 2.x syscall trap. (per 2) */
Dmitry V. Levina5a839a2011-12-23 00:50:49 +00001467 update_personality(tcp, 1);
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001468 break;
1469 case 0x91d02009:
1470 /* NetBSD/FreeBSD syscall trap. */
1471 fprintf(stderr, "syscall: NetBSD/FreeBSD not supported\n");
1472 return -1;
1473 case 0x91d02027:
1474 /* Solaris 2.x gettimeofday */
Dmitry V. Levina5a839a2011-12-23 00:50:49 +00001475 update_personality(tcp, 1);
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001476 break;
1477 default:
Denys Vlasenko523635f2012-02-25 02:44:25 +01001478# if defined(SPARC64)
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +01001479 fprintf(stderr, "syscall: unknown syscall trap %08lx %016lx\n", trap, sparc_regs.tpc);
Denys Vlasenko523635f2012-02-25 02:44:25 +01001480# else
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +01001481 fprintf(stderr, "syscall: unknown syscall trap %08lx %08lx\n", trap, sparc_regs.pc);
Denys Vlasenko523635f2012-02-25 02:44:25 +01001482# endif
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001483 return -1;
1484 }
1485
1486 /* Extract the system call number from the registers. */
1487 if (trap == 0x91d02027)
1488 scno = 156;
1489 else
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +01001490 scno = sparc_regs.u_regs[U_REG_G1];
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001491 if (scno == 0) {
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +01001492 scno = sparc_regs.u_regs[U_REG_O0];
1493 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 +02001494 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01001495#elif defined(HPPA)
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001496 if (upeek(tcp, PT_GR20, &scno) < 0)
1497 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001498#elif defined(SH)
Denys Vlasenkoadedb512008-12-30 18:47:55 +00001499 /*
1500 * In the new syscall ABI, the system call number is in R3.
1501 */
1502 if (upeek(tcp, 4*(REG_REG0+3), &scno) < 0)
1503 return -1;
Wichert Akkermanccef6372002-05-01 16:39:22 +00001504
Denys Vlasenkoadedb512008-12-30 18:47:55 +00001505 if (scno < 0) {
1506 /* Odd as it may seem, a glibc bug has been known to cause
1507 glibc to issue bogus negative syscall numbers. So for
1508 our purposes, make strace print what it *should* have been */
1509 long correct_scno = (scno & 0xff);
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001510 if (debug_flag)
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +00001511 fprintf(stderr,
Denys Vlasenkoadedb512008-12-30 18:47:55 +00001512 "Detected glibc bug: bogus system call"
1513 " number = %ld, correcting to %ld\n",
1514 scno,
1515 correct_scno);
1516 scno = correct_scno;
1517 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01001518#elif defined(SH64)
Denys Vlasenko932fc7d2008-12-16 18:18:40 +00001519 if (upeek(tcp, REG_SYSCALL, &scno) < 0)
Roland McGrathe1e584b2003-06-02 19:18:58 +00001520 return -1;
Denys Vlasenkoadedb512008-12-30 18:47:55 +00001521 scno &= 0xFFFF;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001522#elif defined(CRISV10) || defined(CRISV32)
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001523 if (upeek(tcp, 4*PT_R9, &scno) < 0)
1524 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001525#elif defined(TILE)
Chris Metcalf0b99a8a2013-02-05 17:48:33 +01001526 int currpers;
1527 scno = tile_regs.regs[10];
1528# ifdef __tilepro__
1529 currpers = 1;
1530# else
Denys Vlasenko59aea0a2013-02-11 12:29:36 +01001531# ifndef PT_FLAGS_COMPAT
1532# define PT_FLAGS_COMPAT 0x10000 /* from Linux 3.8 on */
1533# endif
Chris Metcalf0b99a8a2013-02-05 17:48:33 +01001534 if (tile_regs.flags & PT_FLAGS_COMPAT)
1535 currpers = 1;
1536 else
1537 currpers = 0;
1538# endif
1539 update_personality(tcp, currpers);
Denys Vlasenko523635f2012-02-25 02:44:25 +01001540#elif defined(MICROBLAZE)
Edgar E. Iglesias939caba2010-07-06 14:21:07 +02001541 if (upeek(tcp, 0, &scno) < 0)
1542 return -1;
Christian Svensson492f81f2013-02-14 13:26:27 +01001543#elif defined(OR1K)
1544 scno = or1k_regs.gpr[11];
James Hogan5f999a82013-02-22 14:44:10 +00001545#elif defined(METAG)
1546 scno = metag_regs.dx[0][1]; /* syscall number in D1Re0 (D1.0) */
Denys Vlasenko523635f2012-02-25 02:44:25 +01001547#endif
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001548
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001549 tcp->scno = scno;
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01001550 if (SCNO_IS_VALID(tcp->scno)) {
1551 tcp->s_ent = &sysent[scno];
1552 tcp->qual_flg = qual_flags[scno];
1553 } else {
Denys Vlasenkoa9fe13c2013-02-22 13:26:10 +01001554 static const struct_sysent unknown = {
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01001555 .nargs = MAX_ARGS,
1556 .sys_flags = 0,
1557 .sys_func = printargs,
1558 .sys_name = "unknown", /* not used */
1559 };
1560 tcp->s_ent = &unknown;
1561 tcp->qual_flg = UNDEFINED_SCNO | QUAL_RAW | DEFAULT_QUAL_FLAGS;
1562 }
Pavel Machek4dc3b142000-02-01 17:58:41 +00001563 return 1;
1564}
1565
Denys Vlasenko20c41fd2011-08-25 10:23:00 +02001566/* Called at each syscall entry.
Denys Vlasenkobc161ec2009-01-02 18:02:45 +00001567 * Returns:
Denys Vlasenko907735a2012-03-21 00:23:16 +01001568 * 0: "ignore this ptrace stop", bail out of trace_syscall_entering() silently.
1569 * 1: ok, continue in trace_syscall_entering().
1570 * other: error, trace_syscall_entering() should print error indicator
Denys Vlasenkobc161ec2009-01-02 18:02:45 +00001571 * ("????" etc) and bail out.
1572 */
Roland McGratha4d48532005-06-08 20:45:28 +00001573static int
Denys Vlasenko8b4454c2011-08-25 10:40:14 +02001574syscall_fixup_on_sysenter(struct tcb *tcp)
Pavel Machek4dc3b142000-02-01 17:58:41 +00001575{
Denys Vlasenkob88f9612011-08-21 18:03:23 +02001576 /* A common case of "not a syscall entry" is post-execve SIGTRAP */
Denys Vlasenko523635f2012-02-25 02:44:25 +01001577#if defined(I386)
Denys Vlasenkoeb0e3e82011-08-30 18:53:49 +02001578 if (i386_regs.eax != -ENOSYS) {
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001579 if (debug_flag)
Denys Vlasenkoeb0e3e82011-08-30 18:53:49 +02001580 fprintf(stderr, "not a syscall entry (eax = %ld)\n", i386_regs.eax);
1581 return 0;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001582 }
H.J. Lu35be5812012-04-16 13:00:01 +02001583#elif defined(X86_64) || defined(X32)
Denys Vlasenkoeb0e3e82011-08-30 18:53:49 +02001584 {
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +01001585 long rax;
1586 if (x86_io.iov_len == sizeof(i386_regs)) {
1587 /* Sign extend from 32 bits */
1588 rax = (int32_t)i386_regs.eax;
1589 } else {
1590 /* Note: in X32 build, this truncates 64 to 32 bits */
1591 rax = x86_64_regs.rax;
1592 }
Denys Vlasenkoeb0e3e82011-08-30 18:53:49 +02001593 if (rax != -ENOSYS) {
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001594 if (debug_flag)
Denys Vlasenko18beb982011-08-24 16:59:23 +02001595 fprintf(stderr, "not a syscall entry (rax = %ld)\n", rax);
1596 return 0;
1597 }
Michal Ludvig0e035502002-09-23 15:41:01 +00001598 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01001599#elif defined(S390) || defined(S390X)
Denys Vlasenkof20bff62011-08-25 10:31:24 +02001600 /* TODO: we already fetched PT_GPR2 in get_scno
1601 * and stored it in syscall_mode, reuse it here
1602 * instead of re-fetching?
1603 */
Denys Vlasenko932fc7d2008-12-16 18:18:40 +00001604 if (upeek(tcp, PT_GPR2, &gpr2) < 0)
Wichert Akkerman12f75d12000-02-14 16:23:40 +00001605 return -1;
Michal Ludvig882eda82002-11-11 12:50:47 +00001606 if (syscall_mode != -ENOSYS)
1607 syscall_mode = tcp->scno;
Denys Vlasenkoece98792011-08-25 10:25:35 +02001608 if (gpr2 != syscall_mode) {
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001609 if (debug_flag)
Denys Vlasenkob88f9612011-08-21 18:03:23 +02001610 fprintf(stderr, "not a syscall entry (gpr2 = %ld)\n", gpr2);
Wichert Akkerman12f75d12000-02-14 16:23:40 +00001611 return 0;
1612 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01001613#elif defined(M68K)
Denys Vlasenkof20bff62011-08-25 10:31:24 +02001614 /* TODO? Eliminate upeek's in arches below like we did in x86 */
Denys Vlasenko89804ec2013-02-07 13:14:48 +01001615 if (upeek(tcp, 4*PT_D0, &m68k_d0) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001616 return -1;
Denys Vlasenko89804ec2013-02-07 13:14:48 +01001617 if (m68k_d0 != -ENOSYS) {
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001618 if (debug_flag)
Denys Vlasenko89804ec2013-02-07 13:14:48 +01001619 fprintf(stderr, "not a syscall entry (d0 = %ld)\n", m68k_d0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001620 return 0;
1621 }
Wichert Akkerman7b3346b2001-10-09 23:47:38 +00001622#elif defined(IA64)
Denys Vlasenko89804ec2013-02-07 13:14:48 +01001623 if (upeek(tcp, PT_R10, &ia64_r10) < 0)
Wichert Akkerman7b3346b2001-10-09 23:47:38 +00001624 return -1;
Denys Vlasenko89804ec2013-02-07 13:14:48 +01001625 if (upeek(tcp, PT_R8, &ia64_r8) < 0)
Wichert Akkerman7b3346b2001-10-09 23:47:38 +00001626 return -1;
Denys Vlasenko89804ec2013-02-07 13:14:48 +01001627 if (ia32 && ia64_r8 != -ENOSYS) {
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001628 if (debug_flag)
Denys Vlasenko89804ec2013-02-07 13:14:48 +01001629 fprintf(stderr, "not a syscall entry (r8 = %ld)\n", ia64_r8);
Wichert Akkerman7b3346b2001-10-09 23:47:38 +00001630 return 0;
1631 }
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001632#elif defined(CRISV10) || defined(CRISV32)
Denys Vlasenko89804ec2013-02-07 13:14:48 +01001633 if (upeek(tcp, 4*PT_R10, &cris_r10) < 0)
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001634 return -1;
Denys Vlasenko89804ec2013-02-07 13:14:48 +01001635 if (cris_r10 != -ENOSYS) {
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001636 if (debug_flag)
Denys Vlasenko89804ec2013-02-07 13:14:48 +01001637 fprintf(stderr, "not a syscall entry (r10 = %ld)\n", cris_r10);
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001638 return 0;
1639 }
Edgar E. Iglesias939caba2010-07-06 14:21:07 +02001640#elif defined(MICROBLAZE)
Denys Vlasenko89804ec2013-02-07 13:14:48 +01001641 if (upeek(tcp, 3 * 4, &microblaze_r3) < 0)
Edgar E. Iglesias939caba2010-07-06 14:21:07 +02001642 return -1;
Denys Vlasenko89804ec2013-02-07 13:14:48 +01001643 if (microblaze_r3 != -ENOSYS) {
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001644 if (debug_flag)
Denys Vlasenko89804ec2013-02-07 13:14:48 +01001645 fprintf(stderr, "not a syscall entry (r3 = %ld)\n", microblaze_r3);
Edgar E. Iglesias939caba2010-07-06 14:21:07 +02001646 return 0;
1647 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001648#endif
Pavel Machek4dc3b142000-02-01 17:58:41 +00001649 return 1;
1650}
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001651
Denys Vlasenko146b9442012-03-18 22:10:48 +01001652static void
1653internal_fork(struct tcb *tcp)
1654{
1655#if defined S390 || defined S390X || defined CRISV10 || defined CRISV32
1656# define ARG_FLAGS 1
1657#else
1658# define ARG_FLAGS 0
1659#endif
1660#ifndef CLONE_UNTRACED
1661# define CLONE_UNTRACED 0x00800000
1662#endif
1663 if ((ptrace_setoptions
1664 & (PTRACE_O_TRACECLONE | PTRACE_O_TRACEFORK | PTRACE_O_TRACEVFORK))
1665 == (PTRACE_O_TRACECLONE | PTRACE_O_TRACEFORK | PTRACE_O_TRACEVFORK))
1666 return;
1667
1668 if (!followfork)
1669 return;
1670
1671 if (entering(tcp)) {
1672 /*
1673 * We won't see the new child if clone is called with
1674 * CLONE_UNTRACED, so we keep the same logic with that option
1675 * and don't trace it.
1676 */
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01001677 if ((tcp->s_ent->sys_func == sys_clone)
1678 && (tcp->u_arg[ARG_FLAGS] & CLONE_UNTRACED)
1679 )
Denys Vlasenko146b9442012-03-18 22:10:48 +01001680 return;
1681 setbpt(tcp);
1682 } else {
1683 if (tcp->flags & TCB_BPTSET)
1684 clearbpt(tcp);
1685 }
1686}
1687
1688#if defined(TCB_WAITEXECVE)
1689static void
1690internal_exec(struct tcb *tcp)
1691{
1692 /* Maybe we have post-execve SIGTRAP suppressed? */
1693 if (ptrace_setoptions & PTRACE_O_TRACEEXEC)
1694 return; /* yes, no need to do anything */
1695
1696 if (exiting(tcp) && syserror(tcp))
1697 /* Error in execve, no post-execve SIGTRAP expected */
1698 tcp->flags &= ~TCB_WAITEXECVE;
1699 else
1700 tcp->flags |= TCB_WAITEXECVE;
1701}
1702#endif
1703
1704static void
Denys Vlasenko8d4ca0c2013-02-06 13:18:42 +01001705syscall_fixup_for_fork_exec(struct tcb *tcp)
Roland McGrathc1e45922008-05-27 23:18:29 +00001706{
Denys Vlasenkoa6146922011-08-24 18:07:22 +02001707 /*
1708 * We must always trace a few critical system calls in order to
1709 * correctly support following forks in the presence of tracing
1710 * qualifiers.
1711 */
1712 int (*func)();
1713
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01001714 func = tcp->s_ent->sys_func;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02001715
1716 if ( sys_fork == func
Denys Vlasenkoa6146922011-08-24 18:07:22 +02001717 || sys_vfork == func
Denys Vlasenkoa6146922011-08-24 18:07:22 +02001718 || sys_clone == func
Denys Vlasenko146b9442012-03-18 22:10:48 +01001719 ) {
1720 internal_fork(tcp);
1721 return;
1722 }
Denys Vlasenkoa6146922011-08-24 18:07:22 +02001723
Denys Vlasenko84703742012-02-25 02:38:52 +01001724#if defined(TCB_WAITEXECVE)
Denys Vlasenkoa6146922011-08-24 18:07:22 +02001725 if ( sys_execve == func
Denys Vlasenko84703742012-02-25 02:38:52 +01001726# if defined(SPARC) || defined(SPARC64)
Denys Vlasenkoa6146922011-08-24 18:07:22 +02001727 || sys_execv == func
Denys Vlasenkoa7949742011-08-21 17:26:55 +02001728# endif
Denys Vlasenko146b9442012-03-18 22:10:48 +01001729 ) {
1730 internal_exec(tcp);
1731 return;
1732 }
Roland McGrathc1e45922008-05-27 23:18:29 +00001733#endif
Pavel Machek4dc3b142000-02-01 17:58:41 +00001734}
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001735
Denys Vlasenkobb6bb5c2012-03-20 17:10:35 +01001736/* Return -1 on error or 1 on success (never 0!) */
Roland McGratha4d48532005-06-08 20:45:28 +00001737static int
Denys Vlasenkobb6bb5c2012-03-20 17:10:35 +01001738get_syscall_args(struct tcb *tcp)
Pavel Machek4dc3b142000-02-01 17:58:41 +00001739{
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001740 int i, nargs;
1741
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01001742 nargs = tcp->s_ent->nargs;
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001743
Denys Vlasenko523635f2012-02-25 02:44:25 +01001744#if defined(S390) || defined(S390X)
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001745 for (i = 0; i < nargs; ++i)
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001746 if (upeek(tcp, i==0 ? PT_ORIGGPR2 : PT_GPR2 + i*sizeof(long), &tcp->u_arg[i]) < 0)
1747 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001748#elif defined(ALPHA)
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001749 for (i = 0; i < nargs; ++i)
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001750 if (upeek(tcp, REG_A0+i, &tcp->u_arg[i]) < 0)
1751 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001752#elif defined(IA64)
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001753 if (!ia32) {
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001754 unsigned long *out0, cfm, sof, sol;
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001755 long rbs_end;
1756 /* be backwards compatible with kernel < 2.4.4... */
1757# ifndef PT_RBS_END
1758# define PT_RBS_END PT_AR_BSP
1759# endif
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +00001760
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001761 if (upeek(tcp, PT_RBS_END, &rbs_end) < 0)
1762 return -1;
1763 if (upeek(tcp, PT_CFM, (long *) &cfm) < 0)
Roland McGrath542c2c62008-05-20 01:11:56 +00001764 return -1;
1765
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001766 sof = (cfm >> 0) & 0x7f;
1767 sol = (cfm >> 7) & 0x7f;
1768 out0 = ia64_rse_skip_regs((unsigned long *) rbs_end, -sof + sol);
1769
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001770 for (i = 0; i < nargs; ++i) {
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001771 if (umoven(tcp, (unsigned long) ia64_rse_skip_regs(out0, i),
1772 sizeof(long), (char *) &tcp->u_arg[i]) < 0)
1773 return -1;
1774 }
1775 } else {
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001776 static const int argreg[MAX_ARGS] = { PT_R11 /* EBX = out0 */,
1777 PT_R9 /* ECX = out1 */,
1778 PT_R10 /* EDX = out2 */,
1779 PT_R14 /* ESI = out3 */,
1780 PT_R15 /* EDI = out4 */,
1781 PT_R13 /* EBP = out5 */};
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001782
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001783 for (i = 0; i < nargs; ++i) {
1784 if (upeek(tcp, argreg[i], &tcp->u_arg[i]) < 0)
1785 return -1;
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001786 /* truncate away IVE sign-extension */
1787 tcp->u_arg[i] &= 0xffffffff;
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001788 }
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001789 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01001790#elif defined(LINUX_MIPSN32) || defined(LINUX_MIPSN64)
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001791 /* N32 and N64 both use up to six registers. */
1792 unsigned long long regs[38];
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001793
1794 if (ptrace(PTRACE_GETREGS, tcp->pid, NULL, (long) &regs) < 0)
1795 return -1;
1796
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001797 for (i = 0; i < nargs; ++i) {
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001798 tcp->u_arg[i] = regs[REG_A0 + i];
Denys Vlasenko523635f2012-02-25 02:44:25 +01001799# if defined(LINUX_MIPSN32)
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001800 tcp->ext_arg[i] = regs[REG_A0 + i];
Denys Vlasenko523635f2012-02-25 02:44:25 +01001801# endif
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001802 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01001803#elif defined(MIPS)
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001804 if (nargs > 4) {
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001805 long sp;
1806
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001807 if (upeek(tcp, REG_SP, &sp) < 0)
1808 return -1;
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001809 for (i = 0; i < 4; ++i)
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001810 if (upeek(tcp, REG_A0 + i, &tcp->u_arg[i]) < 0)
1811 return -1;
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001812 umoven(tcp, sp + 16, (nargs - 4) * sizeof(tcp->u_arg[0]),
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001813 (char *)(tcp->u_arg + 4));
1814 } else {
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001815 for (i = 0; i < nargs; ++i)
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001816 if (upeek(tcp, REG_A0 + i, &tcp->u_arg[i]) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001817 return -1;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001818 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01001819#elif defined(POWERPC)
1820# ifndef PT_ORIG_R3
1821# define PT_ORIG_R3 34
1822# endif
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001823 for (i = 0; i < nargs; ++i) {
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001824 if (upeek(tcp, (i==0) ?
1825 (sizeof(unsigned long) * PT_ORIG_R3) :
1826 ((i+PT_R3) * sizeof(unsigned long)),
1827 &tcp->u_arg[i]) < 0)
1828 return -1;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001829 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01001830#elif defined(SPARC) || defined(SPARC64)
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001831 for (i = 0; i < nargs; ++i)
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +01001832 tcp->u_arg[i] = sparc_regs.u_regs[U_REG_O0 + i];
Denys Vlasenko523635f2012-02-25 02:44:25 +01001833#elif defined(HPPA)
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001834 for (i = 0; i < nargs; ++i)
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001835 if (upeek(tcp, PT_GR26-4*i, &tcp->u_arg[i]) < 0)
1836 return -1;
Steve McIntyre890a5ca2012-11-10 11:24:48 +00001837#elif defined(ARM) || defined(AARCH64)
1838# if defined(AARCH64)
1839 if (tcp->currpers == 1)
1840 for (i = 0; i < nargs; ++i)
1841 tcp->u_arg[i] = aarch64_regs.regs[i];
1842 else
Denys Vlasenko28ac68f2013-02-08 12:38:51 +01001843# endif
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001844 for (i = 0; i < nargs; ++i)
Denys Vlasenko401374e2013-02-06 18:24:39 +01001845 tcp->u_arg[i] = arm_regs.uregs[i];
Denys Vlasenko523635f2012-02-25 02:44:25 +01001846#elif defined(AVR32)
Denys Vlasenkob5b25892011-08-30 19:04:54 +02001847 (void)i;
1848 (void)nargs;
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +01001849 tcp->u_arg[0] = avr32_regs.r12;
1850 tcp->u_arg[1] = avr32_regs.r11;
1851 tcp->u_arg[2] = avr32_regs.r10;
1852 tcp->u_arg[3] = avr32_regs.r9;
1853 tcp->u_arg[4] = avr32_regs.r5;
1854 tcp->u_arg[5] = avr32_regs.r3;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001855#elif defined(BFIN)
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001856 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 +02001857
Denys Vlasenko4b887a52011-08-23 13:32:38 +02001858 for (i = 0; i < nargs; ++i)
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001859 if (upeek(tcp, argreg[i], &tcp->u_arg[i]) < 0)
1860 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001861#elif defined(SH)
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001862 static const int syscall_regs[MAX_ARGS] = {
1863 4 * (REG_REG0+4), 4 * (REG_REG0+5), 4 * (REG_REG0+6),
1864 4 * (REG_REG0+7), 4 * (REG_REG0 ), 4 * (REG_REG0+1)
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001865 };
1866
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001867 for (i = 0; i < nargs; ++i)
Denys Vlasenko0b6c73c2011-06-23 22:22:34 +02001868 if (upeek(tcp, syscall_regs[i], &tcp->u_arg[i]) < 0)
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001869 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001870#elif defined(SH64)
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001871 int i;
1872 /* Registers used by SH5 Linux system calls for parameters */
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001873 static const int syscall_regs[MAX_ARGS] = { 2, 3, 4, 5, 6, 7 };
Roland McGrathe1e584b2003-06-02 19:18:58 +00001874
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001875 for (i = 0; i < nargs; ++i)
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001876 if (upeek(tcp, REG_GENERAL(syscall_regs[i]), &tcp->u_arg[i]) < 0)
1877 return -1;
Denys Vlasenko6cf36052013-02-15 15:01:38 +01001878#elif defined(I386)
1879 (void)i;
1880 (void)nargs;
1881 tcp->u_arg[0] = i386_regs.ebx;
1882 tcp->u_arg[1] = i386_regs.ecx;
1883 tcp->u_arg[2] = i386_regs.edx;
1884 tcp->u_arg[3] = i386_regs.esi;
1885 tcp->u_arg[4] = i386_regs.edi;
1886 tcp->u_arg[5] = i386_regs.ebp;
H.J. Lu35be5812012-04-16 13:00:01 +02001887#elif defined(X86_64) || defined(X32)
Denys Vlasenkoeb0e3e82011-08-30 18:53:49 +02001888 (void)i;
1889 (void)nargs;
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +01001890 if (x86_io.iov_len != sizeof(i386_regs)) {
1891 /* x86-64 or x32 ABI */
Denys Vlasenkoeb0e3e82011-08-30 18:53:49 +02001892 tcp->u_arg[0] = x86_64_regs.rdi;
1893 tcp->u_arg[1] = x86_64_regs.rsi;
1894 tcp->u_arg[2] = x86_64_regs.rdx;
1895 tcp->u_arg[3] = x86_64_regs.r10;
1896 tcp->u_arg[4] = x86_64_regs.r8;
1897 tcp->u_arg[5] = x86_64_regs.r9;
H.J. Lu35be5812012-04-16 13:00:01 +02001898# ifdef X32
1899 tcp->ext_arg[0] = x86_64_regs.rdi;
1900 tcp->ext_arg[1] = x86_64_regs.rsi;
1901 tcp->ext_arg[2] = x86_64_regs.rdx;
1902 tcp->ext_arg[3] = x86_64_regs.r10;
1903 tcp->ext_arg[4] = x86_64_regs.r8;
1904 tcp->ext_arg[5] = x86_64_regs.r9;
1905# endif
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +01001906 } else {
1907 /* i386 ABI */
Denys Vlasenko6cf36052013-02-15 15:01:38 +01001908 /* Zero-extend from 32 bits */
1909 /* Use widen_to_long(tcp->u_arg[N]) in syscall handlers
1910 * if you need to use *sign-extended* parameter.
1911 */
1912 tcp->u_arg[0] = (long)(uint32_t)i386_regs.ebx;
1913 tcp->u_arg[1] = (long)(uint32_t)i386_regs.ecx;
1914 tcp->u_arg[2] = (long)(uint32_t)i386_regs.edx;
1915 tcp->u_arg[3] = (long)(uint32_t)i386_regs.esi;
1916 tcp->u_arg[4] = (long)(uint32_t)i386_regs.edi;
1917 tcp->u_arg[5] = (long)(uint32_t)i386_regs.ebp;
Denys Vlasenkoeb0e3e82011-08-30 18:53:49 +02001918 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01001919#elif defined(MICROBLAZE)
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001920 for (i = 0; i < nargs; ++i)
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001921 if (upeek(tcp, (5 + i) * 4, &tcp->u_arg[i]) < 0)
1922 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001923#elif defined(CRISV10) || defined(CRISV32)
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001924 static const int crisregs[MAX_ARGS] = {
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001925 4*PT_ORIG_R10, 4*PT_R11, 4*PT_R12,
Denys Vlasenko0b6c73c2011-06-23 22:22:34 +02001926 4*PT_R13 , 4*PT_MOF, 4*PT_SRP
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001927 };
Roland McGrathe1e584b2003-06-02 19:18:58 +00001928
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001929 for (i = 0; i < nargs; ++i)
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001930 if (upeek(tcp, crisregs[i], &tcp->u_arg[i]) < 0)
1931 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001932#elif defined(TILE)
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001933 for (i = 0; i < nargs; ++i)
Chris Metcalf0b99a8a2013-02-05 17:48:33 +01001934 tcp->u_arg[i] = tile_regs.regs[i];
Denys Vlasenko523635f2012-02-25 02:44:25 +01001935#elif defined(M68K)
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001936 for (i = 0; i < nargs; ++i)
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001937 if (upeek(tcp, (i < 5 ? i : i + 2)*4, &tcp->u_arg[i]) < 0)
1938 return -1;
Christian Svensson492f81f2013-02-14 13:26:27 +01001939#elif defined(OR1K)
1940 (void)nargs;
1941 for (i = 0; i < 6; ++i)
1942 tcp->u_arg[i] = or1k_regs.gpr[3 + i];
James Hogan5f999a82013-02-22 14:44:10 +00001943#elif defined(METAG)
1944 for (i = 0; i < nargs; i++)
1945 /* arguments go backwards from D1Ar1 (D1.3) */
1946 tcp->u_arg[i] = ((unsigned long *)&metag_regs.dx[3][1])[-i];
Denys Vlasenko523635f2012-02-25 02:44:25 +01001947#else /* Other architecture (32bits specific) */
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001948 for (i = 0; i < nargs; ++i)
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001949 if (upeek(tcp, i*4, &tcp->u_arg[i]) < 0)
1950 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001951#endif
Pavel Machek4dc3b142000-02-01 17:58:41 +00001952 return 1;
1953}
1954
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00001955static int
Denys Vlasenkoed4f4f02011-08-22 11:54:06 +02001956trace_syscall_entering(struct tcb *tcp)
1957{
1958 int res, scno_good;
1959
Denys Vlasenko2ce12ed2011-08-24 17:25:32 +02001960#if defined TCB_WAITEXECVE
1961 if (tcp->flags & TCB_WAITEXECVE) {
1962 /* This is the post-execve SIGTRAP. */
1963 tcp->flags &= ~TCB_WAITEXECVE;
1964 return 0;
1965 }
1966#endif
1967
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01001968 scno_good = res = (get_regs_error ? -1 : get_scno(tcp));
Denys Vlasenkoed4f4f02011-08-22 11:54:06 +02001969 if (res == 0)
1970 return res;
Denys Vlasenko907735a2012-03-21 00:23:16 +01001971 if (res == 1) {
Denys Vlasenko8b4454c2011-08-25 10:40:14 +02001972 res = syscall_fixup_on_sysenter(tcp);
Denys Vlasenko907735a2012-03-21 00:23:16 +01001973 if (res == 0)
1974 return res;
1975 if (res == 1)
1976 res = get_syscall_args(tcp);
1977 }
Denys Vlasenkoed4f4f02011-08-22 11:54:06 +02001978
1979 if (res != 1) {
1980 printleader(tcp);
Denys Vlasenkoed4f4f02011-08-22 11:54:06 +02001981 if (scno_good != 1)
Denys Vlasenkob7a6dae2012-03-20 16:48:35 +01001982 tprints("????" /* anti-trigraph gap */ "(");
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01001983 else if (tcp->qual_flg & UNDEFINED_SCNO)
Denys Vlasenko7270de52013-02-21 15:46:34 +01001984 tprintf("%s(", undefined_scno_name(tcp));
Denys Vlasenkoed4f4f02011-08-22 11:54:06 +02001985 else
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01001986 tprintf("%s(", tcp->s_ent->sys_name);
Denys Vlasenkoed4f4f02011-08-22 11:54:06 +02001987 /*
1988 * " <unavailable>" will be added later by the code which
1989 * detects ptrace errors.
1990 */
1991 goto ret;
1992 }
1993
Dmitry V. Levinb5e88d42012-02-20 17:02:38 +00001994#if defined(SYS_socket_subcall) || defined(SYS_ipc_subcall)
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01001995 while (1) {
Denys Vlasenko523635f2012-02-25 02:44:25 +01001996# ifdef SYS_socket_subcall
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01001997 if (tcp->s_ent->sys_func == sys_socketcall) {
Dmitry V. Levin648c22c2012-03-15 22:08:55 +00001998 decode_socket_subcall(tcp);
Dmitry V. Levinb5e88d42012-02-20 17:02:38 +00001999 break;
2000 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002001# endif
2002# ifdef SYS_ipc_subcall
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01002003 if (tcp->s_ent->sys_func == sys_ipc) {
Dmitry V. Levin648c22c2012-03-15 22:08:55 +00002004 decode_ipc_subcall(tcp);
Dmitry V. Levinb5e88d42012-02-20 17:02:38 +00002005 break;
2006 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002007# endif
Dmitry V. Levinb5e88d42012-02-20 17:02:38 +00002008 break;
2009 }
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01002010#endif
Dmitry V. Levinb5e88d42012-02-20 17:02:38 +00002011
Denys Vlasenko8d4ca0c2013-02-06 13:18:42 +01002012 if (need_fork_exec_workarounds)
2013 syscall_fixup_for_fork_exec(tcp);
Denys Vlasenkoed4f4f02011-08-22 11:54:06 +02002014
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01002015 if (!(tcp->qual_flg & QUAL_TRACE)
2016 || (tracing_paths && !pathtrace_match(tcp))
2017 ) {
Denys Vlasenkoed4f4f02011-08-22 11:54:06 +02002018 tcp->flags |= TCB_INSYSCALL | TCB_FILTERED;
2019 return 0;
2020 }
2021
2022 tcp->flags &= ~TCB_FILTERED;
2023
2024 if (cflag == CFLAG_ONLY_STATS) {
2025 res = 0;
2026 goto ret;
2027 }
2028
2029 printleader(tcp);
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01002030 if (tcp->qual_flg & UNDEFINED_SCNO)
Denys Vlasenko7270de52013-02-21 15:46:34 +01002031 tprintf("%s(", undefined_scno_name(tcp));
Denys Vlasenkoed4f4f02011-08-22 11:54:06 +02002032 else
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01002033 tprintf("%s(", tcp->s_ent->sys_name);
2034 if ((tcp->qual_flg & QUAL_RAW) && tcp->s_ent->sys_func != sys_exit)
Denys Vlasenkoed4f4f02011-08-22 11:54:06 +02002035 res = printargs(tcp);
2036 else
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01002037 res = tcp->s_ent->sys_func(tcp);
Denys Vlasenkoed4f4f02011-08-22 11:54:06 +02002038
Dmitry V. Levinb742d8c2012-09-17 22:40:12 +00002039 fflush(tcp->outf);
Denys Vlasenkoed4f4f02011-08-22 11:54:06 +02002040 ret:
2041 tcp->flags |= TCB_INSYSCALL;
2042 /* Measure the entrance time as late as possible to avoid errors. */
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01002043 if (Tflag || cflag)
Denys Vlasenkoed4f4f02011-08-22 11:54:06 +02002044 gettimeofday(&tcp->etime, NULL);
2045 return res;
2046}
2047
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002048/* Returns:
Denys Vlasenko907735a2012-03-21 00:23:16 +01002049 * 1: ok, continue in trace_syscall_exiting().
2050 * -1: error, trace_syscall_exiting() should print error indicator
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002051 * ("????" etc) and bail out.
2052 */
2053static int
2054get_syscall_result(struct tcb *tcp)
2055{
Denys Vlasenko523635f2012-02-25 02:44:25 +01002056#if defined(S390) || defined(S390X)
Denys Vlasenkof20bff62011-08-25 10:31:24 +02002057 if (upeek(tcp, PT_GPR2, &gpr2) < 0)
2058 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01002059#elif defined(POWERPC)
Denys Vlasenkof20bff62011-08-25 10:31:24 +02002060# define SO_MASK 0x10000000
2061 {
2062 long flags;
2063 if (upeek(tcp, sizeof(unsigned long)*PT_CCR, &flags) < 0)
2064 return -1;
Denys Vlasenko46dc8b22012-03-21 00:07:25 +01002065 if (upeek(tcp, sizeof(unsigned long)*PT_R3, &ppc_result) < 0)
Denys Vlasenkof20bff62011-08-25 10:31:24 +02002066 return -1;
2067 if (flags & SO_MASK)
Denys Vlasenko46dc8b22012-03-21 00:07:25 +01002068 ppc_result = -ppc_result;
Denys Vlasenkof20bff62011-08-25 10:31:24 +02002069 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002070#elif defined(AVR32)
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01002071 /* already done by get_regs */
Denys Vlasenko523635f2012-02-25 02:44:25 +01002072#elif defined(BFIN)
Denys Vlasenkod22213a2013-02-13 17:52:31 +01002073 if (upeek(tcp, PT_R0, &bfin_r0) < 0)
Denys Vlasenkof20bff62011-08-25 10:31:24 +02002074 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01002075#elif defined(I386)
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01002076 /* already done by get_regs */
H.J. Lu35be5812012-04-16 13:00:01 +02002077#elif defined(X86_64) || defined(X32)
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01002078 /* already done by get_regs */
Denys Vlasenko523635f2012-02-25 02:44:25 +01002079#elif defined(IA64)
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002080# define IA64_PSR_IS ((long)1 << 34)
Denys Vlasenko4bdb6bb2013-02-06 18:09:31 +01002081 long psr;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002082 if (upeek(tcp, PT_CR_IPSR, &psr) >= 0)
2083 ia32 = (psr & IA64_PSR_IS) != 0;
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002084 if (upeek(tcp, PT_R8, &ia64_r8) < 0)
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002085 return -1;
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002086 if (upeek(tcp, PT_R10, &ia64_r10) < 0)
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002087 return -1;
Denys Vlasenko28ac68f2013-02-08 12:38:51 +01002088#elif defined(ARM)
2089 /* already done by get_regs */
Steve McIntyred8d3bd32012-10-24 17:58:16 +01002090#elif defined(AARCH64)
Denys Vlasenko28ac68f2013-02-08 12:38:51 +01002091 /* register reading already done by get_regs */
2092
2093 /* Used to do this, but we did it on syscall entry already: */
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01002094 /* We are in 64-bit mode (personality 1) if register struct is aarch64_regs,
2095 * else it's personality 0.
2096 */
Denys Vlasenko28ac68f2013-02-08 12:38:51 +01002097 /*update_personality(tcp, aarch64_io.iov_len == sizeof(aarch64_regs));*/
Denys Vlasenko523635f2012-02-25 02:44:25 +01002098#elif defined(M68K)
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002099 if (upeek(tcp, 4*PT_D0, &m68k_d0) < 0)
Denys Vlasenkof20bff62011-08-25 10:31:24 +02002100 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01002101#elif defined(LINUX_MIPSN32)
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002102 unsigned long long regs[38];
2103
2104 if (ptrace(PTRACE_GETREGS, tcp->pid, NULL, (long) &regs) < 0)
2105 return -1;
Denys Vlasenkod22213a2013-02-13 17:52:31 +01002106 mips_a3 = regs[REG_A3];
2107 mips_r2 = regs[REG_V0];
Denys Vlasenko523635f2012-02-25 02:44:25 +01002108#elif defined(MIPS)
Denys Vlasenkod22213a2013-02-13 17:52:31 +01002109 if (upeek(tcp, REG_A3, &mips_a3) < 0)
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002110 return -1;
Denys Vlasenkod22213a2013-02-13 17:52:31 +01002111 if (upeek(tcp, REG_V0, &mips_r2) < 0)
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002112 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01002113#elif defined(ALPHA)
Denys Vlasenkod22213a2013-02-13 17:52:31 +01002114 if (upeek(tcp, REG_A3, &alpha_a3) < 0)
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002115 return -1;
Denys Vlasenkod22213a2013-02-13 17:52:31 +01002116 if (upeek(tcp, REG_R0, &alpha_r0) < 0)
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002117 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01002118#elif defined(SPARC) || defined(SPARC64)
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01002119 /* already done by get_regs */
Denys Vlasenko523635f2012-02-25 02:44:25 +01002120#elif defined(HPPA)
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002121 if (upeek(tcp, PT_GR28, &hppa_r28) < 0)
Denys Vlasenkof20bff62011-08-25 10:31:24 +02002122 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01002123#elif defined(SH)
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01002124 /* new syscall ABI returns result in R0 */
Denys Vlasenkod22213a2013-02-13 17:52:31 +01002125 if (upeek(tcp, 4*REG_REG0, (long *)&sh_r0) < 0)
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01002126 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01002127#elif defined(SH64)
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01002128 /* ABI defines result returned in r9 */
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002129 if (upeek(tcp, REG_GENERAL(9), (long *)&sh64_r9) < 0)
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01002130 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01002131#elif defined(CRISV10) || defined(CRISV32)
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002132 if (upeek(tcp, 4*PT_R10, &cris_r10) < 0)
Denys Vlasenkof20bff62011-08-25 10:31:24 +02002133 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01002134#elif defined(TILE)
Chris Metcalf0b99a8a2013-02-05 17:48:33 +01002135 /* already done by get_regs */
Denys Vlasenko523635f2012-02-25 02:44:25 +01002136#elif defined(MICROBLAZE)
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002137 if (upeek(tcp, 3 * 4, &microblaze_r3) < 0)
Denys Vlasenkof20bff62011-08-25 10:31:24 +02002138 return -1;
Christian Svensson492f81f2013-02-14 13:26:27 +01002139#elif defined(OR1K)
2140 /* already done by get_regs */
James Hogan5f999a82013-02-22 14:44:10 +00002141#elif defined(METAG)
2142 /* already done by get_regs */
Denys Vlasenko523635f2012-02-25 02:44:25 +01002143#endif
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002144 return 1;
2145}
2146
Denys Vlasenkobb6bb5c2012-03-20 17:10:35 +01002147/* Called at each syscall exit */
2148static void
Denys Vlasenko20c41fd2011-08-25 10:23:00 +02002149syscall_fixup_on_sysexit(struct tcb *tcp)
2150{
Denys Vlasenko523635f2012-02-25 02:44:25 +01002151#if defined(S390) || defined(S390X)
Denys Vlasenko20c41fd2011-08-25 10:23:00 +02002152 if (syscall_mode != -ENOSYS)
2153 syscall_mode = tcp->scno;
Denys Vlasenkoece98792011-08-25 10:25:35 +02002154 if ((tcp->flags & TCB_WAITEXECVE)
Denys Vlasenko20c41fd2011-08-25 10:23:00 +02002155 && (gpr2 == -ENOSYS || gpr2 == tcp->scno)) {
2156 /*
2157 * Return from execve.
2158 * Fake a return value of zero. We leave the TCB_WAITEXECVE
2159 * flag set for the post-execve SIGTRAP to see and reset.
2160 */
2161 gpr2 = 0;
2162 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002163#endif
Denys Vlasenko20c41fd2011-08-25 10:23:00 +02002164}
2165
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002166/*
2167 * Check the syscall return value register value for whether it is
2168 * a negated errno code indicating an error, or a success return value.
2169 */
2170static inline int
2171is_negated_errno(unsigned long int val)
2172{
2173 unsigned long int max = -(long int) nerrnos;
Denys Vlasenko2544f982013-02-19 17:39:56 +01002174#if SUPPORTED_PERSONALITIES > 1 && SIZEOF_LONG > 4
Denys Vlasenko9fd4f962012-03-19 09:36:42 +01002175 if (current_wordsize < sizeof(val)) {
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002176 val = (unsigned int) val;
2177 max = (unsigned int) max;
2178 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002179#endif
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002180 return val > max;
2181}
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002182
Denys Vlasenkoafea7dd2013-02-12 11:52:35 +01002183#if defined(X32)
2184static inline int
2185is_negated_errno_x32(unsigned long long val)
2186{
2187 unsigned long long max = -(long long) nerrnos;
2188 /*
2189 * current_wordsize is 4 even in personality 0 (native X32)
2190 * but truncation _must not_ be done in it.
2191 * can't check current_wordsize here!
2192 */
2193 if (current_personality != 0) {
2194 val = (uint32_t) val;
2195 max = (uint32_t) max;
2196 }
2197 return val > max;
2198}
2199#endif
2200
Denys Vlasenko907735a2012-03-21 00:23:16 +01002201/* Returns:
2202 * 1: ok, continue in trace_syscall_exiting().
2203 * -1: error, trace_syscall_exiting() should print error indicator
2204 * ("????" etc) and bail out.
2205 */
Denys Vlasenkoc956ef02013-02-16 14:25:56 +01002206static void
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002207get_error(struct tcb *tcp)
2208{
2209 int u_error = 0;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002210 int check_errno = 1;
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01002211 if (tcp->s_ent->sys_flags & SYSCALL_NEVER_FAILS) {
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002212 check_errno = 0;
2213 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002214#if defined(S390) || defined(S390X)
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002215 if (check_errno && is_negated_errno(gpr2)) {
2216 tcp->u_rval = -1;
2217 u_error = -gpr2;
2218 }
2219 else {
2220 tcp->u_rval = gpr2;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002221 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002222#elif defined(I386)
Denys Vlasenkoeb0e3e82011-08-30 18:53:49 +02002223 if (check_errno && is_negated_errno(i386_regs.eax)) {
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002224 tcp->u_rval = -1;
Denys Vlasenkoeb0e3e82011-08-30 18:53:49 +02002225 u_error = -i386_regs.eax;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002226 }
2227 else {
Denys Vlasenkoeb0e3e82011-08-30 18:53:49 +02002228 tcp->u_rval = i386_regs.eax;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002229 }
Denys Vlasenkoafea7dd2013-02-12 11:52:35 +01002230#elif defined(X86_64)
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +01002231 long rax;
2232 if (x86_io.iov_len == sizeof(i386_regs)) {
2233 /* Sign extend from 32 bits */
2234 rax = (int32_t)i386_regs.eax;
2235 } else {
2236 rax = x86_64_regs.rax;
2237 }
2238 if (check_errno && is_negated_errno(rax)) {
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002239 tcp->u_rval = -1;
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +01002240 u_error = -rax;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002241 }
2242 else {
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +01002243 tcp->u_rval = rax;
Denys Vlasenkoafea7dd2013-02-12 11:52:35 +01002244 }
2245#elif defined(X32)
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +01002246 /* In X32, return value is 64-bit (llseek uses one).
2247 * Using merely "long rax" would not work.
2248 */
2249 long long rax;
2250 if (x86_io.iov_len == sizeof(i386_regs)) {
2251 /* Sign extend from 32 bits */
2252 rax = (int32_t)i386_regs.eax;
2253 } else {
2254 rax = x86_64_regs.rax;
2255 }
Denys Vlasenkoafea7dd2013-02-12 11:52:35 +01002256 /* Careful: is_negated_errno() works only on longs */
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +01002257 if (check_errno && is_negated_errno_x32(rax)) {
Denys Vlasenkoafea7dd2013-02-12 11:52:35 +01002258 tcp->u_rval = -1;
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +01002259 u_error = -rax;
Denys Vlasenkoafea7dd2013-02-12 11:52:35 +01002260 }
2261 else {
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +01002262 tcp->u_rval = rax; /* truncating */
2263 tcp->u_lrval = rax;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002264 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002265#elif defined(IA64)
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002266 if (ia32) {
2267 int err;
2268
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002269 err = (int)ia64_r8;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002270 if (check_errno && is_negated_errno(err)) {
2271 tcp->u_rval = -1;
2272 u_error = -err;
2273 }
2274 else {
2275 tcp->u_rval = err;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002276 }
2277 } else {
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002278 if (check_errno && ia64_r10) {
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002279 tcp->u_rval = -1;
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002280 u_error = ia64_r8;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002281 } else {
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002282 tcp->u_rval = ia64_r8;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002283 }
2284 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002285#elif defined(MIPS)
Denys Vlasenkod22213a2013-02-13 17:52:31 +01002286 if (check_errno && mips_a3) {
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002287 tcp->u_rval = -1;
Denys Vlasenkod22213a2013-02-13 17:52:31 +01002288 u_error = mips_r2;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002289 } else {
Denys Vlasenkod22213a2013-02-13 17:52:31 +01002290 tcp->u_rval = mips_r2;
H.J. Ludd0130b2012-04-16 12:16:45 +02002291# if defined(LINUX_MIPSN32)
Denys Vlasenkod22213a2013-02-13 17:52:31 +01002292 tcp->u_lrval = mips_r2;
H.J. Ludd0130b2012-04-16 12:16:45 +02002293# endif
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002294 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002295#elif defined(POWERPC)
Denys Vlasenko46dc8b22012-03-21 00:07:25 +01002296 if (check_errno && is_negated_errno(ppc_result)) {
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002297 tcp->u_rval = -1;
Denys Vlasenko46dc8b22012-03-21 00:07:25 +01002298 u_error = -ppc_result;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002299 }
2300 else {
Denys Vlasenko46dc8b22012-03-21 00:07:25 +01002301 tcp->u_rval = ppc_result;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002302 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002303#elif defined(M68K)
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002304 if (check_errno && is_negated_errno(m68k_d0)) {
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002305 tcp->u_rval = -1;
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002306 u_error = -m68k_d0;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002307 }
2308 else {
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002309 tcp->u_rval = m68k_d0;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002310 }
Steve McIntyre890a5ca2012-11-10 11:24:48 +00002311#elif defined(ARM) || defined(AARCH64)
2312# if defined(AARCH64)
2313 if (tcp->currpers == 1) {
2314 if (check_errno && is_negated_errno(aarch64_regs.regs[0])) {
2315 tcp->u_rval = -1;
2316 u_error = -aarch64_regs.regs[0];
2317 }
2318 else {
2319 tcp->u_rval = aarch64_regs.regs[0];
2320 }
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002321 }
Steve McIntyre890a5ca2012-11-10 11:24:48 +00002322 else
Denys Vlasenko28ac68f2013-02-08 12:38:51 +01002323# endif
Steve McIntyre890a5ca2012-11-10 11:24:48 +00002324 {
Denys Vlasenko401374e2013-02-06 18:24:39 +01002325 if (check_errno && is_negated_errno(arm_regs.ARM_r0)) {
Steve McIntyre890a5ca2012-11-10 11:24:48 +00002326 tcp->u_rval = -1;
Denys Vlasenko401374e2013-02-06 18:24:39 +01002327 u_error = -arm_regs.ARM_r0;
Steve McIntyre890a5ca2012-11-10 11:24:48 +00002328 }
2329 else {
Denys Vlasenko401374e2013-02-06 18:24:39 +01002330 tcp->u_rval = arm_regs.ARM_r0;
Steve McIntyre890a5ca2012-11-10 11:24:48 +00002331 }
Steve McIntyred8d3bd32012-10-24 17:58:16 +01002332 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002333#elif defined(AVR32)
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +01002334 if (check_errno && avr32_regs.r12 && (unsigned) -avr32_regs.r12 < nerrnos) {
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002335 tcp->u_rval = -1;
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +01002336 u_error = -avr32_regs.r12;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002337 }
2338 else {
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +01002339 tcp->u_rval = avr32_regs.r12;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002340 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002341#elif defined(BFIN)
Denys Vlasenkod22213a2013-02-13 17:52:31 +01002342 if (check_errno && is_negated_errno(bfin_r0)) {
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002343 tcp->u_rval = -1;
Denys Vlasenkod22213a2013-02-13 17:52:31 +01002344 u_error = -bfin_r0;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002345 } else {
Denys Vlasenkod22213a2013-02-13 17:52:31 +01002346 tcp->u_rval = bfin_r0;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002347 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002348#elif defined(ALPHA)
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002349 if (check_errno && alpha_a3) {
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002350 tcp->u_rval = -1;
Denys Vlasenkod22213a2013-02-13 17:52:31 +01002351 u_error = alpha_r0;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002352 }
2353 else {
Denys Vlasenkod22213a2013-02-13 17:52:31 +01002354 tcp->u_rval = alpha_r0;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002355 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002356#elif defined(SPARC)
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +01002357 if (check_errno && sparc_regs.psr & PSR_C) {
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002358 tcp->u_rval = -1;
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +01002359 u_error = sparc_regs.u_regs[U_REG_O0];
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002360 }
2361 else {
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +01002362 tcp->u_rval = sparc_regs.u_regs[U_REG_O0];
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002363 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002364#elif defined(SPARC64)
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +01002365 if (check_errno && sparc_regs.tstate & 0x1100000000UL) {
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002366 tcp->u_rval = -1;
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +01002367 u_error = sparc_regs.u_regs[U_REG_O0];
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002368 }
2369 else {
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +01002370 tcp->u_rval = sparc_regs.u_regs[U_REG_O0];
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002371 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002372#elif defined(HPPA)
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002373 if (check_errno && is_negated_errno(hppa_r28)) {
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002374 tcp->u_rval = -1;
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002375 u_error = -hppa_r28;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002376 }
2377 else {
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002378 tcp->u_rval = hppa_r28;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002379 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002380#elif defined(SH)
Denys Vlasenkod22213a2013-02-13 17:52:31 +01002381 if (check_errno && is_negated_errno(sh_r0)) {
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002382 tcp->u_rval = -1;
Denys Vlasenkod22213a2013-02-13 17:52:31 +01002383 u_error = -sh_r0;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002384 }
2385 else {
Denys Vlasenkod22213a2013-02-13 17:52:31 +01002386 tcp->u_rval = sh_r0;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002387 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002388#elif defined(SH64)
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002389 if (check_errno && is_negated_errno(sh64_r9)) {
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002390 tcp->u_rval = -1;
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002391 u_error = -sh64_r9;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002392 }
2393 else {
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002394 tcp->u_rval = sh64_r9;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002395 }
James Hogan5f999a82013-02-22 14:44:10 +00002396#elif defined(METAG)
2397 /* result pointer in D0Re0 (D0.0) */
2398 if (check_errno && is_negated_errno(metag_regs.dx[0][0])) {
2399 tcp->u_rval = -1;
2400 u_error = -metag_regs.dx[0][0];
2401 }
2402 else {
2403 tcp->u_rval = metag_regs.dx[0][0];
2404 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002405#elif defined(CRISV10) || defined(CRISV32)
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002406 if (check_errno && cris_r10 && (unsigned) -cris_r10 < nerrnos) {
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002407 tcp->u_rval = -1;
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002408 u_error = -cris_r10;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002409 }
2410 else {
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002411 tcp->u_rval = cris_r10;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002412 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002413#elif defined(TILE)
Chris Metcalf0b99a8a2013-02-05 17:48:33 +01002414 /*
2415 * The standard tile calling convention returns the value (or negative
2416 * errno) in r0, and zero (or positive errno) in r1.
2417 * Until at least kernel 3.8, however, the r1 value is not reflected
2418 * in ptregs at this point, so we use r0 here.
2419 */
2420 if (check_errno && is_negated_errno(tile_regs.regs[0])) {
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002421 tcp->u_rval = -1;
Chris Metcalf0b99a8a2013-02-05 17:48:33 +01002422 u_error = -tile_regs.regs[0];
2423 } else {
2424 tcp->u_rval = tile_regs.regs[0];
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002425 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002426#elif defined(MICROBLAZE)
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002427 if (check_errno && is_negated_errno(microblaze_r3)) {
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002428 tcp->u_rval = -1;
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002429 u_error = -microblaze_r3;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002430 }
2431 else {
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002432 tcp->u_rval = microblaze_r3;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002433 }
Christian Svensson492f81f2013-02-14 13:26:27 +01002434#elif defined(OR1K)
2435 if (check_errno && is_negated_errno(or1k_regs.gpr[11])) {
2436 tcp->u_rval = -1;
2437 u_error = -or1k_regs.gpr[11];
2438 }
2439 else {
2440 tcp->u_rval = or1k_regs.gpr[11];
2441 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002442#endif
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002443 tcp->u_error = u_error;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002444}
2445
2446static void
2447dumpio(struct tcb *tcp)
2448{
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01002449 int (*func)();
2450
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002451 if (syserror(tcp))
2452 return;
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +01002453 if ((unsigned long) tcp->u_arg[0] >= num_quals)
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002454 return;
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01002455 func = tcp->s_ent->sys_func;
2456 if (func == printargs)
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002457 return;
2458 if (qual_flags[tcp->u_arg[0]] & QUAL_READ) {
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01002459 if (func == sys_read ||
2460 func == sys_pread ||
2461 func == sys_recv ||
2462 func == sys_recvfrom)
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002463 dumpstr(tcp, tcp->u_arg[1], tcp->u_rval);
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01002464 else if (func == sys_readv)
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002465 dumpiov(tcp, tcp->u_arg[2], tcp->u_arg[1]);
2466 return;
2467 }
2468 if (qual_flags[tcp->u_arg[0]] & QUAL_WRITE) {
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01002469 if (func == sys_write ||
2470 func == sys_pwrite ||
2471 func == sys_send ||
2472 func == sys_sendto)
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002473 dumpstr(tcp, tcp->u_arg[1], tcp->u_arg[2]);
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01002474 else if (func == sys_writev)
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002475 dumpiov(tcp, tcp->u_arg[2], tcp->u_arg[1]);
2476 return;
2477 }
2478}
2479
Denys Vlasenkoed4f4f02011-08-22 11:54:06 +02002480static int
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002481trace_syscall_exiting(struct tcb *tcp)
Pavel Machek4dc3b142000-02-01 17:58:41 +00002482{
2483 int sys_res;
2484 struct timeval tv;
Denys Vlasenko1a5b5a72011-08-25 00:29:56 +02002485 int res;
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002486 long u_error;
Pavel Machek4dc3b142000-02-01 17:58:41 +00002487
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002488 /* Measure the exit time as early as possible to avoid errors. */
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01002489 if (Tflag || cflag)
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002490 gettimeofday(&tv, NULL);
Pavel Machek4dc3b142000-02-01 17:58:41 +00002491
Dmitry V. Levina5a839a2011-12-23 00:50:49 +00002492#if SUPPORTED_PERSONALITIES > 1
2493 update_personality(tcp, tcp->currpers);
2494#endif
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01002495 res = (get_regs_error ? -1 : get_syscall_result(tcp));
Denys Vlasenkobb6bb5c2012-03-20 17:10:35 +01002496 if (res == 1) {
2497 syscall_fixup_on_sysexit(tcp); /* never fails */
Denys Vlasenkoc956ef02013-02-16 14:25:56 +01002498 get_error(tcp); /* never fails */
2499 if (need_fork_exec_workarounds)
2500 syscall_fixup_for_fork_exec(tcp);
2501 if (filtered(tcp))
2502 goto ret;
Pavel Machek4dc3b142000-02-01 17:58:41 +00002503 }
2504
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002505 if (cflag) {
2506 struct timeval t = tv;
Denys Vlasenkoc95a88f2011-08-21 17:47:40 +02002507 count_syscall(tcp, &t);
Denys Vlasenko7b609d52011-06-22 14:32:43 +02002508 if (cflag == CFLAG_ONLY_STATS) {
Denys Vlasenko3b738812011-08-22 02:06:35 +02002509 goto ret;
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002510 }
2511 }
2512
Denys Vlasenkoa44f9692012-03-21 11:06:20 +01002513 /* If not in -ff mode, and printing_tcp != tcp,
2514 * then the log currently does not end with output
2515 * of _our syscall entry_, but with something else.
2516 * We need to say which syscall's return is this.
2517 *
2518 * Forced reprinting via TCB_REPRINT is used only by
2519 * "strace -ff -oLOG test/threaded_execve" corner case.
2520 * It's the only case when -ff mode needs reprinting.
2521 */
2522 if ((followfork < 2 && printing_tcp != tcp) || (tcp->flags & TCB_REPRINT)) {
2523 tcp->flags &= ~TCB_REPRINT;
2524 printleader(tcp);
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01002525 if (tcp->qual_flg & UNDEFINED_SCNO)
Denys Vlasenko7270de52013-02-21 15:46:34 +01002526 tprintf("<... %s resumed> ", undefined_scno_name(tcp));
Denys Vlasenkoa44f9692012-03-21 11:06:20 +01002527 else
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01002528 tprintf("<... %s resumed> ", tcp->s_ent->sys_name);
Denys Vlasenkoa44f9692012-03-21 11:06:20 +01002529 }
2530 printing_tcp = tcp;
2531
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002532 if (res != 1) {
Denys Vlasenkoa44f9692012-03-21 11:06:20 +01002533 /* There was error in one of prior ptrace ops */
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002534 tprints(") ");
Denys Vlasenko102ec492011-08-25 01:27:59 +02002535 tabto();
Denys Vlasenko000b6012012-01-28 01:25:03 +01002536 tprints("= ? <unavailable>\n");
Denys Vlasenko7de265d2012-03-13 11:44:31 +01002537 line_ended();
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002538 tcp->flags &= ~TCB_INSYSCALL;
2539 return res;
2540 }
2541
Denys Vlasenkoa44f9692012-03-21 11:06:20 +01002542 sys_res = 0;
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01002543 if (tcp->qual_flg & QUAL_RAW) {
Denys Vlasenkoa44f9692012-03-21 11:06:20 +01002544 /* sys_res = printargs(tcp); - but it's nop on sysexit */
Denys Vlasenko7de265d2012-03-13 11:44:31 +01002545 } else {
Denys Vlasenko3b738812011-08-22 02:06:35 +02002546 /* FIXME: not_failing_only (IOW, option -z) is broken:
2547 * failure of syscall is known only after syscall return.
2548 * Thus we end up with something like this on, say, ENOENT:
2549 * open("doesnt_exist", O_RDONLY <unfinished ...>
2550 * {next syscall decode}
2551 * whereas the intended result is that open(...) line
2552 * is not shown at all.
2553 */
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002554 if (not_failing_only && tcp->u_error)
Denys Vlasenko3b738812011-08-22 02:06:35 +02002555 goto ret; /* ignore failed syscalls */
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01002556 sys_res = tcp->s_ent->sys_func(tcp);
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002557 }
2558
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002559 tprints(") ");
Denys Vlasenko102ec492011-08-25 01:27:59 +02002560 tabto();
Denys Vlasenko3b738812011-08-22 02:06:35 +02002561 u_error = tcp->u_error;
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01002562 if (tcp->qual_flg & QUAL_RAW) {
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002563 if (u_error)
2564 tprintf("= -1 (errno %ld)", u_error);
2565 else
2566 tprintf("= %#lx", tcp->u_rval);
2567 }
2568 else if (!(sys_res & RVAL_NONE) && u_error) {
2569 switch (u_error) {
Denys Vlasenkofe585652012-01-12 11:26:34 +01002570 /* Blocked signals do not interrupt any syscalls.
2571 * In this case syscalls don't return ERESTARTfoo codes.
2572 *
2573 * Deadly signals set to SIG_DFL interrupt syscalls
2574 * and kill the process regardless of which of the codes below
2575 * is returned by the interrupted syscall.
2576 * In some cases, kernel forces a kernel-generated deadly
2577 * signal to be unblocked and set to SIG_DFL (and thus cause
2578 * death) if it is blocked or SIG_IGNed: for example, SIGSEGV
2579 * or SIGILL. (The alternative is to leave process spinning
2580 * forever on the faulty instruction - not useful).
2581 *
2582 * SIG_IGNed signals and non-deadly signals set to SIG_DFL
2583 * (for example, SIGCHLD, SIGWINCH) interrupt syscalls,
2584 * but kernel will always restart them.
2585 */
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002586 case ERESTARTSYS:
Denys Vlasenkofe585652012-01-12 11:26:34 +01002587 /* Most common type of signal-interrupted syscall exit code.
2588 * The system call will be restarted with the same arguments
2589 * if SA_RESTART is set; otherwise, it will fail with EINTR.
2590 */
2591 tprints("= ? ERESTARTSYS (To be restarted if SA_RESTART is set)");
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002592 break;
2593 case ERESTARTNOINTR:
Denys Vlasenkofe585652012-01-12 11:26:34 +01002594 /* Rare. For example, fork() returns this if interrupted.
2595 * SA_RESTART is ignored (assumed set): the restart is unconditional.
2596 */
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002597 tprints("= ? ERESTARTNOINTR (To be restarted)");
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002598 break;
2599 case ERESTARTNOHAND:
Denys Vlasenkofe585652012-01-12 11:26:34 +01002600 /* pause(), rt_sigsuspend() etc use this code.
2601 * SA_RESTART is ignored (assumed not set):
2602 * syscall won't restart (will return EINTR instead)
Denys Vlasenko30c03232013-02-19 16:59:26 +01002603 * even after signal with SA_RESTART set. However,
2604 * after SIG_IGN or SIG_DFL signal it will restart
2605 * (thus the name "restart only if has no handler").
Denys Vlasenkofe585652012-01-12 11:26:34 +01002606 */
Denys Vlasenkoaba62922013-03-05 16:56:35 +01002607 tprints("= ? ERESTARTNOHAND (To be restarted if no handler)");
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002608 break;
2609 case ERESTART_RESTARTBLOCK:
Denys Vlasenkofe585652012-01-12 11:26:34 +01002610 /* Syscalls like nanosleep(), poll() which can't be
2611 * restarted with their original arguments use this
2612 * code. Kernel will execute restart_syscall() instead,
2613 * which changes arguments before restarting syscall.
2614 * SA_RESTART is ignored (assumed not set) similarly
2615 * to ERESTARTNOHAND. (Kernel can't honor SA_RESTART
2616 * since restart data is saved in "restart block"
2617 * in task struct, and if signal handler uses a syscall
2618 * which in turn saves another such restart block,
2619 * old data is lost and restart becomes impossible)
2620 */
2621 tprints("= ? ERESTART_RESTARTBLOCK (Interrupted by signal)");
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002622 break;
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002623 default:
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002624 if (u_error < 0)
Denys Vlasenkoa7949742011-08-21 17:26:55 +02002625 tprintf("= -1 E??? (errno %ld)", u_error);
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002626 else if (u_error < nerrnos)
Denys Vlasenkoa7949742011-08-21 17:26:55 +02002627 tprintf("= -1 %s (%s)", errnoent[u_error],
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002628 strerror(u_error));
2629 else
Denys Vlasenkoa7949742011-08-21 17:26:55 +02002630 tprintf("= -1 ERRNO_%ld (%s)", u_error,
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002631 strerror(u_error));
2632 break;
2633 }
2634 if ((sys_res & RVAL_STR) && tcp->auxstr)
2635 tprintf(" (%s)", tcp->auxstr);
2636 }
2637 else {
2638 if (sys_res & RVAL_NONE)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002639 tprints("= ?");
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002640 else {
2641 switch (sys_res & RVAL_MASK) {
2642 case RVAL_HEX:
2643 tprintf("= %#lx", tcp->u_rval);
2644 break;
2645 case RVAL_OCTAL:
2646 tprintf("= %#lo", tcp->u_rval);
2647 break;
2648 case RVAL_UDECIMAL:
2649 tprintf("= %lu", tcp->u_rval);
2650 break;
2651 case RVAL_DECIMAL:
2652 tprintf("= %ld", tcp->u_rval);
2653 break;
H.J. Ludd0130b2012-04-16 12:16:45 +02002654#if defined(LINUX_MIPSN32) || defined(X32)
2655 /*
2656 case RVAL_LHEX:
2657 tprintf("= %#llx", tcp->u_lrval);
2658 break;
2659 case RVAL_LOCTAL:
2660 tprintf("= %#llo", tcp->u_lrval);
2661 break;
2662 */
2663 case RVAL_LUDECIMAL:
2664 tprintf("= %llu", tcp->u_lrval);
2665 break;
2666 /*
2667 case RVAL_LDECIMAL:
2668 tprintf("= %lld", tcp->u_lrval);
2669 break;
2670 */
2671#endif
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002672 default:
2673 fprintf(stderr,
2674 "invalid rval format\n");
2675 break;
2676 }
2677 }
2678 if ((sys_res & RVAL_STR) && tcp->auxstr)
2679 tprintf(" (%s)", tcp->auxstr);
2680 }
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01002681 if (Tflag) {
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002682 tv_sub(&tv, &tv, &tcp->etime);
2683 tprintf(" <%ld.%06ld>",
2684 (long) tv.tv_sec, (long) tv.tv_usec);
2685 }
Denys Vlasenko000b6012012-01-28 01:25:03 +01002686 tprints("\n");
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002687 dumpio(tcp);
Denys Vlasenko7de265d2012-03-13 11:44:31 +01002688 line_ended();
2689
Denys Vlasenko3b738812011-08-22 02:06:35 +02002690 ret:
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002691 tcp->flags &= ~TCB_INSYSCALL;
2692 return 0;
2693}
2694
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002695int
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002696trace_syscall(struct tcb *tcp)
2697{
2698 return exiting(tcp) ?
2699 trace_syscall_exiting(tcp) : trace_syscall_entering(tcp);
2700}