]> granicus.if.org Git - strace/blob - process.c
Fix "format not a string literal" warning caused by tprintf(str)
[strace] / process.c
1 /*
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>
5  * 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>
9  * Copyright (c) 2000 PocketPenguins Inc.  Linux for Hitachi SuperH
10  *                    port by Greg Banks <gbanks@pocketpenguins.com>
11
12  *
13  * 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
55 #ifdef FREEBSD
56 #include <sys/ptrace.h>
57 #endif
58
59 #ifdef HAVE_SYS_REG_H
60 # include <sys/reg.h>
61 #ifndef PTRACE_PEEKUSR
62 # define PTRACE_PEEKUSR PTRACE_PEEKUSER
63 #endif
64 #ifndef PTRACE_POKEUSR
65 # define PTRACE_POKEUSR PTRACE_POKEUSER
66 #endif
67 #endif
68
69 #ifdef HAVE_LINUX_PTRACE_H
70 #undef PTRACE_SYSCALL
71 # 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
77 #include <linux/ptrace.h>
78 # undef ia64_fpreg
79 # undef pt_all_user_regs
80 #endif
81
82 #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
90 #ifdef HAVE_LINUX_FUTEX_H
91 # include <linux/futex.h>
92 #endif
93 #ifdef LINUX
94 # 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
103 # ifndef FUTEX_REQUEUE
104 #  define FUTEX_REQUEUE 3
105 # endif
106 #endif /* LINUX */
107
108 #ifdef LINUX
109 #include <sched.h>
110 #include <asm/posix_types.h>
111 #undef GETGROUPS_T
112 #define GETGROUPS_T __kernel_gid_t
113 #undef GETGROUPS32_T
114 #define GETGROUPS32_T __kernel_gid32_t
115 #endif /* LINUX */
116
117 #if defined(LINUX) && defined(IA64)
118 # include <asm/ptrace_offsets.h>
119 # include <asm/rse.h>
120 #endif
121
122 #ifdef HAVE_PRCTL
123 # include <sys/prctl.h>
124
125 static const struct xlat prctl_options[] = {
126 #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
168 #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
177 #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
183 #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
189 #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
196         { PR_GET_KEEPCAPS,      "PR_GET_KEEPCAPS"       },
197 #endif
198 #ifdef PR_SET_KEEPCAPS
199         { PR_SET_KEEPCAPS,      "PR_SET_KEEPCAPS"       },
200 #endif
201 #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
237 #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
249         { 0,                    NULL                    },
250 };
251
252
253 static const char *
254 unalignctl_string(unsigned int ctl)
255 {
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
275 int
276 sys_prctl(struct tcb *tcp)
277 {
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
287 #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
293                 case PR_GET_PDEATHSIG:
294                         break;
295 #endif
296 #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
305 #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
315 #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
324                 default:
325                         for (i = 1; i < tcp->u_nargs; i++)
326                                 tprintf(", %#lx", tcp->u_arg[i]);
327                         break;
328                 }
329         } else {
330                 switch (tcp->u_arg[0]) {
331 #ifdef PR_GET_PDEATHSIG
332                 case PR_GET_PDEATHSIG:
333                         if (umove(tcp, tcp->u_arg[1], &i) < 0)
334                                 tprintf(", %#lx", tcp->u_arg[1]);
335                         else
336                                 tprintf(", {%u}", i);
337                         break;
338 #endif
339 #ifdef PR_GET_DUMPABLE
340                 case PR_GET_DUMPABLE:
341                         return RVAL_UDECIMAL;
342 #endif
343 #ifdef PR_GET_UNALIGN
344                 case PR_GET_UNALIGN:
345                         if (syserror(tcp) || umove(tcp, tcp->u_arg[1], &i) < 0)
346                                 break;
347                         tcp->auxstr = unalignctl_string(i);
348                         return RVAL_STR;
349 #endif
350 #ifdef PR_GET_KEEPCAPS
351                 case PR_GET_KEEPCAPS:
352                         return RVAL_UDECIMAL;
353 #endif
354                 default:
355                         break;
356                 }
357         }
358         return 0;
359 }
360 #endif /* HAVE_PRCTL */
361
362 #if defined(FREEBSD) || defined(SUNOS4) || defined(SVR4)
363 int
364 sys_gethostid(struct tcb *tcp)
365 {
366         if (exiting(tcp))
367                 return RVAL_HEX;
368         return 0;
369 }
370 #endif /* FREEBSD || SUNOS4 || SVR4 */
371
372 int
373 sys_sethostname(struct tcb *tcp)
374 {
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
382 #if defined(ALPHA) || defined(FREEBSD) || defined(SUNOS4) || defined(SVR4)
383 int
384 sys_gethostname(struct tcb *tcp)
385 {
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 }
395 #endif /* ALPHA || FREEBSD || SUNOS4 || SVR4 */
396
397 int
398 sys_setdomainname(struct tcb *tcp)
399 {
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
407 #if !defined(LINUX)
408
409 int
410 sys_getdomainname(struct tcb *tcp)
411 {
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
423 int
424 sys_exit(struct tcb *tcp)
425 {
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]);
432         tabto();
433         tprintf("= ?");
434         printtrailer();
435         return 0;
436 }
437
438 #ifdef USE_PROCFS
439
440 int
441 sys_fork(struct tcb *tcp)
442 {
443         if (exiting(tcp) && !syserror(tcp)) {
444                 if (getrval2(tcp)) {
445                         tcp->auxstr = "child process";
446                         return RVAL_UDECIMAL | RVAL_STR;
447                 }
448         }
449         return 0;
450 }
451
452 #if UNIXWARE > 2
453
454 int
455 sys_rfork(struct tcb *tcp)
456 {
457         if (entering(tcp)) {
458                 tprintf("%ld", tcp->u_arg[0]);
459         }
460         else if (!syserror(tcp)) {
461                 if (getrval2(tcp)) {
462                         tcp->auxstr = "child process";
463                         return RVAL_UDECIMAL | RVAL_STR;
464                 }
465         }
466         return 0;
467 }
468
469 #endif
470
471 int
472 internal_fork(struct tcb *tcp)
473 {
474         struct tcb *tcpchild;
475
476         if (exiting(tcp)) {
477 #ifdef SYS_rfork
478                 if (known_scno(tcp) == SYS_rfork && !(tcp->u_arg[0]&RFPROC))
479                         return 0;
480 #endif
481                 if (getrval2(tcp))
482                         return 0;
483                 if (!followfork)
484                         return 0;
485                 if (syserror(tcp))
486                         return 0;
487                 tcpchild = alloctcb(tcp->u_rval);
488                 if (proc_open(tcpchild, 2) < 0)
489                         droptcb(tcpchild);
490         }
491         return 0;
492 }
493
494 #else /* !USE_PROCFS */
495
496 #ifdef LINUX
497
498 /* defines copied from linux/sched.h since we can't include that
499  * ourselves (it conflicts with *lots* of libc includes)
500  */
501 #define CSIGNAL         0x000000ff      /* signal mask to be sent at exit */
502 #define CLONE_VM        0x00000100      /* set if VM shared between processes */
503 #define CLONE_FS        0x00000200      /* set if fs info shared between processes */
504 #define CLONE_FILES     0x00000400      /* set if open files shared between processes */
505 #define CLONE_SIGHAND   0x00000800      /* set if signal handlers shared */
506 #define CLONE_IDLETASK  0x00001000      /* kernel-only flag */
507 #define CLONE_PTRACE    0x00002000      /* set if we want to let tracing continue on the child too */
508 #define CLONE_VFORK     0x00004000      /* set if the parent wants the child to wake it up on mm_release */
509 #define CLONE_PARENT    0x00008000      /* set if we want to have the same parent as the cloner */
510 #define CLONE_THREAD    0x00010000      /* Same thread group? */
511 #define CLONE_NEWNS     0x00020000      /* New namespace group? */
512 #define CLONE_SYSVSEM   0x00040000      /* share system V SEM_UNDO semantics */
513 #define CLONE_SETTLS    0x00080000      /* create a new TLS for the child */
514 #define CLONE_PARENT_SETTID     0x00100000      /* set the TID in the parent */
515 #define CLONE_CHILD_CLEARTID    0x00200000      /* clear the TID in the child */
516 #define CLONE_UNTRACED          0x00800000      /* set if the tracing process can't force CLONE_PTRACE on this clone */
517 #define CLONE_CHILD_SETTID      0x01000000      /* set the TID in the child */
518 #define CLONE_STOPPED           0x02000000      /* Start in stopped state */
519 #define CLONE_NEWUTS            0x04000000      /* New utsname group? */
520 #define CLONE_NEWIPC            0x08000000      /* New ipcs */
521 #define CLONE_NEWUSER           0x10000000      /* New user namespace */
522 #define CLONE_NEWPID            0x20000000      /* New pid namespace */
523 #define CLONE_NEWNET            0x40000000      /* New network namespace */
524 #define CLONE_IO                0x80000000      /* Clone io context */
525
526 static const struct xlat clone_flags[] = {
527     { CLONE_VM,         "CLONE_VM"      },
528     { CLONE_FS,         "CLONE_FS"      },
529     { CLONE_FILES,      "CLONE_FILES"   },
530     { CLONE_SIGHAND,    "CLONE_SIGHAND" },
531     { CLONE_IDLETASK,   "CLONE_IDLETASK"},
532     { CLONE_PTRACE,     "CLONE_PTRACE"  },
533     { CLONE_VFORK,      "CLONE_VFORK"   },
534     { CLONE_PARENT,     "CLONE_PARENT"  },
535     { CLONE_THREAD,     "CLONE_THREAD" },
536     { CLONE_NEWNS,      "CLONE_NEWNS" },
537     { CLONE_SYSVSEM,    "CLONE_SYSVSEM" },
538     { CLONE_SETTLS,     "CLONE_SETTLS" },
539     { CLONE_PARENT_SETTID,"CLONE_PARENT_SETTID" },
540     { CLONE_CHILD_CLEARTID,"CLONE_CHILD_CLEARTID" },
541     { CLONE_UNTRACED,   "CLONE_UNTRACED" },
542     { CLONE_CHILD_SETTID,"CLONE_CHILD_SETTID" },
543     { CLONE_STOPPED,    "CLONE_STOPPED" },
544     { CLONE_NEWUTS,     "CLONE_NEWUTS" },
545     { CLONE_NEWIPC,     "CLONE_NEWIPC" },
546     { CLONE_NEWUSER,    "CLONE_NEWUSER" },
547     { CLONE_NEWPID,     "CLONE_NEWPID" },
548     { CLONE_NEWNET,     "CLONE_NEWNET" },
549     { CLONE_IO,         "CLONE_IO" },
550     { 0,                NULL            },
551 };
552
553 # ifdef I386
554 #  include <asm/ldt.h>
555 #   ifdef HAVE_STRUCT_USER_DESC
556 #    define modify_ldt_ldt_s user_desc
557 #   endif
558 extern void print_ldt_entry();
559 # endif
560
561 # if defined IA64
562 #  define ARG_FLAGS     0
563 #  define ARG_STACK     1
564 #  define ARG_STACKSIZE (known_scno(tcp) == SYS_clone2 ? 2 : -1)
565 #  define ARG_PTID      (known_scno(tcp) == SYS_clone2 ? 3 : 2)
566 #  define ARG_CTID      (known_scno(tcp) == SYS_clone2 ? 4 : 3)
567 #  define ARG_TLS       (known_scno(tcp) == SYS_clone2 ? 5 : 4)
568 # elif defined S390 || defined S390X || defined CRISV10 || defined CRISV32
569 #  define ARG_STACK     0
570 #  define ARG_FLAGS     1
571 #  define ARG_PTID      2
572 #  define ARG_CTID      3
573 #  define ARG_TLS       4
574 # elif defined X86_64 || defined ALPHA
575 #  define ARG_FLAGS     0
576 #  define ARG_STACK     1
577 #  define ARG_PTID      2
578 #  define ARG_CTID      3
579 #  define ARG_TLS       4
580 # else
581 #  define ARG_FLAGS     0
582 #  define ARG_STACK     1
583 #  define ARG_PTID      2
584 #  define ARG_TLS       3
585 #  define ARG_CTID      4
586 # endif
587
588 int
589 sys_clone(struct tcb *tcp)
590 {
591         if (exiting(tcp)) {
592                 const char *sep = "|";
593                 unsigned long flags = tcp->u_arg[ARG_FLAGS];
594                 tprintf("child_stack=%#lx, ", tcp->u_arg[ARG_STACK]);
595 # ifdef ARG_STACKSIZE
596                 if (ARG_STACKSIZE != -1)
597                         tprintf("stack_size=%#lx, ",
598                                 tcp->u_arg[ARG_STACKSIZE]);
599 # endif
600                 tprintf("flags=");
601                 if (!printflags(clone_flags, flags &~ CSIGNAL, NULL))
602                         sep = "";
603                 if ((flags & CSIGNAL) != 0)
604                         tprintf("%s%s", sep, signame(flags & CSIGNAL));
605                 if ((flags & (CLONE_PARENT_SETTID|CLONE_CHILD_SETTID
606                               |CLONE_CHILD_CLEARTID|CLONE_SETTLS)) == 0)
607                         return 0;
608                 if (flags & CLONE_PARENT_SETTID)
609                         tprintf(", parent_tidptr=%#lx", tcp->u_arg[ARG_PTID]);
610                 if (flags & CLONE_SETTLS) {
611 # ifdef I386
612                         struct modify_ldt_ldt_s copy;
613                         if (umove(tcp, tcp->u_arg[ARG_TLS], &copy) != -1) {
614                                 tprintf(", {entry_number:%d, ",
615                                         copy.entry_number);
616                                 if (!verbose(tcp))
617                                         tprintf("...}");
618                                 else
619                                         print_ldt_entry(&copy);
620                         }
621                         else
622 # endif
623                                 tprintf(", tls=%#lx", tcp->u_arg[ARG_TLS]);
624                 }
625                 if (flags & (CLONE_CHILD_SETTID|CLONE_CHILD_CLEARTID))
626                         tprintf(", child_tidptr=%#lx", tcp->u_arg[ARG_CTID]);
627         }
628         return 0;
629 }
630
631 int
632 sys_unshare(struct tcb *tcp)
633 {
634         if (entering(tcp))
635                 printflags(clone_flags, tcp->u_arg[0], "CLONE_???");
636         return 0;
637 }
638 #endif /* LINUX */
639
640 int
641 sys_fork(struct tcb *tcp)
642 {
643         if (exiting(tcp))
644                 return RVAL_UDECIMAL;
645         return 0;
646 }
647
648 int
649 change_syscall(struct tcb *tcp, int new)
650 {
651 #ifdef LINUX
652 #if defined(I386)
653         /* Attempt to make vfork into fork, which we can follow. */
654         if (ptrace(PTRACE_POKEUSER, tcp->pid, (char*)(ORIG_EAX * 4), new) < 0)
655                 return -1;
656         return 0;
657 #elif defined(X86_64)
658         /* Attempt to make vfork into fork, which we can follow. */
659         if (ptrace(PTRACE_POKEUSER, tcp->pid, (char*)(ORIG_RAX * 8), new) < 0)
660                 return -1;
661         return 0;
662 #elif defined(POWERPC)
663         if (ptrace(PTRACE_POKEUSER, tcp->pid,
664                    (char*)(sizeof(unsigned long)*PT_R0), new) < 0)
665                 return -1;
666         return 0;
667 #elif defined(S390) || defined(S390X)
668         /* s390 linux after 2.4.7 has a hook in entry.S to allow this */
669         if (ptrace(PTRACE_POKEUSER, tcp->pid, (char*)(PT_GPR2), new) < 0)
670                 return -1;
671         return 0;
672 #elif defined(M68K)
673         if (ptrace(PTRACE_POKEUSER, tcp->pid, (char*)(4*PT_ORIG_D0), new) < 0)
674                 return -1;
675         return 0;
676 #elif defined(SPARC) || defined(SPARC64)
677         struct pt_regs regs;
678         if (ptrace(PTRACE_GETREGS, tcp->pid, (char*)&regs, 0) < 0)
679                 return -1;
680         regs.u_regs[U_REG_G1] = new;
681         if (ptrace(PTRACE_SETREGS, tcp->pid, (char*)&regs, 0) < 0)
682                 return -1;
683         return 0;
684 #elif defined(MIPS)
685         if (ptrace(PTRACE_POKEUSER, tcp->pid, (char*)(REG_V0), new) < 0)
686                 return -1;
687         return 0;
688 #elif defined(ALPHA)
689         if (ptrace(PTRACE_POKEUSER, tcp->pid, (char*)(REG_A3), new) < 0)
690                 return -1;
691         return 0;
692 #elif defined(AVR32)
693         if (ptrace(PTRACE_POKEUSER, tcp->pid, (char*)(REG_R8), new) < 0)
694                 return -1;
695         return 0;
696 #elif defined(BFIN)
697         if (ptrace(PTRACE_POKEUSER, tcp->pid, (char*)(REG_P0), new) < 0)
698                 return -1;
699         return 0;
700 #elif defined(IA64)
701         if (ia32) {
702                 switch (new) {
703                 case 2:
704                         break;  /* x86 SYS_fork */
705                 case SYS_clone:
706                         new = 120;
707                         break;
708                 default:
709                         fprintf(stderr, "%s: unexpected syscall %d\n",
710                                 __FUNCTION__, new);
711                         return -1;
712                 }
713                 if (ptrace(PTRACE_POKEUSER, tcp->pid, (char*)(PT_R1), new) < 0)
714                         return -1;
715         } else if (ptrace(PTRACE_POKEUSER, tcp->pid, (char*)(PT_R15), new) < 0)
716                 return -1;
717         return 0;
718 #elif defined(HPPA)
719         if (ptrace(PTRACE_POKEUSER, tcp->pid, (char*)(PT_GR20), new) < 0)
720                 return -1;
721         return 0;
722 #elif defined(SH)
723         if (ptrace(PTRACE_POKEUSER, tcp->pid, (char*)(4*(REG_REG0+3)), new) < 0)
724                 return -1;
725         return 0;
726 #elif defined(SH64)
727         /* Top half of reg encodes the no. of args n as 0x1n.
728            Assume 0 args as kernel never actually checks... */
729         if (ptrace(PTRACE_POKEUSER, tcp->pid, (char*)(REG_SYSCALL),
730                                 0x100000 | new) < 0)
731                 return -1;
732         return 0;
733 #elif defined(CRISV10) || defined(CRISV32)
734         if (ptrace(PTRACE_POKEUSER, tcp->pid, (char*)(4*PT_R9), new) < 0)
735                 return -1;
736         return 0;
737 #elif defined(ARM)
738         /* Some kernels support this, some (pre-2.6.16 or so) don't.  */
739 # ifndef PTRACE_SET_SYSCALL
740 #  define PTRACE_SET_SYSCALL 23
741 # endif
742
743         if (ptrace(PTRACE_SET_SYSCALL, tcp->pid, 0, new & 0xffff) != 0)
744                 return -1;
745
746         return 0;
747 #elif defined(TILE)
748         if (ptrace(PTRACE_POKEUSER, tcp->pid,
749                    (char*)PTREGS_OFFSET_REG(0),
750                    new) != 0)
751                 return -1;
752         return 0;
753 #elif defined(MICROBLAZE)
754         if (ptrace(PTRACE_POKEUSER, tcp->pid, (char*)(PT_GPR(0)), new) < 0)
755                 return -1;
756         return 0;
757 #else
758 #warning Do not know how to handle change_syscall for this architecture
759 #endif /* architecture */
760 #endif /* LINUX */
761         return -1;
762 }
763
764 #ifdef LINUX
765
766 int
767 internal_fork(struct tcb *tcp)
768 {
769         if ((ptrace_setoptions
770             & (PTRACE_O_TRACECLONE | PTRACE_O_TRACEFORK | PTRACE_O_TRACEVFORK))
771            == (PTRACE_O_TRACECLONE | PTRACE_O_TRACEFORK | PTRACE_O_TRACEVFORK))
772                 return 0;
773
774         if (!followfork)
775                 return 0;
776
777         if (entering(tcp)) {
778                 /*
779                  * We won't see the new child if clone is called with
780                  * CLONE_UNTRACED, so we keep the same logic with that option
781                  * and don't trace it.
782                  */
783                 if ((sysent[tcp->scno].sys_func == sys_clone) &&
784                     (tcp->u_arg[ARG_FLAGS] & CLONE_UNTRACED))
785                         return 0;
786                 setbpt(tcp);
787         } else {
788                 if (tcp->flags & TCB_BPTSET)
789                         clearbpt(tcp);
790         }
791         return 0;
792 }
793
794 #else /* !LINUX */
795
796 int
797 internal_fork(struct tcb *tcp)
798 {
799         struct tcb *tcpchild;
800         int pid;
801         int dont_follow = 0;
802
803 #ifdef SYS_vfork
804         if (known_scno(tcp) == SYS_vfork) {
805                 /* Attempt to make vfork into fork, which we can follow. */
806                 if (change_syscall(tcp, SYS_fork) < 0)
807                         dont_follow = 1;
808         }
809 #endif
810
811         if (!followfork)
812                 return 0;
813
814         if (entering(tcp)) {
815                 if (dont_follow)
816                         return 0;
817                 setbpt(tcp);
818         }
819         else {
820                 int bpt = tcp->flags & TCB_BPTSET;
821
822                 if (bpt)
823                         clearbpt(tcp);
824
825                 if (syserror(tcp))
826                         return 0;
827
828                 pid = tcp->u_rval;
829                 tcpchild = alloctcb(pid);
830 #ifdef SUNOS4
831 #ifdef oldway
832                 /* The child must have run before it can be attached. */
833                 {
834                         struct timeval tv;
835                         tv.tv_sec = 0;
836                         tv.tv_usec = 10000;
837                         select(0, NULL, NULL, NULL, &tv);
838                 }
839                 if (ptrace(PTRACE_ATTACH, pid, (char *)1, 0) < 0) {
840                         perror("PTRACE_ATTACH");
841                         fprintf(stderr, "Too late?\n");
842                         droptcb(tcpchild);
843                         return 0;
844                 }
845 #else /* !oldway */
846                 /* Try to catch the new process as soon as possible. */
847                 {
848                         int i;
849                         for (i = 0; i < 1024; i++)
850                                 if (ptrace(PTRACE_ATTACH, pid, (char *) 1, 0) >= 0)
851                                         break;
852                         if (i == 1024) {
853                                 perror("PTRACE_ATTACH");
854                                 fprintf(stderr, "Too late?\n");
855                                 droptcb(tcpchild);
856                                 return 0;
857                         }
858                 }
859 #endif /* !oldway */
860 #endif /* SUNOS4 */
861                 tcpchild->flags |= TCB_ATTACHED;
862                 /* Child has BPT too, must be removed on first occasion */
863                 if (bpt) {
864                         tcpchild->flags |= TCB_BPTSET;
865                         tcpchild->baddr = tcp->baddr;
866                         memcpy(tcpchild->inst, tcp->inst,
867                                 sizeof tcpchild->inst);
868                 }
869                 if (!qflag)
870                         fprintf(stderr, "Process %d attached\n", pid);
871         }
872         return 0;
873 }
874
875 #endif /* !LINUX */
876
877 #endif /* !USE_PROCFS */
878
879 #if defined(SUNOS4) || defined(LINUX) || defined(FREEBSD)
880
881 int
882 sys_vfork(struct tcb *tcp)
883 {
884         if (exiting(tcp))
885                 return RVAL_UDECIMAL;
886         return 0;
887 }
888
889 #endif /* SUNOS4 || LINUX || FREEBSD */
890
891 #ifndef LINUX
892
893 static char idstr[16];
894
895 int
896 sys_getpid(struct tcb *tcp)
897 {
898         if (exiting(tcp)) {
899                 sprintf(idstr, "ppid %lu", getrval2(tcp));
900                 tcp->auxstr = idstr;
901                 return RVAL_STR;
902         }
903         return 0;
904 }
905
906 int
907 sys_getuid(struct tcb *tcp)
908 {
909         if (exiting(tcp)) {
910                 sprintf(idstr, "euid %lu", getrval2(tcp));
911                 tcp->auxstr = idstr;
912                 return RVAL_STR;
913         }
914         return 0;
915 }
916
917 int
918 sys_getgid(struct tcb *tcp)
919 {
920         if (exiting(tcp)) {
921                 sprintf(idstr, "egid %lu", getrval2(tcp));
922                 tcp->auxstr = idstr;
923                 return RVAL_STR;
924         }
925         return 0;
926 }
927
928 #endif /* !LINUX */
929
930 #ifdef LINUX
931
932 int sys_getuid(struct tcb *tcp)
933 {
934         if (exiting(tcp))
935                 tcp->u_rval = (uid_t) tcp->u_rval;
936         return RVAL_UDECIMAL;
937 }
938
939 int sys_setfsuid(struct tcb *tcp)
940 {
941         if (entering(tcp))
942                 tprintf("%u", (uid_t) tcp->u_arg[0]);
943         else
944                 tcp->u_rval = (uid_t) tcp->u_rval;
945         return RVAL_UDECIMAL;
946 }
947
948 int
949 sys_setuid(struct tcb *tcp)
950 {
951         if (entering(tcp)) {
952                 tprintf("%u", (uid_t) tcp->u_arg[0]);
953         }
954         return 0;
955 }
956
957 int
958 sys_setgid(struct tcb *tcp)
959 {
960         if (entering(tcp)) {
961                 tprintf("%u", (gid_t) tcp->u_arg[0]);
962         }
963         return 0;
964 }
965
966 int
967 sys_getresuid(struct tcb *tcp)
968 {
969         if (exiting(tcp)) {
970                 __kernel_uid_t uid;
971                 if (syserror(tcp))
972                         tprintf("%#lx, %#lx, %#lx", tcp->u_arg[0],
973                                 tcp->u_arg[1], tcp->u_arg[2]);
974                 else {
975                         if (umove(tcp, tcp->u_arg[0], &uid) < 0)
976                                 tprintf("%#lx, ", tcp->u_arg[0]);
977                         else
978                                 tprintf("[%lu], ", (unsigned long) uid);
979                         if (umove(tcp, tcp->u_arg[1], &uid) < 0)
980                                 tprintf("%#lx, ", tcp->u_arg[1]);
981                         else
982                                 tprintf("[%lu], ", (unsigned long) uid);
983                         if (umove(tcp, tcp->u_arg[2], &uid) < 0)
984                                 tprintf("%#lx", tcp->u_arg[2]);
985                         else
986                                 tprintf("[%lu]", (unsigned long) uid);
987                 }
988         }
989         return 0;
990 }
991
992 int
993 sys_getresgid(struct tcb *tcp)
994 {
995         if (exiting(tcp)) {
996                 __kernel_gid_t gid;
997                 if (syserror(tcp))
998                         tprintf("%#lx, %#lx, %#lx", tcp->u_arg[0],
999                                 tcp->u_arg[1], tcp->u_arg[2]);
1000                 else {
1001                         if (umove(tcp, tcp->u_arg[0], &gid) < 0)
1002                                 tprintf("%#lx, ", tcp->u_arg[0]);
1003                         else
1004                                 tprintf("[%lu], ", (unsigned long) gid);
1005                         if (umove(tcp, tcp->u_arg[1], &gid) < 0)
1006                                 tprintf("%#lx, ", tcp->u_arg[1]);
1007                         else
1008                                 tprintf("[%lu], ", (unsigned long) gid);
1009                         if (umove(tcp, tcp->u_arg[2], &gid) < 0)
1010                                 tprintf("%#lx", tcp->u_arg[2]);
1011                         else
1012                                 tprintf("[%lu]", (unsigned long) gid);
1013                 }
1014         }
1015         return 0;
1016 }
1017
1018 #endif /* LINUX */
1019
1020 int
1021 sys_setreuid(struct tcb *tcp)
1022 {
1023         if (entering(tcp)) {
1024                 printuid("", tcp->u_arg[0]);
1025                 printuid(", ", tcp->u_arg[1]);
1026         }
1027         return 0;
1028 }
1029
1030 int
1031 sys_setregid(struct tcb *tcp)
1032 {
1033         if (entering(tcp)) {
1034                 printuid("", tcp->u_arg[0]);
1035                 printuid(", ", tcp->u_arg[1]);
1036         }
1037         return 0;
1038 }
1039
1040 #if defined(LINUX) || defined(FREEBSD)
1041 int
1042 sys_setresuid(struct tcb *tcp)
1043 {
1044         if (entering(tcp)) {
1045                 printuid("", tcp->u_arg[0]);
1046                 printuid(", ", tcp->u_arg[1]);
1047                 printuid(", ", tcp->u_arg[2]);
1048         }
1049         return 0;
1050 }
1051 int
1052 sys_setresgid(struct tcb *tcp)
1053 {
1054         if (entering(tcp)) {
1055                 printuid("", tcp->u_arg[0]);
1056                 printuid(", ", tcp->u_arg[1]);
1057                 printuid(", ", tcp->u_arg[2]);
1058         }
1059         return 0;
1060 }
1061
1062 #endif /* LINUX || FREEBSD */
1063
1064 int
1065 sys_setgroups(struct tcb *tcp)
1066 {
1067         if (entering(tcp)) {
1068                 unsigned long len, size, start, cur, end, abbrev_end;
1069                 GETGROUPS_T gid;
1070                 int failed = 0;
1071
1072                 len = tcp->u_arg[0];
1073                 tprintf("%lu, ", len);
1074                 if (len == 0) {
1075                         tprintf("[]");
1076                         return 0;
1077                 }
1078                 start = tcp->u_arg[1];
1079                 if (start == 0) {
1080                         tprintf("NULL");
1081                         return 0;
1082                 }
1083                 size = len * sizeof(gid);
1084                 end = start + size;
1085                 if (!verbose(tcp) || size / sizeof(gid) != len || end < start) {
1086                         tprintf("%#lx", start);
1087                         return 0;
1088                 }
1089                 if (abbrev(tcp)) {
1090                         abbrev_end = start + max_strlen * sizeof(gid);
1091                         if (abbrev_end < start)
1092                                 abbrev_end = end;
1093                 } else {
1094                         abbrev_end = end;
1095                 }
1096                 tprintf("[");
1097                 for (cur = start; cur < end; cur += sizeof(gid)) {
1098                         if (cur > start)
1099                                 tprintf(", ");
1100                         if (cur >= abbrev_end) {
1101                                 tprintf("...");
1102                                 break;
1103                         }
1104                         if (umoven(tcp, cur, sizeof(gid), (char *) &gid) < 0) {
1105                                 tprintf("?");
1106                                 failed = 1;
1107                                 break;
1108                         }
1109                         tprintf("%lu", (unsigned long) gid);
1110                 }
1111                 tprintf("]");
1112                 if (failed)
1113                         tprintf(" %#lx", tcp->u_arg[1]);
1114         }
1115         return 0;
1116 }
1117
1118 int
1119 sys_getgroups(struct tcb *tcp)
1120 {
1121         unsigned long len;
1122
1123         if (entering(tcp)) {
1124                 len = tcp->u_arg[0];
1125                 tprintf("%lu, ", len);
1126         } else {
1127                 unsigned long size, start, cur, end, abbrev_end;
1128                 GETGROUPS_T gid;
1129                 int failed = 0;
1130
1131                 len = tcp->u_rval;
1132                 if (len == 0) {
1133                         tprintf("[]");
1134                         return 0;
1135                 }
1136                 start = tcp->u_arg[1];
1137                 if (start == 0) {
1138                         tprintf("NULL");
1139                         return 0;
1140                 }
1141                 if (tcp->u_arg[0] == 0) {
1142                         tprintf("%#lx", start);
1143                         return 0;
1144                 }
1145                 size = len * sizeof(gid);
1146                 end = start + size;
1147                 if (!verbose(tcp) || tcp->u_arg[0] == 0 ||
1148                     size / sizeof(gid) != len || end < start) {
1149                         tprintf("%#lx", start);
1150                         return 0;
1151                 }
1152                 if (abbrev(tcp)) {
1153                         abbrev_end = start + max_strlen * sizeof(gid);
1154                         if (abbrev_end < start)
1155                                 abbrev_end = end;
1156                 } else {
1157                         abbrev_end = end;
1158                 }
1159                 tprintf("[");
1160                 for (cur = start; cur < end; cur += sizeof(gid)) {
1161                         if (cur > start)
1162                                 tprintf(", ");
1163                         if (cur >= abbrev_end) {
1164                                 tprintf("...");
1165                                 break;
1166                         }
1167                         if (umoven(tcp, cur, sizeof(gid), (char *) &gid) < 0) {
1168                                 tprintf("?");
1169                                 failed = 1;
1170                                 break;
1171                         }
1172                         tprintf("%lu", (unsigned long) gid);
1173                 }
1174                 tprintf("]");
1175                 if (failed)
1176                         tprintf(" %#lx", tcp->u_arg[1]);
1177         }
1178         return 0;
1179 }
1180
1181 #ifdef LINUX
1182 int
1183 sys_setgroups32(struct tcb *tcp)
1184 {
1185         if (entering(tcp)) {
1186                 unsigned long len, size, start, cur, end, abbrev_end;
1187                 GETGROUPS32_T gid;
1188                 int failed = 0;
1189
1190                 len = tcp->u_arg[0];
1191                 tprintf("%lu, ", len);
1192                 if (len == 0) {
1193                         tprintf("[]");
1194                         return 0;
1195                 }
1196                 start = tcp->u_arg[1];
1197                 if (start == 0) {
1198                         tprintf("NULL");
1199                         return 0;
1200                 }
1201                 size = len * sizeof(gid);
1202                 end = start + size;
1203                 if (!verbose(tcp) || size / sizeof(gid) != len || end < start) {
1204                         tprintf("%#lx", start);
1205                         return 0;
1206                 }
1207                 if (abbrev(tcp)) {
1208                         abbrev_end = start + max_strlen * sizeof(gid);
1209                         if (abbrev_end < start)
1210                                 abbrev_end = end;
1211                 } else {
1212                         abbrev_end = end;
1213                 }
1214                 tprintf("[");
1215                 for (cur = start; cur < end; cur += sizeof(gid)) {
1216                         if (cur > start)
1217                                 tprintf(", ");
1218                         if (cur >= abbrev_end) {
1219                                 tprintf("...");
1220                                 break;
1221                         }
1222                         if (umoven(tcp, cur, sizeof(gid), (char *) &gid) < 0) {
1223                                 tprintf("?");
1224                                 failed = 1;
1225                                 break;
1226                         }
1227                         tprintf("%lu", (unsigned long) gid);
1228                 }
1229                 tprintf("]");
1230                 if (failed)
1231                         tprintf(" %#lx", tcp->u_arg[1]);
1232         }
1233         return 0;
1234 }
1235
1236 int
1237 sys_getgroups32(struct tcb *tcp)
1238 {
1239         unsigned long len;
1240
1241         if (entering(tcp)) {
1242                 len = tcp->u_arg[0];
1243                 tprintf("%lu, ", len);
1244         } else {
1245                 unsigned long size, start, cur, end, abbrev_end;
1246                 GETGROUPS32_T gid;
1247                 int failed = 0;
1248
1249                 len = tcp->u_rval;
1250                 if (len == 0) {
1251                         tprintf("[]");
1252                         return 0;
1253                 }
1254                 start = tcp->u_arg[1];
1255                 if (start == 0) {
1256                         tprintf("NULL");
1257                         return 0;
1258                 }
1259                 size = len * sizeof(gid);
1260                 end = start + size;
1261                 if (!verbose(tcp) || tcp->u_arg[0] == 0 ||
1262                     size / sizeof(gid) != len || end < start) {
1263                         tprintf("%#lx", start);
1264                         return 0;
1265                 }
1266                 if (abbrev(tcp)) {
1267                         abbrev_end = start + max_strlen * sizeof(gid);
1268                         if (abbrev_end < start)
1269                                 abbrev_end = end;
1270                 } else {
1271                         abbrev_end = end;
1272                 }
1273                 tprintf("[");
1274                 for (cur = start; cur < end; cur += sizeof(gid)) {
1275                         if (cur > start)
1276                                 tprintf(", ");
1277                         if (cur >= abbrev_end) {
1278                                 tprintf("...");
1279                                 break;
1280                         }
1281                         if (umoven(tcp, cur, sizeof(gid), (char *) &gid) < 0) {
1282                                 tprintf("?");
1283                                 failed = 1;
1284                                 break;
1285                         }
1286                         tprintf("%lu", (unsigned long) gid);
1287                 }
1288                 tprintf("]");
1289                 if (failed)
1290                         tprintf(" %#lx", tcp->u_arg[1]);
1291         }
1292         return 0;
1293 }
1294 #endif /* LINUX */
1295
1296 #if defined(ALPHA) || defined(SUNOS4) || defined(SVR4)
1297 int
1298 sys_setpgrp(struct tcb *tcp)
1299 {
1300         if (entering(tcp)) {
1301 #ifndef SVR4
1302                 tprintf("%lu, %lu", tcp->u_arg[0], tcp->u_arg[1]);
1303 #endif /* !SVR4 */
1304         }
1305         return 0;
1306 }
1307 #endif /* ALPHA || SUNOS4 || SVR4 */
1308
1309 int
1310 sys_getpgrp(struct tcb *tcp)
1311 {
1312         if (entering(tcp)) {
1313 #ifndef SVR4
1314                 tprintf("%lu", tcp->u_arg[0]);
1315 #endif /* !SVR4 */
1316         }
1317         return 0;
1318 }
1319
1320 int
1321 sys_getsid(struct tcb *tcp)
1322 {
1323         if (entering(tcp)) {
1324                 tprintf("%lu", tcp->u_arg[0]);
1325         }
1326         return 0;
1327 }
1328
1329 int
1330 sys_setsid(struct tcb *tcp)
1331 {
1332         return 0;
1333 }
1334
1335 int
1336 sys_getpgid(struct tcb *tcp)
1337 {
1338         if (entering(tcp)) {
1339                 tprintf("%lu", tcp->u_arg[0]);
1340         }
1341         return 0;
1342 }
1343
1344 int
1345 sys_setpgid(struct tcb *tcp)
1346 {
1347         if (entering(tcp)) {
1348                 tprintf("%lu, %lu", tcp->u_arg[0], tcp->u_arg[1]);
1349         }
1350         return 0;
1351 }
1352
1353 #if UNIXWARE >= 2
1354
1355 #include <sys/privilege.h>
1356
1357
1358 static const struct xlat procpriv_cmds[] = {
1359         { SETPRV,       "SETPRV"        },
1360         { CLRPRV,       "CLRPRV"        },
1361         { PUTPRV,       "PUTPRV"        },
1362         { GETPRV,       "GETPRV"        },
1363         { CNTPRV,       "CNTPRV"        },
1364         { 0,            NULL            },
1365 };
1366
1367
1368 static const struct xlat procpriv_priv[] = {
1369         { P_OWNER,      "P_OWNER"       },
1370         { P_AUDIT,      "P_AUDIT"       },
1371         { P_COMPAT,     "P_COMPAT"      },
1372         { P_DACREAD,    "P_DACREAD"     },
1373         { P_DACWRITE,   "P_DACWRITE"    },
1374         { P_DEV,        "P_DEV"         },
1375         { P_FILESYS,    "P_FILESYS"     },
1376         { P_MACREAD,    "P_MACREAD"     },
1377         { P_MACWRITE,   "P_MACWRITE"    },
1378         { P_MOUNT,      "P_MOUNT"       },
1379         { P_MULTIDIR,   "P_MULTIDIR"    },
1380         { P_SETPLEVEL,  "P_SETPLEVEL"   },
1381         { P_SETSPRIV,   "P_SETSPRIV"    },
1382         { P_SETUID,     "P_SETUID"      },
1383         { P_SYSOPS,     "P_SYSOPS"      },
1384         { P_SETUPRIV,   "P_SETUPRIV"    },
1385         { P_DRIVER,     "P_DRIVER"      },
1386         { P_RTIME,      "P_RTIME"       },
1387         { P_MACUPGRADE, "P_MACUPGRADE"  },
1388         { P_FSYSRANGE,  "P_FSYSRANGE"   },
1389         { P_SETFLEVEL,  "P_SETFLEVEL"   },
1390         { P_AUDITWR,    "P_AUDITWR"     },
1391         { P_TSHAR,      "P_TSHAR"       },
1392         { P_PLOCK,      "P_PLOCK"       },
1393         { P_CORE,       "P_CORE"        },
1394         { P_LOADMOD,    "P_LOADMOD"     },
1395         { P_BIND,       "P_BIND"        },
1396         { P_ALLPRIVS,   "P_ALLPRIVS"    },
1397         { 0,            NULL            },
1398 };
1399
1400
1401 static const struct xlat procpriv_type[] = {
1402         { PS_FIX,       "PS_FIX"        },
1403         { PS_INH,       "PS_INH"        },
1404         { PS_MAX,       "PS_MAX"        },
1405         { PS_WKG,       "PS_WKG"        },
1406         { 0,            NULL            },
1407 };
1408
1409
1410 static void
1411 printpriv(struct tcb *tcp, long addr, int len, const struct xlat *opt)
1412 {
1413         priv_t buf[128];
1414         int max = verbose(tcp) ? ARRAY_SIZE(buf) : 10;
1415         int dots = len > max;
1416         int i;
1417
1418         if (len > max) len = max;
1419
1420         if (len <= 0 ||
1421             umoven(tcp, addr, len * sizeof buf[0], (char *) buf) < 0)
1422         {
1423                 tprintf("%#lx", addr);
1424                 return;
1425         }
1426
1427         tprintf("[");
1428
1429         for (i = 0; i < len; ++i) {
1430                 const char *t, *p;
1431
1432                 if (i) tprintf(", ");
1433
1434                 if ((t = xlookup(procpriv_type, buf[i] & PS_TYPE)) &&
1435                     (p = xlookup(procpriv_priv, buf[i] & ~PS_TYPE)))
1436                 {
1437                         tprintf("%s|%s", t, p);
1438                 }
1439                 else {
1440                         tprintf("%#lx", buf[i]);
1441                 }
1442         }
1443
1444         if (dots) tprintf(" ...");
1445
1446         tprintf("]");
1447 }
1448
1449
1450 int
1451 sys_procpriv(struct tcb *tcp)
1452 {
1453         if (entering(tcp)) {
1454                 printxval(procpriv_cmds, tcp->u_arg[0], "???PRV");
1455                 switch (tcp->u_arg[0]) {
1456                     case CNTPRV:
1457                         tprintf(", %#lx, %ld", tcp->u_arg[1], tcp->u_arg[2]);
1458                         break;
1459
1460                     case GETPRV:
1461                         break;
1462
1463                     default:
1464                         tprintf(", ");
1465                         printpriv(tcp, tcp->u_arg[1], tcp->u_arg[2]);
1466                         tprintf(", %ld", tcp->u_arg[2]);
1467                 }
1468         }
1469         else if (tcp->u_arg[0] == GETPRV) {
1470                 if (syserror(tcp)) {
1471                         tprintf(", %#lx, %ld", tcp->u_arg[1], tcp->u_arg[2]);
1472                 }
1473                 else {
1474                         tprintf(", ");
1475                         printpriv(tcp, tcp->u_arg[1], tcp->u_rval);
1476                         tprintf(", %ld", tcp->u_arg[2]);
1477                 }
1478         }
1479
1480         return 0;
1481 }
1482
1483 #endif /* UNIXWARE */
1484
1485
1486 static void
1487 printargv(struct tcb *tcp, long addr)
1488 {
1489         union {
1490                 unsigned int p32;
1491                 unsigned long p64;
1492                 char data[sizeof(long)];
1493         } cp;
1494         const char *sep;
1495         int n = 0;
1496
1497         cp.p64 = 1;
1498         for (sep = ""; !abbrev(tcp) || n < max_strlen / 2; sep = ", ", ++n) {
1499                 if (umoven(tcp, addr, personality_wordsize[current_personality],
1500                            cp.data) < 0) {
1501                         tprintf("%#lx", addr);
1502                         return;
1503                 }
1504                 if (personality_wordsize[current_personality] == 4)
1505                         cp.p64 = cp.p32;
1506                 if (cp.p64 == 0)
1507                         break;
1508                 tprints(sep);
1509                 printstr(tcp, cp.p64, -1);
1510                 addr += personality_wordsize[current_personality];
1511         }
1512         if (cp.p64)
1513                 tprintf("%s...", sep);
1514 }
1515
1516 static void
1517 printargc(const char *fmt, struct tcb *tcp, long addr)
1518 {
1519         int count;
1520         char *cp;
1521
1522         for (count = 0; umove(tcp, addr, &cp) >= 0 && cp != NULL; count++) {
1523                 addr += sizeof(char *);
1524         }
1525         tprintf(fmt, count, count == 1 ? "" : "s");
1526 }
1527
1528 #if defined(SPARC) || defined(SPARC64) || defined(SUNOS4)
1529 int
1530 sys_execv(struct tcb *tcp)
1531 {
1532         if (entering(tcp)) {
1533                 printpath(tcp, tcp->u_arg[0]);
1534                 if (!verbose(tcp))
1535                         tprintf(", %#lx", tcp->u_arg[1]);
1536                 else {
1537                         tprintf(", [");
1538                         printargv(tcp, tcp->u_arg[1]);
1539                         tprintf("]");
1540                 }
1541         }
1542         return 0;
1543 }
1544 #endif /* SPARC || SPARC64 || SUNOS4 */
1545
1546 int
1547 sys_execve(struct tcb *tcp)
1548 {
1549         if (entering(tcp)) {
1550                 printpath(tcp, tcp->u_arg[0]);
1551                 if (!verbose(tcp))
1552                         tprintf(", %#lx", tcp->u_arg[1]);
1553                 else {
1554                         tprintf(", [");
1555                         printargv(tcp, tcp->u_arg[1]);
1556                         tprintf("]");
1557                 }
1558                 if (!verbose(tcp))
1559                         tprintf(", %#lx", tcp->u_arg[2]);
1560                 else if (abbrev(tcp))
1561                         printargc(", [/* %d var%s */]", tcp, tcp->u_arg[2]);
1562                 else {
1563                         tprintf(", [");
1564                         printargv(tcp, tcp->u_arg[2]);
1565                         tprintf("]");
1566                 }
1567         }
1568         return 0;
1569 }
1570
1571 #if UNIXWARE > 2
1572
1573 int sys_rexecve(struct tcb *tcp)
1574 {
1575         if (entering(tcp)) {
1576                 sys_execve(tcp);
1577                 tprintf(", %ld", tcp->u_arg[3]);
1578         }
1579         return 0;
1580 }
1581
1582 #endif
1583
1584 #if defined SUNOS4 || (defined LINUX && defined TCB_WAITEXECVE)
1585 int
1586 internal_exec(struct tcb *tcp)
1587 {
1588 # if defined SUNOS4
1589         if (exiting(tcp) && !syserror(tcp) && followfork)
1590                 fixvfork(tcp);
1591 # endif
1592 # if defined LINUX && defined TCB_WAITEXECVE
1593         if (exiting(tcp) && syserror(tcp))
1594                 tcp->flags &= ~TCB_WAITEXECVE;
1595         else {
1596                 /* Maybe we have post-execve SIGTRAP suppressed? */
1597                 if (!(ptrace_setoptions & PTRACE_O_TRACEEXEC))
1598                         tcp->flags |= TCB_WAITEXECVE; /* no */
1599         }
1600 # endif
1601         return 0;
1602 }
1603 #endif
1604
1605 #ifdef LINUX
1606 #ifndef __WNOTHREAD
1607 #define __WNOTHREAD     0x20000000
1608 #endif
1609 #ifndef __WALL
1610 #define __WALL          0x40000000
1611 #endif
1612 #ifndef __WCLONE
1613 #define __WCLONE        0x80000000
1614 #endif
1615 #endif /* LINUX */
1616
1617 static const struct xlat wait4_options[] = {
1618         { WNOHANG,      "WNOHANG"       },
1619 #ifndef WSTOPPED
1620         { WUNTRACED,    "WUNTRACED"     },
1621 #endif
1622 #ifdef WEXITED
1623         { WEXITED,      "WEXITED"       },
1624 #endif
1625 #ifdef WTRAPPED
1626         { WTRAPPED,     "WTRAPPED"      },
1627 #endif
1628 #ifdef WSTOPPED
1629         { WSTOPPED,     "WSTOPPED"      },
1630 #endif
1631 #ifdef WCONTINUED
1632         { WCONTINUED,   "WCONTINUED"    },
1633 #endif
1634 #ifdef WNOWAIT
1635         { WNOWAIT,      "WNOWAIT"       },
1636 #endif
1637 #ifdef __WCLONE
1638         { __WCLONE,     "__WCLONE"      },
1639 #endif
1640 #ifdef __WALL
1641         { __WALL,       "__WALL"        },
1642 #endif
1643 #ifdef __WNOTHREAD
1644         { __WNOTHREAD,  "__WNOTHREAD"   },
1645 #endif
1646         { 0,            NULL            },
1647 };
1648
1649 #if !defined WCOREFLAG && defined WCOREFLG
1650 # define WCOREFLAG WCOREFLG
1651 #endif
1652 #ifndef WCOREFLAG
1653 # define WCOREFLAG 0x80
1654 #endif
1655 #ifndef WCOREDUMP
1656 # define WCOREDUMP(status) ((status) & 0200)
1657 #endif
1658
1659
1660 #ifndef W_STOPCODE
1661 #define W_STOPCODE(sig)         ((sig) << 8 | 0x7f)
1662 #endif
1663 #ifndef W_EXITCODE
1664 #define W_EXITCODE(ret, sig)    ((ret) << 8 | (sig))
1665 #endif
1666
1667 static int
1668 printstatus(int status)
1669 {
1670         int exited = 0;
1671
1672         /*
1673          * Here is a tricky presentation problem.  This solution
1674          * is still not entirely satisfactory but since there
1675          * are no wait status constructors it will have to do.
1676          */
1677         if (WIFSTOPPED(status)) {
1678                 tprintf("[{WIFSTOPPED(s) && WSTOPSIG(s) == %s}",
1679                         signame(WSTOPSIG(status)));
1680                 status &= ~W_STOPCODE(WSTOPSIG(status));
1681         }
1682         else if (WIFSIGNALED(status)) {
1683                 tprintf("[{WIFSIGNALED(s) && WTERMSIG(s) == %s%s}",
1684                         signame(WTERMSIG(status)),
1685                         WCOREDUMP(status) ? " && WCOREDUMP(s)" : "");
1686                 status &= ~(W_EXITCODE(0, WTERMSIG(status)) | WCOREFLAG);
1687         }
1688         else if (WIFEXITED(status)) {
1689                 tprintf("[{WIFEXITED(s) && WEXITSTATUS(s) == %d}",
1690                         WEXITSTATUS(status));
1691                 exited = 1;
1692                 status &= ~W_EXITCODE(WEXITSTATUS(status), 0);
1693         }
1694         else {
1695                 tprintf("[%#x]", status);
1696                 return 0;
1697         }
1698
1699         if (status == 0)
1700                 tprintf("]");
1701         else
1702                 tprintf(" | %#x]", status);
1703
1704         return exited;
1705 }
1706
1707 static int
1708 printwaitn(struct tcb *tcp, int n, int bitness)
1709 {
1710         int status;
1711 #ifdef SUNOS4
1712         int exited = 0;
1713 #endif
1714
1715         if (entering(tcp)) {
1716 #ifdef LINUX
1717                 /* On Linux, kernel-side pid_t is typedef'ed to int
1718                  * on all arches. Also, glibc-2.8 truncates wait3 and wait4
1719                  * pid argument to int on 64bit arches, producing,
1720                  * for example, wait4(4294967295, ...) instead of -1
1721                  * in strace. We have to use int here, not long.
1722                  */
1723                 int pid = tcp->u_arg[0];
1724                 tprintf("%d, ", pid);
1725 #else
1726                 long pid = tcp->u_arg[0];
1727 # if SUPPORTED_PERSONALITIES > 1
1728                 /* Sign-extend a 32-bit value when that's what it is. */
1729                 if (personality_wordsize[current_personality] < sizeof pid)
1730                         pid = (long) (int) pid;
1731 # endif
1732                 tprintf("%ld, ", pid);
1733 #endif
1734         } else {
1735                 /* status */
1736                 if (!tcp->u_arg[1])
1737                         tprintf("NULL");
1738                 else if (syserror(tcp) || tcp->u_rval == 0)
1739                         tprintf("%#lx", tcp->u_arg[1]);
1740                 else if (umove(tcp, tcp->u_arg[1], &status) < 0)
1741                         tprintf("[?]");
1742                 else
1743 #ifdef SUNOS4
1744                         exited =
1745 #endif
1746                         printstatus(status);
1747                 /* options */
1748                 tprintf(", ");
1749                 printflags(wait4_options, tcp->u_arg[2], "W???");
1750                 if (n == 4) {
1751                         tprintf(", ");
1752                         /* usage */
1753                         if (!tcp->u_arg[3])
1754                                 tprintf("NULL");
1755 #ifdef LINUX
1756                         else if (tcp->u_rval > 0) {
1757 #ifdef ALPHA
1758                                 if (bitness)
1759                                         printrusage32(tcp, tcp->u_arg[3]);
1760                                 else
1761 #endif
1762                                         printrusage(tcp, tcp->u_arg[3]);
1763                         }
1764 #endif /* LINUX */
1765 #ifdef SUNOS4
1766                         else if (tcp->u_rval > 0 && exited)
1767                                 printrusage(tcp, tcp->u_arg[3]);
1768 #endif /* SUNOS4 */
1769                         else
1770                                 tprintf("%#lx", tcp->u_arg[3]);
1771                 }
1772         }
1773         return 0;
1774 }
1775
1776 #ifdef SVR4
1777
1778 int
1779 sys_wait(struct tcb *tcp)
1780 {
1781         if (exiting(tcp)) {
1782                 /* The library wrapper stuffs this into the user variable. */
1783                 if (!syserror(tcp))
1784                         printstatus(getrval2(tcp));
1785         }
1786         return 0;
1787 }
1788
1789 #endif /* SVR4 */
1790
1791 #ifdef FREEBSD
1792 int
1793 sys_wait(struct tcb *tcp)
1794 {
1795         int status;
1796
1797         if (exiting(tcp)) {
1798                 if (!syserror(tcp)) {
1799                         if (umove(tcp, tcp->u_arg[0], &status) < 0)
1800                                 tprintf("%#lx", tcp->u_arg[0]);
1801                         else
1802                                 printstatus(status);
1803                 }
1804         }
1805         return 0;
1806 }
1807 #endif
1808
1809 int
1810 sys_waitpid(struct tcb *tcp)
1811 {
1812         return printwaitn(tcp, 3, 0);
1813 }
1814
1815 int
1816 sys_wait4(struct tcb *tcp)
1817 {
1818         return printwaitn(tcp, 4, 0);
1819 }
1820
1821 #ifdef ALPHA
1822 int
1823 sys_osf_wait4(struct tcb *tcp)
1824 {
1825         return printwaitn(tcp, 4, 1);
1826 }
1827 #endif
1828
1829 #if defined SVR4 || defined LINUX
1830
1831 static const struct xlat waitid_types[] = {
1832         { P_PID,        "P_PID"         },
1833 #ifdef P_PPID
1834         { P_PPID,       "P_PPID"        },
1835 #endif
1836         { P_PGID,       "P_PGID"        },
1837 #ifdef P_SID
1838         { P_SID,        "P_SID"         },
1839 #endif
1840 #ifdef P_CID
1841         { P_CID,        "P_CID"         },
1842 #endif
1843 #ifdef P_UID
1844         { P_UID,        "P_UID"         },
1845 #endif
1846 #ifdef P_GID
1847         { P_GID,        "P_GID"         },
1848 #endif
1849         { P_ALL,        "P_ALL"         },
1850 #ifdef P_LWPID
1851         { P_LWPID,      "P_LWPID"       },
1852 #endif
1853         { 0,            NULL            },
1854 };
1855
1856 int
1857 sys_waitid(struct tcb *tcp)
1858 {
1859         siginfo_t si;
1860
1861         if (entering(tcp)) {
1862                 printxval(waitid_types, tcp->u_arg[0], "P_???");
1863                 tprintf(", %ld, ", tcp->u_arg[1]);
1864         }
1865         else {
1866                 /* siginfo */
1867                 if (!tcp->u_arg[2])
1868                         tprintf("NULL");
1869                 else if (syserror(tcp))
1870                         tprintf("%#lx", tcp->u_arg[2]);
1871                 else if (umove(tcp, tcp->u_arg[2], &si) < 0)
1872                         tprintf("{???}");
1873                 else
1874                         printsiginfo(&si, verbose(tcp));
1875                 /* options */
1876                 tprintf(", ");
1877                 printflags(wait4_options, tcp->u_arg[3], "W???");
1878                 if (tcp->u_nargs > 4) {
1879                         /* usage */
1880                         tprintf(", ");
1881                         if (!tcp->u_arg[4])
1882                                 tprintf("NULL");
1883                         else if (tcp->u_error)
1884                                 tprintf("%#lx", tcp->u_arg[4]);
1885                         else
1886                                 printrusage(tcp, tcp->u_arg[4]);
1887                 }
1888         }
1889         return 0;
1890 }
1891
1892 #endif /* SVR4 or LINUX */
1893
1894 int
1895 sys_alarm(struct tcb *tcp)
1896 {
1897         if (entering(tcp))
1898                 tprintf("%lu", tcp->u_arg[0]);
1899         return 0;
1900 }
1901
1902 int
1903 sys_uname(struct tcb *tcp)
1904 {
1905         struct utsname uname;
1906
1907         if (exiting(tcp)) {
1908                 if (syserror(tcp) || !verbose(tcp))
1909                         tprintf("%#lx", tcp->u_arg[0]);
1910                 else if (umove(tcp, tcp->u_arg[0], &uname) < 0)
1911                         tprintf("{...}");
1912                 else if (!abbrev(tcp)) {
1913
1914                         tprintf("{sysname=\"%s\", nodename=\"%s\", ",
1915                                 uname.sysname, uname.nodename);
1916                         tprintf("release=\"%s\", version=\"%s\", ",
1917                                 uname.release, uname.version);
1918                         tprintf("machine=\"%s\"", uname.machine);
1919 #ifdef LINUX
1920 #ifndef __GLIBC__
1921                         tprintf(", domainname=\"%s\"", uname.domainname);
1922 #endif
1923 #endif
1924                         tprintf("}");
1925                 }
1926                 else
1927                         tprintf("{sys=\"%s\", node=\"%s\", ...}",
1928                                 uname.sysname, uname.nodename);
1929         }
1930         return 0;
1931 }
1932
1933 #ifndef SVR4
1934
1935 static const struct xlat ptrace_cmds[] = {
1936 # ifndef FREEBSD
1937         { PTRACE_TRACEME,       "PTRACE_TRACEME"        },
1938         { PTRACE_PEEKTEXT,      "PTRACE_PEEKTEXT"       },
1939         { PTRACE_PEEKDATA,      "PTRACE_PEEKDATA"       },
1940         { PTRACE_PEEKUSER,      "PTRACE_PEEKUSER"       },
1941         { PTRACE_POKETEXT,      "PTRACE_POKETEXT"       },
1942         { PTRACE_POKEDATA,      "PTRACE_POKEDATA"       },
1943         { PTRACE_POKEUSER,      "PTRACE_POKEUSER"       },
1944         { PTRACE_CONT,          "PTRACE_CONT"           },
1945         { PTRACE_KILL,          "PTRACE_KILL"           },
1946         { PTRACE_SINGLESTEP,    "PTRACE_SINGLESTEP"     },
1947         { PTRACE_ATTACH,        "PTRACE_ATTACH"         },
1948         { PTRACE_DETACH,        "PTRACE_DETACH"         },
1949 #  ifdef PTRACE_GETREGS
1950         { PTRACE_GETREGS,       "PTRACE_GETREGS"        },
1951 #  endif
1952 #  ifdef PTRACE_SETREGS
1953         { PTRACE_SETREGS,       "PTRACE_SETREGS"        },
1954 #  endif
1955 #  ifdef PTRACE_GETFPREGS
1956         { PTRACE_GETFPREGS,     "PTRACE_GETFPREGS"      },
1957 #  endif
1958 #  ifdef PTRACE_SETFPREGS
1959         { PTRACE_SETFPREGS,     "PTRACE_SETFPREGS"      },
1960 #  endif
1961 #  ifdef PTRACE_GETFPXREGS
1962         { PTRACE_GETFPXREGS,    "PTRACE_GETFPXREGS"     },
1963 #  endif
1964 #  ifdef PTRACE_SETFPXREGS
1965         { PTRACE_SETFPXREGS,    "PTRACE_SETFPXREGS"     },
1966 #  endif
1967 #  ifdef PTRACE_GETVRREGS
1968         { PTRACE_GETVRREGS,     "PTRACE_GETVRREGS"      },
1969 #  endif
1970 #  ifdef PTRACE_SETVRREGS
1971         { PTRACE_SETVRREGS,     "PTRACE_SETVRREGS"      },
1972 #  endif
1973 #  ifdef PTRACE_SETOPTIONS
1974         { PTRACE_SETOPTIONS,    "PTRACE_SETOPTIONS"     },
1975 #  endif
1976 #  ifdef PTRACE_GETEVENTMSG
1977         { PTRACE_GETEVENTMSG,   "PTRACE_GETEVENTMSG"    },
1978 #  endif
1979 #  ifdef PTRACE_GETSIGINFO
1980         { PTRACE_GETSIGINFO,    "PTRACE_GETSIGINFO"     },
1981 #  endif
1982 #  ifdef PTRACE_SETSIGINFO
1983         { PTRACE_SETSIGINFO,    "PTRACE_SETSIGINFO"     },
1984 #  endif
1985 #  ifdef PTRACE_GETREGSET
1986         { PTRACE_GETREGSET,     "PTRACE_GETREGSET"      },
1987 #  endif
1988 #  ifdef PTRACE_SETREGSET
1989         { PTRACE_SETREGSET,     "PTRACE_SETREGSET"      },
1990 #  endif
1991 #  ifdef PTRACE_SET_SYSCALL
1992         { PTRACE_SET_SYSCALL,   "PTRACE_SET_SYSCALL"    },
1993 #  endif
1994 #  ifdef SUNOS4
1995         { PTRACE_READDATA,      "PTRACE_READDATA"       },
1996         { PTRACE_WRITEDATA,     "PTRACE_WRITEDATA"      },
1997         { PTRACE_READTEXT,      "PTRACE_READTEXT"       },
1998         { PTRACE_WRITETEXT,     "PTRACE_WRITETEXT"      },
1999         { PTRACE_GETFPAREGS,    "PTRACE_GETFPAREGS"     },
2000         { PTRACE_SETFPAREGS,    "PTRACE_SETFPAREGS"     },
2001 #   ifdef SPARC
2002         { PTRACE_GETWINDOW,     "PTRACE_GETWINDOW"      },
2003         { PTRACE_SETWINDOW,     "PTRACE_SETWINDOW"      },
2004 #   else /* !SPARC */
2005         { PTRACE_22,            "PTRACE_22"             },
2006         { PTRACE_23,            "PTRACE_3"              },
2007 #   endif /* !SPARC */
2008 #  endif /* SUNOS4 */
2009         { PTRACE_SYSCALL,       "PTRACE_SYSCALL"        },
2010 #  ifdef SUNOS4
2011         { PTRACE_DUMPCORE,      "PTRACE_DUMPCORE"       },
2012 #   ifdef I386
2013         { PTRACE_SETWRBKPT,     "PTRACE_SETWRBKPT"      },
2014         { PTRACE_SETACBKPT,     "PTRACE_SETACBKPT"      },
2015         { PTRACE_CLRDR7,        "PTRACE_CLRDR7"         },
2016 #   else /* !I386 */
2017         { PTRACE_26,            "PTRACE_26"             },
2018         { PTRACE_27,            "PTRACE_27"             },
2019         { PTRACE_28,            "PTRACE_28"             },
2020 #   endif /* !I386 */
2021         { PTRACE_GETUCODE,      "PTRACE_GETUCODE"       },
2022 #  endif /* SUNOS4 */
2023
2024 # else /* FREEBSD */
2025
2026         { PT_TRACE_ME,          "PT_TRACE_ME"           },
2027         { PT_READ_I,            "PT_READ_I"             },
2028         { PT_READ_D,            "PT_READ_D"             },
2029         { PT_WRITE_I,           "PT_WRITE_I"            },
2030         { PT_WRITE_D,           "PT_WRITE_D"            },
2031 #  ifdef PT_READ_U
2032         { PT_READ_U,            "PT_READ_U"             },
2033 #  endif
2034         { PT_CONTINUE,          "PT_CONTINUE"           },
2035         { PT_KILL,              "PT_KILL"               },
2036         { PT_STEP,              "PT_STEP"               },
2037         { PT_ATTACH,            "PT_ATTACH"             },
2038         { PT_DETACH,            "PT_DETACH"             },
2039         { PT_GETREGS,           "PT_GETREGS"            },
2040         { PT_SETREGS,           "PT_SETREGS"            },
2041         { PT_GETFPREGS,         "PT_GETFPREGS"          },
2042         { PT_SETFPREGS,         "PT_SETFPREGS"          },
2043         { PT_GETDBREGS,         "PT_GETDBREGS"          },
2044         { PT_SETDBREGS,         "PT_SETDBREGS"          },
2045 # endif /* FREEBSD */
2046         { 0,                    NULL                    },
2047 };
2048
2049 # ifndef FREEBSD
2050 #  ifdef PTRACE_SETOPTIONS
2051 static const struct xlat ptrace_setoptions_flags[] = {
2052 #   ifdef PTRACE_O_TRACESYSGOOD
2053         { PTRACE_O_TRACESYSGOOD,"PTRACE_O_TRACESYSGOOD" },
2054 #   endif
2055 #   ifdef PTRACE_O_TRACEFORK
2056         { PTRACE_O_TRACEFORK,   "PTRACE_O_TRACEFORK"    },
2057 #   endif
2058 #   ifdef PTRACE_O_TRACEVFORK
2059         { PTRACE_O_TRACEVFORK,  "PTRACE_O_TRACEVFORK"   },
2060 #   endif
2061 #   ifdef PTRACE_O_TRACECLONE
2062         { PTRACE_O_TRACECLONE,  "PTRACE_O_TRACECLONE"   },
2063 #   endif
2064 #   ifdef PTRACE_O_TRACEEXEC
2065         { PTRACE_O_TRACEEXEC,   "PTRACE_O_TRACEEXEC"    },
2066 #   endif
2067 #   ifdef PTRACE_O_TRACEVFORKDONE
2068         { PTRACE_O_TRACEVFORKDONE,"PTRACE_O_TRACEVFORKDONE"},
2069 #   endif
2070 #   ifdef PTRACE_O_TRACEEXIT
2071         { PTRACE_O_TRACEEXIT,   "PTRACE_O_TRACEEXIT"    },
2072 #   endif
2073         { 0,                    NULL                    },
2074 };
2075 #  endif /* PTRACE_SETOPTIONS */
2076 # endif /* !FREEBSD */
2077
2078 # ifndef FREEBSD
2079 const struct xlat struct_user_offsets[] = {
2080 #  ifdef LINUX
2081 #   if defined(S390) || defined(S390X)
2082         { PT_PSWMASK,           "psw_mask"                              },
2083         { PT_PSWADDR,           "psw_addr"                              },
2084         { PT_GPR0,              "gpr0"                                  },
2085         { PT_GPR1,              "gpr1"                                  },
2086         { PT_GPR2,              "gpr2"                                  },
2087         { PT_GPR3,              "gpr3"                                  },
2088         { PT_GPR4,              "gpr4"                                  },
2089         { PT_GPR5,              "gpr5"                                  },
2090         { PT_GPR6,              "gpr6"                                  },
2091         { PT_GPR7,              "gpr7"                                  },
2092         { PT_GPR8,              "gpr8"                                  },
2093         { PT_GPR9,              "gpr9"                                  },
2094         { PT_GPR10,             "gpr10"                                 },
2095         { PT_GPR11,             "gpr11"                                 },
2096         { PT_GPR12,             "gpr12"                                 },
2097         { PT_GPR13,             "gpr13"                                 },
2098         { PT_GPR14,             "gpr14"                                 },
2099         { PT_GPR15,             "gpr15"                                 },
2100         { PT_ACR0,              "acr0"                                  },
2101         { PT_ACR1,              "acr1"                                  },
2102         { PT_ACR2,              "acr2"                                  },
2103         { PT_ACR3,              "acr3"                                  },
2104         { PT_ACR4,              "acr4"                                  },
2105         { PT_ACR5,              "acr5"                                  },
2106         { PT_ACR6,              "acr6"                                  },
2107         { PT_ACR7,              "acr7"                                  },
2108         { PT_ACR8,              "acr8"                                  },
2109         { PT_ACR9,              "acr9"                                  },
2110         { PT_ACR10,             "acr10"                                 },
2111         { PT_ACR11,             "acr11"                                 },
2112         { PT_ACR12,             "acr12"                                 },
2113         { PT_ACR13,             "acr13"                                 },
2114         { PT_ACR14,             "acr14"                                 },
2115         { PT_ACR15,             "acr15"                                 },
2116         { PT_ORIGGPR2,          "orig_gpr2"                             },
2117         { PT_FPC,               "fpc"                                   },
2118 #    if defined(S390)
2119         { PT_FPR0_HI,           "fpr0.hi"                               },
2120         { PT_FPR0_LO,           "fpr0.lo"                               },
2121         { PT_FPR1_HI,           "fpr1.hi"                               },
2122         { PT_FPR1_LO,           "fpr1.lo"                               },
2123         { PT_FPR2_HI,           "fpr2.hi"                               },
2124         { PT_FPR2_LO,           "fpr2.lo"                               },
2125         { PT_FPR3_HI,           "fpr3.hi"                               },
2126         { PT_FPR3_LO,           "fpr3.lo"                               },
2127         { PT_FPR4_HI,           "fpr4.hi"                               },
2128         { PT_FPR4_LO,           "fpr4.lo"                               },
2129         { PT_FPR5_HI,           "fpr5.hi"                               },
2130         { PT_FPR5_LO,           "fpr5.lo"                               },
2131         { PT_FPR6_HI,           "fpr6.hi"                               },
2132         { PT_FPR6_LO,           "fpr6.lo"                               },
2133         { PT_FPR7_HI,           "fpr7.hi"                               },
2134         { PT_FPR7_LO,           "fpr7.lo"                               },
2135         { PT_FPR8_HI,           "fpr8.hi"                               },
2136         { PT_FPR8_LO,           "fpr8.lo"                               },
2137         { PT_FPR9_HI,           "fpr9.hi"                               },
2138         { PT_FPR9_LO,           "fpr9.lo"                               },
2139         { PT_FPR10_HI,          "fpr10.hi"                              },
2140         { PT_FPR10_LO,          "fpr10.lo"                              },
2141         { PT_FPR11_HI,          "fpr11.hi"                              },
2142         { PT_FPR11_LO,          "fpr11.lo"                              },
2143         { PT_FPR12_HI,          "fpr12.hi"                              },
2144         { PT_FPR12_LO,          "fpr12.lo"                              },
2145         { PT_FPR13_HI,          "fpr13.hi"                              },
2146         { PT_FPR13_LO,          "fpr13.lo"                              },
2147         { PT_FPR14_HI,          "fpr14.hi"                              },
2148         { PT_FPR14_LO,          "fpr14.lo"                              },
2149         { PT_FPR15_HI,          "fpr15.hi"                              },
2150         { PT_FPR15_LO,          "fpr15.lo"                              },
2151 #    endif
2152 #    if defined(S390X)
2153         { PT_FPR0,              "fpr0"                                  },
2154         { PT_FPR1,              "fpr1"                                  },
2155         { PT_FPR2,              "fpr2"                                  },
2156         { PT_FPR3,              "fpr3"                                  },
2157         { PT_FPR4,              "fpr4"                                  },
2158         { PT_FPR5,              "fpr5"                                  },
2159         { PT_FPR6,              "fpr6"                                  },
2160         { PT_FPR7,              "fpr7"                                  },
2161         { PT_FPR8,              "fpr8"                                  },
2162         { PT_FPR9,              "fpr9"                                  },
2163         { PT_FPR10,             "fpr10"                                 },
2164         { PT_FPR11,             "fpr11"                                 },
2165         { PT_FPR12,             "fpr12"                                 },
2166         { PT_FPR13,             "fpr13"                                 },
2167         { PT_FPR14,             "fpr14"                                 },
2168         { PT_FPR15,             "fpr15"                                 },
2169 #    endif
2170         { PT_CR_9,              "cr9"                                   },
2171         { PT_CR_10,             "cr10"                                  },
2172         { PT_CR_11,             "cr11"                                  },
2173         { PT_IEEE_IP,           "ieee_exception_ip"                     },
2174 #   elif defined(SPARC)
2175         /* XXX No support for these offsets yet. */
2176 #   elif defined(HPPA)
2177         /* XXX No support for these offsets yet. */
2178 #   elif defined(POWERPC)
2179 #    ifndef PT_ORIG_R3
2180 #     define PT_ORIG_R3 34
2181 #    endif
2182 #    define REGSIZE (sizeof(unsigned long))
2183         { REGSIZE*PT_R0,                "r0"                            },
2184         { REGSIZE*PT_R1,                "r1"                            },
2185         { REGSIZE*PT_R2,                "r2"                            },
2186         { REGSIZE*PT_R3,                "r3"                            },
2187         { REGSIZE*PT_R4,                "r4"                            },
2188         { REGSIZE*PT_R5,                "r5"                            },
2189         { REGSIZE*PT_R6,                "r6"                            },
2190         { REGSIZE*PT_R7,                "r7"                            },
2191         { REGSIZE*PT_R8,                "r8"                            },
2192         { REGSIZE*PT_R9,                "r9"                            },
2193         { REGSIZE*PT_R10,               "r10"                           },
2194         { REGSIZE*PT_R11,               "r11"                           },
2195         { REGSIZE*PT_R12,               "r12"                           },
2196         { REGSIZE*PT_R13,               "r13"                           },
2197         { REGSIZE*PT_R14,               "r14"                           },
2198         { REGSIZE*PT_R15,               "r15"                           },
2199         { REGSIZE*PT_R16,               "r16"                           },
2200         { REGSIZE*PT_R17,               "r17"                           },
2201         { REGSIZE*PT_R18,               "r18"                           },
2202         { REGSIZE*PT_R19,               "r19"                           },
2203         { REGSIZE*PT_R20,               "r20"                           },
2204         { REGSIZE*PT_R21,               "r21"                           },
2205         { REGSIZE*PT_R22,               "r22"                           },
2206         { REGSIZE*PT_R23,               "r23"                           },
2207         { REGSIZE*PT_R24,               "r24"                           },
2208         { REGSIZE*PT_R25,               "r25"                           },
2209         { REGSIZE*PT_R26,               "r26"                           },
2210         { REGSIZE*PT_R27,               "r27"                           },
2211         { REGSIZE*PT_R28,               "r28"                           },
2212         { REGSIZE*PT_R29,               "r29"                           },
2213         { REGSIZE*PT_R30,               "r30"                           },
2214         { REGSIZE*PT_R31,               "r31"                           },
2215         { REGSIZE*PT_NIP,               "NIP"                           },
2216         { REGSIZE*PT_MSR,               "MSR"                           },
2217         { REGSIZE*PT_ORIG_R3,           "ORIG_R3"                       },
2218         { REGSIZE*PT_CTR,               "CTR"                           },
2219         { REGSIZE*PT_LNK,               "LNK"                           },
2220         { REGSIZE*PT_XER,               "XER"                           },
2221         { REGSIZE*PT_CCR,               "CCR"                           },
2222         { REGSIZE*PT_FPR0,              "FPR0"                          },
2223 #    undef REGSIZE
2224 #   elif defined(ALPHA)
2225         { 0,                    "r0"                                    },
2226         { 1,                    "r1"                                    },
2227         { 2,                    "r2"                                    },
2228         { 3,                    "r3"                                    },
2229         { 4,                    "r4"                                    },
2230         { 5,                    "r5"                                    },
2231         { 6,                    "r6"                                    },
2232         { 7,                    "r7"                                    },
2233         { 8,                    "r8"                                    },
2234         { 9,                    "r9"                                    },
2235         { 10,                   "r10"                                   },
2236         { 11,                   "r11"                                   },
2237         { 12,                   "r12"                                   },
2238         { 13,                   "r13"                                   },
2239         { 14,                   "r14"                                   },
2240         { 15,                   "r15"                                   },
2241         { 16,                   "r16"                                   },
2242         { 17,                   "r17"                                   },
2243         { 18,                   "r18"                                   },
2244         { 19,                   "r19"                                   },
2245         { 20,                   "r20"                                   },
2246         { 21,                   "r21"                                   },
2247         { 22,                   "r22"                                   },
2248         { 23,                   "r23"                                   },
2249         { 24,                   "r24"                                   },
2250         { 25,                   "r25"                                   },
2251         { 26,                   "r26"                                   },
2252         { 27,                   "r27"                                   },
2253         { 28,                   "r28"                                   },
2254         { 29,                   "gp"                                    },
2255         { 30,                   "fp"                                    },
2256         { 31,                   "zero"                                  },
2257         { 32,                   "fp0"                                   },
2258         { 33,                   "fp"                                    },
2259         { 34,                   "fp2"                                   },
2260         { 35,                   "fp3"                                   },
2261         { 36,                   "fp4"                                   },
2262         { 37,                   "fp5"                                   },
2263         { 38,                   "fp6"                                   },
2264         { 39,                   "fp7"                                   },
2265         { 40,                   "fp8"                                   },
2266         { 41,                   "fp9"                                   },
2267         { 42,                   "fp10"                                  },
2268         { 43,                   "fp11"                                  },
2269         { 44,                   "fp12"                                  },
2270         { 45,                   "fp13"                                  },
2271         { 46,                   "fp14"                                  },
2272         { 47,                   "fp15"                                  },
2273         { 48,                   "fp16"                                  },
2274         { 49,                   "fp17"                                  },
2275         { 50,                   "fp18"                                  },
2276         { 51,                   "fp19"                                  },
2277         { 52,                   "fp20"                                  },
2278         { 53,                   "fp21"                                  },
2279         { 54,                   "fp22"                                  },
2280         { 55,                   "fp23"                                  },
2281         { 56,                   "fp24"                                  },
2282         { 57,                   "fp25"                                  },
2283         { 58,                   "fp26"                                  },
2284         { 59,                   "fp27"                                  },
2285         { 60,                   "fp28"                                  },
2286         { 61,                   "fp29"                                  },
2287         { 62,                   "fp30"                                  },
2288         { 63,                   "fp31"                                  },
2289         { 64,                   "pc"                                    },
2290 #   elif defined(IA64)
2291         { PT_F32, "f32" }, { PT_F33, "f33" }, { PT_F34, "f34" },
2292         { PT_F35, "f35" }, { PT_F36, "f36" }, { PT_F37, "f37" },
2293         { PT_F38, "f38" }, { PT_F39, "f39" }, { PT_F40, "f40" },
2294         { PT_F41, "f41" }, { PT_F42, "f42" }, { PT_F43, "f43" },
2295         { PT_F44, "f44" }, { PT_F45, "f45" }, { PT_F46, "f46" },
2296         { PT_F47, "f47" }, { PT_F48, "f48" }, { PT_F49, "f49" },
2297         { PT_F50, "f50" }, { PT_F51, "f51" }, { PT_F52, "f52" },
2298         { PT_F53, "f53" }, { PT_F54, "f54" }, { PT_F55, "f55" },
2299         { PT_F56, "f56" }, { PT_F57, "f57" }, { PT_F58, "f58" },
2300         { PT_F59, "f59" }, { PT_F60, "f60" }, { PT_F61, "f61" },
2301         { PT_F62, "f62" }, { PT_F63, "f63" }, { PT_F64, "f64" },
2302         { PT_F65, "f65" }, { PT_F66, "f66" }, { PT_F67, "f67" },
2303         { PT_F68, "f68" }, { PT_F69, "f69" }, { PT_F70, "f70" },
2304         { PT_F71, "f71" }, { PT_F72, "f72" }, { PT_F73, "f73" },
2305         { PT_F74, "f74" }, { PT_F75, "f75" }, { PT_F76, "f76" },
2306         { PT_F77, "f77" }, { PT_F78, "f78" }, { PT_F79, "f79" },
2307         { PT_F80, "f80" }, { PT_F81, "f81" }, { PT_F82, "f82" },
2308         { PT_F83, "f83" }, { PT_F84, "f84" }, { PT_F85, "f85" },
2309         { PT_F86, "f86" }, { PT_F87, "f87" }, { PT_F88, "f88" },
2310         { PT_F89, "f89" }, { PT_F90, "f90" }, { PT_F91, "f91" },
2311         { PT_F92, "f92" }, { PT_F93, "f93" }, { PT_F94, "f94" },
2312         { PT_F95, "f95" }, { PT_F96, "f96" }, { PT_F97, "f97" },
2313         { PT_F98, "f98" }, { PT_F99, "f99" }, { PT_F100, "f100" },
2314         { PT_F101, "f101" }, { PT_F102, "f102" }, { PT_F103, "f103" },
2315         { PT_F104, "f104" }, { PT_F105, "f105" }, { PT_F106, "f106" },
2316         { PT_F107, "f107" }, { PT_F108, "f108" }, { PT_F109, "f109" },
2317         { PT_F110, "f110" }, { PT_F111, "f111" }, { PT_F112, "f112" },
2318         { PT_F113, "f113" }, { PT_F114, "f114" }, { PT_F115, "f115" },
2319         { PT_F116, "f116" }, { PT_F117, "f117" }, { PT_F118, "f118" },
2320         { PT_F119, "f119" }, { PT_F120, "f120" }, { PT_F121, "f121" },
2321         { PT_F122, "f122" }, { PT_F123, "f123" }, { PT_F124, "f124" },
2322         { PT_F125, "f125" }, { PT_F126, "f126" }, { PT_F127, "f127" },
2323         /* switch stack: */
2324         { PT_F2, "f2" }, { PT_F3, "f3" }, { PT_F4, "f4" },
2325         { PT_F5, "f5" }, { PT_F10, "f10" }, { PT_F11, "f11" },
2326         { PT_F12, "f12" }, { PT_F13, "f13" }, { PT_F14, "f14" },
2327         { PT_F15, "f15" }, { PT_F16, "f16" }, { PT_F17, "f17" },
2328         { PT_F18, "f18" }, { PT_F19, "f19" }, { PT_F20, "f20" },
2329         { PT_F21, "f21" }, { PT_F22, "f22" }, { PT_F23, "f23" },
2330         { PT_F24, "f24" }, { PT_F25, "f25" }, { PT_F26, "f26" },
2331         { PT_F27, "f27" }, { PT_F28, "f28" }, { PT_F29, "f29" },
2332         { PT_F30, "f30" }, { PT_F31, "f31" }, { PT_R4, "r4" },
2333         { PT_R5, "r5" }, { PT_R6, "r6" }, { PT_R7, "r7" },
2334         { PT_B1, "b1" }, { PT_B2, "b2" }, { PT_B3, "b3" },
2335         { PT_B4, "b4" }, { PT_B5, "b5" },
2336         { PT_AR_EC, "ar.ec" }, { PT_AR_LC, "ar.lc" },
2337         /* pt_regs */
2338         { PT_CR_IPSR, "psr" }, { PT_CR_IIP, "ip" },
2339         { PT_CFM, "cfm" }, { PT_AR_UNAT, "ar.unat" },
2340         { PT_AR_PFS, "ar.pfs" }, { PT_AR_RSC, "ar.rsc" },
2341         { PT_AR_RNAT, "ar.rnat" }, { PT_AR_BSPSTORE, "ar.bspstore" },
2342         { PT_PR, "pr" }, { PT_B6, "b6" }, { PT_AR_BSP, "ar.bsp" },
2343         { PT_R1, "r1" }, { PT_R2, "r2" }, { PT_R3, "r3" },
2344         { PT_R12, "r12" }, { PT_R13, "r13" }, { PT_R14, "r14" },
2345         { PT_R15, "r15" }, { PT_R8, "r8" }, { PT_R9, "r9" },
2346         { PT_R10, "r10" }, { PT_R11, "r11" }, { PT_R16, "r16" },
2347         { PT_R17, "r17" }, { PT_R18, "r18" }, { PT_R19, "r19" },
2348         { PT_R20, "r20" }, { PT_R21, "r21" }, { PT_R22, "r22" },
2349         { PT_R23, "r23" }, { PT_R24, "r24" }, { PT_R25, "r25" },
2350         { PT_R26, "r26" }, { PT_R27, "r27" }, { PT_R28, "r28" },
2351         { PT_R29, "r29" }, { PT_R30, "r30" }, { PT_R31, "r31" },
2352         { PT_AR_CCV, "ar.ccv" }, { PT_AR_FPSR, "ar.fpsr" },
2353         { PT_B0, "b0" }, { PT_B7, "b7" }, { PT_F6, "f6" },
2354         { PT_F7, "f7" }, { PT_F8, "f8" }, { PT_F9, "f9" },
2355 #    ifdef PT_AR_CSD
2356         { PT_AR_CSD, "ar.csd" },
2357 #    endif
2358 #    ifdef PT_AR_SSD
2359         { PT_AR_SSD, "ar.ssd" },
2360 #    endif
2361         { PT_DBR, "dbr" }, { PT_IBR, "ibr" }, { PT_PMD, "pmd" },
2362 #   elif defined(I386)
2363         { 4*EBX,                "4*EBX"                                 },
2364         { 4*ECX,                "4*ECX"                                 },
2365         { 4*EDX,                "4*EDX"                                 },
2366         { 4*ESI,                "4*ESI"                                 },
2367         { 4*EDI,                "4*EDI"                                 },
2368         { 4*EBP,                "4*EBP"                                 },
2369         { 4*EAX,                "4*EAX"                                 },
2370         { 4*DS,                 "4*DS"                                  },
2371         { 4*ES,                 "4*ES"                                  },
2372         { 4*FS,                 "4*FS"                                  },
2373         { 4*GS,                 "4*GS"                                  },
2374         { 4*ORIG_EAX,           "4*ORIG_EAX"                            },
2375         { 4*EIP,                "4*EIP"                                 },
2376         { 4*CS,                 "4*CS"                                  },
2377         { 4*EFL,                "4*EFL"                                 },
2378         { 4*UESP,               "4*UESP"                                },
2379         { 4*SS,                 "4*SS"                                  },
2380 #   elif defined(X86_64)
2381         { 8*R15,                "8*R15"                                 },
2382         { 8*R14,                "8*R14"                                 },
2383         { 8*R13,                "8*R13"                                 },
2384         { 8*R12,                "8*R12"                                 },
2385         { 8*RBP,                "8*RBP"                                 },
2386         { 8*RBX,                "8*RBX"                                 },
2387         { 8*R11,                "8*R11"                                 },
2388         { 8*R10,                "8*R10"                                 },
2389         { 8*R9,                 "8*R9"                                  },
2390         { 8*R8,                 "8*R8"                                  },
2391         { 8*RAX,                "8*RAX"                                 },
2392         { 8*RCX,                "8*RCX"                                 },
2393         { 8*RDX,                "8*RDX"                                 },
2394         { 8*RSI,                "8*RSI"                                 },
2395         { 8*RDI,                "8*RDI"                                 },
2396         { 8*ORIG_RAX,           "8*ORIG_RAX"                            },
2397         { 8*RIP,                "8*RIP"                                 },
2398         { 8*CS,                 "8*CS"                                  },
2399         { 8*EFLAGS,             "8*EFL"                                 },
2400         { 8*RSP,                "8*RSP"                                 },
2401         { 8*SS,                 "8*SS"                                  },
2402 #   elif defined(M68K)
2403         { 4*PT_D1,              "4*PT_D1"                               },
2404         { 4*PT_D2,              "4*PT_D2"                               },
2405         { 4*PT_D3,              "4*PT_D3"                               },
2406         { 4*PT_D4,              "4*PT_D4"                               },
2407         { 4*PT_D5,              "4*PT_D5"                               },
2408         { 4*PT_D6,              "4*PT_D6"                               },
2409         { 4*PT_D7,              "4*PT_D7"                               },
2410         { 4*PT_A0,              "4*PT_A0"                               },
2411         { 4*PT_A1,              "4*PT_A1"                               },
2412         { 4*PT_A2,              "4*PT_A2"                               },
2413         { 4*PT_A3,              "4*PT_A3"                               },
2414         { 4*PT_A4,              "4*PT_A4"                               },
2415         { 4*PT_A5,              "4*PT_A5"                               },
2416         { 4*PT_A6,              "4*PT_A6"                               },
2417         { 4*PT_D0,              "4*PT_D0"                               },
2418         { 4*PT_USP,             "4*PT_USP"                              },
2419         { 4*PT_ORIG_D0,         "4*PT_ORIG_D0"                          },
2420         { 4*PT_SR,              "4*PT_SR"                               },
2421         { 4*PT_PC,              "4*PT_PC"                               },
2422 #   elif defined(SH)
2423         { 4*REG_REG0,           "4*REG_REG0"                            },
2424         { 4*(REG_REG0+1),       "4*REG_REG1"                            },
2425         { 4*(REG_REG0+2),       "4*REG_REG2"                            },
2426         { 4*(REG_REG0+3),       "4*REG_REG3"                            },
2427         { 4*(REG_REG0+4),       "4*REG_REG4"                            },
2428         { 4*(REG_REG0+5),       "4*REG_REG5"                            },
2429         { 4*(REG_REG0+6),       "4*REG_REG6"                            },
2430         { 4*(REG_REG0+7),       "4*REG_REG7"                            },
2431         { 4*(REG_REG0+8),       "4*REG_REG8"                            },
2432         { 4*(REG_REG0+9),       "4*REG_REG9"                            },
2433         { 4*(REG_REG0+10),      "4*REG_REG10"                           },
2434         { 4*(REG_REG0+11),      "4*REG_REG11"                           },
2435         { 4*(REG_REG0+12),      "4*REG_REG12"                           },
2436         { 4*(REG_REG0+13),      "4*REG_REG13"                           },
2437         { 4*(REG_REG0+14),      "4*REG_REG14"                           },
2438         { 4*REG_REG15,          "4*REG_REG15"                           },
2439         { 4*REG_PC,             "4*REG_PC"                              },
2440         { 4*REG_PR,             "4*REG_PR"                              },
2441         { 4*REG_SR,             "4*REG_SR"                              },
2442         { 4*REG_GBR,            "4*REG_GBR"                             },
2443         { 4*REG_MACH,           "4*REG_MACH"                            },
2444         { 4*REG_MACL,           "4*REG_MACL"                            },
2445         { 4*REG_SYSCALL,        "4*REG_SYSCALL"                         },
2446         { 4*REG_FPUL,           "4*REG_FPUL"                            },
2447         { 4*REG_FPREG0,         "4*REG_FPREG0"                          },
2448         { 4*(REG_FPREG0+1),     "4*REG_FPREG1"                          },
2449         { 4*(REG_FPREG0+2),     "4*REG_FPREG2"                          },
2450         { 4*(REG_FPREG0+3),     "4*REG_FPREG3"                          },
2451         { 4*(REG_FPREG0+4),     "4*REG_FPREG4"                          },
2452         { 4*(REG_FPREG0+5),     "4*REG_FPREG5"                          },
2453         { 4*(REG_FPREG0+6),     "4*REG_FPREG6"                          },
2454         { 4*(REG_FPREG0+7),     "4*REG_FPREG7"                          },
2455         { 4*(REG_FPREG0+8),     "4*REG_FPREG8"                          },
2456         { 4*(REG_FPREG0+9),     "4*REG_FPREG9"                          },
2457         { 4*(REG_FPREG0+10),    "4*REG_FPREG10"                         },
2458         { 4*(REG_FPREG0+11),    "4*REG_FPREG11"                         },
2459         { 4*(REG_FPREG0+12),    "4*REG_FPREG12"                         },
2460         { 4*(REG_FPREG0+13),    "4*REG_FPREG13"                         },
2461         { 4*(REG_FPREG0+14),    "4*REG_FPREG14"                         },
2462         { 4*REG_FPREG15,        "4*REG_FPREG15"                         },
2463 #    ifdef REG_XDREG0
2464         { 4*REG_XDREG0,         "4*REG_XDREG0"                          },
2465         { 4*(REG_XDREG0+2),     "4*REG_XDREG2"                          },
2466         { 4*(REG_XDREG0+4),     "4*REG_XDREG4"                          },
2467         { 4*(REG_XDREG0+6),     "4*REG_XDREG6"                          },
2468         { 4*(REG_XDREG0+8),     "4*REG_XDREG8"                          },
2469         { 4*(REG_XDREG0+10),    "4*REG_XDREG10"                         },
2470         { 4*(REG_XDREG0+12),    "4*REG_XDREG12"                         },
2471         { 4*REG_XDREG14,        "4*REG_XDREG14"                         },
2472 #    endif
2473         { 4*REG_FPSCR,          "4*REG_FPSCR"                           },
2474 #   elif defined(SH64)
2475         { 0,                    "PC(L)"                                 },
2476         { 4,                    "PC(U)"                                 },
2477         { 8,                    "SR(L)"                                 },
2478         { 12,                   "SR(U)"                                 },
2479         { 16,                   "syscall no.(L)"                        },
2480         { 20,                   "syscall_no.(U)"                        },
2481         { 24,                   "R0(L)"                                 },
2482         { 28,                   "R0(U)"                                 },
2483         { 32,                   "R1(L)"                                 },
2484         { 36,                   "R1(U)"                                 },
2485         { 40,                   "R2(L)"                                 },
2486         { 44,                   "R2(U)"                                 },
2487         { 48,                   "R3(L)"                                 },
2488         { 52,                   "R3(U)"                                 },
2489         { 56,                   "R4(L)"                                 },
2490         { 60,                   "R4(U)"                                 },
2491         { 64,                   "R5(L)"                                 },
2492         { 68,                   "R5(U)"                                 },
2493         { 72,                   "R6(L)"                                 },
2494         { 76,                   "R6(U)"                                 },
2495         { 80,                   "R7(L)"                                 },
2496         { 84,                   "R7(U)"                                 },
2497         { 88,                   "R8(L)"                                 },
2498         { 92,                   "R8(U)"                                 },
2499         { 96,                   "R9(L)"                                 },
2500         { 100,                  "R9(U)"                                 },
2501         { 104,                  "R10(L)"                                },
2502         { 108,                  "R10(U)"                                },
2503         { 112,                  "R11(L)"                                },
2504         { 116,                  "R11(U)"                                },
2505         { 120,                  "R12(L)"                                },
2506         { 124,                  "R12(U)"                                },
2507         { 128,                  "R13(L)"                                },
2508         { 132,                  "R13(U)"                                },
2509         { 136,                  "R14(L)"                                },
2510         { 140,                  "R14(U)"                                },
2511         { 144,                  "R15(L)"                                },
2512         { 148,                  "R15(U)"                                },
2513         { 152,                  "R16(L)"                                },
2514         { 156,                  "R16(U)"                                },
2515         { 160,                  "R17(L)"                                },
2516         { 164,                  "R17(U)"                                },
2517         { 168,                  "R18(L)"                                },
2518         { 172,                  "R18(U)"                                },
2519         { 176,                  "R19(L)"                                },
2520         { 180,                  "R19(U)"                                },
2521         { 184,                  "R20(L)"                                },
2522         { 188,                  "R20(U)"                                },
2523         { 192,                  "R21(L)"                                },
2524         { 196,                  "R21(U)"                                },
2525         { 200,                  "R22(L)"                                },
2526         { 204,                  "R22(U)"                                },
2527         { 208,                  "R23(L)"                                },
2528         { 212,                  "R23(U)"                                },
2529         { 216,                  "R24(L)"                                },
2530         { 220,                  "R24(U)"                                },
2531         { 224,                  "R25(L)"                                },
2532         { 228,                  "R25(U)"                                },
2533         { 232,                  "R26(L)"                                },
2534         { 236,                  "R26(U)"                                },
2535         { 240,                  "R27(L)"                                },
2536         { 244,                  "R27(U)"                                },
2537         { 248,                  "R28(L)"                                },
2538         { 252,                  "R28(U)"                                },
2539         { 256,                  "R29(L)"                                },
2540         { 260,                  "R29(U)"                                },
2541         { 264,                  "R30(L)"                                },
2542         { 268,                  "R30(U)"                                },
2543         { 272,                  "R31(L)"                                },
2544         { 276,                  "R31(U)"                                },
2545         { 280,                  "R32(L)"                                },
2546         { 284,                  "R32(U)"                                },
2547         { 288,                  "R33(L)"                                },
2548         { 292,                  "R33(U)"                                },
2549         { 296,                  "R34(L)"                                },
2550         { 300,                  "R34(U)"                                },
2551         { 304,                  "R35(L)"                                },
2552         { 308,                  "R35(U)"                                },
2553         { 312,                  "R36(L)"                                },
2554         { 316,                  "R36(U)"                                },
2555         { 320,                  "R37(L)"                                },
2556         { 324,                  "R37(U)"                                },
2557         { 328,                  "R38(L)"                                },
2558         { 332,                  "R38(U)"                                },
2559         { 336,                  "R39(L)"                                },
2560         { 340,                  "R39(U)"                                },
2561         { 344,                  "R40(L)"                                },
2562         { 348,                  "R40(U)"                                },
2563         { 352,                  "R41(L)"                                },
2564         { 356,                  "R41(U)"                                },
2565         { 360,                  "R42(L)"                                },
2566         { 364,                  "R42(U)"                                },
2567         { 368,                  "R43(L)"                                },
2568         { 372,                  "R43(U)"                                },
2569         { 376,                  "R44(L)"                                },
2570         { 380,                  "R44(U)"                                },
2571         { 384,                  "R45(L)"                                },
2572         { 388,                  "R45(U)"                                },
2573         { 392,                  "R46(L)"                                },
2574         { 396,                  "R46(U)"                                },
2575         { 400,                  "R47(L)"                                },
2576         { 404,                  "R47(U)"                                },
2577         { 408,                  "R48(L)"                                },
2578         { 412,                  "R48(U)"                                },
2579         { 416,                  "R49(L)"                                },
2580         { 420,                  "R49(U)"                                },
2581         { 424,                  "R50(L)"                                },
2582         { 428,                  "R50(U)"                                },
2583         { 432,                  "R51(L)"                                },
2584         { 436,                  "R51(U)"                                },
2585         { 440,                  "R52(L)"                                },
2586         { 444,                  "R52(U)"                                },
2587         { 448,                  "R53(L)"                                },
2588         { 452,                  "R53(U)"                                },
2589         { 456,                  "R54(L)"                                },
2590         { 460,                  "R54(U)"                                },
2591         { 464,                  "R55(L)"                                },
2592         { 468,                  "R55(U)"                                },
2593         { 472,                  "R56(L)"                                },
2594         { 476,                  "R56(U)"                                },
2595         { 480,                  "R57(L)"                                },
2596         { 484,                  "R57(U)"                                },
2597         { 488,                  "R58(L)"                                },
2598         { 492,                  "R58(U)"                                },
2599         { 496,                  "R59(L)"                                },
2600         { 500,                  "R59(U)"                                },
2601         { 504,                  "R60(L)"                                },
2602         { 508,                  "R60(U)"                                },
2603         { 512,                  "R61(L)"                                },
2604         { 516,                  "R61(U)"                                },
2605         { 520,                  "R62(L)"                                },
2606         { 524,                  "R62(U)"                                },
2607         { 528,                  "TR0(L)"                                },
2608         { 532,                  "TR0(U)"                                },
2609         { 536,                  "TR1(L)"                                },
2610         { 540,                  "TR1(U)"                                },
2611         { 544,                  "TR2(L)"                                },
2612         { 548,                  "TR2(U)"                                },
2613         { 552,                  "TR3(L)"                                },
2614         { 556,                  "TR3(U)"                                },
2615         { 560,                  "TR4(L)"                                },
2616         { 564,                  "TR4(U)"                                },
2617         { 568,                  "TR5(L)"                                },
2618         { 572,                  "TR5(U)"                                },
2619         { 576,                  "TR6(L)"                                },
2620         { 580,                  "TR6(U)"                                },
2621         { 584,                  "TR7(L)"                                },
2622         { 588,                  "TR7(U)"                                },
2623         /* This entry is in case pt_regs contains dregs (depends on
2624            the kernel build options). */
2625         { uoff(regs),           "offsetof(struct user, regs)"           },
2626         { uoff(fpu),            "offsetof(struct user, fpu)"            },
2627 #   elif defined(ARM)
2628         { uoff(regs.ARM_r0),    "r0"                                    },
2629         { uoff(regs.ARM_r1),    "r1"                                    },
2630         { uoff(regs.ARM_r2),    "r2"                                    },
2631         { uoff(regs.ARM_r3),    "r3"                                    },
2632         { uoff(regs.ARM_r4),    "r4"                                    },
2633         { uoff(regs.ARM_r5),    "r5"                                    },
2634         { uoff(regs.ARM_r6),    "r6"                                    },
2635         { uoff(regs.ARM_r7),    "r7"                                    },
2636         { uoff(regs.ARM_r8),    "r8"                                    },
2637         { uoff(regs.ARM_r9),    "r9"                                    },
2638         { uoff(regs.ARM_r10),   "r10"                                   },
2639         { uoff(regs.ARM_fp),    "fp"                                    },
2640         { uoff(regs.ARM_ip),    "ip"                                    },
2641         { uoff(regs.ARM_sp),    "sp"                                    },
2642         { uoff(regs.ARM_lr),    "lr"                                    },
2643         { uoff(regs.ARM_pc),    "pc"                                    },
2644         { uoff(regs.ARM_cpsr),  "cpsr"                                  },
2645 #   elif defined(AVR32)
2646         { uoff(regs.sr),        "sr"                                    },
2647         { uoff(regs.pc),        "pc"                                    },
2648         { uoff(regs.lr),        "lr"                                    },
2649         { uoff(regs.sp),        "sp"                                    },
2650         { uoff(regs.r12),       "r12"                                   },
2651         { uoff(regs.r11),       "r11"                                   },
2652         { uoff(regs.r10),       "r10"                                   },
2653         { uoff(regs.r9),        "r9"                                    },
2654         { uoff(regs.r8),        "r8"                                    },
2655         { uoff(regs.r7),        "r7"                                    },
2656         { uoff(regs.r6),        "r6"                                    },
2657         { uoff(regs.r5),        "r5"                                    },
2658         { uoff(regs.r4),        "r4"                                    },
2659         { uoff(regs.r3),        "r3"                                    },
2660         { uoff(regs.r2),        "r2"                                    },
2661         { uoff(regs.r1),        "r1"                                    },
2662         { uoff(regs.r0),        "r0"                                    },
2663         { uoff(regs.r12_orig),  "orig_r12"                              },
2664 #   elif defined(MIPS)
2665         { 0,                    "r0"                                    },
2666         { 1,                    "r1"                                    },
2667         { 2,                    "r2"                                    },
2668         { 3,                    "r3"                                    },
2669         { 4,                    "r4"                                    },
2670         { 5,                    "r5"                                    },
2671         { 6,                    "r6"                                    },
2672         { 7,                    "r7"                                    },
2673         { 8,                    "r8"                                    },
2674         { 9,                    "r9"                                    },
2675         { 10,                   "r10"                                   },
2676         { 11,                   "r11"                                   },
2677         { 12,                   "r12"                                   },
2678         { 13,                   "r13"                                   },
2679         { 14,                   "r14"                                   },
2680         { 15,                   "r15"                                   },
2681         { 16,                   "r16"                                   },
2682         { 17,                   "r17"                                   },
2683         { 18,                   "r18"                                   },
2684         { 19,                   "r19"                                   },
2685         { 20,                   "r20"                                   },
2686         { 21,                   "r21"                                   },
2687         { 22,                   "r22"                                   },
2688         { 23,                   "r23"                                   },
2689         { 24,                   "r24"                                   },
2690         { 25,                   "r25"                                   },
2691         { 26,                   "r26"                                   },
2692         { 27,                   "r27"                                   },
2693         { 28,                   "r28"                                   },
2694         { 29,                   "r29"                                   },
2695         { 30,                   "r30"                                   },
2696         { 31,                   "r31"                                   },
2697         { 32,                   "f0"                                    },
2698         { 33,                   "f1"                                    },
2699         { 34,                   "f2"                                    },
2700         { 35,                   "f3"                                    },
2701         { 36,                   "f4"                                    },
2702         { 37,                   "f5"                                    },
2703         { 38,                   "f6"                                    },
2704         { 39,                   "f7"                                    },
2705         { 40,                   "f8"                                    },
2706         { 41,                   "f9"                                    },
2707         { 42,                   "f10"                                   },
2708         { 43,                   "f11"                                   },
2709         { 44,                   "f12"                                   },
2710         { 45,                   "f13"                                   },
2711         { 46,                   "f14"                                   },
2712         { 47,                   "f15"                                   },
2713         { 48,                   "f16"                                   },
2714         { 49,                   "f17"                                   },
2715         { 50,                   "f18"                                   },
2716         { 51,                   "f19"                                   },
2717         { 52,                   "f20"                                   },
2718         { 53,                   "f21"                                   },
2719         { 54,                   "f22"                                   },
2720         { 55,                   "f23"                                   },
2721         { 56,                   "f24"                                   },
2722         { 57,                   "f25"                                   },
2723         { 58,                   "f26"                                   },
2724         { 59,                   "f27"                                   },
2725         { 60,                   "f28"                                   },
2726         { 61,                   "f29"                                   },
2727         { 62,                   "f30"                                   },
2728         { 63,                   "f31"                                   },
2729         { 64,                   "pc"                                    },
2730         { 65,                   "cause"                                 },
2731         { 66,                   "badvaddr"                              },
2732         { 67,                   "mmhi"                                  },
2733         { 68,                   "mmlo"                                  },
2734         { 69,                   "fpcsr"                                 },
2735         { 70,                   "fpeir"                                 },
2736 #   elif defined(TILE)
2737         { PTREGS_OFFSET_REG(0),  "r0"  },
2738         { PTREGS_OFFSET_REG(1),  "r1"  },
2739         { PTREGS_OFFSET_REG(2),  "r2"  },
2740         { PTREGS_OFFSET_REG(3),  "r3"  },
2741         { PTREGS_OFFSET_REG(4),  "r4"  },
2742         { PTREGS_OFFSET_REG(5),  "r5"  },
2743         { PTREGS_OFFSET_REG(6),  "r6"  },
2744         { PTREGS_OFFSET_REG(7),  "r7"  },
2745         { PTREGS_OFFSET_REG(8),  "r8"  },
2746         { PTREGS_OFFSET_REG(9),  "r9"  },
2747         { PTREGS_OFFSET_REG(10), "r10" },
2748         { PTREGS_OFFSET_REG(11), "r11" },
2749         { PTREGS_OFFSET_REG(12), "r12" },
2750         { PTREGS_OFFSET_REG(13), "r13" },
2751         { PTREGS_OFFSET_REG(14), "r14" },
2752         { PTREGS_OFFSET_REG(15), "r15" },
2753         { PTREGS_OFFSET_REG(16), "r16" },
2754         { PTREGS_OFFSET_REG(17), "r17" },
2755         { PTREGS_OFFSET_REG(18), "r18" },
2756         { PTREGS_OFFSET_REG(19), "r19" },
2757         { PTREGS_OFFSET_REG(20), "r20" },
2758         { PTREGS_OFFSET_REG(21), "r21" },
2759         { PTREGS_OFFSET_REG(22), "r22" },
2760         { PTREGS_OFFSET_REG(23), "r23" },
2761         { PTREGS_OFFSET_REG(24), "r24" },
2762         { PTREGS_OFFSET_REG(25), "r25" },
2763         { PTREGS_OFFSET_REG(26), "r26" },
2764         { PTREGS_OFFSET_REG(27), "r27" },
2765         { PTREGS_OFFSET_REG(28), "r28" },
2766         { PTREGS_OFFSET_REG(29), "r29" },
2767         { PTREGS_OFFSET_REG(30), "r30" },
2768         { PTREGS_OFFSET_REG(31), "r31" },
2769         { PTREGS_OFFSET_REG(32), "r32" },
2770         { PTREGS_OFFSET_REG(33), "r33" },
2771         { PTREGS_OFFSET_REG(34), "r34" },
2772         { PTREGS_OFFSET_REG(35), "r35" },
2773         { PTREGS_OFFSET_REG(36), "r36" },
2774         { PTREGS_OFFSET_REG(37), "r37" },
2775         { PTREGS_OFFSET_REG(38), "r38" },
2776         { PTREGS_OFFSET_REG(39), "r39" },
2777         { PTREGS_OFFSET_REG(40), "r40" },
2778         { PTREGS_OFFSET_REG(41), "r41" },
2779         { PTREGS_OFFSET_REG(42), "r42" },
2780         { PTREGS_OFFSET_REG(43), "r43" },
2781         { PTREGS_OFFSET_REG(44), "r44" },
2782         { PTREGS_OFFSET_REG(45), "r45" },
2783         { PTREGS_OFFSET_REG(46), "r46" },
2784         { PTREGS_OFFSET_REG(47), "r47" },
2785         { PTREGS_OFFSET_REG(48), "r48" },
2786         { PTREGS_OFFSET_REG(49), "r49" },
2787         { PTREGS_OFFSET_REG(50), "r50" },
2788         { PTREGS_OFFSET_REG(51), "r51" },
2789         { PTREGS_OFFSET_REG(52), "r52" },
2790         { PTREGS_OFFSET_TP, "tp" },
2791         { PTREGS_OFFSET_SP, "sp" },
2792         { PTREGS_OFFSET_LR, "lr" },
2793         { PTREGS_OFFSET_PC, "pc" },
2794         { PTREGS_OFFSET_EX1, "ex1" },
2795         { PTREGS_OFFSET_FAULTNUM, "faultnum" },
2796         { PTREGS_OFFSET_ORIG_R0, "orig_r0" },
2797         { PTREGS_OFFSET_FLAGS, "flags" },
2798 #   endif
2799 #   ifdef CRISV10
2800         { 4*PT_FRAMETYPE, "4*PT_FRAMETYPE" },
2801         { 4*PT_ORIG_R10, "4*PT_ORIG_R10" },
2802         { 4*PT_R13, "4*PT_R13" },
2803         { 4*PT_R12, "4*PT_R12" },
2804         { 4*PT_R11, "4*PT_R11" },
2805         { 4*PT_R10, "4*PT_R10" },
2806         { 4*PT_R9, "4*PT_R9" },
2807         { 4*PT_R8, "4*PT_R8" },
2808         { 4*PT_R7, "4*PT_R7" },
2809         { 4*PT_R6, "4*PT_R6" },
2810         { 4*PT_R5, "4*PT_R5" },
2811         { 4*PT_R4, "4*PT_R4" },
2812         { 4*PT_R3, "4*PT_R3" },
2813         { 4*PT_R2, "4*PT_R2" },
2814         { 4*PT_R1, "4*PT_R1" },
2815         { 4*PT_R0, "4*PT_R0" },
2816         { 4*PT_MOF, "4*PT_MOF" },
2817         { 4*PT_DCCR, "4*PT_DCCR" },
2818         { 4*PT_SRP, "4*PT_SRP" },
2819         { 4*PT_IRP, "4*PT_IRP" },
2820         { 4*PT_CSRINSTR, "4*PT_CSRINSTR" },
2821         { 4*PT_CSRADDR, "4*PT_CSRADDR" },
2822         { 4*PT_CSRDATA, "4*PT_CSRDATA" },
2823         { 4*PT_USP, "4*PT_USP" },
2824 #   endif
2825 #   ifdef CRISV32
2826         { 4*PT_ORIG_R10, "4*PT_ORIG_R10" },
2827         { 4*PT_R0, "4*PT_R0" },
2828         { 4*PT_R1, "4*PT_R1" },
2829         { 4*PT_R2, "4*PT_R2" },
2830         { 4*PT_R3, "4*PT_R3" },
2831         { 4*PT_R4, "4*PT_R4" },
2832         { 4*PT_R5, "4*PT_R5" },
2833         { 4*PT_R6, "4*PT_R6" },
2834         { 4*PT_R7, "4*PT_R7" },
2835         { 4*PT_R8, "4*PT_R8" },
2836         { 4*PT_R9, "4*PT_R9" },
2837         { 4*PT_R10, "4*PT_R10" },
2838         { 4*PT_R11, "4*PT_R11" },
2839         { 4*PT_R12, "4*PT_R12" },
2840         { 4*PT_R13, "4*PT_R13" },
2841         { 4*PT_ACR, "4*PT_ACR" },
2842         { 4*PT_SRS, "4*PT_SRS" },
2843         { 4*PT_MOF, "4*PT_MOF" },
2844         { 4*PT_SPC, "4*PT_SPC" },
2845         { 4*PT_CCS, "4*PT_CCS" },
2846         { 4*PT_SRP, "4*PT_SRP" },
2847         { 4*PT_ERP, "4*PT_ERP" },
2848         { 4*PT_EXS, "4*PT_EXS" },
2849         { 4*PT_EDA, "4*PT_EDA" },
2850         { 4*PT_USP, "4*PT_USP" },
2851         { 4*PT_PPC, "4*PT_PPC" },
2852         { 4*PT_BP_CTRL, "4*PT_BP_CTRL" },
2853         { 4*PT_BP+4, "4*PT_BP+4" },
2854         { 4*PT_BP+8, "4*PT_BP+8" },
2855         { 4*PT_BP+12, "4*PT_BP+12" },
2856         { 4*PT_BP+16, "4*PT_BP+16" },
2857         { 4*PT_BP+20, "4*PT_BP+20" },
2858         { 4*PT_BP+24, "4*PT_BP+24" },
2859         { 4*PT_BP+28, "4*PT_BP+28" },
2860         { 4*PT_BP+32, "4*PT_BP+32" },
2861         { 4*PT_BP+36, "4*PT_BP+36" },
2862         { 4*PT_BP+40, "4*PT_BP+40" },
2863         { 4*PT_BP+44, "4*PT_BP+44" },
2864         { 4*PT_BP+48, "4*PT_BP+48" },
2865         { 4*PT_BP+52, "4*PT_BP+52" },
2866         { 4*PT_BP+56, "4*PT_BP+56" },
2867 #   endif
2868 #   ifdef MICROBLAZE
2869         { PT_GPR(0),            "r0"                                    },
2870         { PT_GPR(1),            "r1"                                    },
2871         { PT_GPR(2),            "r2"                                    },
2872         { PT_GPR(3),            "r3"                                    },
2873         { PT_GPR(4),            "r4"                                    },
2874         { PT_GPR(5),            "r5"                                    },
2875         { PT_GPR(6),            "r6"                                    },
2876         { PT_GPR(7),            "r7"                                    },
2877         { PT_GPR(8),            "r8"                                    },
2878         { PT_GPR(9),            "r9"                                    },
2879         { PT_GPR(10),           "r10"                                   },
2880         { PT_GPR(11),           "r11"                                   },
2881         { PT_GPR(12),           "r12"                                   },
2882         { PT_GPR(13),           "r13"                                   },
2883         { PT_GPR(14),           "r14"                                   },
2884         { PT_GPR(15),           "r15"                                   },
2885         { PT_GPR(16),           "r16"                                   },
2886         { PT_GPR(17),           "r17"                                   },
2887         { PT_GPR(18),           "r18"                                   },
2888         { PT_GPR(19),           "r19"                                   },
2889         { PT_GPR(20),           "r20"                                   },
2890         { PT_GPR(21),           "r21"                                   },
2891         { PT_GPR(22),           "r22"                                   },
2892         { PT_GPR(23),           "r23"                                   },
2893         { PT_GPR(24),           "r24"                                   },
2894         { PT_GPR(25),           "r25"                                   },
2895         { PT_GPR(26),           "r26"                                   },
2896         { PT_GPR(27),           "r27"                                   },
2897         { PT_GPR(28),           "r28"                                   },
2898         { PT_GPR(29),           "r29"                                   },
2899         { PT_GPR(30),           "r30"                                   },
2900         { PT_GPR(31),           "r31"                                   },
2901         { PT_PC,                "rpc",                                  },
2902         { PT_MSR,               "rmsr",                                 },
2903         { PT_EAR,               "rear",                                 },
2904         { PT_ESR,               "resr",                                 },
2905         { PT_FSR,               "rfsr",                                 },
2906         { PT_KERNEL_MODE,       "kernel_mode",                          },
2907 #   endif
2908
2909 #   if !defined(SPARC) && !defined(HPPA) && !defined(POWERPC) \
2910                 && !defined(ALPHA) && !defined(IA64) \
2911                 && !defined(CRISV10) && !defined(CRISV32) && !defined(MICROBLAZE)
2912 #    if !defined(S390) && !defined(S390X) && !defined(MIPS) && !defined(SPARC64) && !defined(AVR32) && !defined(BFIN) && !defined(TILE)
2913         { uoff(u_fpvalid),      "offsetof(struct user, u_fpvalid)"      },
2914 #    endif
2915 #    if defined(I386) || defined(X86_64)
2916         { uoff(i387),           "offsetof(struct user, i387)"           },
2917 #    endif
2918 #    if defined(M68K)
2919         { uoff(m68kfp),         "offsetof(struct user, m68kfp)"         },
2920 #    endif
2921         { uoff(u_tsize),        "offsetof(struct user, u_tsize)"        },
2922         { uoff(u_dsize),        "offsetof(struct user, u_dsize)"        },
2923         { uoff(u_ssize),        "offsetof(struct user, u_ssize)"        },
2924 #    if !defined(SPARC64)
2925         { uoff(start_code),     "offsetof(struct user, start_code)"     },
2926 #    endif
2927 #    if defined(AVR32) || defined(SH64)
2928         { uoff(start_data),     "offsetof(struct user, start_data)"     },
2929 #    endif
2930 #    if !defined(SPARC64)
2931         { uoff(start_stack),    "offsetof(struct user, start_stack)"    },
2932 #    endif
2933         { uoff(signal),         "offsetof(struct user, signal)"         },
2934 #    if !defined(AVR32) && !defined(S390) && !defined(S390X) && !defined(MIPS) && !defined(SH) && !defined(SH64) && !defined(SPARC64) && !defined(TILE)
2935         { uoff(reserved),       "offsetof(struct user, reserved)"       },
2936 #    endif
2937 #    if !defined(SPARC64)
2938         { uoff(u_ar0),          "offsetof(struct user, u_ar0)"          },
2939 #    endif
2940 #    if !defined(ARM) && !defined(AVR32) && !defined(MIPS) && !defined(S390) && !defined(S390X) && !defined(SPARC64) && !defined(BFIN) && !defined(TILE)
2941         { uoff(u_fpstate),      "offsetof(struct user, u_fpstate)"      },
2942 #    endif
2943         { uoff(magic),          "offsetof(struct user, magic)"          },
2944         { uoff(u_comm),         "offsetof(struct user, u_comm)"         },
2945 #    if defined(I386) || defined(X86_64)
2946         { uoff(u_debugreg),     "offsetof(struct user, u_debugreg)"     },
2947 #    endif
2948 #   endif /* !defined(many arches) */
2949
2950 #  endif /* LINUX */
2951
2952 #  ifdef SUNOS4
2953         { uoff(u_pcb),          "offsetof(struct user, u_pcb)"          },
2954         { uoff(u_procp),        "offsetof(struct user, u_procp)"        },
2955         { uoff(u_ar0),          "offsetof(struct user, u_ar0)"          },
2956         { uoff(u_comm[0]),      "offsetof(struct user, u_comm[0])"      },
2957         { uoff(u_arg[0]),       "offsetof(struct user, u_arg[0])"       },
2958         { uoff(u_ap),           "offsetof(struct user, u_ap)"           },
2959         { uoff(u_qsave),        "offsetof(struct user, u_qsave)"        },
2960         { uoff(u_rval1),        "offsetof(struct user, u_rval1)"        },
2961         { uoff(u_rval2),        "offsetof(struct user, u_rval2)"        },
2962         { uoff(u_error),        "offsetof(struct user, u_error)"        },
2963         { uoff(u_eosys),        "offsetof(struct user, u_eosys)"        },
2964         { uoff(u_ssave),        "offsetof(struct user, u_ssave)"        },
2965         { uoff(u_signal[0]),    "offsetof(struct user, u_signal)"       },
2966         { uoff(u_sigmask[0]),   "offsetof(struct user, u_sigmask)"      },
2967         { uoff(u_sigonstack),   "offsetof(struct user, u_sigonstack)"   },
2968         { uoff(u_sigintr),      "offsetof(struct user, u_sigintr)"      },
2969         { uoff(u_sigreset),     "offsetof(struct user, u_sigreset)"     },
2970         { uoff(u_oldmask),      "offsetof(struct user, u_oldmask)"      },
2971         { uoff(u_code),         "offsetof(struct user, u_code)"         },
2972         { uoff(u_addr),         "offsetof(struct user, u_addr)"         },
2973         { uoff(u_sigstack),     "offsetof(struct user, u_sigstack)"     },
2974         { uoff(u_ofile),        "offsetof(struct user, u_ofile)"        },
2975         { uoff(u_pofile),       "offsetof(struct user, u_pofile)"       },
2976         { uoff(u_ofile_arr[0]), "offsetof(struct user, u_ofile_arr[0])" },
2977         { uoff(u_pofile_arr[0]),"offsetof(struct user, u_pofile_arr[0])"},
2978         { uoff(u_lastfile),     "offsetof(struct user, u_lastfile)"     },
2979         { uoff(u_cwd),          "offsetof(struct user, u_cwd)"          },
2980         { uoff(u_cdir),         "offsetof(struct user, u_cdir)"         },
2981         { uoff(u_rdir),         "offsetof(struct user, u_rdir)"         },
2982         { uoff(u_cmask),        "offsetof(struct user, u_cmask)"        },
2983         { uoff(u_ru),           "offsetof(struct user, u_ru)"           },
2984         { uoff(u_cru),          "offsetof(struct user, u_cru)"          },
2985         { uoff(u_timer[0]),     "offsetof(struct user, u_timer[0])"     },
2986         { uoff(u_XXX[0]),       "offsetof(struct user, u_XXX[0])"       },
2987         { uoff(u_ioch),         "offsetof(struct user, u_ioch)"         },
2988         { uoff(u_start),        "offsetof(struct user, u_start)"        },
2989         { uoff(u_acflag),       "offsetof(struct user, u_acflag)"       },
2990         { uoff(u_prof.pr_base), "offsetof(struct user, u_prof.pr_base)" },
2991         { uoff(u_prof.pr_size), "offsetof(struct user, u_prof.pr_size)" },
2992         { uoff(u_prof.pr_off),  "offsetof(struct user, u_prof.pr_off)"  },
2993         { uoff(u_prof.pr_scale),"offsetof(struct user, u_prof.pr_scale)"},
2994         { uoff(u_rlimit[0]),    "offsetof(struct user, u_rlimit)"       },
2995         { uoff(u_exdata.Ux_A),  "offsetof(struct user, u_exdata.Ux_A)"  },
2996         { uoff(u_exdata.ux_shell[0]),"offsetof(struct user, u_exdata.ux_shell[0])"},
2997         { uoff(u_lofault),      "offsetof(struct user, u_lofault)"      },
2998 #  endif /* SUNOS4 */
2999 #  ifndef HPPA
3000         { sizeof(struct user),  "sizeof(struct user)"                   },
3001 #  endif
3002         { 0,                    NULL                                    },
3003 };
3004 # endif /* !FREEBSD */
3005
3006 int
3007 sys_ptrace(struct tcb *tcp)
3008 {
3009         const struct xlat *x;
3010         long addr;
3011
3012         if (entering(tcp)) {
3013                 printxval(ptrace_cmds, tcp->u_arg[0],
3014 # ifndef FREEBSD
3015                           "PTRACE_???"
3016 # else
3017                           "PT_???"
3018 # endif
3019                         );
3020                 tprintf(", %lu, ", tcp->u_arg[1]);
3021                 addr = tcp->u_arg[2];
3022 # ifndef FREEBSD
3023                 if (tcp->u_arg[0] == PTRACE_PEEKUSER
3024                         || tcp->u_arg[0] == PTRACE_POKEUSER) {
3025                         for (x = struct_user_offsets; x->str; x++) {
3026                                 if (x->val >= addr)
3027                                         break;
3028                         }
3029                         if (!x->str)
3030                                 tprintf("%#lx, ", addr);
3031                         else if (x->val > addr && x != struct_user_offsets) {
3032                                 x--;
3033                                 tprintf("%s + %ld, ", x->str, addr - x->val);
3034                         }
3035                         else
3036                                 tprintf("%s, ", x->str);
3037                 }
3038                 else
3039 # endif
3040                         tprintf("%#lx, ", tcp->u_arg[2]);
3041 # ifdef LINUX
3042                 switch (tcp->u_arg[0]) {
3043 #  ifndef IA64
3044                 case PTRACE_PEEKDATA:
3045                 case PTRACE_PEEKTEXT:
3046                 case PTRACE_PEEKUSER:
3047                         break;
3048 #  endif
3049                 case PTRACE_CONT:
3050                 case PTRACE_SINGLESTEP:
3051                 case PTRACE_SYSCALL:
3052                 case PTRACE_DETACH:
3053                         printsignal(tcp->u_arg[3]);
3054                         break;
3055 #  ifdef PTRACE_SETOPTIONS
3056                 case PTRACE_SETOPTIONS:
3057                         printflags(ptrace_setoptions_flags, tcp->u_arg[3], "PTRACE_O_???");
3058                         break;
3059 #  endif
3060 #  ifdef PTRACE_SETSIGINFO
3061                 case PTRACE_SETSIGINFO: {
3062                         siginfo_t si;
3063                         if (!tcp->u_arg[3])
3064                                 tprintf("NULL");
3065                         else if (syserror(tcp))
3066                                 tprintf("%#lx", tcp->u_arg[3]);
3067                         else if (umove(tcp, tcp->u_arg[3], &si) < 0)
3068                                 tprintf("{???}");
3069                         else
3070                                 printsiginfo(&si, verbose(tcp));
3071                         break;
3072                 }
3073 #  endif
3074 #  ifdef PTRACE_GETSIGINFO
3075                 case PTRACE_GETSIGINFO:
3076                         /* Don't print anything, do it at syscall return. */
3077                         break;
3078 #  endif
3079                 default:
3080                         tprintf("%#lx", tcp->u_arg[3]);
3081                         break;
3082                 }
3083         } else {
3084                 switch (tcp->u_arg[0]) {
3085                 case PTRACE_PEEKDATA:
3086                 case PTRACE_PEEKTEXT:
3087                 case PTRACE_PEEKUSER:
3088 #  ifdef IA64
3089                         return RVAL_HEX;
3090 #  else
3091                         printnum(tcp, tcp->u_arg[3], "%#lx");
3092                         break;
3093 #  endif
3094 #  ifdef PTRACE_GETSIGINFO
3095                 case PTRACE_GETSIGINFO: {
3096                         siginfo_t si;
3097                         if (!tcp->u_arg[3])
3098                                 tprintf("NULL");
3099                         else if (syserror(tcp))
3100                                 tprintf("%#lx", tcp->u_arg[3]);
3101                         else if (umove(tcp, tcp->u_arg[3], &si) < 0)
3102                                 tprintf("{???}");
3103                         else
3104                                 printsiginfo(&si, verbose(tcp));
3105                         break;
3106                 }
3107 #  endif
3108                 }
3109         }
3110 # endif /* LINUX */
3111 # ifdef SUNOS4
3112                 if (tcp->u_arg[0] == PTRACE_WRITEDATA ||
3113                         tcp->u_arg[0] == PTRACE_WRITETEXT) {
3114                         tprintf("%lu, ", tcp->u_arg[3]);
3115                         printstr(tcp, tcp->u_arg[4], tcp->u_arg[3]);
3116                 } else if (tcp->u_arg[0] != PTRACE_READDATA &&
3117                                 tcp->u_arg[0] != PTRACE_READTEXT) {
3118                         tprintf("%#lx", tcp->u_arg[3]);
3119                 }
3120         } else {
3121                 if (tcp->u_arg[0] == PTRACE_READDATA ||
3122                         tcp->u_arg[0] == PTRACE_READTEXT) {
3123                         tprintf("%lu, ", tcp->u_arg[3]);
3124                         printstr(tcp, tcp->u_arg[4], tcp->u_arg[3]);
3125                 }
3126         }
3127 # endif /* SUNOS4 */
3128 # ifdef FREEBSD
3129                 tprintf("%lu", tcp->u_arg[3]);
3130         }
3131 # endif /* FREEBSD */
3132         return 0;
3133 }
3134
3135 #endif /* !SVR4 */
3136
3137 #ifdef LINUX
3138 # ifndef FUTEX_CMP_REQUEUE
3139 #  define FUTEX_CMP_REQUEUE 4
3140 # endif
3141 # ifndef FUTEX_WAKE_OP
3142 #  define FUTEX_WAKE_OP 5
3143 # endif
3144 # ifndef FUTEX_LOCK_PI
3145 #  define FUTEX_LOCK_PI 6
3146 #  define FUTEX_UNLOCK_PI 7
3147 #  define FUTEX_TRYLOCK_PI 8
3148 # endif
3149 # ifndef FUTEX_WAIT_BITSET
3150 #  define FUTEX_WAIT_BITSET 9
3151 # endif
3152 # ifndef FUTEX_WAKE_BITSET
3153 #  define FUTEX_WAKE_BITSET 10
3154 # endif
3155 # ifndef FUTEX_WAIT_REQUEUE_PI
3156 #  define FUTEX_WAIT_REQUEUE_PI 11
3157 # endif
3158 # ifndef FUTEX_CMP_REQUEUE_PI
3159 #  define FUTEX_CMP_REQUEUE_PI 12
3160 # endif
3161 # ifndef FUTEX_PRIVATE_FLAG
3162 #  define FUTEX_PRIVATE_FLAG 128
3163 # endif
3164 # ifndef FUTEX_CLOCK_REALTIME
3165 #  define FUTEX_CLOCK_REALTIME 256
3166 # endif
3167 static const struct xlat futexops[] = {
3168         { FUTEX_WAIT,                                   "FUTEX_WAIT" },
3169         { FUTEX_WAKE,                                   "FUTEX_WAKE" },
3170         { FUTEX_FD,                                     "FUTEX_FD" },
3171         { FUTEX_REQUEUE,                                "FUTEX_REQUEUE" },
3172         { FUTEX_CMP_REQUEUE,                            "FUTEX_CMP_REQUEUE" },
3173         { FUTEX_WAKE_OP,                                "FUTEX_WAKE_OP" },
3174         { FUTEX_LOCK_PI,                                "FUTEX_LOCK_PI" },
3175         { FUTEX_UNLOCK_PI,                              "FUTEX_UNLOCK_PI" },
3176         { FUTEX_TRYLOCK_PI,                             "FUTEX_TRYLOCK_PI" },
3177         { FUTEX_WAIT_BITSET,                            "FUTEX_WAIT_BITSET" },
3178         { FUTEX_WAKE_BITSET,                            "FUTEX_WAKE_BITSET" },
3179         { FUTEX_WAIT_REQUEUE_PI,                        "FUTEX_WAIT_REQUEUE_PI" },
3180         { FUTEX_CMP_REQUEUE_PI,                         "FUTEX_CMP_REQUEUE_PI" },
3181         { FUTEX_WAIT|FUTEX_PRIVATE_FLAG,                "FUTEX_WAIT_PRIVATE" },
3182         { FUTEX_WAKE|FUTEX_PRIVATE_FLAG,                "FUTEX_WAKE_PRIVATE" },
3183         { FUTEX_FD|FUTEX_PRIVATE_FLAG,                  "FUTEX_FD_PRIVATE" },
3184         { FUTEX_REQUEUE|FUTEX_PRIVATE_FLAG,             "FUTEX_REQUEUE_PRIVATE" },
3185         { FUTEX_CMP_REQUEUE|FUTEX_PRIVATE_FLAG,         "FUTEX_CMP_REQUEUE_PRIVATE" },
3186         { FUTEX_WAKE_OP|FUTEX_PRIVATE_FLAG,             "FUTEX_WAKE_OP_PRIVATE" },
3187         { FUTEX_LOCK_PI|FUTEX_PRIVATE_FLAG,             "FUTEX_LOCK_PI_PRIVATE" },
3188         { FUTEX_UNLOCK_PI|FUTEX_PRIVATE_FLAG,           "FUTEX_UNLOCK_PI_PRIVATE" },
3189         { FUTEX_TRYLOCK_PI|FUTEX_PRIVATE_FLAG,          "FUTEX_TRYLOCK_PI_PRIVATE" },
3190         { FUTEX_WAIT_BITSET|FUTEX_PRIVATE_FLAG,         "FUTEX_WAIT_BITSET_PRIVATE" },
3191         { FUTEX_WAKE_BITSET|FUTEX_PRIVATE_FLAG,         "FUTEX_WAKE_BITSET_PRIVATE" },
3192         { FUTEX_WAIT_REQUEUE_PI|FUTEX_PRIVATE_FLAG,     "FUTEX_WAIT_REQUEUE_PI_PRIVATE" },
3193         { FUTEX_CMP_REQUEUE_PI|FUTEX_PRIVATE_FLAG,      "FUTEX_CMP_REQUEUE_PI_PRIVATE" },
3194         { FUTEX_WAIT_BITSET|FUTEX_CLOCK_REALTIME,       "FUTEX_WAIT_BITSET|FUTEX_CLOCK_REALTIME" },
3195         { FUTEX_WAIT_BITSET|FUTEX_PRIVATE_FLAG|FUTEX_CLOCK_REALTIME,    "FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME" },
3196         { FUTEX_WAIT_REQUEUE_PI|FUTEX_CLOCK_REALTIME,   "FUTEX_WAIT_REQUEUE_PI|FUTEX_CLOCK_REALTIME" },
3197         { FUTEX_WAIT_REQUEUE_PI|FUTEX_PRIVATE_FLAG|FUTEX_CLOCK_REALTIME,        "FUTEX_WAIT_REQUEUE_PI_PRIVATE|FUTEX_CLOCK_REALTIME" },
3198         { 0,                                            NULL }
3199 };
3200 # ifndef FUTEX_OP_SET
3201 #  define FUTEX_OP_SET          0
3202 #  define FUTEX_OP_ADD          1
3203 #  define FUTEX_OP_OR           2
3204 #  define FUTEX_OP_ANDN         3
3205 #  define FUTEX_OP_XOR          4
3206 #  define FUTEX_OP_CMP_EQ       0
3207 #  define FUTEX_OP_CMP_NE       1
3208 #  define FUTEX_OP_CMP_LT       2
3209 #  define FUTEX_OP_CMP_LE       3
3210 #  define FUTEX_OP_CMP_GT       4
3211 #  define FUTEX_OP_CMP_GE       5
3212 # endif
3213 static const struct xlat futexwakeops[] = {
3214         { FUTEX_OP_SET,         "FUTEX_OP_SET" },
3215         { FUTEX_OP_ADD,         "FUTEX_OP_ADD" },
3216         { FUTEX_OP_OR,          "FUTEX_OP_OR" },
3217         { FUTEX_OP_ANDN,        "FUTEX_OP_ANDN" },
3218         { FUTEX_OP_XOR,         "FUTEX_OP_XOR" },
3219         { 0,                    NULL }
3220 };
3221 static const struct xlat futexwakecmps[] = {
3222         { FUTEX_OP_CMP_EQ,      "FUTEX_OP_CMP_EQ" },
3223         { FUTEX_OP_CMP_NE,      "FUTEX_OP_CMP_NE" },
3224         { FUTEX_OP_CMP_LT,      "FUTEX_OP_CMP_LT" },
3225         { FUTEX_OP_CMP_LE,      "FUTEX_OP_CMP_LE" },
3226         { FUTEX_OP_CMP_GT,      "FUTEX_OP_CMP_GT" },
3227         { FUTEX_OP_CMP_GE,      "FUTEX_OP_CMP_GE" },
3228         { 0,                    NULL }
3229 };
3230
3231 int
3232 sys_futex(struct tcb *tcp)
3233 {
3234         if (entering(tcp)) {
3235                 long int cmd = tcp->u_arg[1] & 127;
3236                 tprintf("%p, ", (void *) tcp->u_arg[0]);
3237                 printxval(futexops, tcp->u_arg[1], "FUTEX_???");
3238                 tprintf(", %ld", tcp->u_arg[2]);
3239                 if (cmd == FUTEX_WAKE_BITSET)
3240                         tprintf(", %lx", tcp->u_arg[5]);
3241                 else if (cmd == FUTEX_WAIT) {
3242                         tprintf(", ");
3243                         printtv(tcp, tcp->u_arg[3]);
3244                 } else if (cmd == FUTEX_WAIT_BITSET) {
3245                         tprintf(", ");
3246                         printtv(tcp, tcp->u_arg[3]);
3247                         tprintf(", %lx", tcp->u_arg[5]);
3248                 } else if (cmd == FUTEX_REQUEUE)
3249                         tprintf(", %ld, %p", tcp->u_arg[3], (void *) tcp->u_arg[4]);
3250                 else if (cmd == FUTEX_CMP_REQUEUE || cmd == FUTEX_CMP_REQUEUE_PI)
3251                         tprintf(", %ld, %p, %ld", tcp->u_arg[3], (void *) tcp->u_arg[4], tcp->u_arg[5]);
3252                 else if (cmd == FUTEX_WAKE_OP) {
3253                         tprintf(", %ld, %p, {", tcp->u_arg[3], (void *) tcp->u_arg[4]);
3254                         if ((tcp->u_arg[5] >> 28) & 8)
3255                                 tprintf("FUTEX_OP_OPARG_SHIFT|");
3256                         printxval(futexwakeops, (tcp->u_arg[5] >> 28) & 0x7, "FUTEX_OP_???");
3257                         tprintf(", %ld, ", (tcp->u_arg[5] >> 12) & 0xfff);
3258                         if ((tcp->u_arg[5] >> 24) & 8)
3259                                 tprintf("FUTEX_OP_OPARG_SHIFT|");
3260                         printxval(futexwakecmps, (tcp->u_arg[5] >> 24) & 0x7, "FUTEX_OP_CMP_???");
3261                         tprintf(", %ld}", tcp->u_arg[5] & 0xfff);
3262                 } else if (cmd == FUTEX_WAIT_REQUEUE_PI) {
3263                         tprintf(", ");
3264                         printtv(tcp, tcp->u_arg[3]);
3265                         tprintf(", %p", (void *) tcp->u_arg[4]);
3266                 }
3267         }
3268         return 0;
3269 }
3270
3271 static void
3272 print_affinitylist(struct tcb *tcp, long list, unsigned int len)
3273 {
3274         int first = 1;
3275         unsigned long w, min_len;
3276
3277         if (abbrev(tcp) && len / sizeof(w) > max_strlen)
3278                 min_len = len - max_strlen * sizeof(w);
3279         else
3280                 min_len = 0;
3281         for (; len >= sizeof(w) && len > min_len;
3282              len -= sizeof(w), list += sizeof(w)) {
3283                 if (umove(tcp, list, &w) < 0)
3284                         break;
3285                 if (first)
3286                         tprintf("{");
3287                 else
3288                         tprintf(", ");
3289                 first = 0;
3290                 tprintf("%lx", w);
3291         }
3292         if (len) {
3293                 if (first)
3294                         tprintf("%#lx", list);
3295                 else
3296                         tprintf(", %s}", (len >= sizeof(w) && len > min_len ?
3297                                 "???" : "..."));
3298         } else {
3299                 tprintf(first ? "{}" : "}");
3300         }
3301 }
3302
3303 int
3304 sys_sched_setaffinity(struct tcb *tcp)
3305 {
3306         if (entering(tcp)) {
3307                 tprintf("%ld, %lu, ", tcp->u_arg[0], tcp->u_arg[1]);
3308                 print_affinitylist(tcp, tcp->u_arg[2], tcp->u_arg[1]);
3309         }
3310         return 0;
3311 }
3312
3313 int
3314 sys_sched_getaffinity(struct tcb *tcp)
3315 {
3316         if (entering(tcp)) {
3317                 tprintf("%ld, %lu, ", tcp->u_arg[0], tcp->u_arg[1]);
3318         } else {
3319                 if (tcp->u_rval == -1)
3320                         tprintf("%#lx", tcp->u_arg[2]);
3321                 else
3322                         print_affinitylist(tcp, tcp->u_arg[2], tcp->u_rval);
3323         }
3324         return 0;
3325 }
3326
3327 static const struct xlat schedulers[] = {
3328         { SCHED_OTHER,  "SCHED_OTHER" },
3329         { SCHED_RR,     "SCHED_RR" },
3330         { SCHED_FIFO,   "SCHED_FIFO" },
3331         { 0,            NULL }
3332 };
3333
3334 int
3335 sys_sched_getscheduler(struct tcb *tcp)
3336 {
3337         if (entering(tcp)) {
3338                 tprintf("%d", (int) tcp->u_arg[0]);
3339         } else if (! syserror(tcp)) {
3340                 tcp->auxstr = xlookup(schedulers, tcp->u_rval);
3341                 if (tcp->auxstr != NULL)
3342                         return RVAL_STR;
3343         }
3344         return 0;
3345 }
3346
3347 int
3348 sys_sched_setscheduler(struct tcb *tcp)
3349 {
3350         if (entering(tcp)) {
3351                 struct sched_param p;
3352                 tprintf("%d, ", (int) tcp->u_arg[0]);
3353                 printxval(schedulers, tcp->u_arg[1], "SCHED_???");
3354                 if (umove(tcp, tcp->u_arg[2], &p) < 0)
3355                         tprintf(", %#lx", tcp->u_arg[2]);
3356                 else
3357                         tprintf(", { %d }", p.__sched_priority);
3358         }
3359         return 0;
3360 }
3361
3362 int
3363 sys_sched_getparam(struct tcb *tcp)
3364 {
3365         if (entering(tcp)) {
3366                 tprintf("%d, ", (int) tcp->u_arg[0]);
3367         } else {
3368                 struct sched_param p;
3369                 if (umove(tcp, tcp->u_arg[1], &p) < 0)
3370                         tprintf("%#lx", tcp->u_arg[1]);
3371                 else
3372                         tprintf("{ %d }", p.__sched_priority);
3373         }
3374         return 0;
3375 }
3376
3377 int
3378 sys_sched_setparam(struct tcb *tcp)
3379 {
3380         if (entering(tcp)) {
3381                 struct sched_param p;
3382                 if (umove(tcp, tcp->u_arg[1], &p) < 0)
3383                         tprintf("%d, %#lx", (int) tcp->u_arg[0], tcp->u_arg[1]);
3384                 else
3385                         tprintf("%d, { %d }", (int) tcp->u_arg[0], p.__sched_priority);
3386         }
3387         return 0;
3388 }
3389
3390 int
3391 sys_sched_get_priority_min(struct tcb *tcp)
3392 {
3393         if (entering(tcp)) {
3394                 printxval(schedulers, tcp->u_arg[0], "SCHED_???");
3395         }
3396         return 0;
3397 }
3398
3399 # ifdef X86_64
3400 # include <asm/prctl.h>
3401
3402 static const struct xlat archvals[] = {
3403         { ARCH_SET_GS,          "ARCH_SET_GS"           },
3404         { ARCH_SET_FS,          "ARCH_SET_FS"           },
3405         { ARCH_GET_FS,          "ARCH_GET_FS"           },
3406         { ARCH_GET_GS,          "ARCH_GET_GS"           },
3407         { 0,                    NULL                    },
3408 };
3409
3410 int
3411 sys_arch_prctl(struct tcb *tcp)
3412 {
3413         if (entering(tcp)) {
3414                 printxval(archvals, tcp->u_arg[0], "ARCH_???");
3415                 if (tcp->u_arg[0] == ARCH_SET_GS
3416                  || tcp->u_arg[0] == ARCH_SET_FS
3417                 ) {
3418                         tprintf(", %#lx", tcp->u_arg[1]);
3419                 }
3420         } else {
3421                 if (tcp->u_arg[0] == ARCH_GET_GS
3422                  || tcp->u_arg[0] == ARCH_GET_FS
3423                 ) {
3424                         long int v;
3425                         if (!syserror(tcp) && umove(tcp, tcp->u_arg[1], &v) != -1)
3426                                 tprintf(", [%#lx]", v);
3427                         else
3428                                 tprintf(", %#lx", tcp->u_arg[1]);
3429                 }
3430         }
3431         return 0;
3432 }
3433 # endif /* X86_64 */
3434
3435
3436 int
3437 sys_getcpu(struct tcb *tcp)
3438 {
3439         if (exiting(tcp)) {
3440                 unsigned u;
3441                 if (tcp->u_arg[0] == 0)
3442                         tprintf("NULL, ");
3443                 else if (umove(tcp, tcp->u_arg[0], &u) < 0)
3444                         tprintf("%#lx, ", tcp->u_arg[0]);
3445                 else
3446                         tprintf("[%u], ", u);
3447                 if (tcp->u_arg[1] == 0)
3448                         tprintf("NULL, ");
3449                 else if (umove(tcp, tcp->u_arg[1], &u) < 0)
3450                         tprintf("%#lx, ", tcp->u_arg[1]);
3451                 else
3452                         tprintf("[%u], ", u);
3453                 tprintf("%#lx", tcp->u_arg[2]);
3454         }
3455         return 0;
3456 }
3457
3458 #endif /* LINUX */