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