blob: 8f6bfed8eed00d63e56059bcb1adf7e3bb8a7472 [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>
11
Wichert Akkerman4dc8a2a1999-12-23 14:20:14 +000012 *
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000013 * All rights reserved.
14 *
15 * Redistribution and use in source and binary forms, with or without
16 * modification, are permitted provided that the following conditions
17 * are met:
18 * 1. Redistributions of source code must retain the above copyright
19 * notice, this list of conditions and the following disclaimer.
20 * 2. Redistributions in binary form must reproduce the above copyright
21 * notice, this list of conditions and the following disclaimer in the
22 * documentation and/or other materials provided with the distribution.
23 * 3. The name of the author may not be used to endorse or promote products
24 * derived from this software without specific prior written permission.
25 *
26 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
27 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
28 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
29 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
30 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
31 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
35 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36 *
37 * $Id$
38 */
39
40#include "defs.h"
41
42#include <fcntl.h>
43#include <sys/stat.h>
44#include <sys/time.h>
45#include <sys/wait.h>
46#include <sys/resource.h>
47#include <sys/utsname.h>
48#include <sys/user.h>
49#include <sys/syscall.h>
50#include <signal.h>
51#ifdef SUNOS4
52#include <machine/reg.h>
53#endif /* SUNOS4 */
54
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +000055#ifdef FREEBSD
56#include <sys/ptrace.h>
57#endif
58
Wichert Akkerman36915a11999-07-13 15:45:02 +000059#ifdef HAVE_SYS_REG_H
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000060# include <sys/reg.h>
Wichert Akkerman15dea971999-10-06 13:06:34 +000061#ifndef PTRACE_PEEKUSR
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000062# define PTRACE_PEEKUSR PTRACE_PEEKUSER
Wichert Akkerman15dea971999-10-06 13:06:34 +000063#endif
64#ifndef PTRACE_POKEUSR
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000065# define PTRACE_POKEUSR PTRACE_POKEUSER
66#endif
Wichert Akkerman15dea971999-10-06 13:06:34 +000067#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000068
Roland McGrath5bd7cf82003-01-24 04:31:18 +000069#ifdef HAVE_LINUX_PTRACE_H
70#undef PTRACE_SYSCALL
Roland McGrathfb1bc072004-03-01 21:29:24 +000071# ifdef HAVE_STRUCT_IA64_FPREG
72# define ia64_fpreg XXX_ia64_fpreg
73# endif
74# ifdef HAVE_STRUCT_PT_ALL_USER_REGS
75# define pt_all_user_regs XXX_pt_all_user_regs
76# endif
Roland McGrath5bd7cf82003-01-24 04:31:18 +000077#include <linux/ptrace.h>
Roland McGrathfb1bc072004-03-01 21:29:24 +000078# undef ia64_fpreg
79# undef pt_all_user_regs
Roland McGrath5bd7cf82003-01-24 04:31:18 +000080#endif
81
Roland McGrath6d1a65c2004-07-12 07:44:08 +000082#if defined (LINUX) && defined (SPARC64)
83# define r_pc r_tpc
84# undef PTRACE_GETREGS
85# define PTRACE_GETREGS PTRACE_GETREGS64
86# undef PTRACE_SETREGS
87# define PTRACE_SETREGS PTRACE_SETREGS64
88#endif /* LINUX && SPARC64 */
89
Roland McGrath5a223472002-12-15 23:58:26 +000090#ifdef HAVE_LINUX_FUTEX_H
Dmitry V. Levine5e60852009-12-31 22:50:49 +000091# include <linux/futex.h>
Roland McGrath5a223472002-12-15 23:58:26 +000092#endif
Dmitry V. Levine5e60852009-12-31 22:50:49 +000093#ifdef LINUX
Roland McGrath5a223472002-12-15 23:58:26 +000094# ifndef FUTEX_WAIT
95# define FUTEX_WAIT 0
96# endif
97# ifndef FUTEX_WAKE
98# define FUTEX_WAKE 1
99# endif
100# ifndef FUTEX_FD
101# define FUTEX_FD 2
102# endif
Roland McGrath88812d62003-06-26 22:27:23 +0000103# ifndef FUTEX_REQUEUE
104# define FUTEX_REQUEUE 3
105# endif
Dmitry V. Levine5e60852009-12-31 22:50:49 +0000106#endif /* LINUX */
Wichert Akkermanfaf72222000-02-19 23:59:03 +0000107
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000108#ifdef LINUX
Roland McGrath279d3782004-03-01 20:27:37 +0000109#include <sched.h>
Wichert Akkerman2e2553a1999-05-09 00:29:58 +0000110#include <asm/posix_types.h>
111#undef GETGROUPS_T
112#define GETGROUPS_T __kernel_gid_t
Roland McGrath83bd47a2003-11-13 22:32:26 +0000113#undef GETGROUPS32_T
114#define GETGROUPS32_T __kernel_gid32_t
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000115#endif /* LINUX */
116
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +0000117#if defined(LINUX) && defined(IA64)
118# include <asm/ptrace_offsets.h>
119# include <asm/rse.h>
120#endif
121
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000122#ifdef HAVE_PRCTL
Dmitry V. Levine5e60852009-12-31 22:50:49 +0000123# include <sys/prctl.h>
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000124
Roland McGrathd9f816f2004-09-04 03:39:20 +0000125static const struct xlat prctl_options[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000126#ifdef PR_MAXPROCS
127 { PR_MAXPROCS, "PR_MAXPROCS" },
128#endif
129#ifdef PR_ISBLOCKED
130 { PR_ISBLOCKED, "PR_ISBLOCKED" },
131#endif
132#ifdef PR_SETSTACKSIZE
133 { PR_SETSTACKSIZE, "PR_SETSTACKSIZE" },
134#endif
135#ifdef PR_GETSTACKSIZE
136 { PR_GETSTACKSIZE, "PR_GETSTACKSIZE" },
137#endif
138#ifdef PR_MAXPPROCS
139 { PR_MAXPPROCS, "PR_MAXPPROCS" },
140#endif
141#ifdef PR_UNBLKONEXEC
142 { PR_UNBLKONEXEC, "PR_UNBLKONEXEC" },
143#endif
144#ifdef PR_ATOMICSIM
145 { PR_ATOMICSIM, "PR_ATOMICSIM" },
146#endif
147#ifdef PR_SETEXITSIG
148 { PR_SETEXITSIG, "PR_SETEXITSIG" },
149#endif
150#ifdef PR_RESIDENT
151 { PR_RESIDENT, "PR_RESIDENT" },
152#endif
153#ifdef PR_ATTACHADDR
154 { PR_ATTACHADDR, "PR_ATTACHADDR" },
155#endif
156#ifdef PR_DETACHADDR
157 { PR_DETACHADDR, "PR_DETACHADDR" },
158#endif
159#ifdef PR_TERMCHILD
160 { PR_TERMCHILD, "PR_TERMCHILD" },
161#endif
162#ifdef PR_GETSHMASK
163 { PR_GETSHMASK, "PR_GETSHMASK" },
164#endif
165#ifdef PR_GETNSHARE
166 { PR_GETNSHARE, "PR_GETNSHARE" },
167#endif
Wichert Akkerman8829a551999-06-11 13:18:40 +0000168#ifdef PR_COREPID
169 { PR_COREPID, "PR_COREPID" },
170#endif
171#ifdef PR_ATTACHADDRPERM
172 { PR_ATTACHADDRPERM, "PR_ATTACHADDRPERM" },
173#endif
174#ifdef PR_PTHREADEXIT
175 { PR_PTHREADEXIT, "PR_PTHREADEXIT" },
176#endif
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +0000177#ifdef PR_SET_PDEATHSIG
178 { PR_SET_PDEATHSIG, "PR_SET_PDEATHSIG" },
179#endif
180#ifdef PR_GET_PDEATHSIG
181 { PR_GET_PDEATHSIG, "PR_GET_PDEATHSIG" },
182#endif
Dmitry V. Levinf02cf212008-09-03 00:54:40 +0000183#ifdef PR_GET_DUMPABLE
184 { PR_GET_DUMPABLE, "PR_GET_DUMPABLE" },
185#endif
186#ifdef PR_SET_DUMPABLE
187 { PR_SET_DUMPABLE, "PR_SET_DUMPABLE" },
188#endif
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +0000189#ifdef PR_GET_UNALIGN
190 { PR_GET_UNALIGN, "PR_GET_UNALIGN" },
191#endif
192#ifdef PR_SET_UNALIGN
193 { PR_SET_UNALIGN, "PR_SET_UNALIGN" },
194#endif
195#ifdef PR_GET_KEEPCAPS
Dmitry V. Levin8dd31dd2008-11-11 00:25:22 +0000196 { PR_GET_KEEPCAPS, "PR_GET_KEEPCAPS" },
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +0000197#endif
198#ifdef PR_SET_KEEPCAPS
Dmitry V. Levin8dd31dd2008-11-11 00:25:22 +0000199 { PR_SET_KEEPCAPS, "PR_SET_KEEPCAPS" },
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +0000200#endif
Roland McGrathe5039fb2007-11-03 23:58:07 +0000201#ifdef PR_GET_FPEMU
202 { PR_GET_FPEMU, "PR_GET_FPEMU" },
203#endif
204#ifdef PR_SET_FPEMU
205 { PR_SET_FPEMU, "PR_SET_FPEMU" },
206#endif
207#ifdef PR_GET_FPEXC
208 { PR_GET_FPEXC, "PR_GET_FPEXC" },
209#endif
210#ifdef PR_SET_FPEXC
211 { PR_SET_FPEXC, "PR_SET_FPEXC" },
212#endif
213#ifdef PR_GET_TIMING
214 { PR_GET_TIMING, "PR_GET_TIMING" },
215#endif
216#ifdef PR_SET_TIMING
217 { PR_SET_TIMING, "PR_SET_TIMING" },
218#endif
219#ifdef PR_SET_NAME
220 { PR_SET_NAME, "PR_SET_NAME" },
221#endif
222#ifdef PR_GET_NAME
223 { PR_GET_NAME, "PR_GET_NAME" },
224#endif
225#ifdef PR_GET_ENDIAN
226 { PR_GET_ENDIAN, "PR_GET_ENDIAN" },
227#endif
228#ifdef PR_SET_ENDIAN
229 { PR_SET_ENDIAN, "PR_SET_ENDIAN" },
230#endif
231#ifdef PR_GET_SECCOMP
232 { PR_GET_SECCOMP, "PR_GET_SECCOMP" },
233#endif
234#ifdef PR_SET_SECCOMP
235 { PR_SET_SECCOMP, "PR_SET_SECCOMP" },
236#endif
Dmitry V. Levin8dd31dd2008-11-11 00:25:22 +0000237#ifdef PR_GET_TSC
238 { PR_GET_TSC, "PR_GET_TSC" },
239#endif
240#ifdef PR_SET_TSC
241 { PR_SET_TSC, "PR_SET_TSC" },
242#endif
243#ifdef PR_GET_SECUREBITS
244 { PR_GET_SECUREBITS, "PR_GET_SECUREBITS" },
245#endif
246#ifdef PR_SET_SECUREBITS
247 { PR_SET_SECUREBITS, "PR_SET_SECUREBITS" },
248#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000249 { 0, NULL },
250};
251
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +0000252
Roland McGratha4d48532005-06-08 20:45:28 +0000253static const char *
Denys Vlasenko12014262011-05-30 14:00:14 +0200254unalignctl_string(unsigned int ctl)
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +0000255{
256 static char buf[16];
257
258 switch (ctl) {
259#ifdef PR_UNALIGN_NOPRINT
260 case PR_UNALIGN_NOPRINT:
261 return "NOPRINT";
262#endif
263#ifdef PR_UNALIGN_SIGBUS
264 case PR_UNALIGN_SIGBUS:
265 return "SIGBUS";
266#endif
267 default:
268 break;
269 }
270 sprintf(buf, "%x", ctl);
271 return buf;
272}
273
274
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000275int
Denys Vlasenko12014262011-05-30 14:00:14 +0200276sys_prctl(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000277{
278 int i;
279
280 if (entering(tcp)) {
281 printxval(prctl_options, tcp->u_arg[0], "PR_???");
282 switch (tcp->u_arg[0]) {
283#ifdef PR_GETNSHARE
284 case PR_GETNSHARE:
285 break;
286#endif
Dmitry V. Levin50f60132008-09-03 00:56:52 +0000287#ifdef PR_SET_PDEATHSIG
288 case PR_SET_PDEATHSIG:
289 tprintf(", %lu", tcp->u_arg[1]);
290 break;
291#endif
292#ifdef PR_GET_PDEATHSIG
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +0000293 case PR_GET_PDEATHSIG:
294 break;
295#endif
Dmitry V. Levin50f60132008-09-03 00:56:52 +0000296#ifdef PR_SET_DUMPABLE
297 case PR_SET_DUMPABLE:
298 tprintf(", %lu", tcp->u_arg[1]);
299 break;
300#endif
301#ifdef PR_GET_DUMPABLE
302 case PR_GET_DUMPABLE:
303 break;
304#endif
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +0000305#ifdef PR_SET_UNALIGN
306 case PR_SET_UNALIGN:
307 tprintf(", %s", unalignctl_string(tcp->u_arg[1]));
308 break;
309#endif
310#ifdef PR_GET_UNALIGN
311 case PR_GET_UNALIGN:
312 tprintf(", %#lx", tcp->u_arg[1]);
313 break;
314#endif
Dmitry V. Levin50f60132008-09-03 00:56:52 +0000315#ifdef PR_SET_KEEPCAPS
316 case PR_SET_KEEPCAPS:
317 tprintf(", %lu", tcp->u_arg[1]);
318 break;
319#endif
320#ifdef PR_GET_KEEPCAPS
321 case PR_GET_KEEPCAPS:
322 break;
323#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000324 default:
325 for (i = 1; i < tcp->u_nargs; i++)
326 tprintf(", %#lx", tcp->u_arg[i]);
327 break;
328 }
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +0000329 } else {
330 switch (tcp->u_arg[0]) {
331#ifdef PR_GET_PDEATHSIG
332 case PR_GET_PDEATHSIG:
Dmitry V. Levin50f60132008-09-03 00:56:52 +0000333 if (umove(tcp, tcp->u_arg[1], &i) < 0)
334 tprintf(", %#lx", tcp->u_arg[1]);
335 else
336 tprintf(", {%u}", i);
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +0000337 break;
338#endif
Dmitry V. Levin50f60132008-09-03 00:56:52 +0000339#ifdef PR_GET_DUMPABLE
340 case PR_GET_DUMPABLE:
341 return RVAL_UDECIMAL;
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +0000342#endif
343#ifdef PR_GET_UNALIGN
344 case PR_GET_UNALIGN:
Dmitry V. Levin50f60132008-09-03 00:56:52 +0000345 if (syserror(tcp) || umove(tcp, tcp->u_arg[1], &i) < 0)
346 break;
347 tcp->auxstr = unalignctl_string(i);
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +0000348 return RVAL_STR;
Dmitry V. Levin50f60132008-09-03 00:56:52 +0000349#endif
350#ifdef PR_GET_KEEPCAPS
351 case PR_GET_KEEPCAPS:
352 return RVAL_UDECIMAL;
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +0000353#endif
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +0000354 default:
355 break;
356 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000357 }
358 return 0;
359}
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000360#endif /* HAVE_PRCTL */
361
Dmitry V. Levinb9fe0112006-12-13 16:59:44 +0000362#if defined(FREEBSD) || defined(SUNOS4) || defined(SVR4)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000363int
Denys Vlasenko12014262011-05-30 14:00:14 +0200364sys_gethostid(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000365{
366 if (exiting(tcp))
367 return RVAL_HEX;
368 return 0;
369}
Dmitry V. Levinb9fe0112006-12-13 16:59:44 +0000370#endif /* FREEBSD || SUNOS4 || SVR4 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000371
372int
Denys Vlasenko12014262011-05-30 14:00:14 +0200373sys_sethostname(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000374{
375 if (entering(tcp)) {
376 printpathn(tcp, tcp->u_arg[0], tcp->u_arg[1]);
377 tprintf(", %lu", tcp->u_arg[1]);
378 }
379 return 0;
380}
381
Dmitry V. Levinb9fe0112006-12-13 16:59:44 +0000382#if defined(ALPHA) || defined(FREEBSD) || defined(SUNOS4) || defined(SVR4)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000383int
Denys Vlasenko12014262011-05-30 14:00:14 +0200384sys_gethostname(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000385{
386 if (exiting(tcp)) {
387 if (syserror(tcp))
388 tprintf("%#lx", tcp->u_arg[0]);
389 else
390 printpath(tcp, tcp->u_arg[0]);
391 tprintf(", %lu", tcp->u_arg[1]);
392 }
393 return 0;
394}
Dmitry V. Levinb9fe0112006-12-13 16:59:44 +0000395#endif /* ALPHA || FREEBSD || SUNOS4 || SVR4 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000396
397int
Denys Vlasenko12014262011-05-30 14:00:14 +0200398sys_setdomainname(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000399{
400 if (entering(tcp)) {
401 printpathn(tcp, tcp->u_arg[0], tcp->u_arg[1]);
402 tprintf(", %lu", tcp->u_arg[1]);
403 }
404 return 0;
405}
406
Wichert Akkerman5daa0281999-03-15 19:49:42 +0000407#if !defined(LINUX)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000408
409int
Denys Vlasenko12014262011-05-30 14:00:14 +0200410sys_getdomainname(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000411{
412 if (exiting(tcp)) {
413 if (syserror(tcp))
414 tprintf("%#lx", tcp->u_arg[0]);
415 else
416 printpath(tcp, tcp->u_arg[0]);
417 tprintf(", %lu", tcp->u_arg[1]);
418 }
419 return 0;
420}
421#endif /* !LINUX */
422
423int
Denys Vlasenko12014262011-05-30 14:00:14 +0200424sys_exit(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000425{
426 if (exiting(tcp)) {
427 fprintf(stderr, "_exit returned!\n");
428 return -1;
429 }
430 /* special case: we stop tracing this process, finish line now */
431 tprintf("%ld) ", tcp->u_arg[0]);
Denys Vlasenko102ec492011-08-25 01:27:59 +0200432 tabto();
Denys Vlasenko000b6012012-01-28 01:25:03 +0100433 tprints("= ?\n");
434 printing_tcp = NULL;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000435 return 0;
436}
437
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000438#ifdef USE_PROCFS
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000439
440int
Denys Vlasenko418d66a2009-01-17 01:52:54 +0000441sys_fork(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000442{
Dmitry V. Levin21a75342008-09-03 01:22:18 +0000443 if (exiting(tcp) && !syserror(tcp)) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000444 if (getrval2(tcp)) {
445 tcp->auxstr = "child process";
446 return RVAL_UDECIMAL | RVAL_STR;
447 }
448 }
449 return 0;
450}
451
John Hughes4e36a812001-04-18 15:11:51 +0000452#if UNIXWARE > 2
453
454int
Denys Vlasenko12014262011-05-30 14:00:14 +0200455sys_rfork(struct tcb *tcp)
John Hughes4e36a812001-04-18 15:11:51 +0000456{
457 if (entering(tcp)) {
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200458 tprintf("%ld", tcp->u_arg[0]);
John Hughes4e36a812001-04-18 15:11:51 +0000459 }
Dmitry V. Levin21a75342008-09-03 01:22:18 +0000460 else if (!syserror(tcp)) {
John Hughes4e36a812001-04-18 15:11:51 +0000461 if (getrval2(tcp)) {
462 tcp->auxstr = "child process";
463 return RVAL_UDECIMAL | RVAL_STR;
464 }
465 }
466 return 0;
467}
468
469#endif
470
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000471int
Denys Vlasenko12014262011-05-30 14:00:14 +0200472internal_fork(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000473{
474 struct tcb *tcpchild;
475
476 if (exiting(tcp)) {
Roland McGrathf3a0e1b2003-02-20 02:45:22 +0000477#ifdef SYS_rfork
Roland McGratha4f9f2d2005-06-07 23:21:20 +0000478 if (known_scno(tcp) == SYS_rfork && !(tcp->u_arg[0]&RFPROC))
Roland McGrathf3a0e1b2003-02-20 02:45:22 +0000479 return 0;
480#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000481 if (getrval2(tcp))
482 return 0;
483 if (!followfork)
484 return 0;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000485 if (syserror(tcp))
486 return 0;
Denys Vlasenko418d66a2009-01-17 01:52:54 +0000487 tcpchild = alloctcb(tcp->u_rval);
Wichert Akkerman2e4ffe52000-09-03 23:57:48 +0000488 if (proc_open(tcpchild, 2) < 0)
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +0000489 droptcb(tcpchild);
Denys Vlasenko381dbc22011-09-05 13:59:39 +0200490 tcpchild->flags |= TCB_STARTUP;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000491 }
492 return 0;
493}
494
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000495#else /* !USE_PROCFS */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000496
Wichert Akkerman7a0b6491999-12-23 15:08:17 +0000497#ifdef LINUX
498
499/* defines copied from linux/sched.h since we can't include that
500 * ourselves (it conflicts with *lots* of libc includes)
501 */
502#define CSIGNAL 0x000000ff /* signal mask to be sent at exit */
503#define CLONE_VM 0x00000100 /* set if VM shared between processes */
504#define CLONE_FS 0x00000200 /* set if fs info shared between processes */
505#define CLONE_FILES 0x00000400 /* set if open files shared between processes */
506#define CLONE_SIGHAND 0x00000800 /* set if signal handlers shared */
Roland McGrath909875b2002-12-22 03:34:36 +0000507#define CLONE_IDLETASK 0x00001000 /* kernel-only flag */
Wichert Akkerman7a0b6491999-12-23 15:08:17 +0000508#define CLONE_PTRACE 0x00002000 /* set if we want to let tracing continue on the child too */
509#define CLONE_VFORK 0x00004000 /* set if the parent wants the child to wake it up on mm_release */
510#define CLONE_PARENT 0x00008000 /* set if we want to have the same parent as the cloner */
Roland McGrath909875b2002-12-22 03:34:36 +0000511#define CLONE_THREAD 0x00010000 /* Same thread group? */
512#define CLONE_NEWNS 0x00020000 /* New namespace group? */
513#define CLONE_SYSVSEM 0x00040000 /* share system V SEM_UNDO semantics */
514#define CLONE_SETTLS 0x00080000 /* create a new TLS for the child */
515#define CLONE_PARENT_SETTID 0x00100000 /* set the TID in the parent */
516#define CLONE_CHILD_CLEARTID 0x00200000 /* clear the TID in the child */
Roland McGrath909875b2002-12-22 03:34:36 +0000517#define CLONE_UNTRACED 0x00800000 /* set if the tracing process can't force CLONE_PTRACE on this clone */
518#define CLONE_CHILD_SETTID 0x01000000 /* set the TID in the child */
Dmitry V. Levine3d4b682010-12-03 17:19:51 +0000519#define CLONE_STOPPED 0x02000000 /* Start in stopped state */
520#define CLONE_NEWUTS 0x04000000 /* New utsname group? */
521#define CLONE_NEWIPC 0x08000000 /* New ipcs */
522#define CLONE_NEWUSER 0x10000000 /* New user namespace */
523#define CLONE_NEWPID 0x20000000 /* New pid namespace */
524#define CLONE_NEWNET 0x40000000 /* New network namespace */
525#define CLONE_IO 0x80000000 /* Clone io context */
Wichert Akkerman7a0b6491999-12-23 15:08:17 +0000526
Roland McGrathd9f816f2004-09-04 03:39:20 +0000527static const struct xlat clone_flags[] = {
Wichert Akkerman7a0b6491999-12-23 15:08:17 +0000528 { CLONE_VM, "CLONE_VM" },
529 { CLONE_FS, "CLONE_FS" },
530 { CLONE_FILES, "CLONE_FILES" },
531 { CLONE_SIGHAND, "CLONE_SIGHAND" },
Roland McGrath909875b2002-12-22 03:34:36 +0000532 { CLONE_IDLETASK, "CLONE_IDLETASK"},
Wichert Akkerman7a0b6491999-12-23 15:08:17 +0000533 { CLONE_PTRACE, "CLONE_PTRACE" },
534 { CLONE_VFORK, "CLONE_VFORK" },
535 { CLONE_PARENT, "CLONE_PARENT" },
Roland McGrath909875b2002-12-22 03:34:36 +0000536 { CLONE_THREAD, "CLONE_THREAD" },
537 { CLONE_NEWNS, "CLONE_NEWNS" },
538 { CLONE_SYSVSEM, "CLONE_SYSVSEM" },
539 { CLONE_SETTLS, "CLONE_SETTLS" },
540 { CLONE_PARENT_SETTID,"CLONE_PARENT_SETTID" },
541 { CLONE_CHILD_CLEARTID,"CLONE_CHILD_CLEARTID" },
Roland McGrath909875b2002-12-22 03:34:36 +0000542 { CLONE_UNTRACED, "CLONE_UNTRACED" },
543 { CLONE_CHILD_SETTID,"CLONE_CHILD_SETTID" },
Dmitry V. Levine3d4b682010-12-03 17:19:51 +0000544 { CLONE_STOPPED, "CLONE_STOPPED" },
545 { CLONE_NEWUTS, "CLONE_NEWUTS" },
546 { CLONE_NEWIPC, "CLONE_NEWIPC" },
547 { CLONE_NEWUSER, "CLONE_NEWUSER" },
548 { CLONE_NEWPID, "CLONE_NEWPID" },
549 { CLONE_NEWNET, "CLONE_NEWNET" },
550 { CLONE_IO, "CLONE_IO" },
Wichert Akkerman7a0b6491999-12-23 15:08:17 +0000551 { 0, NULL },
552};
553
Roland McGrath909875b2002-12-22 03:34:36 +0000554# ifdef I386
555# include <asm/ldt.h>
Roland McGrath7decfb22004-03-01 22:10:52 +0000556# ifdef HAVE_STRUCT_USER_DESC
557# define modify_ldt_ldt_s user_desc
558# endif
Roland McGrath909875b2002-12-22 03:34:36 +0000559extern void print_ldt_entry();
560# endif
561
Roland McGrath9677b3a2003-03-12 09:54:36 +0000562# if defined IA64
563# define ARG_FLAGS 0
564# define ARG_STACK 1
Roland McGratha4f9f2d2005-06-07 23:21:20 +0000565# define ARG_STACKSIZE (known_scno(tcp) == SYS_clone2 ? 2 : -1)
566# define ARG_PTID (known_scno(tcp) == SYS_clone2 ? 3 : 2)
567# define ARG_CTID (known_scno(tcp) == SYS_clone2 ? 4 : 3)
568# define ARG_TLS (known_scno(tcp) == SYS_clone2 ? 5 : 4)
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +0000569# elif defined S390 || defined S390X || defined CRISV10 || defined CRISV32
Roland McGrath9677b3a2003-03-12 09:54:36 +0000570# define ARG_STACK 0
571# define ARG_FLAGS 1
572# define ARG_PTID 2
Roland McGrathfe5fdb22003-05-23 00:29:05 +0000573# define ARG_CTID 3
574# define ARG_TLS 4
Roland McGrath9c555e72003-07-09 09:47:59 +0000575# elif defined X86_64 || defined ALPHA
Roland McGrath361aac52003-03-18 07:43:42 +0000576# define ARG_FLAGS 0
577# define ARG_STACK 1
578# define ARG_PTID 2
579# define ARG_CTID 3
580# define ARG_TLS 4
Roland McGrath9677b3a2003-03-12 09:54:36 +0000581# else
582# define ARG_FLAGS 0
583# define ARG_STACK 1
584# define ARG_PTID 2
585# define ARG_TLS 3
586# define ARG_CTID 4
587# endif
588
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +0000589int
Denys Vlasenko12014262011-05-30 14:00:14 +0200590sys_clone(struct tcb *tcp)
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +0000591{
592 if (exiting(tcp)) {
Wang Chaocbdd1902010-09-02 15:08:59 +0800593 const char *sep = "|";
Roland McGrath9677b3a2003-03-12 09:54:36 +0000594 unsigned long flags = tcp->u_arg[ARG_FLAGS];
595 tprintf("child_stack=%#lx, ", tcp->u_arg[ARG_STACK]);
596# ifdef ARG_STACKSIZE
597 if (ARG_STACKSIZE != -1)
598 tprintf("stack_size=%#lx, ",
599 tcp->u_arg[ARG_STACKSIZE]);
Roland McGrathb4968be2003-01-20 09:04:33 +0000600# endif
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200601 tprints("flags=");
Wang Chaocbdd1902010-09-02 15:08:59 +0800602 if (!printflags(clone_flags, flags &~ CSIGNAL, NULL))
603 sep = "";
Roland McGrath984154d2003-05-23 01:08:42 +0000604 if ((flags & CSIGNAL) != 0)
Wang Chaocbdd1902010-09-02 15:08:59 +0800605 tprintf("%s%s", sep, signame(flags & CSIGNAL));
Roland McGrathb4968be2003-01-20 09:04:33 +0000606 if ((flags & (CLONE_PARENT_SETTID|CLONE_CHILD_SETTID
Roland McGrath9677b3a2003-03-12 09:54:36 +0000607 |CLONE_CHILD_CLEARTID|CLONE_SETTLS)) == 0)
Roland McGrath909875b2002-12-22 03:34:36 +0000608 return 0;
Roland McGrath6f67a982003-03-21 07:33:15 +0000609 if (flags & CLONE_PARENT_SETTID)
610 tprintf(", parent_tidptr=%#lx", tcp->u_arg[ARG_PTID]);
Roland McGrathb4968be2003-01-20 09:04:33 +0000611 if (flags & CLONE_SETTLS) {
Roland McGrath9677b3a2003-03-12 09:54:36 +0000612# ifdef I386
Roland McGrath909875b2002-12-22 03:34:36 +0000613 struct modify_ldt_ldt_s copy;
Roland McGrath9677b3a2003-03-12 09:54:36 +0000614 if (umove(tcp, tcp->u_arg[ARG_TLS], &copy) != -1) {
Roland McGrath909875b2002-12-22 03:34:36 +0000615 tprintf(", {entry_number:%d, ",
616 copy.entry_number);
617 if (!verbose(tcp))
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200618 tprints("...}");
Roland McGrath909875b2002-12-22 03:34:36 +0000619 else
620 print_ldt_entry(&copy);
621 }
622 else
Roland McGrath9677b3a2003-03-12 09:54:36 +0000623# endif
Roland McGrath43f2c842003-03-12 09:58:14 +0000624 tprintf(", tls=%#lx", tcp->u_arg[ARG_TLS]);
Roland McGrath909875b2002-12-22 03:34:36 +0000625 }
Roland McGrath9677b3a2003-03-12 09:54:36 +0000626 if (flags & (CLONE_CHILD_SETTID|CLONE_CHILD_CLEARTID))
627 tprintf(", child_tidptr=%#lx", tcp->u_arg[ARG_CTID]);
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +0000628 }
629 return 0;
630}
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000631
632int
633sys_unshare(struct tcb *tcp)
634{
635 if (entering(tcp))
636 printflags(clone_flags, tcp->u_arg[0], "CLONE_???");
637 return 0;
638}
Dmitry V. Levine5e60852009-12-31 22:50:49 +0000639#endif /* LINUX */
Wichert Akkerman7a0b6491999-12-23 15:08:17 +0000640
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000641int
Denys Vlasenko12014262011-05-30 14:00:14 +0200642sys_fork(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000643{
644 if (exiting(tcp))
645 return RVAL_UDECIMAL;
646 return 0;
647}
648
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +0000649int
Denys Vlasenko418d66a2009-01-17 01:52:54 +0000650change_syscall(struct tcb *tcp, int new)
Wichert Akkermanfaf72222000-02-19 23:59:03 +0000651{
Dmitry V. Levine5e60852009-12-31 22:50:49 +0000652#ifdef LINUX
Wichert Akkermanfaf72222000-02-19 23:59:03 +0000653#if defined(I386)
654 /* Attempt to make vfork into fork, which we can follow. */
Roland McGrath5a223472002-12-15 23:58:26 +0000655 if (ptrace(PTRACE_POKEUSER, tcp->pid, (char*)(ORIG_EAX * 4), new) < 0)
Wichert Akkermanfaf72222000-02-19 23:59:03 +0000656 return -1;
657 return 0;
Michal Ludvig0e035502002-09-23 15:41:01 +0000658#elif defined(X86_64)
659 /* Attempt to make vfork into fork, which we can follow. */
Roland McGrath5a223472002-12-15 23:58:26 +0000660 if (ptrace(PTRACE_POKEUSER, tcp->pid, (char*)(ORIG_RAX * 8), new) < 0)
Michal Ludvig0e035502002-09-23 15:41:01 +0000661 return -1;
662 return 0;
Wichert Akkermanfaf72222000-02-19 23:59:03 +0000663#elif defined(POWERPC)
Roland McGratheb285352003-01-14 09:59:00 +0000664 if (ptrace(PTRACE_POKEUSER, tcp->pid,
665 (char*)(sizeof(unsigned long)*PT_R0), new) < 0)
Wichert Akkermanfaf72222000-02-19 23:59:03 +0000666 return -1;
Denys Vlasenkoadedb512008-12-30 18:47:55 +0000667 return 0;
Michal Ludvig10a88d02002-10-07 14:31:00 +0000668#elif defined(S390) || defined(S390X)
669 /* s390 linux after 2.4.7 has a hook in entry.S to allow this */
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200670 if (ptrace(PTRACE_POKEUSER, tcp->pid, (char*)(PT_GPR2), new) < 0)
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +0000671 return -1;
Wichert Akkermanfaf72222000-02-19 23:59:03 +0000672 return 0;
673#elif defined(M68K)
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200674 if (ptrace(PTRACE_POKEUSER, tcp->pid, (char*)(4*PT_ORIG_D0), new) < 0)
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +0000675 return -1;
Wichert Akkermanfaf72222000-02-19 23:59:03 +0000676 return 0;
Roland McGrath6d1a65c2004-07-12 07:44:08 +0000677#elif defined(SPARC) || defined(SPARC64)
Mike Frysinger8566c502009-10-12 11:05:14 -0400678 struct pt_regs regs;
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200679 if (ptrace(PTRACE_GETREGS, tcp->pid, (char*)&regs, 0) < 0)
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +0000680 return -1;
Mike Frysinger8566c502009-10-12 11:05:14 -0400681 regs.u_regs[U_REG_G1] = new;
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200682 if (ptrace(PTRACE_SETREGS, tcp->pid, (char*)&regs, 0) < 0)
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +0000683 return -1;
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +0000684 return 0;
Wichert Akkermanfaf72222000-02-19 23:59:03 +0000685#elif defined(MIPS)
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200686 if (ptrace(PTRACE_POKEUSER, tcp->pid, (char*)(REG_V0), new) < 0)
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +0000687 return -1;
Wichert Akkermanfaf72222000-02-19 23:59:03 +0000688 return 0;
689#elif defined(ALPHA)
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200690 if (ptrace(PTRACE_POKEUSER, tcp->pid, (char*)(REG_A3), new) < 0)
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +0000691 return -1;
692 return 0;
693#elif defined(AVR32)
694 if (ptrace(PTRACE_POKEUSER, tcp->pid, (char*)(REG_R8), new) < 0)
695 return -1;
Wichert Akkermanfaf72222000-02-19 23:59:03 +0000696 return 0;
Dmitry V. Levin87ea1f42008-11-10 22:21:41 +0000697#elif defined(BFIN)
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200698 if (ptrace(PTRACE_POKEUSER, tcp->pid, (char*)(REG_P0), new) < 0)
Dmitry V. Levin87ea1f42008-11-10 22:21:41 +0000699 return -1;
700 return 0;
Wichert Akkerman7b3346b2001-10-09 23:47:38 +0000701#elif defined(IA64)
Roland McGrath08267b82004-02-20 22:56:43 +0000702 if (ia32) {
703 switch (new) {
Denys Vlasenko418d66a2009-01-17 01:52:54 +0000704 case 2:
705 break; /* x86 SYS_fork */
706 case SYS_clone:
707 new = 120;
708 break;
709 default:
Roland McGrath08267b82004-02-20 22:56:43 +0000710 fprintf(stderr, "%s: unexpected syscall %d\n",
711 __FUNCTION__, new);
712 return -1;
713 }
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200714 if (ptrace(PTRACE_POKEUSER, tcp->pid, (char*)(PT_R1), new) < 0)
Roland McGrath08267b82004-02-20 22:56:43 +0000715 return -1;
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200716 } else if (ptrace(PTRACE_POKEUSER, tcp->pid, (char*)(PT_R15), new) < 0)
Wichert Akkerman7b3346b2001-10-09 23:47:38 +0000717 return -1;
718 return 0;
Wichert Akkermanc1652e22001-03-27 12:17:16 +0000719#elif defined(HPPA)
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200720 if (ptrace(PTRACE_POKEUSER, tcp->pid, (char*)(PT_GR20), new) < 0)
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +0000721 return -1;
Wichert Akkermanc1652e22001-03-27 12:17:16 +0000722 return 0;
Wichert Akkermanccef6372002-05-01 16:39:22 +0000723#elif defined(SH)
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200724 if (ptrace(PTRACE_POKEUSER, tcp->pid, (char*)(4*(REG_REG0+3)), new) < 0)
Denys Vlasenkoadedb512008-12-30 18:47:55 +0000725 return -1;
726 return 0;
Roland McGrathf5a47772003-06-26 22:40:42 +0000727#elif defined(SH64)
Denys Vlasenkoadedb512008-12-30 18:47:55 +0000728 /* Top half of reg encodes the no. of args n as 0x1n.
729 Assume 0 args as kernel never actually checks... */
730 if (ptrace(PTRACE_POKEUSER, tcp->pid, (char*)(REG_SYSCALL),
731 0x100000 | new) < 0)
732 return -1;
733 return 0;
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +0000734#elif defined(CRISV10) || defined(CRISV32)
735 if (ptrace(PTRACE_POKEUSER, tcp->pid, (char*)(4*PT_R9), new) < 0)
736 return -1;
737 return 0;
Roland McGrathf691bd22006-04-25 07:34:41 +0000738#elif defined(ARM)
Denys Vlasenkoadedb512008-12-30 18:47:55 +0000739 /* Some kernels support this, some (pre-2.6.16 or so) don't. */
Roland McGrathf691bd22006-04-25 07:34:41 +0000740# ifndef PTRACE_SET_SYSCALL
741# define PTRACE_SET_SYSCALL 23
742# endif
743
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200744 if (ptrace(PTRACE_SET_SYSCALL, tcp->pid, 0, new & 0xffff) != 0)
Roland McGrathf691bd22006-04-25 07:34:41 +0000745 return -1;
746
Denys Vlasenkoadedb512008-12-30 18:47:55 +0000747 return 0;
Chris Metcalfc8c66982009-12-28 10:00:15 -0500748#elif defined(TILE)
749 if (ptrace(PTRACE_POKEUSER, tcp->pid,
750 (char*)PTREGS_OFFSET_REG(0),
751 new) != 0)
752 return -1;
753 return 0;
Edgar E. Iglesias939caba2010-07-06 14:21:07 +0200754#elif defined(MICROBLAZE)
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200755 if (ptrace(PTRACE_POKEUSER, tcp->pid, (char*)(PT_GPR(0)), new) < 0)
Edgar E. Iglesias939caba2010-07-06 14:21:07 +0200756 return -1;
757 return 0;
Wichert Akkermanfaf72222000-02-19 23:59:03 +0000758#else
759#warning Do not know how to handle change_syscall for this architecture
760#endif /* architecture */
761#endif /* LINUX */
762 return -1;
763}
764
Dmitry V. Levin257e1572009-12-26 17:55:24 +0000765#ifdef LINUX
Wang Chaoca8ab8d2010-11-12 17:26:08 +0800766
767int
Dmitry V. Levin257e1572009-12-26 17:55:24 +0000768internal_fork(struct tcb *tcp)
Wichert Akkerman7a0b6491999-12-23 15:08:17 +0000769{
Denys Vlasenkof44cce42011-06-21 14:34:10 +0200770 if ((ptrace_setoptions
Wang Chaoca8ab8d2010-11-12 17:26:08 +0800771 & (PTRACE_O_TRACECLONE | PTRACE_O_TRACEFORK | PTRACE_O_TRACEVFORK))
772 == (PTRACE_O_TRACECLONE | PTRACE_O_TRACEFORK | PTRACE_O_TRACEVFORK))
773 return 0;
774
Denys Vlasenko65d7c4d2011-06-23 21:46:37 +0200775 if (!followfork)
776 return 0;
777
Wichert Akkerman7a0b6491999-12-23 15:08:17 +0000778 if (entering(tcp)) {
Wang Chaoe636c852010-09-16 11:20:56 +0800779 /*
Denys Vlasenko833fb132011-08-17 11:30:56 +0200780 * We won't see the new child if clone is called with
781 * CLONE_UNTRACED, so we keep the same logic with that option
782 * and don't trace it.
Wang Chaoe636c852010-09-16 11:20:56 +0800783 */
784 if ((sysent[tcp->scno].sys_func == sys_clone) &&
785 (tcp->u_arg[ARG_FLAGS] & CLONE_UNTRACED))
786 return 0;
Denys Vlasenkoe7c90242011-06-22 00:09:25 +0200787 setbpt(tcp);
Wichert Akkerman7a0b6491999-12-23 15:08:17 +0000788 } else {
Denys Vlasenko833fb132011-08-17 11:30:56 +0200789 if (tcp->flags & TCB_BPTSET)
790 clearbpt(tcp);
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +0000791 }
Wichert Akkerman7a0b6491999-12-23 15:08:17 +0000792 return 0;
793}
Dmitry V. Levin257e1572009-12-26 17:55:24 +0000794
795#else /* !LINUX */
Wichert Akkerman7a0b6491999-12-23 15:08:17 +0000796
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000797int
Denys Vlasenko12014262011-05-30 14:00:14 +0200798internal_fork(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000799{
800 struct tcb *tcpchild;
801 int pid;
Roland McGratheb9e2e82009-06-02 16:49:22 -0700802 int dont_follow = 0;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000803
804#ifdef SYS_vfork
Roland McGratha4f9f2d2005-06-07 23:21:20 +0000805 if (known_scno(tcp) == SYS_vfork) {
Nate Sammonsccd8f211999-03-29 22:57:54 +0000806 /* Attempt to make vfork into fork, which we can follow. */
Roland McGrath41c48222008-07-18 00:25:10 +0000807 if (change_syscall(tcp, SYS_fork) < 0)
Roland McGratheb9e2e82009-06-02 16:49:22 -0700808 dont_follow = 1;
Nate Sammonsccd8f211999-03-29 22:57:54 +0000809 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000810#endif
Denys Vlasenko65d7c4d2011-06-23 21:46:37 +0200811
812 if (!followfork)
813 return 0;
814
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000815 if (entering(tcp)) {
Denys Vlasenko65d7c4d2011-06-23 21:46:37 +0200816 if (dont_follow)
Roland McGratheb9e2e82009-06-02 16:49:22 -0700817 return 0;
Denys Vlasenkoe7c90242011-06-22 00:09:25 +0200818 setbpt(tcp);
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +0000819 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000820 else {
821 int bpt = tcp->flags & TCB_BPTSET;
822
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000823 if (bpt)
824 clearbpt(tcp);
825
826 if (syserror(tcp))
827 return 0;
828
829 pid = tcp->u_rval;
Denys Vlasenko418d66a2009-01-17 01:52:54 +0000830 tcpchild = alloctcb(pid);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000831#ifdef SUNOS4
832#ifdef oldway
833 /* The child must have run before it can be attached. */
834 {
835 struct timeval tv;
836 tv.tv_sec = 0;
837 tv.tv_usec = 10000;
838 select(0, NULL, NULL, NULL, &tv);
839 }
840 if (ptrace(PTRACE_ATTACH, pid, (char *)1, 0) < 0) {
841 perror("PTRACE_ATTACH");
842 fprintf(stderr, "Too late?\n");
843 droptcb(tcpchild);
844 return 0;
845 }
846#else /* !oldway */
847 /* Try to catch the new process as soon as possible. */
848 {
849 int i;
850 for (i = 0; i < 1024; i++)
851 if (ptrace(PTRACE_ATTACH, pid, (char *) 1, 0) >= 0)
852 break;
853 if (i == 1024) {
854 perror("PTRACE_ATTACH");
855 fprintf(stderr, "Too late?\n");
856 droptcb(tcpchild);
857 return 0;
858 }
859 }
860#endif /* !oldway */
861#endif /* SUNOS4 */
Denys Vlasenkof88837a2011-09-05 14:05:46 +0200862 tcpchild->flags |= TCB_ATTACHED | TCB_STARTUP | TCB_IGNORE_ONE_SIGSTOP;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000863 /* Child has BPT too, must be removed on first occasion */
864 if (bpt) {
865 tcpchild->flags |= TCB_BPTSET;
866 tcpchild->baddr = tcp->baddr;
867 memcpy(tcpchild->inst, tcp->inst,
868 sizeof tcpchild->inst);
869 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000870 if (!qflag)
871 fprintf(stderr, "Process %d attached\n", pid);
872 }
873 return 0;
874}
875
Dmitry V. Levin257e1572009-12-26 17:55:24 +0000876#endif /* !LINUX */
877
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000878#endif /* !USE_PROCFS */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000879
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000880#if defined(SUNOS4) || defined(LINUX) || defined(FREEBSD)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000881
882int
Denys Vlasenko12014262011-05-30 14:00:14 +0200883sys_vfork(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000884{
885 if (exiting(tcp))
886 return RVAL_UDECIMAL;
887 return 0;
888}
889
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000890#endif /* SUNOS4 || LINUX || FREEBSD */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000891
892#ifndef LINUX
893
894static char idstr[16];
895
896int
Denys Vlasenko12014262011-05-30 14:00:14 +0200897sys_getpid(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000898{
899 if (exiting(tcp)) {
900 sprintf(idstr, "ppid %lu", getrval2(tcp));
901 tcp->auxstr = idstr;
902 return RVAL_STR;
903 }
904 return 0;
905}
906
907int
Denys Vlasenko12014262011-05-30 14:00:14 +0200908sys_getuid(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000909{
910 if (exiting(tcp)) {
911 sprintf(idstr, "euid %lu", getrval2(tcp));
912 tcp->auxstr = idstr;
913 return RVAL_STR;
914 }
915 return 0;
916}
917
918int
Denys Vlasenko12014262011-05-30 14:00:14 +0200919sys_getgid(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000920{
921 if (exiting(tcp)) {
922 sprintf(idstr, "egid %lu", getrval2(tcp));
923 tcp->auxstr = idstr;
924 return RVAL_STR;
925 }
926 return 0;
927}
928
929#endif /* !LINUX */
930
931#ifdef LINUX
932
Dmitry V. Levin50a218d2011-01-18 17:36:20 +0000933int sys_getuid(struct tcb *tcp)
934{
935 if (exiting(tcp))
936 tcp->u_rval = (uid_t) tcp->u_rval;
937 return RVAL_UDECIMAL;
938}
939
940int sys_setfsuid(struct tcb *tcp)
941{
942 if (entering(tcp))
943 tprintf("%u", (uid_t) tcp->u_arg[0]);
944 else
945 tcp->u_rval = (uid_t) tcp->u_rval;
946 return RVAL_UDECIMAL;
947}
948
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000949int
Denys Vlasenko12014262011-05-30 14:00:14 +0200950sys_setuid(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000951{
952 if (entering(tcp)) {
953 tprintf("%u", (uid_t) tcp->u_arg[0]);
954 }
955 return 0;
956}
957
958int
Denys Vlasenko12014262011-05-30 14:00:14 +0200959sys_setgid(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000960{
961 if (entering(tcp)) {
962 tprintf("%u", (gid_t) tcp->u_arg[0]);
963 }
964 return 0;
965}
966
967int
Denys Vlasenko1d632462009-04-14 12:51:00 +0000968sys_getresuid(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000969{
970 if (exiting(tcp)) {
Wichert Akkerman2e2553a1999-05-09 00:29:58 +0000971 __kernel_uid_t uid;
972 if (syserror(tcp))
973 tprintf("%#lx, %#lx, %#lx", tcp->u_arg[0],
974 tcp->u_arg[1], tcp->u_arg[2]);
975 else {
976 if (umove(tcp, tcp->u_arg[0], &uid) < 0)
977 tprintf("%#lx, ", tcp->u_arg[0]);
978 else
Roland McGrath83bd47a2003-11-13 22:32:26 +0000979 tprintf("[%lu], ", (unsigned long) uid);
Roland McGrath9bd6b422003-02-24 07:13:51 +0000980 if (umove(tcp, tcp->u_arg[1], &uid) < 0)
981 tprintf("%#lx, ", tcp->u_arg[1]);
Wichert Akkerman2e2553a1999-05-09 00:29:58 +0000982 else
Roland McGrath83bd47a2003-11-13 22:32:26 +0000983 tprintf("[%lu], ", (unsigned long) uid);
Roland McGrath9bd6b422003-02-24 07:13:51 +0000984 if (umove(tcp, tcp->u_arg[2], &uid) < 0)
985 tprintf("%#lx", tcp->u_arg[2]);
Wichert Akkerman2e2553a1999-05-09 00:29:58 +0000986 else
Roland McGrath83bd47a2003-11-13 22:32:26 +0000987 tprintf("[%lu]", (unsigned long) uid);
Wichert Akkerman2e2553a1999-05-09 00:29:58 +0000988 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000989 }
990 return 0;
991}
992
993int
Denys Vlasenko12014262011-05-30 14:00:14 +0200994sys_getresgid(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000995{
996 if (exiting(tcp)) {
Wichert Akkerman2e2553a1999-05-09 00:29:58 +0000997 __kernel_gid_t gid;
998 if (syserror(tcp))
999 tprintf("%#lx, %#lx, %#lx", tcp->u_arg[0],
1000 tcp->u_arg[1], tcp->u_arg[2]);
1001 else {
1002 if (umove(tcp, tcp->u_arg[0], &gid) < 0)
1003 tprintf("%#lx, ", tcp->u_arg[0]);
1004 else
Roland McGrath83bd47a2003-11-13 22:32:26 +00001005 tprintf("[%lu], ", (unsigned long) gid);
Roland McGrathd2450922003-02-24 10:18:07 +00001006 if (umove(tcp, tcp->u_arg[1], &gid) < 0)
1007 tprintf("%#lx, ", tcp->u_arg[1]);
Wichert Akkerman2e2553a1999-05-09 00:29:58 +00001008 else
Roland McGrath83bd47a2003-11-13 22:32:26 +00001009 tprintf("[%lu], ", (unsigned long) gid);
Roland McGrathd2450922003-02-24 10:18:07 +00001010 if (umove(tcp, tcp->u_arg[2], &gid) < 0)
1011 tprintf("%#lx", tcp->u_arg[2]);
Wichert Akkerman2e2553a1999-05-09 00:29:58 +00001012 else
Roland McGrath83bd47a2003-11-13 22:32:26 +00001013 tprintf("[%lu]", (unsigned long) gid);
Wichert Akkerman2e2553a1999-05-09 00:29:58 +00001014 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001015 }
1016 return 0;
1017}
1018
1019#endif /* LINUX */
1020
1021int
Denys Vlasenko12014262011-05-30 14:00:14 +02001022sys_setreuid(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001023{
1024 if (entering(tcp)) {
Roland McGrath83bd47a2003-11-13 22:32:26 +00001025 printuid("", tcp->u_arg[0]);
1026 printuid(", ", tcp->u_arg[1]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001027 }
1028 return 0;
1029}
1030
1031int
Denys Vlasenko12014262011-05-30 14:00:14 +02001032sys_setregid(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001033{
1034 if (entering(tcp)) {
Roland McGrath83bd47a2003-11-13 22:32:26 +00001035 printuid("", tcp->u_arg[0]);
1036 printuid(", ", tcp->u_arg[1]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001037 }
1038 return 0;
1039}
1040
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001041#if defined(LINUX) || defined(FREEBSD)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001042int
Denys Vlasenko12014262011-05-30 14:00:14 +02001043sys_setresuid(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001044{
1045 if (entering(tcp)) {
Roland McGrath83bd47a2003-11-13 22:32:26 +00001046 printuid("", tcp->u_arg[0]);
1047 printuid(", ", tcp->u_arg[1]);
1048 printuid(", ", tcp->u_arg[2]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001049 }
1050 return 0;
1051}
1052int
Denys Vlasenko12014262011-05-30 14:00:14 +02001053sys_setresgid(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001054{
1055 if (entering(tcp)) {
Roland McGrath83bd47a2003-11-13 22:32:26 +00001056 printuid("", tcp->u_arg[0]);
1057 printuid(", ", tcp->u_arg[1]);
1058 printuid(", ", tcp->u_arg[2]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001059 }
1060 return 0;
1061}
1062
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001063#endif /* LINUX || FREEBSD */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001064
1065int
Denys Vlasenko12014262011-05-30 14:00:14 +02001066sys_setgroups(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001067{
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001068 if (entering(tcp)) {
Roland McGrathaa524c82005-06-01 19:22:06 +00001069 unsigned long len, size, start, cur, end, abbrev_end;
1070 GETGROUPS_T gid;
1071 int failed = 0;
1072
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001073 len = tcp->u_arg[0];
Roland McGrathaa524c82005-06-01 19:22:06 +00001074 tprintf("%lu, ", len);
1075 if (len == 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001076 tprints("[]");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001077 return 0;
1078 }
Roland McGrathaa524c82005-06-01 19:22:06 +00001079 start = tcp->u_arg[1];
1080 if (start == 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001081 tprints("NULL");
Roland McGrathaa524c82005-06-01 19:22:06 +00001082 return 0;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001083 }
Roland McGrathaa524c82005-06-01 19:22:06 +00001084 size = len * sizeof(gid);
1085 end = start + size;
1086 if (!verbose(tcp) || size / sizeof(gid) != len || end < start) {
1087 tprintf("%#lx", start);
1088 return 0;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001089 }
Roland McGrathaa524c82005-06-01 19:22:06 +00001090 if (abbrev(tcp)) {
1091 abbrev_end = start + max_strlen * sizeof(gid);
1092 if (abbrev_end < start)
1093 abbrev_end = end;
1094 } else {
1095 abbrev_end = end;
1096 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001097 tprints("[");
Roland McGrathaa524c82005-06-01 19:22:06 +00001098 for (cur = start; cur < end; cur += sizeof(gid)) {
1099 if (cur > start)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001100 tprints(", ");
Roland McGrathaa524c82005-06-01 19:22:06 +00001101 if (cur >= abbrev_end) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001102 tprints("...");
Roland McGrathaa524c82005-06-01 19:22:06 +00001103 break;
1104 }
1105 if (umoven(tcp, cur, sizeof(gid), (char *) &gid) < 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001106 tprints("?");
Roland McGrathaa524c82005-06-01 19:22:06 +00001107 failed = 1;
1108 break;
1109 }
1110 tprintf("%lu", (unsigned long) gid);
1111 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001112 tprints("]");
Roland McGrathaa524c82005-06-01 19:22:06 +00001113 if (failed)
1114 tprintf(" %#lx", tcp->u_arg[1]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001115 }
1116 return 0;
1117}
1118
1119int
Denys Vlasenko12014262011-05-30 14:00:14 +02001120sys_getgroups(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001121{
Roland McGrathaa524c82005-06-01 19:22:06 +00001122 unsigned long len;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001123
1124 if (entering(tcp)) {
1125 len = tcp->u_arg[0];
Roland McGrathaa524c82005-06-01 19:22:06 +00001126 tprintf("%lu, ", len);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001127 } else {
Roland McGrathaa524c82005-06-01 19:22:06 +00001128 unsigned long size, start, cur, end, abbrev_end;
1129 GETGROUPS_T gid;
1130 int failed = 0;
1131
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001132 len = tcp->u_rval;
Roland McGrathaa524c82005-06-01 19:22:06 +00001133 if (len == 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001134 tprints("[]");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001135 return 0;
1136 }
Roland McGrathaa524c82005-06-01 19:22:06 +00001137 start = tcp->u_arg[1];
1138 if (start == 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001139 tprints("NULL");
Roland McGrathaa524c82005-06-01 19:22:06 +00001140 return 0;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001141 }
Roland McGrathaa524c82005-06-01 19:22:06 +00001142 if (tcp->u_arg[0] == 0) {
1143 tprintf("%#lx", start);
1144 return 0;
1145 }
1146 size = len * sizeof(gid);
1147 end = start + size;
1148 if (!verbose(tcp) || tcp->u_arg[0] == 0 ||
1149 size / sizeof(gid) != len || end < start) {
1150 tprintf("%#lx", start);
1151 return 0;
1152 }
1153 if (abbrev(tcp)) {
1154 abbrev_end = start + max_strlen * sizeof(gid);
1155 if (abbrev_end < start)
1156 abbrev_end = end;
1157 } else {
1158 abbrev_end = end;
1159 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001160 tprints("[");
Roland McGrathaa524c82005-06-01 19:22:06 +00001161 for (cur = start; cur < end; cur += sizeof(gid)) {
1162 if (cur > start)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001163 tprints(", ");
Roland McGrathaa524c82005-06-01 19:22:06 +00001164 if (cur >= abbrev_end) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001165 tprints("...");
Roland McGrathaa524c82005-06-01 19:22:06 +00001166 break;
1167 }
1168 if (umoven(tcp, cur, sizeof(gid), (char *) &gid) < 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001169 tprints("?");
Roland McGrathaa524c82005-06-01 19:22:06 +00001170 failed = 1;
1171 break;
1172 }
1173 tprintf("%lu", (unsigned long) gid);
1174 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001175 tprints("]");
Roland McGrathaa524c82005-06-01 19:22:06 +00001176 if (failed)
1177 tprintf(" %#lx", tcp->u_arg[1]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001178 }
1179 return 0;
1180}
1181
Roland McGrath83bd47a2003-11-13 22:32:26 +00001182#ifdef LINUX
1183int
Denys Vlasenko12014262011-05-30 14:00:14 +02001184sys_setgroups32(struct tcb *tcp)
Roland McGrath83bd47a2003-11-13 22:32:26 +00001185{
Roland McGrath83bd47a2003-11-13 22:32:26 +00001186 if (entering(tcp)) {
Roland McGrathaa524c82005-06-01 19:22:06 +00001187 unsigned long len, size, start, cur, end, abbrev_end;
1188 GETGROUPS32_T gid;
1189 int failed = 0;
1190
Roland McGrath83bd47a2003-11-13 22:32:26 +00001191 len = tcp->u_arg[0];
Roland McGrathaa524c82005-06-01 19:22:06 +00001192 tprintf("%lu, ", len);
1193 if (len == 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001194 tprints("[]");
Roland McGrath83bd47a2003-11-13 22:32:26 +00001195 return 0;
1196 }
Roland McGrathaa524c82005-06-01 19:22:06 +00001197 start = tcp->u_arg[1];
1198 if (start == 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001199 tprints("NULL");
Roland McGrathaa524c82005-06-01 19:22:06 +00001200 return 0;
Roland McGrath83bd47a2003-11-13 22:32:26 +00001201 }
Roland McGrathaa524c82005-06-01 19:22:06 +00001202 size = len * sizeof(gid);
1203 end = start + size;
1204 if (!verbose(tcp) || size / sizeof(gid) != len || end < start) {
1205 tprintf("%#lx", start);
1206 return 0;
Roland McGrath83bd47a2003-11-13 22:32:26 +00001207 }
Roland McGrathaa524c82005-06-01 19:22:06 +00001208 if (abbrev(tcp)) {
1209 abbrev_end = start + max_strlen * sizeof(gid);
1210 if (abbrev_end < start)
1211 abbrev_end = end;
1212 } else {
1213 abbrev_end = end;
1214 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001215 tprints("[");
Roland McGrathaa524c82005-06-01 19:22:06 +00001216 for (cur = start; cur < end; cur += sizeof(gid)) {
1217 if (cur > start)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001218 tprints(", ");
Roland McGrathaa524c82005-06-01 19:22:06 +00001219 if (cur >= abbrev_end) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001220 tprints("...");
Roland McGrathaa524c82005-06-01 19:22:06 +00001221 break;
1222 }
1223 if (umoven(tcp, cur, sizeof(gid), (char *) &gid) < 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001224 tprints("?");
Roland McGrathaa524c82005-06-01 19:22:06 +00001225 failed = 1;
1226 break;
1227 }
1228 tprintf("%lu", (unsigned long) gid);
1229 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001230 tprints("]");
Roland McGrathaa524c82005-06-01 19:22:06 +00001231 if (failed)
1232 tprintf(" %#lx", tcp->u_arg[1]);
Roland McGrath83bd47a2003-11-13 22:32:26 +00001233 }
1234 return 0;
1235}
1236
1237int
Denys Vlasenko12014262011-05-30 14:00:14 +02001238sys_getgroups32(struct tcb *tcp)
Roland McGrath83bd47a2003-11-13 22:32:26 +00001239{
Roland McGrathaa524c82005-06-01 19:22:06 +00001240 unsigned long len;
Roland McGrath83bd47a2003-11-13 22:32:26 +00001241
1242 if (entering(tcp)) {
1243 len = tcp->u_arg[0];
Roland McGrathaa524c82005-06-01 19:22:06 +00001244 tprintf("%lu, ", len);
Roland McGrath83bd47a2003-11-13 22:32:26 +00001245 } else {
Roland McGrathaa524c82005-06-01 19:22:06 +00001246 unsigned long size, start, cur, end, abbrev_end;
1247 GETGROUPS32_T gid;
1248 int failed = 0;
1249
Roland McGrath83bd47a2003-11-13 22:32:26 +00001250 len = tcp->u_rval;
Roland McGrathaa524c82005-06-01 19:22:06 +00001251 if (len == 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001252 tprints("[]");
Roland McGrath83bd47a2003-11-13 22:32:26 +00001253 return 0;
1254 }
Roland McGrathaa524c82005-06-01 19:22:06 +00001255 start = tcp->u_arg[1];
1256 if (start == 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001257 tprints("NULL");
Roland McGrathaa524c82005-06-01 19:22:06 +00001258 return 0;
Roland McGrath83bd47a2003-11-13 22:32:26 +00001259 }
Roland McGrathaa524c82005-06-01 19:22:06 +00001260 size = len * sizeof(gid);
1261 end = start + size;
1262 if (!verbose(tcp) || tcp->u_arg[0] == 0 ||
1263 size / sizeof(gid) != len || end < start) {
1264 tprintf("%#lx", start);
1265 return 0;
1266 }
1267 if (abbrev(tcp)) {
1268 abbrev_end = start + max_strlen * sizeof(gid);
1269 if (abbrev_end < start)
1270 abbrev_end = end;
1271 } else {
1272 abbrev_end = end;
1273 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001274 tprints("[");
Roland McGrathaa524c82005-06-01 19:22:06 +00001275 for (cur = start; cur < end; cur += sizeof(gid)) {
1276 if (cur > start)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001277 tprints(", ");
Roland McGrathaa524c82005-06-01 19:22:06 +00001278 if (cur >= abbrev_end) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001279 tprints("...");
Roland McGrathaa524c82005-06-01 19:22:06 +00001280 break;
1281 }
1282 if (umoven(tcp, cur, sizeof(gid), (char *) &gid) < 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001283 tprints("?");
Roland McGrathaa524c82005-06-01 19:22:06 +00001284 failed = 1;
1285 break;
1286 }
1287 tprintf("%lu", (unsigned long) gid);
1288 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001289 tprints("]");
Roland McGrathaa524c82005-06-01 19:22:06 +00001290 if (failed)
1291 tprintf(" %#lx", tcp->u_arg[1]);
Roland McGrath83bd47a2003-11-13 22:32:26 +00001292 }
1293 return 0;
1294}
1295#endif /* LINUX */
1296
Dmitry V. Levinb9fe0112006-12-13 16:59:44 +00001297#if defined(ALPHA) || defined(SUNOS4) || defined(SVR4)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001298int
Denys Vlasenko12014262011-05-30 14:00:14 +02001299sys_setpgrp(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001300{
1301 if (entering(tcp)) {
1302#ifndef SVR4
1303 tprintf("%lu, %lu", tcp->u_arg[0], tcp->u_arg[1]);
1304#endif /* !SVR4 */
1305 }
1306 return 0;
1307}
Dmitry V. Levinb9fe0112006-12-13 16:59:44 +00001308#endif /* ALPHA || SUNOS4 || SVR4 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001309
1310int
Denys Vlasenko12014262011-05-30 14:00:14 +02001311sys_getpgrp(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001312{
1313 if (entering(tcp)) {
1314#ifndef SVR4
1315 tprintf("%lu", tcp->u_arg[0]);
1316#endif /* !SVR4 */
1317 }
1318 return 0;
1319}
1320
1321int
Denys Vlasenko12014262011-05-30 14:00:14 +02001322sys_getsid(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001323{
1324 if (entering(tcp)) {
1325 tprintf("%lu", tcp->u_arg[0]);
1326 }
1327 return 0;
1328}
1329
1330int
Denys Vlasenko12014262011-05-30 14:00:14 +02001331sys_setsid(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001332{
1333 return 0;
1334}
1335
1336int
Denys Vlasenko12014262011-05-30 14:00:14 +02001337sys_getpgid(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001338{
1339 if (entering(tcp)) {
1340 tprintf("%lu", tcp->u_arg[0]);
1341 }
1342 return 0;
1343}
1344
1345int
Denys Vlasenko12014262011-05-30 14:00:14 +02001346sys_setpgid(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001347{
1348 if (entering(tcp)) {
1349 tprintf("%lu, %lu", tcp->u_arg[0], tcp->u_arg[1]);
1350 }
1351 return 0;
1352}
1353
John Hughesc61eb3d2002-05-17 11:37:50 +00001354#if UNIXWARE >= 2
1355
1356#include <sys/privilege.h>
1357
1358
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001359static const struct xlat procpriv_cmds[] = {
John Hughesc61eb3d2002-05-17 11:37:50 +00001360 { SETPRV, "SETPRV" },
1361 { CLRPRV, "CLRPRV" },
1362 { PUTPRV, "PUTPRV" },
1363 { GETPRV, "GETPRV" },
1364 { CNTPRV, "CNTPRV" },
1365 { 0, NULL },
1366};
1367
1368
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001369static const struct xlat procpriv_priv[] = {
John Hughesc61eb3d2002-05-17 11:37:50 +00001370 { P_OWNER, "P_OWNER" },
1371 { P_AUDIT, "P_AUDIT" },
1372 { P_COMPAT, "P_COMPAT" },
1373 { P_DACREAD, "P_DACREAD" },
1374 { P_DACWRITE, "P_DACWRITE" },
1375 { P_DEV, "P_DEV" },
1376 { P_FILESYS, "P_FILESYS" },
1377 { P_MACREAD, "P_MACREAD" },
1378 { P_MACWRITE, "P_MACWRITE" },
1379 { P_MOUNT, "P_MOUNT" },
1380 { P_MULTIDIR, "P_MULTIDIR" },
1381 { P_SETPLEVEL, "P_SETPLEVEL" },
1382 { P_SETSPRIV, "P_SETSPRIV" },
1383 { P_SETUID, "P_SETUID" },
1384 { P_SYSOPS, "P_SYSOPS" },
1385 { P_SETUPRIV, "P_SETUPRIV" },
1386 { P_DRIVER, "P_DRIVER" },
1387 { P_RTIME, "P_RTIME" },
1388 { P_MACUPGRADE, "P_MACUPGRADE" },
1389 { P_FSYSRANGE, "P_FSYSRANGE" },
1390 { P_SETFLEVEL, "P_SETFLEVEL" },
1391 { P_AUDITWR, "P_AUDITWR" },
1392 { P_TSHAR, "P_TSHAR" },
1393 { P_PLOCK, "P_PLOCK" },
1394 { P_CORE, "P_CORE" },
1395 { P_LOADMOD, "P_LOADMOD" },
1396 { P_BIND, "P_BIND" },
1397 { P_ALLPRIVS, "P_ALLPRIVS" },
1398 { 0, NULL },
1399};
1400
1401
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001402static const struct xlat procpriv_type[] = {
John Hughesc61eb3d2002-05-17 11:37:50 +00001403 { PS_FIX, "PS_FIX" },
1404 { PS_INH, "PS_INH" },
1405 { PS_MAX, "PS_MAX" },
1406 { PS_WKG, "PS_WKG" },
1407 { 0, NULL },
1408};
1409
1410
1411static void
Dmitry V. Levinab9008b2007-01-11 22:05:04 +00001412printpriv(struct tcb *tcp, long addr, int len, const struct xlat *opt)
John Hughesc61eb3d2002-05-17 11:37:50 +00001413{
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001414 priv_t buf[128];
Dmitry V. Levinfcda7a52011-06-13 21:58:43 +00001415 int max = verbose(tcp) ? ARRAY_SIZE(buf) : 10;
John Hughesc61eb3d2002-05-17 11:37:50 +00001416 int dots = len > max;
1417 int i;
Roland McGrath5a223472002-12-15 23:58:26 +00001418
John Hughesc61eb3d2002-05-17 11:37:50 +00001419 if (len > max) len = max;
Roland McGrath5a223472002-12-15 23:58:26 +00001420
John Hughesc61eb3d2002-05-17 11:37:50 +00001421 if (len <= 0 ||
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001422 umoven(tcp, addr, len * sizeof buf[0], (char *) buf) < 0)
John Hughesc61eb3d2002-05-17 11:37:50 +00001423 {
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001424 tprintf("%#lx", addr);
John Hughesc61eb3d2002-05-17 11:37:50 +00001425 return;
1426 }
1427
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001428 tprints("[");
John Hughesc61eb3d2002-05-17 11:37:50 +00001429
1430 for (i = 0; i < len; ++i) {
Dmitry V. Levinab9008b2007-01-11 22:05:04 +00001431 const char *t, *p;
John Hughesc61eb3d2002-05-17 11:37:50 +00001432
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001433 if (i) tprints(", ");
John Hughesc61eb3d2002-05-17 11:37:50 +00001434
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001435 if ((t = xlookup(procpriv_type, buf[i] & PS_TYPE)) &&
1436 (p = xlookup(procpriv_priv, buf[i] & ~PS_TYPE)))
John Hughesc61eb3d2002-05-17 11:37:50 +00001437 {
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001438 tprintf("%s|%s", t, p);
John Hughesc61eb3d2002-05-17 11:37:50 +00001439 }
1440 else {
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001441 tprintf("%#lx", buf[i]);
John Hughesc61eb3d2002-05-17 11:37:50 +00001442 }
1443 }
1444
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001445 if (dots) tprints(" ...");
John Hughesc61eb3d2002-05-17 11:37:50 +00001446
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001447 tprints("]");
John Hughesc61eb3d2002-05-17 11:37:50 +00001448}
1449
1450
1451int
Denys Vlasenko12014262011-05-30 14:00:14 +02001452sys_procpriv(struct tcb *tcp)
John Hughesc61eb3d2002-05-17 11:37:50 +00001453{
1454 if (entering(tcp)) {
1455 printxval(procpriv_cmds, tcp->u_arg[0], "???PRV");
1456 switch (tcp->u_arg[0]) {
1457 case CNTPRV:
1458 tprintf(", %#lx, %ld", tcp->u_arg[1], tcp->u_arg[2]);
1459 break;
1460
1461 case GETPRV:
1462 break;
1463
1464 default:
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001465 tprints(", ");
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001466 printpriv(tcp, tcp->u_arg[1], tcp->u_arg[2]);
1467 tprintf(", %ld", tcp->u_arg[2]);
John Hughesc61eb3d2002-05-17 11:37:50 +00001468 }
1469 }
1470 else if (tcp->u_arg[0] == GETPRV) {
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001471 if (syserror(tcp)) {
John Hughesc61eb3d2002-05-17 11:37:50 +00001472 tprintf(", %#lx, %ld", tcp->u_arg[1], tcp->u_arg[2]);
1473 }
1474 else {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001475 tprints(", ");
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001476 printpriv(tcp, tcp->u_arg[1], tcp->u_rval);
1477 tprintf(", %ld", tcp->u_arg[2]);
John Hughesc61eb3d2002-05-17 11:37:50 +00001478 }
1479 }
Roland McGrath5a223472002-12-15 23:58:26 +00001480
John Hughesc61eb3d2002-05-17 11:37:50 +00001481 return 0;
1482}
1483
Dmitry V. Levine5e60852009-12-31 22:50:49 +00001484#endif /* UNIXWARE */
John Hughesc61eb3d2002-05-17 11:37:50 +00001485
1486
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001487static void
Dmitry V. Levin30145dd2010-09-06 22:08:24 +00001488printargv(struct tcb *tcp, long addr)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001489{
Roland McGrath85a3bc42007-08-02 02:13:05 +00001490 union {
Andreas Schwab99c85692009-08-28 19:36:20 +02001491 unsigned int p32;
1492 unsigned long p64;
Roland McGrath85a3bc42007-08-02 02:13:05 +00001493 char data[sizeof(long)];
1494 } cp;
Dmitry V. Levin30145dd2010-09-06 22:08:24 +00001495 const char *sep;
Roland McGrath85a3bc42007-08-02 02:13:05 +00001496 int n = 0;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001497
Roland McGrath85a3bc42007-08-02 02:13:05 +00001498 cp.p64 = 1;
1499 for (sep = ""; !abbrev(tcp) || n < max_strlen / 2; sep = ", ", ++n) {
1500 if (umoven(tcp, addr, personality_wordsize[current_personality],
1501 cp.data) < 0) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001502 tprintf("%#lx", addr);
1503 return;
1504 }
Roland McGrath85a3bc42007-08-02 02:13:05 +00001505 if (personality_wordsize[current_personality] == 4)
1506 cp.p64 = cp.p32;
1507 if (cp.p64 == 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001508 break;
Denys Vlasenko5940e652011-09-01 09:55:05 +02001509 tprints(sep);
Roland McGrath85a3bc42007-08-02 02:13:05 +00001510 printstr(tcp, cp.p64, -1);
1511 addr += personality_wordsize[current_personality];
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001512 }
Roland McGrath85a3bc42007-08-02 02:13:05 +00001513 if (cp.p64)
1514 tprintf("%s...", sep);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001515}
1516
1517static void
Dmitry V. Levin30145dd2010-09-06 22:08:24 +00001518printargc(const char *fmt, struct tcb *tcp, long addr)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001519{
1520 int count;
1521 char *cp;
1522
1523 for (count = 0; umove(tcp, addr, &cp) >= 0 && cp != NULL; count++) {
1524 addr += sizeof(char *);
1525 }
1526 tprintf(fmt, count, count == 1 ? "" : "s");
1527}
1528
Dmitry V. Levinb9fe0112006-12-13 16:59:44 +00001529#if defined(SPARC) || defined(SPARC64) || defined(SUNOS4)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001530int
Dmitry V. Levine5e60852009-12-31 22:50:49 +00001531sys_execv(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001532{
1533 if (entering(tcp)) {
1534 printpath(tcp, tcp->u_arg[0]);
1535 if (!verbose(tcp))
1536 tprintf(", %#lx", tcp->u_arg[1]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001537 else {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001538 tprints(", [");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001539 printargv(tcp, tcp->u_arg[1]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001540 tprints("]");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001541 }
1542 }
1543 return 0;
1544}
Dmitry V. Levinb9fe0112006-12-13 16:59:44 +00001545#endif /* SPARC || SPARC64 || SUNOS4 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001546
1547int
Dmitry V. Levine5e60852009-12-31 22:50:49 +00001548sys_execve(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001549{
1550 if (entering(tcp)) {
1551 printpath(tcp, tcp->u_arg[0]);
1552 if (!verbose(tcp))
1553 tprintf(", %#lx", tcp->u_arg[1]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001554 else {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001555 tprints(", [");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001556 printargv(tcp, tcp->u_arg[1]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001557 tprints("]");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001558 }
1559 if (!verbose(tcp))
1560 tprintf(", %#lx", tcp->u_arg[2]);
1561 else if (abbrev(tcp))
1562 printargc(", [/* %d var%s */]", tcp, tcp->u_arg[2]);
1563 else {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001564 tprints(", [");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001565 printargv(tcp, tcp->u_arg[2]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001566 tprints("]");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001567 }
1568 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001569 return 0;
1570}
1571
Roland McGrath5ef24ab2004-02-20 02:22:35 +00001572#if UNIXWARE > 2
John Hughes4e36a812001-04-18 15:11:51 +00001573
Denys Vlasenko12014262011-05-30 14:00:14 +02001574int sys_rexecve(struct tcb *tcp)
John Hughes4e36a812001-04-18 15:11:51 +00001575{
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001576 if (entering(tcp)) {
1577 sys_execve(tcp);
1578 tprintf(", %ld", tcp->u_arg[3]);
John Hughes4e36a812001-04-18 15:11:51 +00001579 }
1580 return 0;
1581}
1582
Roland McGrath5ef24ab2004-02-20 02:22:35 +00001583#endif
John Hughes4e36a812001-04-18 15:11:51 +00001584
Denys Vlasenkoa7949742011-08-21 17:26:55 +02001585#if defined SUNOS4 || (defined LINUX && defined TCB_WAITEXECVE)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001586int
Denys Vlasenkof8bc0652011-05-24 20:30:24 +02001587internal_exec(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001588{
Denys Vlasenkoa7949742011-08-21 17:26:55 +02001589# if defined SUNOS4
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001590 if (exiting(tcp) && !syserror(tcp) && followfork)
1591 fixvfork(tcp);
Denys Vlasenkoa7949742011-08-21 17:26:55 +02001592# endif
1593# if defined LINUX && defined TCB_WAITEXECVE
Roland McGrathfdb097f2004-07-12 07:38:55 +00001594 if (exiting(tcp) && syserror(tcp))
1595 tcp->flags &= ~TCB_WAITEXECVE;
Denys Vlasenkof8bc0652011-05-24 20:30:24 +02001596 else {
1597 /* Maybe we have post-execve SIGTRAP suppressed? */
Denys Vlasenkof44cce42011-06-21 14:34:10 +02001598 if (!(ptrace_setoptions & PTRACE_O_TRACEEXEC))
Denys Vlasenkof8bc0652011-05-24 20:30:24 +02001599 tcp->flags |= TCB_WAITEXECVE; /* no */
1600 }
Denys Vlasenkoa7949742011-08-21 17:26:55 +02001601# endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001602 return 0;
1603}
Denys Vlasenkoa7949742011-08-21 17:26:55 +02001604#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001605
1606#ifdef LINUX
Roland McGrath7ec1d352002-12-17 04:50:44 +00001607#ifndef __WNOTHREAD
1608#define __WNOTHREAD 0x20000000
1609#endif
1610#ifndef __WALL
1611#define __WALL 0x40000000
1612#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001613#ifndef __WCLONE
Roland McGrath7ec1d352002-12-17 04:50:44 +00001614#define __WCLONE 0x80000000
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001615#endif
1616#endif /* LINUX */
1617
Roland McGrathd9f816f2004-09-04 03:39:20 +00001618static const struct xlat wait4_options[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001619 { WNOHANG, "WNOHANG" },
1620#ifndef WSTOPPED
1621 { WUNTRACED, "WUNTRACED" },
1622#endif
1623#ifdef WEXITED
1624 { WEXITED, "WEXITED" },
1625#endif
1626#ifdef WTRAPPED
1627 { WTRAPPED, "WTRAPPED" },
1628#endif
1629#ifdef WSTOPPED
1630 { WSTOPPED, "WSTOPPED" },
1631#endif
1632#ifdef WCONTINUED
1633 { WCONTINUED, "WCONTINUED" },
1634#endif
1635#ifdef WNOWAIT
1636 { WNOWAIT, "WNOWAIT" },
1637#endif
1638#ifdef __WCLONE
1639 { __WCLONE, "__WCLONE" },
1640#endif
Roland McGrath7ec1d352002-12-17 04:50:44 +00001641#ifdef __WALL
1642 { __WALL, "__WALL" },
1643#endif
1644#ifdef __WNOTHREAD
1645 { __WNOTHREAD, "__WNOTHREAD" },
1646#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001647 { 0, NULL },
1648};
1649
Roland McGrath5e02a572004-10-19 23:33:47 +00001650#if !defined WCOREFLAG && defined WCOREFLG
1651# define WCOREFLAG WCOREFLG
1652#endif
1653#ifndef WCOREFLAG
Dmitry V. Levine5e60852009-12-31 22:50:49 +00001654# define WCOREFLAG 0x80
Roland McGrath5e02a572004-10-19 23:33:47 +00001655#endif
Dmitry V. Levine5e60852009-12-31 22:50:49 +00001656#ifndef WCOREDUMP
1657# define WCOREDUMP(status) ((status) & 0200)
1658#endif
1659
Roland McGrath5e02a572004-10-19 23:33:47 +00001660
1661#ifndef W_STOPCODE
1662#define W_STOPCODE(sig) ((sig) << 8 | 0x7f)
1663#endif
1664#ifndef W_EXITCODE
1665#define W_EXITCODE(ret, sig) ((ret) << 8 | (sig))
1666#endif
1667
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001668static int
Denys Vlasenko12014262011-05-30 14:00:14 +02001669printstatus(int status)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001670{
1671 int exited = 0;
1672
1673 /*
1674 * Here is a tricky presentation problem. This solution
1675 * is still not entirely satisfactory but since there
1676 * are no wait status constructors it will have to do.
1677 */
Roland McGrath79fbda52004-04-14 02:45:55 +00001678 if (WIFSTOPPED(status)) {
1679 tprintf("[{WIFSTOPPED(s) && WSTOPSIG(s) == %s}",
Nate Sammonsce780fc1999-03-29 23:23:13 +00001680 signame(WSTOPSIG(status)));
Roland McGrath79fbda52004-04-14 02:45:55 +00001681 status &= ~W_STOPCODE(WSTOPSIG(status));
1682 }
1683 else if (WIFSIGNALED(status)) {
1684 tprintf("[{WIFSIGNALED(s) && WTERMSIG(s) == %s%s}",
Nate Sammonsce780fc1999-03-29 23:23:13 +00001685 signame(WTERMSIG(status)),
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001686 WCOREDUMP(status) ? " && WCOREDUMP(s)" : "");
Roland McGrath79fbda52004-04-14 02:45:55 +00001687 status &= ~(W_EXITCODE(0, WTERMSIG(status)) | WCOREFLAG);
1688 }
1689 else if (WIFEXITED(status)) {
1690 tprintf("[{WIFEXITED(s) && WEXITSTATUS(s) == %d}",
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001691 WEXITSTATUS(status));
1692 exited = 1;
Roland McGrath79fbda52004-04-14 02:45:55 +00001693 status &= ~W_EXITCODE(WEXITSTATUS(status), 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001694 }
Roland McGrath79fbda52004-04-14 02:45:55 +00001695 else {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001696 tprintf("[%#x]", status);
Roland McGrath79fbda52004-04-14 02:45:55 +00001697 return 0;
1698 }
1699
1700 if (status == 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001701 tprints("]");
Roland McGrath79fbda52004-04-14 02:45:55 +00001702 else
Roland McGrathf8cc83c2004-06-04 01:24:07 +00001703 tprintf(" | %#x]", status);
Roland McGrath79fbda52004-04-14 02:45:55 +00001704
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001705 return exited;
1706}
1707
1708static int
Denys Vlasenko59432db2009-01-26 19:09:35 +00001709printwaitn(struct tcb *tcp, int n, int bitness)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001710{
1711 int status;
Dmitry V. Levind9a4b0a2011-02-23 00:27:12 +00001712#ifdef SUNOS4
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001713 int exited = 0;
Dmitry V. Levind9a4b0a2011-02-23 00:27:12 +00001714#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001715
1716 if (entering(tcp)) {
Denys Vlasenkoe740fd32009-04-16 12:06:16 +00001717#ifdef LINUX
1718 /* On Linux, kernel-side pid_t is typedef'ed to int
1719 * on all arches. Also, glibc-2.8 truncates wait3 and wait4
Denys Vlasenko59432db2009-01-26 19:09:35 +00001720 * pid argument to int on 64bit arches, producing,
1721 * for example, wait4(4294967295, ...) instead of -1
Denys Vlasenkoe740fd32009-04-16 12:06:16 +00001722 * in strace. We have to use int here, not long.
1723 */
1724 int pid = tcp->u_arg[0];
1725 tprintf("%d, ", pid);
1726#else
Roland McGrath5b63d962008-07-18 02:16:47 +00001727 long pid = tcp->u_arg[0];
Denys Vlasenkoa7949742011-08-21 17:26:55 +02001728# if SUPPORTED_PERSONALITIES > 1
1729 /* Sign-extend a 32-bit value when that's what it is. */
Roland McGrath5b63d962008-07-18 02:16:47 +00001730 if (personality_wordsize[current_personality] < sizeof pid)
1731 pid = (long) (int) pid;
Denys Vlasenkoa7949742011-08-21 17:26:55 +02001732# endif
Roland McGrath5b63d962008-07-18 02:16:47 +00001733 tprintf("%ld, ", pid);
Denys Vlasenkoe740fd32009-04-16 12:06:16 +00001734#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001735 } else {
1736 /* status */
1737 if (!tcp->u_arg[1])
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001738 tprints("NULL");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001739 else if (syserror(tcp) || tcp->u_rval == 0)
1740 tprintf("%#lx", tcp->u_arg[1]);
1741 else if (umove(tcp, tcp->u_arg[1], &status) < 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001742 tprints("[?]");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001743 else
Dmitry V. Levind9a4b0a2011-02-23 00:27:12 +00001744#ifdef SUNOS4
1745 exited =
1746#endif
1747 printstatus(status);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001748 /* options */
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001749 tprints(", ");
Roland McGrathb2dee132005-06-01 19:02:36 +00001750 printflags(wait4_options, tcp->u_arg[2], "W???");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001751 if (n == 4) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001752 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001753 /* usage */
1754 if (!tcp->u_arg[3])
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001755 tprints("NULL");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001756#ifdef LINUX
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +00001757 else if (tcp->u_rval > 0) {
Denys Vlasenko59432db2009-01-26 19:09:35 +00001758#ifdef ALPHA
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +00001759 if (bitness)
1760 printrusage32(tcp, tcp->u_arg[3]);
1761 else
1762#endif
1763 printrusage(tcp, tcp->u_arg[3]);
1764 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001765#endif /* LINUX */
1766#ifdef SUNOS4
1767 else if (tcp->u_rval > 0 && exited)
1768 printrusage(tcp, tcp->u_arg[3]);
1769#endif /* SUNOS4 */
1770 else
1771 tprintf("%#lx", tcp->u_arg[3]);
1772 }
1773 }
1774 return 0;
1775}
1776
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001777#ifdef SVR4
1778
1779int
Denys Vlasenko12014262011-05-30 14:00:14 +02001780sys_wait(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001781{
1782 if (exiting(tcp)) {
1783 /* The library wrapper stuffs this into the user variable. */
1784 if (!syserror(tcp))
1785 printstatus(getrval2(tcp));
1786 }
1787 return 0;
1788}
1789
1790#endif /* SVR4 */
1791
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001792#ifdef FREEBSD
1793int
Denys Vlasenko12014262011-05-30 14:00:14 +02001794sys_wait(struct tcb *tcp)
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001795{
1796 int status;
Roland McGrath5a223472002-12-15 23:58:26 +00001797
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001798 if (exiting(tcp)) {
1799 if (!syserror(tcp)) {
1800 if (umove(tcp, tcp->u_arg[0], &status) < 0)
1801 tprintf("%#lx", tcp->u_arg[0]);
1802 else
1803 printstatus(status);
1804 }
1805 }
1806 return 0;
1807}
1808#endif
1809
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001810int
Denys Vlasenko12014262011-05-30 14:00:14 +02001811sys_waitpid(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001812{
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +00001813 return printwaitn(tcp, 3, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001814}
1815
1816int
Denys Vlasenko12014262011-05-30 14:00:14 +02001817sys_wait4(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001818{
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +00001819 return printwaitn(tcp, 4, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001820}
1821
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +00001822#ifdef ALPHA
1823int
Denys Vlasenko12014262011-05-30 14:00:14 +02001824sys_osf_wait4(struct tcb *tcp)
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +00001825{
1826 return printwaitn(tcp, 4, 1);
1827}
1828#endif
1829
Roland McGrathc74c0b72004-09-01 19:39:46 +00001830#if defined SVR4 || defined LINUX
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001831
Roland McGrathd9f816f2004-09-04 03:39:20 +00001832static const struct xlat waitid_types[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001833 { P_PID, "P_PID" },
Roland McGrathc74c0b72004-09-01 19:39:46 +00001834#ifdef P_PPID
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001835 { P_PPID, "P_PPID" },
Roland McGrathc74c0b72004-09-01 19:39:46 +00001836#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001837 { P_PGID, "P_PGID" },
Roland McGrathc74c0b72004-09-01 19:39:46 +00001838#ifdef P_SID
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001839 { P_SID, "P_SID" },
Roland McGrathc74c0b72004-09-01 19:39:46 +00001840#endif
1841#ifdef P_CID
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001842 { P_CID, "P_CID" },
Roland McGrathc74c0b72004-09-01 19:39:46 +00001843#endif
1844#ifdef P_UID
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001845 { P_UID, "P_UID" },
Roland McGrathc74c0b72004-09-01 19:39:46 +00001846#endif
1847#ifdef P_GID
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001848 { P_GID, "P_GID" },
Roland McGrathc74c0b72004-09-01 19:39:46 +00001849#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001850 { P_ALL, "P_ALL" },
1851#ifdef P_LWPID
1852 { P_LWPID, "P_LWPID" },
1853#endif
1854 { 0, NULL },
1855};
1856
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001857int
Dmitry V. Levin3eb94912010-09-09 23:08:59 +00001858sys_waitid(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001859{
1860 siginfo_t si;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001861
1862 if (entering(tcp)) {
1863 printxval(waitid_types, tcp->u_arg[0], "P_???");
1864 tprintf(", %ld, ", tcp->u_arg[1]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001865 }
1866 else {
1867 /* siginfo */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001868 if (!tcp->u_arg[2])
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001869 tprints("NULL");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001870 else if (syserror(tcp))
1871 tprintf("%#lx", tcp->u_arg[2]);
1872 else if (umove(tcp, tcp->u_arg[2], &si) < 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001873 tprints("{???}");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001874 else
Denys Vlasenkof535b542009-01-13 18:30:55 +00001875 printsiginfo(&si, verbose(tcp));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001876 /* options */
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001877 tprints(", ");
Roland McGrathb2dee132005-06-01 19:02:36 +00001878 printflags(wait4_options, tcp->u_arg[3], "W???");
Roland McGrath39426a32004-10-06 22:02:59 +00001879 if (tcp->u_nargs > 4) {
1880 /* usage */
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001881 tprints(", ");
Roland McGrath39426a32004-10-06 22:02:59 +00001882 if (!tcp->u_arg[4])
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001883 tprints("NULL");
Roland McGrath39426a32004-10-06 22:02:59 +00001884 else if (tcp->u_error)
1885 tprintf("%#lx", tcp->u_arg[4]);
1886 else
1887 printrusage(tcp, tcp->u_arg[4]);
1888 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001889 }
1890 return 0;
1891}
1892
Roland McGrathc74c0b72004-09-01 19:39:46 +00001893#endif /* SVR4 or LINUX */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001894
1895int
Denys Vlasenko12014262011-05-30 14:00:14 +02001896sys_alarm(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001897{
1898 if (entering(tcp))
1899 tprintf("%lu", tcp->u_arg[0]);
1900 return 0;
1901}
1902
1903int
Denys Vlasenko12014262011-05-30 14:00:14 +02001904sys_uname(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001905{
1906 struct utsname uname;
1907
1908 if (exiting(tcp)) {
1909 if (syserror(tcp) || !verbose(tcp))
1910 tprintf("%#lx", tcp->u_arg[0]);
1911 else if (umove(tcp, tcp->u_arg[0], &uname) < 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001912 tprints("{...}");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001913 else if (!abbrev(tcp)) {
1914
1915 tprintf("{sysname=\"%s\", nodename=\"%s\", ",
1916 uname.sysname, uname.nodename);
1917 tprintf("release=\"%s\", version=\"%s\", ",
1918 uname.release, uname.version);
1919 tprintf("machine=\"%s\"", uname.machine);
1920#ifdef LINUX
1921#ifndef __GLIBC__
1922 tprintf(", domainname=\"%s\"", uname.domainname);
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00001923#endif
1924#endif
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001925 tprints("}");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001926 }
1927 else
1928 tprintf("{sys=\"%s\", node=\"%s\", ...}",
1929 uname.sysname, uname.nodename);
1930 }
1931 return 0;
1932}
1933
1934#ifndef SVR4
1935
Roland McGratheb9e2e82009-06-02 16:49:22 -07001936static const struct xlat ptrace_cmds[] = {
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00001937# ifndef FREEBSD
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001938 { PTRACE_TRACEME, "PTRACE_TRACEME" },
Denys Vlasenko61526c62011-08-25 10:21:13 +02001939 { PTRACE_PEEKTEXT, "PTRACE_PEEKTEXT" },
1940 { PTRACE_PEEKDATA, "PTRACE_PEEKDATA" },
1941 { PTRACE_PEEKUSER, "PTRACE_PEEKUSER" },
1942 { PTRACE_POKETEXT, "PTRACE_POKETEXT" },
1943 { PTRACE_POKEDATA, "PTRACE_POKEDATA" },
1944 { PTRACE_POKEUSER, "PTRACE_POKEUSER" },
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001945 { PTRACE_CONT, "PTRACE_CONT" },
1946 { PTRACE_KILL, "PTRACE_KILL" },
1947 { PTRACE_SINGLESTEP, "PTRACE_SINGLESTEP" },
1948 { PTRACE_ATTACH, "PTRACE_ATTACH" },
1949 { PTRACE_DETACH, "PTRACE_DETACH" },
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00001950# ifdef PTRACE_GETREGS
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001951 { PTRACE_GETREGS, "PTRACE_GETREGS" },
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00001952# endif
1953# ifdef PTRACE_SETREGS
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001954 { PTRACE_SETREGS, "PTRACE_SETREGS" },
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00001955# endif
1956# ifdef PTRACE_GETFPREGS
Denys Vlasenko61526c62011-08-25 10:21:13 +02001957 { PTRACE_GETFPREGS, "PTRACE_GETFPREGS" },
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00001958# endif
1959# ifdef PTRACE_SETFPREGS
Denys Vlasenko61526c62011-08-25 10:21:13 +02001960 { PTRACE_SETFPREGS, "PTRACE_SETFPREGS" },
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00001961# endif
1962# ifdef PTRACE_GETFPXREGS
Denys Vlasenko61526c62011-08-25 10:21:13 +02001963 { PTRACE_GETFPXREGS, "PTRACE_GETFPXREGS" },
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00001964# endif
1965# ifdef PTRACE_SETFPXREGS
Denys Vlasenko61526c62011-08-25 10:21:13 +02001966 { PTRACE_SETFPXREGS, "PTRACE_SETFPXREGS" },
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00001967# endif
1968# ifdef PTRACE_GETVRREGS
Denys Vlasenko61526c62011-08-25 10:21:13 +02001969 { PTRACE_GETVRREGS, "PTRACE_GETVRREGS" },
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00001970# endif
1971# ifdef PTRACE_SETVRREGS
Denys Vlasenko61526c62011-08-25 10:21:13 +02001972 { PTRACE_SETVRREGS, "PTRACE_SETVRREGS" },
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00001973# endif
1974# ifdef PTRACE_SETOPTIONS
Denys Vlasenko61526c62011-08-25 10:21:13 +02001975 { PTRACE_SETOPTIONS, "PTRACE_SETOPTIONS" },
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00001976# endif
1977# ifdef PTRACE_GETEVENTMSG
Denys Vlasenko61526c62011-08-25 10:21:13 +02001978 { PTRACE_GETEVENTMSG, "PTRACE_GETEVENTMSG" },
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00001979# endif
1980# ifdef PTRACE_GETSIGINFO
Denys Vlasenko61526c62011-08-25 10:21:13 +02001981 { PTRACE_GETSIGINFO, "PTRACE_GETSIGINFO" },
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00001982# endif
1983# ifdef PTRACE_SETSIGINFO
Denys Vlasenko61526c62011-08-25 10:21:13 +02001984 { PTRACE_SETSIGINFO, "PTRACE_SETSIGINFO" },
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00001985# endif
Dmitry V. Levinbb668a52011-03-14 21:58:59 +00001986# ifdef PTRACE_GETREGSET
Denys Vlasenko61526c62011-08-25 10:21:13 +02001987 { PTRACE_GETREGSET, "PTRACE_GETREGSET" },
Dmitry V. Levinbb668a52011-03-14 21:58:59 +00001988# endif
1989# ifdef PTRACE_SETREGSET
Denys Vlasenko61526c62011-08-25 10:21:13 +02001990 { PTRACE_SETREGSET, "PTRACE_SETREGSET" },
Dmitry V. Levinbb668a52011-03-14 21:58:59 +00001991# endif
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00001992# ifdef PTRACE_SET_SYSCALL
Denys Vlasenko61526c62011-08-25 10:21:13 +02001993 { PTRACE_SET_SYSCALL, "PTRACE_SET_SYSCALL" },
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00001994# endif
Denys Vlasenko31fa8a22012-01-29 02:01:44 +01001995# ifdef PTRACE_SEIZE
1996 { PTRACE_SEIZE, "PTRACE_SEIZE" },
1997# endif
1998# ifdef PTRACE_INTERRUPT
1999 { PTRACE_INTERRUPT, "PTRACE_INTERRUPT" },
2000# endif
2001# ifdef PTRACE_LISTEN
2002 { PTRACE_LISTEN, "PTRACE_LISTEN" },
2003# endif
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00002004# ifdef SUNOS4
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002005 { PTRACE_READDATA, "PTRACE_READDATA" },
2006 { PTRACE_WRITEDATA, "PTRACE_WRITEDATA" },
2007 { PTRACE_READTEXT, "PTRACE_READTEXT" },
2008 { PTRACE_WRITETEXT, "PTRACE_WRITETEXT" },
2009 { PTRACE_GETFPAREGS, "PTRACE_GETFPAREGS" },
2010 { PTRACE_SETFPAREGS, "PTRACE_SETFPAREGS" },
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00002011# ifdef SPARC
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002012 { PTRACE_GETWINDOW, "PTRACE_GETWINDOW" },
2013 { PTRACE_SETWINDOW, "PTRACE_SETWINDOW" },
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00002014# else /* !SPARC */
2015 { PTRACE_22, "PTRACE_22" },
2016 { PTRACE_23, "PTRACE_3" },
2017# endif /* !SPARC */
2018# endif /* SUNOS4 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002019 { PTRACE_SYSCALL, "PTRACE_SYSCALL" },
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00002020# ifdef SUNOS4
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002021 { PTRACE_DUMPCORE, "PTRACE_DUMPCORE" },
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00002022# ifdef I386
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002023 { PTRACE_SETWRBKPT, "PTRACE_SETWRBKPT" },
2024 { PTRACE_SETACBKPT, "PTRACE_SETACBKPT" },
2025 { PTRACE_CLRDR7, "PTRACE_CLRDR7" },
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00002026# else /* !I386 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002027 { PTRACE_26, "PTRACE_26" },
2028 { PTRACE_27, "PTRACE_27" },
2029 { PTRACE_28, "PTRACE_28" },
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00002030# endif /* !I386 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002031 { PTRACE_GETUCODE, "PTRACE_GETUCODE" },
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00002032# endif /* SUNOS4 */
Denys Vlasenkof535b542009-01-13 18:30:55 +00002033
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00002034# else /* FREEBSD */
Denys Vlasenkof535b542009-01-13 18:30:55 +00002035
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00002036 { PT_TRACE_ME, "PT_TRACE_ME" },
2037 { PT_READ_I, "PT_READ_I" },
2038 { PT_READ_D, "PT_READ_D" },
2039 { PT_WRITE_I, "PT_WRITE_I" },
2040 { PT_WRITE_D, "PT_WRITE_D" },
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00002041# ifdef PT_READ_U
John Hughesa2278142001-09-28 16:21:30 +00002042 { PT_READ_U, "PT_READ_U" },
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00002043# endif
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00002044 { PT_CONTINUE, "PT_CONTINUE" },
2045 { PT_KILL, "PT_KILL" },
2046 { PT_STEP, "PT_STEP" },
2047 { PT_ATTACH, "PT_ATTACH" },
2048 { PT_DETACH, "PT_DETACH" },
2049 { PT_GETREGS, "PT_GETREGS" },
2050 { PT_SETREGS, "PT_SETREGS" },
2051 { PT_GETFPREGS, "PT_GETFPREGS" },
2052 { PT_SETFPREGS, "PT_SETFPREGS" },
2053 { PT_GETDBREGS, "PT_GETDBREGS" },
2054 { PT_SETDBREGS, "PT_SETDBREGS" },
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00002055# endif /* FREEBSD */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002056 { 0, NULL },
2057};
2058
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00002059# ifndef FREEBSD
2060# ifdef PTRACE_SETOPTIONS
Denys Vlasenkof535b542009-01-13 18:30:55 +00002061static const struct xlat ptrace_setoptions_flags[] = {
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00002062# ifdef PTRACE_O_TRACESYSGOOD
Denys Vlasenkof535b542009-01-13 18:30:55 +00002063 { PTRACE_O_TRACESYSGOOD,"PTRACE_O_TRACESYSGOOD" },
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00002064# endif
2065# ifdef PTRACE_O_TRACEFORK
Denys Vlasenkof535b542009-01-13 18:30:55 +00002066 { PTRACE_O_TRACEFORK, "PTRACE_O_TRACEFORK" },
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00002067# endif
2068# ifdef PTRACE_O_TRACEVFORK
Denys Vlasenkof535b542009-01-13 18:30:55 +00002069 { PTRACE_O_TRACEVFORK, "PTRACE_O_TRACEVFORK" },
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00002070# endif
2071# ifdef PTRACE_O_TRACECLONE
Denys Vlasenkof535b542009-01-13 18:30:55 +00002072 { PTRACE_O_TRACECLONE, "PTRACE_O_TRACECLONE" },
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00002073# endif
2074# ifdef PTRACE_O_TRACEEXEC
Denys Vlasenkof535b542009-01-13 18:30:55 +00002075 { PTRACE_O_TRACEEXEC, "PTRACE_O_TRACEEXEC" },
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00002076# endif
2077# ifdef PTRACE_O_TRACEVFORKDONE
Denys Vlasenkof535b542009-01-13 18:30:55 +00002078 { PTRACE_O_TRACEVFORKDONE,"PTRACE_O_TRACEVFORKDONE"},
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00002079# endif
2080# ifdef PTRACE_O_TRACEEXIT
Denys Vlasenkof535b542009-01-13 18:30:55 +00002081 { PTRACE_O_TRACEEXIT, "PTRACE_O_TRACEEXIT" },
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00002082# endif
Denys Vlasenkof535b542009-01-13 18:30:55 +00002083 { 0, NULL },
2084};
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00002085# endif /* PTRACE_SETOPTIONS */
2086# endif /* !FREEBSD */
Denys Vlasenkof535b542009-01-13 18:30:55 +00002087
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00002088# ifndef FREEBSD
Roland McGrathd9f816f2004-09-04 03:39:20 +00002089const struct xlat struct_user_offsets[] = {
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00002090# ifdef LINUX
2091# if defined(S390) || defined(S390X)
Wichert Akkerman4dc8a2a1999-12-23 14:20:14 +00002092 { PT_PSWMASK, "psw_mask" },
2093 { PT_PSWADDR, "psw_addr" },
2094 { PT_GPR0, "gpr0" },
2095 { PT_GPR1, "gpr1" },
2096 { PT_GPR2, "gpr2" },
2097 { PT_GPR3, "gpr3" },
2098 { PT_GPR4, "gpr4" },
2099 { PT_GPR5, "gpr5" },
2100 { PT_GPR6, "gpr6" },
2101 { PT_GPR7, "gpr7" },
2102 { PT_GPR8, "gpr8" },
2103 { PT_GPR9, "gpr9" },
2104 { PT_GPR10, "gpr10" },
2105 { PT_GPR11, "gpr11" },
2106 { PT_GPR12, "gpr12" },
2107 { PT_GPR13, "gpr13" },
2108 { PT_GPR14, "gpr14" },
2109 { PT_GPR15, "gpr15" },
2110 { PT_ACR0, "acr0" },
2111 { PT_ACR1, "acr1" },
2112 { PT_ACR2, "acr2" },
2113 { PT_ACR3, "acr3" },
2114 { PT_ACR4, "acr4" },
2115 { PT_ACR5, "acr5" },
2116 { PT_ACR6, "acr6" },
2117 { PT_ACR7, "acr7" },
2118 { PT_ACR8, "acr8" },
2119 { PT_ACR9, "acr9" },
2120 { PT_ACR10, "acr10" },
2121 { PT_ACR11, "acr11" },
2122 { PT_ACR12, "acr12" },
2123 { PT_ACR13, "acr13" },
2124 { PT_ACR14, "acr14" },
2125 { PT_ACR15, "acr15" },
2126 { PT_ORIGGPR2, "orig_gpr2" },
2127 { PT_FPC, "fpc" },
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00002128# if defined(S390)
Wichert Akkerman4dc8a2a1999-12-23 14:20:14 +00002129 { PT_FPR0_HI, "fpr0.hi" },
2130 { PT_FPR0_LO, "fpr0.lo" },
2131 { PT_FPR1_HI, "fpr1.hi" },
2132 { PT_FPR1_LO, "fpr1.lo" },
2133 { PT_FPR2_HI, "fpr2.hi" },
2134 { PT_FPR2_LO, "fpr2.lo" },
2135 { PT_FPR3_HI, "fpr3.hi" },
2136 { PT_FPR3_LO, "fpr3.lo" },
2137 { PT_FPR4_HI, "fpr4.hi" },
2138 { PT_FPR4_LO, "fpr4.lo" },
2139 { PT_FPR5_HI, "fpr5.hi" },
2140 { PT_FPR5_LO, "fpr5.lo" },
2141 { PT_FPR6_HI, "fpr6.hi" },
2142 { PT_FPR6_LO, "fpr6.lo" },
2143 { PT_FPR7_HI, "fpr7.hi" },
2144 { PT_FPR7_LO, "fpr7.lo" },
2145 { PT_FPR8_HI, "fpr8.hi" },
2146 { PT_FPR8_LO, "fpr8.lo" },
2147 { PT_FPR9_HI, "fpr9.hi" },
2148 { PT_FPR9_LO, "fpr9.lo" },
2149 { PT_FPR10_HI, "fpr10.hi" },
2150 { PT_FPR10_LO, "fpr10.lo" },
2151 { PT_FPR11_HI, "fpr11.hi" },
2152 { PT_FPR11_LO, "fpr11.lo" },
2153 { PT_FPR12_HI, "fpr12.hi" },
2154 { PT_FPR12_LO, "fpr12.lo" },
2155 { PT_FPR13_HI, "fpr13.hi" },
2156 { PT_FPR13_LO, "fpr13.lo" },
2157 { PT_FPR14_HI, "fpr14.hi" },
2158 { PT_FPR14_LO, "fpr14.lo" },
2159 { PT_FPR15_HI, "fpr15.hi" },
2160 { PT_FPR15_LO, "fpr15.lo" },
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00002161# endif
2162# if defined(S390X)
Michal Ludvig10a88d02002-10-07 14:31:00 +00002163 { PT_FPR0, "fpr0" },
2164 { PT_FPR1, "fpr1" },
2165 { PT_FPR2, "fpr2" },
2166 { PT_FPR3, "fpr3" },
2167 { PT_FPR4, "fpr4" },
2168 { PT_FPR5, "fpr5" },
2169 { PT_FPR6, "fpr6" },
2170 { PT_FPR7, "fpr7" },
2171 { PT_FPR8, "fpr8" },
2172 { PT_FPR9, "fpr9" },
2173 { PT_FPR10, "fpr10" },
2174 { PT_FPR11, "fpr11" },
2175 { PT_FPR12, "fpr12" },
2176 { PT_FPR13, "fpr13" },
2177 { PT_FPR14, "fpr14" },
2178 { PT_FPR15, "fpr15" },
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00002179# endif
Wichert Akkerman4dc8a2a1999-12-23 14:20:14 +00002180 { PT_CR_9, "cr9" },
2181 { PT_CR_10, "cr10" },
2182 { PT_CR_11, "cr11" },
Denys Vlasenkob63256e2011-06-07 12:13:24 +02002183 { PT_IEEE_IP, "ieee_exception_ip" },
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00002184# elif defined(SPARC)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002185 /* XXX No support for these offsets yet. */
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00002186# elif defined(HPPA)
Wichert Akkermanc1652e22001-03-27 12:17:16 +00002187 /* XXX No support for these offsets yet. */
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00002188# elif defined(POWERPC)
2189# ifndef PT_ORIG_R3
2190# define PT_ORIG_R3 34
2191# endif
2192# define REGSIZE (sizeof(unsigned long))
Roland McGratheb285352003-01-14 09:59:00 +00002193 { REGSIZE*PT_R0, "r0" },
2194 { REGSIZE*PT_R1, "r1" },
2195 { REGSIZE*PT_R2, "r2" },
2196 { REGSIZE*PT_R3, "r3" },
2197 { REGSIZE*PT_R4, "r4" },
2198 { REGSIZE*PT_R5, "r5" },
2199 { REGSIZE*PT_R6, "r6" },
2200 { REGSIZE*PT_R7, "r7" },
2201 { REGSIZE*PT_R8, "r8" },
2202 { REGSIZE*PT_R9, "r9" },
2203 { REGSIZE*PT_R10, "r10" },
2204 { REGSIZE*PT_R11, "r11" },
2205 { REGSIZE*PT_R12, "r12" },
2206 { REGSIZE*PT_R13, "r13" },
2207 { REGSIZE*PT_R14, "r14" },
2208 { REGSIZE*PT_R15, "r15" },
2209 { REGSIZE*PT_R16, "r16" },
2210 { REGSIZE*PT_R17, "r17" },
2211 { REGSIZE*PT_R18, "r18" },
2212 { REGSIZE*PT_R19, "r19" },
2213 { REGSIZE*PT_R20, "r20" },
2214 { REGSIZE*PT_R21, "r21" },
2215 { REGSIZE*PT_R22, "r22" },
2216 { REGSIZE*PT_R23, "r23" },
2217 { REGSIZE*PT_R24, "r24" },
2218 { REGSIZE*PT_R25, "r25" },
2219 { REGSIZE*PT_R26, "r26" },
2220 { REGSIZE*PT_R27, "r27" },
2221 { REGSIZE*PT_R28, "r28" },
2222 { REGSIZE*PT_R29, "r29" },
2223 { REGSIZE*PT_R30, "r30" },
2224 { REGSIZE*PT_R31, "r31" },
2225 { REGSIZE*PT_NIP, "NIP" },
2226 { REGSIZE*PT_MSR, "MSR" },
2227 { REGSIZE*PT_ORIG_R3, "ORIG_R3" },
2228 { REGSIZE*PT_CTR, "CTR" },
2229 { REGSIZE*PT_LNK, "LNK" },
2230 { REGSIZE*PT_XER, "XER" },
2231 { REGSIZE*PT_CCR, "CCR" },
2232 { REGSIZE*PT_FPR0, "FPR0" },
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00002233# undef REGSIZE
2234# elif defined(ALPHA)
Wichert Akkerman4dc8a2a1999-12-23 14:20:14 +00002235 { 0, "r0" },
2236 { 1, "r1" },
2237 { 2, "r2" },
2238 { 3, "r3" },
2239 { 4, "r4" },
2240 { 5, "r5" },
2241 { 6, "r6" },
2242 { 7, "r7" },
2243 { 8, "r8" },
2244 { 9, "r9" },
2245 { 10, "r10" },
2246 { 11, "r11" },
2247 { 12, "r12" },
2248 { 13, "r13" },
2249 { 14, "r14" },
2250 { 15, "r15" },
2251 { 16, "r16" },
2252 { 17, "r17" },
2253 { 18, "r18" },
2254 { 19, "r19" },
2255 { 20, "r20" },
2256 { 21, "r21" },
2257 { 22, "r22" },
2258 { 23, "r23" },
2259 { 24, "r24" },
2260 { 25, "r25" },
2261 { 26, "r26" },
2262 { 27, "r27" },
2263 { 28, "r28" },
2264 { 29, "gp" },
2265 { 30, "fp" },
2266 { 31, "zero" },
2267 { 32, "fp0" },
2268 { 33, "fp" },
2269 { 34, "fp2" },
2270 { 35, "fp3" },
2271 { 36, "fp4" },
2272 { 37, "fp5" },
2273 { 38, "fp6" },
2274 { 39, "fp7" },
2275 { 40, "fp8" },
2276 { 41, "fp9" },
2277 { 42, "fp10" },
2278 { 43, "fp11" },
2279 { 44, "fp12" },
2280 { 45, "fp13" },
2281 { 46, "fp14" },
2282 { 47, "fp15" },
2283 { 48, "fp16" },
2284 { 49, "fp17" },
2285 { 50, "fp18" },
2286 { 51, "fp19" },
2287 { 52, "fp20" },
2288 { 53, "fp21" },
2289 { 54, "fp22" },
2290 { 55, "fp23" },
2291 { 56, "fp24" },
2292 { 57, "fp25" },
2293 { 58, "fp26" },
2294 { 59, "fp27" },
2295 { 60, "fp28" },
2296 { 61, "fp29" },
2297 { 62, "fp30" },
2298 { 63, "fp31" },
2299 { 64, "pc" },
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00002300# elif defined(IA64)
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +00002301 { PT_F32, "f32" }, { PT_F33, "f33" }, { PT_F34, "f34" },
2302 { PT_F35, "f35" }, { PT_F36, "f36" }, { PT_F37, "f37" },
2303 { PT_F38, "f38" }, { PT_F39, "f39" }, { PT_F40, "f40" },
2304 { PT_F41, "f41" }, { PT_F42, "f42" }, { PT_F43, "f43" },
2305 { PT_F44, "f44" }, { PT_F45, "f45" }, { PT_F46, "f46" },
2306 { PT_F47, "f47" }, { PT_F48, "f48" }, { PT_F49, "f49" },
2307 { PT_F50, "f50" }, { PT_F51, "f51" }, { PT_F52, "f52" },
2308 { PT_F53, "f53" }, { PT_F54, "f54" }, { PT_F55, "f55" },
2309 { PT_F56, "f56" }, { PT_F57, "f57" }, { PT_F58, "f58" },
2310 { PT_F59, "f59" }, { PT_F60, "f60" }, { PT_F61, "f61" },
2311 { PT_F62, "f62" }, { PT_F63, "f63" }, { PT_F64, "f64" },
2312 { PT_F65, "f65" }, { PT_F66, "f66" }, { PT_F67, "f67" },
2313 { PT_F68, "f68" }, { PT_F69, "f69" }, { PT_F70, "f70" },
2314 { PT_F71, "f71" }, { PT_F72, "f72" }, { PT_F73, "f73" },
2315 { PT_F74, "f74" }, { PT_F75, "f75" }, { PT_F76, "f76" },
2316 { PT_F77, "f77" }, { PT_F78, "f78" }, { PT_F79, "f79" },
2317 { PT_F80, "f80" }, { PT_F81, "f81" }, { PT_F82, "f82" },
2318 { PT_F83, "f83" }, { PT_F84, "f84" }, { PT_F85, "f85" },
2319 { PT_F86, "f86" }, { PT_F87, "f87" }, { PT_F88, "f88" },
2320 { PT_F89, "f89" }, { PT_F90, "f90" }, { PT_F91, "f91" },
2321 { PT_F92, "f92" }, { PT_F93, "f93" }, { PT_F94, "f94" },
2322 { PT_F95, "f95" }, { PT_F96, "f96" }, { PT_F97, "f97" },
2323 { PT_F98, "f98" }, { PT_F99, "f99" }, { PT_F100, "f100" },
2324 { PT_F101, "f101" }, { PT_F102, "f102" }, { PT_F103, "f103" },
2325 { PT_F104, "f104" }, { PT_F105, "f105" }, { PT_F106, "f106" },
2326 { PT_F107, "f107" }, { PT_F108, "f108" }, { PT_F109, "f109" },
2327 { PT_F110, "f110" }, { PT_F111, "f111" }, { PT_F112, "f112" },
2328 { PT_F113, "f113" }, { PT_F114, "f114" }, { PT_F115, "f115" },
2329 { PT_F116, "f116" }, { PT_F117, "f117" }, { PT_F118, "f118" },
2330 { PT_F119, "f119" }, { PT_F120, "f120" }, { PT_F121, "f121" },
2331 { PT_F122, "f122" }, { PT_F123, "f123" }, { PT_F124, "f124" },
2332 { PT_F125, "f125" }, { PT_F126, "f126" }, { PT_F127, "f127" },
2333 /* switch stack: */
2334 { PT_F2, "f2" }, { PT_F3, "f3" }, { PT_F4, "f4" },
2335 { PT_F5, "f5" }, { PT_F10, "f10" }, { PT_F11, "f11" },
2336 { PT_F12, "f12" }, { PT_F13, "f13" }, { PT_F14, "f14" },
2337 { PT_F15, "f15" }, { PT_F16, "f16" }, { PT_F17, "f17" },
2338 { PT_F18, "f18" }, { PT_F19, "f19" }, { PT_F20, "f20" },
2339 { PT_F21, "f21" }, { PT_F22, "f22" }, { PT_F23, "f23" },
2340 { PT_F24, "f24" }, { PT_F25, "f25" }, { PT_F26, "f26" },
2341 { PT_F27, "f27" }, { PT_F28, "f28" }, { PT_F29, "f29" },
2342 { PT_F30, "f30" }, { PT_F31, "f31" }, { PT_R4, "r4" },
2343 { PT_R5, "r5" }, { PT_R6, "r6" }, { PT_R7, "r7" },
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +00002344 { PT_B1, "b1" }, { PT_B2, "b2" }, { PT_B3, "b3" },
2345 { PT_B4, "b4" }, { PT_B5, "b5" },
Roland McGrathca4e10c2004-01-13 10:13:20 +00002346 { PT_AR_EC, "ar.ec" }, { PT_AR_LC, "ar.lc" },
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +00002347 /* pt_regs */
Roland McGrathca4e10c2004-01-13 10:13:20 +00002348 { PT_CR_IPSR, "psr" }, { PT_CR_IIP, "ip" },
2349 { PT_CFM, "cfm" }, { PT_AR_UNAT, "ar.unat" },
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +00002350 { PT_AR_PFS, "ar.pfs" }, { PT_AR_RSC, "ar.rsc" },
2351 { PT_AR_RNAT, "ar.rnat" }, { PT_AR_BSPSTORE, "ar.bspstore" },
2352 { PT_PR, "pr" }, { PT_B6, "b6" }, { PT_AR_BSP, "ar.bsp" },
2353 { PT_R1, "r1" }, { PT_R2, "r2" }, { PT_R3, "r3" },
2354 { PT_R12, "r12" }, { PT_R13, "r13" }, { PT_R14, "r14" },
2355 { PT_R15, "r15" }, { PT_R8, "r8" }, { PT_R9, "r9" },
2356 { PT_R10, "r10" }, { PT_R11, "r11" }, { PT_R16, "r16" },
2357 { PT_R17, "r17" }, { PT_R18, "r18" }, { PT_R19, "r19" },
2358 { PT_R20, "r20" }, { PT_R21, "r21" }, { PT_R22, "r22" },
2359 { PT_R23, "r23" }, { PT_R24, "r24" }, { PT_R25, "r25" },
2360 { PT_R26, "r26" }, { PT_R27, "r27" }, { PT_R28, "r28" },
2361 { PT_R29, "r29" }, { PT_R30, "r30" }, { PT_R31, "r31" },
2362 { PT_AR_CCV, "ar.ccv" }, { PT_AR_FPSR, "ar.fpsr" },
2363 { PT_B0, "b0" }, { PT_B7, "b7" }, { PT_F6, "f6" },
2364 { PT_F7, "f7" }, { PT_F8, "f8" }, { PT_F9, "f9" },
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00002365# ifdef PT_AR_CSD
Roland McGrathfb1bc072004-03-01 21:29:24 +00002366 { PT_AR_CSD, "ar.csd" },
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00002367# endif
2368# ifdef PT_AR_SSD
Roland McGrathfb1bc072004-03-01 21:29:24 +00002369 { PT_AR_SSD, "ar.ssd" },
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00002370# endif
Roland McGrathca4e10c2004-01-13 10:13:20 +00002371 { PT_DBR, "dbr" }, { PT_IBR, "ibr" }, { PT_PMD, "pmd" },
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00002372# elif defined(I386)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002373 { 4*EBX, "4*EBX" },
2374 { 4*ECX, "4*ECX" },
2375 { 4*EDX, "4*EDX" },
2376 { 4*ESI, "4*ESI" },
2377 { 4*EDI, "4*EDI" },
2378 { 4*EBP, "4*EBP" },
2379 { 4*EAX, "4*EAX" },
2380 { 4*DS, "4*DS" },
2381 { 4*ES, "4*ES" },
2382 { 4*FS, "4*FS" },
2383 { 4*GS, "4*GS" },
2384 { 4*ORIG_EAX, "4*ORIG_EAX" },
2385 { 4*EIP, "4*EIP" },
2386 { 4*CS, "4*CS" },
2387 { 4*EFL, "4*EFL" },
2388 { 4*UESP, "4*UESP" },
2389 { 4*SS, "4*SS" },
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00002390# elif defined(X86_64)
Denys Vlasenkob63256e2011-06-07 12:13:24 +02002391 { 8*R15, "8*R15" },
2392 { 8*R14, "8*R14" },
2393 { 8*R13, "8*R13" },
2394 { 8*R12, "8*R12" },
Michal Ludvig0e035502002-09-23 15:41:01 +00002395 { 8*RBP, "8*RBP" },
Roland McGratha4f9f2d2005-06-07 23:21:20 +00002396 { 8*RBX, "8*RBX" },
2397 { 8*R11, "8*R11" },
2398 { 8*R10, "8*R10" },
2399 { 8*R9, "8*R9" },
2400 { 8*R8, "8*R8" },
Michal Ludvig0e035502002-09-23 15:41:01 +00002401 { 8*RAX, "8*RAX" },
Roland McGratha4f9f2d2005-06-07 23:21:20 +00002402 { 8*RCX, "8*RCX" },
2403 { 8*RDX, "8*RDX" },
2404 { 8*RSI, "8*RSI" },
2405 { 8*RDI, "8*RDI" },
Roland McGratha4f9f2d2005-06-07 23:21:20 +00002406 { 8*ORIG_RAX, "8*ORIG_RAX" },
Michal Ludvig0e035502002-09-23 15:41:01 +00002407 { 8*RIP, "8*RIP" },
2408 { 8*CS, "8*CS" },
2409 { 8*EFLAGS, "8*EFL" },
Roland McGratha4f9f2d2005-06-07 23:21:20 +00002410 { 8*RSP, "8*RSP" },
Michal Ludvig0e035502002-09-23 15:41:01 +00002411 { 8*SS, "8*SS" },
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00002412# elif defined(M68K)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002413 { 4*PT_D1, "4*PT_D1" },
2414 { 4*PT_D2, "4*PT_D2" },
2415 { 4*PT_D3, "4*PT_D3" },
2416 { 4*PT_D4, "4*PT_D4" },
2417 { 4*PT_D5, "4*PT_D5" },
2418 { 4*PT_D6, "4*PT_D6" },
2419 { 4*PT_D7, "4*PT_D7" },
2420 { 4*PT_A0, "4*PT_A0" },
2421 { 4*PT_A1, "4*PT_A1" },
2422 { 4*PT_A2, "4*PT_A2" },
2423 { 4*PT_A3, "4*PT_A3" },
2424 { 4*PT_A4, "4*PT_A4" },
2425 { 4*PT_A5, "4*PT_A5" },
2426 { 4*PT_A6, "4*PT_A6" },
2427 { 4*PT_D0, "4*PT_D0" },
2428 { 4*PT_USP, "4*PT_USP" },
2429 { 4*PT_ORIG_D0, "4*PT_ORIG_D0" },
2430 { 4*PT_SR, "4*PT_SR" },
2431 { 4*PT_PC, "4*PT_PC" },
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00002432# elif defined(SH)
Denys Vlasenkob63256e2011-06-07 12:13:24 +02002433 { 4*REG_REG0, "4*REG_REG0" },
2434 { 4*(REG_REG0+1), "4*REG_REG1" },
2435 { 4*(REG_REG0+2), "4*REG_REG2" },
2436 { 4*(REG_REG0+3), "4*REG_REG3" },
2437 { 4*(REG_REG0+4), "4*REG_REG4" },
2438 { 4*(REG_REG0+5), "4*REG_REG5" },
2439 { 4*(REG_REG0+6), "4*REG_REG6" },
2440 { 4*(REG_REG0+7), "4*REG_REG7" },
2441 { 4*(REG_REG0+8), "4*REG_REG8" },
2442 { 4*(REG_REG0+9), "4*REG_REG9" },
2443 { 4*(REG_REG0+10), "4*REG_REG10" },
2444 { 4*(REG_REG0+11), "4*REG_REG11" },
2445 { 4*(REG_REG0+12), "4*REG_REG12" },
2446 { 4*(REG_REG0+13), "4*REG_REG13" },
2447 { 4*(REG_REG0+14), "4*REG_REG14" },
2448 { 4*REG_REG15, "4*REG_REG15" },
2449 { 4*REG_PC, "4*REG_PC" },
2450 { 4*REG_PR, "4*REG_PR" },
2451 { 4*REG_SR, "4*REG_SR" },
2452 { 4*REG_GBR, "4*REG_GBR" },
2453 { 4*REG_MACH, "4*REG_MACH" },
2454 { 4*REG_MACL, "4*REG_MACL" },
2455 { 4*REG_SYSCALL, "4*REG_SYSCALL" },
2456 { 4*REG_FPUL, "4*REG_FPUL" },
2457 { 4*REG_FPREG0, "4*REG_FPREG0" },
2458 { 4*(REG_FPREG0+1), "4*REG_FPREG1" },
2459 { 4*(REG_FPREG0+2), "4*REG_FPREG2" },
2460 { 4*(REG_FPREG0+3), "4*REG_FPREG3" },
2461 { 4*(REG_FPREG0+4), "4*REG_FPREG4" },
2462 { 4*(REG_FPREG0+5), "4*REG_FPREG5" },
2463 { 4*(REG_FPREG0+6), "4*REG_FPREG6" },
2464 { 4*(REG_FPREG0+7), "4*REG_FPREG7" },
2465 { 4*(REG_FPREG0+8), "4*REG_FPREG8" },
2466 { 4*(REG_FPREG0+9), "4*REG_FPREG9" },
2467 { 4*(REG_FPREG0+10), "4*REG_FPREG10" },
2468 { 4*(REG_FPREG0+11), "4*REG_FPREG11" },
2469 { 4*(REG_FPREG0+12), "4*REG_FPREG12" },
2470 { 4*(REG_FPREG0+13), "4*REG_FPREG13" },
2471 { 4*(REG_FPREG0+14), "4*REG_FPREG14" },
2472 { 4*REG_FPREG15, "4*REG_FPREG15" },
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00002473# ifdef REG_XDREG0
Denys Vlasenkob63256e2011-06-07 12:13:24 +02002474 { 4*REG_XDREG0, "4*REG_XDREG0" },
2475 { 4*(REG_XDREG0+2), "4*REG_XDREG2" },
2476 { 4*(REG_XDREG0+4), "4*REG_XDREG4" },
2477 { 4*(REG_XDREG0+6), "4*REG_XDREG6" },
2478 { 4*(REG_XDREG0+8), "4*REG_XDREG8" },
2479 { 4*(REG_XDREG0+10), "4*REG_XDREG10" },
2480 { 4*(REG_XDREG0+12), "4*REG_XDREG12" },
2481 { 4*REG_XDREG14, "4*REG_XDREG14" },
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00002482# endif
Denys Vlasenkob63256e2011-06-07 12:13:24 +02002483 { 4*REG_FPSCR, "4*REG_FPSCR" },
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00002484# elif defined(SH64)
Denys Vlasenkob63256e2011-06-07 12:13:24 +02002485 { 0, "PC(L)" },
2486 { 4, "PC(U)" },
2487 { 8, "SR(L)" },
2488 { 12, "SR(U)" },
2489 { 16, "syscall no.(L)" },
2490 { 20, "syscall_no.(U)" },
2491 { 24, "R0(L)" },
2492 { 28, "R0(U)" },
2493 { 32, "R1(L)" },
2494 { 36, "R1(U)" },
2495 { 40, "R2(L)" },
2496 { 44, "R2(U)" },
2497 { 48, "R3(L)" },
2498 { 52, "R3(U)" },
2499 { 56, "R4(L)" },
2500 { 60, "R4(U)" },
2501 { 64, "R5(L)" },
2502 { 68, "R5(U)" },
2503 { 72, "R6(L)" },
2504 { 76, "R6(U)" },
2505 { 80, "R7(L)" },
2506 { 84, "R7(U)" },
2507 { 88, "R8(L)" },
2508 { 92, "R8(U)" },
2509 { 96, "R9(L)" },
2510 { 100, "R9(U)" },
2511 { 104, "R10(L)" },
2512 { 108, "R10(U)" },
2513 { 112, "R11(L)" },
2514 { 116, "R11(U)" },
2515 { 120, "R12(L)" },
2516 { 124, "R12(U)" },
2517 { 128, "R13(L)" },
2518 { 132, "R13(U)" },
2519 { 136, "R14(L)" },
2520 { 140, "R14(U)" },
2521 { 144, "R15(L)" },
2522 { 148, "R15(U)" },
2523 { 152, "R16(L)" },
2524 { 156, "R16(U)" },
2525 { 160, "R17(L)" },
2526 { 164, "R17(U)" },
2527 { 168, "R18(L)" },
2528 { 172, "R18(U)" },
2529 { 176, "R19(L)" },
2530 { 180, "R19(U)" },
2531 { 184, "R20(L)" },
2532 { 188, "R20(U)" },
2533 { 192, "R21(L)" },
2534 { 196, "R21(U)" },
2535 { 200, "R22(L)" },
2536 { 204, "R22(U)" },
2537 { 208, "R23(L)" },
2538 { 212, "R23(U)" },
2539 { 216, "R24(L)" },
2540 { 220, "R24(U)" },
2541 { 224, "R25(L)" },
2542 { 228, "R25(U)" },
2543 { 232, "R26(L)" },
2544 { 236, "R26(U)" },
2545 { 240, "R27(L)" },
2546 { 244, "R27(U)" },
2547 { 248, "R28(L)" },
2548 { 252, "R28(U)" },
2549 { 256, "R29(L)" },
2550 { 260, "R29(U)" },
2551 { 264, "R30(L)" },
2552 { 268, "R30(U)" },
2553 { 272, "R31(L)" },
2554 { 276, "R31(U)" },
2555 { 280, "R32(L)" },
2556 { 284, "R32(U)" },
2557 { 288, "R33(L)" },
2558 { 292, "R33(U)" },
2559 { 296, "R34(L)" },
2560 { 300, "R34(U)" },
2561 { 304, "R35(L)" },
2562 { 308, "R35(U)" },
2563 { 312, "R36(L)" },
2564 { 316, "R36(U)" },
2565 { 320, "R37(L)" },
2566 { 324, "R37(U)" },
2567 { 328, "R38(L)" },
2568 { 332, "R38(U)" },
2569 { 336, "R39(L)" },
2570 { 340, "R39(U)" },
2571 { 344, "R40(L)" },
2572 { 348, "R40(U)" },
2573 { 352, "R41(L)" },
2574 { 356, "R41(U)" },
2575 { 360, "R42(L)" },
2576 { 364, "R42(U)" },
2577 { 368, "R43(L)" },
2578 { 372, "R43(U)" },
2579 { 376, "R44(L)" },
2580 { 380, "R44(U)" },
2581 { 384, "R45(L)" },
2582 { 388, "R45(U)" },
2583 { 392, "R46(L)" },
2584 { 396, "R46(U)" },
2585 { 400, "R47(L)" },
2586 { 404, "R47(U)" },
2587 { 408, "R48(L)" },
2588 { 412, "R48(U)" },
2589 { 416, "R49(L)" },
2590 { 420, "R49(U)" },
2591 { 424, "R50(L)" },
2592 { 428, "R50(U)" },
2593 { 432, "R51(L)" },
2594 { 436, "R51(U)" },
2595 { 440, "R52(L)" },
2596 { 444, "R52(U)" },
2597 { 448, "R53(L)" },
2598 { 452, "R53(U)" },
2599 { 456, "R54(L)" },
2600 { 460, "R54(U)" },
2601 { 464, "R55(L)" },
2602 { 468, "R55(U)" },
2603 { 472, "R56(L)" },
2604 { 476, "R56(U)" },
2605 { 480, "R57(L)" },
2606 { 484, "R57(U)" },
2607 { 488, "R58(L)" },
2608 { 492, "R58(U)" },
2609 { 496, "R59(L)" },
2610 { 500, "R59(U)" },
2611 { 504, "R60(L)" },
2612 { 508, "R60(U)" },
2613 { 512, "R61(L)" },
2614 { 516, "R61(U)" },
2615 { 520, "R62(L)" },
2616 { 524, "R62(U)" },
2617 { 528, "TR0(L)" },
2618 { 532, "TR0(U)" },
2619 { 536, "TR1(L)" },
2620 { 540, "TR1(U)" },
2621 { 544, "TR2(L)" },
2622 { 548, "TR2(U)" },
2623 { 552, "TR3(L)" },
2624 { 556, "TR3(U)" },
2625 { 560, "TR4(L)" },
2626 { 564, "TR4(U)" },
2627 { 568, "TR5(L)" },
2628 { 572, "TR5(U)" },
2629 { 576, "TR6(L)" },
2630 { 580, "TR6(U)" },
2631 { 584, "TR7(L)" },
2632 { 588, "TR7(U)" },
Denys Vlasenkoadedb512008-12-30 18:47:55 +00002633 /* This entry is in case pt_regs contains dregs (depends on
2634 the kernel build options). */
Denys Vlasenkob63256e2011-06-07 12:13:24 +02002635 { uoff(regs), "offsetof(struct user, regs)" },
2636 { uoff(fpu), "offsetof(struct user, fpu)" },
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00002637# elif defined(ARM)
Roland McGrath0f87c492003-06-03 23:29:04 +00002638 { uoff(regs.ARM_r0), "r0" },
2639 { uoff(regs.ARM_r1), "r1" },
2640 { uoff(regs.ARM_r2), "r2" },
2641 { uoff(regs.ARM_r3), "r3" },
2642 { uoff(regs.ARM_r4), "r4" },
2643 { uoff(regs.ARM_r5), "r5" },
2644 { uoff(regs.ARM_r6), "r6" },
2645 { uoff(regs.ARM_r7), "r7" },
2646 { uoff(regs.ARM_r8), "r8" },
2647 { uoff(regs.ARM_r9), "r9" },
2648 { uoff(regs.ARM_r10), "r10" },
2649 { uoff(regs.ARM_fp), "fp" },
2650 { uoff(regs.ARM_ip), "ip" },
2651 { uoff(regs.ARM_sp), "sp" },
2652 { uoff(regs.ARM_lr), "lr" },
2653 { uoff(regs.ARM_pc), "pc" },
2654 { uoff(regs.ARM_cpsr), "cpsr" },
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +00002655# elif defined(AVR32)
2656 { uoff(regs.sr), "sr" },
2657 { uoff(regs.pc), "pc" },
2658 { uoff(regs.lr), "lr" },
2659 { uoff(regs.sp), "sp" },
2660 { uoff(regs.r12), "r12" },
2661 { uoff(regs.r11), "r11" },
2662 { uoff(regs.r10), "r10" },
2663 { uoff(regs.r9), "r9" },
2664 { uoff(regs.r8), "r8" },
2665 { uoff(regs.r7), "r7" },
2666 { uoff(regs.r6), "r6" },
2667 { uoff(regs.r5), "r5" },
2668 { uoff(regs.r4), "r4" },
2669 { uoff(regs.r3), "r3" },
2670 { uoff(regs.r2), "r2" },
2671 { uoff(regs.r1), "r1" },
2672 { uoff(regs.r0), "r0" },
2673 { uoff(regs.r12_orig), "orig_r12" },
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00002674# elif defined(MIPS)
Roland McGrath542c2c62008-05-20 01:11:56 +00002675 { 0, "r0" },
2676 { 1, "r1" },
2677 { 2, "r2" },
2678 { 3, "r3" },
2679 { 4, "r4" },
2680 { 5, "r5" },
2681 { 6, "r6" },
2682 { 7, "r7" },
2683 { 8, "r8" },
2684 { 9, "r9" },
2685 { 10, "r10" },
2686 { 11, "r11" },
2687 { 12, "r12" },
2688 { 13, "r13" },
2689 { 14, "r14" },
2690 { 15, "r15" },
2691 { 16, "r16" },
2692 { 17, "r17" },
2693 { 18, "r18" },
2694 { 19, "r19" },
2695 { 20, "r20" },
2696 { 21, "r21" },
2697 { 22, "r22" },
2698 { 23, "r23" },
2699 { 24, "r24" },
2700 { 25, "r25" },
2701 { 26, "r26" },
2702 { 27, "r27" },
2703 { 28, "r28" },
2704 { 29, "r29" },
2705 { 30, "r30" },
2706 { 31, "r31" },
2707 { 32, "f0" },
2708 { 33, "f1" },
2709 { 34, "f2" },
2710 { 35, "f3" },
2711 { 36, "f4" },
2712 { 37, "f5" },
2713 { 38, "f6" },
2714 { 39, "f7" },
2715 { 40, "f8" },
2716 { 41, "f9" },
2717 { 42, "f10" },
2718 { 43, "f11" },
2719 { 44, "f12" },
2720 { 45, "f13" },
2721 { 46, "f14" },
2722 { 47, "f15" },
2723 { 48, "f16" },
2724 { 49, "f17" },
2725 { 50, "f18" },
2726 { 51, "f19" },
2727 { 52, "f20" },
2728 { 53, "f21" },
2729 { 54, "f22" },
2730 { 55, "f23" },
2731 { 56, "f24" },
2732 { 57, "f25" },
2733 { 58, "f26" },
2734 { 59, "f27" },
2735 { 60, "f28" },
2736 { 61, "f29" },
2737 { 62, "f30" },
2738 { 63, "f31" },
2739 { 64, "pc" },
2740 { 65, "cause" },
2741 { 66, "badvaddr" },
2742 { 67, "mmhi" },
2743 { 68, "mmlo" },
2744 { 69, "fpcsr" },
2745 { 70, "fpeir" },
Chris Metcalfc8c66982009-12-28 10:00:15 -05002746# elif defined(TILE)
2747 { PTREGS_OFFSET_REG(0), "r0" },
2748 { PTREGS_OFFSET_REG(1), "r1" },
2749 { PTREGS_OFFSET_REG(2), "r2" },
2750 { PTREGS_OFFSET_REG(3), "r3" },
2751 { PTREGS_OFFSET_REG(4), "r4" },
2752 { PTREGS_OFFSET_REG(5), "r5" },
2753 { PTREGS_OFFSET_REG(6), "r6" },
2754 { PTREGS_OFFSET_REG(7), "r7" },
2755 { PTREGS_OFFSET_REG(8), "r8" },
2756 { PTREGS_OFFSET_REG(9), "r9" },
2757 { PTREGS_OFFSET_REG(10), "r10" },
2758 { PTREGS_OFFSET_REG(11), "r11" },
2759 { PTREGS_OFFSET_REG(12), "r12" },
2760 { PTREGS_OFFSET_REG(13), "r13" },
2761 { PTREGS_OFFSET_REG(14), "r14" },
2762 { PTREGS_OFFSET_REG(15), "r15" },
2763 { PTREGS_OFFSET_REG(16), "r16" },
2764 { PTREGS_OFFSET_REG(17), "r17" },
2765 { PTREGS_OFFSET_REG(18), "r18" },
2766 { PTREGS_OFFSET_REG(19), "r19" },
2767 { PTREGS_OFFSET_REG(20), "r20" },
2768 { PTREGS_OFFSET_REG(21), "r21" },
2769 { PTREGS_OFFSET_REG(22), "r22" },
2770 { PTREGS_OFFSET_REG(23), "r23" },
2771 { PTREGS_OFFSET_REG(24), "r24" },
2772 { PTREGS_OFFSET_REG(25), "r25" },
2773 { PTREGS_OFFSET_REG(26), "r26" },
2774 { PTREGS_OFFSET_REG(27), "r27" },
2775 { PTREGS_OFFSET_REG(28), "r28" },
2776 { PTREGS_OFFSET_REG(29), "r29" },
2777 { PTREGS_OFFSET_REG(30), "r30" },
2778 { PTREGS_OFFSET_REG(31), "r31" },
2779 { PTREGS_OFFSET_REG(32), "r32" },
2780 { PTREGS_OFFSET_REG(33), "r33" },
2781 { PTREGS_OFFSET_REG(34), "r34" },
2782 { PTREGS_OFFSET_REG(35), "r35" },
2783 { PTREGS_OFFSET_REG(36), "r36" },
2784 { PTREGS_OFFSET_REG(37), "r37" },
2785 { PTREGS_OFFSET_REG(38), "r38" },
2786 { PTREGS_OFFSET_REG(39), "r39" },
2787 { PTREGS_OFFSET_REG(40), "r40" },
2788 { PTREGS_OFFSET_REG(41), "r41" },
2789 { PTREGS_OFFSET_REG(42), "r42" },
2790 { PTREGS_OFFSET_REG(43), "r43" },
2791 { PTREGS_OFFSET_REG(44), "r44" },
2792 { PTREGS_OFFSET_REG(45), "r45" },
2793 { PTREGS_OFFSET_REG(46), "r46" },
2794 { PTREGS_OFFSET_REG(47), "r47" },
2795 { PTREGS_OFFSET_REG(48), "r48" },
2796 { PTREGS_OFFSET_REG(49), "r49" },
2797 { PTREGS_OFFSET_REG(50), "r50" },
2798 { PTREGS_OFFSET_REG(51), "r51" },
2799 { PTREGS_OFFSET_REG(52), "r52" },
2800 { PTREGS_OFFSET_TP, "tp" },
2801 { PTREGS_OFFSET_SP, "sp" },
2802 { PTREGS_OFFSET_LR, "lr" },
2803 { PTREGS_OFFSET_PC, "pc" },
2804 { PTREGS_OFFSET_EX1, "ex1" },
2805 { PTREGS_OFFSET_FAULTNUM, "faultnum" },
2806 { PTREGS_OFFSET_ORIG_R0, "orig_r0" },
2807 { PTREGS_OFFSET_FLAGS, "flags" },
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00002808# endif
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00002809# ifdef CRISV10
2810 { 4*PT_FRAMETYPE, "4*PT_FRAMETYPE" },
2811 { 4*PT_ORIG_R10, "4*PT_ORIG_R10" },
2812 { 4*PT_R13, "4*PT_R13" },
2813 { 4*PT_R12, "4*PT_R12" },
2814 { 4*PT_R11, "4*PT_R11" },
2815 { 4*PT_R10, "4*PT_R10" },
2816 { 4*PT_R9, "4*PT_R9" },
2817 { 4*PT_R8, "4*PT_R8" },
2818 { 4*PT_R7, "4*PT_R7" },
2819 { 4*PT_R6, "4*PT_R6" },
2820 { 4*PT_R5, "4*PT_R5" },
2821 { 4*PT_R4, "4*PT_R4" },
2822 { 4*PT_R3, "4*PT_R3" },
2823 { 4*PT_R2, "4*PT_R2" },
2824 { 4*PT_R1, "4*PT_R1" },
2825 { 4*PT_R0, "4*PT_R0" },
2826 { 4*PT_MOF, "4*PT_MOF" },
2827 { 4*PT_DCCR, "4*PT_DCCR" },
2828 { 4*PT_SRP, "4*PT_SRP" },
2829 { 4*PT_IRP, "4*PT_IRP" },
2830 { 4*PT_CSRINSTR, "4*PT_CSRINSTR" },
2831 { 4*PT_CSRADDR, "4*PT_CSRADDR" },
2832 { 4*PT_CSRDATA, "4*PT_CSRDATA" },
2833 { 4*PT_USP, "4*PT_USP" },
2834# endif
2835# ifdef CRISV32
2836 { 4*PT_ORIG_R10, "4*PT_ORIG_R10" },
2837 { 4*PT_R0, "4*PT_R0" },
2838 { 4*PT_R1, "4*PT_R1" },
2839 { 4*PT_R2, "4*PT_R2" },
2840 { 4*PT_R3, "4*PT_R3" },
2841 { 4*PT_R4, "4*PT_R4" },
2842 { 4*PT_R5, "4*PT_R5" },
2843 { 4*PT_R6, "4*PT_R6" },
2844 { 4*PT_R7, "4*PT_R7" },
2845 { 4*PT_R8, "4*PT_R8" },
2846 { 4*PT_R9, "4*PT_R9" },
2847 { 4*PT_R10, "4*PT_R10" },
2848 { 4*PT_R11, "4*PT_R11" },
2849 { 4*PT_R12, "4*PT_R12" },
2850 { 4*PT_R13, "4*PT_R13" },
2851 { 4*PT_ACR, "4*PT_ACR" },
2852 { 4*PT_SRS, "4*PT_SRS" },
2853 { 4*PT_MOF, "4*PT_MOF" },
2854 { 4*PT_SPC, "4*PT_SPC" },
2855 { 4*PT_CCS, "4*PT_CCS" },
2856 { 4*PT_SRP, "4*PT_SRP" },
2857 { 4*PT_ERP, "4*PT_ERP" },
2858 { 4*PT_EXS, "4*PT_EXS" },
2859 { 4*PT_EDA, "4*PT_EDA" },
2860 { 4*PT_USP, "4*PT_USP" },
2861 { 4*PT_PPC, "4*PT_PPC" },
2862 { 4*PT_BP_CTRL, "4*PT_BP_CTRL" },
2863 { 4*PT_BP+4, "4*PT_BP+4" },
2864 { 4*PT_BP+8, "4*PT_BP+8" },
2865 { 4*PT_BP+12, "4*PT_BP+12" },
2866 { 4*PT_BP+16, "4*PT_BP+16" },
2867 { 4*PT_BP+20, "4*PT_BP+20" },
2868 { 4*PT_BP+24, "4*PT_BP+24" },
2869 { 4*PT_BP+28, "4*PT_BP+28" },
2870 { 4*PT_BP+32, "4*PT_BP+32" },
2871 { 4*PT_BP+36, "4*PT_BP+36" },
2872 { 4*PT_BP+40, "4*PT_BP+40" },
2873 { 4*PT_BP+44, "4*PT_BP+44" },
2874 { 4*PT_BP+48, "4*PT_BP+48" },
2875 { 4*PT_BP+52, "4*PT_BP+52" },
2876 { 4*PT_BP+56, "4*PT_BP+56" },
2877# endif
Edgar E. Iglesias939caba2010-07-06 14:21:07 +02002878# ifdef MICROBLAZE
2879 { PT_GPR(0), "r0" },
2880 { PT_GPR(1), "r1" },
2881 { PT_GPR(2), "r2" },
2882 { PT_GPR(3), "r3" },
2883 { PT_GPR(4), "r4" },
2884 { PT_GPR(5), "r5" },
2885 { PT_GPR(6), "r6" },
2886 { PT_GPR(7), "r7" },
2887 { PT_GPR(8), "r8" },
2888 { PT_GPR(9), "r9" },
2889 { PT_GPR(10), "r10" },
2890 { PT_GPR(11), "r11" },
2891 { PT_GPR(12), "r12" },
2892 { PT_GPR(13), "r13" },
2893 { PT_GPR(14), "r14" },
2894 { PT_GPR(15), "r15" },
2895 { PT_GPR(16), "r16" },
2896 { PT_GPR(17), "r17" },
2897 { PT_GPR(18), "r18" },
2898 { PT_GPR(19), "r19" },
2899 { PT_GPR(20), "r20" },
2900 { PT_GPR(21), "r21" },
2901 { PT_GPR(22), "r22" },
2902 { PT_GPR(23), "r23" },
2903 { PT_GPR(24), "r24" },
2904 { PT_GPR(25), "r25" },
2905 { PT_GPR(26), "r26" },
2906 { PT_GPR(27), "r27" },
2907 { PT_GPR(28), "r28" },
2908 { PT_GPR(29), "r29" },
2909 { PT_GPR(30), "r30" },
2910 { PT_GPR(31), "r31" },
Denys Vlasenkob63256e2011-06-07 12:13:24 +02002911 { PT_PC, "rpc", },
2912 { PT_MSR, "rmsr", },
Edgar E. Iglesias939caba2010-07-06 14:21:07 +02002913 { PT_EAR, "rear", },
2914 { PT_ESR, "resr", },
2915 { PT_FSR, "rfsr", },
Denys Vlasenkob63256e2011-06-07 12:13:24 +02002916 { PT_KERNEL_MODE, "kernel_mode", },
Edgar E. Iglesias939caba2010-07-06 14:21:07 +02002917# endif
Roland McGrath542c2c62008-05-20 01:11:56 +00002918
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00002919# if !defined(SPARC) && !defined(HPPA) && !defined(POWERPC) \
2920 && !defined(ALPHA) && !defined(IA64) \
Edgar E. Iglesias939caba2010-07-06 14:21:07 +02002921 && !defined(CRISV10) && !defined(CRISV32) && !defined(MICROBLAZE)
Chris Metcalfc8c66982009-12-28 10:00:15 -05002922# if !defined(S390) && !defined(S390X) && !defined(MIPS) && !defined(SPARC64) && !defined(AVR32) && !defined(BFIN) && !defined(TILE)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002923 { uoff(u_fpvalid), "offsetof(struct user, u_fpvalid)" },
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00002924# endif
2925# if defined(I386) || defined(X86_64)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002926 { uoff(i387), "offsetof(struct user, i387)" },
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00002927# endif
2928# if defined(M68K)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002929 { uoff(m68kfp), "offsetof(struct user, m68kfp)" },
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00002930# endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002931 { uoff(u_tsize), "offsetof(struct user, u_tsize)" },
2932 { uoff(u_dsize), "offsetof(struct user, u_dsize)" },
2933 { uoff(u_ssize), "offsetof(struct user, u_ssize)" },
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00002934# if !defined(SPARC64)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002935 { uoff(start_code), "offsetof(struct user, start_code)" },
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00002936# endif
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +00002937# if defined(AVR32) || defined(SH64)
Roland McGrathe1e584b2003-06-02 19:18:58 +00002938 { uoff(start_data), "offsetof(struct user, start_data)" },
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00002939# endif
2940# if !defined(SPARC64)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002941 { uoff(start_stack), "offsetof(struct user, start_stack)" },
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00002942# endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002943 { uoff(signal), "offsetof(struct user, signal)" },
Chris Metcalfc8c66982009-12-28 10:00:15 -05002944# if !defined(AVR32) && !defined(S390) && !defined(S390X) && !defined(MIPS) && !defined(SH) && !defined(SH64) && !defined(SPARC64) && !defined(TILE)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002945 { uoff(reserved), "offsetof(struct user, reserved)" },
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00002946# endif
2947# if !defined(SPARC64)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002948 { uoff(u_ar0), "offsetof(struct user, u_ar0)" },
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00002949# endif
Chris Metcalfc8c66982009-12-28 10:00:15 -05002950# if !defined(ARM) && !defined(AVR32) && !defined(MIPS) && !defined(S390) && !defined(S390X) && !defined(SPARC64) && !defined(BFIN) && !defined(TILE)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002951 { uoff(u_fpstate), "offsetof(struct user, u_fpstate)" },
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00002952# endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002953 { uoff(magic), "offsetof(struct user, magic)" },
2954 { uoff(u_comm), "offsetof(struct user, u_comm)" },
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00002955# if defined(I386) || defined(X86_64)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002956 { uoff(u_debugreg), "offsetof(struct user, u_debugreg)" },
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00002957# endif
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00002958# endif /* !defined(many arches) */
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00002959
2960# endif /* LINUX */
2961
2962# ifdef SUNOS4
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002963 { uoff(u_pcb), "offsetof(struct user, u_pcb)" },
2964 { uoff(u_procp), "offsetof(struct user, u_procp)" },
2965 { uoff(u_ar0), "offsetof(struct user, u_ar0)" },
2966 { uoff(u_comm[0]), "offsetof(struct user, u_comm[0])" },
2967 { uoff(u_arg[0]), "offsetof(struct user, u_arg[0])" },
2968 { uoff(u_ap), "offsetof(struct user, u_ap)" },
2969 { uoff(u_qsave), "offsetof(struct user, u_qsave)" },
2970 { uoff(u_rval1), "offsetof(struct user, u_rval1)" },
2971 { uoff(u_rval2), "offsetof(struct user, u_rval2)" },
2972 { uoff(u_error), "offsetof(struct user, u_error)" },
2973 { uoff(u_eosys), "offsetof(struct user, u_eosys)" },
2974 { uoff(u_ssave), "offsetof(struct user, u_ssave)" },
2975 { uoff(u_signal[0]), "offsetof(struct user, u_signal)" },
2976 { uoff(u_sigmask[0]), "offsetof(struct user, u_sigmask)" },
2977 { uoff(u_sigonstack), "offsetof(struct user, u_sigonstack)" },
2978 { uoff(u_sigintr), "offsetof(struct user, u_sigintr)" },
2979 { uoff(u_sigreset), "offsetof(struct user, u_sigreset)" },
2980 { uoff(u_oldmask), "offsetof(struct user, u_oldmask)" },
2981 { uoff(u_code), "offsetof(struct user, u_code)" },
2982 { uoff(u_addr), "offsetof(struct user, u_addr)" },
2983 { uoff(u_sigstack), "offsetof(struct user, u_sigstack)" },
2984 { uoff(u_ofile), "offsetof(struct user, u_ofile)" },
2985 { uoff(u_pofile), "offsetof(struct user, u_pofile)" },
2986 { uoff(u_ofile_arr[0]), "offsetof(struct user, u_ofile_arr[0])" },
2987 { uoff(u_pofile_arr[0]),"offsetof(struct user, u_pofile_arr[0])"},
2988 { uoff(u_lastfile), "offsetof(struct user, u_lastfile)" },
2989 { uoff(u_cwd), "offsetof(struct user, u_cwd)" },
2990 { uoff(u_cdir), "offsetof(struct user, u_cdir)" },
2991 { uoff(u_rdir), "offsetof(struct user, u_rdir)" },
2992 { uoff(u_cmask), "offsetof(struct user, u_cmask)" },
2993 { uoff(u_ru), "offsetof(struct user, u_ru)" },
2994 { uoff(u_cru), "offsetof(struct user, u_cru)" },
2995 { uoff(u_timer[0]), "offsetof(struct user, u_timer[0])" },
2996 { uoff(u_XXX[0]), "offsetof(struct user, u_XXX[0])" },
2997 { uoff(u_ioch), "offsetof(struct user, u_ioch)" },
2998 { uoff(u_start), "offsetof(struct user, u_start)" },
2999 { uoff(u_acflag), "offsetof(struct user, u_acflag)" },
3000 { uoff(u_prof.pr_base), "offsetof(struct user, u_prof.pr_base)" },
3001 { uoff(u_prof.pr_size), "offsetof(struct user, u_prof.pr_size)" },
3002 { uoff(u_prof.pr_off), "offsetof(struct user, u_prof.pr_off)" },
3003 { uoff(u_prof.pr_scale),"offsetof(struct user, u_prof.pr_scale)"},
3004 { uoff(u_rlimit[0]), "offsetof(struct user, u_rlimit)" },
3005 { uoff(u_exdata.Ux_A), "offsetof(struct user, u_exdata.Ux_A)" },
3006 { uoff(u_exdata.ux_shell[0]),"offsetof(struct user, u_exdata.ux_shell[0])"},
3007 { uoff(u_lofault), "offsetof(struct user, u_lofault)" },
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00003008# endif /* SUNOS4 */
3009# ifndef HPPA
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00003010 { sizeof(struct user), "sizeof(struct user)" },
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00003011# endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00003012 { 0, NULL },
3013};
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00003014# endif /* !FREEBSD */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00003015
3016int
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00003017sys_ptrace(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00003018{
Roland McGrathd9f816f2004-09-04 03:39:20 +00003019 const struct xlat *x;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00003020 long addr;
3021
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00003022 if (entering(tcp)) {
Roland McGrathbf621d42003-01-14 09:46:21 +00003023 printxval(ptrace_cmds, tcp->u_arg[0],
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00003024# ifndef FREEBSD
Roland McGrathbf621d42003-01-14 09:46:21 +00003025 "PTRACE_???"
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00003026# else
Roland McGrathbf621d42003-01-14 09:46:21 +00003027 "PT_???"
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00003028# endif
Roland McGrathbf621d42003-01-14 09:46:21 +00003029 );
3030 tprintf(", %lu, ", tcp->u_arg[1]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00003031 addr = tcp->u_arg[2];
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00003032# ifndef FREEBSD
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00003033 if (tcp->u_arg[0] == PTRACE_PEEKUSER
3034 || tcp->u_arg[0] == PTRACE_POKEUSER) {
3035 for (x = struct_user_offsets; x->str; x++) {
3036 if (x->val >= addr)
3037 break;
3038 }
3039 if (!x->str)
3040 tprintf("%#lx, ", addr);
3041 else if (x->val > addr && x != struct_user_offsets) {
3042 x--;
3043 tprintf("%s + %ld, ", x->str, addr - x->val);
3044 }
3045 else
3046 tprintf("%s, ", x->str);
3047 }
3048 else
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00003049# endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00003050 tprintf("%#lx, ", tcp->u_arg[2]);
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00003051# ifdef LINUX
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00003052 switch (tcp->u_arg[0]) {
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00003053# ifndef IA64
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00003054 case PTRACE_PEEKDATA:
3055 case PTRACE_PEEKTEXT:
3056 case PTRACE_PEEKUSER:
3057 break;
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00003058# endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00003059 case PTRACE_CONT:
3060 case PTRACE_SINGLESTEP:
3061 case PTRACE_SYSCALL:
3062 case PTRACE_DETACH:
3063 printsignal(tcp->u_arg[3]);
3064 break;
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00003065# ifdef PTRACE_SETOPTIONS
Denys Vlasenkof535b542009-01-13 18:30:55 +00003066 case PTRACE_SETOPTIONS:
3067 printflags(ptrace_setoptions_flags, tcp->u_arg[3], "PTRACE_O_???");
3068 break;
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00003069# endif
3070# ifdef PTRACE_SETSIGINFO
Denys Vlasenkof535b542009-01-13 18:30:55 +00003071 case PTRACE_SETSIGINFO: {
3072 siginfo_t si;
3073 if (!tcp->u_arg[3])
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02003074 tprints("NULL");
Denys Vlasenkof535b542009-01-13 18:30:55 +00003075 else if (syserror(tcp))
3076 tprintf("%#lx", tcp->u_arg[3]);
3077 else if (umove(tcp, tcp->u_arg[3], &si) < 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02003078 tprints("{???}");
Denys Vlasenkof535b542009-01-13 18:30:55 +00003079 else
3080 printsiginfo(&si, verbose(tcp));
3081 break;
3082 }
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00003083# endif
3084# ifdef PTRACE_GETSIGINFO
Denys Vlasenkof535b542009-01-13 18:30:55 +00003085 case PTRACE_GETSIGINFO:
3086 /* Don't print anything, do it at syscall return. */
3087 break;
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00003088# endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00003089 default:
3090 tprintf("%#lx", tcp->u_arg[3]);
3091 break;
3092 }
3093 } else {
3094 switch (tcp->u_arg[0]) {
3095 case PTRACE_PEEKDATA:
3096 case PTRACE_PEEKTEXT:
3097 case PTRACE_PEEKUSER:
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00003098# ifdef IA64
Roland McGrath1e868062007-11-19 22:11:45 +00003099 return RVAL_HEX;
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00003100# else
Roland McGratheb285352003-01-14 09:59:00 +00003101 printnum(tcp, tcp->u_arg[3], "%#lx");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00003102 break;
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00003103# endif
3104# ifdef PTRACE_GETSIGINFO
Denys Vlasenkof535b542009-01-13 18:30:55 +00003105 case PTRACE_GETSIGINFO: {
3106 siginfo_t si;
3107 if (!tcp->u_arg[3])
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02003108 tprints("NULL");
Denys Vlasenkof535b542009-01-13 18:30:55 +00003109 else if (syserror(tcp))
3110 tprintf("%#lx", tcp->u_arg[3]);
3111 else if (umove(tcp, tcp->u_arg[3], &si) < 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02003112 tprints("{???}");
Denys Vlasenkof535b542009-01-13 18:30:55 +00003113 else
3114 printsiginfo(&si, verbose(tcp));
3115 break;
3116 }
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00003117# endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00003118 }
3119 }
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00003120# endif /* LINUX */
3121# ifdef SUNOS4
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00003122 if (tcp->u_arg[0] == PTRACE_WRITEDATA ||
3123 tcp->u_arg[0] == PTRACE_WRITETEXT) {
3124 tprintf("%lu, ", tcp->u_arg[3]);
3125 printstr(tcp, tcp->u_arg[4], tcp->u_arg[3]);
3126 } else if (tcp->u_arg[0] != PTRACE_READDATA &&
3127 tcp->u_arg[0] != PTRACE_READTEXT) {
3128 tprintf("%#lx", tcp->u_arg[3]);
3129 }
3130 } else {
3131 if (tcp->u_arg[0] == PTRACE_READDATA ||
3132 tcp->u_arg[0] == PTRACE_READTEXT) {
3133 tprintf("%lu, ", tcp->u_arg[3]);
3134 printstr(tcp, tcp->u_arg[4], tcp->u_arg[3]);
3135 }
3136 }
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00003137# endif /* SUNOS4 */
3138# ifdef FREEBSD
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00003139 tprintf("%lu", tcp->u_arg[3]);
3140 }
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00003141# endif /* FREEBSD */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00003142 return 0;
3143}
3144
3145#endif /* !SVR4 */
Roland McGrath5a223472002-12-15 23:58:26 +00003146
3147#ifdef LINUX
Roland McGrath51942a92007-07-05 18:59:11 +00003148# ifndef FUTEX_CMP_REQUEUE
3149# define FUTEX_CMP_REQUEUE 4
3150# endif
3151# ifndef FUTEX_WAKE_OP
3152# define FUTEX_WAKE_OP 5
3153# endif
3154# ifndef FUTEX_LOCK_PI
3155# define FUTEX_LOCK_PI 6
3156# define FUTEX_UNLOCK_PI 7
3157# define FUTEX_TRYLOCK_PI 8
3158# endif
Roland McGrath1aeaf742008-07-18 01:27:39 +00003159# ifndef FUTEX_WAIT_BITSET
3160# define FUTEX_WAIT_BITSET 9
3161# endif
3162# ifndef FUTEX_WAKE_BITSET
3163# define FUTEX_WAKE_BITSET 10
Roland McGrath51942a92007-07-05 18:59:11 +00003164# endif
Andreas Schwab85f58322009-08-12 09:54:42 +02003165# ifndef FUTEX_WAIT_REQUEUE_PI
3166# define FUTEX_WAIT_REQUEUE_PI 11
3167# endif
3168# ifndef FUTEX_CMP_REQUEUE_PI
3169# define FUTEX_CMP_REQUEUE_PI 12
3170# endif
Roland McGrath51942a92007-07-05 18:59:11 +00003171# ifndef FUTEX_PRIVATE_FLAG
3172# define FUTEX_PRIVATE_FLAG 128
3173# endif
Andreas Schwab85f58322009-08-12 09:54:42 +02003174# ifndef FUTEX_CLOCK_REALTIME
3175# define FUTEX_CLOCK_REALTIME 256
3176# endif
Roland McGrathd9f816f2004-09-04 03:39:20 +00003177static const struct xlat futexops[] = {
Roland McGrath51942a92007-07-05 18:59:11 +00003178 { FUTEX_WAIT, "FUTEX_WAIT" },
3179 { FUTEX_WAKE, "FUTEX_WAKE" },
3180 { FUTEX_FD, "FUTEX_FD" },
3181 { FUTEX_REQUEUE, "FUTEX_REQUEUE" },
3182 { FUTEX_CMP_REQUEUE, "FUTEX_CMP_REQUEUE" },
3183 { FUTEX_WAKE_OP, "FUTEX_WAKE_OP" },
3184 { FUTEX_LOCK_PI, "FUTEX_LOCK_PI" },
3185 { FUTEX_UNLOCK_PI, "FUTEX_UNLOCK_PI" },
3186 { FUTEX_TRYLOCK_PI, "FUTEX_TRYLOCK_PI" },
Roland McGrath1aeaf742008-07-18 01:27:39 +00003187 { FUTEX_WAIT_BITSET, "FUTEX_WAIT_BITSET" },
3188 { FUTEX_WAKE_BITSET, "FUTEX_WAKE_BITSET" },
Andreas Schwab85f58322009-08-12 09:54:42 +02003189 { FUTEX_WAIT_REQUEUE_PI, "FUTEX_WAIT_REQUEUE_PI" },
3190 { FUTEX_CMP_REQUEUE_PI, "FUTEX_CMP_REQUEUE_PI" },
Roland McGrath51942a92007-07-05 18:59:11 +00003191 { FUTEX_WAIT|FUTEX_PRIVATE_FLAG, "FUTEX_WAIT_PRIVATE" },
3192 { FUTEX_WAKE|FUTEX_PRIVATE_FLAG, "FUTEX_WAKE_PRIVATE" },
3193 { FUTEX_FD|FUTEX_PRIVATE_FLAG, "FUTEX_FD_PRIVATE" },
3194 { FUTEX_REQUEUE|FUTEX_PRIVATE_FLAG, "FUTEX_REQUEUE_PRIVATE" },
3195 { FUTEX_CMP_REQUEUE|FUTEX_PRIVATE_FLAG, "FUTEX_CMP_REQUEUE_PRIVATE" },
3196 { FUTEX_WAKE_OP|FUTEX_PRIVATE_FLAG, "FUTEX_WAKE_OP_PRIVATE" },
3197 { FUTEX_LOCK_PI|FUTEX_PRIVATE_FLAG, "FUTEX_LOCK_PI_PRIVATE" },
3198 { FUTEX_UNLOCK_PI|FUTEX_PRIVATE_FLAG, "FUTEX_UNLOCK_PI_PRIVATE" },
3199 { FUTEX_TRYLOCK_PI|FUTEX_PRIVATE_FLAG, "FUTEX_TRYLOCK_PI_PRIVATE" },
Roland McGrath1aeaf742008-07-18 01:27:39 +00003200 { FUTEX_WAIT_BITSET|FUTEX_PRIVATE_FLAG, "FUTEX_WAIT_BITSET_PRIVATE" },
3201 { FUTEX_WAKE_BITSET|FUTEX_PRIVATE_FLAG, "FUTEX_WAKE_BITSET_PRIVATE" },
Andreas Schwab85f58322009-08-12 09:54:42 +02003202 { FUTEX_WAIT_REQUEUE_PI|FUTEX_PRIVATE_FLAG, "FUTEX_WAIT_REQUEUE_PI_PRIVATE" },
3203 { FUTEX_CMP_REQUEUE_PI|FUTEX_PRIVATE_FLAG, "FUTEX_CMP_REQUEUE_PI_PRIVATE" },
3204 { FUTEX_WAIT_BITSET|FUTEX_CLOCK_REALTIME, "FUTEX_WAIT_BITSET|FUTEX_CLOCK_REALTIME" },
3205 { FUTEX_WAIT_BITSET|FUTEX_PRIVATE_FLAG|FUTEX_CLOCK_REALTIME, "FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME" },
3206 { FUTEX_WAIT_REQUEUE_PI|FUTEX_CLOCK_REALTIME, "FUTEX_WAIT_REQUEUE_PI|FUTEX_CLOCK_REALTIME" },
3207 { FUTEX_WAIT_REQUEUE_PI|FUTEX_PRIVATE_FLAG|FUTEX_CLOCK_REALTIME, "FUTEX_WAIT_REQUEUE_PI_PRIVATE|FUTEX_CLOCK_REALTIME" },
Roland McGrath51942a92007-07-05 18:59:11 +00003208 { 0, NULL }
3209};
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00003210# ifndef FUTEX_OP_SET
3211# define FUTEX_OP_SET 0
3212# define FUTEX_OP_ADD 1
3213# define FUTEX_OP_OR 2
3214# define FUTEX_OP_ANDN 3
3215# define FUTEX_OP_XOR 4
3216# define FUTEX_OP_CMP_EQ 0
3217# define FUTEX_OP_CMP_NE 1
3218# define FUTEX_OP_CMP_LT 2
3219# define FUTEX_OP_CMP_LE 3
3220# define FUTEX_OP_CMP_GT 4
3221# define FUTEX_OP_CMP_GE 5
3222# endif
Roland McGrath51942a92007-07-05 18:59:11 +00003223static const struct xlat futexwakeops[] = {
3224 { FUTEX_OP_SET, "FUTEX_OP_SET" },
3225 { FUTEX_OP_ADD, "FUTEX_OP_ADD" },
3226 { FUTEX_OP_OR, "FUTEX_OP_OR" },
3227 { FUTEX_OP_ANDN, "FUTEX_OP_ANDN" },
3228 { FUTEX_OP_XOR, "FUTEX_OP_XOR" },
3229 { 0, NULL }
3230};
3231static const struct xlat futexwakecmps[] = {
3232 { FUTEX_OP_CMP_EQ, "FUTEX_OP_CMP_EQ" },
3233 { FUTEX_OP_CMP_NE, "FUTEX_OP_CMP_NE" },
3234 { FUTEX_OP_CMP_LT, "FUTEX_OP_CMP_LT" },
3235 { FUTEX_OP_CMP_LE, "FUTEX_OP_CMP_LE" },
3236 { FUTEX_OP_CMP_GT, "FUTEX_OP_CMP_GT" },
3237 { FUTEX_OP_CMP_GE, "FUTEX_OP_CMP_GE" },
3238 { 0, NULL }
Roland McGrath5a223472002-12-15 23:58:26 +00003239};
3240
3241int
Denys Vlasenko1d632462009-04-14 12:51:00 +00003242sys_futex(struct tcb *tcp)
Roland McGrath5a223472002-12-15 23:58:26 +00003243{
Denys Vlasenko1d632462009-04-14 12:51:00 +00003244 if (entering(tcp)) {
3245 long int cmd = tcp->u_arg[1] & 127;
3246 tprintf("%p, ", (void *) tcp->u_arg[0]);
3247 printxval(futexops, tcp->u_arg[1], "FUTEX_???");
3248 tprintf(", %ld", tcp->u_arg[2]);
3249 if (cmd == FUTEX_WAKE_BITSET)
3250 tprintf(", %lx", tcp->u_arg[5]);
3251 else if (cmd == FUTEX_WAIT) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02003252 tprints(", ");
Denys Vlasenko1d632462009-04-14 12:51:00 +00003253 printtv(tcp, tcp->u_arg[3]);
3254 } else if (cmd == FUTEX_WAIT_BITSET) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02003255 tprints(", ");
Denys Vlasenko1d632462009-04-14 12:51:00 +00003256 printtv(tcp, tcp->u_arg[3]);
3257 tprintf(", %lx", tcp->u_arg[5]);
3258 } else if (cmd == FUTEX_REQUEUE)
3259 tprintf(", %ld, %p", tcp->u_arg[3], (void *) tcp->u_arg[4]);
Andreas Schwab85f58322009-08-12 09:54:42 +02003260 else if (cmd == FUTEX_CMP_REQUEUE || cmd == FUTEX_CMP_REQUEUE_PI)
Denys Vlasenko1d632462009-04-14 12:51:00 +00003261 tprintf(", %ld, %p, %ld", tcp->u_arg[3], (void *) tcp->u_arg[4], tcp->u_arg[5]);
3262 else if (cmd == FUTEX_WAKE_OP) {
3263 tprintf(", %ld, %p, {", tcp->u_arg[3], (void *) tcp->u_arg[4]);
3264 if ((tcp->u_arg[5] >> 28) & 8)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02003265 tprints("FUTEX_OP_OPARG_SHIFT|");
Denys Vlasenko1d632462009-04-14 12:51:00 +00003266 printxval(futexwakeops, (tcp->u_arg[5] >> 28) & 0x7, "FUTEX_OP_???");
3267 tprintf(", %ld, ", (tcp->u_arg[5] >> 12) & 0xfff);
3268 if ((tcp->u_arg[5] >> 24) & 8)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02003269 tprints("FUTEX_OP_OPARG_SHIFT|");
Denys Vlasenko1d632462009-04-14 12:51:00 +00003270 printxval(futexwakecmps, (tcp->u_arg[5] >> 24) & 0x7, "FUTEX_OP_CMP_???");
3271 tprintf(", %ld}", tcp->u_arg[5] & 0xfff);
Andreas Schwab85f58322009-08-12 09:54:42 +02003272 } else if (cmd == FUTEX_WAIT_REQUEUE_PI) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02003273 tprints(", ");
Andreas Schwab85f58322009-08-12 09:54:42 +02003274 printtv(tcp, tcp->u_arg[3]);
3275 tprintf(", %p", (void *) tcp->u_arg[4]);
Denys Vlasenko1d632462009-04-14 12:51:00 +00003276 }
Roland McGrath51942a92007-07-05 18:59:11 +00003277 }
Denys Vlasenko1d632462009-04-14 12:51:00 +00003278 return 0;
Roland McGrath5a223472002-12-15 23:58:26 +00003279}
3280
3281static void
Denys Vlasenko1d632462009-04-14 12:51:00 +00003282print_affinitylist(struct tcb *tcp, long list, unsigned int len)
Roland McGrath5a223472002-12-15 23:58:26 +00003283{
Denys Vlasenko1d632462009-04-14 12:51:00 +00003284 int first = 1;
Dmitry V. Levin62e05962009-11-03 14:38:44 +00003285 unsigned long w, min_len;
3286
3287 if (abbrev(tcp) && len / sizeof(w) > max_strlen)
3288 min_len = len - max_strlen * sizeof(w);
3289 else
3290 min_len = 0;
3291 for (; len >= sizeof(w) && len > min_len;
3292 len -= sizeof(w), list += sizeof(w)) {
3293 if (umove(tcp, list, &w) < 0)
3294 break;
3295 if (first)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02003296 tprints("{");
Dmitry V. Levin62e05962009-11-03 14:38:44 +00003297 else
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02003298 tprints(", ");
Denys Vlasenko1d632462009-04-14 12:51:00 +00003299 first = 0;
Dmitry V. Levin62e05962009-11-03 14:38:44 +00003300 tprintf("%lx", w);
Denys Vlasenko1d632462009-04-14 12:51:00 +00003301 }
Dmitry V. Levin62e05962009-11-03 14:38:44 +00003302 if (len) {
3303 if (first)
3304 tprintf("%#lx", list);
3305 else
3306 tprintf(", %s}", (len >= sizeof(w) && len > min_len ?
3307 "???" : "..."));
3308 } else {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02003309 tprints(first ? "{}" : "}");
Dmitry V. Levin62e05962009-11-03 14:38:44 +00003310 }
Roland McGrath5a223472002-12-15 23:58:26 +00003311}
3312
3313int
Denys Vlasenko1d632462009-04-14 12:51:00 +00003314sys_sched_setaffinity(struct tcb *tcp)
Roland McGrath5a223472002-12-15 23:58:26 +00003315{
Denys Vlasenko1d632462009-04-14 12:51:00 +00003316 if (entering(tcp)) {
3317 tprintf("%ld, %lu, ", tcp->u_arg[0], tcp->u_arg[1]);
3318 print_affinitylist(tcp, tcp->u_arg[2], tcp->u_arg[1]);
3319 }
3320 return 0;
Roland McGrath5a223472002-12-15 23:58:26 +00003321}
3322
3323int
Denys Vlasenko1d632462009-04-14 12:51:00 +00003324sys_sched_getaffinity(struct tcb *tcp)
Roland McGrath5a223472002-12-15 23:58:26 +00003325{
Denys Vlasenko1d632462009-04-14 12:51:00 +00003326 if (entering(tcp)) {
3327 tprintf("%ld, %lu, ", tcp->u_arg[0], tcp->u_arg[1]);
3328 } else {
3329 if (tcp->u_rval == -1)
3330 tprintf("%#lx", tcp->u_arg[2]);
3331 else
3332 print_affinitylist(tcp, tcp->u_arg[2], tcp->u_rval);
3333 }
3334 return 0;
Roland McGrath5a223472002-12-15 23:58:26 +00003335}
Roland McGrath279d3782004-03-01 20:27:37 +00003336
Roland McGrathd9f816f2004-09-04 03:39:20 +00003337static const struct xlat schedulers[] = {
Roland McGrath279d3782004-03-01 20:27:37 +00003338 { SCHED_OTHER, "SCHED_OTHER" },
3339 { SCHED_RR, "SCHED_RR" },
3340 { SCHED_FIFO, "SCHED_FIFO" },
3341 { 0, NULL }
3342};
3343
3344int
Denys Vlasenko1d632462009-04-14 12:51:00 +00003345sys_sched_getscheduler(struct tcb *tcp)
Roland McGrath279d3782004-03-01 20:27:37 +00003346{
Denys Vlasenko1d632462009-04-14 12:51:00 +00003347 if (entering(tcp)) {
3348 tprintf("%d", (int) tcp->u_arg[0]);
3349 } else if (! syserror(tcp)) {
Denys Vlasenkob63256e2011-06-07 12:13:24 +02003350 tcp->auxstr = xlookup(schedulers, tcp->u_rval);
Denys Vlasenko1d632462009-04-14 12:51:00 +00003351 if (tcp->auxstr != NULL)
3352 return RVAL_STR;
3353 }
3354 return 0;
Roland McGrath279d3782004-03-01 20:27:37 +00003355}
3356
3357int
Denys Vlasenko1d632462009-04-14 12:51:00 +00003358sys_sched_setscheduler(struct tcb *tcp)
Roland McGrath279d3782004-03-01 20:27:37 +00003359{
Denys Vlasenko1d632462009-04-14 12:51:00 +00003360 if (entering(tcp)) {
3361 struct sched_param p;
3362 tprintf("%d, ", (int) tcp->u_arg[0]);
3363 printxval(schedulers, tcp->u_arg[1], "SCHED_???");
3364 if (umove(tcp, tcp->u_arg[2], &p) < 0)
3365 tprintf(", %#lx", tcp->u_arg[2]);
3366 else
3367 tprintf(", { %d }", p.__sched_priority);
3368 }
3369 return 0;
Roland McGrath279d3782004-03-01 20:27:37 +00003370}
3371
3372int
Denys Vlasenko1d632462009-04-14 12:51:00 +00003373sys_sched_getparam(struct tcb *tcp)
Roland McGrath279d3782004-03-01 20:27:37 +00003374{
Denys Vlasenko1d632462009-04-14 12:51:00 +00003375 if (entering(tcp)) {
3376 tprintf("%d, ", (int) tcp->u_arg[0]);
3377 } else {
3378 struct sched_param p;
3379 if (umove(tcp, tcp->u_arg[1], &p) < 0)
3380 tprintf("%#lx", tcp->u_arg[1]);
3381 else
3382 tprintf("{ %d }", p.__sched_priority);
3383 }
3384 return 0;
Roland McGrath279d3782004-03-01 20:27:37 +00003385}
3386
3387int
Denys Vlasenko1d632462009-04-14 12:51:00 +00003388sys_sched_setparam(struct tcb *tcp)
Roland McGrath279d3782004-03-01 20:27:37 +00003389{
Denys Vlasenko1d632462009-04-14 12:51:00 +00003390 if (entering(tcp)) {
3391 struct sched_param p;
3392 if (umove(tcp, tcp->u_arg[1], &p) < 0)
3393 tprintf("%d, %#lx", (int) tcp->u_arg[0], tcp->u_arg[1]);
3394 else
3395 tprintf("%d, { %d }", (int) tcp->u_arg[0], p.__sched_priority);
3396 }
3397 return 0;
Roland McGrath279d3782004-03-01 20:27:37 +00003398}
3399
3400int
Denys Vlasenko1d632462009-04-14 12:51:00 +00003401sys_sched_get_priority_min(struct tcb *tcp)
Roland McGrath279d3782004-03-01 20:27:37 +00003402{
Denys Vlasenko1d632462009-04-14 12:51:00 +00003403 if (entering(tcp)) {
3404 printxval(schedulers, tcp->u_arg[0], "SCHED_???");
3405 }
3406 return 0;
Roland McGrath279d3782004-03-01 20:27:37 +00003407}
Roland McGrathc2d5eb02005-02-02 04:16:56 +00003408
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00003409# ifdef X86_64
3410# include <asm/prctl.h>
Roland McGrathc2d5eb02005-02-02 04:16:56 +00003411
3412static const struct xlat archvals[] = {
3413 { ARCH_SET_GS, "ARCH_SET_GS" },
3414 { ARCH_SET_FS, "ARCH_SET_FS" },
3415 { ARCH_GET_FS, "ARCH_GET_FS" },
3416 { ARCH_GET_GS, "ARCH_GET_GS" },
3417 { 0, NULL },
3418};
3419
3420int
Denys Vlasenko1d632462009-04-14 12:51:00 +00003421sys_arch_prctl(struct tcb *tcp)
Roland McGrathc2d5eb02005-02-02 04:16:56 +00003422{
Denys Vlasenko1d632462009-04-14 12:51:00 +00003423 if (entering(tcp)) {
3424 printxval(archvals, tcp->u_arg[0], "ARCH_???");
3425 if (tcp->u_arg[0] == ARCH_SET_GS
3426 || tcp->u_arg[0] == ARCH_SET_FS
3427 ) {
3428 tprintf(", %#lx", tcp->u_arg[1]);
3429 }
3430 } else {
3431 if (tcp->u_arg[0] == ARCH_GET_GS
3432 || tcp->u_arg[0] == ARCH_GET_FS
3433 ) {
3434 long int v;
3435 if (!syserror(tcp) && umove(tcp, tcp->u_arg[1], &v) != -1)
3436 tprintf(", [%#lx]", v);
3437 else
3438 tprintf(", %#lx", tcp->u_arg[1]);
3439 }
Roland McGrathc2d5eb02005-02-02 04:16:56 +00003440 }
Denys Vlasenko1d632462009-04-14 12:51:00 +00003441 return 0;
Roland McGrathc2d5eb02005-02-02 04:16:56 +00003442}
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00003443# endif /* X86_64 */
Roland McGrathc2d5eb02005-02-02 04:16:56 +00003444
Roland McGrathdb8319f2007-08-02 01:37:55 +00003445
3446int
Denys Vlasenko1d632462009-04-14 12:51:00 +00003447sys_getcpu(struct tcb *tcp)
Roland McGrathdb8319f2007-08-02 01:37:55 +00003448{
3449 if (exiting(tcp)) {
3450 unsigned u;
3451 if (tcp->u_arg[0] == 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02003452 tprints("NULL, ");
Roland McGrathdb8319f2007-08-02 01:37:55 +00003453 else if (umove(tcp, tcp->u_arg[0], &u) < 0)
3454 tprintf("%#lx, ", tcp->u_arg[0]);
3455 else
3456 tprintf("[%u], ", u);
3457 if (tcp->u_arg[1] == 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02003458 tprints("NULL, ");
Roland McGrathdb8319f2007-08-02 01:37:55 +00003459 else if (umove(tcp, tcp->u_arg[1], &u) < 0)
3460 tprintf("%#lx, ", tcp->u_arg[1]);
3461 else
3462 tprintf("[%u], ", u);
3463 tprintf("%#lx", tcp->u_arg[2]);
3464 }
3465 return 0;
3466}
3467
Denys Vlasenko3af224c2012-01-28 01:46:33 +01003468int
3469sys_process_vm_readv(struct tcb *tcp)
3470{
3471 if (entering(tcp)) {
3472 /* arg 1: pid */
3473 tprintf("%ld, ", tcp->u_arg[0]);
3474 } else {
3475 /* args 2,3: local iov,cnt */
3476 if (syserror(tcp)) {
3477 tprintf("%#lx, %lu",
3478 tcp->u_arg[1], tcp->u_arg[2]);
3479 } else {
3480 tprint_iov(tcp, tcp->u_arg[2], tcp->u_arg[1], 1);
3481 }
3482 tprints(", ");
3483 /* args 4,5: remote iov,cnt */
3484 if (syserror(tcp)) {
3485 tprintf("%#lx, %lu", tcp->u_arg[3], tcp->u_arg[4]);
3486 } else {
3487 tprint_iov(tcp, tcp->u_arg[4], tcp->u_arg[3], 0);
3488 }
3489 /* arg 6: flags */
3490 tprintf(", %lu", tcp->u_arg[5]);
3491 }
3492 return 0;
3493}
Denys Vlasenkoc7e83712009-02-24 12:59:47 +00003494#endif /* LINUX */