blob: e3fcc01605b0b60dc59038de52182521c2aa41ed [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;
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +0100991void
992get_regs(pid_t pid)
Denys Vlasenkoce7d9532013-02-05 16:36:13 +0100993{
994# if defined(AVR32)
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +0100995 get_regs_error = ptrace(PTRACE_GETREGS, pid, NULL, &avr32_regs);
Denys Vlasenkoce7d9532013-02-05 16:36:13 +0100996# elif defined(I386)
997 get_regs_error = ptrace(PTRACE_GETREGS, pid, NULL, (long) &i386_regs);
Dmitry V. Levinee348c62013-03-17 23:15:18 +0000998# elif defined(X32)
999 /* x86_io.iov_base = &x86_regs_union; - already is */
1000 x86_io.iov_len = sizeof(x86_regs_union);
1001 get_regs_error = ptrace(PTRACE_GETREGSET, pid,
1002 NT_PRSTATUS, (long) &x86_io);
1003# elif defined(X86_64)
Dmitry V. Levin27e3ae92013-03-17 23:18:35 +00001004# if defined(PTRACE_GETREGSET) && defined(NT_PRSTATUS)
1005 static int getregset_support;
1006
1007 if (getregset_support >= 0) {
1008 /* x86_io.iov_base = &x86_regs_union; - already is */
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +01001009 x86_io.iov_len = sizeof(x86_regs_union);
Dmitry V. Levin27e3ae92013-03-17 23:18:35 +00001010 get_regs_error = ptrace(PTRACE_GETREGSET, pid,
1011 NT_PRSTATUS, (long) &x86_io);
1012 if (getregset_support > 0)
1013 return;
1014 if (get_regs_error >= 0) {
1015 getregset_support = 1;
1016 return;
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +01001017 }
Dmitry V. Levin27e3ae92013-03-17 23:18:35 +00001018 if (errno == EPERM || errno == ESRCH)
1019 return;
1020 getregset_support = -1;
1021 }
1022# endif /* PTRACE_GETREGSET && NT_PRSTATUS */
1023 /* Use old method, with unreliable heuristical detection of 32-bitness. */
1024 x86_io.iov_len = sizeof(x86_64_regs);
1025 get_regs_error = ptrace(PTRACE_GETREGS, pid, NULL, (long) &x86_64_regs);
1026 if (!get_regs_error && x86_64_regs.cs == 0x23) {
1027 x86_io.iov_len = sizeof(i386_regs);
1028 /*
1029 * The order is important: i386_regs and x86_64_regs
1030 * are overlaid in memory!
1031 */
1032 i386_regs.ebx = x86_64_regs.rbx;
1033 i386_regs.ecx = x86_64_regs.rcx;
1034 i386_regs.edx = x86_64_regs.rdx;
1035 i386_regs.esi = x86_64_regs.rsi;
1036 i386_regs.edi = x86_64_regs.rdi;
1037 i386_regs.ebp = x86_64_regs.rbp;
1038 i386_regs.eax = x86_64_regs.rax;
1039 /* i386_regs.xds = x86_64_regs.ds; unused by strace */
1040 /* i386_regs.xes = x86_64_regs.es; ditto... */
1041 /* i386_regs.xfs = x86_64_regs.fs; */
1042 /* i386_regs.xgs = x86_64_regs.gs; */
1043 i386_regs.orig_eax = x86_64_regs.orig_rax;
1044 i386_regs.eip = x86_64_regs.rip;
1045 /* i386_regs.xcs = x86_64_regs.cs; */
1046 /* i386_regs.eflags = x86_64_regs.eflags; */
1047 i386_regs.esp = x86_64_regs.rsp;
1048 /* i386_regs.xss = x86_64_regs.ss; */
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +01001049 }
Denys Vlasenko401374e2013-02-06 18:24:39 +01001050# elif defined(ARM)
1051 get_regs_error = ptrace(PTRACE_GETREGS, pid, NULL, (void *)&arm_regs);
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01001052# elif defined(AARCH64)
Denys Vlasenko59aea0a2013-02-11 12:29:36 +01001053 /*aarch64_io.iov_base = &arm_regs_union; - already is */
1054 aarch64_io.iov_len = sizeof(arm_regs_union);
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01001055 get_regs_error = ptrace(PTRACE_GETREGSET, pid, NT_PRSTATUS, (void *)&aarch64_io);
Denys Vlasenko28ac68f2013-02-08 12:38:51 +01001056# if 0
1057 /* Paranoia checks */
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01001058 if (get_regs_error)
1059 return;
1060 switch (aarch64_io.iov_len) {
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01001061 case sizeof(aarch64_regs):
1062 /* We are in 64-bit mode */
Denys Vlasenko28ac68f2013-02-08 12:38:51 +01001063 break;
1064 case sizeof(arm_regs):
1065 /* We are in 32-bit mode */
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01001066 break;
1067 default:
1068 get_regs_error = -1;
1069 break;
1070 }
Denys Vlasenko28ac68f2013-02-08 12:38:51 +01001071# endif
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01001072# elif defined(SPARC) || defined(SPARC64)
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +01001073 get_regs_error = ptrace(PTRACE_GETREGS, pid, (char *)&sparc_regs, 0);
Chris Metcalf0b99a8a2013-02-05 17:48:33 +01001074# elif defined(TILE)
Chris Metcalfaf8dc6b2013-02-05 13:02:42 -05001075 get_regs_error = ptrace(PTRACE_GETREGS, pid, NULL, (long) &tile_regs);
Christian Svensson492f81f2013-02-14 13:26:27 +01001076# elif defined(OR1K)
1077 or1k_io.iov_len = sizeof(or1k_regs);
1078 get_regs_error = ptrace(PTRACE_GETREGSET, pid, NT_PRSTATUS, &or1k_io);
James Hogan5f999a82013-02-22 14:44:10 +00001079# elif defined(METAG)
1080 metag_io.iov_len = sizeof(metag_regs);
1081 get_regs_error = ptrace(PTRACE_GETREGSET, pid, NT_PRSTATUS, &metag_io);
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01001082# endif
1083}
1084#endif
1085
Denys Vlasenkob88f9612011-08-21 18:03:23 +02001086/* Returns:
Denys Vlasenko907735a2012-03-21 00:23:16 +01001087 * 0: "ignore this ptrace stop", bail out of trace_syscall_entering() silently.
1088 * 1: ok, continue in trace_syscall_entering().
1089 * other: error, trace_syscall_entering() should print error indicator
Denys Vlasenkob88f9612011-08-21 18:03:23 +02001090 * ("????" etc) and bail out.
1091 */
Denys Vlasenko9fd4f962012-03-19 09:36:42 +01001092static int
Denys Vlasenko06602d92011-08-24 17:53:52 +02001093get_scno(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001094{
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001095 long scno = 0;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001096
Denys Vlasenko523635f2012-02-25 02:44:25 +01001097#if defined(S390) || defined(S390X)
Denys Vlasenko932fc7d2008-12-16 18:18:40 +00001098 if (upeek(tcp, PT_GPR2, &syscall_mode) < 0)
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001099 return -1;
Roland McGrath2f924ca2003-06-26 22:23:28 +00001100
1101 if (syscall_mode != -ENOSYS) {
1102 /*
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +00001103 * Since kernel version 2.5.44 the scno gets passed in gpr2.
Roland McGrath2f924ca2003-06-26 22:23:28 +00001104 */
1105 scno = syscall_mode;
1106 } else {
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +00001107 /*
Michal Ludvig882eda82002-11-11 12:50:47 +00001108 * Old style of "passing" the scno via the SVC instruction.
1109 */
Denys Vlasenko7ba8e722013-02-08 15:50:05 +01001110 long psw;
Michal Ludvig882eda82002-11-11 12:50:47 +00001111 long opcode, offset_reg, tmp;
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001112 void *svc_addr;
Denys Vlasenko7c9ba8b2011-08-19 19:46:32 +02001113 static const int gpr_offset[16] = {
1114 PT_GPR0, PT_GPR1, PT_ORIGGPR2, PT_GPR3,
1115 PT_GPR4, PT_GPR5, PT_GPR6, PT_GPR7,
1116 PT_GPR8, PT_GPR9, PT_GPR10, PT_GPR11,
1117 PT_GPR12, PT_GPR13, PT_GPR14, PT_GPR15
1118 };
Roland McGrath761b5d72002-12-15 23:58:31 +00001119
Denys Vlasenko7ba8e722013-02-08 15:50:05 +01001120 if (upeek(tcp, PT_PSWADDR, &psw) < 0)
Michal Ludvig882eda82002-11-11 12:50:47 +00001121 return -1;
Roland McGrath96dc5142003-01-20 10:23:04 +00001122 errno = 0;
Denys Vlasenko7ba8e722013-02-08 15:50:05 +01001123 opcode = ptrace(PTRACE_PEEKTEXT, tcp->pid, (char *)(psw - sizeof(long)), 0);
Roland McGrath96dc5142003-01-20 10:23:04 +00001124 if (errno) {
Denys Vlasenko905e8e02013-02-26 12:30:09 +01001125 perror_msg("peektext(psw-oneword)");
Michal Ludvig882eda82002-11-11 12:50:47 +00001126 return -1;
Roland McGrath96dc5142003-01-20 10:23:04 +00001127 }
Michal Ludvig882eda82002-11-11 12:50:47 +00001128
1129 /*
1130 * We have to check if the SVC got executed directly or via an
1131 * EXECUTE instruction. In case of EXECUTE it is necessary to do
1132 * instruction decoding to derive the system call number.
1133 * Unfortunately the opcode sizes of EXECUTE and SVC are differently,
1134 * so that this doesn't work if a SVC opcode is part of an EXECUTE
1135 * opcode. Since there is no way to find out the opcode size this
1136 * is the best we can do...
1137 */
Michal Ludvig882eda82002-11-11 12:50:47 +00001138 if ((opcode & 0xff00) == 0x0a00) {
1139 /* SVC opcode */
1140 scno = opcode & 0xff;
Roland McGrath761b5d72002-12-15 23:58:31 +00001141 }
Michal Ludvig882eda82002-11-11 12:50:47 +00001142 else {
1143 /* SVC got executed by EXECUTE instruction */
1144
1145 /*
1146 * Do instruction decoding of EXECUTE. If you really want to
1147 * understand this, read the Principles of Operations.
1148 */
1149 svc_addr = (void *) (opcode & 0xfff);
1150
1151 tmp = 0;
1152 offset_reg = (opcode & 0x000f0000) >> 16;
Denys Vlasenko932fc7d2008-12-16 18:18:40 +00001153 if (offset_reg && (upeek(tcp, gpr_offset[offset_reg], &tmp) < 0))
Michal Ludvig882eda82002-11-11 12:50:47 +00001154 return -1;
1155 svc_addr += tmp;
1156
1157 tmp = 0;
1158 offset_reg = (opcode & 0x0000f000) >> 12;
Denys Vlasenko932fc7d2008-12-16 18:18:40 +00001159 if (offset_reg && (upeek(tcp, gpr_offset[offset_reg], &tmp) < 0))
Michal Ludvig882eda82002-11-11 12:50:47 +00001160 return -1;
1161 svc_addr += tmp;
1162
Denys Vlasenkofb036672009-01-23 16:30:26 +00001163 scno = ptrace(PTRACE_PEEKTEXT, tcp->pid, svc_addr, 0);
Michal Ludvig882eda82002-11-11 12:50:47 +00001164 if (errno)
1165 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001166# if defined(S390X)
Michal Ludvig882eda82002-11-11 12:50:47 +00001167 scno >>= 48;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001168# else
Michal Ludvig882eda82002-11-11 12:50:47 +00001169 scno >>= 16;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001170# endif
Michal Ludvig882eda82002-11-11 12:50:47 +00001171 tmp = 0;
1172 offset_reg = (opcode & 0x00f00000) >> 20;
Denys Vlasenko932fc7d2008-12-16 18:18:40 +00001173 if (offset_reg && (upeek(tcp, gpr_offset[offset_reg], &tmp) < 0))
Michal Ludvig882eda82002-11-11 12:50:47 +00001174 return -1;
1175
1176 scno = (scno | tmp) & 0xff;
1177 }
1178 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01001179#elif defined(POWERPC)
Denys Vlasenko932fc7d2008-12-16 18:18:40 +00001180 if (upeek(tcp, sizeof(unsigned long)*PT_R0, &scno) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001181 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001182# ifdef POWERPC64
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001183 /* TODO: speed up strace by not doing this at every syscall.
1184 * We only need to do it after execve.
1185 */
1186 int currpers;
1187 long val;
Andreas Schwabd69fa492010-07-12 21:39:57 +02001188
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001189 /* Check for 64/32 bit mode. */
1190 if (upeek(tcp, sizeof(unsigned long)*PT_MSR, &val) < 0)
1191 return -1;
1192 /* SF is bit 0 of MSR */
1193 if (val < 0)
1194 currpers = 0;
1195 else
1196 currpers = 1;
Dmitry V. Levina5a839a2011-12-23 00:50:49 +00001197 update_personality(tcp, currpers);
Denys Vlasenko523635f2012-02-25 02:44:25 +01001198# endif
1199#elif defined(AVR32)
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +01001200 scno = avr32_regs.r8;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001201#elif defined(BFIN)
Denys Vlasenko932fc7d2008-12-16 18:18:40 +00001202 if (upeek(tcp, PT_ORIG_P0, &scno))
Dmitry V. Levin87ea1f42008-11-10 22:21:41 +00001203 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001204#elif defined(I386)
Denys Vlasenkoeb0e3e82011-08-30 18:53:49 +02001205 scno = i386_regs.orig_eax;
H.J. Lu35be5812012-04-16 13:00:01 +02001206#elif defined(X86_64) || defined(X32)
1207# ifndef __X32_SYSCALL_BIT
1208# define __X32_SYSCALL_BIT 0x40000000
1209# endif
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001210 int currpers;
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +01001211# if 1
1212 /* GETREGSET of NT_PRSTATUS tells us regset size,
1213 * which unambiguously detects i386.
1214 *
1215 * Linux kernel distinguishes x86-64 and x32 processes
1216 * solely by looking at __X32_SYSCALL_BIT:
1217 * arch/x86/include/asm/compat.h::is_x32_task():
1218 * if (task_pt_regs(current)->orig_ax & __X32_SYSCALL_BIT)
1219 * return true;
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001220 */
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +01001221 if (x86_io.iov_len == sizeof(i386_regs)) {
1222 scno = i386_regs.orig_eax;
1223 currpers = 1;
1224 } else {
1225 scno = x86_64_regs.orig_rax;
1226 currpers = 0;
1227 if (scno & __X32_SYSCALL_BIT) {
1228 scno -= __X32_SYSCALL_BIT;
1229 currpers = 2;
1230 }
1231 }
1232# elif 0
1233 /* cs = 0x33 for long mode (native 64 bit and x32)
1234 * cs = 0x23 for compatibility mode (32 bit)
1235 * ds = 0x2b for x32 mode (x86-64 in 32 bit)
1236 */
1237 scno = x86_64_regs.orig_rax;
Denys Vlasenkoeb0e3e82011-08-30 18:53:49 +02001238 switch (x86_64_regs.cs) {
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001239 case 0x23: currpers = 1; break;
H.J. Lu35be5812012-04-16 13:00:01 +02001240 case 0x33:
1241 if (x86_64_regs.ds == 0x2b) {
1242 currpers = 2;
Denys Vlasenko59aea0a2013-02-11 12:29:36 +01001243 scno &= ~__X32_SYSCALL_BIT;
H.J. Lu35be5812012-04-16 13:00:01 +02001244 } else
1245 currpers = 0;
1246 break;
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001247 default:
Denys Vlasenkoeb0e3e82011-08-30 18:53:49 +02001248 fprintf(stderr, "Unknown value CS=0x%08X while "
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001249 "detecting personality of process "
Denys Vlasenkoeb0e3e82011-08-30 18:53:49 +02001250 "PID=%d\n", (int)x86_64_regs.cs, tcp->pid);
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001251 currpers = current_personality;
1252 break;
1253 }
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +01001254# elif 0
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001255 /* This version analyzes the opcode of a syscall instruction.
1256 * (int 0x80 on i386 vs. syscall on x86-64)
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +01001257 * It works, but is too complicated, and strictly speaking, unreliable.
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001258 */
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +01001259 unsigned long call, rip = x86_64_regs.rip;
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001260 /* sizeof(syscall) == sizeof(int 0x80) == 2 */
1261 rip -= 2;
1262 errno = 0;
Denys Vlasenkoeb0e3e82011-08-30 18:53:49 +02001263 call = ptrace(PTRACE_PEEKTEXT, tcp->pid, (char *)rip, (char *)0);
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001264 if (errno)
1265 fprintf(stderr, "ptrace_peektext failed: %s\n",
1266 strerror(errno));
1267 switch (call & 0xffff) {
1268 /* x86-64: syscall = 0x0f 0x05 */
1269 case 0x050f: currpers = 0; break;
1270 /* i386: int 0x80 = 0xcd 0x80 */
1271 case 0x80cd: currpers = 1; break;
1272 default:
1273 currpers = current_personality;
1274 fprintf(stderr,
1275 "Unknown syscall opcode (0x%04X) while "
1276 "detecting personality of process "
Denys Vlasenkoeb0e3e82011-08-30 18:53:49 +02001277 "PID=%d\n", (int)call, tcp->pid);
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001278 break;
1279 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01001280# endif
Denys Vlasenko59aea0a2013-02-11 12:29:36 +01001281
H.J. Lu35be5812012-04-16 13:00:01 +02001282# ifdef X32
Denys Vlasenko59aea0a2013-02-11 12:29:36 +01001283 /* If we are built for a x32 system, then personality 0 is x32
1284 * (not x86_64), and stracing of x86_64 apps is not supported.
1285 * Stracing of i386 apps is still supported.
H.J. Lu085e4282012-04-17 11:05:04 -07001286 */
Denys Vlasenko59aea0a2013-02-11 12:29:36 +01001287 if (currpers == 0) {
1288 fprintf(stderr, "syscall_%lu(...) in unsupported "
1289 "64-bit mode of process PID=%d\n",
1290 scno, tcp->pid);
1291 return 0;
H.J. Lu35be5812012-04-16 13:00:01 +02001292 }
Denys Vlasenko59aea0a2013-02-11 12:29:36 +01001293 currpers &= ~2; /* map 2,1 to 0,1 */
H.J. Lu35be5812012-04-16 13:00:01 +02001294# endif
H.J. Lu085e4282012-04-17 11:05:04 -07001295 update_personality(tcp, currpers);
Denys Vlasenko523635f2012-02-25 02:44:25 +01001296#elif defined(IA64)
Wichert Akkerman7b3346b2001-10-09 23:47:38 +00001297# define IA64_PSR_IS ((long)1 << 34)
Denys Vlasenko4bdb6bb2013-02-06 18:09:31 +01001298 long psr;
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001299 if (upeek(tcp, PT_CR_IPSR, &psr) >= 0)
Wichert Akkerman7b3346b2001-10-09 23:47:38 +00001300 ia32 = (psr & IA64_PSR_IS) != 0;
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001301 if (ia32) {
Denys Vlasenkoeb0e3e82011-08-30 18:53:49 +02001302 if (upeek(tcp, PT_R1, &scno) < 0)
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001303 return -1;
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +00001304 } else {
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001305 if (upeek(tcp, PT_R15, &scno) < 0)
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +00001306 return -1;
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001307 }
Steve McIntyre890a5ca2012-11-10 11:24:48 +00001308#elif defined(AARCH64)
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01001309 switch (aarch64_io.iov_len) {
Steve McIntyre890a5ca2012-11-10 11:24:48 +00001310 case sizeof(aarch64_regs):
1311 /* We are in 64-bit mode */
Steve McIntyre890a5ca2012-11-10 11:24:48 +00001312 scno = aarch64_regs.regs[8];
1313 update_personality(tcp, 1);
1314 break;
Denys Vlasenko28ac68f2013-02-08 12:38:51 +01001315 case sizeof(arm_regs):
Steve McIntyre890a5ca2012-11-10 11:24:48 +00001316 /* We are in 32-bit mode */
Denys Vlasenko28ac68f2013-02-08 12:38:51 +01001317 scno = arm_regs.ARM_r7;
Steve McIntyre890a5ca2012-11-10 11:24:48 +00001318 update_personality(tcp, 0);
1319 break;
Steve McIntyre890a5ca2012-11-10 11:24:48 +00001320 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01001321#elif defined(ARM)
Denys Vlasenkoe7030e52013-02-20 18:08:25 +01001322 if (arm_regs.ARM_ip != 0) {
1323 /* It is not a syscall entry */
1324 fprintf(stderr, "pid %d stray syscall exit\n", tcp->pid);
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001325 tcp->flags |= TCB_INSYSCALL;
Denys Vlasenkoe7030e52013-02-20 18:08:25 +01001326 return 0;
1327 }
1328 /* Note: we support only 32-bit CPUs, not 26-bit */
1329
1330 if (arm_regs.ARM_cpsr & 0x20) {
1331 /* Thumb mode */
1332 scno = arm_regs.ARM_r7;
1333 } else {
1334 /* ARM mode */
1335 errno = 0;
1336 scno = ptrace(PTRACE_PEEKTEXT, tcp->pid, (void *)(arm_regs.ARM_pc - 4), NULL);
1337 if (errno)
1338 return -1;
1339
1340 /* EABI syscall convention? */
1341 if (scno == 0xef000000) {
1342 scno = arm_regs.ARM_r7; /* yes */
1343 } else {
1344 if ((scno & 0x0ff00000) != 0x0f900000) {
1345 fprintf(stderr, "pid %d unknown syscall trap 0x%08lx\n",
1346 tcp->pid, scno);
1347 return -1;
1348 }
1349 /* Fixup the syscall number */
1350 scno &= 0x000fffff;
1351 }
1352 }
Denys Vlasenko7270de52013-02-21 15:46:34 +01001353
1354 scno = shuffle_scno(scno);
Denys Vlasenko523635f2012-02-25 02:44:25 +01001355#elif defined(M68K)
Denys Vlasenko932fc7d2008-12-16 18:18:40 +00001356 if (upeek(tcp, 4*PT_ORIG_D0, &scno) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001357 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001358#elif defined(LINUX_MIPSN32)
Roland McGrath542c2c62008-05-20 01:11:56 +00001359 unsigned long long regs[38];
1360
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001361 if (ptrace(PTRACE_GETREGS, tcp->pid, NULL, (long) &regs) < 0)
Roland McGrath542c2c62008-05-20 01:11:56 +00001362 return -1;
Denys Vlasenkod22213a2013-02-13 17:52:31 +01001363 mips_a3 = regs[REG_A3];
1364 mips_r2 = regs[REG_V0];
Roland McGrath542c2c62008-05-20 01:11:56 +00001365
Denys Vlasenkod22213a2013-02-13 17:52:31 +01001366 scno = mips_r2;
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01001367 if (!SCNO_IN_RANGE(scno)) {
Denys Vlasenkod22213a2013-02-13 17:52:31 +01001368 if (mips_a3 == 0 || mips_a3 == -1) {
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001369 if (debug_flag)
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001370 fprintf(stderr, "stray syscall exit: v0 = %ld\n", scno);
Roland McGrath542c2c62008-05-20 01:11:56 +00001371 return 0;
1372 }
Roland McGrath542c2c62008-05-20 01:11:56 +00001373 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01001374#elif defined(MIPS)
Denys Vlasenkod22213a2013-02-13 17:52:31 +01001375 if (upeek(tcp, REG_A3, &mips_a3) < 0)
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +00001376 return -1;
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001377 if (upeek(tcp, REG_V0, &scno) < 0)
1378 return -1;
Wichert Akkermanf90da011999-10-31 21:15:38 +00001379
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01001380 if (!SCNO_IN_RANGE(scno)) {
Denys Vlasenkod22213a2013-02-13 17:52:31 +01001381 if (mips_a3 == 0 || mips_a3 == -1) {
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001382 if (debug_flag)
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001383 fprintf(stderr, "stray syscall exit: v0 = %ld\n", scno);
Roland McGrath542c2c62008-05-20 01:11:56 +00001384 return 0;
1385 }
Wichert Akkermanf90da011999-10-31 21:15:38 +00001386 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01001387#elif defined(ALPHA)
Denys Vlasenko89804ec2013-02-07 13:14:48 +01001388 if (upeek(tcp, REG_A3, &alpha_a3) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001389 return -1;
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001390 if (upeek(tcp, REG_R0, &scno) < 0)
1391 return -1;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001392
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001393 /*
1394 * Do some sanity checks to figure out if it's
1395 * really a syscall entry
1396 */
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01001397 if (!SCNO_IN_RANGE(scno)) {
Denys Vlasenko89804ec2013-02-07 13:14:48 +01001398 if (alpha_a3 == 0 || alpha_a3 == -1) {
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001399 if (debug_flag)
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001400 fprintf(stderr, "stray syscall exit: r0 = %ld\n", scno);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001401 return 0;
1402 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001403 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01001404#elif defined(SPARC) || defined(SPARC64)
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001405 /* Disassemble the syscall trap. */
1406 /* Retrieve the syscall trap instruction. */
Denys Vlasenko46455822013-02-05 17:02:59 +01001407 unsigned long trap;
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001408 errno = 0;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001409# if defined(SPARC64)
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +01001410 trap = ptrace(PTRACE_PEEKTEXT, tcp->pid, (char *)sparc_regs.tpc, 0);
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001411 trap >>= 32;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001412# else
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +01001413 trap = ptrace(PTRACE_PEEKTEXT, tcp->pid, (char *)sparc_regs.pc, 0);
Denys Vlasenko523635f2012-02-25 02:44:25 +01001414# endif
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001415 if (errno)
Wichert Akkermanc1652e22001-03-27 12:17:16 +00001416 return -1;
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001417
1418 /* Disassemble the trap to see what personality to use. */
1419 switch (trap) {
1420 case 0x91d02010:
1421 /* Linux/SPARC syscall trap. */
Dmitry V. Levina5a839a2011-12-23 00:50:49 +00001422 update_personality(tcp, 0);
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001423 break;
1424 case 0x91d0206d:
1425 /* Linux/SPARC64 syscall trap. */
Dmitry V. Levina5a839a2011-12-23 00:50:49 +00001426 update_personality(tcp, 2);
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001427 break;
1428 case 0x91d02000:
1429 /* SunOS syscall trap. (pers 1) */
1430 fprintf(stderr, "syscall: SunOS no support\n");
1431 return -1;
1432 case 0x91d02008:
1433 /* Solaris 2.x syscall trap. (per 2) */
Dmitry V. Levina5a839a2011-12-23 00:50:49 +00001434 update_personality(tcp, 1);
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001435 break;
1436 case 0x91d02009:
1437 /* NetBSD/FreeBSD syscall trap. */
1438 fprintf(stderr, "syscall: NetBSD/FreeBSD not supported\n");
1439 return -1;
1440 case 0x91d02027:
1441 /* Solaris 2.x gettimeofday */
Dmitry V. Levina5a839a2011-12-23 00:50:49 +00001442 update_personality(tcp, 1);
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001443 break;
1444 default:
Denys Vlasenko523635f2012-02-25 02:44:25 +01001445# if defined(SPARC64)
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +01001446 fprintf(stderr, "syscall: unknown syscall trap %08lx %016lx\n", trap, sparc_regs.tpc);
Denys Vlasenko523635f2012-02-25 02:44:25 +01001447# else
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +01001448 fprintf(stderr, "syscall: unknown syscall trap %08lx %08lx\n", trap, sparc_regs.pc);
Denys Vlasenko523635f2012-02-25 02:44:25 +01001449# endif
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001450 return -1;
1451 }
1452
1453 /* Extract the system call number from the registers. */
1454 if (trap == 0x91d02027)
1455 scno = 156;
1456 else
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +01001457 scno = sparc_regs.u_regs[U_REG_G1];
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001458 if (scno == 0) {
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +01001459 scno = sparc_regs.u_regs[U_REG_O0];
1460 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 +02001461 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01001462#elif defined(HPPA)
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001463 if (upeek(tcp, PT_GR20, &scno) < 0)
1464 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001465#elif defined(SH)
Denys Vlasenkoadedb512008-12-30 18:47:55 +00001466 /*
1467 * In the new syscall ABI, the system call number is in R3.
1468 */
1469 if (upeek(tcp, 4*(REG_REG0+3), &scno) < 0)
1470 return -1;
Wichert Akkermanccef6372002-05-01 16:39:22 +00001471
Denys Vlasenkoadedb512008-12-30 18:47:55 +00001472 if (scno < 0) {
1473 /* Odd as it may seem, a glibc bug has been known to cause
1474 glibc to issue bogus negative syscall numbers. So for
1475 our purposes, make strace print what it *should* have been */
1476 long correct_scno = (scno & 0xff);
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001477 if (debug_flag)
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +00001478 fprintf(stderr,
Denys Vlasenkoadedb512008-12-30 18:47:55 +00001479 "Detected glibc bug: bogus system call"
1480 " number = %ld, correcting to %ld\n",
1481 scno,
1482 correct_scno);
1483 scno = correct_scno;
1484 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01001485#elif defined(SH64)
Denys Vlasenko932fc7d2008-12-16 18:18:40 +00001486 if (upeek(tcp, REG_SYSCALL, &scno) < 0)
Roland McGrathe1e584b2003-06-02 19:18:58 +00001487 return -1;
Denys Vlasenkoadedb512008-12-30 18:47:55 +00001488 scno &= 0xFFFF;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001489#elif defined(CRISV10) || defined(CRISV32)
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001490 if (upeek(tcp, 4*PT_R9, &scno) < 0)
1491 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001492#elif defined(TILE)
Chris Metcalf0b99a8a2013-02-05 17:48:33 +01001493 int currpers;
1494 scno = tile_regs.regs[10];
1495# ifdef __tilepro__
1496 currpers = 1;
1497# else
Denys Vlasenko59aea0a2013-02-11 12:29:36 +01001498# ifndef PT_FLAGS_COMPAT
1499# define PT_FLAGS_COMPAT 0x10000 /* from Linux 3.8 on */
1500# endif
Chris Metcalf0b99a8a2013-02-05 17:48:33 +01001501 if (tile_regs.flags & PT_FLAGS_COMPAT)
1502 currpers = 1;
1503 else
1504 currpers = 0;
1505# endif
1506 update_personality(tcp, currpers);
Denys Vlasenko523635f2012-02-25 02:44:25 +01001507#elif defined(MICROBLAZE)
Edgar E. Iglesias939caba2010-07-06 14:21:07 +02001508 if (upeek(tcp, 0, &scno) < 0)
1509 return -1;
Christian Svensson492f81f2013-02-14 13:26:27 +01001510#elif defined(OR1K)
1511 scno = or1k_regs.gpr[11];
James Hogan5f999a82013-02-22 14:44:10 +00001512#elif defined(METAG)
1513 scno = metag_regs.dx[0][1]; /* syscall number in D1Re0 (D1.0) */
Denys Vlasenko523635f2012-02-25 02:44:25 +01001514#endif
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001515
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001516 tcp->scno = scno;
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01001517 if (SCNO_IS_VALID(tcp->scno)) {
1518 tcp->s_ent = &sysent[scno];
1519 tcp->qual_flg = qual_flags[scno];
1520 } else {
Denys Vlasenkoa9fe13c2013-02-22 13:26:10 +01001521 static const struct_sysent unknown = {
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01001522 .nargs = MAX_ARGS,
1523 .sys_flags = 0,
1524 .sys_func = printargs,
1525 .sys_name = "unknown", /* not used */
1526 };
1527 tcp->s_ent = &unknown;
1528 tcp->qual_flg = UNDEFINED_SCNO | QUAL_RAW | DEFAULT_QUAL_FLAGS;
1529 }
Pavel Machek4dc3b142000-02-01 17:58:41 +00001530 return 1;
1531}
1532
Denys Vlasenko20c41fd2011-08-25 10:23:00 +02001533/* Called at each syscall entry.
Denys Vlasenkobc161ec2009-01-02 18:02:45 +00001534 * Returns:
Denys Vlasenko907735a2012-03-21 00:23:16 +01001535 * 0: "ignore this ptrace stop", bail out of trace_syscall_entering() silently.
1536 * 1: ok, continue in trace_syscall_entering().
1537 * other: error, trace_syscall_entering() should print error indicator
Denys Vlasenkobc161ec2009-01-02 18:02:45 +00001538 * ("????" etc) and bail out.
1539 */
Roland McGratha4d48532005-06-08 20:45:28 +00001540static int
Denys Vlasenko8b4454c2011-08-25 10:40:14 +02001541syscall_fixup_on_sysenter(struct tcb *tcp)
Pavel Machek4dc3b142000-02-01 17:58:41 +00001542{
Denys Vlasenkob88f9612011-08-21 18:03:23 +02001543 /* A common case of "not a syscall entry" is post-execve SIGTRAP */
Denys Vlasenko523635f2012-02-25 02:44:25 +01001544#if defined(I386)
Denys Vlasenkoeb0e3e82011-08-30 18:53:49 +02001545 if (i386_regs.eax != -ENOSYS) {
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001546 if (debug_flag)
Denys Vlasenkoeb0e3e82011-08-30 18:53:49 +02001547 fprintf(stderr, "not a syscall entry (eax = %ld)\n", i386_regs.eax);
1548 return 0;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001549 }
H.J. Lu35be5812012-04-16 13:00:01 +02001550#elif defined(X86_64) || defined(X32)
Denys Vlasenkoeb0e3e82011-08-30 18:53:49 +02001551 {
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +01001552 long rax;
1553 if (x86_io.iov_len == sizeof(i386_regs)) {
1554 /* Sign extend from 32 bits */
1555 rax = (int32_t)i386_regs.eax;
1556 } else {
1557 /* Note: in X32 build, this truncates 64 to 32 bits */
1558 rax = x86_64_regs.rax;
1559 }
Denys Vlasenkoeb0e3e82011-08-30 18:53:49 +02001560 if (rax != -ENOSYS) {
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001561 if (debug_flag)
Denys Vlasenko18beb982011-08-24 16:59:23 +02001562 fprintf(stderr, "not a syscall entry (rax = %ld)\n", rax);
1563 return 0;
1564 }
Michal Ludvig0e035502002-09-23 15:41:01 +00001565 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01001566#elif defined(S390) || defined(S390X)
Denys Vlasenkof20bff62011-08-25 10:31:24 +02001567 /* TODO: we already fetched PT_GPR2 in get_scno
1568 * and stored it in syscall_mode, reuse it here
1569 * instead of re-fetching?
1570 */
Denys Vlasenko932fc7d2008-12-16 18:18:40 +00001571 if (upeek(tcp, PT_GPR2, &gpr2) < 0)
Wichert Akkerman12f75d12000-02-14 16:23:40 +00001572 return -1;
Michal Ludvig882eda82002-11-11 12:50:47 +00001573 if (syscall_mode != -ENOSYS)
1574 syscall_mode = tcp->scno;
Denys Vlasenkoece98792011-08-25 10:25:35 +02001575 if (gpr2 != syscall_mode) {
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001576 if (debug_flag)
Denys Vlasenkob88f9612011-08-21 18:03:23 +02001577 fprintf(stderr, "not a syscall entry (gpr2 = %ld)\n", gpr2);
Wichert Akkerman12f75d12000-02-14 16:23:40 +00001578 return 0;
1579 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01001580#elif defined(M68K)
Denys Vlasenkof20bff62011-08-25 10:31:24 +02001581 /* TODO? Eliminate upeek's in arches below like we did in x86 */
Denys Vlasenko89804ec2013-02-07 13:14:48 +01001582 if (upeek(tcp, 4*PT_D0, &m68k_d0) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001583 return -1;
Denys Vlasenko89804ec2013-02-07 13:14:48 +01001584 if (m68k_d0 != -ENOSYS) {
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001585 if (debug_flag)
Denys Vlasenko89804ec2013-02-07 13:14:48 +01001586 fprintf(stderr, "not a syscall entry (d0 = %ld)\n", m68k_d0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001587 return 0;
1588 }
Wichert Akkerman7b3346b2001-10-09 23:47:38 +00001589#elif defined(IA64)
Denys Vlasenko89804ec2013-02-07 13:14:48 +01001590 if (upeek(tcp, PT_R10, &ia64_r10) < 0)
Wichert Akkerman7b3346b2001-10-09 23:47:38 +00001591 return -1;
Denys Vlasenko89804ec2013-02-07 13:14:48 +01001592 if (upeek(tcp, PT_R8, &ia64_r8) < 0)
Wichert Akkerman7b3346b2001-10-09 23:47:38 +00001593 return -1;
Denys Vlasenko89804ec2013-02-07 13:14:48 +01001594 if (ia32 && ia64_r8 != -ENOSYS) {
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001595 if (debug_flag)
Denys Vlasenko89804ec2013-02-07 13:14:48 +01001596 fprintf(stderr, "not a syscall entry (r8 = %ld)\n", ia64_r8);
Wichert Akkerman7b3346b2001-10-09 23:47:38 +00001597 return 0;
1598 }
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001599#elif defined(CRISV10) || defined(CRISV32)
Denys Vlasenko89804ec2013-02-07 13:14:48 +01001600 if (upeek(tcp, 4*PT_R10, &cris_r10) < 0)
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001601 return -1;
Denys Vlasenko89804ec2013-02-07 13:14:48 +01001602 if (cris_r10 != -ENOSYS) {
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001603 if (debug_flag)
Denys Vlasenko89804ec2013-02-07 13:14:48 +01001604 fprintf(stderr, "not a syscall entry (r10 = %ld)\n", cris_r10);
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001605 return 0;
1606 }
Edgar E. Iglesias939caba2010-07-06 14:21:07 +02001607#elif defined(MICROBLAZE)
Denys Vlasenko89804ec2013-02-07 13:14:48 +01001608 if (upeek(tcp, 3 * 4, &microblaze_r3) < 0)
Edgar E. Iglesias939caba2010-07-06 14:21:07 +02001609 return -1;
Denys Vlasenko89804ec2013-02-07 13:14:48 +01001610 if (microblaze_r3 != -ENOSYS) {
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01001611 if (debug_flag)
Denys Vlasenko89804ec2013-02-07 13:14:48 +01001612 fprintf(stderr, "not a syscall entry (r3 = %ld)\n", microblaze_r3);
Edgar E. Iglesias939caba2010-07-06 14:21:07 +02001613 return 0;
1614 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001615#endif
Pavel Machek4dc3b142000-02-01 17:58:41 +00001616 return 1;
1617}
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001618
Denys Vlasenko146b9442012-03-18 22:10:48 +01001619static void
1620internal_fork(struct tcb *tcp)
1621{
1622#if defined S390 || defined S390X || defined CRISV10 || defined CRISV32
1623# define ARG_FLAGS 1
1624#else
1625# define ARG_FLAGS 0
1626#endif
1627#ifndef CLONE_UNTRACED
1628# define CLONE_UNTRACED 0x00800000
1629#endif
1630 if ((ptrace_setoptions
1631 & (PTRACE_O_TRACECLONE | PTRACE_O_TRACEFORK | PTRACE_O_TRACEVFORK))
1632 == (PTRACE_O_TRACECLONE | PTRACE_O_TRACEFORK | PTRACE_O_TRACEVFORK))
1633 return;
1634
1635 if (!followfork)
1636 return;
1637
1638 if (entering(tcp)) {
1639 /*
1640 * We won't see the new child if clone is called with
1641 * CLONE_UNTRACED, so we keep the same logic with that option
1642 * and don't trace it.
1643 */
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01001644 if ((tcp->s_ent->sys_func == sys_clone)
1645 && (tcp->u_arg[ARG_FLAGS] & CLONE_UNTRACED)
1646 )
Denys Vlasenko146b9442012-03-18 22:10:48 +01001647 return;
1648 setbpt(tcp);
1649 } else {
1650 if (tcp->flags & TCB_BPTSET)
1651 clearbpt(tcp);
1652 }
1653}
1654
1655#if defined(TCB_WAITEXECVE)
1656static void
1657internal_exec(struct tcb *tcp)
1658{
1659 /* Maybe we have post-execve SIGTRAP suppressed? */
1660 if (ptrace_setoptions & PTRACE_O_TRACEEXEC)
1661 return; /* yes, no need to do anything */
1662
1663 if (exiting(tcp) && syserror(tcp))
1664 /* Error in execve, no post-execve SIGTRAP expected */
1665 tcp->flags &= ~TCB_WAITEXECVE;
1666 else
1667 tcp->flags |= TCB_WAITEXECVE;
1668}
1669#endif
1670
1671static void
Denys Vlasenko8d4ca0c2013-02-06 13:18:42 +01001672syscall_fixup_for_fork_exec(struct tcb *tcp)
Roland McGrathc1e45922008-05-27 23:18:29 +00001673{
Denys Vlasenkoa6146922011-08-24 18:07:22 +02001674 /*
1675 * We must always trace a few critical system calls in order to
1676 * correctly support following forks in the presence of tracing
1677 * qualifiers.
1678 */
1679 int (*func)();
1680
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01001681 func = tcp->s_ent->sys_func;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02001682
1683 if ( sys_fork == func
Denys Vlasenkoa6146922011-08-24 18:07:22 +02001684 || sys_vfork == func
Denys Vlasenkoa6146922011-08-24 18:07:22 +02001685 || sys_clone == func
Denys Vlasenko146b9442012-03-18 22:10:48 +01001686 ) {
1687 internal_fork(tcp);
1688 return;
1689 }
Denys Vlasenkoa6146922011-08-24 18:07:22 +02001690
Denys Vlasenko84703742012-02-25 02:38:52 +01001691#if defined(TCB_WAITEXECVE)
Denys Vlasenkoa6146922011-08-24 18:07:22 +02001692 if ( sys_execve == func
Denys Vlasenko84703742012-02-25 02:38:52 +01001693# if defined(SPARC) || defined(SPARC64)
Denys Vlasenkoa6146922011-08-24 18:07:22 +02001694 || sys_execv == func
Denys Vlasenkoa7949742011-08-21 17:26:55 +02001695# endif
Denys Vlasenko146b9442012-03-18 22:10:48 +01001696 ) {
1697 internal_exec(tcp);
1698 return;
1699 }
Roland McGrathc1e45922008-05-27 23:18:29 +00001700#endif
Pavel Machek4dc3b142000-02-01 17:58:41 +00001701}
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001702
Denys Vlasenkobb6bb5c2012-03-20 17:10:35 +01001703/* Return -1 on error or 1 on success (never 0!) */
Roland McGratha4d48532005-06-08 20:45:28 +00001704static int
Denys Vlasenkobb6bb5c2012-03-20 17:10:35 +01001705get_syscall_args(struct tcb *tcp)
Pavel Machek4dc3b142000-02-01 17:58:41 +00001706{
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001707 int i, nargs;
1708
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01001709 nargs = tcp->s_ent->nargs;
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001710
Denys Vlasenko523635f2012-02-25 02:44:25 +01001711#if defined(S390) || defined(S390X)
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001712 for (i = 0; i < nargs; ++i)
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001713 if (upeek(tcp, i==0 ? PT_ORIGGPR2 : PT_GPR2 + i*sizeof(long), &tcp->u_arg[i]) < 0)
1714 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001715#elif defined(ALPHA)
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001716 for (i = 0; i < nargs; ++i)
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001717 if (upeek(tcp, REG_A0+i, &tcp->u_arg[i]) < 0)
1718 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001719#elif defined(IA64)
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001720 if (!ia32) {
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001721 unsigned long *out0, cfm, sof, sol;
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001722 long rbs_end;
1723 /* be backwards compatible with kernel < 2.4.4... */
1724# ifndef PT_RBS_END
1725# define PT_RBS_END PT_AR_BSP
1726# endif
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +00001727
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001728 if (upeek(tcp, PT_RBS_END, &rbs_end) < 0)
1729 return -1;
1730 if (upeek(tcp, PT_CFM, (long *) &cfm) < 0)
Roland McGrath542c2c62008-05-20 01:11:56 +00001731 return -1;
1732
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001733 sof = (cfm >> 0) & 0x7f;
1734 sol = (cfm >> 7) & 0x7f;
1735 out0 = ia64_rse_skip_regs((unsigned long *) rbs_end, -sof + sol);
1736
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001737 for (i = 0; i < nargs; ++i) {
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001738 if (umoven(tcp, (unsigned long) ia64_rse_skip_regs(out0, i),
1739 sizeof(long), (char *) &tcp->u_arg[i]) < 0)
1740 return -1;
1741 }
1742 } else {
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001743 static const int argreg[MAX_ARGS] = { PT_R11 /* EBX = out0 */,
1744 PT_R9 /* ECX = out1 */,
1745 PT_R10 /* EDX = out2 */,
1746 PT_R14 /* ESI = out3 */,
1747 PT_R15 /* EDI = out4 */,
1748 PT_R13 /* EBP = out5 */};
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001749
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001750 for (i = 0; i < nargs; ++i) {
1751 if (upeek(tcp, argreg[i], &tcp->u_arg[i]) < 0)
1752 return -1;
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001753 /* truncate away IVE sign-extension */
1754 tcp->u_arg[i] &= 0xffffffff;
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001755 }
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001756 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01001757#elif defined(LINUX_MIPSN32) || defined(LINUX_MIPSN64)
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001758 /* N32 and N64 both use up to six registers. */
1759 unsigned long long regs[38];
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001760
1761 if (ptrace(PTRACE_GETREGS, tcp->pid, NULL, (long) &regs) < 0)
1762 return -1;
1763
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001764 for (i = 0; i < nargs; ++i) {
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001765 tcp->u_arg[i] = regs[REG_A0 + i];
Denys Vlasenko523635f2012-02-25 02:44:25 +01001766# if defined(LINUX_MIPSN32)
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001767 tcp->ext_arg[i] = regs[REG_A0 + i];
Denys Vlasenko523635f2012-02-25 02:44:25 +01001768# endif
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001769 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01001770#elif defined(MIPS)
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001771 if (nargs > 4) {
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001772 long sp;
1773
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001774 if (upeek(tcp, REG_SP, &sp) < 0)
1775 return -1;
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001776 for (i = 0; i < 4; ++i)
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001777 if (upeek(tcp, REG_A0 + i, &tcp->u_arg[i]) < 0)
1778 return -1;
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001779 umoven(tcp, sp + 16, (nargs - 4) * sizeof(tcp->u_arg[0]),
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001780 (char *)(tcp->u_arg + 4));
1781 } else {
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001782 for (i = 0; i < nargs; ++i)
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001783 if (upeek(tcp, REG_A0 + i, &tcp->u_arg[i]) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001784 return -1;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001785 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01001786#elif defined(POWERPC)
1787# ifndef PT_ORIG_R3
1788# define PT_ORIG_R3 34
1789# endif
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001790 for (i = 0; i < nargs; ++i) {
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001791 if (upeek(tcp, (i==0) ?
1792 (sizeof(unsigned long) * PT_ORIG_R3) :
1793 ((i+PT_R3) * sizeof(unsigned long)),
1794 &tcp->u_arg[i]) < 0)
1795 return -1;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001796 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01001797#elif defined(SPARC) || defined(SPARC64)
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001798 for (i = 0; i < nargs; ++i)
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +01001799 tcp->u_arg[i] = sparc_regs.u_regs[U_REG_O0 + i];
Denys Vlasenko523635f2012-02-25 02:44:25 +01001800#elif defined(HPPA)
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001801 for (i = 0; i < nargs; ++i)
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001802 if (upeek(tcp, PT_GR26-4*i, &tcp->u_arg[i]) < 0)
1803 return -1;
Steve McIntyre890a5ca2012-11-10 11:24:48 +00001804#elif defined(ARM) || defined(AARCH64)
1805# if defined(AARCH64)
1806 if (tcp->currpers == 1)
1807 for (i = 0; i < nargs; ++i)
1808 tcp->u_arg[i] = aarch64_regs.regs[i];
1809 else
Denys Vlasenko28ac68f2013-02-08 12:38:51 +01001810# endif
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001811 for (i = 0; i < nargs; ++i)
Denys Vlasenko401374e2013-02-06 18:24:39 +01001812 tcp->u_arg[i] = arm_regs.uregs[i];
Denys Vlasenko523635f2012-02-25 02:44:25 +01001813#elif defined(AVR32)
Denys Vlasenkob5b25892011-08-30 19:04:54 +02001814 (void)i;
1815 (void)nargs;
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +01001816 tcp->u_arg[0] = avr32_regs.r12;
1817 tcp->u_arg[1] = avr32_regs.r11;
1818 tcp->u_arg[2] = avr32_regs.r10;
1819 tcp->u_arg[3] = avr32_regs.r9;
1820 tcp->u_arg[4] = avr32_regs.r5;
1821 tcp->u_arg[5] = avr32_regs.r3;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001822#elif defined(BFIN)
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001823 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 +02001824
Denys Vlasenko4b887a52011-08-23 13:32:38 +02001825 for (i = 0; i < nargs; ++i)
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001826 if (upeek(tcp, argreg[i], &tcp->u_arg[i]) < 0)
1827 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001828#elif defined(SH)
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001829 static const int syscall_regs[MAX_ARGS] = {
1830 4 * (REG_REG0+4), 4 * (REG_REG0+5), 4 * (REG_REG0+6),
1831 4 * (REG_REG0+7), 4 * (REG_REG0 ), 4 * (REG_REG0+1)
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001832 };
1833
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001834 for (i = 0; i < nargs; ++i)
Denys Vlasenko0b6c73c2011-06-23 22:22:34 +02001835 if (upeek(tcp, syscall_regs[i], &tcp->u_arg[i]) < 0)
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001836 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001837#elif defined(SH64)
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001838 int i;
1839 /* Registers used by SH5 Linux system calls for parameters */
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001840 static const int syscall_regs[MAX_ARGS] = { 2, 3, 4, 5, 6, 7 };
Roland McGrathe1e584b2003-06-02 19:18:58 +00001841
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001842 for (i = 0; i < nargs; ++i)
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001843 if (upeek(tcp, REG_GENERAL(syscall_regs[i]), &tcp->u_arg[i]) < 0)
1844 return -1;
Denys Vlasenko6cf36052013-02-15 15:01:38 +01001845#elif defined(I386)
1846 (void)i;
1847 (void)nargs;
1848 tcp->u_arg[0] = i386_regs.ebx;
1849 tcp->u_arg[1] = i386_regs.ecx;
1850 tcp->u_arg[2] = i386_regs.edx;
1851 tcp->u_arg[3] = i386_regs.esi;
1852 tcp->u_arg[4] = i386_regs.edi;
1853 tcp->u_arg[5] = i386_regs.ebp;
H.J. Lu35be5812012-04-16 13:00:01 +02001854#elif defined(X86_64) || defined(X32)
Denys Vlasenkoeb0e3e82011-08-30 18:53:49 +02001855 (void)i;
1856 (void)nargs;
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +01001857 if (x86_io.iov_len != sizeof(i386_regs)) {
1858 /* x86-64 or x32 ABI */
Denys Vlasenkoeb0e3e82011-08-30 18:53:49 +02001859 tcp->u_arg[0] = x86_64_regs.rdi;
1860 tcp->u_arg[1] = x86_64_regs.rsi;
1861 tcp->u_arg[2] = x86_64_regs.rdx;
1862 tcp->u_arg[3] = x86_64_regs.r10;
1863 tcp->u_arg[4] = x86_64_regs.r8;
1864 tcp->u_arg[5] = x86_64_regs.r9;
H.J. Lu35be5812012-04-16 13:00:01 +02001865# ifdef X32
1866 tcp->ext_arg[0] = x86_64_regs.rdi;
1867 tcp->ext_arg[1] = x86_64_regs.rsi;
1868 tcp->ext_arg[2] = x86_64_regs.rdx;
1869 tcp->ext_arg[3] = x86_64_regs.r10;
1870 tcp->ext_arg[4] = x86_64_regs.r8;
1871 tcp->ext_arg[5] = x86_64_regs.r9;
1872# endif
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +01001873 } else {
1874 /* i386 ABI */
Denys Vlasenko6cf36052013-02-15 15:01:38 +01001875 /* Zero-extend from 32 bits */
1876 /* Use widen_to_long(tcp->u_arg[N]) in syscall handlers
1877 * if you need to use *sign-extended* parameter.
1878 */
1879 tcp->u_arg[0] = (long)(uint32_t)i386_regs.ebx;
1880 tcp->u_arg[1] = (long)(uint32_t)i386_regs.ecx;
1881 tcp->u_arg[2] = (long)(uint32_t)i386_regs.edx;
1882 tcp->u_arg[3] = (long)(uint32_t)i386_regs.esi;
1883 tcp->u_arg[4] = (long)(uint32_t)i386_regs.edi;
1884 tcp->u_arg[5] = (long)(uint32_t)i386_regs.ebp;
Denys Vlasenkoeb0e3e82011-08-30 18:53:49 +02001885 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01001886#elif defined(MICROBLAZE)
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001887 for (i = 0; i < nargs; ++i)
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001888 if (upeek(tcp, (5 + i) * 4, &tcp->u_arg[i]) < 0)
1889 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001890#elif defined(CRISV10) || defined(CRISV32)
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001891 static const int crisregs[MAX_ARGS] = {
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001892 4*PT_ORIG_R10, 4*PT_R11, 4*PT_R12,
Denys Vlasenko0b6c73c2011-06-23 22:22:34 +02001893 4*PT_R13 , 4*PT_MOF, 4*PT_SRP
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001894 };
Roland McGrathe1e584b2003-06-02 19:18:58 +00001895
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001896 for (i = 0; i < nargs; ++i)
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001897 if (upeek(tcp, crisregs[i], &tcp->u_arg[i]) < 0)
1898 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001899#elif defined(TILE)
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001900 for (i = 0; i < nargs; ++i)
Chris Metcalf0b99a8a2013-02-05 17:48:33 +01001901 tcp->u_arg[i] = tile_regs.regs[i];
Denys Vlasenko523635f2012-02-25 02:44:25 +01001902#elif defined(M68K)
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001903 for (i = 0; i < nargs; ++i)
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001904 if (upeek(tcp, (i < 5 ? i : i + 2)*4, &tcp->u_arg[i]) < 0)
1905 return -1;
Christian Svensson492f81f2013-02-14 13:26:27 +01001906#elif defined(OR1K)
1907 (void)nargs;
1908 for (i = 0; i < 6; ++i)
1909 tcp->u_arg[i] = or1k_regs.gpr[3 + i];
James Hogan5f999a82013-02-22 14:44:10 +00001910#elif defined(METAG)
1911 for (i = 0; i < nargs; i++)
1912 /* arguments go backwards from D1Ar1 (D1.3) */
1913 tcp->u_arg[i] = ((unsigned long *)&metag_regs.dx[3][1])[-i];
Denys Vlasenko523635f2012-02-25 02:44:25 +01001914#else /* Other architecture (32bits specific) */
Dmitry V. Levin5f731c42011-08-23 16:24:20 +00001915 for (i = 0; i < nargs; ++i)
Denys Vlasenkof5d099c2011-06-23 22:10:54 +02001916 if (upeek(tcp, i*4, &tcp->u_arg[i]) < 0)
1917 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01001918#endif
Pavel Machek4dc3b142000-02-01 17:58:41 +00001919 return 1;
1920}
1921
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00001922static int
Denys Vlasenkoed4f4f02011-08-22 11:54:06 +02001923trace_syscall_entering(struct tcb *tcp)
1924{
1925 int res, scno_good;
1926
Denys Vlasenko2ce12ed2011-08-24 17:25:32 +02001927#if defined TCB_WAITEXECVE
1928 if (tcp->flags & TCB_WAITEXECVE) {
1929 /* This is the post-execve SIGTRAP. */
1930 tcp->flags &= ~TCB_WAITEXECVE;
1931 return 0;
1932 }
1933#endif
1934
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01001935 scno_good = res = (get_regs_error ? -1 : get_scno(tcp));
Denys Vlasenkoed4f4f02011-08-22 11:54:06 +02001936 if (res == 0)
1937 return res;
Denys Vlasenko907735a2012-03-21 00:23:16 +01001938 if (res == 1) {
Denys Vlasenko8b4454c2011-08-25 10:40:14 +02001939 res = syscall_fixup_on_sysenter(tcp);
Denys Vlasenko907735a2012-03-21 00:23:16 +01001940 if (res == 0)
1941 return res;
1942 if (res == 1)
1943 res = get_syscall_args(tcp);
1944 }
Denys Vlasenkoed4f4f02011-08-22 11:54:06 +02001945
1946 if (res != 1) {
1947 printleader(tcp);
Denys Vlasenkoed4f4f02011-08-22 11:54:06 +02001948 if (scno_good != 1)
Denys Vlasenkob7a6dae2012-03-20 16:48:35 +01001949 tprints("????" /* anti-trigraph gap */ "(");
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01001950 else if (tcp->qual_flg & UNDEFINED_SCNO)
Denys Vlasenko7270de52013-02-21 15:46:34 +01001951 tprintf("%s(", undefined_scno_name(tcp));
Denys Vlasenkoed4f4f02011-08-22 11:54:06 +02001952 else
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01001953 tprintf("%s(", tcp->s_ent->sys_name);
Denys Vlasenkoed4f4f02011-08-22 11:54:06 +02001954 /*
1955 * " <unavailable>" will be added later by the code which
1956 * detects ptrace errors.
1957 */
1958 goto ret;
1959 }
1960
Dmitry V. Levinb5e88d42012-02-20 17:02:38 +00001961#if defined(SYS_socket_subcall) || defined(SYS_ipc_subcall)
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01001962 while (1) {
Denys Vlasenko523635f2012-02-25 02:44:25 +01001963# ifdef SYS_socket_subcall
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01001964 if (tcp->s_ent->sys_func == sys_socketcall) {
Dmitry V. Levin648c22c2012-03-15 22:08:55 +00001965 decode_socket_subcall(tcp);
Dmitry V. Levinb5e88d42012-02-20 17:02:38 +00001966 break;
1967 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01001968# endif
1969# ifdef SYS_ipc_subcall
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01001970 if (tcp->s_ent->sys_func == sys_ipc) {
Dmitry V. Levin648c22c2012-03-15 22:08:55 +00001971 decode_ipc_subcall(tcp);
Dmitry V. Levinb5e88d42012-02-20 17:02:38 +00001972 break;
1973 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01001974# endif
Dmitry V. Levinb5e88d42012-02-20 17:02:38 +00001975 break;
1976 }
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01001977#endif
Dmitry V. Levinb5e88d42012-02-20 17:02:38 +00001978
Denys Vlasenko8d4ca0c2013-02-06 13:18:42 +01001979 if (need_fork_exec_workarounds)
1980 syscall_fixup_for_fork_exec(tcp);
Denys Vlasenkoed4f4f02011-08-22 11:54:06 +02001981
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01001982 if (!(tcp->qual_flg & QUAL_TRACE)
1983 || (tracing_paths && !pathtrace_match(tcp))
1984 ) {
Denys Vlasenkoed4f4f02011-08-22 11:54:06 +02001985 tcp->flags |= TCB_INSYSCALL | TCB_FILTERED;
1986 return 0;
1987 }
1988
1989 tcp->flags &= ~TCB_FILTERED;
1990
1991 if (cflag == CFLAG_ONLY_STATS) {
1992 res = 0;
1993 goto ret;
1994 }
1995
1996 printleader(tcp);
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01001997 if (tcp->qual_flg & UNDEFINED_SCNO)
Denys Vlasenko7270de52013-02-21 15:46:34 +01001998 tprintf("%s(", undefined_scno_name(tcp));
Denys Vlasenkoed4f4f02011-08-22 11:54:06 +02001999 else
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01002000 tprintf("%s(", tcp->s_ent->sys_name);
2001 if ((tcp->qual_flg & QUAL_RAW) && tcp->s_ent->sys_func != sys_exit)
Denys Vlasenkoed4f4f02011-08-22 11:54:06 +02002002 res = printargs(tcp);
2003 else
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01002004 res = tcp->s_ent->sys_func(tcp);
Denys Vlasenkoed4f4f02011-08-22 11:54:06 +02002005
Dmitry V. Levinb742d8c2012-09-17 22:40:12 +00002006 fflush(tcp->outf);
Denys Vlasenkoed4f4f02011-08-22 11:54:06 +02002007 ret:
2008 tcp->flags |= TCB_INSYSCALL;
2009 /* Measure the entrance time as late as possible to avoid errors. */
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01002010 if (Tflag || cflag)
Denys Vlasenkoed4f4f02011-08-22 11:54:06 +02002011 gettimeofday(&tcp->etime, NULL);
2012 return res;
2013}
2014
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002015/* Returns:
Denys Vlasenko907735a2012-03-21 00:23:16 +01002016 * 1: ok, continue in trace_syscall_exiting().
2017 * -1: error, trace_syscall_exiting() should print error indicator
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002018 * ("????" etc) and bail out.
2019 */
2020static int
2021get_syscall_result(struct tcb *tcp)
2022{
Denys Vlasenko523635f2012-02-25 02:44:25 +01002023#if defined(S390) || defined(S390X)
Denys Vlasenkof20bff62011-08-25 10:31:24 +02002024 if (upeek(tcp, PT_GPR2, &gpr2) < 0)
2025 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01002026#elif defined(POWERPC)
Denys Vlasenkof20bff62011-08-25 10:31:24 +02002027# define SO_MASK 0x10000000
2028 {
2029 long flags;
2030 if (upeek(tcp, sizeof(unsigned long)*PT_CCR, &flags) < 0)
2031 return -1;
Denys Vlasenko46dc8b22012-03-21 00:07:25 +01002032 if (upeek(tcp, sizeof(unsigned long)*PT_R3, &ppc_result) < 0)
Denys Vlasenkof20bff62011-08-25 10:31:24 +02002033 return -1;
2034 if (flags & SO_MASK)
Denys Vlasenko46dc8b22012-03-21 00:07:25 +01002035 ppc_result = -ppc_result;
Denys Vlasenkof20bff62011-08-25 10:31:24 +02002036 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002037#elif defined(AVR32)
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01002038 /* already done by get_regs */
Denys Vlasenko523635f2012-02-25 02:44:25 +01002039#elif defined(BFIN)
Denys Vlasenkod22213a2013-02-13 17:52:31 +01002040 if (upeek(tcp, PT_R0, &bfin_r0) < 0)
Denys Vlasenkof20bff62011-08-25 10:31:24 +02002041 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01002042#elif defined(I386)
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01002043 /* already done by get_regs */
H.J. Lu35be5812012-04-16 13:00:01 +02002044#elif defined(X86_64) || defined(X32)
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01002045 /* already done by get_regs */
Denys Vlasenko523635f2012-02-25 02:44:25 +01002046#elif defined(IA64)
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002047# define IA64_PSR_IS ((long)1 << 34)
Denys Vlasenko4bdb6bb2013-02-06 18:09:31 +01002048 long psr;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002049 if (upeek(tcp, PT_CR_IPSR, &psr) >= 0)
2050 ia32 = (psr & IA64_PSR_IS) != 0;
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002051 if (upeek(tcp, PT_R8, &ia64_r8) < 0)
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002052 return -1;
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002053 if (upeek(tcp, PT_R10, &ia64_r10) < 0)
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002054 return -1;
Denys Vlasenko28ac68f2013-02-08 12:38:51 +01002055#elif defined(ARM)
2056 /* already done by get_regs */
Steve McIntyred8d3bd32012-10-24 17:58:16 +01002057#elif defined(AARCH64)
Denys Vlasenko28ac68f2013-02-08 12:38:51 +01002058 /* register reading already done by get_regs */
2059
2060 /* Used to do this, but we did it on syscall entry already: */
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01002061 /* We are in 64-bit mode (personality 1) if register struct is aarch64_regs,
2062 * else it's personality 0.
2063 */
Denys Vlasenko28ac68f2013-02-08 12:38:51 +01002064 /*update_personality(tcp, aarch64_io.iov_len == sizeof(aarch64_regs));*/
Denys Vlasenko523635f2012-02-25 02:44:25 +01002065#elif defined(M68K)
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002066 if (upeek(tcp, 4*PT_D0, &m68k_d0) < 0)
Denys Vlasenkof20bff62011-08-25 10:31:24 +02002067 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01002068#elif defined(LINUX_MIPSN32)
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002069 unsigned long long regs[38];
2070
2071 if (ptrace(PTRACE_GETREGS, tcp->pid, NULL, (long) &regs) < 0)
2072 return -1;
Denys Vlasenkod22213a2013-02-13 17:52:31 +01002073 mips_a3 = regs[REG_A3];
2074 mips_r2 = regs[REG_V0];
Denys Vlasenko523635f2012-02-25 02:44:25 +01002075#elif defined(MIPS)
Denys Vlasenkod22213a2013-02-13 17:52:31 +01002076 if (upeek(tcp, REG_A3, &mips_a3) < 0)
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002077 return -1;
Denys Vlasenkod22213a2013-02-13 17:52:31 +01002078 if (upeek(tcp, REG_V0, &mips_r2) < 0)
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002079 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01002080#elif defined(ALPHA)
Denys Vlasenkod22213a2013-02-13 17:52:31 +01002081 if (upeek(tcp, REG_A3, &alpha_a3) < 0)
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002082 return -1;
Denys Vlasenkod22213a2013-02-13 17:52:31 +01002083 if (upeek(tcp, REG_R0, &alpha_r0) < 0)
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002084 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01002085#elif defined(SPARC) || defined(SPARC64)
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01002086 /* already done by get_regs */
Denys Vlasenko523635f2012-02-25 02:44:25 +01002087#elif defined(HPPA)
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002088 if (upeek(tcp, PT_GR28, &hppa_r28) < 0)
Denys Vlasenkof20bff62011-08-25 10:31:24 +02002089 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01002090#elif defined(SH)
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01002091 /* new syscall ABI returns result in R0 */
Denys Vlasenkod22213a2013-02-13 17:52:31 +01002092 if (upeek(tcp, 4*REG_REG0, (long *)&sh_r0) < 0)
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01002093 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01002094#elif defined(SH64)
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01002095 /* ABI defines result returned in r9 */
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002096 if (upeek(tcp, REG_GENERAL(9), (long *)&sh64_r9) < 0)
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01002097 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01002098#elif defined(CRISV10) || defined(CRISV32)
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002099 if (upeek(tcp, 4*PT_R10, &cris_r10) < 0)
Denys Vlasenkof20bff62011-08-25 10:31:24 +02002100 return -1;
Denys Vlasenko523635f2012-02-25 02:44:25 +01002101#elif defined(TILE)
Chris Metcalf0b99a8a2013-02-05 17:48:33 +01002102 /* already done by get_regs */
Denys Vlasenko523635f2012-02-25 02:44:25 +01002103#elif defined(MICROBLAZE)
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002104 if (upeek(tcp, 3 * 4, &microblaze_r3) < 0)
Denys Vlasenkof20bff62011-08-25 10:31:24 +02002105 return -1;
Christian Svensson492f81f2013-02-14 13:26:27 +01002106#elif defined(OR1K)
2107 /* already done by get_regs */
James Hogan5f999a82013-02-22 14:44:10 +00002108#elif defined(METAG)
2109 /* already done by get_regs */
Denys Vlasenko523635f2012-02-25 02:44:25 +01002110#endif
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002111 return 1;
2112}
2113
Denys Vlasenkobb6bb5c2012-03-20 17:10:35 +01002114/* Called at each syscall exit */
2115static void
Denys Vlasenko20c41fd2011-08-25 10:23:00 +02002116syscall_fixup_on_sysexit(struct tcb *tcp)
2117{
Denys Vlasenko523635f2012-02-25 02:44:25 +01002118#if defined(S390) || defined(S390X)
Denys Vlasenko20c41fd2011-08-25 10:23:00 +02002119 if (syscall_mode != -ENOSYS)
2120 syscall_mode = tcp->scno;
Denys Vlasenkoece98792011-08-25 10:25:35 +02002121 if ((tcp->flags & TCB_WAITEXECVE)
Denys Vlasenko20c41fd2011-08-25 10:23:00 +02002122 && (gpr2 == -ENOSYS || gpr2 == tcp->scno)) {
2123 /*
2124 * Return from execve.
2125 * Fake a return value of zero. We leave the TCB_WAITEXECVE
2126 * flag set for the post-execve SIGTRAP to see and reset.
2127 */
2128 gpr2 = 0;
2129 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002130#endif
Denys Vlasenko20c41fd2011-08-25 10:23:00 +02002131}
2132
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002133/*
2134 * Check the syscall return value register value for whether it is
2135 * a negated errno code indicating an error, or a success return value.
2136 */
2137static inline int
2138is_negated_errno(unsigned long int val)
2139{
2140 unsigned long int max = -(long int) nerrnos;
Denys Vlasenko2544f982013-02-19 17:39:56 +01002141#if SUPPORTED_PERSONALITIES > 1 && SIZEOF_LONG > 4
Denys Vlasenko9fd4f962012-03-19 09:36:42 +01002142 if (current_wordsize < sizeof(val)) {
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002143 val = (unsigned int) val;
2144 max = (unsigned int) max;
2145 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002146#endif
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002147 return val > max;
2148}
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002149
Denys Vlasenkoafea7dd2013-02-12 11:52:35 +01002150#if defined(X32)
2151static inline int
2152is_negated_errno_x32(unsigned long long val)
2153{
2154 unsigned long long max = -(long long) nerrnos;
2155 /*
2156 * current_wordsize is 4 even in personality 0 (native X32)
2157 * but truncation _must not_ be done in it.
2158 * can't check current_wordsize here!
2159 */
2160 if (current_personality != 0) {
2161 val = (uint32_t) val;
2162 max = (uint32_t) max;
2163 }
2164 return val > max;
2165}
2166#endif
2167
Denys Vlasenko907735a2012-03-21 00:23:16 +01002168/* Returns:
2169 * 1: ok, continue in trace_syscall_exiting().
2170 * -1: error, trace_syscall_exiting() should print error indicator
2171 * ("????" etc) and bail out.
2172 */
Denys Vlasenkoc956ef02013-02-16 14:25:56 +01002173static void
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002174get_error(struct tcb *tcp)
2175{
2176 int u_error = 0;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002177 int check_errno = 1;
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01002178 if (tcp->s_ent->sys_flags & SYSCALL_NEVER_FAILS) {
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002179 check_errno = 0;
2180 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002181#if defined(S390) || defined(S390X)
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002182 if (check_errno && is_negated_errno(gpr2)) {
2183 tcp->u_rval = -1;
2184 u_error = -gpr2;
2185 }
2186 else {
2187 tcp->u_rval = gpr2;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002188 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002189#elif defined(I386)
Denys Vlasenkoeb0e3e82011-08-30 18:53:49 +02002190 if (check_errno && is_negated_errno(i386_regs.eax)) {
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002191 tcp->u_rval = -1;
Denys Vlasenkoeb0e3e82011-08-30 18:53:49 +02002192 u_error = -i386_regs.eax;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002193 }
2194 else {
Denys Vlasenkoeb0e3e82011-08-30 18:53:49 +02002195 tcp->u_rval = i386_regs.eax;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002196 }
Denys Vlasenkoafea7dd2013-02-12 11:52:35 +01002197#elif defined(X86_64)
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +01002198 long rax;
2199 if (x86_io.iov_len == sizeof(i386_regs)) {
2200 /* Sign extend from 32 bits */
2201 rax = (int32_t)i386_regs.eax;
2202 } else {
2203 rax = x86_64_regs.rax;
2204 }
2205 if (check_errno && is_negated_errno(rax)) {
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002206 tcp->u_rval = -1;
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +01002207 u_error = -rax;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002208 }
2209 else {
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +01002210 tcp->u_rval = rax;
Denys Vlasenkoafea7dd2013-02-12 11:52:35 +01002211 }
2212#elif defined(X32)
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +01002213 /* In X32, return value is 64-bit (llseek uses one).
2214 * Using merely "long rax" would not work.
2215 */
2216 long long rax;
2217 if (x86_io.iov_len == sizeof(i386_regs)) {
2218 /* Sign extend from 32 bits */
2219 rax = (int32_t)i386_regs.eax;
2220 } else {
2221 rax = x86_64_regs.rax;
2222 }
Denys Vlasenkoafea7dd2013-02-12 11:52:35 +01002223 /* Careful: is_negated_errno() works only on longs */
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +01002224 if (check_errno && is_negated_errno_x32(rax)) {
Denys Vlasenkoafea7dd2013-02-12 11:52:35 +01002225 tcp->u_rval = -1;
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +01002226 u_error = -rax;
Denys Vlasenkoafea7dd2013-02-12 11:52:35 +01002227 }
2228 else {
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +01002229 tcp->u_rval = rax; /* truncating */
2230 tcp->u_lrval = rax;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002231 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002232#elif defined(IA64)
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002233 if (ia32) {
2234 int err;
2235
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002236 err = (int)ia64_r8;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002237 if (check_errno && is_negated_errno(err)) {
2238 tcp->u_rval = -1;
2239 u_error = -err;
2240 }
2241 else {
2242 tcp->u_rval = err;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002243 }
2244 } else {
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002245 if (check_errno && ia64_r10) {
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002246 tcp->u_rval = -1;
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002247 u_error = ia64_r8;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002248 } else {
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002249 tcp->u_rval = ia64_r8;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002250 }
2251 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002252#elif defined(MIPS)
Denys Vlasenkod22213a2013-02-13 17:52:31 +01002253 if (check_errno && mips_a3) {
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002254 tcp->u_rval = -1;
Denys Vlasenkod22213a2013-02-13 17:52:31 +01002255 u_error = mips_r2;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002256 } else {
Denys Vlasenkod22213a2013-02-13 17:52:31 +01002257 tcp->u_rval = mips_r2;
H.J. Ludd0130b2012-04-16 12:16:45 +02002258# if defined(LINUX_MIPSN32)
Denys Vlasenkod22213a2013-02-13 17:52:31 +01002259 tcp->u_lrval = mips_r2;
H.J. Ludd0130b2012-04-16 12:16:45 +02002260# endif
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002261 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002262#elif defined(POWERPC)
Denys Vlasenko46dc8b22012-03-21 00:07:25 +01002263 if (check_errno && is_negated_errno(ppc_result)) {
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002264 tcp->u_rval = -1;
Denys Vlasenko46dc8b22012-03-21 00:07:25 +01002265 u_error = -ppc_result;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002266 }
2267 else {
Denys Vlasenko46dc8b22012-03-21 00:07:25 +01002268 tcp->u_rval = ppc_result;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002269 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002270#elif defined(M68K)
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002271 if (check_errno && is_negated_errno(m68k_d0)) {
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002272 tcp->u_rval = -1;
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002273 u_error = -m68k_d0;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002274 }
2275 else {
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002276 tcp->u_rval = m68k_d0;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002277 }
Steve McIntyre890a5ca2012-11-10 11:24:48 +00002278#elif defined(ARM) || defined(AARCH64)
2279# if defined(AARCH64)
2280 if (tcp->currpers == 1) {
2281 if (check_errno && is_negated_errno(aarch64_regs.regs[0])) {
2282 tcp->u_rval = -1;
2283 u_error = -aarch64_regs.regs[0];
2284 }
2285 else {
2286 tcp->u_rval = aarch64_regs.regs[0];
2287 }
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002288 }
Steve McIntyre890a5ca2012-11-10 11:24:48 +00002289 else
Denys Vlasenko28ac68f2013-02-08 12:38:51 +01002290# endif
Steve McIntyre890a5ca2012-11-10 11:24:48 +00002291 {
Denys Vlasenko401374e2013-02-06 18:24:39 +01002292 if (check_errno && is_negated_errno(arm_regs.ARM_r0)) {
Steve McIntyre890a5ca2012-11-10 11:24:48 +00002293 tcp->u_rval = -1;
Denys Vlasenko401374e2013-02-06 18:24:39 +01002294 u_error = -arm_regs.ARM_r0;
Steve McIntyre890a5ca2012-11-10 11:24:48 +00002295 }
2296 else {
Denys Vlasenko401374e2013-02-06 18:24:39 +01002297 tcp->u_rval = arm_regs.ARM_r0;
Steve McIntyre890a5ca2012-11-10 11:24:48 +00002298 }
Steve McIntyred8d3bd32012-10-24 17:58:16 +01002299 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002300#elif defined(AVR32)
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +01002301 if (check_errno && avr32_regs.r12 && (unsigned) -avr32_regs.r12 < nerrnos) {
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002302 tcp->u_rval = -1;
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +01002303 u_error = -avr32_regs.r12;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002304 }
2305 else {
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +01002306 tcp->u_rval = avr32_regs.r12;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002307 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002308#elif defined(BFIN)
Denys Vlasenkod22213a2013-02-13 17:52:31 +01002309 if (check_errno && is_negated_errno(bfin_r0)) {
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002310 tcp->u_rval = -1;
Denys Vlasenkod22213a2013-02-13 17:52:31 +01002311 u_error = -bfin_r0;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002312 } else {
Denys Vlasenkod22213a2013-02-13 17:52:31 +01002313 tcp->u_rval = bfin_r0;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002314 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002315#elif defined(ALPHA)
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002316 if (check_errno && alpha_a3) {
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002317 tcp->u_rval = -1;
Denys Vlasenkod22213a2013-02-13 17:52:31 +01002318 u_error = alpha_r0;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002319 }
2320 else {
Denys Vlasenkod22213a2013-02-13 17:52:31 +01002321 tcp->u_rval = alpha_r0;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002322 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002323#elif defined(SPARC)
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +01002324 if (check_errno && sparc_regs.psr & PSR_C) {
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002325 tcp->u_rval = -1;
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +01002326 u_error = sparc_regs.u_regs[U_REG_O0];
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002327 }
2328 else {
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +01002329 tcp->u_rval = sparc_regs.u_regs[U_REG_O0];
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002330 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002331#elif defined(SPARC64)
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +01002332 if (check_errno && sparc_regs.tstate & 0x1100000000UL) {
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002333 tcp->u_rval = -1;
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +01002334 u_error = sparc_regs.u_regs[U_REG_O0];
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002335 }
2336 else {
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +01002337 tcp->u_rval = sparc_regs.u_regs[U_REG_O0];
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002338 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002339#elif defined(HPPA)
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002340 if (check_errno && is_negated_errno(hppa_r28)) {
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002341 tcp->u_rval = -1;
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002342 u_error = -hppa_r28;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002343 }
2344 else {
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002345 tcp->u_rval = hppa_r28;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002346 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002347#elif defined(SH)
Denys Vlasenkod22213a2013-02-13 17:52:31 +01002348 if (check_errno && is_negated_errno(sh_r0)) {
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002349 tcp->u_rval = -1;
Denys Vlasenkod22213a2013-02-13 17:52:31 +01002350 u_error = -sh_r0;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002351 }
2352 else {
Denys Vlasenkod22213a2013-02-13 17:52:31 +01002353 tcp->u_rval = sh_r0;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002354 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002355#elif defined(SH64)
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002356 if (check_errno && is_negated_errno(sh64_r9)) {
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002357 tcp->u_rval = -1;
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002358 u_error = -sh64_r9;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002359 }
2360 else {
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002361 tcp->u_rval = sh64_r9;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002362 }
James Hogan5f999a82013-02-22 14:44:10 +00002363#elif defined(METAG)
2364 /* result pointer in D0Re0 (D0.0) */
2365 if (check_errno && is_negated_errno(metag_regs.dx[0][0])) {
2366 tcp->u_rval = -1;
2367 u_error = -metag_regs.dx[0][0];
2368 }
2369 else {
2370 tcp->u_rval = metag_regs.dx[0][0];
2371 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002372#elif defined(CRISV10) || defined(CRISV32)
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002373 if (check_errno && cris_r10 && (unsigned) -cris_r10 < nerrnos) {
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002374 tcp->u_rval = -1;
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002375 u_error = -cris_r10;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002376 }
2377 else {
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002378 tcp->u_rval = cris_r10;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002379 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002380#elif defined(TILE)
Chris Metcalf0b99a8a2013-02-05 17:48:33 +01002381 /*
2382 * The standard tile calling convention returns the value (or negative
2383 * errno) in r0, and zero (or positive errno) in r1.
2384 * Until at least kernel 3.8, however, the r1 value is not reflected
2385 * in ptregs at this point, so we use r0 here.
2386 */
2387 if (check_errno && is_negated_errno(tile_regs.regs[0])) {
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002388 tcp->u_rval = -1;
Chris Metcalf0b99a8a2013-02-05 17:48:33 +01002389 u_error = -tile_regs.regs[0];
2390 } else {
2391 tcp->u_rval = tile_regs.regs[0];
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002392 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002393#elif defined(MICROBLAZE)
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002394 if (check_errno && is_negated_errno(microblaze_r3)) {
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002395 tcp->u_rval = -1;
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002396 u_error = -microblaze_r3;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002397 }
2398 else {
Denys Vlasenko89804ec2013-02-07 13:14:48 +01002399 tcp->u_rval = microblaze_r3;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002400 }
Christian Svensson492f81f2013-02-14 13:26:27 +01002401#elif defined(OR1K)
2402 if (check_errno && is_negated_errno(or1k_regs.gpr[11])) {
2403 tcp->u_rval = -1;
2404 u_error = -or1k_regs.gpr[11];
2405 }
2406 else {
2407 tcp->u_rval = or1k_regs.gpr[11];
2408 }
Denys Vlasenko523635f2012-02-25 02:44:25 +01002409#endif
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002410 tcp->u_error = u_error;
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002411}
2412
2413static void
2414dumpio(struct tcb *tcp)
2415{
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01002416 int (*func)();
2417
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002418 if (syserror(tcp))
2419 return;
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +01002420 if ((unsigned long) tcp->u_arg[0] >= num_quals)
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002421 return;
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01002422 func = tcp->s_ent->sys_func;
2423 if (func == printargs)
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002424 return;
2425 if (qual_flags[tcp->u_arg[0]] & QUAL_READ) {
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01002426 if (func == sys_read ||
2427 func == sys_pread ||
2428 func == sys_recv ||
2429 func == sys_recvfrom)
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002430 dumpstr(tcp, tcp->u_arg[1], tcp->u_rval);
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01002431 else if (func == sys_readv)
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002432 dumpiov(tcp, tcp->u_arg[2], tcp->u_arg[1]);
2433 return;
2434 }
2435 if (qual_flags[tcp->u_arg[0]] & QUAL_WRITE) {
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01002436 if (func == sys_write ||
2437 func == sys_pwrite ||
2438 func == sys_send ||
2439 func == sys_sendto)
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002440 dumpstr(tcp, tcp->u_arg[1], tcp->u_arg[2]);
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01002441 else if (func == sys_writev)
Denys Vlasenkoa6146922011-08-24 18:07:22 +02002442 dumpiov(tcp, tcp->u_arg[2], tcp->u_arg[1]);
2443 return;
2444 }
2445}
2446
Denys Vlasenkoed4f4f02011-08-22 11:54:06 +02002447static int
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002448trace_syscall_exiting(struct tcb *tcp)
Pavel Machek4dc3b142000-02-01 17:58:41 +00002449{
2450 int sys_res;
2451 struct timeval tv;
Denys Vlasenko1a5b5a72011-08-25 00:29:56 +02002452 int res;
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002453 long u_error;
Pavel Machek4dc3b142000-02-01 17:58:41 +00002454
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002455 /* Measure the exit time as early as possible to avoid errors. */
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01002456 if (Tflag || cflag)
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002457 gettimeofday(&tv, NULL);
Pavel Machek4dc3b142000-02-01 17:58:41 +00002458
Dmitry V. Levina5a839a2011-12-23 00:50:49 +00002459#if SUPPORTED_PERSONALITIES > 1
2460 update_personality(tcp, tcp->currpers);
2461#endif
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01002462 res = (get_regs_error ? -1 : get_syscall_result(tcp));
Denys Vlasenkobb6bb5c2012-03-20 17:10:35 +01002463 if (res == 1) {
2464 syscall_fixup_on_sysexit(tcp); /* never fails */
Denys Vlasenkoc956ef02013-02-16 14:25:56 +01002465 get_error(tcp); /* never fails */
2466 if (need_fork_exec_workarounds)
2467 syscall_fixup_for_fork_exec(tcp);
2468 if (filtered(tcp))
2469 goto ret;
Pavel Machek4dc3b142000-02-01 17:58:41 +00002470 }
2471
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002472 if (cflag) {
2473 struct timeval t = tv;
Denys Vlasenkoc95a88f2011-08-21 17:47:40 +02002474 count_syscall(tcp, &t);
Denys Vlasenko7b609d52011-06-22 14:32:43 +02002475 if (cflag == CFLAG_ONLY_STATS) {
Denys Vlasenko3b738812011-08-22 02:06:35 +02002476 goto ret;
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002477 }
2478 }
2479
Denys Vlasenkoa44f9692012-03-21 11:06:20 +01002480 /* If not in -ff mode, and printing_tcp != tcp,
2481 * then the log currently does not end with output
2482 * of _our syscall entry_, but with something else.
2483 * We need to say which syscall's return is this.
2484 *
2485 * Forced reprinting via TCB_REPRINT is used only by
2486 * "strace -ff -oLOG test/threaded_execve" corner case.
2487 * It's the only case when -ff mode needs reprinting.
2488 */
2489 if ((followfork < 2 && printing_tcp != tcp) || (tcp->flags & TCB_REPRINT)) {
2490 tcp->flags &= ~TCB_REPRINT;
2491 printleader(tcp);
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01002492 if (tcp->qual_flg & UNDEFINED_SCNO)
Denys Vlasenko7270de52013-02-21 15:46:34 +01002493 tprintf("<... %s resumed> ", undefined_scno_name(tcp));
Denys Vlasenkoa44f9692012-03-21 11:06:20 +01002494 else
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01002495 tprintf("<... %s resumed> ", tcp->s_ent->sys_name);
Denys Vlasenkoa44f9692012-03-21 11:06:20 +01002496 }
2497 printing_tcp = tcp;
2498
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002499 if (res != 1) {
Denys Vlasenkoa44f9692012-03-21 11:06:20 +01002500 /* There was error in one of prior ptrace ops */
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002501 tprints(") ");
Denys Vlasenko102ec492011-08-25 01:27:59 +02002502 tabto();
Denys Vlasenko000b6012012-01-28 01:25:03 +01002503 tprints("= ? <unavailable>\n");
Denys Vlasenko7de265d2012-03-13 11:44:31 +01002504 line_ended();
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002505 tcp->flags &= ~TCB_INSYSCALL;
2506 return res;
2507 }
2508
Denys Vlasenkoa44f9692012-03-21 11:06:20 +01002509 sys_res = 0;
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01002510 if (tcp->qual_flg & QUAL_RAW) {
Denys Vlasenkoa44f9692012-03-21 11:06:20 +01002511 /* sys_res = printargs(tcp); - but it's nop on sysexit */
Denys Vlasenko7de265d2012-03-13 11:44:31 +01002512 } else {
Denys Vlasenko3b738812011-08-22 02:06:35 +02002513 /* FIXME: not_failing_only (IOW, option -z) is broken:
2514 * failure of syscall is known only after syscall return.
2515 * Thus we end up with something like this on, say, ENOENT:
2516 * open("doesnt_exist", O_RDONLY <unfinished ...>
2517 * {next syscall decode}
2518 * whereas the intended result is that open(...) line
2519 * is not shown at all.
2520 */
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002521 if (not_failing_only && tcp->u_error)
Denys Vlasenko3b738812011-08-22 02:06:35 +02002522 goto ret; /* ignore failed syscalls */
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01002523 sys_res = tcp->s_ent->sys_func(tcp);
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002524 }
2525
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002526 tprints(") ");
Denys Vlasenko102ec492011-08-25 01:27:59 +02002527 tabto();
Denys Vlasenko3b738812011-08-22 02:06:35 +02002528 u_error = tcp->u_error;
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01002529 if (tcp->qual_flg & QUAL_RAW) {
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002530 if (u_error)
2531 tprintf("= -1 (errno %ld)", u_error);
2532 else
2533 tprintf("= %#lx", tcp->u_rval);
2534 }
2535 else if (!(sys_res & RVAL_NONE) && u_error) {
2536 switch (u_error) {
Denys Vlasenkofe585652012-01-12 11:26:34 +01002537 /* Blocked signals do not interrupt any syscalls.
2538 * In this case syscalls don't return ERESTARTfoo codes.
2539 *
2540 * Deadly signals set to SIG_DFL interrupt syscalls
2541 * and kill the process regardless of which of the codes below
2542 * is returned by the interrupted syscall.
2543 * In some cases, kernel forces a kernel-generated deadly
2544 * signal to be unblocked and set to SIG_DFL (and thus cause
2545 * death) if it is blocked or SIG_IGNed: for example, SIGSEGV
2546 * or SIGILL. (The alternative is to leave process spinning
2547 * forever on the faulty instruction - not useful).
2548 *
2549 * SIG_IGNed signals and non-deadly signals set to SIG_DFL
2550 * (for example, SIGCHLD, SIGWINCH) interrupt syscalls,
2551 * but kernel will always restart them.
2552 */
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002553 case ERESTARTSYS:
Denys Vlasenkofe585652012-01-12 11:26:34 +01002554 /* Most common type of signal-interrupted syscall exit code.
2555 * The system call will be restarted with the same arguments
2556 * if SA_RESTART is set; otherwise, it will fail with EINTR.
2557 */
2558 tprints("= ? ERESTARTSYS (To be restarted if SA_RESTART is set)");
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002559 break;
2560 case ERESTARTNOINTR:
Denys Vlasenkofe585652012-01-12 11:26:34 +01002561 /* Rare. For example, fork() returns this if interrupted.
2562 * SA_RESTART is ignored (assumed set): the restart is unconditional.
2563 */
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002564 tprints("= ? ERESTARTNOINTR (To be restarted)");
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002565 break;
2566 case ERESTARTNOHAND:
Denys Vlasenkofe585652012-01-12 11:26:34 +01002567 /* pause(), rt_sigsuspend() etc use this code.
2568 * SA_RESTART is ignored (assumed not set):
2569 * syscall won't restart (will return EINTR instead)
Denys Vlasenko30c03232013-02-19 16:59:26 +01002570 * even after signal with SA_RESTART set. However,
2571 * after SIG_IGN or SIG_DFL signal it will restart
2572 * (thus the name "restart only if has no handler").
Denys Vlasenkofe585652012-01-12 11:26:34 +01002573 */
Denys Vlasenkoaba62922013-03-05 16:56:35 +01002574 tprints("= ? ERESTARTNOHAND (To be restarted if no handler)");
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002575 break;
2576 case ERESTART_RESTARTBLOCK:
Denys Vlasenkofe585652012-01-12 11:26:34 +01002577 /* Syscalls like nanosleep(), poll() which can't be
2578 * restarted with their original arguments use this
2579 * code. Kernel will execute restart_syscall() instead,
2580 * which changes arguments before restarting syscall.
2581 * SA_RESTART is ignored (assumed not set) similarly
2582 * to ERESTARTNOHAND. (Kernel can't honor SA_RESTART
2583 * since restart data is saved in "restart block"
2584 * in task struct, and if signal handler uses a syscall
2585 * which in turn saves another such restart block,
2586 * old data is lost and restart becomes impossible)
2587 */
2588 tprints("= ? ERESTART_RESTARTBLOCK (Interrupted by signal)");
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002589 break;
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002590 default:
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002591 if (u_error < 0)
Denys Vlasenkoa7949742011-08-21 17:26:55 +02002592 tprintf("= -1 E??? (errno %ld)", u_error);
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002593 else if (u_error < nerrnos)
Denys Vlasenkoa7949742011-08-21 17:26:55 +02002594 tprintf("= -1 %s (%s)", errnoent[u_error],
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002595 strerror(u_error));
2596 else
Denys Vlasenkoa7949742011-08-21 17:26:55 +02002597 tprintf("= -1 ERRNO_%ld (%s)", u_error,
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002598 strerror(u_error));
2599 break;
2600 }
2601 if ((sys_res & RVAL_STR) && tcp->auxstr)
2602 tprintf(" (%s)", tcp->auxstr);
2603 }
2604 else {
2605 if (sys_res & RVAL_NONE)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002606 tprints("= ?");
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002607 else {
2608 switch (sys_res & RVAL_MASK) {
2609 case RVAL_HEX:
2610 tprintf("= %#lx", tcp->u_rval);
2611 break;
2612 case RVAL_OCTAL:
2613 tprintf("= %#lo", tcp->u_rval);
2614 break;
2615 case RVAL_UDECIMAL:
2616 tprintf("= %lu", tcp->u_rval);
2617 break;
2618 case RVAL_DECIMAL:
2619 tprintf("= %ld", tcp->u_rval);
2620 break;
H.J. Ludd0130b2012-04-16 12:16:45 +02002621#if defined(LINUX_MIPSN32) || defined(X32)
2622 /*
2623 case RVAL_LHEX:
2624 tprintf("= %#llx", tcp->u_lrval);
2625 break;
2626 case RVAL_LOCTAL:
2627 tprintf("= %#llo", tcp->u_lrval);
2628 break;
2629 */
2630 case RVAL_LUDECIMAL:
2631 tprintf("= %llu", tcp->u_lrval);
2632 break;
2633 /*
2634 case RVAL_LDECIMAL:
2635 tprintf("= %lld", tcp->u_lrval);
2636 break;
2637 */
2638#endif
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002639 default:
2640 fprintf(stderr,
2641 "invalid rval format\n");
2642 break;
2643 }
2644 }
2645 if ((sys_res & RVAL_STR) && tcp->auxstr)
2646 tprintf(" (%s)", tcp->auxstr);
2647 }
Denys Vlasenkoa50d2a82012-03-15 12:49:52 +01002648 if (Tflag) {
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002649 tv_sub(&tv, &tv, &tcp->etime);
2650 tprintf(" <%ld.%06ld>",
2651 (long) tv.tv_sec, (long) tv.tv_usec);
2652 }
Denys Vlasenko000b6012012-01-28 01:25:03 +01002653 tprints("\n");
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002654 dumpio(tcp);
Denys Vlasenko7de265d2012-03-13 11:44:31 +01002655 line_ended();
2656
Denys Vlasenko3b738812011-08-22 02:06:35 +02002657 ret:
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002658 tcp->flags &= ~TCB_INSYSCALL;
2659 return 0;
2660}
2661
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002662int
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00002663trace_syscall(struct tcb *tcp)
2664{
2665 return exiting(tcp) ?
2666 trace_syscall_exiting(tcp) : trace_syscall_entering(tcp);
2667}