blob: 963d3b1ec4898f1db1a05294e1b9f5be19c48ade [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
Denys Vlasenkoa6d91de2012-03-16 12:02:22 +0100495# include <asm/ldt.h>
496# ifdef HAVE_STRUCT_USER_DESC
497# define modify_ldt_ldt_s user_desc
498# endif
Roland McGrath909875b2002-12-22 03:34:36 +0000499extern void print_ldt_entry();
Dmitry V. Levinf94e8472014-04-09 12:30:38 +0000500#endif /* I386 || X86_64 || X32 */
Roland McGrath909875b2002-12-22 03:34:36 +0000501
Denys Vlasenkoa6d91de2012-03-16 12:02:22 +0100502#if defined IA64
503# define ARG_FLAGS 0
504# define ARG_STACK 1
505# define ARG_STACKSIZE (tcp->scno == SYS_clone2 ? 2 : -1)
506# define ARG_PTID (tcp->scno == SYS_clone2 ? 3 : 2)
507# define ARG_CTID (tcp->scno == SYS_clone2 ? 4 : 3)
508# define ARG_TLS (tcp->scno == SYS_clone2 ? 5 : 4)
509#elif defined S390 || defined S390X || defined CRISV10 || defined CRISV32
510# define ARG_STACK 0
511# define ARG_FLAGS 1
512# define ARG_PTID 2
513# define ARG_CTID 3
514# define ARG_TLS 4
Dmitry V. Levin2c4fb252014-04-09 12:34:58 +0000515#elif defined X86_64 || defined X32
Elliott Hughesb5633252014-04-05 11:56:17 -0700516/* x86 personality processes have the last two arguments flipped. */
517# define ARG_FLAGS 0
518# define ARG_STACK 1
519# define ARG_PTID 2
520# define ARG_CTID ((current_personality != 1) ? 3 : 4)
521# define ARG_TLS ((current_personality != 1) ? 4 : 3)
Dmitry V. Levin2c4fb252014-04-09 12:34:58 +0000522#elif defined ALPHA || defined TILE || defined OR1K
Denys Vlasenkoa6d91de2012-03-16 12:02:22 +0100523# define ARG_FLAGS 0
524# define ARG_STACK 1
525# define ARG_PTID 2
526# define ARG_CTID 3
527# define ARG_TLS 4
528#else
529# define ARG_FLAGS 0
530# define ARG_STACK 1
531# define ARG_PTID 2
532# define ARG_TLS 3
533# define ARG_CTID 4
534#endif
Roland McGrath9677b3a2003-03-12 09:54:36 +0000535
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +0000536int
Denys Vlasenko12014262011-05-30 14:00:14 +0200537sys_clone(struct tcb *tcp)
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +0000538{
539 if (exiting(tcp)) {
Wang Chaocbdd1902010-09-02 15:08:59 +0800540 const char *sep = "|";
Roland McGrath9677b3a2003-03-12 09:54:36 +0000541 unsigned long flags = tcp->u_arg[ARG_FLAGS];
542 tprintf("child_stack=%#lx, ", tcp->u_arg[ARG_STACK]);
Denys Vlasenkoa6d91de2012-03-16 12:02:22 +0100543#ifdef ARG_STACKSIZE
Roland McGrath9677b3a2003-03-12 09:54:36 +0000544 if (ARG_STACKSIZE != -1)
545 tprintf("stack_size=%#lx, ",
546 tcp->u_arg[ARG_STACKSIZE]);
Denys Vlasenkoa6d91de2012-03-16 12:02:22 +0100547#endif
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200548 tprints("flags=");
Wang Chaocbdd1902010-09-02 15:08:59 +0800549 if (!printflags(clone_flags, flags &~ CSIGNAL, NULL))
550 sep = "";
Roland McGrath984154d2003-05-23 01:08:42 +0000551 if ((flags & CSIGNAL) != 0)
Wang Chaocbdd1902010-09-02 15:08:59 +0800552 tprintf("%s%s", sep, signame(flags & CSIGNAL));
Roland McGrathb4968be2003-01-20 09:04:33 +0000553 if ((flags & (CLONE_PARENT_SETTID|CLONE_CHILD_SETTID
Roland McGrath9677b3a2003-03-12 09:54:36 +0000554 |CLONE_CHILD_CLEARTID|CLONE_SETTLS)) == 0)
Roland McGrath909875b2002-12-22 03:34:36 +0000555 return 0;
Roland McGrath6f67a982003-03-21 07:33:15 +0000556 if (flags & CLONE_PARENT_SETTID)
557 tprintf(", parent_tidptr=%#lx", tcp->u_arg[ARG_PTID]);
Roland McGrathb4968be2003-01-20 09:04:33 +0000558 if (flags & CLONE_SETTLS) {
Dmitry V. Levinf94e8472014-04-09 12:30:38 +0000559#if defined I386 || defined X86_64 || defined X32
Elliott Hughes44655a42014-04-05 11:56:17 -0700560# ifndef I386
561 if (current_personality == 1)
562# endif
563 {
564 struct modify_ldt_ldt_s copy;
565 if (umove(tcp, tcp->u_arg[ARG_TLS], &copy) != -1) {
566 tprintf(", {entry_number:%d, ",
567 copy.entry_number);
568 if (!verbose(tcp))
569 tprints("...}");
570 else
571 print_ldt_entry(&copy);
572 }
Roland McGrath909875b2002-12-22 03:34:36 +0000573 }
574 else
Dmitry V. Levinf94e8472014-04-09 12:30:38 +0000575#endif /* I386 || X86_64 || X32 */
Roland McGrath43f2c842003-03-12 09:58:14 +0000576 tprintf(", tls=%#lx", tcp->u_arg[ARG_TLS]);
Roland McGrath909875b2002-12-22 03:34:36 +0000577 }
Roland McGrath9677b3a2003-03-12 09:54:36 +0000578 if (flags & (CLONE_CHILD_SETTID|CLONE_CHILD_CLEARTID))
579 tprintf(", child_tidptr=%#lx", tcp->u_arg[ARG_CTID]);
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +0000580 }
Denys Vlasenkod0830162013-06-28 18:57:27 +0200581 /* TODO on syscall entry:
582 * We can clear CLONE_PTRACE here since it is an ancient hack
583 * to allow us to catch children, and we use another hack for that.
584 * But CLONE_PTRACE can conceivably be used by malicious programs
585 * to subvert us. By clearing this bit, we can defend against it:
586 * in untraced execution, CLONE_PTRACE should have no effect.
587 *
588 * We can also clear CLONE_UNTRACED, since it allows to start
589 * children outside of our control. At the moment
590 * I'm trying to figure out whether there is a *legitimate*
591 * use of this flag which we should respect.
592 */
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +0000593 return 0;
594}
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000595
596int
597sys_unshare(struct tcb *tcp)
598{
599 if (entering(tcp))
600 printflags(clone_flags, tcp->u_arg[0], "CLONE_???");
601 return 0;
602}
Wichert Akkerman7a0b6491999-12-23 15:08:17 +0000603
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000604int
Denys Vlasenko081533c2012-03-17 02:17:51 +0100605sys_fork(struct tcb *tcp)
606{
607 if (exiting(tcp))
608 return RVAL_UDECIMAL;
609 return 0;
610}
611
612int
Denys Vlasenko12014262011-05-30 14:00:14 +0200613sys_vfork(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000614{
615 if (exiting(tcp))
616 return RVAL_UDECIMAL;
617 return 0;
618}
619
Dmitry V. Levin50a218d2011-01-18 17:36:20 +0000620int sys_getuid(struct tcb *tcp)
621{
622 if (exiting(tcp))
623 tcp->u_rval = (uid_t) tcp->u_rval;
624 return RVAL_UDECIMAL;
625}
626
627int sys_setfsuid(struct tcb *tcp)
628{
629 if (entering(tcp))
630 tprintf("%u", (uid_t) tcp->u_arg[0]);
631 else
632 tcp->u_rval = (uid_t) tcp->u_rval;
633 return RVAL_UDECIMAL;
634}
635
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000636int
Denys Vlasenko12014262011-05-30 14:00:14 +0200637sys_setuid(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000638{
639 if (entering(tcp)) {
640 tprintf("%u", (uid_t) tcp->u_arg[0]);
641 }
642 return 0;
643}
644
645int
Denys Vlasenko1d632462009-04-14 12:51:00 +0000646sys_getresuid(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000647{
648 if (exiting(tcp)) {
Wichert Akkerman2e2553a1999-05-09 00:29:58 +0000649 __kernel_uid_t uid;
650 if (syserror(tcp))
651 tprintf("%#lx, %#lx, %#lx", tcp->u_arg[0],
652 tcp->u_arg[1], tcp->u_arg[2]);
653 else {
654 if (umove(tcp, tcp->u_arg[0], &uid) < 0)
655 tprintf("%#lx, ", tcp->u_arg[0]);
656 else
Roland McGrath83bd47a2003-11-13 22:32:26 +0000657 tprintf("[%lu], ", (unsigned long) uid);
Roland McGrath9bd6b422003-02-24 07:13:51 +0000658 if (umove(tcp, tcp->u_arg[1], &uid) < 0)
659 tprintf("%#lx, ", tcp->u_arg[1]);
Wichert Akkerman2e2553a1999-05-09 00:29:58 +0000660 else
Roland McGrath83bd47a2003-11-13 22:32:26 +0000661 tprintf("[%lu], ", (unsigned long) uid);
Roland McGrath9bd6b422003-02-24 07:13:51 +0000662 if (umove(tcp, tcp->u_arg[2], &uid) < 0)
663 tprintf("%#lx", tcp->u_arg[2]);
Wichert Akkerman2e2553a1999-05-09 00:29:58 +0000664 else
Roland McGrath83bd47a2003-11-13 22:32:26 +0000665 tprintf("[%lu]", (unsigned long) uid);
Wichert Akkerman2e2553a1999-05-09 00:29:58 +0000666 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000667 }
668 return 0;
669}
670
671int
Denys Vlasenko12014262011-05-30 14:00:14 +0200672sys_setreuid(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000673{
674 if (entering(tcp)) {
Roland McGrath83bd47a2003-11-13 22:32:26 +0000675 printuid("", tcp->u_arg[0]);
676 printuid(", ", tcp->u_arg[1]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000677 }
678 return 0;
679}
680
681int
Denys Vlasenko12014262011-05-30 14:00:14 +0200682sys_setresuid(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000683{
684 if (entering(tcp)) {
Roland McGrath83bd47a2003-11-13 22:32:26 +0000685 printuid("", tcp->u_arg[0]);
686 printuid(", ", tcp->u_arg[1]);
687 printuid(", ", tcp->u_arg[2]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000688 }
689 return 0;
690}
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000691
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000692int
Denys Vlasenko12014262011-05-30 14:00:14 +0200693sys_setgroups(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000694{
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000695 if (entering(tcp)) {
Roland McGrathaa524c82005-06-01 19:22:06 +0000696 unsigned long len, size, start, cur, end, abbrev_end;
697 GETGROUPS_T gid;
698 int failed = 0;
699
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000700 len = tcp->u_arg[0];
Roland McGrathaa524c82005-06-01 19:22:06 +0000701 tprintf("%lu, ", len);
702 if (len == 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200703 tprints("[]");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000704 return 0;
705 }
Roland McGrathaa524c82005-06-01 19:22:06 +0000706 start = tcp->u_arg[1];
707 if (start == 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200708 tprints("NULL");
Roland McGrathaa524c82005-06-01 19:22:06 +0000709 return 0;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000710 }
Roland McGrathaa524c82005-06-01 19:22:06 +0000711 size = len * sizeof(gid);
712 end = start + size;
713 if (!verbose(tcp) || size / sizeof(gid) != len || end < start) {
714 tprintf("%#lx", start);
715 return 0;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000716 }
Roland McGrathaa524c82005-06-01 19:22:06 +0000717 if (abbrev(tcp)) {
718 abbrev_end = start + max_strlen * sizeof(gid);
719 if (abbrev_end < start)
720 abbrev_end = end;
721 } else {
722 abbrev_end = end;
723 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200724 tprints("[");
Roland McGrathaa524c82005-06-01 19:22:06 +0000725 for (cur = start; cur < end; cur += sizeof(gid)) {
726 if (cur > start)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200727 tprints(", ");
Roland McGrathaa524c82005-06-01 19:22:06 +0000728 if (cur >= abbrev_end) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200729 tprints("...");
Roland McGrathaa524c82005-06-01 19:22:06 +0000730 break;
731 }
732 if (umoven(tcp, cur, sizeof(gid), (char *) &gid) < 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200733 tprints("?");
Roland McGrathaa524c82005-06-01 19:22:06 +0000734 failed = 1;
735 break;
736 }
737 tprintf("%lu", (unsigned long) gid);
738 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200739 tprints("]");
Roland McGrathaa524c82005-06-01 19:22:06 +0000740 if (failed)
741 tprintf(" %#lx", tcp->u_arg[1]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000742 }
743 return 0;
744}
745
746int
Denys Vlasenko12014262011-05-30 14:00:14 +0200747sys_getgroups(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000748{
Roland McGrathaa524c82005-06-01 19:22:06 +0000749 unsigned long len;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000750
751 if (entering(tcp)) {
752 len = tcp->u_arg[0];
Roland McGrathaa524c82005-06-01 19:22:06 +0000753 tprintf("%lu, ", len);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000754 } else {
Roland McGrathaa524c82005-06-01 19:22:06 +0000755 unsigned long size, start, cur, end, abbrev_end;
756 GETGROUPS_T gid;
757 int failed = 0;
758
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000759 len = tcp->u_rval;
Roland McGrathaa524c82005-06-01 19:22:06 +0000760 if (len == 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200761 tprints("[]");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000762 return 0;
763 }
Roland McGrathaa524c82005-06-01 19:22:06 +0000764 start = tcp->u_arg[1];
765 if (start == 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200766 tprints("NULL");
Roland McGrathaa524c82005-06-01 19:22:06 +0000767 return 0;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000768 }
Roland McGrathaa524c82005-06-01 19:22:06 +0000769 if (tcp->u_arg[0] == 0) {
770 tprintf("%#lx", start);
771 return 0;
772 }
773 size = len * sizeof(gid);
774 end = start + size;
775 if (!verbose(tcp) || tcp->u_arg[0] == 0 ||
776 size / sizeof(gid) != len || end < start) {
777 tprintf("%#lx", start);
778 return 0;
779 }
780 if (abbrev(tcp)) {
781 abbrev_end = start + max_strlen * sizeof(gid);
782 if (abbrev_end < start)
783 abbrev_end = end;
784 } else {
785 abbrev_end = end;
786 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200787 tprints("[");
Roland McGrathaa524c82005-06-01 19:22:06 +0000788 for (cur = start; cur < end; cur += sizeof(gid)) {
789 if (cur > start)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200790 tprints(", ");
Roland McGrathaa524c82005-06-01 19:22:06 +0000791 if (cur >= abbrev_end) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200792 tprints("...");
Roland McGrathaa524c82005-06-01 19:22:06 +0000793 break;
794 }
795 if (umoven(tcp, cur, sizeof(gid), (char *) &gid) < 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200796 tprints("?");
Roland McGrathaa524c82005-06-01 19:22:06 +0000797 failed = 1;
798 break;
799 }
800 tprintf("%lu", (unsigned long) gid);
801 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200802 tprints("]");
Roland McGrathaa524c82005-06-01 19:22:06 +0000803 if (failed)
804 tprintf(" %#lx", tcp->u_arg[1]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000805 }
806 return 0;
807}
808
Roland McGrath83bd47a2003-11-13 22:32:26 +0000809int
Denys Vlasenko12014262011-05-30 14:00:14 +0200810sys_setgroups32(struct tcb *tcp)
Roland McGrath83bd47a2003-11-13 22:32:26 +0000811{
Roland McGrath83bd47a2003-11-13 22:32:26 +0000812 if (entering(tcp)) {
Roland McGrathaa524c82005-06-01 19:22:06 +0000813 unsigned long len, size, start, cur, end, abbrev_end;
814 GETGROUPS32_T gid;
815 int failed = 0;
816
Roland McGrath83bd47a2003-11-13 22:32:26 +0000817 len = tcp->u_arg[0];
Roland McGrathaa524c82005-06-01 19:22:06 +0000818 tprintf("%lu, ", len);
819 if (len == 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200820 tprints("[]");
Roland McGrath83bd47a2003-11-13 22:32:26 +0000821 return 0;
822 }
Roland McGrathaa524c82005-06-01 19:22:06 +0000823 start = tcp->u_arg[1];
824 if (start == 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200825 tprints("NULL");
Roland McGrathaa524c82005-06-01 19:22:06 +0000826 return 0;
Roland McGrath83bd47a2003-11-13 22:32:26 +0000827 }
Roland McGrathaa524c82005-06-01 19:22:06 +0000828 size = len * sizeof(gid);
829 end = start + size;
830 if (!verbose(tcp) || size / sizeof(gid) != len || end < start) {
831 tprintf("%#lx", start);
832 return 0;
Roland McGrath83bd47a2003-11-13 22:32:26 +0000833 }
Roland McGrathaa524c82005-06-01 19:22:06 +0000834 if (abbrev(tcp)) {
835 abbrev_end = start + max_strlen * sizeof(gid);
836 if (abbrev_end < start)
837 abbrev_end = end;
838 } else {
839 abbrev_end = end;
840 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200841 tprints("[");
Roland McGrathaa524c82005-06-01 19:22:06 +0000842 for (cur = start; cur < end; cur += sizeof(gid)) {
843 if (cur > start)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200844 tprints(", ");
Roland McGrathaa524c82005-06-01 19:22:06 +0000845 if (cur >= abbrev_end) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200846 tprints("...");
Roland McGrathaa524c82005-06-01 19:22:06 +0000847 break;
848 }
849 if (umoven(tcp, cur, sizeof(gid), (char *) &gid) < 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200850 tprints("?");
Roland McGrathaa524c82005-06-01 19:22:06 +0000851 failed = 1;
852 break;
853 }
854 tprintf("%lu", (unsigned long) gid);
855 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200856 tprints("]");
Roland McGrathaa524c82005-06-01 19:22:06 +0000857 if (failed)
858 tprintf(" %#lx", tcp->u_arg[1]);
Roland McGrath83bd47a2003-11-13 22:32:26 +0000859 }
860 return 0;
861}
862
863int
Denys Vlasenko12014262011-05-30 14:00:14 +0200864sys_getgroups32(struct tcb *tcp)
Roland McGrath83bd47a2003-11-13 22:32:26 +0000865{
Roland McGrathaa524c82005-06-01 19:22:06 +0000866 unsigned long len;
Roland McGrath83bd47a2003-11-13 22:32:26 +0000867
868 if (entering(tcp)) {
869 len = tcp->u_arg[0];
Roland McGrathaa524c82005-06-01 19:22:06 +0000870 tprintf("%lu, ", len);
Roland McGrath83bd47a2003-11-13 22:32:26 +0000871 } else {
Roland McGrathaa524c82005-06-01 19:22:06 +0000872 unsigned long size, start, cur, end, abbrev_end;
873 GETGROUPS32_T gid;
874 int failed = 0;
875
Roland McGrath83bd47a2003-11-13 22:32:26 +0000876 len = tcp->u_rval;
Roland McGrathaa524c82005-06-01 19:22:06 +0000877 if (len == 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200878 tprints("[]");
Roland McGrath83bd47a2003-11-13 22:32:26 +0000879 return 0;
880 }
Roland McGrathaa524c82005-06-01 19:22:06 +0000881 start = tcp->u_arg[1];
882 if (start == 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200883 tprints("NULL");
Roland McGrathaa524c82005-06-01 19:22:06 +0000884 return 0;
Roland McGrath83bd47a2003-11-13 22:32:26 +0000885 }
Roland McGrathaa524c82005-06-01 19:22:06 +0000886 size = len * sizeof(gid);
887 end = start + size;
888 if (!verbose(tcp) || tcp->u_arg[0] == 0 ||
889 size / sizeof(gid) != len || end < start) {
890 tprintf("%#lx", start);
891 return 0;
892 }
893 if (abbrev(tcp)) {
894 abbrev_end = start + max_strlen * sizeof(gid);
895 if (abbrev_end < start)
896 abbrev_end = end;
897 } else {
898 abbrev_end = end;
899 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200900 tprints("[");
Roland McGrathaa524c82005-06-01 19:22:06 +0000901 for (cur = start; cur < end; cur += sizeof(gid)) {
902 if (cur > start)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200903 tprints(", ");
Roland McGrathaa524c82005-06-01 19:22:06 +0000904 if (cur >= abbrev_end) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200905 tprints("...");
Roland McGrathaa524c82005-06-01 19:22:06 +0000906 break;
907 }
908 if (umoven(tcp, cur, sizeof(gid), (char *) &gid) < 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200909 tprints("?");
Roland McGrathaa524c82005-06-01 19:22:06 +0000910 failed = 1;
911 break;
912 }
913 tprintf("%lu", (unsigned long) gid);
914 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200915 tprints("]");
Roland McGrathaa524c82005-06-01 19:22:06 +0000916 if (failed)
917 tprintf(" %#lx", tcp->u_arg[1]);
Roland McGrath83bd47a2003-11-13 22:32:26 +0000918 }
919 return 0;
920}
Roland McGrath83bd47a2003-11-13 22:32:26 +0000921
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000922static void
Dmitry V. Levin30145dd2010-09-06 22:08:24 +0000923printargv(struct tcb *tcp, long addr)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000924{
Roland McGrath85a3bc42007-08-02 02:13:05 +0000925 union {
Andreas Schwab99c85692009-08-28 19:36:20 +0200926 unsigned int p32;
927 unsigned long p64;
Roland McGrath85a3bc42007-08-02 02:13:05 +0000928 char data[sizeof(long)];
929 } cp;
Dmitry V. Levin30145dd2010-09-06 22:08:24 +0000930 const char *sep;
Roland McGrath85a3bc42007-08-02 02:13:05 +0000931 int n = 0;
Denys Vlasenko9fd4f962012-03-19 09:36:42 +0100932 unsigned wordsize = current_wordsize;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000933
Roland McGrath85a3bc42007-08-02 02:13:05 +0000934 cp.p64 = 1;
935 for (sep = ""; !abbrev(tcp) || n < max_strlen / 2; sep = ", ", ++n) {
Denys Vlasenko1945ccc2012-02-27 14:37:48 +0100936 if (umoven(tcp, addr, wordsize, cp.data) < 0) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000937 tprintf("%#lx", addr);
938 return;
939 }
Denys Vlasenko1945ccc2012-02-27 14:37:48 +0100940 if (wordsize == 4)
Roland McGrath85a3bc42007-08-02 02:13:05 +0000941 cp.p64 = cp.p32;
942 if (cp.p64 == 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000943 break;
Denys Vlasenko5940e652011-09-01 09:55:05 +0200944 tprints(sep);
Roland McGrath85a3bc42007-08-02 02:13:05 +0000945 printstr(tcp, cp.p64, -1);
Denys Vlasenko1945ccc2012-02-27 14:37:48 +0100946 addr += wordsize;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000947 }
Roland McGrath85a3bc42007-08-02 02:13:05 +0000948 if (cp.p64)
949 tprintf("%s...", sep);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000950}
951
952static void
Dmitry V. Levin30145dd2010-09-06 22:08:24 +0000953printargc(const char *fmt, struct tcb *tcp, long addr)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000954{
955 int count;
956 char *cp;
957
958 for (count = 0; umove(tcp, addr, &cp) >= 0 && cp != NULL; count++) {
959 addr += sizeof(char *);
960 }
961 tprintf(fmt, count, count == 1 ? "" : "s");
962}
963
Denys Vlasenko84703742012-02-25 02:38:52 +0100964#if defined(SPARC) || defined(SPARC64)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000965int
Dmitry V. Levine5e60852009-12-31 22:50:49 +0000966sys_execv(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 }
978 return 0;
979}
Denys Vlasenko84703742012-02-25 02:38:52 +0100980#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000981
982int
Dmitry V. Levine5e60852009-12-31 22:50:49 +0000983sys_execve(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000984{
985 if (entering(tcp)) {
986 printpath(tcp, tcp->u_arg[0]);
987 if (!verbose(tcp))
988 tprintf(", %#lx", tcp->u_arg[1]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000989 else {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200990 tprints(", [");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000991 printargv(tcp, tcp->u_arg[1]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200992 tprints("]");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000993 }
994 if (!verbose(tcp))
995 tprintf(", %#lx", tcp->u_arg[2]);
996 else if (abbrev(tcp))
997 printargc(", [/* %d var%s */]", tcp, tcp->u_arg[2]);
998 else {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200999 tprints(", [");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001000 printargv(tcp, tcp->u_arg[2]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001001 tprints("]");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001002 }
1003 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001004 return 0;
1005}
1006
Roland McGrath7ec1d352002-12-17 04:50:44 +00001007#ifndef __WNOTHREAD
1008#define __WNOTHREAD 0x20000000
1009#endif
1010#ifndef __WALL
1011#define __WALL 0x40000000
1012#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001013#ifndef __WCLONE
Roland McGrath7ec1d352002-12-17 04:50:44 +00001014#define __WCLONE 0x80000000
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001015#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001016
Roland McGrathd9f816f2004-09-04 03:39:20 +00001017static const struct xlat wait4_options[] = {
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001018 XLAT(WNOHANG),
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001019#ifndef WSTOPPED
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001020 XLAT(WUNTRACED),
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001021#endif
1022#ifdef WEXITED
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001023 XLAT(WEXITED),
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001024#endif
1025#ifdef WTRAPPED
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001026 XLAT(WTRAPPED),
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001027#endif
1028#ifdef WSTOPPED
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001029 XLAT(WSTOPPED),
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001030#endif
1031#ifdef WCONTINUED
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001032 XLAT(WCONTINUED),
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001033#endif
1034#ifdef WNOWAIT
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001035 XLAT(WNOWAIT),
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001036#endif
1037#ifdef __WCLONE
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001038 XLAT(__WCLONE),
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001039#endif
Roland McGrath7ec1d352002-12-17 04:50:44 +00001040#ifdef __WALL
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001041 XLAT(__WALL),
Roland McGrath7ec1d352002-12-17 04:50:44 +00001042#endif
1043#ifdef __WNOTHREAD
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001044 XLAT(__WNOTHREAD),
Roland McGrath7ec1d352002-12-17 04:50:44 +00001045#endif
Dmitry V. Levin59452732014-02-05 02:20:51 +00001046 XLAT_END
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001047};
1048
Roland McGrath5e02a572004-10-19 23:33:47 +00001049#if !defined WCOREFLAG && defined WCOREFLG
1050# define WCOREFLAG WCOREFLG
1051#endif
1052#ifndef WCOREFLAG
Dmitry V. Levine5e60852009-12-31 22:50:49 +00001053# define WCOREFLAG 0x80
Roland McGrath5e02a572004-10-19 23:33:47 +00001054#endif
Dmitry V. Levine5e60852009-12-31 22:50:49 +00001055#ifndef WCOREDUMP
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001056# define WCOREDUMP(status) ((status) & 0200)
Dmitry V. Levine5e60852009-12-31 22:50:49 +00001057#endif
Roland McGrath5e02a572004-10-19 23:33:47 +00001058#ifndef W_STOPCODE
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001059# define W_STOPCODE(sig) ((sig) << 8 | 0x7f)
Roland McGrath5e02a572004-10-19 23:33:47 +00001060#endif
1061#ifndef W_EXITCODE
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001062# define W_EXITCODE(ret, sig) ((ret) << 8 | (sig))
Roland McGrath5e02a572004-10-19 23:33:47 +00001063#endif
1064
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001065static int
Denys Vlasenko12014262011-05-30 14:00:14 +02001066printstatus(int status)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001067{
1068 int exited = 0;
1069
1070 /*
1071 * Here is a tricky presentation problem. This solution
1072 * is still not entirely satisfactory but since there
1073 * are no wait status constructors it will have to do.
1074 */
Roland McGrath79fbda52004-04-14 02:45:55 +00001075 if (WIFSTOPPED(status)) {
1076 tprintf("[{WIFSTOPPED(s) && WSTOPSIG(s) == %s}",
Nate Sammonsce780fc1999-03-29 23:23:13 +00001077 signame(WSTOPSIG(status)));
Roland McGrath79fbda52004-04-14 02:45:55 +00001078 status &= ~W_STOPCODE(WSTOPSIG(status));
1079 }
1080 else if (WIFSIGNALED(status)) {
1081 tprintf("[{WIFSIGNALED(s) && WTERMSIG(s) == %s%s}",
Nate Sammonsce780fc1999-03-29 23:23:13 +00001082 signame(WTERMSIG(status)),
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001083 WCOREDUMP(status) ? " && WCOREDUMP(s)" : "");
Roland McGrath79fbda52004-04-14 02:45:55 +00001084 status &= ~(W_EXITCODE(0, WTERMSIG(status)) | WCOREFLAG);
1085 }
1086 else if (WIFEXITED(status)) {
1087 tprintf("[{WIFEXITED(s) && WEXITSTATUS(s) == %d}",
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001088 WEXITSTATUS(status));
1089 exited = 1;
Roland McGrath79fbda52004-04-14 02:45:55 +00001090 status &= ~W_EXITCODE(WEXITSTATUS(status), 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001091 }
Roland McGrath79fbda52004-04-14 02:45:55 +00001092 else {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001093 tprintf("[%#x]", status);
Roland McGrath79fbda52004-04-14 02:45:55 +00001094 return 0;
1095 }
1096
1097 if (status == 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001098 tprints("]");
Roland McGrath79fbda52004-04-14 02:45:55 +00001099 else
Roland McGrathf8cc83c2004-06-04 01:24:07 +00001100 tprintf(" | %#x]", status);
Roland McGrath79fbda52004-04-14 02:45:55 +00001101
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001102 return exited;
1103}
1104
1105static int
Denys Vlasenko59432db2009-01-26 19:09:35 +00001106printwaitn(struct tcb *tcp, int n, int bitness)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001107{
1108 int status;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001109
1110 if (entering(tcp)) {
Denys Vlasenkoe740fd32009-04-16 12:06:16 +00001111 /* On Linux, kernel-side pid_t is typedef'ed to int
1112 * on all arches. Also, glibc-2.8 truncates wait3 and wait4
Denys Vlasenko59432db2009-01-26 19:09:35 +00001113 * pid argument to int on 64bit arches, producing,
1114 * for example, wait4(4294967295, ...) instead of -1
Denys Vlasenkoe740fd32009-04-16 12:06:16 +00001115 * in strace. We have to use int here, not long.
1116 */
1117 int pid = tcp->u_arg[0];
1118 tprintf("%d, ", pid);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001119 } else {
1120 /* status */
1121 if (!tcp->u_arg[1])
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001122 tprints("NULL");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001123 else if (syserror(tcp) || tcp->u_rval == 0)
1124 tprintf("%#lx", tcp->u_arg[1]);
1125 else if (umove(tcp, tcp->u_arg[1], &status) < 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001126 tprints("[?]");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001127 else
Dmitry V. Levind9a4b0a2011-02-23 00:27:12 +00001128 printstatus(status);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001129 /* options */
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001130 tprints(", ");
Roland McGrathb2dee132005-06-01 19:02:36 +00001131 printflags(wait4_options, tcp->u_arg[2], "W???");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001132 if (n == 4) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001133 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001134 /* usage */
1135 if (!tcp->u_arg[3])
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001136 tprints("NULL");
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +00001137 else if (tcp->u_rval > 0) {
Denys Vlasenko59432db2009-01-26 19:09:35 +00001138#ifdef ALPHA
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +00001139 if (bitness)
1140 printrusage32(tcp, tcp->u_arg[3]);
1141 else
1142#endif
1143 printrusage(tcp, tcp->u_arg[3]);
1144 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001145 else
1146 tprintf("%#lx", tcp->u_arg[3]);
1147 }
1148 }
1149 return 0;
1150}
1151
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001152int
Denys Vlasenko12014262011-05-30 14:00:14 +02001153sys_waitpid(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001154{
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +00001155 return printwaitn(tcp, 3, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001156}
1157
1158int
Denys Vlasenko12014262011-05-30 14:00:14 +02001159sys_wait4(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001160{
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +00001161 return printwaitn(tcp, 4, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001162}
1163
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +00001164#ifdef ALPHA
1165int
Denys Vlasenko12014262011-05-30 14:00:14 +02001166sys_osf_wait4(struct tcb *tcp)
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +00001167{
1168 return printwaitn(tcp, 4, 1);
1169}
1170#endif
1171
Roland McGrathd9f816f2004-09-04 03:39:20 +00001172static const struct xlat waitid_types[] = {
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001173 XLAT(P_PID),
Roland McGrathc74c0b72004-09-01 19:39:46 +00001174#ifdef P_PPID
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001175 XLAT(P_PPID),
Roland McGrathc74c0b72004-09-01 19:39:46 +00001176#endif
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001177 XLAT(P_PGID),
Roland McGrathc74c0b72004-09-01 19:39:46 +00001178#ifdef P_SID
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001179 XLAT(P_SID),
Roland McGrathc74c0b72004-09-01 19:39:46 +00001180#endif
1181#ifdef P_CID
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001182 XLAT(P_CID),
Roland McGrathc74c0b72004-09-01 19:39:46 +00001183#endif
1184#ifdef P_UID
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001185 XLAT(P_UID),
Roland McGrathc74c0b72004-09-01 19:39:46 +00001186#endif
1187#ifdef P_GID
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001188 XLAT(P_GID),
Roland McGrathc74c0b72004-09-01 19:39:46 +00001189#endif
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001190 XLAT(P_ALL),
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001191#ifdef P_LWPID
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001192 XLAT(P_LWPID),
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001193#endif
Dmitry V. Levin59452732014-02-05 02:20:51 +00001194 XLAT_END
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001195};
1196
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001197int
Dmitry V. Levin3eb94912010-09-09 23:08:59 +00001198sys_waitid(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001199{
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001200 if (entering(tcp)) {
1201 printxval(waitid_types, tcp->u_arg[0], "P_???");
1202 tprintf(", %ld, ", tcp->u_arg[1]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001203 }
1204 else {
1205 /* siginfo */
Denys Vlasenkod4d3ede2013-02-13 16:31:32 +01001206 printsiginfo_at(tcp, tcp->u_arg[2]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001207 /* options */
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001208 tprints(", ");
Roland McGrathb2dee132005-06-01 19:02:36 +00001209 printflags(wait4_options, tcp->u_arg[3], "W???");
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01001210 if (tcp->s_ent->nargs > 4) {
Roland McGrath39426a32004-10-06 22:02:59 +00001211 /* usage */
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001212 tprints(", ");
Roland McGrath39426a32004-10-06 22:02:59 +00001213 if (!tcp->u_arg[4])
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001214 tprints("NULL");
Roland McGrath39426a32004-10-06 22:02:59 +00001215 else if (tcp->u_error)
1216 tprintf("%#lx", tcp->u_arg[4]);
1217 else
1218 printrusage(tcp, tcp->u_arg[4]);
1219 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001220 }
1221 return 0;
1222}
1223
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001224int
Denys Vlasenko12014262011-05-30 14:00:14 +02001225sys_uname(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001226{
1227 struct utsname uname;
1228
1229 if (exiting(tcp)) {
1230 if (syserror(tcp) || !verbose(tcp))
1231 tprintf("%#lx", tcp->u_arg[0]);
1232 else if (umove(tcp, tcp->u_arg[0], &uname) < 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001233 tprints("{...}");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001234 else if (!abbrev(tcp)) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001235 tprintf("{sysname=\"%s\", nodename=\"%s\", ",
1236 uname.sysname, uname.nodename);
1237 tprintf("release=\"%s\", version=\"%s\", ",
1238 uname.release, uname.version);
1239 tprintf("machine=\"%s\"", uname.machine);
Dmitry V. Levinea22e972012-05-01 20:56:32 +00001240#ifdef HAVE_STRUCT_UTSNAME_DOMAINNAME
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001241 tprintf(", domainname=\"%s\"", uname.domainname);
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00001242#endif
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001243 tprints("}");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001244 }
1245 else
1246 tprintf("{sys=\"%s\", node=\"%s\", ...}",
1247 uname.sysname, uname.nodename);
1248 }
1249 return 0;
1250}
1251
Roland McGratheb9e2e82009-06-02 16:49:22 -07001252static const struct xlat ptrace_cmds[] = {
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001253 XLAT(PTRACE_TRACEME),
1254 XLAT(PTRACE_PEEKTEXT),
1255 XLAT(PTRACE_PEEKDATA),
1256 XLAT(PTRACE_PEEKUSER),
1257 XLAT(PTRACE_POKETEXT),
1258 XLAT(PTRACE_POKEDATA),
1259 XLAT(PTRACE_POKEUSER),
1260 XLAT(PTRACE_CONT),
1261 XLAT(PTRACE_KILL),
1262 XLAT(PTRACE_SINGLESTEP),
1263 XLAT(PTRACE_ATTACH),
1264 XLAT(PTRACE_DETACH),
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001265#ifdef PTRACE_GETREGS
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001266 XLAT(PTRACE_GETREGS),
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001267#endif
1268#ifdef PTRACE_SETREGS
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001269 XLAT(PTRACE_SETREGS),
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001270#endif
1271#ifdef PTRACE_GETFPREGS
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001272 XLAT(PTRACE_GETFPREGS),
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001273#endif
1274#ifdef PTRACE_SETFPREGS
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001275 XLAT(PTRACE_SETFPREGS),
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001276#endif
1277#ifdef PTRACE_GETFPXREGS
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001278 XLAT(PTRACE_GETFPXREGS),
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001279#endif
1280#ifdef PTRACE_SETFPXREGS
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001281 XLAT(PTRACE_SETFPXREGS),
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001282#endif
1283#ifdef PTRACE_GETVRREGS
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001284 XLAT(PTRACE_GETVRREGS),
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001285#endif
1286#ifdef PTRACE_SETVRREGS
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001287 XLAT(PTRACE_SETVRREGS),
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001288#endif
1289#ifdef PTRACE_SETOPTIONS
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001290 XLAT(PTRACE_SETOPTIONS),
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001291#endif
1292#ifdef PTRACE_GETEVENTMSG
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001293 XLAT(PTRACE_GETEVENTMSG),
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001294#endif
1295#ifdef PTRACE_GETSIGINFO
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001296 XLAT(PTRACE_GETSIGINFO),
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001297#endif
1298#ifdef PTRACE_SETSIGINFO
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001299 XLAT(PTRACE_SETSIGINFO),
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001300#endif
1301#ifdef PTRACE_GETREGSET
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001302 XLAT(PTRACE_GETREGSET),
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001303#endif
1304#ifdef PTRACE_SETREGSET
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001305 XLAT(PTRACE_SETREGSET),
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001306#endif
1307#ifdef PTRACE_SET_SYSCALL
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001308 XLAT(PTRACE_SET_SYSCALL),
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001309#endif
1310#ifdef PTRACE_SEIZE
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001311 XLAT(PTRACE_SEIZE),
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001312#endif
1313#ifdef PTRACE_INTERRUPT
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001314 XLAT(PTRACE_INTERRUPT),
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001315#endif
1316#ifdef PTRACE_LISTEN
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001317 XLAT(PTRACE_LISTEN),
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001318#endif
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001319 XLAT(PTRACE_SYSCALL),
Denys Vlasenkof535b542009-01-13 18:30:55 +00001320
Dmitry V. Levin59452732014-02-05 02:20:51 +00001321 XLAT_END
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001322};
1323
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001324#ifdef PTRACE_SETOPTIONS
Denys Vlasenkof535b542009-01-13 18:30:55 +00001325static const struct xlat ptrace_setoptions_flags[] = {
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001326# ifdef PTRACE_O_TRACESYSGOOD
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001327 XLAT(PTRACE_O_TRACESYSGOOD),
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001328# endif
1329# ifdef PTRACE_O_TRACEFORK
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001330 XLAT(PTRACE_O_TRACEFORK),
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001331# endif
1332# ifdef PTRACE_O_TRACEVFORK
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001333 XLAT(PTRACE_O_TRACEVFORK),
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001334# endif
1335# ifdef PTRACE_O_TRACECLONE
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001336 XLAT(PTRACE_O_TRACECLONE),
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001337# endif
1338# ifdef PTRACE_O_TRACEEXEC
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001339 XLAT(PTRACE_O_TRACEEXEC),
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001340# endif
1341# ifdef PTRACE_O_TRACEVFORKDONE
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001342 XLAT(PTRACE_O_TRACEVFORKDONE),
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001343# endif
1344# ifdef PTRACE_O_TRACEEXIT
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001345 XLAT(PTRACE_O_TRACEEXIT),
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001346# endif
Dmitry V. Levinf7822012013-05-17 22:22:19 +00001347# ifdef PTRACE_O_TRACESECCOMP
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001348 XLAT(PTRACE_O_TRACESECCOMP),
Dmitry V. Levinf7822012013-05-17 22:22:19 +00001349# endif
1350# ifdef PTRACE_O_EXITKILL
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001351 XLAT(PTRACE_O_EXITKILL),
Dmitry V. Levinf7822012013-05-17 22:22:19 +00001352# endif
Dmitry V. Levin59452732014-02-05 02:20:51 +00001353 XLAT_END
Denys Vlasenkof535b542009-01-13 18:30:55 +00001354};
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001355#endif /* PTRACE_SETOPTIONS */
Denys Vlasenkof535b542009-01-13 18:30:55 +00001356
Dmitry V. Levinc41808b2013-03-18 00:52:29 +00001357static const struct xlat nt_descriptor_types[] = {
1358#ifdef NT_PRSTATUS
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001359 XLAT(NT_PRSTATUS),
Dmitry V. Levinc41808b2013-03-18 00:52:29 +00001360#endif
1361#ifdef NT_FPREGSET
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001362 XLAT(NT_FPREGSET),
Dmitry V. Levinc41808b2013-03-18 00:52:29 +00001363#endif
1364#ifdef NT_PRPSINFO
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001365 XLAT(NT_PRPSINFO),
Dmitry V. Levinc41808b2013-03-18 00:52:29 +00001366#endif
1367#ifdef NT_PRXREG
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001368 XLAT(NT_PRXREG),
Dmitry V. Levinc41808b2013-03-18 00:52:29 +00001369#endif
1370#ifdef NT_TASKSTRUCT
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001371 XLAT(NT_TASKSTRUCT),
Dmitry V. Levinc41808b2013-03-18 00:52:29 +00001372#endif
1373#ifdef NT_PLATFORM
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001374 XLAT(NT_PLATFORM),
Dmitry V. Levinc41808b2013-03-18 00:52:29 +00001375#endif
1376#ifdef NT_AUXV
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001377 XLAT(NT_AUXV),
Dmitry V. Levinc41808b2013-03-18 00:52:29 +00001378#endif
1379#ifdef NT_GWINDOWS
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001380 XLAT(NT_GWINDOWS),
Dmitry V. Levinc41808b2013-03-18 00:52:29 +00001381#endif
1382#ifdef NT_ASRS
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001383 XLAT(NT_ASRS),
Dmitry V. Levinc41808b2013-03-18 00:52:29 +00001384#endif
1385#ifdef NT_PSTATUS
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001386 XLAT(NT_PSTATUS),
Dmitry V. Levinc41808b2013-03-18 00:52:29 +00001387#endif
1388#ifdef NT_PSINFO
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001389 XLAT(NT_PSINFO),
Dmitry V. Levinc41808b2013-03-18 00:52:29 +00001390#endif
1391#ifdef NT_PRCRED
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001392 XLAT(NT_PRCRED),
Dmitry V. Levinc41808b2013-03-18 00:52:29 +00001393#endif
1394#ifdef NT_UTSNAME
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001395 XLAT(NT_UTSNAME),
Dmitry V. Levinc41808b2013-03-18 00:52:29 +00001396#endif
1397#ifdef NT_LWPSTATUS
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001398 XLAT(NT_LWPSTATUS),
Dmitry V. Levinc41808b2013-03-18 00:52:29 +00001399#endif
1400#ifdef NT_LWPSINFO
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001401 XLAT(NT_LWPSINFO),
Dmitry V. Levinc41808b2013-03-18 00:52:29 +00001402#endif
1403#ifdef NT_PRFPXREG
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001404 XLAT(NT_PRFPXREG),
Dmitry V. Levinc41808b2013-03-18 00:52:29 +00001405#endif
1406#ifdef NT_PRXFPREG
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001407 XLAT(NT_PRXFPREG),
Dmitry V. Levinc41808b2013-03-18 00:52:29 +00001408#endif
1409#ifdef NT_PPC_VMX
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001410 XLAT(NT_PPC_VMX),
Dmitry V. Levinc41808b2013-03-18 00:52:29 +00001411#endif
1412#ifdef NT_PPC_SPE
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001413 XLAT(NT_PPC_SPE),
Dmitry V. Levinc41808b2013-03-18 00:52:29 +00001414#endif
1415#ifdef NT_PPC_VSX
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001416 XLAT(NT_PPC_VSX),
Dmitry V. Levinc41808b2013-03-18 00:52:29 +00001417#endif
1418#ifdef NT_386_TLS
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001419 XLAT(NT_386_TLS),
Dmitry V. Levinc41808b2013-03-18 00:52:29 +00001420#endif
1421#ifdef NT_386_IOPERM
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001422 XLAT(NT_386_IOPERM),
Dmitry V. Levinc41808b2013-03-18 00:52:29 +00001423#endif
1424#ifdef NT_X86_XSTATE
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001425 XLAT(NT_X86_XSTATE),
Dmitry V. Levinc41808b2013-03-18 00:52:29 +00001426#endif
Dmitry V. Levin59452732014-02-05 02:20:51 +00001427 XLAT_END
Dmitry V. Levinc41808b2013-03-18 00:52:29 +00001428};
1429
Denys Vlasenko513e9c22012-03-21 14:39:22 +01001430#define uoff(member) offsetof(struct user, member)
1431
Roland McGrathd9f816f2004-09-04 03:39:20 +00001432const struct xlat struct_user_offsets[] = {
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001433#if defined(S390) || defined(S390X)
Wichert Akkerman4dc8a2a1999-12-23 14:20:14 +00001434 { PT_PSWMASK, "psw_mask" },
1435 { PT_PSWADDR, "psw_addr" },
1436 { PT_GPR0, "gpr0" },
1437 { PT_GPR1, "gpr1" },
1438 { PT_GPR2, "gpr2" },
1439 { PT_GPR3, "gpr3" },
1440 { PT_GPR4, "gpr4" },
1441 { PT_GPR5, "gpr5" },
1442 { PT_GPR6, "gpr6" },
1443 { PT_GPR7, "gpr7" },
1444 { PT_GPR8, "gpr8" },
1445 { PT_GPR9, "gpr9" },
1446 { PT_GPR10, "gpr10" },
1447 { PT_GPR11, "gpr11" },
1448 { PT_GPR12, "gpr12" },
1449 { PT_GPR13, "gpr13" },
1450 { PT_GPR14, "gpr14" },
1451 { PT_GPR15, "gpr15" },
1452 { PT_ACR0, "acr0" },
1453 { PT_ACR1, "acr1" },
1454 { PT_ACR2, "acr2" },
1455 { PT_ACR3, "acr3" },
1456 { PT_ACR4, "acr4" },
1457 { PT_ACR5, "acr5" },
1458 { PT_ACR6, "acr6" },
1459 { PT_ACR7, "acr7" },
1460 { PT_ACR8, "acr8" },
1461 { PT_ACR9, "acr9" },
1462 { PT_ACR10, "acr10" },
1463 { PT_ACR11, "acr11" },
1464 { PT_ACR12, "acr12" },
1465 { PT_ACR13, "acr13" },
1466 { PT_ACR14, "acr14" },
1467 { PT_ACR15, "acr15" },
1468 { PT_ORIGGPR2, "orig_gpr2" },
1469 { PT_FPC, "fpc" },
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001470#if defined(S390)
Wichert Akkerman4dc8a2a1999-12-23 14:20:14 +00001471 { PT_FPR0_HI, "fpr0.hi" },
1472 { PT_FPR0_LO, "fpr0.lo" },
1473 { PT_FPR1_HI, "fpr1.hi" },
1474 { PT_FPR1_LO, "fpr1.lo" },
1475 { PT_FPR2_HI, "fpr2.hi" },
1476 { PT_FPR2_LO, "fpr2.lo" },
1477 { PT_FPR3_HI, "fpr3.hi" },
1478 { PT_FPR3_LO, "fpr3.lo" },
1479 { PT_FPR4_HI, "fpr4.hi" },
1480 { PT_FPR4_LO, "fpr4.lo" },
1481 { PT_FPR5_HI, "fpr5.hi" },
1482 { PT_FPR5_LO, "fpr5.lo" },
1483 { PT_FPR6_HI, "fpr6.hi" },
1484 { PT_FPR6_LO, "fpr6.lo" },
1485 { PT_FPR7_HI, "fpr7.hi" },
1486 { PT_FPR7_LO, "fpr7.lo" },
1487 { PT_FPR8_HI, "fpr8.hi" },
1488 { PT_FPR8_LO, "fpr8.lo" },
1489 { PT_FPR9_HI, "fpr9.hi" },
1490 { PT_FPR9_LO, "fpr9.lo" },
1491 { PT_FPR10_HI, "fpr10.hi" },
1492 { PT_FPR10_LO, "fpr10.lo" },
1493 { PT_FPR11_HI, "fpr11.hi" },
1494 { PT_FPR11_LO, "fpr11.lo" },
1495 { PT_FPR12_HI, "fpr12.hi" },
1496 { PT_FPR12_LO, "fpr12.lo" },
1497 { PT_FPR13_HI, "fpr13.hi" },
1498 { PT_FPR13_LO, "fpr13.lo" },
1499 { PT_FPR14_HI, "fpr14.hi" },
1500 { PT_FPR14_LO, "fpr14.lo" },
1501 { PT_FPR15_HI, "fpr15.hi" },
1502 { PT_FPR15_LO, "fpr15.lo" },
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001503#endif
1504#if defined(S390X)
Michal Ludvig10a88d02002-10-07 14:31:00 +00001505 { PT_FPR0, "fpr0" },
1506 { PT_FPR1, "fpr1" },
1507 { PT_FPR2, "fpr2" },
1508 { PT_FPR3, "fpr3" },
1509 { PT_FPR4, "fpr4" },
1510 { PT_FPR5, "fpr5" },
1511 { PT_FPR6, "fpr6" },
1512 { PT_FPR7, "fpr7" },
1513 { PT_FPR8, "fpr8" },
1514 { PT_FPR9, "fpr9" },
1515 { PT_FPR10, "fpr10" },
1516 { PT_FPR11, "fpr11" },
1517 { PT_FPR12, "fpr12" },
1518 { PT_FPR13, "fpr13" },
1519 { PT_FPR14, "fpr14" },
1520 { PT_FPR15, "fpr15" },
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001521#endif
Wichert Akkerman4dc8a2a1999-12-23 14:20:14 +00001522 { PT_CR_9, "cr9" },
1523 { PT_CR_10, "cr10" },
1524 { PT_CR_11, "cr11" },
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001525 { PT_IEEE_IP, "ieee_exception_ip" },
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001526#elif defined(SPARC)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001527 /* XXX No support for these offsets yet. */
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001528#elif defined(HPPA)
Wichert Akkermanc1652e22001-03-27 12:17:16 +00001529 /* XXX No support for these offsets yet. */
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001530#elif defined(POWERPC)
1531# ifndef PT_ORIG_R3
1532# define PT_ORIG_R3 34
1533# endif
1534# define REGSIZE (sizeof(unsigned long))
Roland McGratheb285352003-01-14 09:59:00 +00001535 { REGSIZE*PT_R0, "r0" },
1536 { REGSIZE*PT_R1, "r1" },
1537 { REGSIZE*PT_R2, "r2" },
1538 { REGSIZE*PT_R3, "r3" },
1539 { REGSIZE*PT_R4, "r4" },
1540 { REGSIZE*PT_R5, "r5" },
1541 { REGSIZE*PT_R6, "r6" },
1542 { REGSIZE*PT_R7, "r7" },
1543 { REGSIZE*PT_R8, "r8" },
1544 { REGSIZE*PT_R9, "r9" },
1545 { REGSIZE*PT_R10, "r10" },
1546 { REGSIZE*PT_R11, "r11" },
1547 { REGSIZE*PT_R12, "r12" },
1548 { REGSIZE*PT_R13, "r13" },
1549 { REGSIZE*PT_R14, "r14" },
1550 { REGSIZE*PT_R15, "r15" },
1551 { REGSIZE*PT_R16, "r16" },
1552 { REGSIZE*PT_R17, "r17" },
1553 { REGSIZE*PT_R18, "r18" },
1554 { REGSIZE*PT_R19, "r19" },
1555 { REGSIZE*PT_R20, "r20" },
1556 { REGSIZE*PT_R21, "r21" },
1557 { REGSIZE*PT_R22, "r22" },
1558 { REGSIZE*PT_R23, "r23" },
1559 { REGSIZE*PT_R24, "r24" },
1560 { REGSIZE*PT_R25, "r25" },
1561 { REGSIZE*PT_R26, "r26" },
1562 { REGSIZE*PT_R27, "r27" },
1563 { REGSIZE*PT_R28, "r28" },
1564 { REGSIZE*PT_R29, "r29" },
1565 { REGSIZE*PT_R30, "r30" },
1566 { REGSIZE*PT_R31, "r31" },
1567 { REGSIZE*PT_NIP, "NIP" },
1568 { REGSIZE*PT_MSR, "MSR" },
1569 { REGSIZE*PT_ORIG_R3, "ORIG_R3" },
1570 { REGSIZE*PT_CTR, "CTR" },
1571 { REGSIZE*PT_LNK, "LNK" },
1572 { REGSIZE*PT_XER, "XER" },
1573 { REGSIZE*PT_CCR, "CCR" },
1574 { REGSIZE*PT_FPR0, "FPR0" },
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001575# undef REGSIZE
1576#elif defined(ALPHA)
Wichert Akkerman4dc8a2a1999-12-23 14:20:14 +00001577 { 0, "r0" },
1578 { 1, "r1" },
1579 { 2, "r2" },
1580 { 3, "r3" },
1581 { 4, "r4" },
1582 { 5, "r5" },
1583 { 6, "r6" },
1584 { 7, "r7" },
1585 { 8, "r8" },
1586 { 9, "r9" },
1587 { 10, "r10" },
1588 { 11, "r11" },
1589 { 12, "r12" },
1590 { 13, "r13" },
1591 { 14, "r14" },
1592 { 15, "r15" },
1593 { 16, "r16" },
1594 { 17, "r17" },
1595 { 18, "r18" },
1596 { 19, "r19" },
1597 { 20, "r20" },
1598 { 21, "r21" },
1599 { 22, "r22" },
1600 { 23, "r23" },
1601 { 24, "r24" },
1602 { 25, "r25" },
1603 { 26, "r26" },
1604 { 27, "r27" },
1605 { 28, "r28" },
1606 { 29, "gp" },
1607 { 30, "fp" },
1608 { 31, "zero" },
1609 { 32, "fp0" },
1610 { 33, "fp" },
1611 { 34, "fp2" },
1612 { 35, "fp3" },
1613 { 36, "fp4" },
1614 { 37, "fp5" },
1615 { 38, "fp6" },
1616 { 39, "fp7" },
1617 { 40, "fp8" },
1618 { 41, "fp9" },
1619 { 42, "fp10" },
1620 { 43, "fp11" },
1621 { 44, "fp12" },
1622 { 45, "fp13" },
1623 { 46, "fp14" },
1624 { 47, "fp15" },
1625 { 48, "fp16" },
1626 { 49, "fp17" },
1627 { 50, "fp18" },
1628 { 51, "fp19" },
1629 { 52, "fp20" },
1630 { 53, "fp21" },
1631 { 54, "fp22" },
1632 { 55, "fp23" },
1633 { 56, "fp24" },
1634 { 57, "fp25" },
1635 { 58, "fp26" },
1636 { 59, "fp27" },
1637 { 60, "fp28" },
1638 { 61, "fp29" },
1639 { 62, "fp30" },
1640 { 63, "fp31" },
1641 { 64, "pc" },
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001642#elif defined(IA64)
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +00001643 { PT_F32, "f32" }, { PT_F33, "f33" }, { PT_F34, "f34" },
1644 { PT_F35, "f35" }, { PT_F36, "f36" }, { PT_F37, "f37" },
1645 { PT_F38, "f38" }, { PT_F39, "f39" }, { PT_F40, "f40" },
1646 { PT_F41, "f41" }, { PT_F42, "f42" }, { PT_F43, "f43" },
1647 { PT_F44, "f44" }, { PT_F45, "f45" }, { PT_F46, "f46" },
1648 { PT_F47, "f47" }, { PT_F48, "f48" }, { PT_F49, "f49" },
1649 { PT_F50, "f50" }, { PT_F51, "f51" }, { PT_F52, "f52" },
1650 { PT_F53, "f53" }, { PT_F54, "f54" }, { PT_F55, "f55" },
1651 { PT_F56, "f56" }, { PT_F57, "f57" }, { PT_F58, "f58" },
1652 { PT_F59, "f59" }, { PT_F60, "f60" }, { PT_F61, "f61" },
1653 { PT_F62, "f62" }, { PT_F63, "f63" }, { PT_F64, "f64" },
1654 { PT_F65, "f65" }, { PT_F66, "f66" }, { PT_F67, "f67" },
1655 { PT_F68, "f68" }, { PT_F69, "f69" }, { PT_F70, "f70" },
1656 { PT_F71, "f71" }, { PT_F72, "f72" }, { PT_F73, "f73" },
1657 { PT_F74, "f74" }, { PT_F75, "f75" }, { PT_F76, "f76" },
1658 { PT_F77, "f77" }, { PT_F78, "f78" }, { PT_F79, "f79" },
1659 { PT_F80, "f80" }, { PT_F81, "f81" }, { PT_F82, "f82" },
1660 { PT_F83, "f83" }, { PT_F84, "f84" }, { PT_F85, "f85" },
1661 { PT_F86, "f86" }, { PT_F87, "f87" }, { PT_F88, "f88" },
1662 { PT_F89, "f89" }, { PT_F90, "f90" }, { PT_F91, "f91" },
1663 { PT_F92, "f92" }, { PT_F93, "f93" }, { PT_F94, "f94" },
1664 { PT_F95, "f95" }, { PT_F96, "f96" }, { PT_F97, "f97" },
1665 { PT_F98, "f98" }, { PT_F99, "f99" }, { PT_F100, "f100" },
1666 { PT_F101, "f101" }, { PT_F102, "f102" }, { PT_F103, "f103" },
1667 { PT_F104, "f104" }, { PT_F105, "f105" }, { PT_F106, "f106" },
1668 { PT_F107, "f107" }, { PT_F108, "f108" }, { PT_F109, "f109" },
1669 { PT_F110, "f110" }, { PT_F111, "f111" }, { PT_F112, "f112" },
1670 { PT_F113, "f113" }, { PT_F114, "f114" }, { PT_F115, "f115" },
1671 { PT_F116, "f116" }, { PT_F117, "f117" }, { PT_F118, "f118" },
1672 { PT_F119, "f119" }, { PT_F120, "f120" }, { PT_F121, "f121" },
1673 { PT_F122, "f122" }, { PT_F123, "f123" }, { PT_F124, "f124" },
1674 { PT_F125, "f125" }, { PT_F126, "f126" }, { PT_F127, "f127" },
1675 /* switch stack: */
1676 { PT_F2, "f2" }, { PT_F3, "f3" }, { PT_F4, "f4" },
1677 { PT_F5, "f5" }, { PT_F10, "f10" }, { PT_F11, "f11" },
1678 { PT_F12, "f12" }, { PT_F13, "f13" }, { PT_F14, "f14" },
1679 { PT_F15, "f15" }, { PT_F16, "f16" }, { PT_F17, "f17" },
1680 { PT_F18, "f18" }, { PT_F19, "f19" }, { PT_F20, "f20" },
1681 { PT_F21, "f21" }, { PT_F22, "f22" }, { PT_F23, "f23" },
1682 { PT_F24, "f24" }, { PT_F25, "f25" }, { PT_F26, "f26" },
1683 { PT_F27, "f27" }, { PT_F28, "f28" }, { PT_F29, "f29" },
1684 { PT_F30, "f30" }, { PT_F31, "f31" }, { PT_R4, "r4" },
1685 { PT_R5, "r5" }, { PT_R6, "r6" }, { PT_R7, "r7" },
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +00001686 { PT_B1, "b1" }, { PT_B2, "b2" }, { PT_B3, "b3" },
1687 { PT_B4, "b4" }, { PT_B5, "b5" },
Roland McGrathca4e10c2004-01-13 10:13:20 +00001688 { PT_AR_EC, "ar.ec" }, { PT_AR_LC, "ar.lc" },
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +00001689 /* pt_regs */
Roland McGrathca4e10c2004-01-13 10:13:20 +00001690 { PT_CR_IPSR, "psr" }, { PT_CR_IIP, "ip" },
1691 { PT_CFM, "cfm" }, { PT_AR_UNAT, "ar.unat" },
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +00001692 { PT_AR_PFS, "ar.pfs" }, { PT_AR_RSC, "ar.rsc" },
1693 { PT_AR_RNAT, "ar.rnat" }, { PT_AR_BSPSTORE, "ar.bspstore" },
1694 { PT_PR, "pr" }, { PT_B6, "b6" }, { PT_AR_BSP, "ar.bsp" },
1695 { PT_R1, "r1" }, { PT_R2, "r2" }, { PT_R3, "r3" },
1696 { PT_R12, "r12" }, { PT_R13, "r13" }, { PT_R14, "r14" },
1697 { PT_R15, "r15" }, { PT_R8, "r8" }, { PT_R9, "r9" },
1698 { PT_R10, "r10" }, { PT_R11, "r11" }, { PT_R16, "r16" },
1699 { PT_R17, "r17" }, { PT_R18, "r18" }, { PT_R19, "r19" },
1700 { PT_R20, "r20" }, { PT_R21, "r21" }, { PT_R22, "r22" },
1701 { PT_R23, "r23" }, { PT_R24, "r24" }, { PT_R25, "r25" },
1702 { PT_R26, "r26" }, { PT_R27, "r27" }, { PT_R28, "r28" },
1703 { PT_R29, "r29" }, { PT_R30, "r30" }, { PT_R31, "r31" },
1704 { PT_AR_CCV, "ar.ccv" }, { PT_AR_FPSR, "ar.fpsr" },
1705 { PT_B0, "b0" }, { PT_B7, "b7" }, { PT_F6, "f6" },
1706 { PT_F7, "f7" }, { PT_F8, "f8" }, { PT_F9, "f9" },
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001707# ifdef PT_AR_CSD
Roland McGrathfb1bc072004-03-01 21:29:24 +00001708 { PT_AR_CSD, "ar.csd" },
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001709# endif
1710# ifdef PT_AR_SSD
Roland McGrathfb1bc072004-03-01 21:29:24 +00001711 { PT_AR_SSD, "ar.ssd" },
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001712# endif
Roland McGrathca4e10c2004-01-13 10:13:20 +00001713 { PT_DBR, "dbr" }, { PT_IBR, "ibr" }, { PT_PMD, "pmd" },
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001714#elif defined(I386)
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001715 XLAT(4*EBX),
1716 XLAT(4*ECX),
1717 XLAT(4*EDX),
1718 XLAT(4*ESI),
1719 XLAT(4*EDI),
1720 XLAT(4*EBP),
1721 XLAT(4*EAX),
1722 XLAT(4*DS),
1723 XLAT(4*ES),
1724 XLAT(4*FS),
1725 XLAT(4*GS),
1726 XLAT(4*ORIG_EAX),
1727 XLAT(4*EIP),
1728 XLAT(4*CS),
1729 XLAT(4*EFL),
1730 XLAT(4*UESP),
1731 XLAT(4*SS),
H.J. Lu35be5812012-04-16 13:00:01 +02001732#elif defined(X86_64) || defined(X32)
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001733 XLAT(8*R15),
1734 XLAT(8*R14),
1735 XLAT(8*R13),
1736 XLAT(8*R12),
1737 XLAT(8*RBP),
1738 XLAT(8*RBX),
1739 XLAT(8*R11),
1740 XLAT(8*R10),
1741 XLAT(8*R9),
1742 XLAT(8*R8),
1743 XLAT(8*RAX),
1744 XLAT(8*RCX),
1745 XLAT(8*RDX),
1746 XLAT(8*RSI),
1747 XLAT(8*RDI),
1748 XLAT(8*ORIG_RAX),
1749 XLAT(8*RIP),
1750 XLAT(8*CS),
Michal Ludvig0e035502002-09-23 15:41:01 +00001751 { 8*EFLAGS, "8*EFL" },
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001752 XLAT(8*RSP),
1753 XLAT(8*SS),
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001754#elif defined(M68K)
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001755 XLAT(4*PT_D1),
1756 XLAT(4*PT_D2),
1757 XLAT(4*PT_D3),
1758 XLAT(4*PT_D4),
1759 XLAT(4*PT_D5),
1760 XLAT(4*PT_D6),
1761 XLAT(4*PT_D7),
1762 XLAT(4*PT_A0),
1763 XLAT(4*PT_A1),
1764 XLAT(4*PT_A2),
1765 XLAT(4*PT_A3),
1766 XLAT(4*PT_A4),
1767 XLAT(4*PT_A5),
1768 XLAT(4*PT_A6),
1769 XLAT(4*PT_D0),
1770 XLAT(4*PT_USP),
1771 XLAT(4*PT_ORIG_D0),
1772 XLAT(4*PT_SR),
1773 XLAT(4*PT_PC),
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001774#elif defined(SH)
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001775 XLAT(4*REG_REG0),
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001776 { 4*(REG_REG0+1), "4*REG_REG1" },
1777 { 4*(REG_REG0+2), "4*REG_REG2" },
1778 { 4*(REG_REG0+3), "4*REG_REG3" },
1779 { 4*(REG_REG0+4), "4*REG_REG4" },
1780 { 4*(REG_REG0+5), "4*REG_REG5" },
1781 { 4*(REG_REG0+6), "4*REG_REG6" },
1782 { 4*(REG_REG0+7), "4*REG_REG7" },
1783 { 4*(REG_REG0+8), "4*REG_REG8" },
1784 { 4*(REG_REG0+9), "4*REG_REG9" },
1785 { 4*(REG_REG0+10), "4*REG_REG10" },
1786 { 4*(REG_REG0+11), "4*REG_REG11" },
1787 { 4*(REG_REG0+12), "4*REG_REG12" },
1788 { 4*(REG_REG0+13), "4*REG_REG13" },
1789 { 4*(REG_REG0+14), "4*REG_REG14" },
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001790 XLAT(4*REG_REG15),
1791 XLAT(4*REG_PC),
1792 XLAT(4*REG_PR),
1793 XLAT(4*REG_SR),
1794 XLAT(4*REG_GBR),
1795 XLAT(4*REG_MACH),
1796 XLAT(4*REG_MACL),
1797 XLAT(4*REG_SYSCALL),
1798 XLAT(4*REG_FPUL),
1799 XLAT(4*REG_FPREG0),
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001800 { 4*(REG_FPREG0+1), "4*REG_FPREG1" },
1801 { 4*(REG_FPREG0+2), "4*REG_FPREG2" },
1802 { 4*(REG_FPREG0+3), "4*REG_FPREG3" },
1803 { 4*(REG_FPREG0+4), "4*REG_FPREG4" },
1804 { 4*(REG_FPREG0+5), "4*REG_FPREG5" },
1805 { 4*(REG_FPREG0+6), "4*REG_FPREG6" },
1806 { 4*(REG_FPREG0+7), "4*REG_FPREG7" },
1807 { 4*(REG_FPREG0+8), "4*REG_FPREG8" },
1808 { 4*(REG_FPREG0+9), "4*REG_FPREG9" },
1809 { 4*(REG_FPREG0+10), "4*REG_FPREG10" },
1810 { 4*(REG_FPREG0+11), "4*REG_FPREG11" },
1811 { 4*(REG_FPREG0+12), "4*REG_FPREG12" },
1812 { 4*(REG_FPREG0+13), "4*REG_FPREG13" },
1813 { 4*(REG_FPREG0+14), "4*REG_FPREG14" },
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001814 XLAT(4*REG_FPREG15),
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001815# ifdef REG_XDREG0
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001816 XLAT(4*REG_XDREG0),
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001817 { 4*(REG_XDREG0+2), "4*REG_XDREG2" },
1818 { 4*(REG_XDREG0+4), "4*REG_XDREG4" },
1819 { 4*(REG_XDREG0+6), "4*REG_XDREG6" },
1820 { 4*(REG_XDREG0+8), "4*REG_XDREG8" },
1821 { 4*(REG_XDREG0+10), "4*REG_XDREG10" },
1822 { 4*(REG_XDREG0+12), "4*REG_XDREG12" },
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001823 XLAT(4*REG_XDREG14),
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001824# endif
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00001825 XLAT(4*REG_FPSCR),
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001826#elif defined(SH64)
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001827 { 0, "PC(L)" },
1828 { 4, "PC(U)" },
1829 { 8, "SR(L)" },
1830 { 12, "SR(U)" },
1831 { 16, "syscall no.(L)" },
1832 { 20, "syscall_no.(U)" },
1833 { 24, "R0(L)" },
1834 { 28, "R0(U)" },
1835 { 32, "R1(L)" },
1836 { 36, "R1(U)" },
1837 { 40, "R2(L)" },
1838 { 44, "R2(U)" },
1839 { 48, "R3(L)" },
1840 { 52, "R3(U)" },
1841 { 56, "R4(L)" },
1842 { 60, "R4(U)" },
1843 { 64, "R5(L)" },
1844 { 68, "R5(U)" },
1845 { 72, "R6(L)" },
1846 { 76, "R6(U)" },
1847 { 80, "R7(L)" },
1848 { 84, "R7(U)" },
1849 { 88, "R8(L)" },
1850 { 92, "R8(U)" },
1851 { 96, "R9(L)" },
1852 { 100, "R9(U)" },
1853 { 104, "R10(L)" },
1854 { 108, "R10(U)" },
1855 { 112, "R11(L)" },
1856 { 116, "R11(U)" },
1857 { 120, "R12(L)" },
1858 { 124, "R12(U)" },
1859 { 128, "R13(L)" },
1860 { 132, "R13(U)" },
1861 { 136, "R14(L)" },
1862 { 140, "R14(U)" },
1863 { 144, "R15(L)" },
1864 { 148, "R15(U)" },
1865 { 152, "R16(L)" },
1866 { 156, "R16(U)" },
1867 { 160, "R17(L)" },
1868 { 164, "R17(U)" },
1869 { 168, "R18(L)" },
1870 { 172, "R18(U)" },
1871 { 176, "R19(L)" },
1872 { 180, "R19(U)" },
1873 { 184, "R20(L)" },
1874 { 188, "R20(U)" },
1875 { 192, "R21(L)" },
1876 { 196, "R21(U)" },
1877 { 200, "R22(L)" },
1878 { 204, "R22(U)" },
1879 { 208, "R23(L)" },
1880 { 212, "R23(U)" },
1881 { 216, "R24(L)" },
1882 { 220, "R24(U)" },
1883 { 224, "R25(L)" },
1884 { 228, "R25(U)" },
1885 { 232, "R26(L)" },
1886 { 236, "R26(U)" },
1887 { 240, "R27(L)" },
1888 { 244, "R27(U)" },
1889 { 248, "R28(L)" },
1890 { 252, "R28(U)" },
1891 { 256, "R29(L)" },
1892 { 260, "R29(U)" },
1893 { 264, "R30(L)" },
1894 { 268, "R30(U)" },
1895 { 272, "R31(L)" },
1896 { 276, "R31(U)" },
1897 { 280, "R32(L)" },
1898 { 284, "R32(U)" },
1899 { 288, "R33(L)" },
1900 { 292, "R33(U)" },
1901 { 296, "R34(L)" },
1902 { 300, "R34(U)" },
1903 { 304, "R35(L)" },
1904 { 308, "R35(U)" },
1905 { 312, "R36(L)" },
1906 { 316, "R36(U)" },
1907 { 320, "R37(L)" },
1908 { 324, "R37(U)" },
1909 { 328, "R38(L)" },
1910 { 332, "R38(U)" },
1911 { 336, "R39(L)" },
1912 { 340, "R39(U)" },
1913 { 344, "R40(L)" },
1914 { 348, "R40(U)" },
1915 { 352, "R41(L)" },
1916 { 356, "R41(U)" },
1917 { 360, "R42(L)" },
1918 { 364, "R42(U)" },
1919 { 368, "R43(L)" },
1920 { 372, "R43(U)" },
1921 { 376, "R44(L)" },
1922 { 380, "R44(U)" },
1923 { 384, "R45(L)" },
1924 { 388, "R45(U)" },
1925 { 392, "R46(L)" },
1926 { 396, "R46(U)" },
1927 { 400, "R47(L)" },
1928 { 404, "R47(U)" },
1929 { 408, "R48(L)" },
1930 { 412, "R48(U)" },
1931 { 416, "R49(L)" },
1932 { 420, "R49(U)" },
1933 { 424, "R50(L)" },
1934 { 428, "R50(U)" },
1935 { 432, "R51(L)" },
1936 { 436, "R51(U)" },
1937 { 440, "R52(L)" },
1938 { 444, "R52(U)" },
1939 { 448, "R53(L)" },
1940 { 452, "R53(U)" },
1941 { 456, "R54(L)" },
1942 { 460, "R54(U)" },
1943 { 464, "R55(L)" },
1944 { 468, "R55(U)" },
1945 { 472, "R56(L)" },
1946 { 476, "R56(U)" },
1947 { 480, "R57(L)" },
1948 { 484, "R57(U)" },
1949 { 488, "R58(L)" },
1950 { 492, "R58(U)" },
1951 { 496, "R59(L)" },
1952 { 500, "R59(U)" },
1953 { 504, "R60(L)" },
1954 { 508, "R60(U)" },
1955 { 512, "R61(L)" },
1956 { 516, "R61(U)" },
1957 { 520, "R62(L)" },
1958 { 524, "R62(U)" },
1959 { 528, "TR0(L)" },
1960 { 532, "TR0(U)" },
1961 { 536, "TR1(L)" },
1962 { 540, "TR1(U)" },
1963 { 544, "TR2(L)" },
1964 { 548, "TR2(U)" },
1965 { 552, "TR3(L)" },
1966 { 556, "TR3(U)" },
1967 { 560, "TR4(L)" },
1968 { 564, "TR4(U)" },
1969 { 568, "TR5(L)" },
1970 { 572, "TR5(U)" },
1971 { 576, "TR6(L)" },
1972 { 580, "TR6(U)" },
1973 { 584, "TR7(L)" },
1974 { 588, "TR7(U)" },
Denys Vlasenkoadedb512008-12-30 18:47:55 +00001975 /* This entry is in case pt_regs contains dregs (depends on
1976 the kernel build options). */
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001977 { uoff(regs), "offsetof(struct user, regs)" },
1978 { uoff(fpu), "offsetof(struct user, fpu)" },
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001979#elif defined(ARM)
Roland McGrath0f87c492003-06-03 23:29:04 +00001980 { uoff(regs.ARM_r0), "r0" },
1981 { uoff(regs.ARM_r1), "r1" },
1982 { uoff(regs.ARM_r2), "r2" },
1983 { uoff(regs.ARM_r3), "r3" },
1984 { uoff(regs.ARM_r4), "r4" },
1985 { uoff(regs.ARM_r5), "r5" },
1986 { uoff(regs.ARM_r6), "r6" },
1987 { uoff(regs.ARM_r7), "r7" },
1988 { uoff(regs.ARM_r8), "r8" },
1989 { uoff(regs.ARM_r9), "r9" },
1990 { uoff(regs.ARM_r10), "r10" },
1991 { uoff(regs.ARM_fp), "fp" },
1992 { uoff(regs.ARM_ip), "ip" },
1993 { uoff(regs.ARM_sp), "sp" },
1994 { uoff(regs.ARM_lr), "lr" },
1995 { uoff(regs.ARM_pc), "pc" },
1996 { uoff(regs.ARM_cpsr), "cpsr" },
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01001997#elif defined(AVR32)
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +00001998 { uoff(regs.sr), "sr" },
1999 { uoff(regs.pc), "pc" },
2000 { uoff(regs.lr), "lr" },
2001 { uoff(regs.sp), "sp" },
2002 { uoff(regs.r12), "r12" },
2003 { uoff(regs.r11), "r11" },
2004 { uoff(regs.r10), "r10" },
2005 { uoff(regs.r9), "r9" },
2006 { uoff(regs.r8), "r8" },
2007 { uoff(regs.r7), "r7" },
2008 { uoff(regs.r6), "r6" },
2009 { uoff(regs.r5), "r5" },
2010 { uoff(regs.r4), "r4" },
2011 { uoff(regs.r3), "r3" },
2012 { uoff(regs.r2), "r2" },
2013 { uoff(regs.r1), "r1" },
2014 { uoff(regs.r0), "r0" },
2015 { uoff(regs.r12_orig), "orig_r12" },
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01002016#elif defined(MIPS)
Roland McGrath542c2c62008-05-20 01:11:56 +00002017 { 0, "r0" },
2018 { 1, "r1" },
2019 { 2, "r2" },
2020 { 3, "r3" },
2021 { 4, "r4" },
2022 { 5, "r5" },
2023 { 6, "r6" },
2024 { 7, "r7" },
2025 { 8, "r8" },
2026 { 9, "r9" },
2027 { 10, "r10" },
2028 { 11, "r11" },
2029 { 12, "r12" },
2030 { 13, "r13" },
2031 { 14, "r14" },
2032 { 15, "r15" },
2033 { 16, "r16" },
2034 { 17, "r17" },
2035 { 18, "r18" },
2036 { 19, "r19" },
2037 { 20, "r20" },
2038 { 21, "r21" },
2039 { 22, "r22" },
2040 { 23, "r23" },
2041 { 24, "r24" },
2042 { 25, "r25" },
2043 { 26, "r26" },
2044 { 27, "r27" },
2045 { 28, "r28" },
2046 { 29, "r29" },
2047 { 30, "r30" },
2048 { 31, "r31" },
2049 { 32, "f0" },
2050 { 33, "f1" },
2051 { 34, "f2" },
2052 { 35, "f3" },
2053 { 36, "f4" },
2054 { 37, "f5" },
2055 { 38, "f6" },
2056 { 39, "f7" },
2057 { 40, "f8" },
2058 { 41, "f9" },
2059 { 42, "f10" },
2060 { 43, "f11" },
2061 { 44, "f12" },
2062 { 45, "f13" },
2063 { 46, "f14" },
2064 { 47, "f15" },
2065 { 48, "f16" },
2066 { 49, "f17" },
2067 { 50, "f18" },
2068 { 51, "f19" },
2069 { 52, "f20" },
2070 { 53, "f21" },
2071 { 54, "f22" },
2072 { 55, "f23" },
2073 { 56, "f24" },
2074 { 57, "f25" },
2075 { 58, "f26" },
2076 { 59, "f27" },
2077 { 60, "f28" },
2078 { 61, "f29" },
2079 { 62, "f30" },
2080 { 63, "f31" },
2081 { 64, "pc" },
2082 { 65, "cause" },
2083 { 66, "badvaddr" },
2084 { 67, "mmhi" },
2085 { 68, "mmlo" },
2086 { 69, "fpcsr" },
2087 { 70, "fpeir" },
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01002088#elif defined(TILE)
Chris Metcalfc8c66982009-12-28 10:00:15 -05002089 { PTREGS_OFFSET_REG(0), "r0" },
2090 { PTREGS_OFFSET_REG(1), "r1" },
2091 { PTREGS_OFFSET_REG(2), "r2" },
2092 { PTREGS_OFFSET_REG(3), "r3" },
2093 { PTREGS_OFFSET_REG(4), "r4" },
2094 { PTREGS_OFFSET_REG(5), "r5" },
2095 { PTREGS_OFFSET_REG(6), "r6" },
2096 { PTREGS_OFFSET_REG(7), "r7" },
2097 { PTREGS_OFFSET_REG(8), "r8" },
2098 { PTREGS_OFFSET_REG(9), "r9" },
2099 { PTREGS_OFFSET_REG(10), "r10" },
2100 { PTREGS_OFFSET_REG(11), "r11" },
2101 { PTREGS_OFFSET_REG(12), "r12" },
2102 { PTREGS_OFFSET_REG(13), "r13" },
2103 { PTREGS_OFFSET_REG(14), "r14" },
2104 { PTREGS_OFFSET_REG(15), "r15" },
2105 { PTREGS_OFFSET_REG(16), "r16" },
2106 { PTREGS_OFFSET_REG(17), "r17" },
2107 { PTREGS_OFFSET_REG(18), "r18" },
2108 { PTREGS_OFFSET_REG(19), "r19" },
2109 { PTREGS_OFFSET_REG(20), "r20" },
2110 { PTREGS_OFFSET_REG(21), "r21" },
2111 { PTREGS_OFFSET_REG(22), "r22" },
2112 { PTREGS_OFFSET_REG(23), "r23" },
2113 { PTREGS_OFFSET_REG(24), "r24" },
2114 { PTREGS_OFFSET_REG(25), "r25" },
2115 { PTREGS_OFFSET_REG(26), "r26" },
2116 { PTREGS_OFFSET_REG(27), "r27" },
2117 { PTREGS_OFFSET_REG(28), "r28" },
2118 { PTREGS_OFFSET_REG(29), "r29" },
2119 { PTREGS_OFFSET_REG(30), "r30" },
2120 { PTREGS_OFFSET_REG(31), "r31" },
2121 { PTREGS_OFFSET_REG(32), "r32" },
2122 { PTREGS_OFFSET_REG(33), "r33" },
2123 { PTREGS_OFFSET_REG(34), "r34" },
2124 { PTREGS_OFFSET_REG(35), "r35" },
2125 { PTREGS_OFFSET_REG(36), "r36" },
2126 { PTREGS_OFFSET_REG(37), "r37" },
2127 { PTREGS_OFFSET_REG(38), "r38" },
2128 { PTREGS_OFFSET_REG(39), "r39" },
2129 { PTREGS_OFFSET_REG(40), "r40" },
2130 { PTREGS_OFFSET_REG(41), "r41" },
2131 { PTREGS_OFFSET_REG(42), "r42" },
2132 { PTREGS_OFFSET_REG(43), "r43" },
2133 { PTREGS_OFFSET_REG(44), "r44" },
2134 { PTREGS_OFFSET_REG(45), "r45" },
2135 { PTREGS_OFFSET_REG(46), "r46" },
2136 { PTREGS_OFFSET_REG(47), "r47" },
2137 { PTREGS_OFFSET_REG(48), "r48" },
2138 { PTREGS_OFFSET_REG(49), "r49" },
2139 { PTREGS_OFFSET_REG(50), "r50" },
2140 { PTREGS_OFFSET_REG(51), "r51" },
2141 { PTREGS_OFFSET_REG(52), "r52" },
2142 { PTREGS_OFFSET_TP, "tp" },
2143 { PTREGS_OFFSET_SP, "sp" },
2144 { PTREGS_OFFSET_LR, "lr" },
2145 { PTREGS_OFFSET_PC, "pc" },
2146 { PTREGS_OFFSET_EX1, "ex1" },
2147 { PTREGS_OFFSET_FAULTNUM, "faultnum" },
2148 { PTREGS_OFFSET_ORIG_R0, "orig_r0" },
2149 { PTREGS_OFFSET_FLAGS, "flags" },
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01002150#endif
2151#ifdef CRISV10
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00002152 XLAT(4*PT_FRAMETYPE),
2153 XLAT(4*PT_ORIG_R10),
2154 XLAT(4*PT_R13),
2155 XLAT(4*PT_R12),
2156 XLAT(4*PT_R11),
2157 XLAT(4*PT_R10),
2158 XLAT(4*PT_R9),
2159 XLAT(4*PT_R8),
2160 XLAT(4*PT_R7),
2161 XLAT(4*PT_R6),
2162 XLAT(4*PT_R5),
2163 XLAT(4*PT_R4),
2164 XLAT(4*PT_R3),
2165 XLAT(4*PT_R2),
2166 XLAT(4*PT_R1),
2167 XLAT(4*PT_R0),
2168 XLAT(4*PT_MOF),
2169 XLAT(4*PT_DCCR),
2170 XLAT(4*PT_SRP),
2171 XLAT(4*PT_IRP),
2172 XLAT(4*PT_CSRINSTR),
2173 XLAT(4*PT_CSRADDR),
2174 XLAT(4*PT_CSRDATA),
2175 XLAT(4*PT_USP),
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01002176#endif
2177#ifdef CRISV32
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00002178 XLAT(4*PT_ORIG_R10),
2179 XLAT(4*PT_R0),
2180 XLAT(4*PT_R1),
2181 XLAT(4*PT_R2),
2182 XLAT(4*PT_R3),
2183 XLAT(4*PT_R4),
2184 XLAT(4*PT_R5),
2185 XLAT(4*PT_R6),
2186 XLAT(4*PT_R7),
2187 XLAT(4*PT_R8),
2188 XLAT(4*PT_R9),
2189 XLAT(4*PT_R10),
2190 XLAT(4*PT_R11),
2191 XLAT(4*PT_R12),
2192 XLAT(4*PT_R13),
2193 XLAT(4*PT_ACR),
2194 XLAT(4*PT_SRS),
2195 XLAT(4*PT_MOF),
2196 XLAT(4*PT_SPC),
2197 XLAT(4*PT_CCS),
2198 XLAT(4*PT_SRP),
2199 XLAT(4*PT_ERP),
2200 XLAT(4*PT_EXS),
2201 XLAT(4*PT_EDA),
2202 XLAT(4*PT_USP),
2203 XLAT(4*PT_PPC),
2204 XLAT(4*PT_BP_CTRL),
2205 XLAT(4*PT_BP+4),
2206 XLAT(4*PT_BP+8),
2207 XLAT(4*PT_BP+12),
2208 XLAT(4*PT_BP+16),
2209 XLAT(4*PT_BP+20),
2210 XLAT(4*PT_BP+24),
2211 XLAT(4*PT_BP+28),
2212 XLAT(4*PT_BP+32),
2213 XLAT(4*PT_BP+36),
2214 XLAT(4*PT_BP+40),
2215 XLAT(4*PT_BP+44),
2216 XLAT(4*PT_BP+48),
2217 XLAT(4*PT_BP+52),
2218 XLAT(4*PT_BP+56),
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01002219#endif
2220#ifdef MICROBLAZE
Edgar E. Iglesias939caba2010-07-06 14:21:07 +02002221 { PT_GPR(0), "r0" },
2222 { PT_GPR(1), "r1" },
2223 { PT_GPR(2), "r2" },
2224 { PT_GPR(3), "r3" },
2225 { PT_GPR(4), "r4" },
2226 { PT_GPR(5), "r5" },
2227 { PT_GPR(6), "r6" },
2228 { PT_GPR(7), "r7" },
2229 { PT_GPR(8), "r8" },
2230 { PT_GPR(9), "r9" },
2231 { PT_GPR(10), "r10" },
2232 { PT_GPR(11), "r11" },
2233 { PT_GPR(12), "r12" },
2234 { PT_GPR(13), "r13" },
2235 { PT_GPR(14), "r14" },
2236 { PT_GPR(15), "r15" },
2237 { PT_GPR(16), "r16" },
2238 { PT_GPR(17), "r17" },
2239 { PT_GPR(18), "r18" },
2240 { PT_GPR(19), "r19" },
2241 { PT_GPR(20), "r20" },
2242 { PT_GPR(21), "r21" },
2243 { PT_GPR(22), "r22" },
2244 { PT_GPR(23), "r23" },
2245 { PT_GPR(24), "r24" },
2246 { PT_GPR(25), "r25" },
2247 { PT_GPR(26), "r26" },
2248 { PT_GPR(27), "r27" },
2249 { PT_GPR(28), "r28" },
2250 { PT_GPR(29), "r29" },
2251 { PT_GPR(30), "r30" },
2252 { PT_GPR(31), "r31" },
Denys Vlasenkob63256e2011-06-07 12:13:24 +02002253 { PT_PC, "rpc", },
2254 { PT_MSR, "rmsr", },
Edgar E. Iglesias939caba2010-07-06 14:21:07 +02002255 { PT_EAR, "rear", },
2256 { PT_ESR, "resr", },
2257 { PT_FSR, "rfsr", },
Denys Vlasenkob63256e2011-06-07 12:13:24 +02002258 { PT_KERNEL_MODE, "kernel_mode", },
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01002259#endif
Christian Svensson492f81f2013-02-14 13:26:27 +01002260#ifdef OR1K
2261 { 4*0, "r0" },
2262 { 4*1, "r1" },
2263 { 4*2, "r2" },
2264 { 4*3, "r3" },
2265 { 4*4, "r4" },
2266 { 4*5, "r5" },
2267 { 4*6, "r6" },
2268 { 4*7, "r7" },
2269 { 4*8, "r8" },
2270 { 4*9, "r9" },
2271 { 4*10, "r10" },
2272 { 4*11, "r11" },
2273 { 4*12, "r12" },
2274 { 4*13, "r13" },
2275 { 4*14, "r14" },
2276 { 4*15, "r15" },
2277 { 4*16, "r16" },
2278 { 4*17, "r17" },
2279 { 4*18, "r18" },
2280 { 4*19, "r19" },
2281 { 4*20, "r20" },
2282 { 4*21, "r21" },
2283 { 4*22, "r22" },
2284 { 4*23, "r23" },
2285 { 4*24, "r24" },
2286 { 4*25, "r25" },
2287 { 4*26, "r26" },
2288 { 4*27, "r27" },
2289 { 4*28, "r28" },
2290 { 4*29, "r29" },
2291 { 4*30, "r30" },
2292 { 4*31, "r31" },
2293 { 4*32, "pc" },
2294 { 4*33, "sr" },
2295#endif
Chris Zankel8f636ed2013-03-25 10:22:07 -07002296#ifdef XTENSA
2297 { SYSCALL_NR, "syscall_nr" },
2298 { REG_AR_BASE, "ar0" },
2299 { REG_AR_BASE+1, "ar1" },
2300 { REG_AR_BASE+2, "ar2" },
2301 { REG_AR_BASE+3, "ar3" },
2302 { REG_AR_BASE+4, "ar4" },
2303 { REG_AR_BASE+5, "ar5" },
2304 { REG_AR_BASE+6, "ar6" },
2305 { REG_AR_BASE+7, "ar7" },
2306 { REG_AR_BASE+8, "ar8" },
2307 { REG_AR_BASE+9, "ar9" },
2308 { REG_AR_BASE+10, "ar10" },
2309 { REG_AR_BASE+11, "ar11" },
2310 { REG_AR_BASE+12, "ar12" },
2311 { REG_AR_BASE+13, "ar13" },
2312 { REG_AR_BASE+14, "ar14" },
2313 { REG_AR_BASE+15, "ar15" },
2314 { REG_AR_BASE+16, "ar16" },
2315 { REG_AR_BASE+17, "ar17" },
2316 { REG_AR_BASE+18, "ar18" },
2317 { REG_AR_BASE+19, "ar19" },
2318 { REG_AR_BASE+20, "ar20" },
2319 { REG_AR_BASE+21, "ar21" },
2320 { REG_AR_BASE+22, "ar22" },
2321 { REG_AR_BASE+23, "ar23" },
2322 { REG_AR_BASE+24, "ar24" },
2323 { REG_AR_BASE+25, "ar25" },
2324 { REG_AR_BASE+26, "ar26" },
2325 { REG_AR_BASE+27, "ar27" },
2326 { REG_AR_BASE+28, "ar28" },
2327 { REG_AR_BASE+29, "ar29" },
2328 { REG_AR_BASE+30, "ar30" },
2329 { REG_AR_BASE+31, "ar31" },
2330 { REG_AR_BASE+32, "ar32" },
2331 { REG_AR_BASE+33, "ar33" },
2332 { REG_AR_BASE+34, "ar34" },
2333 { REG_AR_BASE+35, "ar35" },
2334 { REG_AR_BASE+36, "ar36" },
2335 { REG_AR_BASE+37, "ar37" },
2336 { REG_AR_BASE+38, "ar38" },
2337 { REG_AR_BASE+39, "ar39" },
2338 { REG_AR_BASE+40, "ar40" },
2339 { REG_AR_BASE+41, "ar41" },
2340 { REG_AR_BASE+42, "ar42" },
2341 { REG_AR_BASE+43, "ar43" },
2342 { REG_AR_BASE+44, "ar44" },
2343 { REG_AR_BASE+45, "ar45" },
2344 { REG_AR_BASE+46, "ar46" },
2345 { REG_AR_BASE+47, "ar47" },
2346 { REG_AR_BASE+48, "ar48" },
2347 { REG_AR_BASE+49, "ar49" },
2348 { REG_AR_BASE+50, "ar50" },
2349 { REG_AR_BASE+51, "ar51" },
2350 { REG_AR_BASE+52, "ar52" },
2351 { REG_AR_BASE+53, "ar53" },
2352 { REG_AR_BASE+54, "ar54" },
2353 { REG_AR_BASE+55, "ar55" },
2354 { REG_AR_BASE+56, "ar56" },
2355 { REG_AR_BASE+57, "ar57" },
2356 { REG_AR_BASE+58, "ar58" },
2357 { REG_AR_BASE+59, "ar59" },
2358 { REG_AR_BASE+60, "ar60" },
2359 { REG_AR_BASE+61, "ar61" },
2360 { REG_AR_BASE+62, "ar62" },
2361 { REG_AR_BASE+63, "ar63" },
2362 { REG_LBEG, "lbeg" },
2363 { REG_LEND, "lend" },
2364 { REG_LCOUNT, "lcount" },
2365 { REG_SAR, "sar" },
2366 { REG_WB, "wb" },
2367 { REG_WS, "ws" },
2368 { REG_PS, "ps" },
2369 { REG_PC, "pc" },
2370 { REG_A_BASE, "a0" },
2371 { REG_A_BASE+1, "a1" },
2372 { REG_A_BASE+2, "a2" },
2373 { REG_A_BASE+3, "a3" },
2374 { REG_A_BASE+4, "a4" },
2375 { REG_A_BASE+5, "a5" },
2376 { REG_A_BASE+6, "a6" },
2377 { REG_A_BASE+7, "a7" },
2378 { REG_A_BASE+8, "a8" },
2379 { REG_A_BASE+9, "a9" },
2380 { REG_A_BASE+10, "a10" },
2381 { REG_A_BASE+11, "a11" },
2382 { REG_A_BASE+12, "a12" },
2383 { REG_A_BASE+13, "a13" },
2384 { REG_A_BASE+14, "a14" },
2385 { REG_A_BASE+15, "a15" },
2386#endif
2387
Denys Vlasenko729e18d2013-02-12 15:51:58 +01002388 /* Other fields in "struct user" */
2389#if defined(S390) || defined(S390X)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002390 { uoff(u_tsize), "offsetof(struct user, u_tsize)" },
2391 { uoff(u_dsize), "offsetof(struct user, u_dsize)" },
2392 { uoff(u_ssize), "offsetof(struct user, u_ssize)" },
Denys Vlasenko74307a62013-02-12 17:10:05 +01002393 { uoff(start_code), "offsetof(struct user, start_code)" },
2394 /* S390[X] has no start_data */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002395 { uoff(start_stack), "offsetof(struct user, start_stack)" },
2396 { uoff(signal), "offsetof(struct user, signal)" },
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002397 { uoff(u_ar0), "offsetof(struct user, u_ar0)" },
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002398 { uoff(magic), "offsetof(struct user, magic)" },
2399 { uoff(u_comm), "offsetof(struct user, u_comm)" },
Denys Vlasenko729e18d2013-02-12 15:51:58 +01002400 { sizeof(struct user), "sizeof(struct user)" },
2401#elif defined(POWERPC)
2402 { sizeof(struct user), "sizeof(struct user)" },
2403#elif defined(I386) || defined(X86_64) || defined(X32)
2404 { uoff(u_fpvalid), "offsetof(struct user, u_fpvalid)" },
2405 { uoff(i387), "offsetof(struct user, i387)" },
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(u_fpstate), "offsetof(struct user, u_fpstate)" },
2415 { uoff(magic), "offsetof(struct user, magic)" },
2416 { uoff(u_comm), "offsetof(struct user, u_comm)" },
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002417 { uoff(u_debugreg), "offsetof(struct user, u_debugreg)" },
Denys Vlasenko729e18d2013-02-12 15:51:58 +01002418 { sizeof(struct user), "sizeof(struct user)" },
2419#elif defined(IA64)
2420 { sizeof(struct user), "sizeof(struct user)" },
2421#elif defined(ARM)
2422 { uoff(u_fpvalid), "offsetof(struct user, u_fpvalid)" },
2423 { uoff(u_tsize), "offsetof(struct user, u_tsize)" },
2424 { uoff(u_dsize), "offsetof(struct user, u_dsize)" },
2425 { uoff(u_ssize), "offsetof(struct user, u_ssize)" },
2426 { uoff(start_code), "offsetof(struct user, start_code)" },
2427 { uoff(start_stack), "offsetof(struct user, start_stack)" },
2428 { uoff(signal), "offsetof(struct user, signal)" },
2429 { uoff(reserved), "offsetof(struct user, reserved)" },
2430 { uoff(u_ar0), "offsetof(struct user, u_ar0)" },
2431 { uoff(magic), "offsetof(struct user, magic)" },
2432 { uoff(u_comm), "offsetof(struct user, u_comm)" },
2433 { sizeof(struct user), "sizeof(struct user)" },
2434#elif defined(AARCH64)
2435 /* nothing */
2436#elif defined(M68K)
2437 { uoff(u_fpvalid), "offsetof(struct user, u_fpvalid)" },
2438 { uoff(m68kfp), "offsetof(struct user, m68kfp)" },
2439 { uoff(u_tsize), "offsetof(struct user, u_tsize)" },
2440 { uoff(u_dsize), "offsetof(struct user, u_dsize)" },
2441 { uoff(u_ssize), "offsetof(struct user, u_ssize)" },
2442 { uoff(start_code), "offsetof(struct user, start_code)" },
2443 { uoff(start_stack), "offsetof(struct user, start_stack)" },
2444 { uoff(signal), "offsetof(struct user, signal)" },
2445 { uoff(reserved), "offsetof(struct user, reserved)" },
2446 { uoff(u_ar0), "offsetof(struct user, u_ar0)" },
2447 { uoff(u_fpstate), "offsetof(struct user, u_fpstate)" },
2448 { uoff(magic), "offsetof(struct user, magic)" },
2449 { uoff(u_comm), "offsetof(struct user, u_comm)" },
2450 { sizeof(struct user), "sizeof(struct user)" },
Denys Vlasenko873e5a52013-02-12 17:15:19 +01002451#elif defined(MIPS) || defined(LINUX_MIPSN32)
Denys Vlasenko729e18d2013-02-12 15:51:58 +01002452 { uoff(u_tsize), "offsetof(struct user, u_tsize)" },
2453 { uoff(u_dsize), "offsetof(struct user, u_dsize)" },
2454 { uoff(u_ssize), "offsetof(struct user, u_ssize)" },
2455 { uoff(start_code), "offsetof(struct user, start_code)" },
Denys Vlasenko74307a62013-02-12 17:10:05 +01002456 { uoff(start_data), "offsetof(struct user, start_data)" },
Denys Vlasenko729e18d2013-02-12 15:51:58 +01002457 { uoff(start_stack), "offsetof(struct user, start_stack)" },
2458 { uoff(signal), "offsetof(struct user, signal)" },
2459 { uoff(u_ar0), "offsetof(struct user, u_ar0)" },
2460 { uoff(magic), "offsetof(struct user, magic)" },
2461 { uoff(u_comm), "offsetof(struct user, u_comm)" },
2462 { sizeof(struct user), "sizeof(struct user)" },
2463#elif defined(ALPHA)
2464 { sizeof(struct user), "sizeof(struct user)" },
2465#elif defined(SPARC)
2466 { sizeof(struct user), "sizeof(struct user)" },
2467#elif defined(SPARC64)
2468 { uoff(u_tsize), "offsetof(struct user, u_tsize)" },
2469 { uoff(u_dsize), "offsetof(struct user, u_dsize)" },
2470 { uoff(u_ssize), "offsetof(struct user, u_ssize)" },
2471 { uoff(signal), "offsetof(struct user, signal)" },
2472 { uoff(magic), "offsetof(struct user, magic)" },
2473 { uoff(u_comm), "offsetof(struct user, u_comm)" },
2474 { sizeof(struct user), "sizeof(struct user)" },
2475#elif defined(HPPA)
2476 /* nothing */
Denys Vlasenko873e5a52013-02-12 17:15:19 +01002477#elif defined(SH) || defined(SH64)
Denys Vlasenko729e18d2013-02-12 15:51:58 +01002478 { uoff(u_fpvalid), "offsetof(struct user, u_fpvalid)" },
2479 { uoff(u_tsize), "offsetof(struct user, u_tsize)" },
2480 { uoff(u_dsize), "offsetof(struct user, u_dsize)" },
2481 { uoff(u_ssize), "offsetof(struct user, u_ssize)" },
2482 { uoff(start_code), "offsetof(struct user, start_code)" },
2483 { uoff(start_data), "offsetof(struct user, start_data)" },
2484 { uoff(start_stack), "offsetof(struct user, start_stack)" },
2485 { uoff(signal), "offsetof(struct user, signal)" },
2486 { uoff(u_ar0), "offsetof(struct user, u_ar0)" },
2487 { uoff(u_fpstate), "offsetof(struct user, u_fpstate)" },
2488 { uoff(magic), "offsetof(struct user, magic)" },
2489 { uoff(u_comm), "offsetof(struct user, u_comm)" },
2490 { sizeof(struct user), "sizeof(struct user)" },
2491#elif defined(CRISV10) || defined(CRISV32)
2492 { sizeof(struct user), "sizeof(struct user)" },
2493#elif defined(TILE)
2494 /* nothing */
2495#elif defined(MICROBLAZE)
2496 { sizeof(struct user), "sizeof(struct user)" },
2497#elif defined(AVR32)
2498 { uoff(u_tsize), "offsetof(struct user, u_tsize)" },
2499 { uoff(u_dsize), "offsetof(struct user, u_dsize)" },
2500 { uoff(u_ssize), "offsetof(struct user, u_ssize)" },
2501 { uoff(start_code), "offsetof(struct user, start_code)" },
2502 { uoff(start_data), "offsetof(struct user, start_data)" },
2503 { uoff(start_stack), "offsetof(struct user, start_stack)" },
2504 { uoff(signal), "offsetof(struct user, signal)" },
2505 { uoff(u_ar0), "offsetof(struct user, u_ar0)" },
2506 { uoff(magic), "offsetof(struct user, magic)" },
2507 { uoff(u_comm), "offsetof(struct user, u_comm)" },
2508 { sizeof(struct user), "sizeof(struct user)" },
2509#elif defined(BFIN)
2510 { uoff(u_tsize), "offsetof(struct user, u_tsize)" },
2511 { uoff(u_dsize), "offsetof(struct user, u_dsize)" },
2512 { uoff(u_ssize), "offsetof(struct user, u_ssize)" },
2513 { uoff(start_code), "offsetof(struct user, start_code)" },
2514 { uoff(signal), "offsetof(struct user, signal)" },
2515 { uoff(u_ar0), "offsetof(struct user, u_ar0)" },
2516 { uoff(magic), "offsetof(struct user, magic)" },
2517 { uoff(u_comm), "offsetof(struct user, u_comm)" },
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002518 { sizeof(struct user), "sizeof(struct user)" },
Christian Svensson492f81f2013-02-14 13:26:27 +01002519#elif defined(OR1K)
2520 /* nothing */
James Hogan5f999a82013-02-22 14:44:10 +00002521#elif defined(METAG)
2522 /* nothing */
Chris Zankel8f636ed2013-03-25 10:22:07 -07002523#elif defined(XTENSA)
2524 /* nothing */
Vineet Gupta7daacbb2013-08-16 12:47:06 +05302525#elif defined(ARC)
2526 /* nothing */
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01002527#endif
Dmitry V. Levin59452732014-02-05 02:20:51 +00002528 XLAT_END
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002529};
2530
2531int
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00002532sys_ptrace(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002533{
Roland McGrathd9f816f2004-09-04 03:39:20 +00002534 const struct xlat *x;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002535 long addr;
2536
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002537 if (entering(tcp)) {
Denys Vlasenkob7a6dae2012-03-20 16:48:35 +01002538 printxval(ptrace_cmds, tcp->u_arg[0], "PTRACE_???");
Roland McGrathbf621d42003-01-14 09:46:21 +00002539 tprintf(", %lu, ", tcp->u_arg[1]);
Denys Vlasenkobe994972013-02-13 16:10:10 +01002540
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002541 addr = tcp->u_arg[2];
2542 if (tcp->u_arg[0] == PTRACE_PEEKUSER
Denys Vlasenkobe994972013-02-13 16:10:10 +01002543 || tcp->u_arg[0] == PTRACE_POKEUSER
2544 ) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002545 for (x = struct_user_offsets; x->str; x++) {
2546 if (x->val >= addr)
2547 break;
2548 }
2549 if (!x->str)
2550 tprintf("%#lx, ", addr);
2551 else if (x->val > addr && x != struct_user_offsets) {
2552 x--;
2553 tprintf("%s + %ld, ", x->str, addr - x->val);
2554 }
2555 else
2556 tprintf("%s, ", x->str);
Denys Vlasenkobe994972013-02-13 16:10:10 +01002557 } else
2558#ifdef PTRACE_GETREGSET
Dmitry V. Levinc41808b2013-03-18 00:52:29 +00002559 if (tcp->u_arg[0] == PTRACE_GETREGSET
2560 || tcp->u_arg[0] == PTRACE_SETREGSET
2561 ) {
2562 printxval(nt_descriptor_types, tcp->u_arg[2], "NT_???");
2563 tprints(", ");
2564 } else
Denys Vlasenkobe994972013-02-13 16:10:10 +01002565#endif
2566 tprintf("%#lx, ", addr);
2567
2568
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002569 switch (tcp->u_arg[0]) {
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01002570#ifndef IA64
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002571 case PTRACE_PEEKDATA:
2572 case PTRACE_PEEKTEXT:
2573 case PTRACE_PEEKUSER:
2574 break;
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01002575#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002576 case PTRACE_CONT:
2577 case PTRACE_SINGLESTEP:
2578 case PTRACE_SYSCALL:
2579 case PTRACE_DETACH:
2580 printsignal(tcp->u_arg[3]);
2581 break;
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01002582#ifdef PTRACE_SETOPTIONS
Denys Vlasenkof535b542009-01-13 18:30:55 +00002583 case PTRACE_SETOPTIONS:
2584 printflags(ptrace_setoptions_flags, tcp->u_arg[3], "PTRACE_O_???");
2585 break;
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01002586#endif
2587#ifdef PTRACE_SETSIGINFO
Denys Vlasenkof535b542009-01-13 18:30:55 +00002588 case PTRACE_SETSIGINFO: {
Denys Vlasenkod4d3ede2013-02-13 16:31:32 +01002589 printsiginfo_at(tcp, tcp->u_arg[3]);
Denys Vlasenkof535b542009-01-13 18:30:55 +00002590 break;
2591 }
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01002592#endif
2593#ifdef PTRACE_GETSIGINFO
Denys Vlasenkof535b542009-01-13 18:30:55 +00002594 case PTRACE_GETSIGINFO:
2595 /* Don't print anything, do it at syscall return. */
2596 break;
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01002597#endif
Denys Vlasenkobe994972013-02-13 16:10:10 +01002598#ifdef PTRACE_GETREGSET
2599 case PTRACE_GETREGSET:
2600 break;
2601 case PTRACE_SETREGSET:
2602 tprint_iov(tcp, /*len:*/ 1, tcp->u_arg[3], /*as string:*/ 0);
2603 break;
2604#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002605 default:
2606 tprintf("%#lx", tcp->u_arg[3]);
2607 break;
2608 }
2609 } else {
2610 switch (tcp->u_arg[0]) {
2611 case PTRACE_PEEKDATA:
2612 case PTRACE_PEEKTEXT:
2613 case PTRACE_PEEKUSER:
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01002614#ifdef IA64
Roland McGrath1e868062007-11-19 22:11:45 +00002615 return RVAL_HEX;
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01002616#else
Roland McGratheb285352003-01-14 09:59:00 +00002617 printnum(tcp, tcp->u_arg[3], "%#lx");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002618 break;
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01002619#endif
2620#ifdef PTRACE_GETSIGINFO
Denys Vlasenkof535b542009-01-13 18:30:55 +00002621 case PTRACE_GETSIGINFO: {
Denys Vlasenkod4d3ede2013-02-13 16:31:32 +01002622 printsiginfo_at(tcp, tcp->u_arg[3]);
Denys Vlasenkof535b542009-01-13 18:30:55 +00002623 break;
2624 }
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01002625#endif
Denys Vlasenkobe994972013-02-13 16:10:10 +01002626#ifdef PTRACE_GETREGSET
2627 case PTRACE_GETREGSET:
2628 tprint_iov(tcp, /*len:*/ 1, tcp->u_arg[3], /*as string:*/ 0);
2629 break;
2630#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002631 }
2632 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002633 return 0;
2634}
2635
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01002636#ifndef FUTEX_CMP_REQUEUE
2637# define FUTEX_CMP_REQUEUE 4
2638#endif
2639#ifndef FUTEX_WAKE_OP
2640# define FUTEX_WAKE_OP 5
2641#endif
2642#ifndef FUTEX_LOCK_PI
2643# define FUTEX_LOCK_PI 6
2644# define FUTEX_UNLOCK_PI 7
2645# define FUTEX_TRYLOCK_PI 8
2646#endif
2647#ifndef FUTEX_WAIT_BITSET
2648# define FUTEX_WAIT_BITSET 9
2649#endif
2650#ifndef FUTEX_WAKE_BITSET
2651# define FUTEX_WAKE_BITSET 10
2652#endif
2653#ifndef FUTEX_WAIT_REQUEUE_PI
2654# define FUTEX_WAIT_REQUEUE_PI 11
2655#endif
2656#ifndef FUTEX_CMP_REQUEUE_PI
2657# define FUTEX_CMP_REQUEUE_PI 12
2658#endif
2659#ifndef FUTEX_PRIVATE_FLAG
2660# define FUTEX_PRIVATE_FLAG 128
2661#endif
2662#ifndef FUTEX_CLOCK_REALTIME
2663# define FUTEX_CLOCK_REALTIME 256
2664#endif
Dmitry V. Levin9f56d872014-02-05 02:01:16 +00002665#ifndef FUTEX_WAIT_PRIVATE
2666# define FUTEX_WAIT_PRIVATE (FUTEX_WAIT | FUTEX_PRIVATE_FLAG)
2667#endif
2668#ifndef FUTEX_WAKE_PRIVATE
2669# define FUTEX_WAKE_PRIVATE (FUTEX_WAKE | FUTEX_PRIVATE_FLAG)
2670#endif
2671#ifndef FUTEX_REQUEUE_PRIVATE
2672# define FUTEX_REQUEUE_PRIVATE (FUTEX_REQUEUE | FUTEX_PRIVATE_FLAG)
2673#endif
2674#ifndef FUTEX_CMP_REQUEUE_PRIVATE
2675# define FUTEX_CMP_REQUEUE_PRIVATE (FUTEX_CMP_REQUEUE | FUTEX_PRIVATE_FLAG)
2676#endif
2677#ifndef FUTEX_WAKE_OP_PRIVATE
2678# define FUTEX_WAKE_OP_PRIVATE (FUTEX_WAKE_OP | FUTEX_PRIVATE_FLAG)
2679#endif
2680#ifndef FUTEX_LOCK_PI_PRIVATE
2681# define FUTEX_LOCK_PI_PRIVATE (FUTEX_LOCK_PI | FUTEX_PRIVATE_FLAG)
2682#endif
2683#ifndef FUTEX_UNLOCK_PI_PRIVATE
2684# define FUTEX_UNLOCK_PI_PRIVATE (FUTEX_UNLOCK_PI | FUTEX_PRIVATE_FLAG)
2685#endif
2686#ifndef FUTEX_TRYLOCK_PI_PRIVATE
2687# define FUTEX_TRYLOCK_PI_PRIVATE (FUTEX_TRYLOCK_PI | FUTEX_PRIVATE_FLAG)
2688#endif
2689#ifndef FUTEX_WAIT_BITSET_PRIVATE
2690# define FUTEX_WAIT_BITSET_PRIVATE (FUTEX_WAIT_BITSET | FUTEX_PRIVATE_FLAG)
2691#endif
2692#ifndef FUTEX_WAKE_BITSET_PRIVATE
2693# define FUTEX_WAKE_BITSET_PRIVATE (FUTEX_WAKE_BITSET | FUTEX_PRIVATE_FLAG)
2694#endif
2695#ifndef FUTEX_WAIT_REQUEUE_PI_PRIVATE
2696# define FUTEX_WAIT_REQUEUE_PI_PRIVATE (FUTEX_WAIT_REQUEUE_PI | FUTEX_PRIVATE_FLAG)
2697#endif
2698#ifndef FUTEX_CMP_REQUEUE_PI_PRIVATE
2699# define FUTEX_CMP_REQUEUE_PI_PRIVATE (FUTEX_CMP_REQUEUE_PI | FUTEX_PRIVATE_FLAG)
2700#endif
Roland McGrathd9f816f2004-09-04 03:39:20 +00002701static const struct xlat futexops[] = {
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00002702 XLAT(FUTEX_WAIT),
2703 XLAT(FUTEX_WAKE),
2704 XLAT(FUTEX_FD),
2705 XLAT(FUTEX_REQUEUE),
2706 XLAT(FUTEX_CMP_REQUEUE),
2707 XLAT(FUTEX_WAKE_OP),
2708 XLAT(FUTEX_LOCK_PI),
2709 XLAT(FUTEX_UNLOCK_PI),
2710 XLAT(FUTEX_TRYLOCK_PI),
2711 XLAT(FUTEX_WAIT_BITSET),
2712 XLAT(FUTEX_WAKE_BITSET),
2713 XLAT(FUTEX_WAIT_REQUEUE_PI),
2714 XLAT(FUTEX_CMP_REQUEUE_PI),
Dmitry V. Levin9f56d872014-02-05 02:01:16 +00002715 XLAT(FUTEX_WAIT_PRIVATE),
2716 XLAT(FUTEX_WAKE_PRIVATE),
2717 XLAT(FUTEX_FD|FUTEX_PRIVATE_FLAG),
2718 XLAT(FUTEX_REQUEUE_PRIVATE),
2719 XLAT(FUTEX_CMP_REQUEUE_PRIVATE),
2720 XLAT(FUTEX_WAKE_OP_PRIVATE),
2721 XLAT(FUTEX_LOCK_PI_PRIVATE),
2722 XLAT(FUTEX_UNLOCK_PI_PRIVATE),
2723 XLAT(FUTEX_TRYLOCK_PI_PRIVATE),
2724 XLAT(FUTEX_WAIT_BITSET_PRIVATE),
2725 XLAT(FUTEX_WAKE_BITSET_PRIVATE),
2726 XLAT(FUTEX_WAIT_REQUEUE_PI_PRIVATE),
2727 XLAT(FUTEX_CMP_REQUEUE_PI_PRIVATE),
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00002728 XLAT(FUTEX_WAIT_BITSET|FUTEX_CLOCK_REALTIME),
Dmitry V. Levin9f56d872014-02-05 02:01:16 +00002729 XLAT(FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME),
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00002730 XLAT(FUTEX_WAIT_REQUEUE_PI|FUTEX_CLOCK_REALTIME),
Dmitry V. Levin9f56d872014-02-05 02:01:16 +00002731 XLAT(FUTEX_WAIT_REQUEUE_PI_PRIVATE|FUTEX_CLOCK_REALTIME),
Dmitry V. Levin59452732014-02-05 02:20:51 +00002732 XLAT_END
Roland McGrath51942a92007-07-05 18:59:11 +00002733};
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01002734#ifndef FUTEX_OP_SET
2735# define FUTEX_OP_SET 0
2736# define FUTEX_OP_ADD 1
2737# define FUTEX_OP_OR 2
2738# define FUTEX_OP_ANDN 3
2739# define FUTEX_OP_XOR 4
2740# define FUTEX_OP_CMP_EQ 0
2741# define FUTEX_OP_CMP_NE 1
2742# define FUTEX_OP_CMP_LT 2
2743# define FUTEX_OP_CMP_LE 3
2744# define FUTEX_OP_CMP_GT 4
2745# define FUTEX_OP_CMP_GE 5
2746#endif
Roland McGrath51942a92007-07-05 18:59:11 +00002747static const struct xlat futexwakeops[] = {
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00002748 XLAT(FUTEX_OP_SET),
2749 XLAT(FUTEX_OP_ADD),
2750 XLAT(FUTEX_OP_OR),
2751 XLAT(FUTEX_OP_ANDN),
2752 XLAT(FUTEX_OP_XOR),
Dmitry V. Levin59452732014-02-05 02:20:51 +00002753 XLAT_END
Roland McGrath51942a92007-07-05 18:59:11 +00002754};
2755static const struct xlat futexwakecmps[] = {
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00002756 XLAT(FUTEX_OP_CMP_EQ),
2757 XLAT(FUTEX_OP_CMP_NE),
2758 XLAT(FUTEX_OP_CMP_LT),
2759 XLAT(FUTEX_OP_CMP_LE),
2760 XLAT(FUTEX_OP_CMP_GT),
2761 XLAT(FUTEX_OP_CMP_GE),
Dmitry V. Levin59452732014-02-05 02:20:51 +00002762 XLAT_END
Roland McGrath5a223472002-12-15 23:58:26 +00002763};
2764
2765int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002766sys_futex(struct tcb *tcp)
Roland McGrath5a223472002-12-15 23:58:26 +00002767{
Denys Vlasenko1d632462009-04-14 12:51:00 +00002768 if (entering(tcp)) {
2769 long int cmd = tcp->u_arg[1] & 127;
2770 tprintf("%p, ", (void *) tcp->u_arg[0]);
2771 printxval(futexops, tcp->u_arg[1], "FUTEX_???");
2772 tprintf(", %ld", tcp->u_arg[2]);
2773 if (cmd == FUTEX_WAKE_BITSET)
2774 tprintf(", %lx", tcp->u_arg[5]);
2775 else if (cmd == FUTEX_WAIT) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002776 tprints(", ");
Denys Vlasenko1d632462009-04-14 12:51:00 +00002777 printtv(tcp, tcp->u_arg[3]);
2778 } else if (cmd == FUTEX_WAIT_BITSET) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002779 tprints(", ");
Denys Vlasenko1d632462009-04-14 12:51:00 +00002780 printtv(tcp, tcp->u_arg[3]);
2781 tprintf(", %lx", tcp->u_arg[5]);
2782 } else if (cmd == FUTEX_REQUEUE)
2783 tprintf(", %ld, %p", tcp->u_arg[3], (void *) tcp->u_arg[4]);
Andreas Schwab85f58322009-08-12 09:54:42 +02002784 else if (cmd == FUTEX_CMP_REQUEUE || cmd == FUTEX_CMP_REQUEUE_PI)
Denys Vlasenko1d632462009-04-14 12:51:00 +00002785 tprintf(", %ld, %p, %ld", tcp->u_arg[3], (void *) tcp->u_arg[4], tcp->u_arg[5]);
2786 else if (cmd == FUTEX_WAKE_OP) {
2787 tprintf(", %ld, %p, {", tcp->u_arg[3], (void *) tcp->u_arg[4]);
2788 if ((tcp->u_arg[5] >> 28) & 8)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002789 tprints("FUTEX_OP_OPARG_SHIFT|");
Denys Vlasenko1d632462009-04-14 12:51:00 +00002790 printxval(futexwakeops, (tcp->u_arg[5] >> 28) & 0x7, "FUTEX_OP_???");
2791 tprintf(", %ld, ", (tcp->u_arg[5] >> 12) & 0xfff);
2792 if ((tcp->u_arg[5] >> 24) & 8)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002793 tprints("FUTEX_OP_OPARG_SHIFT|");
Denys Vlasenko1d632462009-04-14 12:51:00 +00002794 printxval(futexwakecmps, (tcp->u_arg[5] >> 24) & 0x7, "FUTEX_OP_CMP_???");
2795 tprintf(", %ld}", tcp->u_arg[5] & 0xfff);
Andreas Schwab85f58322009-08-12 09:54:42 +02002796 } else if (cmd == FUTEX_WAIT_REQUEUE_PI) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002797 tprints(", ");
Andreas Schwab85f58322009-08-12 09:54:42 +02002798 printtv(tcp, tcp->u_arg[3]);
2799 tprintf(", %p", (void *) tcp->u_arg[4]);
Denys Vlasenko1d632462009-04-14 12:51:00 +00002800 }
Roland McGrath51942a92007-07-05 18:59:11 +00002801 }
Denys Vlasenko1d632462009-04-14 12:51:00 +00002802 return 0;
Roland McGrath5a223472002-12-15 23:58:26 +00002803}
2804
2805static void
Denys Vlasenko1d632462009-04-14 12:51:00 +00002806print_affinitylist(struct tcb *tcp, long list, unsigned int len)
Roland McGrath5a223472002-12-15 23:58:26 +00002807{
Denys Vlasenko1d632462009-04-14 12:51:00 +00002808 int first = 1;
Dmitry V. Levin62e05962009-11-03 14:38:44 +00002809 unsigned long w, min_len;
2810
2811 if (abbrev(tcp) && len / sizeof(w) > max_strlen)
2812 min_len = len - max_strlen * sizeof(w);
2813 else
2814 min_len = 0;
2815 for (; len >= sizeof(w) && len > min_len;
2816 len -= sizeof(w), list += sizeof(w)) {
2817 if (umove(tcp, list, &w) < 0)
2818 break;
2819 if (first)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002820 tprints("{");
Dmitry V. Levin62e05962009-11-03 14:38:44 +00002821 else
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002822 tprints(", ");
Denys Vlasenko1d632462009-04-14 12:51:00 +00002823 first = 0;
Dmitry V. Levin62e05962009-11-03 14:38:44 +00002824 tprintf("%lx", w);
Denys Vlasenko1d632462009-04-14 12:51:00 +00002825 }
Dmitry V. Levin62e05962009-11-03 14:38:44 +00002826 if (len) {
2827 if (first)
2828 tprintf("%#lx", list);
2829 else
2830 tprintf(", %s}", (len >= sizeof(w) && len > min_len ?
2831 "???" : "..."));
2832 } else {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002833 tprints(first ? "{}" : "}");
Dmitry V. Levin62e05962009-11-03 14:38:44 +00002834 }
Roland McGrath5a223472002-12-15 23:58:26 +00002835}
2836
2837int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002838sys_sched_setaffinity(struct tcb *tcp)
Roland McGrath5a223472002-12-15 23:58:26 +00002839{
Denys Vlasenko1d632462009-04-14 12:51:00 +00002840 if (entering(tcp)) {
2841 tprintf("%ld, %lu, ", tcp->u_arg[0], tcp->u_arg[1]);
2842 print_affinitylist(tcp, tcp->u_arg[2], tcp->u_arg[1]);
2843 }
2844 return 0;
Roland McGrath5a223472002-12-15 23:58:26 +00002845}
2846
2847int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002848sys_sched_getaffinity(struct tcb *tcp)
Roland McGrath5a223472002-12-15 23:58:26 +00002849{
Denys Vlasenko1d632462009-04-14 12:51:00 +00002850 if (entering(tcp)) {
2851 tprintf("%ld, %lu, ", tcp->u_arg[0], tcp->u_arg[1]);
2852 } else {
2853 if (tcp->u_rval == -1)
2854 tprintf("%#lx", tcp->u_arg[2]);
2855 else
2856 print_affinitylist(tcp, tcp->u_arg[2], tcp->u_rval);
2857 }
2858 return 0;
Roland McGrath5a223472002-12-15 23:58:26 +00002859}
Roland McGrath279d3782004-03-01 20:27:37 +00002860
Dmitry V. Levin1b0bae22012-03-11 22:32:26 +00002861int
2862sys_get_robust_list(struct tcb *tcp)
2863{
2864 if (entering(tcp)) {
2865 tprintf("%ld, ", (long) (pid_t) tcp->u_arg[0]);
2866 } else {
2867 void *addr;
2868 size_t len;
2869
2870 if (syserror(tcp) ||
2871 !tcp->u_arg[1] ||
2872 umove(tcp, tcp->u_arg[1], &addr) < 0) {
2873 tprintf("%#lx, ", tcp->u_arg[1]);
2874 } else {
2875 tprintf("[%p], ", addr);
2876 }
2877
2878 if (syserror(tcp) ||
2879 !tcp->u_arg[2] ||
2880 umove(tcp, tcp->u_arg[2], &len) < 0) {
2881 tprintf("%#lx", tcp->u_arg[2]);
2882 } else {
2883 tprintf("[%lu]", (unsigned long) len);
2884 }
2885 }
2886 return 0;
2887}
2888
Roland McGrathd9f816f2004-09-04 03:39:20 +00002889static const struct xlat schedulers[] = {
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00002890 XLAT(SCHED_OTHER),
2891 XLAT(SCHED_RR),
2892 XLAT(SCHED_FIFO),
Dmitry V. Levin59452732014-02-05 02:20:51 +00002893 XLAT_END
Roland McGrath279d3782004-03-01 20:27:37 +00002894};
2895
2896int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002897sys_sched_getscheduler(struct tcb *tcp)
Roland McGrath279d3782004-03-01 20:27:37 +00002898{
Denys Vlasenko1d632462009-04-14 12:51:00 +00002899 if (entering(tcp)) {
2900 tprintf("%d", (int) tcp->u_arg[0]);
Denys Vlasenkob237b1b2012-02-27 13:56:59 +01002901 } else if (!syserror(tcp)) {
Denys Vlasenkob63256e2011-06-07 12:13:24 +02002902 tcp->auxstr = xlookup(schedulers, tcp->u_rval);
Denys Vlasenko1d632462009-04-14 12:51:00 +00002903 if (tcp->auxstr != NULL)
2904 return RVAL_STR;
2905 }
2906 return 0;
Roland McGrath279d3782004-03-01 20:27:37 +00002907}
2908
2909int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002910sys_sched_setscheduler(struct tcb *tcp)
Roland McGrath279d3782004-03-01 20:27:37 +00002911{
Denys Vlasenko1d632462009-04-14 12:51:00 +00002912 if (entering(tcp)) {
2913 struct sched_param p;
2914 tprintf("%d, ", (int) tcp->u_arg[0]);
2915 printxval(schedulers, tcp->u_arg[1], "SCHED_???");
2916 if (umove(tcp, tcp->u_arg[2], &p) < 0)
2917 tprintf(", %#lx", tcp->u_arg[2]);
2918 else
Dmitry V. Levine19a7122013-11-12 15:09:56 +00002919 tprintf(", { %d }", p.sched_priority);
Denys Vlasenko1d632462009-04-14 12:51:00 +00002920 }
2921 return 0;
Roland McGrath279d3782004-03-01 20:27:37 +00002922}
2923
2924int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002925sys_sched_getparam(struct tcb *tcp)
Roland McGrath279d3782004-03-01 20:27:37 +00002926{
Denys Vlasenko1d632462009-04-14 12:51:00 +00002927 if (entering(tcp)) {
2928 tprintf("%d, ", (int) tcp->u_arg[0]);
2929 } else {
2930 struct sched_param p;
2931 if (umove(tcp, tcp->u_arg[1], &p) < 0)
2932 tprintf("%#lx", tcp->u_arg[1]);
2933 else
Dmitry V. Levine19a7122013-11-12 15:09:56 +00002934 tprintf("{ %d }", p.sched_priority);
Denys Vlasenko1d632462009-04-14 12:51:00 +00002935 }
2936 return 0;
Roland McGrath279d3782004-03-01 20:27:37 +00002937}
2938
2939int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002940sys_sched_setparam(struct tcb *tcp)
Roland McGrath279d3782004-03-01 20:27:37 +00002941{
Denys Vlasenko1d632462009-04-14 12:51:00 +00002942 if (entering(tcp)) {
2943 struct sched_param p;
2944 if (umove(tcp, tcp->u_arg[1], &p) < 0)
2945 tprintf("%d, %#lx", (int) tcp->u_arg[0], tcp->u_arg[1]);
2946 else
Dmitry V. Levine19a7122013-11-12 15:09:56 +00002947 tprintf("%d, { %d }", (int) tcp->u_arg[0], p.sched_priority);
Denys Vlasenko1d632462009-04-14 12:51:00 +00002948 }
2949 return 0;
Roland McGrath279d3782004-03-01 20:27:37 +00002950}
2951
2952int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002953sys_sched_get_priority_min(struct tcb *tcp)
Roland McGrath279d3782004-03-01 20:27:37 +00002954{
Denys Vlasenko1d632462009-04-14 12:51:00 +00002955 if (entering(tcp)) {
2956 printxval(schedulers, tcp->u_arg[0], "SCHED_???");
2957 }
2958 return 0;
Roland McGrath279d3782004-03-01 20:27:37 +00002959}
Roland McGrathc2d5eb02005-02-02 04:16:56 +00002960
Dmitry V. Levin1ff463d2012-03-11 23:00:11 +00002961int
2962sys_sched_rr_get_interval(struct tcb *tcp)
2963{
2964 if (entering(tcp)) {
2965 tprintf("%ld, ", (long) (pid_t) tcp->u_arg[0]);
2966 } else {
2967 if (syserror(tcp))
2968 tprintf("%#lx", tcp->u_arg[1]);
2969 else
2970 print_timespec(tcp, tcp->u_arg[1]);
2971 }
2972 return 0;
2973}
2974
H.J. Lu35be5812012-04-16 13:00:01 +02002975#if defined X86_64 || defined X32
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01002976# include <asm/prctl.h>
Roland McGrathc2d5eb02005-02-02 04:16:56 +00002977
2978static const struct xlat archvals[] = {
Dmitry V. Levinbce0cc62014-02-05 01:33:50 +00002979 XLAT(ARCH_SET_GS),
2980 XLAT(ARCH_SET_FS),
2981 XLAT(ARCH_GET_FS),
2982 XLAT(ARCH_GET_GS),
Dmitry V. Levin59452732014-02-05 02:20:51 +00002983 XLAT_END
Roland McGrathc2d5eb02005-02-02 04:16:56 +00002984};
2985
2986int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002987sys_arch_prctl(struct tcb *tcp)
Roland McGrathc2d5eb02005-02-02 04:16:56 +00002988{
Denys Vlasenko1d632462009-04-14 12:51:00 +00002989 if (entering(tcp)) {
2990 printxval(archvals, tcp->u_arg[0], "ARCH_???");
2991 if (tcp->u_arg[0] == ARCH_SET_GS
2992 || tcp->u_arg[0] == ARCH_SET_FS
2993 ) {
2994 tprintf(", %#lx", tcp->u_arg[1]);
2995 }
2996 } else {
2997 if (tcp->u_arg[0] == ARCH_GET_GS
2998 || tcp->u_arg[0] == ARCH_GET_FS
2999 ) {
3000 long int v;
3001 if (!syserror(tcp) && umove(tcp, tcp->u_arg[1], &v) != -1)
3002 tprintf(", [%#lx]", v);
3003 else
3004 tprintf(", %#lx", tcp->u_arg[1]);
3005 }
Roland McGrathc2d5eb02005-02-02 04:16:56 +00003006 }
Denys Vlasenko1d632462009-04-14 12:51:00 +00003007 return 0;
Roland McGrathc2d5eb02005-02-02 04:16:56 +00003008}
H.J. Lu35be5812012-04-16 13:00:01 +02003009#endif /* X86_64 || X32 */
Roland McGrathc2d5eb02005-02-02 04:16:56 +00003010
Roland McGrathdb8319f2007-08-02 01:37:55 +00003011int
Denys Vlasenko1d632462009-04-14 12:51:00 +00003012sys_getcpu(struct tcb *tcp)
Roland McGrathdb8319f2007-08-02 01:37:55 +00003013{
3014 if (exiting(tcp)) {
3015 unsigned u;
3016 if (tcp->u_arg[0] == 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02003017 tprints("NULL, ");
Roland McGrathdb8319f2007-08-02 01:37:55 +00003018 else if (umove(tcp, tcp->u_arg[0], &u) < 0)
3019 tprintf("%#lx, ", tcp->u_arg[0]);
3020 else
3021 tprintf("[%u], ", u);
3022 if (tcp->u_arg[1] == 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02003023 tprints("NULL, ");
Roland McGrathdb8319f2007-08-02 01:37:55 +00003024 else if (umove(tcp, tcp->u_arg[1], &u) < 0)
3025 tprintf("%#lx, ", tcp->u_arg[1]);
3026 else
3027 tprintf("[%u], ", u);
3028 tprintf("%#lx", tcp->u_arg[2]);
3029 }
3030 return 0;
3031}
3032
Denys Vlasenko3af224c2012-01-28 01:46:33 +01003033int
3034sys_process_vm_readv(struct tcb *tcp)
3035{
3036 if (entering(tcp)) {
3037 /* arg 1: pid */
3038 tprintf("%ld, ", tcp->u_arg[0]);
3039 } else {
Dmitry V. Levin0bfd7442012-03-10 14:03:25 +00003040 /* arg 2: local iov */
Denys Vlasenko3af224c2012-01-28 01:46:33 +01003041 if (syserror(tcp)) {
Dmitry V. Levin0bfd7442012-03-10 14:03:25 +00003042 tprintf("%#lx", tcp->u_arg[1]);
Denys Vlasenko3af224c2012-01-28 01:46:33 +01003043 } else {
3044 tprint_iov(tcp, tcp->u_arg[2], tcp->u_arg[1], 1);
3045 }
Dmitry V. Levin0bfd7442012-03-10 14:03:25 +00003046 /* arg 3: local iovcnt */
3047 tprintf(", %lu, ", tcp->u_arg[2]);
3048 /* arg 4: remote iov */
Denys Vlasenko3af224c2012-01-28 01:46:33 +01003049 if (syserror(tcp)) {
Dmitry V. Levin0bfd7442012-03-10 14:03:25 +00003050 tprintf("%#lx", tcp->u_arg[3]);
Denys Vlasenko3af224c2012-01-28 01:46:33 +01003051 } else {
3052 tprint_iov(tcp, tcp->u_arg[4], tcp->u_arg[3], 0);
3053 }
Dmitry V. Levin0bfd7442012-03-10 14:03:25 +00003054 /* arg 5: remote iovcnt */
Denys Vlasenko3af224c2012-01-28 01:46:33 +01003055 /* arg 6: flags */
Dmitry V. Levin0bfd7442012-03-10 14:03:25 +00003056 tprintf(", %lu, %lu", tcp->u_arg[4], tcp->u_arg[5]);
Denys Vlasenko3af224c2012-01-28 01:46:33 +01003057 }
3058 return 0;
3059}
Dmitry V. Levin03952102012-03-10 14:14:49 +00003060
3061int
3062sys_process_vm_writev(struct tcb *tcp)
3063{
3064 if (entering(tcp)) {
3065 /* arg 1: pid */
3066 tprintf("%ld, ", tcp->u_arg[0]);
3067 /* arg 2: local iov */
3068 if (syserror(tcp))
3069 tprintf("%#lx", tcp->u_arg[1]);
3070 else
3071 tprint_iov(tcp, tcp->u_arg[2], tcp->u_arg[1], 1);
3072 /* arg 3: local iovcnt */
3073 tprintf(", %lu, ", tcp->u_arg[2]);
3074 /* arg 4: remote iov */
3075 if (syserror(tcp))
3076 tprintf("%#lx", tcp->u_arg[3]);
3077 else
3078 tprint_iov(tcp, tcp->u_arg[4], tcp->u_arg[3], 0);
3079 /* arg 5: remote iovcnt */
3080 /* arg 6: flags */
3081 tprintf(", %lu, %lu", tcp->u_arg[4], tcp->u_arg[5]);
3082 }
3083 return 0;
3084}