blob: 132531910f1d68bc34cd0cb9b6994e5ccf9ab134 [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 Akkermanccef6372002-05-01 16:39:22 +00009 * Copyright (c) 2000 PocketPenguins Inc. Linux for Hitachi SuperH
10 * port by Greg Banks <gbanks@pocketpenguins.com>
Wichert Akkerman4dc8a2a1999-12-23 14:20:14 +000011 *
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000012 * All rights reserved.
13 *
14 * Redistribution and use in source and binary forms, with or without
15 * modification, are permitted provided that the following conditions
16 * are met:
17 * 1. Redistributions of source code must retain the above copyright
18 * notice, this list of conditions and the following disclaimer.
19 * 2. Redistributions in binary form must reproduce the above copyright
20 * notice, this list of conditions and the following disclaimer in the
21 * documentation and/or other materials provided with the distribution.
22 * 3. The name of the author may not be used to endorse or promote products
23 * derived from this software without specific prior written permission.
24 *
25 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
26 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
27 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
28 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
29 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
30 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
31 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
32 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
33 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
34 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000035 */
36
37#include "defs.h"
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000038#include <fcntl.h>
39#include <sys/stat.h>
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000040#include <sys/wait.h>
41#include <sys/resource.h>
42#include <sys/utsname.h>
43#include <sys/user.h>
Dmitry V. Levinc41808b2013-03-18 00:52:29 +000044#ifdef HAVE_ELF_H
45# include <elf.h>
46#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000047
Wichert Akkerman36915a11999-07-13 15:45:02 +000048#ifdef HAVE_SYS_REG_H
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000049# include <sys/reg.h>
Wichert Akkerman15dea971999-10-06 13:06:34 +000050#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000051
Roland McGrath5bd7cf82003-01-24 04:31:18 +000052#ifdef HAVE_LINUX_PTRACE_H
Denys Vlasenko84703742012-02-25 02:38:52 +010053# undef PTRACE_SYSCALL
Roland McGrathfb1bc072004-03-01 21:29:24 +000054# ifdef HAVE_STRUCT_IA64_FPREG
55# define ia64_fpreg XXX_ia64_fpreg
56# endif
57# ifdef HAVE_STRUCT_PT_ALL_USER_REGS
58# define pt_all_user_regs XXX_pt_all_user_regs
59# endif
Ali Polatel0b4060f2013-09-24 20:04:32 +030060# ifdef HAVE_STRUCT_PTRACE_PEEKSIGINFO_ARGS
61# define ptrace_peeksiginfo_args XXX_ptrace_peeksiginfo_args
62# endif
Denys Vlasenko84703742012-02-25 02:38:52 +010063# include <linux/ptrace.h>
Ali Polatel0b4060f2013-09-24 20:04:32 +030064# undef ptrace_peeksiginfo_args
Roland McGrathfb1bc072004-03-01 21:29:24 +000065# undef ia64_fpreg
66# undef pt_all_user_regs
Roland McGrath5bd7cf82003-01-24 04:31:18 +000067#endif
68
Denys Vlasenko84703742012-02-25 02:38:52 +010069#if defined(SPARC64)
Roland McGrath6d1a65c2004-07-12 07:44:08 +000070# define r_pc r_tpc
71# undef PTRACE_GETREGS
72# define PTRACE_GETREGS PTRACE_GETREGS64
73# undef PTRACE_SETREGS
74# define PTRACE_SETREGS PTRACE_SETREGS64
Denys Vlasenko84703742012-02-25 02:38:52 +010075#endif
Roland McGrath6d1a65c2004-07-12 07:44:08 +000076
Roland McGrath5a223472002-12-15 23:58:26 +000077#ifdef HAVE_LINUX_FUTEX_H
Dmitry V. Levine5e60852009-12-31 22:50:49 +000078# include <linux/futex.h>
Roland McGrath5a223472002-12-15 23:58:26 +000079#endif
Denys Vlasenko84703742012-02-25 02:38:52 +010080#ifndef FUTEX_WAIT
81# define FUTEX_WAIT 0
82#endif
83#ifndef FUTEX_WAKE
84# define FUTEX_WAKE 1
85#endif
86#ifndef FUTEX_FD
87# define FUTEX_FD 2
88#endif
89#ifndef FUTEX_REQUEUE
90# define FUTEX_REQUEUE 3
91#endif
Wichert Akkermanfaf72222000-02-19 23:59:03 +000092
Roland McGrath279d3782004-03-01 20:27:37 +000093#include <sched.h>
Wichert Akkerman2e2553a1999-05-09 00:29:58 +000094#include <asm/posix_types.h>
95#undef GETGROUPS_T
96#define GETGROUPS_T __kernel_gid_t
Roland McGrath83bd47a2003-11-13 22:32:26 +000097#undef GETGROUPS32_T
98#define GETGROUPS32_T __kernel_gid32_t
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000099
Denys Vlasenko84703742012-02-25 02:38:52 +0100100#if defined(IA64)
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +0000101# include <asm/ptrace_offsets.h>
102# include <asm/rse.h>
103#endif
104
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000105#ifdef HAVE_PRCTL
Dmitry V. Levine5e60852009-12-31 22:50:49 +0000106# include <sys/prctl.h>
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000107
Roland McGrathd9f816f2004-09-04 03:39:20 +0000108static const struct xlat prctl_options[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000109#ifdef PR_MAXPROCS
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +0000110 XLAT(PR_MAXPROCS),
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000111#endif
112#ifdef PR_ISBLOCKED
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +0000113 XLAT(PR_ISBLOCKED),
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000114#endif
115#ifdef PR_SETSTACKSIZE
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +0000116 XLAT(PR_SETSTACKSIZE),
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000117#endif
118#ifdef PR_GETSTACKSIZE
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +0000119 XLAT(PR_GETSTACKSIZE),
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000120#endif
121#ifdef PR_MAXPPROCS
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +0000122 XLAT(PR_MAXPPROCS),
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000123#endif
124#ifdef PR_UNBLKONEXEC
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +0000125 XLAT(PR_UNBLKONEXEC),
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000126#endif
127#ifdef PR_ATOMICSIM
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +0000128 XLAT(PR_ATOMICSIM),
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000129#endif
130#ifdef PR_SETEXITSIG
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +0000131 XLAT(PR_SETEXITSIG),
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000132#endif
133#ifdef PR_RESIDENT
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +0000134 XLAT(PR_RESIDENT),
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000135#endif
136#ifdef PR_ATTACHADDR
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +0000137 XLAT(PR_ATTACHADDR),
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000138#endif
139#ifdef PR_DETACHADDR
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +0000140 XLAT(PR_DETACHADDR),
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000141#endif
142#ifdef PR_TERMCHILD
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +0000143 XLAT(PR_TERMCHILD),
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000144#endif
145#ifdef PR_GETSHMASK
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +0000146 XLAT(PR_GETSHMASK),
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000147#endif
148#ifdef PR_GETNSHARE
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +0000149 XLAT(PR_GETNSHARE),
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000150#endif
Wichert Akkerman8829a551999-06-11 13:18:40 +0000151#ifdef PR_COREPID
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +0000152 XLAT(PR_COREPID),
Wichert Akkerman8829a551999-06-11 13:18:40 +0000153#endif
154#ifdef PR_ATTACHADDRPERM
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +0000155 XLAT(PR_ATTACHADDRPERM),
Wichert Akkerman8829a551999-06-11 13:18:40 +0000156#endif
157#ifdef PR_PTHREADEXIT
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +0000158 XLAT(PR_PTHREADEXIT),
Wichert Akkerman8829a551999-06-11 13:18:40 +0000159#endif
Dmitry V. Levinb6593de2013-03-27 14:57:39 +0000160
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +0000161#ifdef PR_SET_PDEATHSIG
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +0000162 XLAT(PR_SET_PDEATHSIG),
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +0000163#endif
164#ifdef PR_GET_PDEATHSIG
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +0000165 XLAT(PR_GET_PDEATHSIG),
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +0000166#endif
Dmitry V. Levinf02cf212008-09-03 00:54:40 +0000167#ifdef PR_GET_DUMPABLE
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +0000168 XLAT(PR_GET_DUMPABLE),
Dmitry V. Levinf02cf212008-09-03 00:54:40 +0000169#endif
170#ifdef PR_SET_DUMPABLE
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +0000171 XLAT(PR_SET_DUMPABLE),
Dmitry V. Levinf02cf212008-09-03 00:54:40 +0000172#endif
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +0000173#ifdef PR_GET_UNALIGN
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +0000174 XLAT(PR_GET_UNALIGN),
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +0000175#endif
176#ifdef PR_SET_UNALIGN
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +0000177 XLAT(PR_SET_UNALIGN),
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +0000178#endif
179#ifdef PR_GET_KEEPCAPS
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +0000180 XLAT(PR_GET_KEEPCAPS),
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +0000181#endif
182#ifdef PR_SET_KEEPCAPS
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +0000183 XLAT(PR_SET_KEEPCAPS),
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +0000184#endif
Roland McGrathe5039fb2007-11-03 23:58:07 +0000185#ifdef PR_GET_FPEMU
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +0000186 XLAT(PR_GET_FPEMU),
Roland McGrathe5039fb2007-11-03 23:58:07 +0000187#endif
188#ifdef PR_SET_FPEMU
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +0000189 XLAT(PR_SET_FPEMU),
Roland McGrathe5039fb2007-11-03 23:58:07 +0000190#endif
191#ifdef PR_GET_FPEXC
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +0000192 XLAT(PR_GET_FPEXC),
Roland McGrathe5039fb2007-11-03 23:58:07 +0000193#endif
194#ifdef PR_SET_FPEXC
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +0000195 XLAT(PR_SET_FPEXC),
Roland McGrathe5039fb2007-11-03 23:58:07 +0000196#endif
197#ifdef PR_GET_TIMING
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +0000198 XLAT(PR_GET_TIMING),
Roland McGrathe5039fb2007-11-03 23:58:07 +0000199#endif
200#ifdef PR_SET_TIMING
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +0000201 XLAT(PR_SET_TIMING),
Roland McGrathe5039fb2007-11-03 23:58:07 +0000202#endif
203#ifdef PR_SET_NAME
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +0000204 XLAT(PR_SET_NAME),
Roland McGrathe5039fb2007-11-03 23:58:07 +0000205#endif
206#ifdef PR_GET_NAME
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +0000207 XLAT(PR_GET_NAME),
Roland McGrathe5039fb2007-11-03 23:58:07 +0000208#endif
209#ifdef PR_GET_ENDIAN
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +0000210 XLAT(PR_GET_ENDIAN),
Roland McGrathe5039fb2007-11-03 23:58:07 +0000211#endif
212#ifdef PR_SET_ENDIAN
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +0000213 XLAT(PR_SET_ENDIAN),
Roland McGrathe5039fb2007-11-03 23:58:07 +0000214#endif
215#ifdef PR_GET_SECCOMP
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +0000216 XLAT(PR_GET_SECCOMP),
Roland McGrathe5039fb2007-11-03 23:58:07 +0000217#endif
218#ifdef PR_SET_SECCOMP
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +0000219 XLAT(PR_SET_SECCOMP),
Roland McGrathe5039fb2007-11-03 23:58:07 +0000220#endif
Dmitry V. Levinb6593de2013-03-27 14:57:39 +0000221#ifdef PR_CAPBSET_READ
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +0000222 XLAT(PR_CAPBSET_READ),
Dmitry V. Levinb6593de2013-03-27 14:57:39 +0000223#endif
224#ifdef PR_CAPBSET_DROP
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +0000225 XLAT(PR_CAPBSET_DROP),
Dmitry V. Levinb6593de2013-03-27 14:57:39 +0000226#endif
Dmitry V. Levin8dd31dd2008-11-11 00:25:22 +0000227#ifdef PR_GET_TSC
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +0000228 XLAT(PR_GET_TSC),
Dmitry V. Levin8dd31dd2008-11-11 00:25:22 +0000229#endif
230#ifdef PR_SET_TSC
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +0000231 XLAT(PR_SET_TSC),
Dmitry V. Levin8dd31dd2008-11-11 00:25:22 +0000232#endif
233#ifdef PR_GET_SECUREBITS
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +0000234 XLAT(PR_GET_SECUREBITS),
Dmitry V. Levin8dd31dd2008-11-11 00:25:22 +0000235#endif
236#ifdef PR_SET_SECUREBITS
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +0000237 XLAT(PR_SET_SECUREBITS),
Dmitry V. Levin8dd31dd2008-11-11 00:25:22 +0000238#endif
Dmitry V. Levinb6593de2013-03-27 14:57:39 +0000239#ifdef PR_SET_TIMERSLACK
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +0000240 XLAT(PR_SET_TIMERSLACK),
Dmitry V. Levinb6593de2013-03-27 14:57:39 +0000241#endif
242#ifdef PR_GET_TIMERSLACK
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +0000243 XLAT(PR_GET_TIMERSLACK),
Dmitry V. Levinb6593de2013-03-27 14:57:39 +0000244#endif
245#ifdef PR_TASK_PERF_EVENTS_DISABLE
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +0000246 XLAT(PR_TASK_PERF_EVENTS_DISABLE),
Dmitry V. Levinb6593de2013-03-27 14:57:39 +0000247#endif
248#ifdef PR_TASK_PERF_EVENTS_ENABLE
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +0000249 XLAT(PR_TASK_PERF_EVENTS_ENABLE),
Dmitry V. Levinb6593de2013-03-27 14:57:39 +0000250#endif
251#ifdef PR_MCE_KILL
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +0000252 XLAT(PR_MCE_KILL),
Dmitry V. Levinb6593de2013-03-27 14:57:39 +0000253#endif
254#ifdef PR_MCE_KILL_GET
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +0000255 XLAT(PR_MCE_KILL_GET),
Dmitry V. Levinb6593de2013-03-27 14:57:39 +0000256#endif
257#ifdef PR_SET_MM
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +0000258 XLAT(PR_SET_MM),
Dmitry V. Levinb6593de2013-03-27 14:57:39 +0000259#endif
Dmitry V. Levin7a0fb382013-05-13 18:34:15 +0000260#ifdef PR_SET_PTRACER
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +0000261 XLAT(PR_SET_PTRACER),
Dmitry V. Levin7a0fb382013-05-13 18:34:15 +0000262#endif
Dmitry V. Levinb6593de2013-03-27 14:57:39 +0000263#ifdef PR_SET_CHILD_SUBREAPER
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +0000264 XLAT(PR_SET_CHILD_SUBREAPER),
Dmitry V. Levinb6593de2013-03-27 14:57:39 +0000265#endif
266#ifdef PR_GET_CHILD_SUBREAPER
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +0000267 XLAT(PR_GET_CHILD_SUBREAPER),
Dmitry V. Levinb6593de2013-03-27 14:57:39 +0000268#endif
269#ifdef PR_SET_NO_NEW_PRIVS
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +0000270 XLAT(PR_SET_NO_NEW_PRIVS),
Dmitry V. Levinb6593de2013-03-27 14:57:39 +0000271#endif
272#ifdef PR_GET_NO_NEW_PRIVS
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +0000273 XLAT(PR_GET_NO_NEW_PRIVS),
Dmitry V. Levinb6593de2013-03-27 14:57:39 +0000274#endif
275#ifdef PR_GET_TID_ADDRESS
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +0000276 XLAT(PR_GET_TID_ADDRESS),
Dmitry V. Levinb6593de2013-03-27 14:57:39 +0000277#endif
Dmitry V. Levin59452732014-02-05 02:20:51 +0000278 XLAT_END
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000279};
280
Roland McGratha4d48532005-06-08 20:45:28 +0000281static const char *
Denys Vlasenko12014262011-05-30 14:00:14 +0200282unalignctl_string(unsigned int ctl)
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +0000283{
Denys Vlasenkob237b1b2012-02-27 13:56:59 +0100284 static char buf[sizeof(int)*2 + 2];
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +0000285
286 switch (ctl) {
287#ifdef PR_UNALIGN_NOPRINT
Denys Vlasenkob237b1b2012-02-27 13:56:59 +0100288 case PR_UNALIGN_NOPRINT:
289 return "NOPRINT";
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +0000290#endif
291#ifdef PR_UNALIGN_SIGBUS
Denys Vlasenkob237b1b2012-02-27 13:56:59 +0100292 case PR_UNALIGN_SIGBUS:
293 return "SIGBUS";
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +0000294#endif
Denys Vlasenkob237b1b2012-02-27 13:56:59 +0100295 default:
296 break;
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +0000297 }
298 sprintf(buf, "%x", ctl);
299 return buf;
300}
301
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000302int
Denys Vlasenko12014262011-05-30 14:00:14 +0200303sys_prctl(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000304{
305 int i;
306
307 if (entering(tcp)) {
308 printxval(prctl_options, tcp->u_arg[0], "PR_???");
309 switch (tcp->u_arg[0]) {
310#ifdef PR_GETNSHARE
311 case PR_GETNSHARE:
312 break;
313#endif
Dmitry V. Levin50f60132008-09-03 00:56:52 +0000314#ifdef PR_SET_PDEATHSIG
315 case PR_SET_PDEATHSIG:
316 tprintf(", %lu", tcp->u_arg[1]);
317 break;
318#endif
319#ifdef PR_GET_PDEATHSIG
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +0000320 case PR_GET_PDEATHSIG:
321 break;
322#endif
Dmitry V. Levin50f60132008-09-03 00:56:52 +0000323#ifdef PR_SET_DUMPABLE
324 case PR_SET_DUMPABLE:
325 tprintf(", %lu", tcp->u_arg[1]);
326 break;
327#endif
328#ifdef PR_GET_DUMPABLE
329 case PR_GET_DUMPABLE:
330 break;
331#endif
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +0000332#ifdef PR_SET_UNALIGN
333 case PR_SET_UNALIGN:
334 tprintf(", %s", unalignctl_string(tcp->u_arg[1]));
335 break;
336#endif
337#ifdef PR_GET_UNALIGN
338 case PR_GET_UNALIGN:
339 tprintf(", %#lx", tcp->u_arg[1]);
340 break;
341#endif
Dmitry V. Levin50f60132008-09-03 00:56:52 +0000342#ifdef PR_SET_KEEPCAPS
343 case PR_SET_KEEPCAPS:
344 tprintf(", %lu", tcp->u_arg[1]);
345 break;
346#endif
347#ifdef PR_GET_KEEPCAPS
348 case PR_GET_KEEPCAPS:
349 break;
350#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000351 default:
Denys Vlasenko74ec14f2013-02-21 16:13:47 +0100352 for (i = 1; i < tcp->s_ent->nargs; i++)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000353 tprintf(", %#lx", tcp->u_arg[i]);
354 break;
355 }
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +0000356 } else {
357 switch (tcp->u_arg[0]) {
358#ifdef PR_GET_PDEATHSIG
359 case PR_GET_PDEATHSIG:
Dmitry V. Levin50f60132008-09-03 00:56:52 +0000360 if (umove(tcp, tcp->u_arg[1], &i) < 0)
361 tprintf(", %#lx", tcp->u_arg[1]);
362 else
363 tprintf(", {%u}", i);
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +0000364 break;
365#endif
Dmitry V. Levin50f60132008-09-03 00:56:52 +0000366#ifdef PR_GET_DUMPABLE
367 case PR_GET_DUMPABLE:
368 return RVAL_UDECIMAL;
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +0000369#endif
370#ifdef PR_GET_UNALIGN
371 case PR_GET_UNALIGN:
Dmitry V. Levin50f60132008-09-03 00:56:52 +0000372 if (syserror(tcp) || umove(tcp, tcp->u_arg[1], &i) < 0)
373 break;
374 tcp->auxstr = unalignctl_string(i);
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +0000375 return RVAL_STR;
Dmitry V. Levin50f60132008-09-03 00:56:52 +0000376#endif
377#ifdef PR_GET_KEEPCAPS
378 case PR_GET_KEEPCAPS:
379 return RVAL_UDECIMAL;
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +0000380#endif
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +0000381 default:
382 break;
383 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000384 }
385 return 0;
386}
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000387#endif /* HAVE_PRCTL */
388
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000389int
Denys Vlasenko12014262011-05-30 14:00:14 +0200390sys_sethostname(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000391{
392 if (entering(tcp)) {
393 printpathn(tcp, tcp->u_arg[0], tcp->u_arg[1]);
394 tprintf(", %lu", tcp->u_arg[1]);
395 }
396 return 0;
397}
398
Denys Vlasenko84703742012-02-25 02:38:52 +0100399#if defined(ALPHA)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000400int
Denys Vlasenko12014262011-05-30 14:00:14 +0200401sys_gethostname(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000402{
403 if (exiting(tcp)) {
404 if (syserror(tcp))
405 tprintf("%#lx", tcp->u_arg[0]);
406 else
407 printpath(tcp, tcp->u_arg[0]);
408 tprintf(", %lu", tcp->u_arg[1]);
409 }
410 return 0;
411}
Denys Vlasenko84703742012-02-25 02:38:52 +0100412#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000413
414int
Denys Vlasenko12014262011-05-30 14:00:14 +0200415sys_setdomainname(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000416{
417 if (entering(tcp)) {
418 printpathn(tcp, tcp->u_arg[0], tcp->u_arg[1]);
419 tprintf(", %lu", tcp->u_arg[1]);
420 }
421 return 0;
422}
423
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000424int
Denys Vlasenko12014262011-05-30 14:00:14 +0200425sys_exit(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000426{
427 if (exiting(tcp)) {
428 fprintf(stderr, "_exit returned!\n");
429 return -1;
430 }
431 /* special case: we stop tracing this process, finish line now */
432 tprintf("%ld) ", tcp->u_arg[0]);
Denys Vlasenko102ec492011-08-25 01:27:59 +0200433 tabto();
Denys Vlasenko000b6012012-01-28 01:25:03 +0100434 tprints("= ?\n");
Denys Vlasenko7de265d2012-03-13 11:44:31 +0100435 line_ended();
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000436 return 0;
437}
438
Wichert Akkerman7a0b6491999-12-23 15:08:17 +0000439/* defines copied from linux/sched.h since we can't include that
440 * ourselves (it conflicts with *lots* of libc includes)
441 */
442#define CSIGNAL 0x000000ff /* signal mask to be sent at exit */
443#define CLONE_VM 0x00000100 /* set if VM shared between processes */
444#define CLONE_FS 0x00000200 /* set if fs info shared between processes */
445#define CLONE_FILES 0x00000400 /* set if open files shared between processes */
446#define CLONE_SIGHAND 0x00000800 /* set if signal handlers shared */
Roland McGrath909875b2002-12-22 03:34:36 +0000447#define CLONE_IDLETASK 0x00001000 /* kernel-only flag */
Wichert Akkerman7a0b6491999-12-23 15:08:17 +0000448#define CLONE_PTRACE 0x00002000 /* set if we want to let tracing continue on the child too */
449#define CLONE_VFORK 0x00004000 /* set if the parent wants the child to wake it up on mm_release */
450#define CLONE_PARENT 0x00008000 /* set if we want to have the same parent as the cloner */
Roland McGrath909875b2002-12-22 03:34:36 +0000451#define CLONE_THREAD 0x00010000 /* Same thread group? */
452#define CLONE_NEWNS 0x00020000 /* New namespace group? */
453#define CLONE_SYSVSEM 0x00040000 /* share system V SEM_UNDO semantics */
454#define CLONE_SETTLS 0x00080000 /* create a new TLS for the child */
455#define CLONE_PARENT_SETTID 0x00100000 /* set the TID in the parent */
456#define CLONE_CHILD_CLEARTID 0x00200000 /* clear the TID in the child */
Roland McGrath909875b2002-12-22 03:34:36 +0000457#define CLONE_UNTRACED 0x00800000 /* set if the tracing process can't force CLONE_PTRACE on this clone */
458#define CLONE_CHILD_SETTID 0x01000000 /* set the TID in the child */
Dmitry V. Levine3d4b682010-12-03 17:19:51 +0000459#define CLONE_STOPPED 0x02000000 /* Start in stopped state */
460#define CLONE_NEWUTS 0x04000000 /* New utsname group? */
461#define CLONE_NEWIPC 0x08000000 /* New ipcs */
462#define CLONE_NEWUSER 0x10000000 /* New user namespace */
463#define CLONE_NEWPID 0x20000000 /* New pid namespace */
464#define CLONE_NEWNET 0x40000000 /* New network namespace */
465#define CLONE_IO 0x80000000 /* Clone io context */
Wichert Akkerman7a0b6491999-12-23 15:08:17 +0000466
Roland McGrathd9f816f2004-09-04 03:39:20 +0000467static const struct xlat clone_flags[] = {
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +0000468 XLAT(CLONE_VM),
469 XLAT(CLONE_FS),
470 XLAT(CLONE_FILES),
471 XLAT(CLONE_SIGHAND),
472 XLAT(CLONE_IDLETASK),
473 XLAT(CLONE_PTRACE),
474 XLAT(CLONE_VFORK),
475 XLAT(CLONE_PARENT),
476 XLAT(CLONE_THREAD),
477 XLAT(CLONE_NEWNS),
478 XLAT(CLONE_SYSVSEM),
479 XLAT(CLONE_SETTLS),
480 XLAT(CLONE_PARENT_SETTID),
481 XLAT(CLONE_CHILD_CLEARTID),
482 XLAT(CLONE_UNTRACED),
483 XLAT(CLONE_CHILD_SETTID),
484 XLAT(CLONE_STOPPED),
485 XLAT(CLONE_NEWUTS),
486 XLAT(CLONE_NEWIPC),
487 XLAT(CLONE_NEWUSER),
488 XLAT(CLONE_NEWPID),
489 XLAT(CLONE_NEWNET),
490 XLAT(CLONE_IO),
Dmitry V. Levin59452732014-02-05 02:20:51 +0000491 XLAT_END
Wichert Akkerman7a0b6491999-12-23 15:08:17 +0000492};
493
Dmitry V. Levinf94e8472014-04-09 12:30:38 +0000494#if defined I386 || defined X86_64 || defined X32
Dmitry V. Levin99a05442014-04-10 14:10:17 +0000495extern void print_user_desc(struct tcb *, long);
Dmitry V. Levinf94e8472014-04-09 12:30:38 +0000496#endif /* I386 || X86_64 || X32 */
Roland McGrath909875b2002-12-22 03:34:36 +0000497
Denys Vlasenkoa6d91de2012-03-16 12:02:22 +0100498#if defined IA64
499# define ARG_FLAGS 0
500# define ARG_STACK 1
501# define ARG_STACKSIZE (tcp->scno == SYS_clone2 ? 2 : -1)
502# define ARG_PTID (tcp->scno == SYS_clone2 ? 3 : 2)
503# define ARG_CTID (tcp->scno == SYS_clone2 ? 4 : 3)
504# define ARG_TLS (tcp->scno == SYS_clone2 ? 5 : 4)
505#elif defined S390 || defined S390X || defined CRISV10 || defined CRISV32
506# define ARG_STACK 0
507# define ARG_FLAGS 1
508# define ARG_PTID 2
509# define ARG_CTID 3
510# define ARG_TLS 4
Dmitry V. Levin2c4fb252014-04-09 12:34:58 +0000511#elif defined X86_64 || defined X32
Elliott Hughesb5633252014-04-05 11:56:17 -0700512/* x86 personality processes have the last two arguments flipped. */
513# define ARG_FLAGS 0
514# define ARG_STACK 1
515# define ARG_PTID 2
516# define ARG_CTID ((current_personality != 1) ? 3 : 4)
517# define ARG_TLS ((current_personality != 1) ? 4 : 3)
Dmitry V. Levin2c4fb252014-04-09 12:34:58 +0000518#elif defined ALPHA || defined TILE || defined OR1K
Denys Vlasenkoa6d91de2012-03-16 12:02:22 +0100519# define ARG_FLAGS 0
520# define ARG_STACK 1
521# define ARG_PTID 2
522# define ARG_CTID 3
523# define ARG_TLS 4
524#else
525# define ARG_FLAGS 0
526# define ARG_STACK 1
527# define ARG_PTID 2
528# define ARG_TLS 3
529# define ARG_CTID 4
530#endif
Roland McGrath9677b3a2003-03-12 09:54:36 +0000531
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +0000532int
Denys Vlasenko12014262011-05-30 14:00:14 +0200533sys_clone(struct tcb *tcp)
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +0000534{
535 if (exiting(tcp)) {
Wang Chaocbdd1902010-09-02 15:08:59 +0800536 const char *sep = "|";
Roland McGrath9677b3a2003-03-12 09:54:36 +0000537 unsigned long flags = tcp->u_arg[ARG_FLAGS];
538 tprintf("child_stack=%#lx, ", tcp->u_arg[ARG_STACK]);
Denys Vlasenkoa6d91de2012-03-16 12:02:22 +0100539#ifdef ARG_STACKSIZE
Roland McGrath9677b3a2003-03-12 09:54:36 +0000540 if (ARG_STACKSIZE != -1)
541 tprintf("stack_size=%#lx, ",
542 tcp->u_arg[ARG_STACKSIZE]);
Denys Vlasenkoa6d91de2012-03-16 12:02:22 +0100543#endif
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200544 tprints("flags=");
Wang Chaocbdd1902010-09-02 15:08:59 +0800545 if (!printflags(clone_flags, flags &~ CSIGNAL, NULL))
546 sep = "";
Roland McGrath984154d2003-05-23 01:08:42 +0000547 if ((flags & CSIGNAL) != 0)
Wang Chaocbdd1902010-09-02 15:08:59 +0800548 tprintf("%s%s", sep, signame(flags & CSIGNAL));
Roland McGrathb4968be2003-01-20 09:04:33 +0000549 if ((flags & (CLONE_PARENT_SETTID|CLONE_CHILD_SETTID
Roland McGrath9677b3a2003-03-12 09:54:36 +0000550 |CLONE_CHILD_CLEARTID|CLONE_SETTLS)) == 0)
Roland McGrath909875b2002-12-22 03:34:36 +0000551 return 0;
Roland McGrath6f67a982003-03-21 07:33:15 +0000552 if (flags & CLONE_PARENT_SETTID)
553 tprintf(", parent_tidptr=%#lx", tcp->u_arg[ARG_PTID]);
Roland McGrathb4968be2003-01-20 09:04:33 +0000554 if (flags & CLONE_SETTLS) {
Dmitry V. Levinf94e8472014-04-09 12:30:38 +0000555#if defined I386 || defined X86_64 || defined X32
Elliott Hughes44655a42014-04-05 11:56:17 -0700556# ifndef I386
557 if (current_personality == 1)
558# endif
559 {
Dmitry V. Levin99a05442014-04-10 14:10:17 +0000560 tprints(", tls=");
561 print_user_desc(tcp, tcp->u_arg[ARG_TLS]);
Roland McGrath909875b2002-12-22 03:34:36 +0000562 }
Dmitry V. Levin99a05442014-04-10 14:10:17 +0000563# ifndef I386
Roland McGrath909875b2002-12-22 03:34:36 +0000564 else
Dmitry V. Levin99a05442014-04-10 14:10:17 +0000565# endif
Dmitry V. Levinf94e8472014-04-09 12:30:38 +0000566#endif /* I386 || X86_64 || X32 */
Roland McGrath43f2c842003-03-12 09:58:14 +0000567 tprintf(", tls=%#lx", tcp->u_arg[ARG_TLS]);
Roland McGrath909875b2002-12-22 03:34:36 +0000568 }
Roland McGrath9677b3a2003-03-12 09:54:36 +0000569 if (flags & (CLONE_CHILD_SETTID|CLONE_CHILD_CLEARTID))
570 tprintf(", child_tidptr=%#lx", tcp->u_arg[ARG_CTID]);
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +0000571 }
Denys Vlasenkod0830162013-06-28 18:57:27 +0200572 /* TODO on syscall entry:
573 * We can clear CLONE_PTRACE here since it is an ancient hack
574 * to allow us to catch children, and we use another hack for that.
575 * But CLONE_PTRACE can conceivably be used by malicious programs
576 * to subvert us. By clearing this bit, we can defend against it:
577 * in untraced execution, CLONE_PTRACE should have no effect.
578 *
579 * We can also clear CLONE_UNTRACED, since it allows to start
580 * children outside of our control. At the moment
581 * I'm trying to figure out whether there is a *legitimate*
582 * use of this flag which we should respect.
583 */
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +0000584 return 0;
585}
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000586
587int
588sys_unshare(struct tcb *tcp)
589{
590 if (entering(tcp))
591 printflags(clone_flags, tcp->u_arg[0], "CLONE_???");
592 return 0;
593}
Wichert Akkerman7a0b6491999-12-23 15:08:17 +0000594
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000595int
Denys Vlasenko081533c2012-03-17 02:17:51 +0100596sys_fork(struct tcb *tcp)
597{
598 if (exiting(tcp))
599 return RVAL_UDECIMAL;
600 return 0;
601}
602
Dmitry V. Levin50a218d2011-01-18 17:36:20 +0000603int sys_getuid(struct tcb *tcp)
604{
605 if (exiting(tcp))
606 tcp->u_rval = (uid_t) tcp->u_rval;
607 return RVAL_UDECIMAL;
608}
609
610int sys_setfsuid(struct tcb *tcp)
611{
612 if (entering(tcp))
613 tprintf("%u", (uid_t) tcp->u_arg[0]);
614 else
615 tcp->u_rval = (uid_t) tcp->u_rval;
616 return RVAL_UDECIMAL;
617}
618
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000619int
Denys Vlasenko12014262011-05-30 14:00:14 +0200620sys_setuid(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000621{
622 if (entering(tcp)) {
623 tprintf("%u", (uid_t) tcp->u_arg[0]);
624 }
625 return 0;
626}
627
628int
Denys Vlasenko1d632462009-04-14 12:51:00 +0000629sys_getresuid(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000630{
631 if (exiting(tcp)) {
Wichert Akkerman2e2553a1999-05-09 00:29:58 +0000632 __kernel_uid_t uid;
633 if (syserror(tcp))
634 tprintf("%#lx, %#lx, %#lx", tcp->u_arg[0],
635 tcp->u_arg[1], tcp->u_arg[2]);
636 else {
637 if (umove(tcp, tcp->u_arg[0], &uid) < 0)
638 tprintf("%#lx, ", tcp->u_arg[0]);
639 else
Roland McGrath83bd47a2003-11-13 22:32:26 +0000640 tprintf("[%lu], ", (unsigned long) uid);
Roland McGrath9bd6b422003-02-24 07:13:51 +0000641 if (umove(tcp, tcp->u_arg[1], &uid) < 0)
642 tprintf("%#lx, ", tcp->u_arg[1]);
Wichert Akkerman2e2553a1999-05-09 00:29:58 +0000643 else
Roland McGrath83bd47a2003-11-13 22:32:26 +0000644 tprintf("[%lu], ", (unsigned long) uid);
Roland McGrath9bd6b422003-02-24 07:13:51 +0000645 if (umove(tcp, tcp->u_arg[2], &uid) < 0)
646 tprintf("%#lx", tcp->u_arg[2]);
Wichert Akkerman2e2553a1999-05-09 00:29:58 +0000647 else
Roland McGrath83bd47a2003-11-13 22:32:26 +0000648 tprintf("[%lu]", (unsigned long) uid);
Wichert Akkerman2e2553a1999-05-09 00:29:58 +0000649 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000650 }
651 return 0;
652}
653
654int
Denys Vlasenko12014262011-05-30 14:00:14 +0200655sys_setreuid(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000656{
657 if (entering(tcp)) {
Roland McGrath83bd47a2003-11-13 22:32:26 +0000658 printuid("", tcp->u_arg[0]);
659 printuid(", ", tcp->u_arg[1]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000660 }
661 return 0;
662}
663
664int
Denys Vlasenko12014262011-05-30 14:00:14 +0200665sys_setresuid(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000666{
667 if (entering(tcp)) {
Roland McGrath83bd47a2003-11-13 22:32:26 +0000668 printuid("", tcp->u_arg[0]);
669 printuid(", ", tcp->u_arg[1]);
670 printuid(", ", tcp->u_arg[2]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000671 }
672 return 0;
673}
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000674
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000675int
Denys Vlasenko12014262011-05-30 14:00:14 +0200676sys_setgroups(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000677{
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000678 if (entering(tcp)) {
Roland McGrathaa524c82005-06-01 19:22:06 +0000679 unsigned long len, size, start, cur, end, abbrev_end;
680 GETGROUPS_T gid;
681 int failed = 0;
682
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000683 len = tcp->u_arg[0];
Roland McGrathaa524c82005-06-01 19:22:06 +0000684 tprintf("%lu, ", len);
685 if (len == 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200686 tprints("[]");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000687 return 0;
688 }
Roland McGrathaa524c82005-06-01 19:22:06 +0000689 start = tcp->u_arg[1];
690 if (start == 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200691 tprints("NULL");
Roland McGrathaa524c82005-06-01 19:22:06 +0000692 return 0;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000693 }
Roland McGrathaa524c82005-06-01 19:22:06 +0000694 size = len * sizeof(gid);
695 end = start + size;
696 if (!verbose(tcp) || size / sizeof(gid) != len || end < start) {
697 tprintf("%#lx", start);
698 return 0;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000699 }
Roland McGrathaa524c82005-06-01 19:22:06 +0000700 if (abbrev(tcp)) {
701 abbrev_end = start + max_strlen * sizeof(gid);
702 if (abbrev_end < start)
703 abbrev_end = end;
704 } else {
705 abbrev_end = end;
706 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200707 tprints("[");
Roland McGrathaa524c82005-06-01 19:22:06 +0000708 for (cur = start; cur < end; cur += sizeof(gid)) {
709 if (cur > start)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200710 tprints(", ");
Roland McGrathaa524c82005-06-01 19:22:06 +0000711 if (cur >= abbrev_end) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200712 tprints("...");
Roland McGrathaa524c82005-06-01 19:22:06 +0000713 break;
714 }
715 if (umoven(tcp, cur, sizeof(gid), (char *) &gid) < 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200716 tprints("?");
Roland McGrathaa524c82005-06-01 19:22:06 +0000717 failed = 1;
718 break;
719 }
720 tprintf("%lu", (unsigned long) gid);
721 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200722 tprints("]");
Roland McGrathaa524c82005-06-01 19:22:06 +0000723 if (failed)
724 tprintf(" %#lx", tcp->u_arg[1]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000725 }
726 return 0;
727}
728
729int
Denys Vlasenko12014262011-05-30 14:00:14 +0200730sys_getgroups(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000731{
Roland McGrathaa524c82005-06-01 19:22:06 +0000732 unsigned long len;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000733
734 if (entering(tcp)) {
735 len = tcp->u_arg[0];
Roland McGrathaa524c82005-06-01 19:22:06 +0000736 tprintf("%lu, ", len);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000737 } else {
Roland McGrathaa524c82005-06-01 19:22:06 +0000738 unsigned long size, start, cur, end, abbrev_end;
739 GETGROUPS_T gid;
740 int failed = 0;
741
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000742 len = tcp->u_rval;
Roland McGrathaa524c82005-06-01 19:22:06 +0000743 if (len == 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200744 tprints("[]");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000745 return 0;
746 }
Roland McGrathaa524c82005-06-01 19:22:06 +0000747 start = tcp->u_arg[1];
748 if (start == 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200749 tprints("NULL");
Roland McGrathaa524c82005-06-01 19:22:06 +0000750 return 0;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000751 }
Roland McGrathaa524c82005-06-01 19:22:06 +0000752 if (tcp->u_arg[0] == 0) {
753 tprintf("%#lx", start);
754 return 0;
755 }
756 size = len * sizeof(gid);
757 end = start + size;
758 if (!verbose(tcp) || tcp->u_arg[0] == 0 ||
759 size / sizeof(gid) != len || end < start) {
760 tprintf("%#lx", start);
761 return 0;
762 }
763 if (abbrev(tcp)) {
764 abbrev_end = start + max_strlen * sizeof(gid);
765 if (abbrev_end < start)
766 abbrev_end = end;
767 } else {
768 abbrev_end = end;
769 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200770 tprints("[");
Roland McGrathaa524c82005-06-01 19:22:06 +0000771 for (cur = start; cur < end; cur += sizeof(gid)) {
772 if (cur > start)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200773 tprints(", ");
Roland McGrathaa524c82005-06-01 19:22:06 +0000774 if (cur >= abbrev_end) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200775 tprints("...");
Roland McGrathaa524c82005-06-01 19:22:06 +0000776 break;
777 }
778 if (umoven(tcp, cur, sizeof(gid), (char *) &gid) < 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200779 tprints("?");
Roland McGrathaa524c82005-06-01 19:22:06 +0000780 failed = 1;
781 break;
782 }
783 tprintf("%lu", (unsigned long) gid);
784 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200785 tprints("]");
Roland McGrathaa524c82005-06-01 19:22:06 +0000786 if (failed)
787 tprintf(" %#lx", tcp->u_arg[1]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000788 }
789 return 0;
790}
791
Roland McGrath83bd47a2003-11-13 22:32:26 +0000792int
Denys Vlasenko12014262011-05-30 14:00:14 +0200793sys_setgroups32(struct tcb *tcp)
Roland McGrath83bd47a2003-11-13 22:32:26 +0000794{
Roland McGrath83bd47a2003-11-13 22:32:26 +0000795 if (entering(tcp)) {
Roland McGrathaa524c82005-06-01 19:22:06 +0000796 unsigned long len, size, start, cur, end, abbrev_end;
797 GETGROUPS32_T gid;
798 int failed = 0;
799
Roland McGrath83bd47a2003-11-13 22:32:26 +0000800 len = tcp->u_arg[0];
Roland McGrathaa524c82005-06-01 19:22:06 +0000801 tprintf("%lu, ", len);
802 if (len == 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200803 tprints("[]");
Roland McGrath83bd47a2003-11-13 22:32:26 +0000804 return 0;
805 }
Roland McGrathaa524c82005-06-01 19:22:06 +0000806 start = tcp->u_arg[1];
807 if (start == 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200808 tprints("NULL");
Roland McGrathaa524c82005-06-01 19:22:06 +0000809 return 0;
Roland McGrath83bd47a2003-11-13 22:32:26 +0000810 }
Roland McGrathaa524c82005-06-01 19:22:06 +0000811 size = len * sizeof(gid);
812 end = start + size;
813 if (!verbose(tcp) || size / sizeof(gid) != len || end < start) {
814 tprintf("%#lx", start);
815 return 0;
Roland McGrath83bd47a2003-11-13 22:32:26 +0000816 }
Roland McGrathaa524c82005-06-01 19:22:06 +0000817 if (abbrev(tcp)) {
818 abbrev_end = start + max_strlen * sizeof(gid);
819 if (abbrev_end < start)
820 abbrev_end = end;
821 } else {
822 abbrev_end = end;
823 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200824 tprints("[");
Roland McGrathaa524c82005-06-01 19:22:06 +0000825 for (cur = start; cur < end; cur += sizeof(gid)) {
826 if (cur > start)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200827 tprints(", ");
Roland McGrathaa524c82005-06-01 19:22:06 +0000828 if (cur >= abbrev_end) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200829 tprints("...");
Roland McGrathaa524c82005-06-01 19:22:06 +0000830 break;
831 }
832 if (umoven(tcp, cur, sizeof(gid), (char *) &gid) < 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200833 tprints("?");
Roland McGrathaa524c82005-06-01 19:22:06 +0000834 failed = 1;
835 break;
836 }
837 tprintf("%lu", (unsigned long) gid);
838 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200839 tprints("]");
Roland McGrathaa524c82005-06-01 19:22:06 +0000840 if (failed)
841 tprintf(" %#lx", tcp->u_arg[1]);
Roland McGrath83bd47a2003-11-13 22:32:26 +0000842 }
843 return 0;
844}
845
846int
Denys Vlasenko12014262011-05-30 14:00:14 +0200847sys_getgroups32(struct tcb *tcp)
Roland McGrath83bd47a2003-11-13 22:32:26 +0000848{
Roland McGrathaa524c82005-06-01 19:22:06 +0000849 unsigned long len;
Roland McGrath83bd47a2003-11-13 22:32:26 +0000850
851 if (entering(tcp)) {
852 len = tcp->u_arg[0];
Roland McGrathaa524c82005-06-01 19:22:06 +0000853 tprintf("%lu, ", len);
Roland McGrath83bd47a2003-11-13 22:32:26 +0000854 } else {
Roland McGrathaa524c82005-06-01 19:22:06 +0000855 unsigned long size, start, cur, end, abbrev_end;
856 GETGROUPS32_T gid;
857 int failed = 0;
858
Roland McGrath83bd47a2003-11-13 22:32:26 +0000859 len = tcp->u_rval;
Roland McGrathaa524c82005-06-01 19:22:06 +0000860 if (len == 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200861 tprints("[]");
Roland McGrath83bd47a2003-11-13 22:32:26 +0000862 return 0;
863 }
Roland McGrathaa524c82005-06-01 19:22:06 +0000864 start = tcp->u_arg[1];
865 if (start == 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200866 tprints("NULL");
Roland McGrathaa524c82005-06-01 19:22:06 +0000867 return 0;
Roland McGrath83bd47a2003-11-13 22:32:26 +0000868 }
Roland McGrathaa524c82005-06-01 19:22:06 +0000869 size = len * sizeof(gid);
870 end = start + size;
871 if (!verbose(tcp) || tcp->u_arg[0] == 0 ||
872 size / sizeof(gid) != len || end < start) {
873 tprintf("%#lx", start);
874 return 0;
875 }
876 if (abbrev(tcp)) {
877 abbrev_end = start + max_strlen * sizeof(gid);
878 if (abbrev_end < start)
879 abbrev_end = end;
880 } else {
881 abbrev_end = end;
882 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200883 tprints("[");
Roland McGrathaa524c82005-06-01 19:22:06 +0000884 for (cur = start; cur < end; cur += sizeof(gid)) {
885 if (cur > start)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200886 tprints(", ");
Roland McGrathaa524c82005-06-01 19:22:06 +0000887 if (cur >= abbrev_end) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200888 tprints("...");
Roland McGrathaa524c82005-06-01 19:22:06 +0000889 break;
890 }
891 if (umoven(tcp, cur, sizeof(gid), (char *) &gid) < 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200892 tprints("?");
Roland McGrathaa524c82005-06-01 19:22:06 +0000893 failed = 1;
894 break;
895 }
896 tprintf("%lu", (unsigned long) gid);
897 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200898 tprints("]");
Roland McGrathaa524c82005-06-01 19:22:06 +0000899 if (failed)
900 tprintf(" %#lx", tcp->u_arg[1]);
Roland McGrath83bd47a2003-11-13 22:32:26 +0000901 }
902 return 0;
903}
Roland McGrath83bd47a2003-11-13 22:32:26 +0000904
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000905static void
Dmitry V. Levin30145dd2010-09-06 22:08:24 +0000906printargv(struct tcb *tcp, long addr)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000907{
Roland McGrath85a3bc42007-08-02 02:13:05 +0000908 union {
Andreas Schwab99c85692009-08-28 19:36:20 +0200909 unsigned int p32;
910 unsigned long p64;
Roland McGrath85a3bc42007-08-02 02:13:05 +0000911 char data[sizeof(long)];
912 } cp;
Dmitry V. Levin30145dd2010-09-06 22:08:24 +0000913 const char *sep;
Roland McGrath85a3bc42007-08-02 02:13:05 +0000914 int n = 0;
Denys Vlasenko9fd4f962012-03-19 09:36:42 +0100915 unsigned wordsize = current_wordsize;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000916
Roland McGrath85a3bc42007-08-02 02:13:05 +0000917 cp.p64 = 1;
918 for (sep = ""; !abbrev(tcp) || n < max_strlen / 2; sep = ", ", ++n) {
Denys Vlasenko1945ccc2012-02-27 14:37:48 +0100919 if (umoven(tcp, addr, wordsize, cp.data) < 0) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000920 tprintf("%#lx", addr);
921 return;
922 }
Denys Vlasenko1945ccc2012-02-27 14:37:48 +0100923 if (wordsize == 4)
Roland McGrath85a3bc42007-08-02 02:13:05 +0000924 cp.p64 = cp.p32;
925 if (cp.p64 == 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000926 break;
Denys Vlasenko5940e652011-09-01 09:55:05 +0200927 tprints(sep);
Roland McGrath85a3bc42007-08-02 02:13:05 +0000928 printstr(tcp, cp.p64, -1);
Denys Vlasenko1945ccc2012-02-27 14:37:48 +0100929 addr += wordsize;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000930 }
Roland McGrath85a3bc42007-08-02 02:13:05 +0000931 if (cp.p64)
932 tprintf("%s...", sep);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000933}
934
935static void
Dmitry V. Levin30145dd2010-09-06 22:08:24 +0000936printargc(const char *fmt, struct tcb *tcp, long addr)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000937{
938 int count;
939 char *cp;
940
941 for (count = 0; umove(tcp, addr, &cp) >= 0 && cp != NULL; count++) {
942 addr += sizeof(char *);
943 }
944 tprintf(fmt, count, count == 1 ? "" : "s");
945}
946
Denys Vlasenko84703742012-02-25 02:38:52 +0100947#if defined(SPARC) || defined(SPARC64)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000948int
Dmitry V. Levine5e60852009-12-31 22:50:49 +0000949sys_execv(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000950{
951 if (entering(tcp)) {
952 printpath(tcp, tcp->u_arg[0]);
953 if (!verbose(tcp))
954 tprintf(", %#lx", tcp->u_arg[1]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000955 else {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200956 tprints(", [");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000957 printargv(tcp, tcp->u_arg[1]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200958 tprints("]");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000959 }
960 }
961 return 0;
962}
Denys Vlasenko84703742012-02-25 02:38:52 +0100963#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000964
965int
Dmitry V. Levine5e60852009-12-31 22:50:49 +0000966sys_execve(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000967{
968 if (entering(tcp)) {
969 printpath(tcp, tcp->u_arg[0]);
970 if (!verbose(tcp))
971 tprintf(", %#lx", tcp->u_arg[1]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000972 else {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200973 tprints(", [");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000974 printargv(tcp, tcp->u_arg[1]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200975 tprints("]");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000976 }
977 if (!verbose(tcp))
978 tprintf(", %#lx", tcp->u_arg[2]);
979 else if (abbrev(tcp))
980 printargc(", [/* %d var%s */]", tcp, tcp->u_arg[2]);
981 else {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200982 tprints(", [");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000983 printargv(tcp, tcp->u_arg[2]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200984 tprints("]");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000985 }
986 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000987 return 0;
988}
989
Roland McGrath7ec1d352002-12-17 04:50:44 +0000990#ifndef __WNOTHREAD
991#define __WNOTHREAD 0x20000000
992#endif
993#ifndef __WALL
994#define __WALL 0x40000000
995#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000996#ifndef __WCLONE
Roland McGrath7ec1d352002-12-17 04:50:44 +0000997#define __WCLONE 0x80000000
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000998#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000999
Roland McGrathd9f816f2004-09-04 03:39:20 +00001000static const struct xlat wait4_options[] = {
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001001 XLAT(WNOHANG),
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001002#ifndef WSTOPPED
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001003 XLAT(WUNTRACED),
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001004#endif
1005#ifdef WEXITED
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001006 XLAT(WEXITED),
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001007#endif
1008#ifdef WTRAPPED
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001009 XLAT(WTRAPPED),
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001010#endif
1011#ifdef WSTOPPED
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001012 XLAT(WSTOPPED),
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001013#endif
1014#ifdef WCONTINUED
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001015 XLAT(WCONTINUED),
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001016#endif
1017#ifdef WNOWAIT
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001018 XLAT(WNOWAIT),
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001019#endif
1020#ifdef __WCLONE
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001021 XLAT(__WCLONE),
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001022#endif
Roland McGrath7ec1d352002-12-17 04:50:44 +00001023#ifdef __WALL
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001024 XLAT(__WALL),
Roland McGrath7ec1d352002-12-17 04:50:44 +00001025#endif
1026#ifdef __WNOTHREAD
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001027 XLAT(__WNOTHREAD),
Roland McGrath7ec1d352002-12-17 04:50:44 +00001028#endif
Dmitry V. Levin59452732014-02-05 02:20:51 +00001029 XLAT_END
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001030};
1031
Roland McGrath5e02a572004-10-19 23:33:47 +00001032#if !defined WCOREFLAG && defined WCOREFLG
1033# define WCOREFLAG WCOREFLG
1034#endif
1035#ifndef WCOREFLAG
Dmitry V. Levine5e60852009-12-31 22:50:49 +00001036# define WCOREFLAG 0x80
Roland McGrath5e02a572004-10-19 23:33:47 +00001037#endif
Dmitry V. Levine5e60852009-12-31 22:50:49 +00001038#ifndef WCOREDUMP
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001039# define WCOREDUMP(status) ((status) & 0200)
Dmitry V. Levine5e60852009-12-31 22:50:49 +00001040#endif
Roland McGrath5e02a572004-10-19 23:33:47 +00001041#ifndef W_STOPCODE
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001042# define W_STOPCODE(sig) ((sig) << 8 | 0x7f)
Roland McGrath5e02a572004-10-19 23:33:47 +00001043#endif
1044#ifndef W_EXITCODE
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001045# define W_EXITCODE(ret, sig) ((ret) << 8 | (sig))
Roland McGrath5e02a572004-10-19 23:33:47 +00001046#endif
1047
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001048static int
Denys Vlasenko12014262011-05-30 14:00:14 +02001049printstatus(int status)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001050{
1051 int exited = 0;
1052
1053 /*
1054 * Here is a tricky presentation problem. This solution
1055 * is still not entirely satisfactory but since there
1056 * are no wait status constructors it will have to do.
1057 */
Roland McGrath79fbda52004-04-14 02:45:55 +00001058 if (WIFSTOPPED(status)) {
1059 tprintf("[{WIFSTOPPED(s) && WSTOPSIG(s) == %s}",
Nate Sammonsce780fc1999-03-29 23:23:13 +00001060 signame(WSTOPSIG(status)));
Roland McGrath79fbda52004-04-14 02:45:55 +00001061 status &= ~W_STOPCODE(WSTOPSIG(status));
1062 }
1063 else if (WIFSIGNALED(status)) {
1064 tprintf("[{WIFSIGNALED(s) && WTERMSIG(s) == %s%s}",
Nate Sammonsce780fc1999-03-29 23:23:13 +00001065 signame(WTERMSIG(status)),
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001066 WCOREDUMP(status) ? " && WCOREDUMP(s)" : "");
Roland McGrath79fbda52004-04-14 02:45:55 +00001067 status &= ~(W_EXITCODE(0, WTERMSIG(status)) | WCOREFLAG);
1068 }
1069 else if (WIFEXITED(status)) {
1070 tprintf("[{WIFEXITED(s) && WEXITSTATUS(s) == %d}",
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001071 WEXITSTATUS(status));
1072 exited = 1;
Roland McGrath79fbda52004-04-14 02:45:55 +00001073 status &= ~W_EXITCODE(WEXITSTATUS(status), 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001074 }
Roland McGrath79fbda52004-04-14 02:45:55 +00001075 else {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001076 tprintf("[%#x]", status);
Roland McGrath79fbda52004-04-14 02:45:55 +00001077 return 0;
1078 }
1079
1080 if (status == 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001081 tprints("]");
Roland McGrath79fbda52004-04-14 02:45:55 +00001082 else
Roland McGrathf8cc83c2004-06-04 01:24:07 +00001083 tprintf(" | %#x]", status);
Roland McGrath79fbda52004-04-14 02:45:55 +00001084
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001085 return exited;
1086}
1087
1088static int
Denys Vlasenko59432db2009-01-26 19:09:35 +00001089printwaitn(struct tcb *tcp, int n, int bitness)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001090{
1091 int status;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001092
1093 if (entering(tcp)) {
Denys Vlasenkoe740fd32009-04-16 12:06:16 +00001094 /* On Linux, kernel-side pid_t is typedef'ed to int
1095 * on all arches. Also, glibc-2.8 truncates wait3 and wait4
Denys Vlasenko59432db2009-01-26 19:09:35 +00001096 * pid argument to int on 64bit arches, producing,
1097 * for example, wait4(4294967295, ...) instead of -1
Denys Vlasenkoe740fd32009-04-16 12:06:16 +00001098 * in strace. We have to use int here, not long.
1099 */
1100 int pid = tcp->u_arg[0];
1101 tprintf("%d, ", pid);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001102 } else {
1103 /* status */
1104 if (!tcp->u_arg[1])
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001105 tprints("NULL");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001106 else if (syserror(tcp) || tcp->u_rval == 0)
1107 tprintf("%#lx", tcp->u_arg[1]);
1108 else if (umove(tcp, tcp->u_arg[1], &status) < 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001109 tprints("[?]");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001110 else
Dmitry V. Levind9a4b0a2011-02-23 00:27:12 +00001111 printstatus(status);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001112 /* options */
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001113 tprints(", ");
Roland McGrathb2dee132005-06-01 19:02:36 +00001114 printflags(wait4_options, tcp->u_arg[2], "W???");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001115 if (n == 4) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001116 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001117 /* usage */
1118 if (!tcp->u_arg[3])
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001119 tprints("NULL");
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +00001120 else if (tcp->u_rval > 0) {
Denys Vlasenko59432db2009-01-26 19:09:35 +00001121#ifdef ALPHA
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +00001122 if (bitness)
1123 printrusage32(tcp, tcp->u_arg[3]);
1124 else
1125#endif
1126 printrusage(tcp, tcp->u_arg[3]);
1127 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001128 else
1129 tprintf("%#lx", tcp->u_arg[3]);
1130 }
1131 }
1132 return 0;
1133}
1134
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001135int
Denys Vlasenko12014262011-05-30 14:00:14 +02001136sys_waitpid(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001137{
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +00001138 return printwaitn(tcp, 3, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001139}
1140
1141int
Denys Vlasenko12014262011-05-30 14:00:14 +02001142sys_wait4(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001143{
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +00001144 return printwaitn(tcp, 4, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001145}
1146
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +00001147#ifdef ALPHA
1148int
Denys Vlasenko12014262011-05-30 14:00:14 +02001149sys_osf_wait4(struct tcb *tcp)
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +00001150{
1151 return printwaitn(tcp, 4, 1);
1152}
1153#endif
1154
Roland McGrathd9f816f2004-09-04 03:39:20 +00001155static const struct xlat waitid_types[] = {
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001156 XLAT(P_PID),
Roland McGrathc74c0b72004-09-01 19:39:46 +00001157#ifdef P_PPID
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001158 XLAT(P_PPID),
Roland McGrathc74c0b72004-09-01 19:39:46 +00001159#endif
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001160 XLAT(P_PGID),
Roland McGrathc74c0b72004-09-01 19:39:46 +00001161#ifdef P_SID
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001162 XLAT(P_SID),
Roland McGrathc74c0b72004-09-01 19:39:46 +00001163#endif
1164#ifdef P_CID
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001165 XLAT(P_CID),
Roland McGrathc74c0b72004-09-01 19:39:46 +00001166#endif
1167#ifdef P_UID
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001168 XLAT(P_UID),
Roland McGrathc74c0b72004-09-01 19:39:46 +00001169#endif
1170#ifdef P_GID
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001171 XLAT(P_GID),
Roland McGrathc74c0b72004-09-01 19:39:46 +00001172#endif
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001173 XLAT(P_ALL),
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001174#ifdef P_LWPID
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001175 XLAT(P_LWPID),
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001176#endif
Dmitry V. Levin59452732014-02-05 02:20:51 +00001177 XLAT_END
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001178};
1179
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001180int
Dmitry V. Levin3eb94912010-09-09 23:08:59 +00001181sys_waitid(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001182{
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001183 if (entering(tcp)) {
1184 printxval(waitid_types, tcp->u_arg[0], "P_???");
1185 tprintf(", %ld, ", tcp->u_arg[1]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001186 }
1187 else {
1188 /* siginfo */
Denys Vlasenkod4d3ede2013-02-13 16:31:32 +01001189 printsiginfo_at(tcp, tcp->u_arg[2]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001190 /* options */
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001191 tprints(", ");
Roland McGrathb2dee132005-06-01 19:02:36 +00001192 printflags(wait4_options, tcp->u_arg[3], "W???");
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01001193 if (tcp->s_ent->nargs > 4) {
Roland McGrath39426a32004-10-06 22:02:59 +00001194 /* usage */
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001195 tprints(", ");
Roland McGrath39426a32004-10-06 22:02:59 +00001196 if (!tcp->u_arg[4])
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001197 tprints("NULL");
Roland McGrath39426a32004-10-06 22:02:59 +00001198 else if (tcp->u_error)
1199 tprintf("%#lx", tcp->u_arg[4]);
1200 else
1201 printrusage(tcp, tcp->u_arg[4]);
1202 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001203 }
1204 return 0;
1205}
1206
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001207int
Denys Vlasenko12014262011-05-30 14:00:14 +02001208sys_uname(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001209{
1210 struct utsname uname;
1211
1212 if (exiting(tcp)) {
1213 if (syserror(tcp) || !verbose(tcp))
1214 tprintf("%#lx", tcp->u_arg[0]);
1215 else if (umove(tcp, tcp->u_arg[0], &uname) < 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001216 tprints("{...}");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001217 else if (!abbrev(tcp)) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001218 tprintf("{sysname=\"%s\", nodename=\"%s\", ",
1219 uname.sysname, uname.nodename);
1220 tprintf("release=\"%s\", version=\"%s\", ",
1221 uname.release, uname.version);
1222 tprintf("machine=\"%s\"", uname.machine);
Dmitry V. Levinea22e972012-05-01 20:56:32 +00001223#ifdef HAVE_STRUCT_UTSNAME_DOMAINNAME
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001224 tprintf(", domainname=\"%s\"", uname.domainname);
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00001225#endif
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001226 tprints("}");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001227 }
1228 else
1229 tprintf("{sys=\"%s\", node=\"%s\", ...}",
1230 uname.sysname, uname.nodename);
1231 }
1232 return 0;
1233}
1234
Roland McGratheb9e2e82009-06-02 16:49:22 -07001235static const struct xlat ptrace_cmds[] = {
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001236 XLAT(PTRACE_TRACEME),
1237 XLAT(PTRACE_PEEKTEXT),
1238 XLAT(PTRACE_PEEKDATA),
1239 XLAT(PTRACE_PEEKUSER),
1240 XLAT(PTRACE_POKETEXT),
1241 XLAT(PTRACE_POKEDATA),
1242 XLAT(PTRACE_POKEUSER),
1243 XLAT(PTRACE_CONT),
1244 XLAT(PTRACE_KILL),
1245 XLAT(PTRACE_SINGLESTEP),
1246 XLAT(PTRACE_ATTACH),
1247 XLAT(PTRACE_DETACH),
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001248#ifdef PTRACE_GETREGS
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001249 XLAT(PTRACE_GETREGS),
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001250#endif
1251#ifdef PTRACE_SETREGS
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001252 XLAT(PTRACE_SETREGS),
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001253#endif
1254#ifdef PTRACE_GETFPREGS
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001255 XLAT(PTRACE_GETFPREGS),
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001256#endif
1257#ifdef PTRACE_SETFPREGS
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001258 XLAT(PTRACE_SETFPREGS),
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001259#endif
1260#ifdef PTRACE_GETFPXREGS
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001261 XLAT(PTRACE_GETFPXREGS),
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001262#endif
1263#ifdef PTRACE_SETFPXREGS
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001264 XLAT(PTRACE_SETFPXREGS),
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001265#endif
1266#ifdef PTRACE_GETVRREGS
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001267 XLAT(PTRACE_GETVRREGS),
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001268#endif
1269#ifdef PTRACE_SETVRREGS
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001270 XLAT(PTRACE_SETVRREGS),
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001271#endif
1272#ifdef PTRACE_SETOPTIONS
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001273 XLAT(PTRACE_SETOPTIONS),
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001274#endif
1275#ifdef PTRACE_GETEVENTMSG
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001276 XLAT(PTRACE_GETEVENTMSG),
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001277#endif
1278#ifdef PTRACE_GETSIGINFO
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001279 XLAT(PTRACE_GETSIGINFO),
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001280#endif
1281#ifdef PTRACE_SETSIGINFO
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001282 XLAT(PTRACE_SETSIGINFO),
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001283#endif
1284#ifdef PTRACE_GETREGSET
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001285 XLAT(PTRACE_GETREGSET),
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001286#endif
1287#ifdef PTRACE_SETREGSET
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001288 XLAT(PTRACE_SETREGSET),
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001289#endif
1290#ifdef PTRACE_SET_SYSCALL
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001291 XLAT(PTRACE_SET_SYSCALL),
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001292#endif
1293#ifdef PTRACE_SEIZE
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001294 XLAT(PTRACE_SEIZE),
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001295#endif
1296#ifdef PTRACE_INTERRUPT
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001297 XLAT(PTRACE_INTERRUPT),
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001298#endif
1299#ifdef PTRACE_LISTEN
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001300 XLAT(PTRACE_LISTEN),
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001301#endif
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001302 XLAT(PTRACE_SYSCALL),
Denys Vlasenkof535b542009-01-13 18:30:55 +00001303
Dmitry V. Levin59452732014-02-05 02:20:51 +00001304 XLAT_END
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001305};
1306
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001307#ifdef PTRACE_SETOPTIONS
Denys Vlasenkof535b542009-01-13 18:30:55 +00001308static const struct xlat ptrace_setoptions_flags[] = {
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001309# ifdef PTRACE_O_TRACESYSGOOD
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001310 XLAT(PTRACE_O_TRACESYSGOOD),
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001311# endif
1312# ifdef PTRACE_O_TRACEFORK
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001313 XLAT(PTRACE_O_TRACEFORK),
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001314# endif
1315# ifdef PTRACE_O_TRACEVFORK
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001316 XLAT(PTRACE_O_TRACEVFORK),
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001317# endif
1318# ifdef PTRACE_O_TRACECLONE
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001319 XLAT(PTRACE_O_TRACECLONE),
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001320# endif
1321# ifdef PTRACE_O_TRACEEXEC
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001322 XLAT(PTRACE_O_TRACEEXEC),
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001323# endif
1324# ifdef PTRACE_O_TRACEVFORKDONE
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001325 XLAT(PTRACE_O_TRACEVFORKDONE),
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001326# endif
1327# ifdef PTRACE_O_TRACEEXIT
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001328 XLAT(PTRACE_O_TRACEEXIT),
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001329# endif
Dmitry V. Levinf7822012013-05-17 22:22:19 +00001330# ifdef PTRACE_O_TRACESECCOMP
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001331 XLAT(PTRACE_O_TRACESECCOMP),
Dmitry V. Levinf7822012013-05-17 22:22:19 +00001332# endif
1333# ifdef PTRACE_O_EXITKILL
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001334 XLAT(PTRACE_O_EXITKILL),
Dmitry V. Levinf7822012013-05-17 22:22:19 +00001335# endif
Dmitry V. Levin59452732014-02-05 02:20:51 +00001336 XLAT_END
Denys Vlasenkof535b542009-01-13 18:30:55 +00001337};
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001338#endif /* PTRACE_SETOPTIONS */
Denys Vlasenkof535b542009-01-13 18:30:55 +00001339
Dmitry V. Levinc41808b2013-03-18 00:52:29 +00001340static const struct xlat nt_descriptor_types[] = {
1341#ifdef NT_PRSTATUS
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001342 XLAT(NT_PRSTATUS),
Dmitry V. Levinc41808b2013-03-18 00:52:29 +00001343#endif
1344#ifdef NT_FPREGSET
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001345 XLAT(NT_FPREGSET),
Dmitry V. Levinc41808b2013-03-18 00:52:29 +00001346#endif
1347#ifdef NT_PRPSINFO
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001348 XLAT(NT_PRPSINFO),
Dmitry V. Levinc41808b2013-03-18 00:52:29 +00001349#endif
1350#ifdef NT_PRXREG
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001351 XLAT(NT_PRXREG),
Dmitry V. Levinc41808b2013-03-18 00:52:29 +00001352#endif
1353#ifdef NT_TASKSTRUCT
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001354 XLAT(NT_TASKSTRUCT),
Dmitry V. Levinc41808b2013-03-18 00:52:29 +00001355#endif
1356#ifdef NT_PLATFORM
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001357 XLAT(NT_PLATFORM),
Dmitry V. Levinc41808b2013-03-18 00:52:29 +00001358#endif
1359#ifdef NT_AUXV
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001360 XLAT(NT_AUXV),
Dmitry V. Levinc41808b2013-03-18 00:52:29 +00001361#endif
1362#ifdef NT_GWINDOWS
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001363 XLAT(NT_GWINDOWS),
Dmitry V. Levinc41808b2013-03-18 00:52:29 +00001364#endif
1365#ifdef NT_ASRS
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001366 XLAT(NT_ASRS),
Dmitry V. Levinc41808b2013-03-18 00:52:29 +00001367#endif
1368#ifdef NT_PSTATUS
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001369 XLAT(NT_PSTATUS),
Dmitry V. Levinc41808b2013-03-18 00:52:29 +00001370#endif
1371#ifdef NT_PSINFO
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001372 XLAT(NT_PSINFO),
Dmitry V. Levinc41808b2013-03-18 00:52:29 +00001373#endif
1374#ifdef NT_PRCRED
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001375 XLAT(NT_PRCRED),
Dmitry V. Levinc41808b2013-03-18 00:52:29 +00001376#endif
1377#ifdef NT_UTSNAME
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001378 XLAT(NT_UTSNAME),
Dmitry V. Levinc41808b2013-03-18 00:52:29 +00001379#endif
1380#ifdef NT_LWPSTATUS
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001381 XLAT(NT_LWPSTATUS),
Dmitry V. Levinc41808b2013-03-18 00:52:29 +00001382#endif
1383#ifdef NT_LWPSINFO
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001384 XLAT(NT_LWPSINFO),
Dmitry V. Levinc41808b2013-03-18 00:52:29 +00001385#endif
1386#ifdef NT_PRFPXREG
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001387 XLAT(NT_PRFPXREG),
Dmitry V. Levinc41808b2013-03-18 00:52:29 +00001388#endif
1389#ifdef NT_PRXFPREG
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001390 XLAT(NT_PRXFPREG),
Dmitry V. Levinc41808b2013-03-18 00:52:29 +00001391#endif
1392#ifdef NT_PPC_VMX
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001393 XLAT(NT_PPC_VMX),
Dmitry V. Levinc41808b2013-03-18 00:52:29 +00001394#endif
1395#ifdef NT_PPC_SPE
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001396 XLAT(NT_PPC_SPE),
Dmitry V. Levinc41808b2013-03-18 00:52:29 +00001397#endif
1398#ifdef NT_PPC_VSX
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001399 XLAT(NT_PPC_VSX),
Dmitry V. Levinc41808b2013-03-18 00:52:29 +00001400#endif
1401#ifdef NT_386_TLS
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001402 XLAT(NT_386_TLS),
Dmitry V. Levinc41808b2013-03-18 00:52:29 +00001403#endif
1404#ifdef NT_386_IOPERM
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001405 XLAT(NT_386_IOPERM),
Dmitry V. Levinc41808b2013-03-18 00:52:29 +00001406#endif
1407#ifdef NT_X86_XSTATE
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001408 XLAT(NT_X86_XSTATE),
Dmitry V. Levinc41808b2013-03-18 00:52:29 +00001409#endif
Dmitry V. Levin59452732014-02-05 02:20:51 +00001410 XLAT_END
Dmitry V. Levinc41808b2013-03-18 00:52:29 +00001411};
1412
Denys Vlasenko513e9c22012-03-21 14:39:22 +01001413#define uoff(member) offsetof(struct user, member)
1414
Roland McGrathd9f816f2004-09-04 03:39:20 +00001415const struct xlat struct_user_offsets[] = {
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001416#if defined(S390) || defined(S390X)
Wichert Akkerman4dc8a2a1999-12-23 14:20:14 +00001417 { PT_PSWMASK, "psw_mask" },
1418 { PT_PSWADDR, "psw_addr" },
1419 { PT_GPR0, "gpr0" },
1420 { PT_GPR1, "gpr1" },
1421 { PT_GPR2, "gpr2" },
1422 { PT_GPR3, "gpr3" },
1423 { PT_GPR4, "gpr4" },
1424 { PT_GPR5, "gpr5" },
1425 { PT_GPR6, "gpr6" },
1426 { PT_GPR7, "gpr7" },
1427 { PT_GPR8, "gpr8" },
1428 { PT_GPR9, "gpr9" },
1429 { PT_GPR10, "gpr10" },
1430 { PT_GPR11, "gpr11" },
1431 { PT_GPR12, "gpr12" },
1432 { PT_GPR13, "gpr13" },
1433 { PT_GPR14, "gpr14" },
1434 { PT_GPR15, "gpr15" },
1435 { PT_ACR0, "acr0" },
1436 { PT_ACR1, "acr1" },
1437 { PT_ACR2, "acr2" },
1438 { PT_ACR3, "acr3" },
1439 { PT_ACR4, "acr4" },
1440 { PT_ACR5, "acr5" },
1441 { PT_ACR6, "acr6" },
1442 { PT_ACR7, "acr7" },
1443 { PT_ACR8, "acr8" },
1444 { PT_ACR9, "acr9" },
1445 { PT_ACR10, "acr10" },
1446 { PT_ACR11, "acr11" },
1447 { PT_ACR12, "acr12" },
1448 { PT_ACR13, "acr13" },
1449 { PT_ACR14, "acr14" },
1450 { PT_ACR15, "acr15" },
1451 { PT_ORIGGPR2, "orig_gpr2" },
1452 { PT_FPC, "fpc" },
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001453#if defined(S390)
Wichert Akkerman4dc8a2a1999-12-23 14:20:14 +00001454 { PT_FPR0_HI, "fpr0.hi" },
1455 { PT_FPR0_LO, "fpr0.lo" },
1456 { PT_FPR1_HI, "fpr1.hi" },
1457 { PT_FPR1_LO, "fpr1.lo" },
1458 { PT_FPR2_HI, "fpr2.hi" },
1459 { PT_FPR2_LO, "fpr2.lo" },
1460 { PT_FPR3_HI, "fpr3.hi" },
1461 { PT_FPR3_LO, "fpr3.lo" },
1462 { PT_FPR4_HI, "fpr4.hi" },
1463 { PT_FPR4_LO, "fpr4.lo" },
1464 { PT_FPR5_HI, "fpr5.hi" },
1465 { PT_FPR5_LO, "fpr5.lo" },
1466 { PT_FPR6_HI, "fpr6.hi" },
1467 { PT_FPR6_LO, "fpr6.lo" },
1468 { PT_FPR7_HI, "fpr7.hi" },
1469 { PT_FPR7_LO, "fpr7.lo" },
1470 { PT_FPR8_HI, "fpr8.hi" },
1471 { PT_FPR8_LO, "fpr8.lo" },
1472 { PT_FPR9_HI, "fpr9.hi" },
1473 { PT_FPR9_LO, "fpr9.lo" },
1474 { PT_FPR10_HI, "fpr10.hi" },
1475 { PT_FPR10_LO, "fpr10.lo" },
1476 { PT_FPR11_HI, "fpr11.hi" },
1477 { PT_FPR11_LO, "fpr11.lo" },
1478 { PT_FPR12_HI, "fpr12.hi" },
1479 { PT_FPR12_LO, "fpr12.lo" },
1480 { PT_FPR13_HI, "fpr13.hi" },
1481 { PT_FPR13_LO, "fpr13.lo" },
1482 { PT_FPR14_HI, "fpr14.hi" },
1483 { PT_FPR14_LO, "fpr14.lo" },
1484 { PT_FPR15_HI, "fpr15.hi" },
1485 { PT_FPR15_LO, "fpr15.lo" },
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001486#endif
1487#if defined(S390X)
Michal Ludvig10a88d02002-10-07 14:31:00 +00001488 { PT_FPR0, "fpr0" },
1489 { PT_FPR1, "fpr1" },
1490 { PT_FPR2, "fpr2" },
1491 { PT_FPR3, "fpr3" },
1492 { PT_FPR4, "fpr4" },
1493 { PT_FPR5, "fpr5" },
1494 { PT_FPR6, "fpr6" },
1495 { PT_FPR7, "fpr7" },
1496 { PT_FPR8, "fpr8" },
1497 { PT_FPR9, "fpr9" },
1498 { PT_FPR10, "fpr10" },
1499 { PT_FPR11, "fpr11" },
1500 { PT_FPR12, "fpr12" },
1501 { PT_FPR13, "fpr13" },
1502 { PT_FPR14, "fpr14" },
1503 { PT_FPR15, "fpr15" },
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001504#endif
Wichert Akkerman4dc8a2a1999-12-23 14:20:14 +00001505 { PT_CR_9, "cr9" },
1506 { PT_CR_10, "cr10" },
1507 { PT_CR_11, "cr11" },
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001508 { PT_IEEE_IP, "ieee_exception_ip" },
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001509#elif defined(SPARC)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001510 /* XXX No support for these offsets yet. */
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001511#elif defined(HPPA)
Wichert Akkermanc1652e22001-03-27 12:17:16 +00001512 /* XXX No support for these offsets yet. */
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001513#elif defined(POWERPC)
1514# ifndef PT_ORIG_R3
1515# define PT_ORIG_R3 34
1516# endif
1517# define REGSIZE (sizeof(unsigned long))
Roland McGratheb285352003-01-14 09:59:00 +00001518 { REGSIZE*PT_R0, "r0" },
1519 { REGSIZE*PT_R1, "r1" },
1520 { REGSIZE*PT_R2, "r2" },
1521 { REGSIZE*PT_R3, "r3" },
1522 { REGSIZE*PT_R4, "r4" },
1523 { REGSIZE*PT_R5, "r5" },
1524 { REGSIZE*PT_R6, "r6" },
1525 { REGSIZE*PT_R7, "r7" },
1526 { REGSIZE*PT_R8, "r8" },
1527 { REGSIZE*PT_R9, "r9" },
1528 { REGSIZE*PT_R10, "r10" },
1529 { REGSIZE*PT_R11, "r11" },
1530 { REGSIZE*PT_R12, "r12" },
1531 { REGSIZE*PT_R13, "r13" },
1532 { REGSIZE*PT_R14, "r14" },
1533 { REGSIZE*PT_R15, "r15" },
1534 { REGSIZE*PT_R16, "r16" },
1535 { REGSIZE*PT_R17, "r17" },
1536 { REGSIZE*PT_R18, "r18" },
1537 { REGSIZE*PT_R19, "r19" },
1538 { REGSIZE*PT_R20, "r20" },
1539 { REGSIZE*PT_R21, "r21" },
1540 { REGSIZE*PT_R22, "r22" },
1541 { REGSIZE*PT_R23, "r23" },
1542 { REGSIZE*PT_R24, "r24" },
1543 { REGSIZE*PT_R25, "r25" },
1544 { REGSIZE*PT_R26, "r26" },
1545 { REGSIZE*PT_R27, "r27" },
1546 { REGSIZE*PT_R28, "r28" },
1547 { REGSIZE*PT_R29, "r29" },
1548 { REGSIZE*PT_R30, "r30" },
1549 { REGSIZE*PT_R31, "r31" },
1550 { REGSIZE*PT_NIP, "NIP" },
1551 { REGSIZE*PT_MSR, "MSR" },
1552 { REGSIZE*PT_ORIG_R3, "ORIG_R3" },
1553 { REGSIZE*PT_CTR, "CTR" },
1554 { REGSIZE*PT_LNK, "LNK" },
1555 { REGSIZE*PT_XER, "XER" },
1556 { REGSIZE*PT_CCR, "CCR" },
1557 { REGSIZE*PT_FPR0, "FPR0" },
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001558# undef REGSIZE
1559#elif defined(ALPHA)
Wichert Akkerman4dc8a2a1999-12-23 14:20:14 +00001560 { 0, "r0" },
1561 { 1, "r1" },
1562 { 2, "r2" },
1563 { 3, "r3" },
1564 { 4, "r4" },
1565 { 5, "r5" },
1566 { 6, "r6" },
1567 { 7, "r7" },
1568 { 8, "r8" },
1569 { 9, "r9" },
1570 { 10, "r10" },
1571 { 11, "r11" },
1572 { 12, "r12" },
1573 { 13, "r13" },
1574 { 14, "r14" },
1575 { 15, "r15" },
1576 { 16, "r16" },
1577 { 17, "r17" },
1578 { 18, "r18" },
1579 { 19, "r19" },
1580 { 20, "r20" },
1581 { 21, "r21" },
1582 { 22, "r22" },
1583 { 23, "r23" },
1584 { 24, "r24" },
1585 { 25, "r25" },
1586 { 26, "r26" },
1587 { 27, "r27" },
1588 { 28, "r28" },
1589 { 29, "gp" },
1590 { 30, "fp" },
1591 { 31, "zero" },
1592 { 32, "fp0" },
1593 { 33, "fp" },
1594 { 34, "fp2" },
1595 { 35, "fp3" },
1596 { 36, "fp4" },
1597 { 37, "fp5" },
1598 { 38, "fp6" },
1599 { 39, "fp7" },
1600 { 40, "fp8" },
1601 { 41, "fp9" },
1602 { 42, "fp10" },
1603 { 43, "fp11" },
1604 { 44, "fp12" },
1605 { 45, "fp13" },
1606 { 46, "fp14" },
1607 { 47, "fp15" },
1608 { 48, "fp16" },
1609 { 49, "fp17" },
1610 { 50, "fp18" },
1611 { 51, "fp19" },
1612 { 52, "fp20" },
1613 { 53, "fp21" },
1614 { 54, "fp22" },
1615 { 55, "fp23" },
1616 { 56, "fp24" },
1617 { 57, "fp25" },
1618 { 58, "fp26" },
1619 { 59, "fp27" },
1620 { 60, "fp28" },
1621 { 61, "fp29" },
1622 { 62, "fp30" },
1623 { 63, "fp31" },
1624 { 64, "pc" },
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001625#elif defined(IA64)
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +00001626 { PT_F32, "f32" }, { PT_F33, "f33" }, { PT_F34, "f34" },
1627 { PT_F35, "f35" }, { PT_F36, "f36" }, { PT_F37, "f37" },
1628 { PT_F38, "f38" }, { PT_F39, "f39" }, { PT_F40, "f40" },
1629 { PT_F41, "f41" }, { PT_F42, "f42" }, { PT_F43, "f43" },
1630 { PT_F44, "f44" }, { PT_F45, "f45" }, { PT_F46, "f46" },
1631 { PT_F47, "f47" }, { PT_F48, "f48" }, { PT_F49, "f49" },
1632 { PT_F50, "f50" }, { PT_F51, "f51" }, { PT_F52, "f52" },
1633 { PT_F53, "f53" }, { PT_F54, "f54" }, { PT_F55, "f55" },
1634 { PT_F56, "f56" }, { PT_F57, "f57" }, { PT_F58, "f58" },
1635 { PT_F59, "f59" }, { PT_F60, "f60" }, { PT_F61, "f61" },
1636 { PT_F62, "f62" }, { PT_F63, "f63" }, { PT_F64, "f64" },
1637 { PT_F65, "f65" }, { PT_F66, "f66" }, { PT_F67, "f67" },
1638 { PT_F68, "f68" }, { PT_F69, "f69" }, { PT_F70, "f70" },
1639 { PT_F71, "f71" }, { PT_F72, "f72" }, { PT_F73, "f73" },
1640 { PT_F74, "f74" }, { PT_F75, "f75" }, { PT_F76, "f76" },
1641 { PT_F77, "f77" }, { PT_F78, "f78" }, { PT_F79, "f79" },
1642 { PT_F80, "f80" }, { PT_F81, "f81" }, { PT_F82, "f82" },
1643 { PT_F83, "f83" }, { PT_F84, "f84" }, { PT_F85, "f85" },
1644 { PT_F86, "f86" }, { PT_F87, "f87" }, { PT_F88, "f88" },
1645 { PT_F89, "f89" }, { PT_F90, "f90" }, { PT_F91, "f91" },
1646 { PT_F92, "f92" }, { PT_F93, "f93" }, { PT_F94, "f94" },
1647 { PT_F95, "f95" }, { PT_F96, "f96" }, { PT_F97, "f97" },
1648 { PT_F98, "f98" }, { PT_F99, "f99" }, { PT_F100, "f100" },
1649 { PT_F101, "f101" }, { PT_F102, "f102" }, { PT_F103, "f103" },
1650 { PT_F104, "f104" }, { PT_F105, "f105" }, { PT_F106, "f106" },
1651 { PT_F107, "f107" }, { PT_F108, "f108" }, { PT_F109, "f109" },
1652 { PT_F110, "f110" }, { PT_F111, "f111" }, { PT_F112, "f112" },
1653 { PT_F113, "f113" }, { PT_F114, "f114" }, { PT_F115, "f115" },
1654 { PT_F116, "f116" }, { PT_F117, "f117" }, { PT_F118, "f118" },
1655 { PT_F119, "f119" }, { PT_F120, "f120" }, { PT_F121, "f121" },
1656 { PT_F122, "f122" }, { PT_F123, "f123" }, { PT_F124, "f124" },
1657 { PT_F125, "f125" }, { PT_F126, "f126" }, { PT_F127, "f127" },
1658 /* switch stack: */
1659 { PT_F2, "f2" }, { PT_F3, "f3" }, { PT_F4, "f4" },
1660 { PT_F5, "f5" }, { PT_F10, "f10" }, { PT_F11, "f11" },
1661 { PT_F12, "f12" }, { PT_F13, "f13" }, { PT_F14, "f14" },
1662 { PT_F15, "f15" }, { PT_F16, "f16" }, { PT_F17, "f17" },
1663 { PT_F18, "f18" }, { PT_F19, "f19" }, { PT_F20, "f20" },
1664 { PT_F21, "f21" }, { PT_F22, "f22" }, { PT_F23, "f23" },
1665 { PT_F24, "f24" }, { PT_F25, "f25" }, { PT_F26, "f26" },
1666 { PT_F27, "f27" }, { PT_F28, "f28" }, { PT_F29, "f29" },
1667 { PT_F30, "f30" }, { PT_F31, "f31" }, { PT_R4, "r4" },
1668 { PT_R5, "r5" }, { PT_R6, "r6" }, { PT_R7, "r7" },
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +00001669 { PT_B1, "b1" }, { PT_B2, "b2" }, { PT_B3, "b3" },
1670 { PT_B4, "b4" }, { PT_B5, "b5" },
Roland McGrathca4e10c2004-01-13 10:13:20 +00001671 { PT_AR_EC, "ar.ec" }, { PT_AR_LC, "ar.lc" },
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +00001672 /* pt_regs */
Roland McGrathca4e10c2004-01-13 10:13:20 +00001673 { PT_CR_IPSR, "psr" }, { PT_CR_IIP, "ip" },
1674 { PT_CFM, "cfm" }, { PT_AR_UNAT, "ar.unat" },
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +00001675 { PT_AR_PFS, "ar.pfs" }, { PT_AR_RSC, "ar.rsc" },
1676 { PT_AR_RNAT, "ar.rnat" }, { PT_AR_BSPSTORE, "ar.bspstore" },
1677 { PT_PR, "pr" }, { PT_B6, "b6" }, { PT_AR_BSP, "ar.bsp" },
1678 { PT_R1, "r1" }, { PT_R2, "r2" }, { PT_R3, "r3" },
1679 { PT_R12, "r12" }, { PT_R13, "r13" }, { PT_R14, "r14" },
1680 { PT_R15, "r15" }, { PT_R8, "r8" }, { PT_R9, "r9" },
1681 { PT_R10, "r10" }, { PT_R11, "r11" }, { PT_R16, "r16" },
1682 { PT_R17, "r17" }, { PT_R18, "r18" }, { PT_R19, "r19" },
1683 { PT_R20, "r20" }, { PT_R21, "r21" }, { PT_R22, "r22" },
1684 { PT_R23, "r23" }, { PT_R24, "r24" }, { PT_R25, "r25" },
1685 { PT_R26, "r26" }, { PT_R27, "r27" }, { PT_R28, "r28" },
1686 { PT_R29, "r29" }, { PT_R30, "r30" }, { PT_R31, "r31" },
1687 { PT_AR_CCV, "ar.ccv" }, { PT_AR_FPSR, "ar.fpsr" },
1688 { PT_B0, "b0" }, { PT_B7, "b7" }, { PT_F6, "f6" },
1689 { PT_F7, "f7" }, { PT_F8, "f8" }, { PT_F9, "f9" },
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001690# ifdef PT_AR_CSD
Roland McGrathfb1bc072004-03-01 21:29:24 +00001691 { PT_AR_CSD, "ar.csd" },
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001692# endif
1693# ifdef PT_AR_SSD
Roland McGrathfb1bc072004-03-01 21:29:24 +00001694 { PT_AR_SSD, "ar.ssd" },
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001695# endif
Roland McGrathca4e10c2004-01-13 10:13:20 +00001696 { PT_DBR, "dbr" }, { PT_IBR, "ibr" }, { PT_PMD, "pmd" },
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001697#elif defined(I386)
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001698 XLAT(4*EBX),
1699 XLAT(4*ECX),
1700 XLAT(4*EDX),
1701 XLAT(4*ESI),
1702 XLAT(4*EDI),
1703 XLAT(4*EBP),
1704 XLAT(4*EAX),
1705 XLAT(4*DS),
1706 XLAT(4*ES),
1707 XLAT(4*FS),
1708 XLAT(4*GS),
1709 XLAT(4*ORIG_EAX),
1710 XLAT(4*EIP),
1711 XLAT(4*CS),
1712 XLAT(4*EFL),
1713 XLAT(4*UESP),
1714 XLAT(4*SS),
H.J. Lu35be5812012-04-16 13:00:01 +02001715#elif defined(X86_64) || defined(X32)
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001716 XLAT(8*R15),
1717 XLAT(8*R14),
1718 XLAT(8*R13),
1719 XLAT(8*R12),
1720 XLAT(8*RBP),
1721 XLAT(8*RBX),
1722 XLAT(8*R11),
1723 XLAT(8*R10),
1724 XLAT(8*R9),
1725 XLAT(8*R8),
1726 XLAT(8*RAX),
1727 XLAT(8*RCX),
1728 XLAT(8*RDX),
1729 XLAT(8*RSI),
1730 XLAT(8*RDI),
1731 XLAT(8*ORIG_RAX),
1732 XLAT(8*RIP),
1733 XLAT(8*CS),
Michal Ludvig0e035502002-09-23 15:41:01 +00001734 { 8*EFLAGS, "8*EFL" },
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001735 XLAT(8*RSP),
1736 XLAT(8*SS),
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001737#elif defined(M68K)
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001738 XLAT(4*PT_D1),
1739 XLAT(4*PT_D2),
1740 XLAT(4*PT_D3),
1741 XLAT(4*PT_D4),
1742 XLAT(4*PT_D5),
1743 XLAT(4*PT_D6),
1744 XLAT(4*PT_D7),
1745 XLAT(4*PT_A0),
1746 XLAT(4*PT_A1),
1747 XLAT(4*PT_A2),
1748 XLAT(4*PT_A3),
1749 XLAT(4*PT_A4),
1750 XLAT(4*PT_A5),
1751 XLAT(4*PT_A6),
1752 XLAT(4*PT_D0),
1753 XLAT(4*PT_USP),
1754 XLAT(4*PT_ORIG_D0),
1755 XLAT(4*PT_SR),
1756 XLAT(4*PT_PC),
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001757#elif defined(SH)
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001758 XLAT(4*REG_REG0),
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001759 { 4*(REG_REG0+1), "4*REG_REG1" },
1760 { 4*(REG_REG0+2), "4*REG_REG2" },
1761 { 4*(REG_REG0+3), "4*REG_REG3" },
1762 { 4*(REG_REG0+4), "4*REG_REG4" },
1763 { 4*(REG_REG0+5), "4*REG_REG5" },
1764 { 4*(REG_REG0+6), "4*REG_REG6" },
1765 { 4*(REG_REG0+7), "4*REG_REG7" },
1766 { 4*(REG_REG0+8), "4*REG_REG8" },
1767 { 4*(REG_REG0+9), "4*REG_REG9" },
1768 { 4*(REG_REG0+10), "4*REG_REG10" },
1769 { 4*(REG_REG0+11), "4*REG_REG11" },
1770 { 4*(REG_REG0+12), "4*REG_REG12" },
1771 { 4*(REG_REG0+13), "4*REG_REG13" },
1772 { 4*(REG_REG0+14), "4*REG_REG14" },
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001773 XLAT(4*REG_REG15),
1774 XLAT(4*REG_PC),
1775 XLAT(4*REG_PR),
1776 XLAT(4*REG_SR),
1777 XLAT(4*REG_GBR),
1778 XLAT(4*REG_MACH),
1779 XLAT(4*REG_MACL),
1780 XLAT(4*REG_SYSCALL),
1781 XLAT(4*REG_FPUL),
1782 XLAT(4*REG_FPREG0),
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001783 { 4*(REG_FPREG0+1), "4*REG_FPREG1" },
1784 { 4*(REG_FPREG0+2), "4*REG_FPREG2" },
1785 { 4*(REG_FPREG0+3), "4*REG_FPREG3" },
1786 { 4*(REG_FPREG0+4), "4*REG_FPREG4" },
1787 { 4*(REG_FPREG0+5), "4*REG_FPREG5" },
1788 { 4*(REG_FPREG0+6), "4*REG_FPREG6" },
1789 { 4*(REG_FPREG0+7), "4*REG_FPREG7" },
1790 { 4*(REG_FPREG0+8), "4*REG_FPREG8" },
1791 { 4*(REG_FPREG0+9), "4*REG_FPREG9" },
1792 { 4*(REG_FPREG0+10), "4*REG_FPREG10" },
1793 { 4*(REG_FPREG0+11), "4*REG_FPREG11" },
1794 { 4*(REG_FPREG0+12), "4*REG_FPREG12" },
1795 { 4*(REG_FPREG0+13), "4*REG_FPREG13" },
1796 { 4*(REG_FPREG0+14), "4*REG_FPREG14" },
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001797 XLAT(4*REG_FPREG15),
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001798# ifdef REG_XDREG0
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001799 XLAT(4*REG_XDREG0),
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001800 { 4*(REG_XDREG0+2), "4*REG_XDREG2" },
1801 { 4*(REG_XDREG0+4), "4*REG_XDREG4" },
1802 { 4*(REG_XDREG0+6), "4*REG_XDREG6" },
1803 { 4*(REG_XDREG0+8), "4*REG_XDREG8" },
1804 { 4*(REG_XDREG0+10), "4*REG_XDREG10" },
1805 { 4*(REG_XDREG0+12), "4*REG_XDREG12" },
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001806 XLAT(4*REG_XDREG14),
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001807# endif
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001808 XLAT(4*REG_FPSCR),
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001809#elif defined(SH64)
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001810 { 0, "PC(L)" },
1811 { 4, "PC(U)" },
1812 { 8, "SR(L)" },
1813 { 12, "SR(U)" },
1814 { 16, "syscall no.(L)" },
1815 { 20, "syscall_no.(U)" },
1816 { 24, "R0(L)" },
1817 { 28, "R0(U)" },
1818 { 32, "R1(L)" },
1819 { 36, "R1(U)" },
1820 { 40, "R2(L)" },
1821 { 44, "R2(U)" },
1822 { 48, "R3(L)" },
1823 { 52, "R3(U)" },
1824 { 56, "R4(L)" },
1825 { 60, "R4(U)" },
1826 { 64, "R5(L)" },
1827 { 68, "R5(U)" },
1828 { 72, "R6(L)" },
1829 { 76, "R6(U)" },
1830 { 80, "R7(L)" },
1831 { 84, "R7(U)" },
1832 { 88, "R8(L)" },
1833 { 92, "R8(U)" },
1834 { 96, "R9(L)" },
1835 { 100, "R9(U)" },
1836 { 104, "R10(L)" },
1837 { 108, "R10(U)" },
1838 { 112, "R11(L)" },
1839 { 116, "R11(U)" },
1840 { 120, "R12(L)" },
1841 { 124, "R12(U)" },
1842 { 128, "R13(L)" },
1843 { 132, "R13(U)" },
1844 { 136, "R14(L)" },
1845 { 140, "R14(U)" },
1846 { 144, "R15(L)" },
1847 { 148, "R15(U)" },
1848 { 152, "R16(L)" },
1849 { 156, "R16(U)" },
1850 { 160, "R17(L)" },
1851 { 164, "R17(U)" },
1852 { 168, "R18(L)" },
1853 { 172, "R18(U)" },
1854 { 176, "R19(L)" },
1855 { 180, "R19(U)" },
1856 { 184, "R20(L)" },
1857 { 188, "R20(U)" },
1858 { 192, "R21(L)" },
1859 { 196, "R21(U)" },
1860 { 200, "R22(L)" },
1861 { 204, "R22(U)" },
1862 { 208, "R23(L)" },
1863 { 212, "R23(U)" },
1864 { 216, "R24(L)" },
1865 { 220, "R24(U)" },
1866 { 224, "R25(L)" },
1867 { 228, "R25(U)" },
1868 { 232, "R26(L)" },
1869 { 236, "R26(U)" },
1870 { 240, "R27(L)" },
1871 { 244, "R27(U)" },
1872 { 248, "R28(L)" },
1873 { 252, "R28(U)" },
1874 { 256, "R29(L)" },
1875 { 260, "R29(U)" },
1876 { 264, "R30(L)" },
1877 { 268, "R30(U)" },
1878 { 272, "R31(L)" },
1879 { 276, "R31(U)" },
1880 { 280, "R32(L)" },
1881 { 284, "R32(U)" },
1882 { 288, "R33(L)" },
1883 { 292, "R33(U)" },
1884 { 296, "R34(L)" },
1885 { 300, "R34(U)" },
1886 { 304, "R35(L)" },
1887 { 308, "R35(U)" },
1888 { 312, "R36(L)" },
1889 { 316, "R36(U)" },
1890 { 320, "R37(L)" },
1891 { 324, "R37(U)" },
1892 { 328, "R38(L)" },
1893 { 332, "R38(U)" },
1894 { 336, "R39(L)" },
1895 { 340, "R39(U)" },
1896 { 344, "R40(L)" },
1897 { 348, "R40(U)" },
1898 { 352, "R41(L)" },
1899 { 356, "R41(U)" },
1900 { 360, "R42(L)" },
1901 { 364, "R42(U)" },
1902 { 368, "R43(L)" },
1903 { 372, "R43(U)" },
1904 { 376, "R44(L)" },
1905 { 380, "R44(U)" },
1906 { 384, "R45(L)" },
1907 { 388, "R45(U)" },
1908 { 392, "R46(L)" },
1909 { 396, "R46(U)" },
1910 { 400, "R47(L)" },
1911 { 404, "R47(U)" },
1912 { 408, "R48(L)" },
1913 { 412, "R48(U)" },
1914 { 416, "R49(L)" },
1915 { 420, "R49(U)" },
1916 { 424, "R50(L)" },
1917 { 428, "R50(U)" },
1918 { 432, "R51(L)" },
1919 { 436, "R51(U)" },
1920 { 440, "R52(L)" },
1921 { 444, "R52(U)" },
1922 { 448, "R53(L)" },
1923 { 452, "R53(U)" },
1924 { 456, "R54(L)" },
1925 { 460, "R54(U)" },
1926 { 464, "R55(L)" },
1927 { 468, "R55(U)" },
1928 { 472, "R56(L)" },
1929 { 476, "R56(U)" },
1930 { 480, "R57(L)" },
1931 { 484, "R57(U)" },
1932 { 488, "R58(L)" },
1933 { 492, "R58(U)" },
1934 { 496, "R59(L)" },
1935 { 500, "R59(U)" },
1936 { 504, "R60(L)" },
1937 { 508, "R60(U)" },
1938 { 512, "R61(L)" },
1939 { 516, "R61(U)" },
1940 { 520, "R62(L)" },
1941 { 524, "R62(U)" },
1942 { 528, "TR0(L)" },
1943 { 532, "TR0(U)" },
1944 { 536, "TR1(L)" },
1945 { 540, "TR1(U)" },
1946 { 544, "TR2(L)" },
1947 { 548, "TR2(U)" },
1948 { 552, "TR3(L)" },
1949 { 556, "TR3(U)" },
1950 { 560, "TR4(L)" },
1951 { 564, "TR4(U)" },
1952 { 568, "TR5(L)" },
1953 { 572, "TR5(U)" },
1954 { 576, "TR6(L)" },
1955 { 580, "TR6(U)" },
1956 { 584, "TR7(L)" },
1957 { 588, "TR7(U)" },
Denys Vlasenkoadedb512008-12-30 18:47:55 +00001958 /* This entry is in case pt_regs contains dregs (depends on
1959 the kernel build options). */
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001960 { uoff(regs), "offsetof(struct user, regs)" },
1961 { uoff(fpu), "offsetof(struct user, fpu)" },
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001962#elif defined(ARM)
Roland McGrath0f87c492003-06-03 23:29:04 +00001963 { uoff(regs.ARM_r0), "r0" },
1964 { uoff(regs.ARM_r1), "r1" },
1965 { uoff(regs.ARM_r2), "r2" },
1966 { uoff(regs.ARM_r3), "r3" },
1967 { uoff(regs.ARM_r4), "r4" },
1968 { uoff(regs.ARM_r5), "r5" },
1969 { uoff(regs.ARM_r6), "r6" },
1970 { uoff(regs.ARM_r7), "r7" },
1971 { uoff(regs.ARM_r8), "r8" },
1972 { uoff(regs.ARM_r9), "r9" },
1973 { uoff(regs.ARM_r10), "r10" },
1974 { uoff(regs.ARM_fp), "fp" },
1975 { uoff(regs.ARM_ip), "ip" },
1976 { uoff(regs.ARM_sp), "sp" },
1977 { uoff(regs.ARM_lr), "lr" },
1978 { uoff(regs.ARM_pc), "pc" },
1979 { uoff(regs.ARM_cpsr), "cpsr" },
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001980#elif defined(AVR32)
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +00001981 { uoff(regs.sr), "sr" },
1982 { uoff(regs.pc), "pc" },
1983 { uoff(regs.lr), "lr" },
1984 { uoff(regs.sp), "sp" },
1985 { uoff(regs.r12), "r12" },
1986 { uoff(regs.r11), "r11" },
1987 { uoff(regs.r10), "r10" },
1988 { uoff(regs.r9), "r9" },
1989 { uoff(regs.r8), "r8" },
1990 { uoff(regs.r7), "r7" },
1991 { uoff(regs.r6), "r6" },
1992 { uoff(regs.r5), "r5" },
1993 { uoff(regs.r4), "r4" },
1994 { uoff(regs.r3), "r3" },
1995 { uoff(regs.r2), "r2" },
1996 { uoff(regs.r1), "r1" },
1997 { uoff(regs.r0), "r0" },
1998 { uoff(regs.r12_orig), "orig_r12" },
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001999#elif defined(MIPS)
Roland McGrath542c2c62008-05-20 01:11:56 +00002000 { 0, "r0" },
2001 { 1, "r1" },
2002 { 2, "r2" },
2003 { 3, "r3" },
2004 { 4, "r4" },
2005 { 5, "r5" },
2006 { 6, "r6" },
2007 { 7, "r7" },
2008 { 8, "r8" },
2009 { 9, "r9" },
2010 { 10, "r10" },
2011 { 11, "r11" },
2012 { 12, "r12" },
2013 { 13, "r13" },
2014 { 14, "r14" },
2015 { 15, "r15" },
2016 { 16, "r16" },
2017 { 17, "r17" },
2018 { 18, "r18" },
2019 { 19, "r19" },
2020 { 20, "r20" },
2021 { 21, "r21" },
2022 { 22, "r22" },
2023 { 23, "r23" },
2024 { 24, "r24" },
2025 { 25, "r25" },
2026 { 26, "r26" },
2027 { 27, "r27" },
2028 { 28, "r28" },
2029 { 29, "r29" },
2030 { 30, "r30" },
2031 { 31, "r31" },
2032 { 32, "f0" },
2033 { 33, "f1" },
2034 { 34, "f2" },
2035 { 35, "f3" },
2036 { 36, "f4" },
2037 { 37, "f5" },
2038 { 38, "f6" },
2039 { 39, "f7" },
2040 { 40, "f8" },
2041 { 41, "f9" },
2042 { 42, "f10" },
2043 { 43, "f11" },
2044 { 44, "f12" },
2045 { 45, "f13" },
2046 { 46, "f14" },
2047 { 47, "f15" },
2048 { 48, "f16" },
2049 { 49, "f17" },
2050 { 50, "f18" },
2051 { 51, "f19" },
2052 { 52, "f20" },
2053 { 53, "f21" },
2054 { 54, "f22" },
2055 { 55, "f23" },
2056 { 56, "f24" },
2057 { 57, "f25" },
2058 { 58, "f26" },
2059 { 59, "f27" },
2060 { 60, "f28" },
2061 { 61, "f29" },
2062 { 62, "f30" },
2063 { 63, "f31" },
2064 { 64, "pc" },
2065 { 65, "cause" },
2066 { 66, "badvaddr" },
2067 { 67, "mmhi" },
2068 { 68, "mmlo" },
2069 { 69, "fpcsr" },
2070 { 70, "fpeir" },
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01002071#elif defined(TILE)
Chris Metcalfc8c66982009-12-28 10:00:15 -05002072 { PTREGS_OFFSET_REG(0), "r0" },
2073 { PTREGS_OFFSET_REG(1), "r1" },
2074 { PTREGS_OFFSET_REG(2), "r2" },
2075 { PTREGS_OFFSET_REG(3), "r3" },
2076 { PTREGS_OFFSET_REG(4), "r4" },
2077 { PTREGS_OFFSET_REG(5), "r5" },
2078 { PTREGS_OFFSET_REG(6), "r6" },
2079 { PTREGS_OFFSET_REG(7), "r7" },
2080 { PTREGS_OFFSET_REG(8), "r8" },
2081 { PTREGS_OFFSET_REG(9), "r9" },
2082 { PTREGS_OFFSET_REG(10), "r10" },
2083 { PTREGS_OFFSET_REG(11), "r11" },
2084 { PTREGS_OFFSET_REG(12), "r12" },
2085 { PTREGS_OFFSET_REG(13), "r13" },
2086 { PTREGS_OFFSET_REG(14), "r14" },
2087 { PTREGS_OFFSET_REG(15), "r15" },
2088 { PTREGS_OFFSET_REG(16), "r16" },
2089 { PTREGS_OFFSET_REG(17), "r17" },
2090 { PTREGS_OFFSET_REG(18), "r18" },
2091 { PTREGS_OFFSET_REG(19), "r19" },
2092 { PTREGS_OFFSET_REG(20), "r20" },
2093 { PTREGS_OFFSET_REG(21), "r21" },
2094 { PTREGS_OFFSET_REG(22), "r22" },
2095 { PTREGS_OFFSET_REG(23), "r23" },
2096 { PTREGS_OFFSET_REG(24), "r24" },
2097 { PTREGS_OFFSET_REG(25), "r25" },
2098 { PTREGS_OFFSET_REG(26), "r26" },
2099 { PTREGS_OFFSET_REG(27), "r27" },
2100 { PTREGS_OFFSET_REG(28), "r28" },
2101 { PTREGS_OFFSET_REG(29), "r29" },
2102 { PTREGS_OFFSET_REG(30), "r30" },
2103 { PTREGS_OFFSET_REG(31), "r31" },
2104 { PTREGS_OFFSET_REG(32), "r32" },
2105 { PTREGS_OFFSET_REG(33), "r33" },
2106 { PTREGS_OFFSET_REG(34), "r34" },
2107 { PTREGS_OFFSET_REG(35), "r35" },
2108 { PTREGS_OFFSET_REG(36), "r36" },
2109 { PTREGS_OFFSET_REG(37), "r37" },
2110 { PTREGS_OFFSET_REG(38), "r38" },
2111 { PTREGS_OFFSET_REG(39), "r39" },
2112 { PTREGS_OFFSET_REG(40), "r40" },
2113 { PTREGS_OFFSET_REG(41), "r41" },
2114 { PTREGS_OFFSET_REG(42), "r42" },
2115 { PTREGS_OFFSET_REG(43), "r43" },
2116 { PTREGS_OFFSET_REG(44), "r44" },
2117 { PTREGS_OFFSET_REG(45), "r45" },
2118 { PTREGS_OFFSET_REG(46), "r46" },
2119 { PTREGS_OFFSET_REG(47), "r47" },
2120 { PTREGS_OFFSET_REG(48), "r48" },
2121 { PTREGS_OFFSET_REG(49), "r49" },
2122 { PTREGS_OFFSET_REG(50), "r50" },
2123 { PTREGS_OFFSET_REG(51), "r51" },
2124 { PTREGS_OFFSET_REG(52), "r52" },
2125 { PTREGS_OFFSET_TP, "tp" },
2126 { PTREGS_OFFSET_SP, "sp" },
2127 { PTREGS_OFFSET_LR, "lr" },
2128 { PTREGS_OFFSET_PC, "pc" },
2129 { PTREGS_OFFSET_EX1, "ex1" },
2130 { PTREGS_OFFSET_FAULTNUM, "faultnum" },
2131 { PTREGS_OFFSET_ORIG_R0, "orig_r0" },
2132 { PTREGS_OFFSET_FLAGS, "flags" },
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01002133#endif
2134#ifdef CRISV10
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00002135 XLAT(4*PT_FRAMETYPE),
2136 XLAT(4*PT_ORIG_R10),
2137 XLAT(4*PT_R13),
2138 XLAT(4*PT_R12),
2139 XLAT(4*PT_R11),
2140 XLAT(4*PT_R10),
2141 XLAT(4*PT_R9),
2142 XLAT(4*PT_R8),
2143 XLAT(4*PT_R7),
2144 XLAT(4*PT_R6),
2145 XLAT(4*PT_R5),
2146 XLAT(4*PT_R4),
2147 XLAT(4*PT_R3),
2148 XLAT(4*PT_R2),
2149 XLAT(4*PT_R1),
2150 XLAT(4*PT_R0),
2151 XLAT(4*PT_MOF),
2152 XLAT(4*PT_DCCR),
2153 XLAT(4*PT_SRP),
2154 XLAT(4*PT_IRP),
2155 XLAT(4*PT_CSRINSTR),
2156 XLAT(4*PT_CSRADDR),
2157 XLAT(4*PT_CSRDATA),
2158 XLAT(4*PT_USP),
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01002159#endif
2160#ifdef CRISV32
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00002161 XLAT(4*PT_ORIG_R10),
2162 XLAT(4*PT_R0),
2163 XLAT(4*PT_R1),
2164 XLAT(4*PT_R2),
2165 XLAT(4*PT_R3),
2166 XLAT(4*PT_R4),
2167 XLAT(4*PT_R5),
2168 XLAT(4*PT_R6),
2169 XLAT(4*PT_R7),
2170 XLAT(4*PT_R8),
2171 XLAT(4*PT_R9),
2172 XLAT(4*PT_R10),
2173 XLAT(4*PT_R11),
2174 XLAT(4*PT_R12),
2175 XLAT(4*PT_R13),
2176 XLAT(4*PT_ACR),
2177 XLAT(4*PT_SRS),
2178 XLAT(4*PT_MOF),
2179 XLAT(4*PT_SPC),
2180 XLAT(4*PT_CCS),
2181 XLAT(4*PT_SRP),
2182 XLAT(4*PT_ERP),
2183 XLAT(4*PT_EXS),
2184 XLAT(4*PT_EDA),
2185 XLAT(4*PT_USP),
2186 XLAT(4*PT_PPC),
2187 XLAT(4*PT_BP_CTRL),
2188 XLAT(4*PT_BP+4),
2189 XLAT(4*PT_BP+8),
2190 XLAT(4*PT_BP+12),
2191 XLAT(4*PT_BP+16),
2192 XLAT(4*PT_BP+20),
2193 XLAT(4*PT_BP+24),
2194 XLAT(4*PT_BP+28),
2195 XLAT(4*PT_BP+32),
2196 XLAT(4*PT_BP+36),
2197 XLAT(4*PT_BP+40),
2198 XLAT(4*PT_BP+44),
2199 XLAT(4*PT_BP+48),
2200 XLAT(4*PT_BP+52),
2201 XLAT(4*PT_BP+56),
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01002202#endif
2203#ifdef MICROBLAZE
Edgar E. Iglesias939caba2010-07-06 14:21:07 +02002204 { PT_GPR(0), "r0" },
2205 { PT_GPR(1), "r1" },
2206 { PT_GPR(2), "r2" },
2207 { PT_GPR(3), "r3" },
2208 { PT_GPR(4), "r4" },
2209 { PT_GPR(5), "r5" },
2210 { PT_GPR(6), "r6" },
2211 { PT_GPR(7), "r7" },
2212 { PT_GPR(8), "r8" },
2213 { PT_GPR(9), "r9" },
2214 { PT_GPR(10), "r10" },
2215 { PT_GPR(11), "r11" },
2216 { PT_GPR(12), "r12" },
2217 { PT_GPR(13), "r13" },
2218 { PT_GPR(14), "r14" },
2219 { PT_GPR(15), "r15" },
2220 { PT_GPR(16), "r16" },
2221 { PT_GPR(17), "r17" },
2222 { PT_GPR(18), "r18" },
2223 { PT_GPR(19), "r19" },
2224 { PT_GPR(20), "r20" },
2225 { PT_GPR(21), "r21" },
2226 { PT_GPR(22), "r22" },
2227 { PT_GPR(23), "r23" },
2228 { PT_GPR(24), "r24" },
2229 { PT_GPR(25), "r25" },
2230 { PT_GPR(26), "r26" },
2231 { PT_GPR(27), "r27" },
2232 { PT_GPR(28), "r28" },
2233 { PT_GPR(29), "r29" },
2234 { PT_GPR(30), "r30" },
2235 { PT_GPR(31), "r31" },
Denys Vlasenkob63256e2011-06-07 12:13:24 +02002236 { PT_PC, "rpc", },
2237 { PT_MSR, "rmsr", },
Edgar E. Iglesias939caba2010-07-06 14:21:07 +02002238 { PT_EAR, "rear", },
2239 { PT_ESR, "resr", },
2240 { PT_FSR, "rfsr", },
Denys Vlasenkob63256e2011-06-07 12:13:24 +02002241 { PT_KERNEL_MODE, "kernel_mode", },
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01002242#endif
Christian Svensson492f81f2013-02-14 13:26:27 +01002243#ifdef OR1K
2244 { 4*0, "r0" },
2245 { 4*1, "r1" },
2246 { 4*2, "r2" },
2247 { 4*3, "r3" },
2248 { 4*4, "r4" },
2249 { 4*5, "r5" },
2250 { 4*6, "r6" },
2251 { 4*7, "r7" },
2252 { 4*8, "r8" },
2253 { 4*9, "r9" },
2254 { 4*10, "r10" },
2255 { 4*11, "r11" },
2256 { 4*12, "r12" },
2257 { 4*13, "r13" },
2258 { 4*14, "r14" },
2259 { 4*15, "r15" },
2260 { 4*16, "r16" },
2261 { 4*17, "r17" },
2262 { 4*18, "r18" },
2263 { 4*19, "r19" },
2264 { 4*20, "r20" },
2265 { 4*21, "r21" },
2266 { 4*22, "r22" },
2267 { 4*23, "r23" },
2268 { 4*24, "r24" },
2269 { 4*25, "r25" },
2270 { 4*26, "r26" },
2271 { 4*27, "r27" },
2272 { 4*28, "r28" },
2273 { 4*29, "r29" },
2274 { 4*30, "r30" },
2275 { 4*31, "r31" },
2276 { 4*32, "pc" },
2277 { 4*33, "sr" },
2278#endif
Chris Zankel8f636ed2013-03-25 10:22:07 -07002279#ifdef XTENSA
2280 { SYSCALL_NR, "syscall_nr" },
2281 { REG_AR_BASE, "ar0" },
2282 { REG_AR_BASE+1, "ar1" },
2283 { REG_AR_BASE+2, "ar2" },
2284 { REG_AR_BASE+3, "ar3" },
2285 { REG_AR_BASE+4, "ar4" },
2286 { REG_AR_BASE+5, "ar5" },
2287 { REG_AR_BASE+6, "ar6" },
2288 { REG_AR_BASE+7, "ar7" },
2289 { REG_AR_BASE+8, "ar8" },
2290 { REG_AR_BASE+9, "ar9" },
2291 { REG_AR_BASE+10, "ar10" },
2292 { REG_AR_BASE+11, "ar11" },
2293 { REG_AR_BASE+12, "ar12" },
2294 { REG_AR_BASE+13, "ar13" },
2295 { REG_AR_BASE+14, "ar14" },
2296 { REG_AR_BASE+15, "ar15" },
2297 { REG_AR_BASE+16, "ar16" },
2298 { REG_AR_BASE+17, "ar17" },
2299 { REG_AR_BASE+18, "ar18" },
2300 { REG_AR_BASE+19, "ar19" },
2301 { REG_AR_BASE+20, "ar20" },
2302 { REG_AR_BASE+21, "ar21" },
2303 { REG_AR_BASE+22, "ar22" },
2304 { REG_AR_BASE+23, "ar23" },
2305 { REG_AR_BASE+24, "ar24" },
2306 { REG_AR_BASE+25, "ar25" },
2307 { REG_AR_BASE+26, "ar26" },
2308 { REG_AR_BASE+27, "ar27" },
2309 { REG_AR_BASE+28, "ar28" },
2310 { REG_AR_BASE+29, "ar29" },
2311 { REG_AR_BASE+30, "ar30" },
2312 { REG_AR_BASE+31, "ar31" },
2313 { REG_AR_BASE+32, "ar32" },
2314 { REG_AR_BASE+33, "ar33" },
2315 { REG_AR_BASE+34, "ar34" },
2316 { REG_AR_BASE+35, "ar35" },
2317 { REG_AR_BASE+36, "ar36" },
2318 { REG_AR_BASE+37, "ar37" },
2319 { REG_AR_BASE+38, "ar38" },
2320 { REG_AR_BASE+39, "ar39" },
2321 { REG_AR_BASE+40, "ar40" },
2322 { REG_AR_BASE+41, "ar41" },
2323 { REG_AR_BASE+42, "ar42" },
2324 { REG_AR_BASE+43, "ar43" },
2325 { REG_AR_BASE+44, "ar44" },
2326 { REG_AR_BASE+45, "ar45" },
2327 { REG_AR_BASE+46, "ar46" },
2328 { REG_AR_BASE+47, "ar47" },
2329 { REG_AR_BASE+48, "ar48" },
2330 { REG_AR_BASE+49, "ar49" },
2331 { REG_AR_BASE+50, "ar50" },
2332 { REG_AR_BASE+51, "ar51" },
2333 { REG_AR_BASE+52, "ar52" },
2334 { REG_AR_BASE+53, "ar53" },
2335 { REG_AR_BASE+54, "ar54" },
2336 { REG_AR_BASE+55, "ar55" },
2337 { REG_AR_BASE+56, "ar56" },
2338 { REG_AR_BASE+57, "ar57" },
2339 { REG_AR_BASE+58, "ar58" },
2340 { REG_AR_BASE+59, "ar59" },
2341 { REG_AR_BASE+60, "ar60" },
2342 { REG_AR_BASE+61, "ar61" },
2343 { REG_AR_BASE+62, "ar62" },
2344 { REG_AR_BASE+63, "ar63" },
2345 { REG_LBEG, "lbeg" },
2346 { REG_LEND, "lend" },
2347 { REG_LCOUNT, "lcount" },
2348 { REG_SAR, "sar" },
2349 { REG_WB, "wb" },
2350 { REG_WS, "ws" },
2351 { REG_PS, "ps" },
2352 { REG_PC, "pc" },
2353 { REG_A_BASE, "a0" },
2354 { REG_A_BASE+1, "a1" },
2355 { REG_A_BASE+2, "a2" },
2356 { REG_A_BASE+3, "a3" },
2357 { REG_A_BASE+4, "a4" },
2358 { REG_A_BASE+5, "a5" },
2359 { REG_A_BASE+6, "a6" },
2360 { REG_A_BASE+7, "a7" },
2361 { REG_A_BASE+8, "a8" },
2362 { REG_A_BASE+9, "a9" },
2363 { REG_A_BASE+10, "a10" },
2364 { REG_A_BASE+11, "a11" },
2365 { REG_A_BASE+12, "a12" },
2366 { REG_A_BASE+13, "a13" },
2367 { REG_A_BASE+14, "a14" },
2368 { REG_A_BASE+15, "a15" },
2369#endif
2370
Denys Vlasenko729e18d2013-02-12 15:51:58 +01002371 /* Other fields in "struct user" */
2372#if defined(S390) || defined(S390X)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002373 { uoff(u_tsize), "offsetof(struct user, u_tsize)" },
2374 { uoff(u_dsize), "offsetof(struct user, u_dsize)" },
2375 { uoff(u_ssize), "offsetof(struct user, u_ssize)" },
Denys Vlasenko74307a62013-02-12 17:10:05 +01002376 { uoff(start_code), "offsetof(struct user, start_code)" },
2377 /* S390[X] has no start_data */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002378 { uoff(start_stack), "offsetof(struct user, start_stack)" },
2379 { uoff(signal), "offsetof(struct user, signal)" },
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002380 { uoff(u_ar0), "offsetof(struct user, u_ar0)" },
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002381 { uoff(magic), "offsetof(struct user, magic)" },
2382 { uoff(u_comm), "offsetof(struct user, u_comm)" },
Denys Vlasenko729e18d2013-02-12 15:51:58 +01002383 { sizeof(struct user), "sizeof(struct user)" },
2384#elif defined(POWERPC)
2385 { sizeof(struct user), "sizeof(struct user)" },
2386#elif defined(I386) || defined(X86_64) || defined(X32)
2387 { uoff(u_fpvalid), "offsetof(struct user, u_fpvalid)" },
2388 { uoff(i387), "offsetof(struct user, i387)" },
2389 { uoff(u_tsize), "offsetof(struct user, u_tsize)" },
2390 { uoff(u_dsize), "offsetof(struct user, u_dsize)" },
2391 { uoff(u_ssize), "offsetof(struct user, u_ssize)" },
2392 { uoff(start_code), "offsetof(struct user, start_code)" },
2393 { uoff(start_stack), "offsetof(struct user, start_stack)" },
2394 { uoff(signal), "offsetof(struct user, signal)" },
2395 { uoff(reserved), "offsetof(struct user, reserved)" },
2396 { uoff(u_ar0), "offsetof(struct user, u_ar0)" },
2397 { uoff(u_fpstate), "offsetof(struct user, u_fpstate)" },
2398 { uoff(magic), "offsetof(struct user, magic)" },
2399 { uoff(u_comm), "offsetof(struct user, u_comm)" },
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002400 { uoff(u_debugreg), "offsetof(struct user, u_debugreg)" },
Denys Vlasenko729e18d2013-02-12 15:51:58 +01002401 { sizeof(struct user), "sizeof(struct user)" },
2402#elif defined(IA64)
2403 { sizeof(struct user), "sizeof(struct user)" },
2404#elif defined(ARM)
2405 { uoff(u_fpvalid), "offsetof(struct user, u_fpvalid)" },
2406 { uoff(u_tsize), "offsetof(struct user, u_tsize)" },
2407 { uoff(u_dsize), "offsetof(struct user, u_dsize)" },
2408 { uoff(u_ssize), "offsetof(struct user, u_ssize)" },
2409 { uoff(start_code), "offsetof(struct user, start_code)" },
2410 { uoff(start_stack), "offsetof(struct user, start_stack)" },
2411 { uoff(signal), "offsetof(struct user, signal)" },
2412 { uoff(reserved), "offsetof(struct user, reserved)" },
2413 { uoff(u_ar0), "offsetof(struct user, u_ar0)" },
2414 { uoff(magic), "offsetof(struct user, magic)" },
2415 { uoff(u_comm), "offsetof(struct user, u_comm)" },
2416 { sizeof(struct user), "sizeof(struct user)" },
2417#elif defined(AARCH64)
2418 /* nothing */
2419#elif defined(M68K)
2420 { uoff(u_fpvalid), "offsetof(struct user, u_fpvalid)" },
2421 { uoff(m68kfp), "offsetof(struct user, m68kfp)" },
2422 { uoff(u_tsize), "offsetof(struct user, u_tsize)" },
2423 { uoff(u_dsize), "offsetof(struct user, u_dsize)" },
2424 { uoff(u_ssize), "offsetof(struct user, u_ssize)" },
2425 { uoff(start_code), "offsetof(struct user, start_code)" },
2426 { uoff(start_stack), "offsetof(struct user, start_stack)" },
2427 { uoff(signal), "offsetof(struct user, signal)" },
2428 { uoff(reserved), "offsetof(struct user, reserved)" },
2429 { uoff(u_ar0), "offsetof(struct user, u_ar0)" },
2430 { uoff(u_fpstate), "offsetof(struct user, u_fpstate)" },
2431 { uoff(magic), "offsetof(struct user, magic)" },
2432 { uoff(u_comm), "offsetof(struct user, u_comm)" },
2433 { sizeof(struct user), "sizeof(struct user)" },
Denys Vlasenko873e5a52013-02-12 17:15:19 +01002434#elif defined(MIPS) || defined(LINUX_MIPSN32)
Denys Vlasenko729e18d2013-02-12 15:51:58 +01002435 { uoff(u_tsize), "offsetof(struct user, u_tsize)" },
2436 { uoff(u_dsize), "offsetof(struct user, u_dsize)" },
2437 { uoff(u_ssize), "offsetof(struct user, u_ssize)" },
2438 { uoff(start_code), "offsetof(struct user, start_code)" },
Denys Vlasenko74307a62013-02-12 17:10:05 +01002439 { uoff(start_data), "offsetof(struct user, start_data)" },
Denys Vlasenko729e18d2013-02-12 15:51:58 +01002440 { uoff(start_stack), "offsetof(struct user, start_stack)" },
2441 { uoff(signal), "offsetof(struct user, signal)" },
2442 { uoff(u_ar0), "offsetof(struct user, u_ar0)" },
2443 { uoff(magic), "offsetof(struct user, magic)" },
2444 { uoff(u_comm), "offsetof(struct user, u_comm)" },
2445 { sizeof(struct user), "sizeof(struct user)" },
2446#elif defined(ALPHA)
2447 { sizeof(struct user), "sizeof(struct user)" },
2448#elif defined(SPARC)
2449 { sizeof(struct user), "sizeof(struct user)" },
2450#elif defined(SPARC64)
2451 { uoff(u_tsize), "offsetof(struct user, u_tsize)" },
2452 { uoff(u_dsize), "offsetof(struct user, u_dsize)" },
2453 { uoff(u_ssize), "offsetof(struct user, u_ssize)" },
2454 { uoff(signal), "offsetof(struct user, signal)" },
2455 { uoff(magic), "offsetof(struct user, magic)" },
2456 { uoff(u_comm), "offsetof(struct user, u_comm)" },
2457 { sizeof(struct user), "sizeof(struct user)" },
2458#elif defined(HPPA)
2459 /* nothing */
Denys Vlasenko873e5a52013-02-12 17:15:19 +01002460#elif defined(SH) || defined(SH64)
Denys Vlasenko729e18d2013-02-12 15:51:58 +01002461 { uoff(u_fpvalid), "offsetof(struct user, u_fpvalid)" },
2462 { uoff(u_tsize), "offsetof(struct user, u_tsize)" },
2463 { uoff(u_dsize), "offsetof(struct user, u_dsize)" },
2464 { uoff(u_ssize), "offsetof(struct user, u_ssize)" },
2465 { uoff(start_code), "offsetof(struct user, start_code)" },
2466 { uoff(start_data), "offsetof(struct user, start_data)" },
2467 { uoff(start_stack), "offsetof(struct user, start_stack)" },
2468 { uoff(signal), "offsetof(struct user, signal)" },
2469 { uoff(u_ar0), "offsetof(struct user, u_ar0)" },
2470 { uoff(u_fpstate), "offsetof(struct user, u_fpstate)" },
2471 { uoff(magic), "offsetof(struct user, magic)" },
2472 { uoff(u_comm), "offsetof(struct user, u_comm)" },
2473 { sizeof(struct user), "sizeof(struct user)" },
2474#elif defined(CRISV10) || defined(CRISV32)
2475 { sizeof(struct user), "sizeof(struct user)" },
2476#elif defined(TILE)
2477 /* nothing */
2478#elif defined(MICROBLAZE)
2479 { sizeof(struct user), "sizeof(struct user)" },
2480#elif defined(AVR32)
2481 { uoff(u_tsize), "offsetof(struct user, u_tsize)" },
2482 { uoff(u_dsize), "offsetof(struct user, u_dsize)" },
2483 { uoff(u_ssize), "offsetof(struct user, u_ssize)" },
2484 { uoff(start_code), "offsetof(struct user, start_code)" },
2485 { uoff(start_data), "offsetof(struct user, start_data)" },
2486 { uoff(start_stack), "offsetof(struct user, start_stack)" },
2487 { uoff(signal), "offsetof(struct user, signal)" },
2488 { uoff(u_ar0), "offsetof(struct user, u_ar0)" },
2489 { uoff(magic), "offsetof(struct user, magic)" },
2490 { uoff(u_comm), "offsetof(struct user, u_comm)" },
2491 { sizeof(struct user), "sizeof(struct user)" },
2492#elif defined(BFIN)
2493 { uoff(u_tsize), "offsetof(struct user, u_tsize)" },
2494 { uoff(u_dsize), "offsetof(struct user, u_dsize)" },
2495 { uoff(u_ssize), "offsetof(struct user, u_ssize)" },
2496 { uoff(start_code), "offsetof(struct user, start_code)" },
2497 { uoff(signal), "offsetof(struct user, signal)" },
2498 { uoff(u_ar0), "offsetof(struct user, u_ar0)" },
2499 { uoff(magic), "offsetof(struct user, magic)" },
2500 { uoff(u_comm), "offsetof(struct user, u_comm)" },
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002501 { sizeof(struct user), "sizeof(struct user)" },
Christian Svensson492f81f2013-02-14 13:26:27 +01002502#elif defined(OR1K)
2503 /* nothing */
James Hogan5f999a82013-02-22 14:44:10 +00002504#elif defined(METAG)
2505 /* nothing */
Chris Zankel8f636ed2013-03-25 10:22:07 -07002506#elif defined(XTENSA)
2507 /* nothing */
Vineet Gupta7daacbb2013-08-16 12:47:06 +05302508#elif defined(ARC)
2509 /* nothing */
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01002510#endif
Dmitry V. Levin59452732014-02-05 02:20:51 +00002511 XLAT_END
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002512};
2513
2514int
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00002515sys_ptrace(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002516{
Roland McGrathd9f816f2004-09-04 03:39:20 +00002517 const struct xlat *x;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002518 long addr;
2519
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002520 if (entering(tcp)) {
Denys Vlasenkob7a6dae2012-03-20 16:48:35 +01002521 printxval(ptrace_cmds, tcp->u_arg[0], "PTRACE_???");
Roland McGrathbf621d42003-01-14 09:46:21 +00002522 tprintf(", %lu, ", tcp->u_arg[1]);
Denys Vlasenkobe994972013-02-13 16:10:10 +01002523
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002524 addr = tcp->u_arg[2];
2525 if (tcp->u_arg[0] == PTRACE_PEEKUSER
Denys Vlasenkobe994972013-02-13 16:10:10 +01002526 || tcp->u_arg[0] == PTRACE_POKEUSER
2527 ) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002528 for (x = struct_user_offsets; x->str; x++) {
2529 if (x->val >= addr)
2530 break;
2531 }
2532 if (!x->str)
2533 tprintf("%#lx, ", addr);
2534 else if (x->val > addr && x != struct_user_offsets) {
2535 x--;
2536 tprintf("%s + %ld, ", x->str, addr - x->val);
2537 }
2538 else
2539 tprintf("%s, ", x->str);
Denys Vlasenkobe994972013-02-13 16:10:10 +01002540 } else
2541#ifdef PTRACE_GETREGSET
Dmitry V. Levinc41808b2013-03-18 00:52:29 +00002542 if (tcp->u_arg[0] == PTRACE_GETREGSET
2543 || tcp->u_arg[0] == PTRACE_SETREGSET
2544 ) {
2545 printxval(nt_descriptor_types, tcp->u_arg[2], "NT_???");
2546 tprints(", ");
2547 } else
Denys Vlasenkobe994972013-02-13 16:10:10 +01002548#endif
2549 tprintf("%#lx, ", addr);
2550
2551
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002552 switch (tcp->u_arg[0]) {
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01002553#ifndef IA64
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002554 case PTRACE_PEEKDATA:
2555 case PTRACE_PEEKTEXT:
2556 case PTRACE_PEEKUSER:
2557 break;
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01002558#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002559 case PTRACE_CONT:
2560 case PTRACE_SINGLESTEP:
2561 case PTRACE_SYSCALL:
2562 case PTRACE_DETACH:
2563 printsignal(tcp->u_arg[3]);
2564 break;
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01002565#ifdef PTRACE_SETOPTIONS
Denys Vlasenkof535b542009-01-13 18:30:55 +00002566 case PTRACE_SETOPTIONS:
2567 printflags(ptrace_setoptions_flags, tcp->u_arg[3], "PTRACE_O_???");
2568 break;
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01002569#endif
2570#ifdef PTRACE_SETSIGINFO
Denys Vlasenkof535b542009-01-13 18:30:55 +00002571 case PTRACE_SETSIGINFO: {
Denys Vlasenkod4d3ede2013-02-13 16:31:32 +01002572 printsiginfo_at(tcp, tcp->u_arg[3]);
Denys Vlasenkof535b542009-01-13 18:30:55 +00002573 break;
2574 }
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01002575#endif
2576#ifdef PTRACE_GETSIGINFO
Denys Vlasenkof535b542009-01-13 18:30:55 +00002577 case PTRACE_GETSIGINFO:
2578 /* Don't print anything, do it at syscall return. */
2579 break;
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01002580#endif
Denys Vlasenkobe994972013-02-13 16:10:10 +01002581#ifdef PTRACE_GETREGSET
2582 case PTRACE_GETREGSET:
2583 break;
2584 case PTRACE_SETREGSET:
2585 tprint_iov(tcp, /*len:*/ 1, tcp->u_arg[3], /*as string:*/ 0);
2586 break;
2587#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002588 default:
2589 tprintf("%#lx", tcp->u_arg[3]);
2590 break;
2591 }
2592 } else {
2593 switch (tcp->u_arg[0]) {
2594 case PTRACE_PEEKDATA:
2595 case PTRACE_PEEKTEXT:
2596 case PTRACE_PEEKUSER:
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01002597#ifdef IA64
Roland McGrath1e868062007-11-19 22:11:45 +00002598 return RVAL_HEX;
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01002599#else
Roland McGratheb285352003-01-14 09:59:00 +00002600 printnum(tcp, tcp->u_arg[3], "%#lx");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002601 break;
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01002602#endif
2603#ifdef PTRACE_GETSIGINFO
Denys Vlasenkof535b542009-01-13 18:30:55 +00002604 case PTRACE_GETSIGINFO: {
Denys Vlasenkod4d3ede2013-02-13 16:31:32 +01002605 printsiginfo_at(tcp, tcp->u_arg[3]);
Denys Vlasenkof535b542009-01-13 18:30:55 +00002606 break;
2607 }
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01002608#endif
Denys Vlasenkobe994972013-02-13 16:10:10 +01002609#ifdef PTRACE_GETREGSET
2610 case PTRACE_GETREGSET:
2611 tprint_iov(tcp, /*len:*/ 1, tcp->u_arg[3], /*as string:*/ 0);
2612 break;
2613#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002614 }
2615 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002616 return 0;
2617}
2618
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01002619#ifndef FUTEX_CMP_REQUEUE
2620# define FUTEX_CMP_REQUEUE 4
2621#endif
2622#ifndef FUTEX_WAKE_OP
2623# define FUTEX_WAKE_OP 5
2624#endif
2625#ifndef FUTEX_LOCK_PI
2626# define FUTEX_LOCK_PI 6
2627# define FUTEX_UNLOCK_PI 7
2628# define FUTEX_TRYLOCK_PI 8
2629#endif
2630#ifndef FUTEX_WAIT_BITSET
2631# define FUTEX_WAIT_BITSET 9
2632#endif
2633#ifndef FUTEX_WAKE_BITSET
2634# define FUTEX_WAKE_BITSET 10
2635#endif
2636#ifndef FUTEX_WAIT_REQUEUE_PI
2637# define FUTEX_WAIT_REQUEUE_PI 11
2638#endif
2639#ifndef FUTEX_CMP_REQUEUE_PI
2640# define FUTEX_CMP_REQUEUE_PI 12
2641#endif
2642#ifndef FUTEX_PRIVATE_FLAG
2643# define FUTEX_PRIVATE_FLAG 128
2644#endif
2645#ifndef FUTEX_CLOCK_REALTIME
2646# define FUTEX_CLOCK_REALTIME 256
2647#endif
Dmitry V. Levin9f56d872014-02-05 02:01:16 +00002648#ifndef FUTEX_WAIT_PRIVATE
2649# define FUTEX_WAIT_PRIVATE (FUTEX_WAIT | FUTEX_PRIVATE_FLAG)
2650#endif
2651#ifndef FUTEX_WAKE_PRIVATE
2652# define FUTEX_WAKE_PRIVATE (FUTEX_WAKE | FUTEX_PRIVATE_FLAG)
2653#endif
2654#ifndef FUTEX_REQUEUE_PRIVATE
2655# define FUTEX_REQUEUE_PRIVATE (FUTEX_REQUEUE | FUTEX_PRIVATE_FLAG)
2656#endif
2657#ifndef FUTEX_CMP_REQUEUE_PRIVATE
2658# define FUTEX_CMP_REQUEUE_PRIVATE (FUTEX_CMP_REQUEUE | FUTEX_PRIVATE_FLAG)
2659#endif
2660#ifndef FUTEX_WAKE_OP_PRIVATE
2661# define FUTEX_WAKE_OP_PRIVATE (FUTEX_WAKE_OP | FUTEX_PRIVATE_FLAG)
2662#endif
2663#ifndef FUTEX_LOCK_PI_PRIVATE
2664# define FUTEX_LOCK_PI_PRIVATE (FUTEX_LOCK_PI | FUTEX_PRIVATE_FLAG)
2665#endif
2666#ifndef FUTEX_UNLOCK_PI_PRIVATE
2667# define FUTEX_UNLOCK_PI_PRIVATE (FUTEX_UNLOCK_PI | FUTEX_PRIVATE_FLAG)
2668#endif
2669#ifndef FUTEX_TRYLOCK_PI_PRIVATE
2670# define FUTEX_TRYLOCK_PI_PRIVATE (FUTEX_TRYLOCK_PI | FUTEX_PRIVATE_FLAG)
2671#endif
2672#ifndef FUTEX_WAIT_BITSET_PRIVATE
2673# define FUTEX_WAIT_BITSET_PRIVATE (FUTEX_WAIT_BITSET | FUTEX_PRIVATE_FLAG)
2674#endif
2675#ifndef FUTEX_WAKE_BITSET_PRIVATE
2676# define FUTEX_WAKE_BITSET_PRIVATE (FUTEX_WAKE_BITSET | FUTEX_PRIVATE_FLAG)
2677#endif
2678#ifndef FUTEX_WAIT_REQUEUE_PI_PRIVATE
2679# define FUTEX_WAIT_REQUEUE_PI_PRIVATE (FUTEX_WAIT_REQUEUE_PI | FUTEX_PRIVATE_FLAG)
2680#endif
2681#ifndef FUTEX_CMP_REQUEUE_PI_PRIVATE
2682# define FUTEX_CMP_REQUEUE_PI_PRIVATE (FUTEX_CMP_REQUEUE_PI | FUTEX_PRIVATE_FLAG)
2683#endif
Roland McGrathd9f816f2004-09-04 03:39:20 +00002684static const struct xlat futexops[] = {
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00002685 XLAT(FUTEX_WAIT),
2686 XLAT(FUTEX_WAKE),
2687 XLAT(FUTEX_FD),
2688 XLAT(FUTEX_REQUEUE),
2689 XLAT(FUTEX_CMP_REQUEUE),
2690 XLAT(FUTEX_WAKE_OP),
2691 XLAT(FUTEX_LOCK_PI),
2692 XLAT(FUTEX_UNLOCK_PI),
2693 XLAT(FUTEX_TRYLOCK_PI),
2694 XLAT(FUTEX_WAIT_BITSET),
2695 XLAT(FUTEX_WAKE_BITSET),
2696 XLAT(FUTEX_WAIT_REQUEUE_PI),
2697 XLAT(FUTEX_CMP_REQUEUE_PI),
Dmitry V. Levin9f56d872014-02-05 02:01:16 +00002698 XLAT(FUTEX_WAIT_PRIVATE),
2699 XLAT(FUTEX_WAKE_PRIVATE),
2700 XLAT(FUTEX_FD|FUTEX_PRIVATE_FLAG),
2701 XLAT(FUTEX_REQUEUE_PRIVATE),
2702 XLAT(FUTEX_CMP_REQUEUE_PRIVATE),
2703 XLAT(FUTEX_WAKE_OP_PRIVATE),
2704 XLAT(FUTEX_LOCK_PI_PRIVATE),
2705 XLAT(FUTEX_UNLOCK_PI_PRIVATE),
2706 XLAT(FUTEX_TRYLOCK_PI_PRIVATE),
2707 XLAT(FUTEX_WAIT_BITSET_PRIVATE),
2708 XLAT(FUTEX_WAKE_BITSET_PRIVATE),
2709 XLAT(FUTEX_WAIT_REQUEUE_PI_PRIVATE),
2710 XLAT(FUTEX_CMP_REQUEUE_PI_PRIVATE),
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00002711 XLAT(FUTEX_WAIT_BITSET|FUTEX_CLOCK_REALTIME),
Dmitry V. Levin9f56d872014-02-05 02:01:16 +00002712 XLAT(FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME),
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00002713 XLAT(FUTEX_WAIT_REQUEUE_PI|FUTEX_CLOCK_REALTIME),
Dmitry V. Levin9f56d872014-02-05 02:01:16 +00002714 XLAT(FUTEX_WAIT_REQUEUE_PI_PRIVATE|FUTEX_CLOCK_REALTIME),
Dmitry V. Levin59452732014-02-05 02:20:51 +00002715 XLAT_END
Roland McGrath51942a92007-07-05 18:59:11 +00002716};
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01002717#ifndef FUTEX_OP_SET
2718# define FUTEX_OP_SET 0
2719# define FUTEX_OP_ADD 1
2720# define FUTEX_OP_OR 2
2721# define FUTEX_OP_ANDN 3
2722# define FUTEX_OP_XOR 4
2723# define FUTEX_OP_CMP_EQ 0
2724# define FUTEX_OP_CMP_NE 1
2725# define FUTEX_OP_CMP_LT 2
2726# define FUTEX_OP_CMP_LE 3
2727# define FUTEX_OP_CMP_GT 4
2728# define FUTEX_OP_CMP_GE 5
2729#endif
Roland McGrath51942a92007-07-05 18:59:11 +00002730static const struct xlat futexwakeops[] = {
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00002731 XLAT(FUTEX_OP_SET),
2732 XLAT(FUTEX_OP_ADD),
2733 XLAT(FUTEX_OP_OR),
2734 XLAT(FUTEX_OP_ANDN),
2735 XLAT(FUTEX_OP_XOR),
Dmitry V. Levin59452732014-02-05 02:20:51 +00002736 XLAT_END
Roland McGrath51942a92007-07-05 18:59:11 +00002737};
2738static const struct xlat futexwakecmps[] = {
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00002739 XLAT(FUTEX_OP_CMP_EQ),
2740 XLAT(FUTEX_OP_CMP_NE),
2741 XLAT(FUTEX_OP_CMP_LT),
2742 XLAT(FUTEX_OP_CMP_LE),
2743 XLAT(FUTEX_OP_CMP_GT),
2744 XLAT(FUTEX_OP_CMP_GE),
Dmitry V. Levin59452732014-02-05 02:20:51 +00002745 XLAT_END
Roland McGrath5a223472002-12-15 23:58:26 +00002746};
2747
2748int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002749sys_futex(struct tcb *tcp)
Roland McGrath5a223472002-12-15 23:58:26 +00002750{
Denys Vlasenko1d632462009-04-14 12:51:00 +00002751 if (entering(tcp)) {
2752 long int cmd = tcp->u_arg[1] & 127;
2753 tprintf("%p, ", (void *) tcp->u_arg[0]);
2754 printxval(futexops, tcp->u_arg[1], "FUTEX_???");
2755 tprintf(", %ld", tcp->u_arg[2]);
2756 if (cmd == FUTEX_WAKE_BITSET)
2757 tprintf(", %lx", tcp->u_arg[5]);
2758 else if (cmd == FUTEX_WAIT) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002759 tprints(", ");
Denys Vlasenko1d632462009-04-14 12:51:00 +00002760 printtv(tcp, tcp->u_arg[3]);
2761 } else if (cmd == FUTEX_WAIT_BITSET) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002762 tprints(", ");
Denys Vlasenko1d632462009-04-14 12:51:00 +00002763 printtv(tcp, tcp->u_arg[3]);
2764 tprintf(", %lx", tcp->u_arg[5]);
2765 } else if (cmd == FUTEX_REQUEUE)
2766 tprintf(", %ld, %p", tcp->u_arg[3], (void *) tcp->u_arg[4]);
Andreas Schwab85f58322009-08-12 09:54:42 +02002767 else if (cmd == FUTEX_CMP_REQUEUE || cmd == FUTEX_CMP_REQUEUE_PI)
Denys Vlasenko1d632462009-04-14 12:51:00 +00002768 tprintf(", %ld, %p, %ld", tcp->u_arg[3], (void *) tcp->u_arg[4], tcp->u_arg[5]);
2769 else if (cmd == FUTEX_WAKE_OP) {
2770 tprintf(", %ld, %p, {", tcp->u_arg[3], (void *) tcp->u_arg[4]);
2771 if ((tcp->u_arg[5] >> 28) & 8)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002772 tprints("FUTEX_OP_OPARG_SHIFT|");
Denys Vlasenko1d632462009-04-14 12:51:00 +00002773 printxval(futexwakeops, (tcp->u_arg[5] >> 28) & 0x7, "FUTEX_OP_???");
2774 tprintf(", %ld, ", (tcp->u_arg[5] >> 12) & 0xfff);
2775 if ((tcp->u_arg[5] >> 24) & 8)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002776 tprints("FUTEX_OP_OPARG_SHIFT|");
Denys Vlasenko1d632462009-04-14 12:51:00 +00002777 printxval(futexwakecmps, (tcp->u_arg[5] >> 24) & 0x7, "FUTEX_OP_CMP_???");
2778 tprintf(", %ld}", tcp->u_arg[5] & 0xfff);
Andreas Schwab85f58322009-08-12 09:54:42 +02002779 } else if (cmd == FUTEX_WAIT_REQUEUE_PI) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002780 tprints(", ");
Andreas Schwab85f58322009-08-12 09:54:42 +02002781 printtv(tcp, tcp->u_arg[3]);
2782 tprintf(", %p", (void *) tcp->u_arg[4]);
Denys Vlasenko1d632462009-04-14 12:51:00 +00002783 }
Roland McGrath51942a92007-07-05 18:59:11 +00002784 }
Denys Vlasenko1d632462009-04-14 12:51:00 +00002785 return 0;
Roland McGrath5a223472002-12-15 23:58:26 +00002786}
2787
2788static void
Denys Vlasenko1d632462009-04-14 12:51:00 +00002789print_affinitylist(struct tcb *tcp, long list, unsigned int len)
Roland McGrath5a223472002-12-15 23:58:26 +00002790{
Denys Vlasenko1d632462009-04-14 12:51:00 +00002791 int first = 1;
Dmitry V. Levin62e05962009-11-03 14:38:44 +00002792 unsigned long w, min_len;
2793
2794 if (abbrev(tcp) && len / sizeof(w) > max_strlen)
2795 min_len = len - max_strlen * sizeof(w);
2796 else
2797 min_len = 0;
2798 for (; len >= sizeof(w) && len > min_len;
2799 len -= sizeof(w), list += sizeof(w)) {
2800 if (umove(tcp, list, &w) < 0)
2801 break;
2802 if (first)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002803 tprints("{");
Dmitry V. Levin62e05962009-11-03 14:38:44 +00002804 else
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002805 tprints(", ");
Denys Vlasenko1d632462009-04-14 12:51:00 +00002806 first = 0;
Dmitry V. Levin62e05962009-11-03 14:38:44 +00002807 tprintf("%lx", w);
Denys Vlasenko1d632462009-04-14 12:51:00 +00002808 }
Dmitry V. Levin62e05962009-11-03 14:38:44 +00002809 if (len) {
2810 if (first)
2811 tprintf("%#lx", list);
2812 else
2813 tprintf(", %s}", (len >= sizeof(w) && len > min_len ?
2814 "???" : "..."));
2815 } else {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002816 tprints(first ? "{}" : "}");
Dmitry V. Levin62e05962009-11-03 14:38:44 +00002817 }
Roland McGrath5a223472002-12-15 23:58:26 +00002818}
2819
2820int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002821sys_sched_setaffinity(struct tcb *tcp)
Roland McGrath5a223472002-12-15 23:58:26 +00002822{
Denys Vlasenko1d632462009-04-14 12:51:00 +00002823 if (entering(tcp)) {
2824 tprintf("%ld, %lu, ", tcp->u_arg[0], tcp->u_arg[1]);
2825 print_affinitylist(tcp, tcp->u_arg[2], tcp->u_arg[1]);
2826 }
2827 return 0;
Roland McGrath5a223472002-12-15 23:58:26 +00002828}
2829
2830int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002831sys_sched_getaffinity(struct tcb *tcp)
Roland McGrath5a223472002-12-15 23:58:26 +00002832{
Denys Vlasenko1d632462009-04-14 12:51:00 +00002833 if (entering(tcp)) {
2834 tprintf("%ld, %lu, ", tcp->u_arg[0], tcp->u_arg[1]);
2835 } else {
2836 if (tcp->u_rval == -1)
2837 tprintf("%#lx", tcp->u_arg[2]);
2838 else
2839 print_affinitylist(tcp, tcp->u_arg[2], tcp->u_rval);
2840 }
2841 return 0;
Roland McGrath5a223472002-12-15 23:58:26 +00002842}
Roland McGrath279d3782004-03-01 20:27:37 +00002843
Dmitry V. Levin1b0bae22012-03-11 22:32:26 +00002844int
2845sys_get_robust_list(struct tcb *tcp)
2846{
2847 if (entering(tcp)) {
2848 tprintf("%ld, ", (long) (pid_t) tcp->u_arg[0]);
2849 } else {
2850 void *addr;
2851 size_t len;
2852
2853 if (syserror(tcp) ||
2854 !tcp->u_arg[1] ||
2855 umove(tcp, tcp->u_arg[1], &addr) < 0) {
2856 tprintf("%#lx, ", tcp->u_arg[1]);
2857 } else {
2858 tprintf("[%p], ", addr);
2859 }
2860
2861 if (syserror(tcp) ||
2862 !tcp->u_arg[2] ||
2863 umove(tcp, tcp->u_arg[2], &len) < 0) {
2864 tprintf("%#lx", tcp->u_arg[2]);
2865 } else {
2866 tprintf("[%lu]", (unsigned long) len);
2867 }
2868 }
2869 return 0;
2870}
2871
Roland McGrathd9f816f2004-09-04 03:39:20 +00002872static const struct xlat schedulers[] = {
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00002873 XLAT(SCHED_OTHER),
2874 XLAT(SCHED_RR),
2875 XLAT(SCHED_FIFO),
Dmitry V. Levin59452732014-02-05 02:20:51 +00002876 XLAT_END
Roland McGrath279d3782004-03-01 20:27:37 +00002877};
2878
2879int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002880sys_sched_getscheduler(struct tcb *tcp)
Roland McGrath279d3782004-03-01 20:27:37 +00002881{
Denys Vlasenko1d632462009-04-14 12:51:00 +00002882 if (entering(tcp)) {
2883 tprintf("%d", (int) tcp->u_arg[0]);
Denys Vlasenkob237b1b2012-02-27 13:56:59 +01002884 } else if (!syserror(tcp)) {
Denys Vlasenkob63256e2011-06-07 12:13:24 +02002885 tcp->auxstr = xlookup(schedulers, tcp->u_rval);
Denys Vlasenko1d632462009-04-14 12:51:00 +00002886 if (tcp->auxstr != NULL)
2887 return RVAL_STR;
2888 }
2889 return 0;
Roland McGrath279d3782004-03-01 20:27:37 +00002890}
2891
2892int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002893sys_sched_setscheduler(struct tcb *tcp)
Roland McGrath279d3782004-03-01 20:27:37 +00002894{
Denys Vlasenko1d632462009-04-14 12:51:00 +00002895 if (entering(tcp)) {
2896 struct sched_param p;
2897 tprintf("%d, ", (int) tcp->u_arg[0]);
2898 printxval(schedulers, tcp->u_arg[1], "SCHED_???");
2899 if (umove(tcp, tcp->u_arg[2], &p) < 0)
2900 tprintf(", %#lx", tcp->u_arg[2]);
2901 else
Dmitry V. Levine19a7122013-11-12 15:09:56 +00002902 tprintf(", { %d }", p.sched_priority);
Denys Vlasenko1d632462009-04-14 12:51:00 +00002903 }
2904 return 0;
Roland McGrath279d3782004-03-01 20:27:37 +00002905}
2906
2907int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002908sys_sched_getparam(struct tcb *tcp)
Roland McGrath279d3782004-03-01 20:27:37 +00002909{
Denys Vlasenko1d632462009-04-14 12:51:00 +00002910 if (entering(tcp)) {
2911 tprintf("%d, ", (int) tcp->u_arg[0]);
2912 } else {
2913 struct sched_param p;
2914 if (umove(tcp, tcp->u_arg[1], &p) < 0)
2915 tprintf("%#lx", tcp->u_arg[1]);
2916 else
Dmitry V. Levine19a7122013-11-12 15:09:56 +00002917 tprintf("{ %d }", p.sched_priority);
Denys Vlasenko1d632462009-04-14 12:51:00 +00002918 }
2919 return 0;
Roland McGrath279d3782004-03-01 20:27:37 +00002920}
2921
2922int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002923sys_sched_setparam(struct tcb *tcp)
Roland McGrath279d3782004-03-01 20:27:37 +00002924{
Denys Vlasenko1d632462009-04-14 12:51:00 +00002925 if (entering(tcp)) {
2926 struct sched_param p;
2927 if (umove(tcp, tcp->u_arg[1], &p) < 0)
2928 tprintf("%d, %#lx", (int) tcp->u_arg[0], tcp->u_arg[1]);
2929 else
Dmitry V. Levine19a7122013-11-12 15:09:56 +00002930 tprintf("%d, { %d }", (int) tcp->u_arg[0], p.sched_priority);
Denys Vlasenko1d632462009-04-14 12:51:00 +00002931 }
2932 return 0;
Roland McGrath279d3782004-03-01 20:27:37 +00002933}
2934
2935int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002936sys_sched_get_priority_min(struct tcb *tcp)
Roland McGrath279d3782004-03-01 20:27:37 +00002937{
Denys Vlasenko1d632462009-04-14 12:51:00 +00002938 if (entering(tcp)) {
2939 printxval(schedulers, tcp->u_arg[0], "SCHED_???");
2940 }
2941 return 0;
Roland McGrath279d3782004-03-01 20:27:37 +00002942}
Roland McGrathc2d5eb02005-02-02 04:16:56 +00002943
Dmitry V. Levin1ff463d2012-03-11 23:00:11 +00002944int
2945sys_sched_rr_get_interval(struct tcb *tcp)
2946{
2947 if (entering(tcp)) {
2948 tprintf("%ld, ", (long) (pid_t) tcp->u_arg[0]);
2949 } else {
2950 if (syserror(tcp))
2951 tprintf("%#lx", tcp->u_arg[1]);
2952 else
2953 print_timespec(tcp, tcp->u_arg[1]);
2954 }
2955 return 0;
2956}
2957
H.J. Lu35be5812012-04-16 13:00:01 +02002958#if defined X86_64 || defined X32
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01002959# include <asm/prctl.h>
Roland McGrathc2d5eb02005-02-02 04:16:56 +00002960
2961static const struct xlat archvals[] = {
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00002962 XLAT(ARCH_SET_GS),
2963 XLAT(ARCH_SET_FS),
2964 XLAT(ARCH_GET_FS),
2965 XLAT(ARCH_GET_GS),
Dmitry V. Levin59452732014-02-05 02:20:51 +00002966 XLAT_END
Roland McGrathc2d5eb02005-02-02 04:16:56 +00002967};
2968
2969int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002970sys_arch_prctl(struct tcb *tcp)
Roland McGrathc2d5eb02005-02-02 04:16:56 +00002971{
Denys Vlasenko1d632462009-04-14 12:51:00 +00002972 if (entering(tcp)) {
2973 printxval(archvals, tcp->u_arg[0], "ARCH_???");
2974 if (tcp->u_arg[0] == ARCH_SET_GS
2975 || tcp->u_arg[0] == ARCH_SET_FS
2976 ) {
2977 tprintf(", %#lx", tcp->u_arg[1]);
2978 }
2979 } else {
2980 if (tcp->u_arg[0] == ARCH_GET_GS
2981 || tcp->u_arg[0] == ARCH_GET_FS
2982 ) {
2983 long int v;
2984 if (!syserror(tcp) && umove(tcp, tcp->u_arg[1], &v) != -1)
2985 tprintf(", [%#lx]", v);
2986 else
2987 tprintf(", %#lx", tcp->u_arg[1]);
2988 }
Roland McGrathc2d5eb02005-02-02 04:16:56 +00002989 }
Denys Vlasenko1d632462009-04-14 12:51:00 +00002990 return 0;
Roland McGrathc2d5eb02005-02-02 04:16:56 +00002991}
H.J. Lu35be5812012-04-16 13:00:01 +02002992#endif /* X86_64 || X32 */
Roland McGrathc2d5eb02005-02-02 04:16:56 +00002993
Roland McGrathdb8319f2007-08-02 01:37:55 +00002994int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002995sys_getcpu(struct tcb *tcp)
Roland McGrathdb8319f2007-08-02 01:37:55 +00002996{
2997 if (exiting(tcp)) {
2998 unsigned u;
2999 if (tcp->u_arg[0] == 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02003000 tprints("NULL, ");
Roland McGrathdb8319f2007-08-02 01:37:55 +00003001 else if (umove(tcp, tcp->u_arg[0], &u) < 0)
3002 tprintf("%#lx, ", tcp->u_arg[0]);
3003 else
3004 tprintf("[%u], ", u);
3005 if (tcp->u_arg[1] == 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02003006 tprints("NULL, ");
Roland McGrathdb8319f2007-08-02 01:37:55 +00003007 else if (umove(tcp, tcp->u_arg[1], &u) < 0)
3008 tprintf("%#lx, ", tcp->u_arg[1]);
3009 else
3010 tprintf("[%u], ", u);
3011 tprintf("%#lx", tcp->u_arg[2]);
3012 }
3013 return 0;
3014}
3015
Denys Vlasenko3af224c2012-01-28 01:46:33 +01003016int
3017sys_process_vm_readv(struct tcb *tcp)
3018{
3019 if (entering(tcp)) {
3020 /* arg 1: pid */
3021 tprintf("%ld, ", tcp->u_arg[0]);
3022 } else {
Dmitry V. Levin0bfd7442012-03-10 14:03:25 +00003023 /* arg 2: local iov */
Denys Vlasenko3af224c2012-01-28 01:46:33 +01003024 if (syserror(tcp)) {
Dmitry V. Levin0bfd7442012-03-10 14:03:25 +00003025 tprintf("%#lx", tcp->u_arg[1]);
Denys Vlasenko3af224c2012-01-28 01:46:33 +01003026 } else {
3027 tprint_iov(tcp, tcp->u_arg[2], tcp->u_arg[1], 1);
3028 }
Dmitry V. Levin0bfd7442012-03-10 14:03:25 +00003029 /* arg 3: local iovcnt */
3030 tprintf(", %lu, ", tcp->u_arg[2]);
3031 /* arg 4: remote iov */
Denys Vlasenko3af224c2012-01-28 01:46:33 +01003032 if (syserror(tcp)) {
Dmitry V. Levin0bfd7442012-03-10 14:03:25 +00003033 tprintf("%#lx", tcp->u_arg[3]);
Denys Vlasenko3af224c2012-01-28 01:46:33 +01003034 } else {
3035 tprint_iov(tcp, tcp->u_arg[4], tcp->u_arg[3], 0);
3036 }
Dmitry V. Levin0bfd7442012-03-10 14:03:25 +00003037 /* arg 5: remote iovcnt */
Denys Vlasenko3af224c2012-01-28 01:46:33 +01003038 /* arg 6: flags */
Dmitry V. Levin0bfd7442012-03-10 14:03:25 +00003039 tprintf(", %lu, %lu", tcp->u_arg[4], tcp->u_arg[5]);
Denys Vlasenko3af224c2012-01-28 01:46:33 +01003040 }
3041 return 0;
3042}
Dmitry V. Levin03952102012-03-10 14:14:49 +00003043
3044int
3045sys_process_vm_writev(struct tcb *tcp)
3046{
3047 if (entering(tcp)) {
3048 /* arg 1: pid */
3049 tprintf("%ld, ", tcp->u_arg[0]);
3050 /* arg 2: local iov */
3051 if (syserror(tcp))
3052 tprintf("%#lx", tcp->u_arg[1]);
3053 else
3054 tprint_iov(tcp, tcp->u_arg[2], tcp->u_arg[1], 1);
3055 /* arg 3: local iovcnt */
3056 tprintf(", %lu, ", tcp->u_arg[2]);
3057 /* arg 4: remote iov */
3058 if (syserror(tcp))
3059 tprintf("%#lx", tcp->u_arg[3]);
3060 else
3061 tprint_iov(tcp, tcp->u_arg[4], tcp->u_arg[3], 0);
3062 /* arg 5: remote iovcnt */
3063 /* arg 6: flags */
3064 tprintf(", %lu, %lu", tcp->u_arg[4], tcp->u_arg[5]);
3065 }
3066 return 0;
3067}