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