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 | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 9 | * All rights reserved. |
| 10 | * |
| 11 | * Redistribution and use in source and binary forms, with or without |
| 12 | * modification, are permitted provided that the following conditions |
| 13 | * are met: |
| 14 | * 1. Redistributions of source code must retain the above copyright |
| 15 | * notice, this list of conditions and the following disclaimer. |
| 16 | * 2. Redistributions in binary form must reproduce the above copyright |
| 17 | * notice, this list of conditions and the following disclaimer in the |
| 18 | * documentation and/or other materials provided with the distribution. |
| 19 | * 3. The name of the author may not be used to endorse or promote products |
| 20 | * derived from this software without specific prior written permission. |
| 21 | * |
| 22 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 23 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 24 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 25 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 26 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 27 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 28 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 29 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 30 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 31 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 32 | * |
| 33 | * $Id$ |
| 34 | */ |
| 35 | |
| 36 | #include "defs.h" |
| 37 | |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 38 | #include <signal.h> |
| 39 | #include <sys/syscall.h> |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 40 | #include <sys/user.h> |
| 41 | #include <sys/param.h> |
| 42 | #include <fcntl.h> |
John Hughes | 1d08dcf | 2001-07-10 13:48:44 +0000 | [diff] [blame] | 43 | #if HAVE_SYS_UIO_H |
| 44 | #include <sys/uio.h> |
| 45 | #endif |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 46 | #ifdef SUNOS4 |
| 47 | #include <machine/reg.h> |
| 48 | #include <a.out.h> |
| 49 | #include <link.h> |
| 50 | #endif /* SUNOS4 */ |
Wichert Akkerman | 36915a1 | 1999-07-13 15:45:02 +0000 | [diff] [blame] | 51 | |
Wichert Akkerman | 43a7482 | 2000-06-27 17:33:32 +0000 | [diff] [blame] | 52 | #if defined(linux) && (__GLIBC__ < 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ < 1)) |
Wichert Akkerman | 36915a1 | 1999-07-13 15:45:02 +0000 | [diff] [blame] | 53 | #include <linux/ptrace.h> |
Roland McGrath | 1e85cf9 | 2002-12-16 20:40:54 +0000 | [diff] [blame] | 54 | #endif |
Wichert Akkerman | 36915a1 | 1999-07-13 15:45:02 +0000 | [diff] [blame] | 55 | |
Wichert Akkerman | 8b1b40c | 2000-02-03 21:58:30 +0000 | [diff] [blame] | 56 | #if defined(LINUX) && defined(IA64) |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 57 | # include <asm/ptrace_offsets.h> |
| 58 | # include <asm/rse.h> |
Wichert Akkerman | 8b1b40c | 2000-02-03 21:58:30 +0000 | [diff] [blame] | 59 | #endif |
| 60 | |
Wichert Akkerman | 36915a1 | 1999-07-13 15:45:02 +0000 | [diff] [blame] | 61 | #ifdef HAVE_SYS_REG_H |
| 62 | #include <sys/reg.h> |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 63 | # define PTRACE_PEEKUSR PTRACE_PEEKUSER |
Wichert Akkerman | faf7222 | 2000-02-19 23:59:03 +0000 | [diff] [blame] | 64 | #elif defined(HAVE_LINUX_PTRACE_H) |
| 65 | #undef PTRACE_SYSCALL |
Roland McGrath | ce9f074 | 2004-03-01 21:29:22 +0000 | [diff] [blame] | 66 | # ifdef HAVE_STRUCT_IA64_FPREG |
| 67 | # define ia64_fpreg XXX_ia64_fpreg |
| 68 | # endif |
| 69 | # ifdef HAVE_STRUCT_PT_ALL_USER_REGS |
| 70 | # define pt_all_user_regs XXX_pt_all_user_regs |
| 71 | # endif |
Wichert Akkerman | faf7222 | 2000-02-19 23:59:03 +0000 | [diff] [blame] | 72 | #include <linux/ptrace.h> |
Roland McGrath | ce9f074 | 2004-03-01 21:29:22 +0000 | [diff] [blame] | 73 | # undef ia64_fpreg |
| 74 | # undef pt_all_user_regs |
Wichert Akkerman | 2e2553a | 1999-05-09 00:29:58 +0000 | [diff] [blame] | 75 | #endif |
| 76 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 77 | #ifdef SUNOS4_KERNEL_ARCH_KLUDGE |
| 78 | #include <sys/utsname.h> |
| 79 | #endif /* SUNOS4_KERNEL_ARCH_KLUDGE */ |
| 80 | |
Mike Frysinger | 8566c50 | 2009-10-12 11:05:14 -0400 | [diff] [blame] | 81 | #if defined(LINUXSPARC) && defined (SPARC64) |
Roland McGrath | 6d1a65c | 2004-07-12 07:44:08 +0000 | [diff] [blame] | 82 | # undef PTRACE_GETREGS |
| 83 | # define PTRACE_GETREGS PTRACE_GETREGS64 |
| 84 | # undef PTRACE_SETREGS |
| 85 | # define PTRACE_SETREGS PTRACE_SETREGS64 |
Wichert Akkerman | 9ce1a63 | 1999-08-29 23:15:07 +0000 | [diff] [blame] | 86 | #endif |
| 87 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 88 | /* macros */ |
| 89 | #ifndef MAX |
| 90 | #define MAX(a,b) (((a) > (b)) ? (a) : (b)) |
| 91 | #endif |
| 92 | #ifndef MIN |
| 93 | #define MIN(a,b) (((a) < (b)) ? (a) : (b)) |
| 94 | #endif |
| 95 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 96 | int |
| 97 | tv_nz(a) |
| 98 | struct timeval *a; |
| 99 | { |
| 100 | return a->tv_sec || a->tv_usec; |
| 101 | } |
| 102 | |
| 103 | int |
| 104 | tv_cmp(a, b) |
| 105 | struct timeval *a, *b; |
| 106 | { |
| 107 | if (a->tv_sec < b->tv_sec |
| 108 | || (a->tv_sec == b->tv_sec && a->tv_usec < b->tv_usec)) |
| 109 | return -1; |
| 110 | if (a->tv_sec > b->tv_sec |
| 111 | || (a->tv_sec == b->tv_sec && a->tv_usec > b->tv_usec)) |
| 112 | return 1; |
| 113 | return 0; |
| 114 | } |
| 115 | |
| 116 | double |
| 117 | tv_float(tv) |
| 118 | struct timeval *tv; |
| 119 | { |
| 120 | return tv->tv_sec + tv->tv_usec/1000000.0; |
| 121 | } |
| 122 | |
| 123 | void |
| 124 | tv_add(tv, a, b) |
| 125 | struct timeval *tv, *a, *b; |
| 126 | { |
| 127 | tv->tv_sec = a->tv_sec + b->tv_sec; |
| 128 | tv->tv_usec = a->tv_usec + b->tv_usec; |
Roland McGrath | 58372f5 | 2007-07-24 01:38:22 +0000 | [diff] [blame] | 129 | if (tv->tv_usec >= 1000000) { |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 130 | tv->tv_sec++; |
| 131 | tv->tv_usec -= 1000000; |
| 132 | } |
| 133 | } |
| 134 | |
| 135 | void |
| 136 | tv_sub(tv, a, b) |
| 137 | struct timeval *tv, *a, *b; |
| 138 | { |
| 139 | tv->tv_sec = a->tv_sec - b->tv_sec; |
| 140 | tv->tv_usec = a->tv_usec - b->tv_usec; |
| 141 | if (((long) tv->tv_usec) < 0) { |
| 142 | tv->tv_sec--; |
| 143 | tv->tv_usec += 1000000; |
| 144 | } |
| 145 | } |
| 146 | |
| 147 | void |
| 148 | tv_div(tv, a, n) |
| 149 | struct timeval *tv, *a; |
| 150 | int n; |
| 151 | { |
| 152 | tv->tv_usec = (a->tv_sec % n * 1000000 + a->tv_usec + n / 2) / n; |
| 153 | tv->tv_sec = a->tv_sec / n + tv->tv_usec / 1000000; |
| 154 | tv->tv_usec %= 1000000; |
| 155 | } |
| 156 | |
| 157 | void |
| 158 | tv_mul(tv, a, n) |
| 159 | struct timeval *tv, *a; |
| 160 | int n; |
| 161 | { |
| 162 | tv->tv_usec = a->tv_usec * n; |
Dmitry V. Levin | fefdd97 | 2007-06-29 21:25:56 +0000 | [diff] [blame] | 163 | tv->tv_sec = a->tv_sec * n + tv->tv_usec / 1000000; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 164 | tv->tv_usec %= 1000000; |
| 165 | } |
| 166 | |
Dmitry V. Levin | ab9008b | 2007-01-11 22:05:04 +0000 | [diff] [blame] | 167 | const char * |
| 168 | xlookup(const struct xlat *xlat, int val) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 169 | { |
| 170 | for (; xlat->str != NULL; xlat++) |
| 171 | if (xlat->val == val) |
| 172 | return xlat->str; |
| 173 | return NULL; |
| 174 | } |
| 175 | |
| 176 | /* |
Roland McGrath | eb9e2e8 | 2009-06-02 16:49:22 -0700 | [diff] [blame] | 177 | * Generic ptrace wrapper which tracks ESRCH errors |
| 178 | * by setting tcp->ptrace_errno to ESRCH. |
Denys Vlasenko | 732d1bf | 2008-12-17 19:21:59 +0000 | [diff] [blame] | 179 | * |
| 180 | * We assume that ESRCH indicates likely process death (SIGKILL?), |
| 181 | * modulo bugs where process somehow ended up not stopped. |
| 182 | * Unfortunately kernel uses ESRCH for that case too. Oh well. |
Roland McGrath | eb9e2e8 | 2009-06-02 16:49:22 -0700 | [diff] [blame] | 183 | * |
| 184 | * Currently used by upeek() only. |
| 185 | * TODO: use this in all other ptrace() calls while decoding. |
Denys Vlasenko | 732d1bf | 2008-12-17 19:21:59 +0000 | [diff] [blame] | 186 | */ |
Denys Vlasenko | 4dedd56 | 2009-02-24 15:17:53 +0000 | [diff] [blame] | 187 | long |
Roland McGrath | eb9e2e8 | 2009-06-02 16:49:22 -0700 | [diff] [blame] | 188 | do_ptrace(int request, struct tcb *tcp, void *addr, void *data) |
Denys Vlasenko | 4dedd56 | 2009-02-24 15:17:53 +0000 | [diff] [blame] | 189 | { |
Denys Vlasenko | 732d1bf | 2008-12-17 19:21:59 +0000 | [diff] [blame] | 190 | long l; |
| 191 | |
| 192 | errno = 0; |
Mike Frysinger | 09a13c2 | 2009-10-07 01:13:39 -0400 | [diff] [blame] | 193 | l = ptrace(request, tcp->pid, addr, (long) data); |
Roland McGrath | eb9e2e8 | 2009-06-02 16:49:22 -0700 | [diff] [blame] | 194 | /* Non-ESRCH errors might be our invalid reg/mem accesses, |
| 195 | * we do not record them. */ |
| 196 | if (errno == ESRCH) |
| 197 | tcp->ptrace_errno = ESRCH; |
Denys Vlasenko | 732d1bf | 2008-12-17 19:21:59 +0000 | [diff] [blame] | 198 | return l; |
| 199 | } |
| 200 | |
| 201 | /* |
| 202 | * Used when we want to unblock stopped traced process. |
| 203 | * Should be only used with PTRACE_CONT, PTRACE_DETACH and PTRACE_SYSCALL. |
| 204 | * Returns 0 on success or if error was ESRCH |
| 205 | * (presumably process was killed while we talk to it). |
| 206 | * Otherwise prints error message and returns -1. |
| 207 | */ |
| 208 | int |
Roland McGrath | eb9e2e8 | 2009-06-02 16:49:22 -0700 | [diff] [blame] | 209 | ptrace_restart(int op, struct tcb *tcp, int sig) |
Denys Vlasenko | 732d1bf | 2008-12-17 19:21:59 +0000 | [diff] [blame] | 210 | { |
| 211 | int err; |
Roland McGrath | eb9e2e8 | 2009-06-02 16:49:22 -0700 | [diff] [blame] | 212 | const char *msg; |
Denys Vlasenko | 732d1bf | 2008-12-17 19:21:59 +0000 | [diff] [blame] | 213 | |
| 214 | errno = 0; |
Mike Frysinger | 09a13c2 | 2009-10-07 01:13:39 -0400 | [diff] [blame] | 215 | ptrace(op, tcp->pid, (void *) 1, (long) sig); |
Denys Vlasenko | 732d1bf | 2008-12-17 19:21:59 +0000 | [diff] [blame] | 216 | err = errno; |
| 217 | if (!err || err == ESRCH) |
| 218 | return 0; |
| 219 | |
| 220 | tcp->ptrace_errno = err; |
Roland McGrath | eb9e2e8 | 2009-06-02 16:49:22 -0700 | [diff] [blame] | 221 | msg = "SYSCALL"; |
| 222 | if (op == PTRACE_CONT) |
| 223 | msg = "CONT"; |
| 224 | if (op == PTRACE_DETACH) |
| 225 | msg = "DETACH"; |
| 226 | fprintf(stderr, "strace: ptrace(PTRACE_%s,1,%d): %s\n", |
| 227 | msg, sig, strerror(err)); |
Denys Vlasenko | 732d1bf | 2008-12-17 19:21:59 +0000 | [diff] [blame] | 228 | return -1; |
| 229 | } |
| 230 | |
| 231 | /* |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 232 | * Print entry in struct xlat table, if there. |
| 233 | */ |
| 234 | void |
Dmitry V. Levin | ab9008b | 2007-01-11 22:05:04 +0000 | [diff] [blame] | 235 | printxval(const struct xlat *xlat, int val, const char *dflt) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 236 | { |
Dmitry V. Levin | ab9008b | 2007-01-11 22:05:04 +0000 | [diff] [blame] | 237 | const char *str = xlookup(xlat, val); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 238 | |
| 239 | if (str) |
| 240 | tprintf("%s", str); |
| 241 | else |
| 242 | tprintf("%#x /* %s */", val, dflt); |
| 243 | } |
| 244 | |
Andreas Schwab | b5600fc | 2009-11-04 17:08:34 +0100 | [diff] [blame] | 245 | #if HAVE_LONG_LONG |
| 246 | /* |
| 247 | * Print 64bit argument at position llarg and return the index of the next |
| 248 | * argument. |
| 249 | */ |
| 250 | int |
| 251 | printllval(struct tcb *tcp, const char *format, int llarg) |
| 252 | { |
| 253 | # if defined(FREEBSD) \ |
| 254 | || (defined(LINUX) && defined(POWERPC) && !defined(__powerpc64__)) \ |
| 255 | || defined (LINUX_MIPSO32) |
| 256 | /* Align 64bit argument to 64bit boundary. */ |
| 257 | if (llarg % 2) llarg++; |
| 258 | # endif |
| 259 | # if defined LINUX && defined X86_64 |
| 260 | if (current_personality == 0) { |
| 261 | tprintf(format, tcp->u_arg[llarg]); |
| 262 | llarg++; |
| 263 | } else { |
| 264 | tprintf(format, LONG_LONG(tcp->u_arg[llarg], tcp->u_arg[llarg + 1])); |
| 265 | llarg += 2; |
| 266 | } |
| 267 | # elif defined IA64 || defined ALPHA || (defined POWERPC && defined __powerpc64__) |
| 268 | tprintf(format, tcp->u_arg[llarg]); |
| 269 | llarg++; |
| 270 | # elif defined LINUX_MIPSN32 |
| 271 | tprintf(format, tcp->ext_arg[llarg]); |
| 272 | llarg++; |
| 273 | # else |
| 274 | tprintf(format, LONG_LONG(tcp->u_arg[llarg], tcp->u_arg[llarg + 1])); |
| 275 | llarg += 2; |
| 276 | # endif |
| 277 | return llarg; |
| 278 | } |
| 279 | #endif |
| 280 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 281 | /* |
| 282 | * Interpret `xlat' as an array of flags |
| 283 | * print the entries whose bits are on in `flags' |
| 284 | * return # of flags printed. |
| 285 | */ |
| 286 | int |
| 287 | addflags(xlat, flags) |
Roland McGrath | d9f816f | 2004-09-04 03:39:20 +0000 | [diff] [blame] | 288 | const struct xlat *xlat; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 289 | int flags; |
| 290 | { |
| 291 | int n; |
| 292 | |
| 293 | for (n = 0; xlat->str; xlat++) { |
| 294 | if (xlat->val && (flags & xlat->val) == xlat->val) { |
| 295 | tprintf("|%s", xlat->str); |
| 296 | flags &= ~xlat->val; |
| 297 | n++; |
| 298 | } |
| 299 | } |
| 300 | if (flags) { |
| 301 | tprintf("|%#x", flags); |
| 302 | n++; |
| 303 | } |
| 304 | return n; |
| 305 | } |
| 306 | |
Roland McGrath | a6c0d8c | 2007-11-01 21:46:22 +0000 | [diff] [blame] | 307 | /* |
| 308 | * Interpret `xlat' as an array of flags/ |
| 309 | * Print to static string the entries whose bits are on in `flags' |
| 310 | * Return static string. |
| 311 | */ |
| 312 | const char * |
| 313 | sprintflags(const char *prefix, const struct xlat *xlat, int flags) |
| 314 | { |
| 315 | static char outstr[1024]; |
| 316 | int found = 0; |
| 317 | |
| 318 | strcpy(outstr, prefix); |
| 319 | |
| 320 | for (; xlat->str; xlat++) { |
| 321 | if ((flags & xlat->val) == xlat->val) { |
| 322 | if (found) |
| 323 | strcat(outstr, "|"); |
| 324 | strcat(outstr, xlat->str); |
| 325 | flags &= ~xlat->val; |
| 326 | found = 1; |
| 327 | } |
| 328 | } |
| 329 | if (flags) { |
| 330 | if (found) |
| 331 | strcat(outstr, "|"); |
| 332 | sprintf(outstr + strlen(outstr), "%#x", flags); |
| 333 | } |
| 334 | |
| 335 | return outstr; |
| 336 | } |
| 337 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 338 | int |
Roland McGrath | b2dee13 | 2005-06-01 19:02:36 +0000 | [diff] [blame] | 339 | printflags(xlat, flags, dflt) |
Roland McGrath | d9f816f | 2004-09-04 03:39:20 +0000 | [diff] [blame] | 340 | const struct xlat *xlat; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 341 | int flags; |
Roland McGrath | b2dee13 | 2005-06-01 19:02:36 +0000 | [diff] [blame] | 342 | const char *dflt; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 343 | { |
| 344 | int n; |
| 345 | char *sep; |
| 346 | |
| 347 | if (flags == 0 && xlat->val == 0) { |
| 348 | tprintf("%s", xlat->str); |
| 349 | return 1; |
| 350 | } |
| 351 | |
| 352 | sep = ""; |
| 353 | for (n = 0; xlat->str; xlat++) { |
| 354 | if (xlat->val && (flags & xlat->val) == xlat->val) { |
| 355 | tprintf("%s%s", sep, xlat->str); |
| 356 | flags &= ~xlat->val; |
| 357 | sep = "|"; |
| 358 | n++; |
| 359 | } |
| 360 | } |
Roland McGrath | b2dee13 | 2005-06-01 19:02:36 +0000 | [diff] [blame] | 361 | |
| 362 | if (n) { |
| 363 | if (flags) { |
| 364 | tprintf("%s%#x", sep, flags); |
| 365 | n++; |
| 366 | } |
| 367 | } else { |
| 368 | if (flags) { |
| 369 | tprintf("%#x", flags); |
| 370 | if (dflt) |
| 371 | tprintf(" /* %s */", dflt); |
| 372 | } else { |
| 373 | if (dflt) |
| 374 | tprintf("0"); |
| 375 | } |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 376 | } |
Roland McGrath | b2dee13 | 2005-06-01 19:02:36 +0000 | [diff] [blame] | 377 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 378 | return n; |
| 379 | } |
| 380 | |
| 381 | void |
| 382 | printnum(tcp, addr, fmt) |
| 383 | struct tcb *tcp; |
| 384 | long addr; |
| 385 | char *fmt; |
| 386 | { |
Roland McGrath | eb28535 | 2003-01-14 09:59:00 +0000 | [diff] [blame] | 387 | long num; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 388 | |
| 389 | if (!addr) { |
| 390 | tprintf("NULL"); |
| 391 | return; |
| 392 | } |
| 393 | if (umove(tcp, addr, &num) < 0) { |
| 394 | tprintf("%#lx", addr); |
| 395 | return; |
| 396 | } |
| 397 | tprintf("["); |
| 398 | tprintf(fmt, num); |
| 399 | tprintf("]"); |
| 400 | } |
| 401 | |
Roland McGrath | 6bc1220 | 2003-11-13 22:32:27 +0000 | [diff] [blame] | 402 | void |
Roland McGrath | 9814a94 | 2005-07-04 23:28:10 +0000 | [diff] [blame] | 403 | printnum_int(tcp, addr, fmt) |
| 404 | struct tcb *tcp; |
| 405 | long addr; |
| 406 | char *fmt; |
| 407 | { |
| 408 | int num; |
| 409 | |
| 410 | if (!addr) { |
| 411 | tprintf("NULL"); |
| 412 | return; |
| 413 | } |
| 414 | if (umove(tcp, addr, &num) < 0) { |
| 415 | tprintf("%#lx", addr); |
| 416 | return; |
| 417 | } |
| 418 | tprintf("["); |
| 419 | tprintf(fmt, num); |
| 420 | tprintf("]"); |
| 421 | } |
| 422 | |
| 423 | void |
Roland McGrath | 6bc1220 | 2003-11-13 22:32:27 +0000 | [diff] [blame] | 424 | printuid(text, uid) |
| 425 | const char *text; |
| 426 | unsigned long uid; |
| 427 | { |
| 428 | tprintf("%s", text); |
| 429 | tprintf((uid == -1) ? "%ld" : "%lu", uid); |
| 430 | } |
| 431 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 432 | static char path[MAXPATHLEN + 1]; |
| 433 | |
Dmitry V. Levin | a501f14 | 2008-11-10 23:19:13 +0000 | [diff] [blame] | 434 | /* |
| 435 | * Quote string `instr' of length `size' |
| 436 | * Write up to (3 + `size' * 4) bytes to `outstr' buffer. |
| 437 | * If `len' < 0, treat `instr' as a NUL-terminated string |
| 438 | * and quote at most (`size' - 1) bytes. |
| 439 | */ |
Roland McGrath | 6d97032 | 2007-11-01 23:53:59 +0000 | [diff] [blame] | 440 | static int |
Dmitry V. Levin | bea0203 | 2007-10-08 21:48:01 +0000 | [diff] [blame] | 441 | string_quote(const char *instr, char *outstr, int len, int size) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 442 | { |
Dmitry V. Levin | bea0203 | 2007-10-08 21:48:01 +0000 | [diff] [blame] | 443 | const unsigned char *ustr = (const unsigned char *) instr; |
| 444 | char *s = outstr; |
| 445 | int usehex = 0, c, i; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 446 | |
Dmitry V. Levin | bea0203 | 2007-10-08 21:48:01 +0000 | [diff] [blame] | 447 | if (xflag > 1) |
| 448 | usehex = 1; |
| 449 | else if (xflag) { |
Dmitry V. Levin | a501f14 | 2008-11-10 23:19:13 +0000 | [diff] [blame] | 450 | /* Check for presence of symbol which require |
| 451 | to hex-quote the whole string. */ |
Dmitry V. Levin | bea0203 | 2007-10-08 21:48:01 +0000 | [diff] [blame] | 452 | for (i = 0; i < size; ++i) { |
| 453 | c = ustr[i]; |
Dmitry V. Levin | a501f14 | 2008-11-10 23:19:13 +0000 | [diff] [blame] | 454 | /* Check for NUL-terminated string. */ |
| 455 | if (len < 0) { |
| 456 | if (c == '\0') |
| 457 | break; |
| 458 | /* Quote at most size - 1 bytes. */ |
| 459 | if (i == size - 1) |
| 460 | continue; |
| 461 | } |
Dmitry V. Levin | bea0203 | 2007-10-08 21:48:01 +0000 | [diff] [blame] | 462 | if (!isprint(c) && !isspace(c)) { |
| 463 | usehex = 1; |
| 464 | break; |
| 465 | } |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 466 | } |
| 467 | } |
Dmitry V. Levin | bea0203 | 2007-10-08 21:48:01 +0000 | [diff] [blame] | 468 | |
| 469 | *s++ = '\"'; |
| 470 | |
| 471 | if (usehex) { |
Dmitry V. Levin | a501f14 | 2008-11-10 23:19:13 +0000 | [diff] [blame] | 472 | /* Hex-quote the whole string. */ |
Dmitry V. Levin | bea0203 | 2007-10-08 21:48:01 +0000 | [diff] [blame] | 473 | for (i = 0; i < size; ++i) { |
| 474 | c = ustr[i]; |
Dmitry V. Levin | a501f14 | 2008-11-10 23:19:13 +0000 | [diff] [blame] | 475 | /* Check for NUL-terminated string. */ |
| 476 | if (len < 0) { |
| 477 | if (c == '\0') |
| 478 | break; |
| 479 | /* Quote at most size - 1 bytes. */ |
| 480 | if (i == size - 1) |
| 481 | continue; |
| 482 | } |
Dmitry V. Levin | bea0203 | 2007-10-08 21:48:01 +0000 | [diff] [blame] | 483 | sprintf(s, "\\x%02x", c); |
| 484 | s += 4; |
| 485 | } |
| 486 | } else { |
| 487 | for (i = 0; i < size; ++i) { |
| 488 | c = ustr[i]; |
Dmitry V. Levin | a501f14 | 2008-11-10 23:19:13 +0000 | [diff] [blame] | 489 | /* Check for NUL-terminated string. */ |
| 490 | if (len < 0) { |
| 491 | if (c == '\0') |
| 492 | break; |
| 493 | /* Quote at most size - 1 bytes. */ |
| 494 | if (i == size - 1) |
| 495 | continue; |
| 496 | } |
Dmitry V. Levin | bea0203 | 2007-10-08 21:48:01 +0000 | [diff] [blame] | 497 | switch (c) { |
| 498 | case '\"': case '\\': |
| 499 | *s++ = '\\'; |
| 500 | *s++ = c; |
| 501 | break; |
| 502 | case '\f': |
| 503 | *s++ = '\\'; |
| 504 | *s++ = 'f'; |
| 505 | break; |
| 506 | case '\n': |
| 507 | *s++ = '\\'; |
| 508 | *s++ = 'n'; |
| 509 | break; |
| 510 | case '\r': |
| 511 | *s++ = '\\'; |
| 512 | *s++ = 'r'; |
| 513 | break; |
| 514 | case '\t': |
| 515 | *s++ = '\\'; |
| 516 | *s++ = 't'; |
| 517 | break; |
| 518 | case '\v': |
| 519 | *s++ = '\\'; |
| 520 | *s++ = 'v'; |
| 521 | break; |
| 522 | default: |
| 523 | if (isprint(c)) |
| 524 | *s++ = c; |
| 525 | else if (i + 1 < size |
| 526 | && isdigit(ustr[i + 1])) { |
| 527 | sprintf(s, "\\%03o", c); |
| 528 | s += 4; |
| 529 | } else { |
| 530 | sprintf(s, "\\%o", c); |
| 531 | s += strlen(s); |
| 532 | } |
| 533 | break; |
| 534 | } |
| 535 | } |
| 536 | } |
| 537 | |
| 538 | *s++ = '\"'; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 539 | *s = '\0'; |
Roland McGrath | 6d97032 | 2007-11-01 23:53:59 +0000 | [diff] [blame] | 540 | |
| 541 | /* Return nonzero if the string was unterminated. */ |
| 542 | return i == size; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 543 | } |
| 544 | |
Dmitry V. Levin | a501f14 | 2008-11-10 23:19:13 +0000 | [diff] [blame] | 545 | /* |
| 546 | * Print path string specified by address `addr' and length `n'. |
| 547 | * If path length exceeds `n', append `...' to the output. |
| 548 | */ |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 549 | void |
Dmitry V. Levin | bea0203 | 2007-10-08 21:48:01 +0000 | [diff] [blame] | 550 | printpathn(struct tcb *tcp, long addr, int n) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 551 | { |
Dmitry V. Levin | a501f14 | 2008-11-10 23:19:13 +0000 | [diff] [blame] | 552 | if (!addr) { |
Roland McGrath | 371ed8f | 2005-02-06 01:55:07 +0000 | [diff] [blame] | 553 | tprintf("NULL"); |
Dmitry V. Levin | bea0203 | 2007-10-08 21:48:01 +0000 | [diff] [blame] | 554 | return; |
| 555 | } |
| 556 | |
Dmitry V. Levin | a501f14 | 2008-11-10 23:19:13 +0000 | [diff] [blame] | 557 | /* Cap path length to the path buffer size, |
| 558 | and NUL-terminate the buffer. */ |
| 559 | if (n > sizeof path - 1) |
| 560 | n = sizeof path - 1; |
Dmitry V. Levin | bea0203 | 2007-10-08 21:48:01 +0000 | [diff] [blame] | 561 | path[n] = '\0'; |
Dmitry V. Levin | a501f14 | 2008-11-10 23:19:13 +0000 | [diff] [blame] | 562 | |
| 563 | /* Fetch one byte more to find out whether path length > n. */ |
Dmitry V. Levin | bea0203 | 2007-10-08 21:48:01 +0000 | [diff] [blame] | 564 | if (umovestr(tcp, addr, n + 1, path) < 0) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 565 | tprintf("%#lx", addr); |
| 566 | else { |
Dmitry V. Levin | bea0203 | 2007-10-08 21:48:01 +0000 | [diff] [blame] | 567 | static char outstr[4*(sizeof path - 1) + sizeof "\"...\""]; |
| 568 | int trunc = (path[n] != '\0'); |
| 569 | |
| 570 | if (trunc) |
| 571 | path[n] = '\0'; |
Dmitry V. Levin | a501f14 | 2008-11-10 23:19:13 +0000 | [diff] [blame] | 572 | (void) string_quote(path, outstr, -1, n + 1); |
| 573 | if (trunc) |
Dmitry V. Levin | bea0203 | 2007-10-08 21:48:01 +0000 | [diff] [blame] | 574 | strcat(outstr, "..."); |
| 575 | tprintf("%s", outstr); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 576 | } |
| 577 | } |
| 578 | |
| 579 | void |
Dmitry V. Levin | bea0203 | 2007-10-08 21:48:01 +0000 | [diff] [blame] | 580 | printpath(struct tcb *tcp, long addr) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 581 | { |
Dmitry V. Levin | bea0203 | 2007-10-08 21:48:01 +0000 | [diff] [blame] | 582 | printpathn(tcp, addr, sizeof path - 1); |
| 583 | } |
| 584 | |
Dmitry V. Levin | a501f14 | 2008-11-10 23:19:13 +0000 | [diff] [blame] | 585 | /* |
| 586 | * Print string specified by address `addr' and length `len'. |
| 587 | * If `len' < 0, treat the string as a NUL-terminated string. |
| 588 | * If string length exceeds `max_strlen', append `...' to the output. |
| 589 | */ |
Dmitry V. Levin | bea0203 | 2007-10-08 21:48:01 +0000 | [diff] [blame] | 590 | void |
| 591 | printstr(struct tcb *tcp, long addr, int len) |
| 592 | { |
| 593 | static char *str = NULL; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 594 | static char *outstr; |
Roland McGrath | 6d97032 | 2007-11-01 23:53:59 +0000 | [diff] [blame] | 595 | int size; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 596 | |
| 597 | if (!addr) { |
| 598 | tprintf("NULL"); |
| 599 | return; |
| 600 | } |
Dmitry V. Levin | a501f14 | 2008-11-10 23:19:13 +0000 | [diff] [blame] | 601 | /* Allocate static buffers if they are not allocated yet. */ |
| 602 | if (!str) |
| 603 | str = malloc(max_strlen + 1); |
| 604 | if (!outstr) |
| 605 | outstr = malloc(4 * max_strlen + sizeof "\"...\""); |
| 606 | if (!str || !outstr) { |
| 607 | fprintf(stderr, "out of memory\n"); |
| 608 | tprintf("%#lx", addr); |
| 609 | return; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 610 | } |
Dmitry V. Levin | bea0203 | 2007-10-08 21:48:01 +0000 | [diff] [blame] | 611 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 612 | if (len < 0) { |
Dmitry V. Levin | a501f14 | 2008-11-10 23:19:13 +0000 | [diff] [blame] | 613 | /* |
| 614 | * Treat as a NUL-terminated string: fetch one byte more |
| 615 | * because string_quote() quotes one byte less. |
| 616 | */ |
Dmitry V. Levin | bea0203 | 2007-10-08 21:48:01 +0000 | [diff] [blame] | 617 | size = max_strlen + 1; |
Dmitry V. Levin | a501f14 | 2008-11-10 23:19:13 +0000 | [diff] [blame] | 618 | str[max_strlen] = '\0'; |
Dmitry V. Levin | bea0203 | 2007-10-08 21:48:01 +0000 | [diff] [blame] | 619 | if (umovestr(tcp, addr, size, str) < 0) { |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 620 | tprintf("%#lx", addr); |
| 621 | return; |
| 622 | } |
| 623 | } |
| 624 | else { |
Dmitry V. Levin | a501f14 | 2008-11-10 23:19:13 +0000 | [diff] [blame] | 625 | size = MIN(len, max_strlen); |
Dmitry V. Levin | bea0203 | 2007-10-08 21:48:01 +0000 | [diff] [blame] | 626 | if (umoven(tcp, addr, size, str) < 0) { |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 627 | tprintf("%#lx", addr); |
| 628 | return; |
| 629 | } |
| 630 | } |
| 631 | |
Dmitry V. Levin | a501f14 | 2008-11-10 23:19:13 +0000 | [diff] [blame] | 632 | if (string_quote(str, outstr, len, size) && |
| 633 | (len < 0 || len > max_strlen)) |
Dmitry V. Levin | bea0203 | 2007-10-08 21:48:01 +0000 | [diff] [blame] | 634 | strcat(outstr, "..."); |
Roland McGrath | a503dcf | 2007-08-02 02:06:26 +0000 | [diff] [blame] | 635 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 636 | tprintf("%s", outstr); |
| 637 | } |
| 638 | |
John Hughes | 1d08dcf | 2001-07-10 13:48:44 +0000 | [diff] [blame] | 639 | #if HAVE_SYS_UIO_H |
| 640 | void |
| 641 | dumpiov(tcp, len, addr) |
| 642 | struct tcb * tcp; |
| 643 | int len; |
| 644 | long addr; |
| 645 | { |
Dmitry V. Levin | 4ebb4e3 | 2006-12-13 17:08:08 +0000 | [diff] [blame] | 646 | #if defined(LINUX) && SUPPORTED_PERSONALITIES > 1 |
| 647 | union { |
| 648 | struct { u_int32_t base; u_int32_t len; } *iov32; |
| 649 | struct { u_int64_t base; u_int64_t len; } *iov64; |
| 650 | } iovu; |
| 651 | #define iov iovu.iov64 |
| 652 | #define sizeof_iov \ |
| 653 | (personality_wordsize[current_personality] == 4 \ |
| 654 | ? sizeof(*iovu.iov32) : sizeof(*iovu.iov64)) |
| 655 | #define iov_iov_base(i) \ |
| 656 | (personality_wordsize[current_personality] == 4 \ |
| 657 | ? (u_int64_t) iovu.iov32[i].base : iovu.iov64[i].base) |
| 658 | #define iov_iov_len(i) \ |
| 659 | (personality_wordsize[current_personality] == 4 \ |
| 660 | ? (u_int64_t) iovu.iov32[i].len : iovu.iov64[i].len) |
| 661 | #else |
John Hughes | 1d08dcf | 2001-07-10 13:48:44 +0000 | [diff] [blame] | 662 | struct iovec *iov; |
Dmitry V. Levin | 4ebb4e3 | 2006-12-13 17:08:08 +0000 | [diff] [blame] | 663 | #define sizeof_iov sizeof(*iov) |
| 664 | #define iov_iov_base(i) iov[i].iov_base |
| 665 | #define iov_iov_len(i) iov[i].iov_len |
| 666 | #endif |
John Hughes | 1d08dcf | 2001-07-10 13:48:44 +0000 | [diff] [blame] | 667 | int i; |
Roland McGrath | aa524c8 | 2005-06-01 19:22:06 +0000 | [diff] [blame] | 668 | unsigned long size; |
John Hughes | 1d08dcf | 2001-07-10 13:48:44 +0000 | [diff] [blame] | 669 | |
Dmitry V. Levin | 4ebb4e3 | 2006-12-13 17:08:08 +0000 | [diff] [blame] | 670 | size = sizeof_iov * (unsigned long) len; |
| 671 | if (size / sizeof_iov != len |
| 672 | || (iov = malloc(size)) == NULL) { |
Roland McGrath | aa524c8 | 2005-06-01 19:22:06 +0000 | [diff] [blame] | 673 | fprintf(stderr, "out of memory\n"); |
John Hughes | 1d08dcf | 2001-07-10 13:48:44 +0000 | [diff] [blame] | 674 | return; |
| 675 | } |
Roland McGrath | aa524c8 | 2005-06-01 19:22:06 +0000 | [diff] [blame] | 676 | if (umoven(tcp, addr, size, (char *) iov) >= 0) { |
John Hughes | 1d08dcf | 2001-07-10 13:48:44 +0000 | [diff] [blame] | 677 | for (i = 0; i < len; i++) { |
Denys Vlasenko | adedb51 | 2008-12-30 18:47:55 +0000 | [diff] [blame] | 678 | /* include the buffer number to make it easy to |
| 679 | * match up the trace with the source */ |
| 680 | tprintf(" * %lu bytes in buffer %d\n", |
| 681 | (unsigned long)iov_iov_len(i), i); |
| 682 | dumpstr(tcp, (long) iov_iov_base(i), |
| 683 | iov_iov_len(i)); |
| 684 | } |
John Hughes | 1d08dcf | 2001-07-10 13:48:44 +0000 | [diff] [blame] | 685 | } |
| 686 | free((char *) iov); |
Dmitry V. Levin | 4ebb4e3 | 2006-12-13 17:08:08 +0000 | [diff] [blame] | 687 | #undef sizeof_iov |
| 688 | #undef iov_iov_base |
| 689 | #undef iov_iov_len |
| 690 | #undef iov |
John Hughes | 1d08dcf | 2001-07-10 13:48:44 +0000 | [diff] [blame] | 691 | } |
| 692 | #endif |
| 693 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 694 | void |
| 695 | dumpstr(tcp, addr, len) |
| 696 | struct tcb *tcp; |
| 697 | long addr; |
| 698 | int len; |
| 699 | { |
| 700 | static int strsize = -1; |
| 701 | static unsigned char *str; |
| 702 | static char outstr[80]; |
| 703 | char *s; |
| 704 | int i, j; |
| 705 | |
| 706 | if (strsize < len) { |
| 707 | if (str) |
| 708 | free(str); |
| 709 | if ((str = malloc(len)) == NULL) { |
Roland McGrath | 46100d0 | 2005-06-01 18:55:42 +0000 | [diff] [blame] | 710 | fprintf(stderr, "out of memory\n"); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 711 | return; |
| 712 | } |
| 713 | strsize = len; |
| 714 | } |
| 715 | |
| 716 | if (umoven(tcp, addr, len, (char *) str) < 0) |
| 717 | return; |
| 718 | |
| 719 | for (i = 0; i < len; i += 16) { |
| 720 | s = outstr; |
| 721 | sprintf(s, " | %05x ", i); |
| 722 | s += 9; |
| 723 | for (j = 0; j < 16; j++) { |
| 724 | if (j == 8) |
| 725 | *s++ = ' '; |
| 726 | if (i + j < len) { |
| 727 | sprintf(s, " %02x", str[i + j]); |
| 728 | s += 3; |
| 729 | } |
| 730 | else { |
| 731 | *s++ = ' '; *s++ = ' '; *s++ = ' '; |
| 732 | } |
| 733 | } |
| 734 | *s++ = ' '; *s++ = ' '; |
| 735 | for (j = 0; j < 16; j++) { |
| 736 | if (j == 8) |
| 737 | *s++ = ' '; |
| 738 | if (i + j < len) { |
| 739 | if (isprint(str[i + j])) |
| 740 | *s++ = str[i + j]; |
| 741 | else |
| 742 | *s++ = '.'; |
| 743 | } |
| 744 | else |
| 745 | *s++ = ' '; |
| 746 | } |
| 747 | tprintf("%s |\n", outstr); |
| 748 | } |
| 749 | } |
| 750 | |
| 751 | #define PAGMASK (~(PAGSIZ - 1)) |
| 752 | /* |
| 753 | * move `len' bytes of data from process `pid' |
| 754 | * at address `addr' to our space at `laddr' |
| 755 | */ |
| 756 | int |
Denys Vlasenko | ef2fbf8 | 2009-01-06 21:45:06 +0000 | [diff] [blame] | 757 | umoven(struct tcb *tcp, long addr, int len, char *laddr) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 758 | { |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 759 | #ifdef LINUX |
Roland McGrath | eb9e2e8 | 2009-06-02 16:49:22 -0700 | [diff] [blame] | 760 | int pid = tcp->pid; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 761 | int n, m; |
Wichert Akkerman | 5daa028 | 1999-03-15 19:49:42 +0000 | [diff] [blame] | 762 | int started = 0; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 763 | union { |
| 764 | long val; |
| 765 | char x[sizeof(long)]; |
| 766 | } u; |
| 767 | |
| 768 | if (addr & (sizeof(long) - 1)) { |
| 769 | /* addr not a multiple of sizeof(long) */ |
| 770 | n = addr - (addr & -sizeof(long)); /* residue */ |
| 771 | addr &= -sizeof(long); /* residue */ |
Roland McGrath | eb9e2e8 | 2009-06-02 16:49:22 -0700 | [diff] [blame] | 772 | errno = 0; |
| 773 | u.val = ptrace(PTRACE_PEEKDATA, pid, (char *) addr, 0); |
| 774 | if (errno) { |
| 775 | if (started && (errno==EPERM || errno==EIO)) { |
| 776 | /* Ran into 'end of memory' - stupid "printpath" */ |
| 777 | return 0; |
| 778 | } |
| 779 | /* But if not started, we had a bogus address. */ |
| 780 | if (addr != 0 && errno != EIO && errno != ESRCH) |
| 781 | perror("ptrace: umoven"); |
| 782 | return -1; |
| 783 | } |
Wichert Akkerman | 5daa028 | 1999-03-15 19:49:42 +0000 | [diff] [blame] | 784 | started = 1; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 785 | memcpy(laddr, &u.x[n], m = MIN(sizeof(long) - n, len)); |
| 786 | addr += sizeof(long), laddr += m, len -= m; |
| 787 | } |
| 788 | while (len) { |
Roland McGrath | eb9e2e8 | 2009-06-02 16:49:22 -0700 | [diff] [blame] | 789 | errno = 0; |
| 790 | u.val = ptrace(PTRACE_PEEKDATA, pid, (char *) addr, 0); |
| 791 | if (errno) { |
| 792 | if (started && (errno==EPERM || errno==EIO)) { |
| 793 | /* Ran into 'end of memory' - stupid "printpath" */ |
| 794 | return 0; |
| 795 | } |
| 796 | if (addr != 0 && errno != EIO && errno != ESRCH) |
| 797 | perror("ptrace: umoven"); |
| 798 | return -1; |
| 799 | } |
Wichert Akkerman | 5daa028 | 1999-03-15 19:49:42 +0000 | [diff] [blame] | 800 | started = 1; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 801 | memcpy(laddr, u.x, m = MIN(sizeof(long), len)); |
| 802 | addr += sizeof(long), laddr += m, len -= m; |
| 803 | } |
| 804 | #endif /* LINUX */ |
| 805 | |
| 806 | #ifdef SUNOS4 |
| 807 | int pid = tcp->pid; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 808 | int n; |
| 809 | |
| 810 | while (len) { |
| 811 | n = MIN(len, PAGSIZ); |
| 812 | n = MIN(n, ((addr + PAGSIZ) & PAGMASK) - addr); |
Roland McGrath | eb9e2e8 | 2009-06-02 16:49:22 -0700 | [diff] [blame] | 813 | if (ptrace(PTRACE_READDATA, pid, |
| 814 | (char *) addr, len, laddr) < 0) { |
| 815 | if (errno != ESRCH) { |
| 816 | perror("umoven: ptrace(PTRACE_READDATA, ...)"); |
| 817 | abort(); |
| 818 | } |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 819 | return -1; |
| 820 | } |
| 821 | len -= n; |
| 822 | addr += n; |
| 823 | laddr += n; |
| 824 | } |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 825 | #endif /* SUNOS4 */ |
| 826 | |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 827 | #ifdef USE_PROCFS |
Wichert Akkerman | ea78f0f | 1999-11-29 15:34:02 +0000 | [diff] [blame] | 828 | #ifdef HAVE_MP_PROCFS |
John Hughes | aa09c6b | 2001-05-15 14:53:43 +0000 | [diff] [blame] | 829 | int fd = tcp->pfd_as; |
Wichert Akkerman | 9ce1a63 | 1999-08-29 23:15:07 +0000 | [diff] [blame] | 830 | #else |
John Hughes | aa09c6b | 2001-05-15 14:53:43 +0000 | [diff] [blame] | 831 | int fd = tcp->pfd; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 832 | #endif |
John Hughes | aa09c6b | 2001-05-15 14:53:43 +0000 | [diff] [blame] | 833 | lseek(fd, addr, SEEK_SET); |
| 834 | if (read(fd, laddr, len) == -1) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 835 | return -1; |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 836 | #endif /* USE_PROCFS */ |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 837 | |
| 838 | return 0; |
| 839 | } |
| 840 | |
| 841 | /* |
| 842 | * like `umove' but make the additional effort of looking |
| 843 | * for a terminating zero byte. |
| 844 | */ |
| 845 | int |
Denys Vlasenko | ef2fbf8 | 2009-01-06 21:45:06 +0000 | [diff] [blame] | 846 | umovestr(struct tcb *tcp, long addr, int len, char *laddr) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 847 | { |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 848 | #ifdef USE_PROCFS |
John Hughes | aa09c6b | 2001-05-15 14:53:43 +0000 | [diff] [blame] | 849 | #ifdef HAVE_MP_PROCFS |
| 850 | int fd = tcp->pfd_as; |
| 851 | #else |
| 852 | int fd = tcp->pfd; |
| 853 | #endif |
| 854 | /* Some systems (e.g. FreeBSD) can be upset if we read off the |
| 855 | end of valid memory, avoid this by trying to read up |
| 856 | to page boundaries. But we don't know what a page is (and |
| 857 | getpagesize(2) (if it exists) doesn't necessarily return |
| 858 | hardware page size). Assume all pages >= 1024 (a-historical |
| 859 | I know) */ |
| 860 | |
| 861 | int page = 1024; /* How to find this? */ |
| 862 | int move = page - (addr & (page - 1)); |
| 863 | int left = len; |
| 864 | |
| 865 | lseek(fd, addr, SEEK_SET); |
| 866 | |
| 867 | while (left) { |
| 868 | if (move > left) move = left; |
John Hughes | 9cecf7f | 2001-10-16 10:20:22 +0000 | [diff] [blame] | 869 | if ((move = read(fd, laddr, move)) <= 0) |
John Hughes | aa09c6b | 2001-05-15 14:53:43 +0000 | [diff] [blame] | 870 | return left != len ? 0 : -1; |
| 871 | if (memchr (laddr, 0, move)) break; |
| 872 | left -= move; |
| 873 | laddr += move; |
| 874 | addr += move; |
| 875 | move = page; |
| 876 | } |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 877 | #else /* !USE_PROCFS */ |
Wichert Akkerman | 5daa028 | 1999-03-15 19:49:42 +0000 | [diff] [blame] | 878 | int started = 0; |
Roland McGrath | eb9e2e8 | 2009-06-02 16:49:22 -0700 | [diff] [blame] | 879 | int pid = tcp->pid; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 880 | int i, n, m; |
| 881 | union { |
| 882 | long val; |
| 883 | char x[sizeof(long)]; |
| 884 | } u; |
| 885 | |
| 886 | if (addr & (sizeof(long) - 1)) { |
| 887 | /* addr not a multiple of sizeof(long) */ |
| 888 | n = addr - (addr & -sizeof(long)); /* residue */ |
| 889 | addr &= -sizeof(long); /* residue */ |
Roland McGrath | eb9e2e8 | 2009-06-02 16:49:22 -0700 | [diff] [blame] | 890 | errno = 0; |
| 891 | u.val = ptrace(PTRACE_PEEKDATA, pid, (char *)addr, 0); |
| 892 | if (errno) { |
| 893 | if (started && (errno==EPERM || errno==EIO)) { |
| 894 | /* Ran into 'end of memory' - stupid "printpath" */ |
| 895 | return 0; |
| 896 | } |
| 897 | if (addr != 0 && errno != EIO && errno != ESRCH) |
| 898 | perror("umovestr"); |
| 899 | return -1; |
| 900 | } |
Wichert Akkerman | 5daa028 | 1999-03-15 19:49:42 +0000 | [diff] [blame] | 901 | started = 1; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 902 | memcpy(laddr, &u.x[n], m = MIN(sizeof(long)-n,len)); |
| 903 | while (n & (sizeof(long) - 1)) |
| 904 | if (u.x[n++] == '\0') |
| 905 | return 0; |
| 906 | addr += sizeof(long), laddr += m, len -= m; |
| 907 | } |
| 908 | while (len) { |
Roland McGrath | eb9e2e8 | 2009-06-02 16:49:22 -0700 | [diff] [blame] | 909 | errno = 0; |
| 910 | u.val = ptrace(PTRACE_PEEKDATA, pid, (char *)addr, 0); |
| 911 | if (errno) { |
| 912 | if (started && (errno==EPERM || errno==EIO)) { |
| 913 | /* Ran into 'end of memory' - stupid "printpath" */ |
| 914 | return 0; |
| 915 | } |
| 916 | if (addr != 0 && errno != EIO && errno != ESRCH) |
| 917 | perror("umovestr"); |
| 918 | return -1; |
| 919 | } |
Wichert Akkerman | 5daa028 | 1999-03-15 19:49:42 +0000 | [diff] [blame] | 920 | started = 1; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 921 | memcpy(laddr, u.x, m = MIN(sizeof(long), len)); |
| 922 | for (i = 0; i < sizeof(long); i++) |
| 923 | if (u.x[i] == '\0') |
| 924 | return 0; |
| 925 | |
| 926 | addr += sizeof(long), laddr += m, len -= m; |
| 927 | } |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 928 | #endif /* !USE_PROCFS */ |
John Hughes | aa09c6b | 2001-05-15 14:53:43 +0000 | [diff] [blame] | 929 | return 0; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 930 | } |
| 931 | |
| 932 | #ifdef LINUX |
Denys Vlasenko | 3bb7cd6 | 2009-02-09 18:55:59 +0000 | [diff] [blame] | 933 | # if !defined (SPARC) && !defined(SPARC64) |
| 934 | # define PTRACE_WRITETEXT 101 |
| 935 | # define PTRACE_WRITEDATA 102 |
| 936 | # endif /* !SPARC && !SPARC64 */ |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 937 | #endif /* LINUX */ |
| 938 | |
| 939 | #ifdef SUNOS4 |
| 940 | |
| 941 | static int |
Roland McGrath | eb9e2e8 | 2009-06-02 16:49:22 -0700 | [diff] [blame] | 942 | uload(cmd, pid, addr, len, laddr) |
| 943 | int cmd; |
| 944 | int pid; |
| 945 | long addr; |
| 946 | int len; |
| 947 | char *laddr; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 948 | { |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 949 | int peek, poke; |
| 950 | int n, m; |
| 951 | union { |
| 952 | long val; |
| 953 | char x[sizeof(long)]; |
| 954 | } u; |
| 955 | |
| 956 | if (cmd == PTRACE_WRITETEXT) { |
| 957 | peek = PTRACE_PEEKTEXT; |
| 958 | poke = PTRACE_POKETEXT; |
| 959 | } |
| 960 | else { |
| 961 | peek = PTRACE_PEEKDATA; |
| 962 | poke = PTRACE_POKEDATA; |
| 963 | } |
| 964 | if (addr & (sizeof(long) - 1)) { |
| 965 | /* addr not a multiple of sizeof(long) */ |
| 966 | n = addr - (addr & -sizeof(long)); /* residue */ |
| 967 | addr &= -sizeof(long); |
Roland McGrath | eb9e2e8 | 2009-06-02 16:49:22 -0700 | [diff] [blame] | 968 | errno = 0; |
| 969 | u.val = ptrace(peek, pid, (char *) addr, 0); |
| 970 | if (errno) { |
| 971 | perror("uload: POKE"); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 972 | return -1; |
| 973 | } |
Roland McGrath | eb9e2e8 | 2009-06-02 16:49:22 -0700 | [diff] [blame] | 974 | memcpy(&u.x[n], laddr, m = MIN(sizeof(long) - n, len)); |
| 975 | if (ptrace(poke, pid, (char *)addr, u.val) < 0) { |
| 976 | perror("uload: POKE"); |
| 977 | return -1; |
| 978 | } |
| 979 | addr += sizeof(long), laddr += m, len -= m; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 980 | } |
| 981 | while (len) { |
| 982 | if (len < sizeof(long)) |
Roland McGrath | eb9e2e8 | 2009-06-02 16:49:22 -0700 | [diff] [blame] | 983 | u.val = ptrace(peek, pid, (char *) addr, 0); |
| 984 | memcpy(u.x, laddr, m = MIN(sizeof(long), len)); |
| 985 | if (ptrace(poke, pid, (char *) addr, u.val) < 0) { |
| 986 | perror("uload: POKE"); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 987 | return -1; |
| 988 | } |
Roland McGrath | eb9e2e8 | 2009-06-02 16:49:22 -0700 | [diff] [blame] | 989 | addr += sizeof(long), laddr += m, len -= m; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 990 | } |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 991 | return 0; |
| 992 | } |
| 993 | |
Roland McGrath | eb9e2e8 | 2009-06-02 16:49:22 -0700 | [diff] [blame] | 994 | int |
| 995 | tload(pid, addr, len, laddr) |
| 996 | int pid; |
| 997 | int addr, len; |
| 998 | char *laddr; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 999 | { |
Roland McGrath | eb9e2e8 | 2009-06-02 16:49:22 -0700 | [diff] [blame] | 1000 | return uload(PTRACE_WRITETEXT, pid, addr, len, laddr); |
| 1001 | } |
| 1002 | |
| 1003 | int |
| 1004 | dload(pid, addr, len, laddr) |
| 1005 | int pid; |
| 1006 | int addr; |
| 1007 | int len; |
| 1008 | char *laddr; |
| 1009 | { |
| 1010 | return uload(PTRACE_WRITEDATA, pid, addr, len, laddr); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1011 | } |
| 1012 | |
| 1013 | #endif /* SUNOS4 */ |
| 1014 | |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 1015 | #ifndef USE_PROCFS |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1016 | |
| 1017 | int |
Roland McGrath | eb9e2e8 | 2009-06-02 16:49:22 -0700 | [diff] [blame] | 1018 | upeek(tcp, off, res) |
| 1019 | struct tcb *tcp; |
| 1020 | long off; |
| 1021 | long *res; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1022 | { |
| 1023 | long val; |
| 1024 | |
Denys Vlasenko | 3bb7cd6 | 2009-02-09 18:55:59 +0000 | [diff] [blame] | 1025 | # ifdef SUNOS4_KERNEL_ARCH_KLUDGE |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1026 | { |
| 1027 | static int is_sun4m = -1; |
| 1028 | struct utsname name; |
| 1029 | |
| 1030 | /* Round up the usual suspects. */ |
| 1031 | if (is_sun4m == -1) { |
| 1032 | if (uname(&name) < 0) { |
| 1033 | perror("upeek: uname?"); |
| 1034 | exit(1); |
| 1035 | } |
| 1036 | is_sun4m = strcmp(name.machine, "sun4m") == 0; |
| 1037 | if (is_sun4m) { |
Roland McGrath | d9f816f | 2004-09-04 03:39:20 +0000 | [diff] [blame] | 1038 | const struct xlat *x; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1039 | |
| 1040 | for (x = struct_user_offsets; x->str; x++) |
| 1041 | x->val += 1024; |
| 1042 | } |
| 1043 | } |
| 1044 | if (is_sun4m) |
| 1045 | off += 1024; |
| 1046 | } |
Denys Vlasenko | 3bb7cd6 | 2009-02-09 18:55:59 +0000 | [diff] [blame] | 1047 | # endif /* SUNOS4_KERNEL_ARCH_KLUDGE */ |
Roland McGrath | eb9e2e8 | 2009-06-02 16:49:22 -0700 | [diff] [blame] | 1048 | errno = 0; |
Denys Vlasenko | 732d1bf | 2008-12-17 19:21:59 +0000 | [diff] [blame] | 1049 | val = do_ptrace(PTRACE_PEEKUSER, tcp, (char *) off, 0); |
Roland McGrath | eb9e2e8 | 2009-06-02 16:49:22 -0700 | [diff] [blame] | 1050 | if (val == -1 && errno) { |
| 1051 | if (errno != ESRCH) { |
| 1052 | char buf[60]; |
| 1053 | sprintf(buf,"upeek: ptrace(PTRACE_PEEKUSER,%d,%lu,0)", tcp->pid, off); |
| 1054 | perror(buf); |
| 1055 | } |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1056 | return -1; |
Roland McGrath | eb9e2e8 | 2009-06-02 16:49:22 -0700 | [diff] [blame] | 1057 | } |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1058 | *res = val; |
| 1059 | return 0; |
| 1060 | } |
| 1061 | |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 1062 | #endif /* !USE_PROCFS */ |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1063 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1064 | void |
Denys Vlasenko | ea0e6e8 | 2009-02-25 17:08:40 +0000 | [diff] [blame] | 1065 | printcall(struct tcb *tcp) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1066 | { |
Roland McGrath | 7a91883 | 2005-02-02 20:55:23 +0000 | [diff] [blame] | 1067 | #define PRINTBADPC tprintf(sizeof(long) == 4 ? "[????????] " : \ |
| 1068 | sizeof(long) == 8 ? "[????????????????] " : \ |
| 1069 | NULL /* crash */) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1070 | |
| 1071 | #ifdef LINUX |
Denys Vlasenko | 3bb7cd6 | 2009-02-09 18:55:59 +0000 | [diff] [blame] | 1072 | # ifdef I386 |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1073 | long eip; |
| 1074 | |
Denys Vlasenko | 932fc7d | 2008-12-16 18:18:40 +0000 | [diff] [blame] | 1075 | if (upeek(tcp, 4*EIP, &eip) < 0) { |
Roland McGrath | 7a91883 | 2005-02-02 20:55:23 +0000 | [diff] [blame] | 1076 | PRINTBADPC; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1077 | return; |
| 1078 | } |
| 1079 | tprintf("[%08lx] ", eip); |
Roland McGrath | eac26fc | 2005-02-02 02:48:53 +0000 | [diff] [blame] | 1080 | |
Denys Vlasenko | 3bb7cd6 | 2009-02-09 18:55:59 +0000 | [diff] [blame] | 1081 | # elif defined(S390) || defined(S390X) |
Denys Vlasenko | adedb51 | 2008-12-30 18:47:55 +0000 | [diff] [blame] | 1082 | long psw; |
Roland McGrath | eb9e2e8 | 2009-06-02 16:49:22 -0700 | [diff] [blame] | 1083 | if(upeek(tcp,PT_PSWADDR,&psw) < 0) { |
Denys Vlasenko | adedb51 | 2008-12-30 18:47:55 +0000 | [diff] [blame] | 1084 | PRINTBADPC; |
| 1085 | return; |
| 1086 | } |
Denys Vlasenko | 3bb7cd6 | 2009-02-09 18:55:59 +0000 | [diff] [blame] | 1087 | # ifdef S390 |
Denys Vlasenko | adedb51 | 2008-12-30 18:47:55 +0000 | [diff] [blame] | 1088 | tprintf("[%08lx] ", psw); |
Denys Vlasenko | 3bb7cd6 | 2009-02-09 18:55:59 +0000 | [diff] [blame] | 1089 | # elif S390X |
Denys Vlasenko | adedb51 | 2008-12-30 18:47:55 +0000 | [diff] [blame] | 1090 | tprintf("[%16lx] ", psw); |
Denys Vlasenko | 3bb7cd6 | 2009-02-09 18:55:59 +0000 | [diff] [blame] | 1091 | # endif |
Roland McGrath | eac26fc | 2005-02-02 02:48:53 +0000 | [diff] [blame] | 1092 | |
Denys Vlasenko | 3bb7cd6 | 2009-02-09 18:55:59 +0000 | [diff] [blame] | 1093 | # elif defined(X86_64) |
Michal Ludvig | 0e03550 | 2002-09-23 15:41:01 +0000 | [diff] [blame] | 1094 | long rip; |
| 1095 | |
Denys Vlasenko | 932fc7d | 2008-12-16 18:18:40 +0000 | [diff] [blame] | 1096 | if (upeek(tcp, 8*RIP, &rip) < 0) { |
Roland McGrath | 7a91883 | 2005-02-02 20:55:23 +0000 | [diff] [blame] | 1097 | PRINTBADPC; |
Michal Ludvig | 0e03550 | 2002-09-23 15:41:01 +0000 | [diff] [blame] | 1098 | return; |
| 1099 | } |
| 1100 | tprintf("[%16lx] ", rip); |
Denys Vlasenko | 3bb7cd6 | 2009-02-09 18:55:59 +0000 | [diff] [blame] | 1101 | # elif defined(IA64) |
Wichert Akkerman | 8b1b40c | 2000-02-03 21:58:30 +0000 | [diff] [blame] | 1102 | long ip; |
| 1103 | |
Denys Vlasenko | 932fc7d | 2008-12-16 18:18:40 +0000 | [diff] [blame] | 1104 | if (upeek(tcp, PT_B0, &ip) < 0) { |
Roland McGrath | 7a91883 | 2005-02-02 20:55:23 +0000 | [diff] [blame] | 1105 | PRINTBADPC; |
Wichert Akkerman | 8b1b40c | 2000-02-03 21:58:30 +0000 | [diff] [blame] | 1106 | return; |
| 1107 | } |
| 1108 | tprintf("[%08lx] ", ip); |
Denys Vlasenko | 3bb7cd6 | 2009-02-09 18:55:59 +0000 | [diff] [blame] | 1109 | # elif defined(POWERPC) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1110 | long pc; |
| 1111 | |
Denys Vlasenko | 932fc7d | 2008-12-16 18:18:40 +0000 | [diff] [blame] | 1112 | if (upeek(tcp, sizeof(unsigned long)*PT_NIP, &pc) < 0) { |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1113 | tprintf ("[????????] "); |
| 1114 | return; |
| 1115 | } |
| 1116 | tprintf("[%08lx] ", pc); |
Denys Vlasenko | 3bb7cd6 | 2009-02-09 18:55:59 +0000 | [diff] [blame] | 1117 | # elif defined(M68K) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1118 | long pc; |
| 1119 | |
Denys Vlasenko | 932fc7d | 2008-12-16 18:18:40 +0000 | [diff] [blame] | 1120 | if (upeek(tcp, 4*PT_PC, &pc) < 0) { |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1121 | tprintf ("[????????] "); |
| 1122 | return; |
| 1123 | } |
| 1124 | tprintf("[%08lx] ", pc); |
Denys Vlasenko | 3bb7cd6 | 2009-02-09 18:55:59 +0000 | [diff] [blame] | 1125 | # elif defined(ALPHA) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1126 | long pc; |
| 1127 | |
Denys Vlasenko | 932fc7d | 2008-12-16 18:18:40 +0000 | [diff] [blame] | 1128 | if (upeek(tcp, REG_PC, &pc) < 0) { |
Roland McGrath | 7a91883 | 2005-02-02 20:55:23 +0000 | [diff] [blame] | 1129 | tprintf ("[????????????????] "); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1130 | return; |
| 1131 | } |
| 1132 | tprintf("[%08lx] ", pc); |
Denys Vlasenko | 3bb7cd6 | 2009-02-09 18:55:59 +0000 | [diff] [blame] | 1133 | # elif defined(SPARC) || defined(SPARC64) |
Mike Frysinger | 8566c50 | 2009-10-12 11:05:14 -0400 | [diff] [blame] | 1134 | struct pt_regs regs; |
Roland McGrath | eb9e2e8 | 2009-06-02 16:49:22 -0700 | [diff] [blame] | 1135 | if (ptrace(PTRACE_GETREGS,tcp->pid,(char *)®s,0) < 0) { |
Roland McGrath | 7a91883 | 2005-02-02 20:55:23 +0000 | [diff] [blame] | 1136 | PRINTBADPC; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1137 | return; |
| 1138 | } |
Mike Frysinger | 8566c50 | 2009-10-12 11:05:14 -0400 | [diff] [blame] | 1139 | # if defined(SPARC64) |
| 1140 | tprintf("[%08lx] ", regs.tpc); |
| 1141 | # else |
| 1142 | tprintf("[%08lx] ", regs.pc); |
| 1143 | # endif |
Denys Vlasenko | 3bb7cd6 | 2009-02-09 18:55:59 +0000 | [diff] [blame] | 1144 | # elif defined(HPPA) |
Wichert Akkerman | c1652e2 | 2001-03-27 12:17:16 +0000 | [diff] [blame] | 1145 | long pc; |
| 1146 | |
Roland McGrath | eb9e2e8 | 2009-06-02 16:49:22 -0700 | [diff] [blame] | 1147 | if(upeek(tcp,PT_IAOQ0,&pc) < 0) { |
Wichert Akkerman | c1652e2 | 2001-03-27 12:17:16 +0000 | [diff] [blame] | 1148 | tprintf ("[????????] "); |
| 1149 | return; |
| 1150 | } |
| 1151 | tprintf("[%08lx] ", pc); |
Denys Vlasenko | 3bb7cd6 | 2009-02-09 18:55:59 +0000 | [diff] [blame] | 1152 | # elif defined(MIPS) |
Wichert Akkerman | 75c422b | 2001-04-10 10:22:50 +0000 | [diff] [blame] | 1153 | long pc; |
| 1154 | |
Denys Vlasenko | 932fc7d | 2008-12-16 18:18:40 +0000 | [diff] [blame] | 1155 | if (upeek(tcp, REG_EPC, &pc) < 0) { |
Wichert Akkerman | 75c422b | 2001-04-10 10:22:50 +0000 | [diff] [blame] | 1156 | tprintf ("[????????] "); |
| 1157 | return; |
| 1158 | } |
| 1159 | tprintf("[%08lx] ", pc); |
Denys Vlasenko | 3bb7cd6 | 2009-02-09 18:55:59 +0000 | [diff] [blame] | 1160 | # elif defined(SH) |
Denys Vlasenko | adedb51 | 2008-12-30 18:47:55 +0000 | [diff] [blame] | 1161 | long pc; |
Wichert Akkerman | ccef637 | 2002-05-01 16:39:22 +0000 | [diff] [blame] | 1162 | |
Denys Vlasenko | adedb51 | 2008-12-30 18:47:55 +0000 | [diff] [blame] | 1163 | if (upeek(tcp, 4*REG_PC, &pc) < 0) { |
| 1164 | tprintf ("[????????] "); |
| 1165 | return; |
| 1166 | } |
| 1167 | tprintf("[%08lx] ", pc); |
Denys Vlasenko | 3bb7cd6 | 2009-02-09 18:55:59 +0000 | [diff] [blame] | 1168 | # elif defined(SH64) |
Roland McGrath | e1e584b | 2003-06-02 19:18:58 +0000 | [diff] [blame] | 1169 | long pc; |
| 1170 | |
Denys Vlasenko | 932fc7d | 2008-12-16 18:18:40 +0000 | [diff] [blame] | 1171 | if (upeek(tcp, REG_PC, &pc) < 0) { |
Roland McGrath | 7a91883 | 2005-02-02 20:55:23 +0000 | [diff] [blame] | 1172 | tprintf ("[????????????????] "); |
Roland McGrath | e1e584b | 2003-06-02 19:18:58 +0000 | [diff] [blame] | 1173 | return; |
| 1174 | } |
| 1175 | tprintf("[%08lx] ", pc); |
Denys Vlasenko | 3bb7cd6 | 2009-02-09 18:55:59 +0000 | [diff] [blame] | 1176 | # elif defined(ARM) |
Roland McGrath | ef38868 | 2003-06-03 23:28:59 +0000 | [diff] [blame] | 1177 | long pc; |
Roland McGrath | e1e584b | 2003-06-02 19:18:58 +0000 | [diff] [blame] | 1178 | |
Denys Vlasenko | 932fc7d | 2008-12-16 18:18:40 +0000 | [diff] [blame] | 1179 | if (upeek(tcp, 4*15, &pc) < 0) { |
Roland McGrath | 7a91883 | 2005-02-02 20:55:23 +0000 | [diff] [blame] | 1180 | PRINTBADPC; |
Roland McGrath | ef38868 | 2003-06-03 23:28:59 +0000 | [diff] [blame] | 1181 | return; |
| 1182 | } |
| 1183 | tprintf("[%08lx] ", pc); |
Denys Vlasenko | 5ae2b7c | 2009-02-27 20:32:52 +0000 | [diff] [blame] | 1184 | # elif defined(AVR32) |
| 1185 | long pc; |
| 1186 | |
| 1187 | if (upeek(tcp, REG_PC, &pc) < 0) { |
| 1188 | tprintf("[????????] "); |
| 1189 | return; |
| 1190 | } |
| 1191 | tprintf("[%08lx] ", pc); |
Denys Vlasenko | 3bb7cd6 | 2009-02-09 18:55:59 +0000 | [diff] [blame] | 1192 | # elif defined(BFIN) |
Dmitry V. Levin | 87ea1f4 | 2008-11-10 22:21:41 +0000 | [diff] [blame] | 1193 | long pc; |
| 1194 | |
Denys Vlasenko | 932fc7d | 2008-12-16 18:18:40 +0000 | [diff] [blame] | 1195 | if (upeek(tcp, PT_PC, &pc) < 0) { |
Dmitry V. Levin | 87ea1f4 | 2008-11-10 22:21:41 +0000 | [diff] [blame] | 1196 | PRINTBADPC; |
| 1197 | return; |
| 1198 | } |
| 1199 | tprintf("[%08lx] ", pc); |
Denys Vlasenko | ea0e6e8 | 2009-02-25 17:08:40 +0000 | [diff] [blame] | 1200 | #elif defined(CRISV10) |
| 1201 | long pc; |
| 1202 | |
Edgar E. Iglesias | eeb9ce3 | 2009-10-05 14:41:02 +0000 | [diff] [blame] | 1203 | if (upeek(tcp, 4*PT_IRP, &pc) < 0) { |
Denys Vlasenko | ea0e6e8 | 2009-02-25 17:08:40 +0000 | [diff] [blame] | 1204 | PRINTBADPC; |
| 1205 | return; |
| 1206 | } |
| 1207 | tprintf("[%08lx] ", pc); |
| 1208 | #elif defined(CRISV32) |
| 1209 | long pc; |
| 1210 | |
Edgar E. Iglesias | eeb9ce3 | 2009-10-05 14:41:02 +0000 | [diff] [blame] | 1211 | if (upeek(tcp, 4*PT_ERP, &pc) < 0) { |
Denys Vlasenko | ea0e6e8 | 2009-02-25 17:08:40 +0000 | [diff] [blame] | 1212 | PRINTBADPC; |
| 1213 | return; |
| 1214 | } |
| 1215 | tprintf("[%08lx] ", pc); |
Denys Vlasenko | 3bb7cd6 | 2009-02-09 18:55:59 +0000 | [diff] [blame] | 1216 | # endif /* architecture */ |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1217 | #endif /* LINUX */ |
| 1218 | |
| 1219 | #ifdef SUNOS4 |
| 1220 | struct regs regs; |
| 1221 | |
Roland McGrath | eb9e2e8 | 2009-06-02 16:49:22 -0700 | [diff] [blame] | 1222 | if (ptrace(PTRACE_GETREGS, tcp->pid, (char *) ®s, 0) < 0) { |
| 1223 | perror("printcall: ptrace(PTRACE_GETREGS, ...)"); |
Roland McGrath | 7a91883 | 2005-02-02 20:55:23 +0000 | [diff] [blame] | 1224 | PRINTBADPC; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1225 | return; |
| 1226 | } |
| 1227 | tprintf("[%08x] ", regs.r_o7); |
| 1228 | #endif /* SUNOS4 */ |
| 1229 | |
| 1230 | #ifdef SVR4 |
| 1231 | /* XXX */ |
Roland McGrath | 7a91883 | 2005-02-02 20:55:23 +0000 | [diff] [blame] | 1232 | PRINTBADPC; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1233 | #endif |
| 1234 | |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 1235 | #ifdef FREEBSD |
| 1236 | struct reg regs; |
| 1237 | pread(tcp->pfd_reg, ®s, sizeof(regs), 0); |
| 1238 | tprintf("[%08x] ", regs.r_eip); |
| 1239 | #endif /* FREEBSD */ |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1240 | } |
| 1241 | |
Denys Vlasenko | 3bb7cd6 | 2009-02-09 18:55:59 +0000 | [diff] [blame] | 1242 | |
| 1243 | /* |
| 1244 | * These #if's are huge, please indent them correctly. |
| 1245 | * It's easy to get confused otherwise. |
| 1246 | */ |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 1247 | #ifndef USE_PROCFS |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1248 | |
Dmitry V. Levin | e5e6085 | 2009-12-31 22:50:49 +0000 | [diff] [blame^] | 1249 | #ifdef LINUX |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1250 | |
Denys Vlasenko | 3bb7cd6 | 2009-02-09 18:55:59 +0000 | [diff] [blame] | 1251 | # include "syscall.h" |
Roland McGrath | 3291ef2 | 2008-05-20 00:34:34 +0000 | [diff] [blame] | 1252 | |
Denys Vlasenko | 3bb7cd6 | 2009-02-09 18:55:59 +0000 | [diff] [blame] | 1253 | # include <sys/syscall.h> |
| 1254 | # ifndef CLONE_PTRACE |
| 1255 | # define CLONE_PTRACE 0x00002000 |
| 1256 | # endif |
| 1257 | # ifndef CLONE_VFORK |
| 1258 | # define CLONE_VFORK 0x00004000 |
| 1259 | # endif |
| 1260 | # ifndef CLONE_VM |
| 1261 | # define CLONE_VM 0x00000100 |
| 1262 | # endif |
| 1263 | # ifndef CLONE_STOPPED |
| 1264 | # define CLONE_STOPPED 0x02000000 |
| 1265 | # endif |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1266 | |
Denys Vlasenko | 3bb7cd6 | 2009-02-09 18:55:59 +0000 | [diff] [blame] | 1267 | # ifdef IA64 |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1268 | |
Roland McGrath | 08267b8 | 2004-02-20 22:56:43 +0000 | [diff] [blame] | 1269 | /* We don't have fork()/vfork() syscalls on ia64 itself, but the ia32 |
| 1270 | subsystem has them for x86... */ |
Denys Vlasenko | 3bb7cd6 | 2009-02-09 18:55:59 +0000 | [diff] [blame] | 1271 | # define SYS_fork 2 |
| 1272 | # define SYS_vfork 190 |
Roland McGrath | 08267b8 | 2004-02-20 22:56:43 +0000 | [diff] [blame] | 1273 | |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1274 | typedef unsigned long *arg_setup_state; |
| 1275 | |
| 1276 | static int |
| 1277 | arg_setup(struct tcb *tcp, arg_setup_state *state) |
| 1278 | { |
Jan Kratochvil | 1f94271 | 2008-08-06 21:38:52 +0000 | [diff] [blame] | 1279 | unsigned long cfm, sof, sol; |
| 1280 | long bsp; |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1281 | |
Jan Kratochvil | 1f94271 | 2008-08-06 21:38:52 +0000 | [diff] [blame] | 1282 | if (ia32) { |
| 1283 | /* Satisfy a false GCC warning. */ |
| 1284 | *state = NULL; |
Roland McGrath | 08267b8 | 2004-02-20 22:56:43 +0000 | [diff] [blame] | 1285 | return 0; |
Jan Kratochvil | 1f94271 | 2008-08-06 21:38:52 +0000 | [diff] [blame] | 1286 | } |
Roland McGrath | 08267b8 | 2004-02-20 22:56:43 +0000 | [diff] [blame] | 1287 | |
Denys Vlasenko | 932fc7d | 2008-12-16 18:18:40 +0000 | [diff] [blame] | 1288 | if (upeek(tcp, PT_AR_BSP, &bsp) < 0) |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1289 | return -1; |
Denys Vlasenko | 932fc7d | 2008-12-16 18:18:40 +0000 | [diff] [blame] | 1290 | if (upeek(tcp, PT_CFM, (long *) &cfm) < 0) |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1291 | return -1; |
| 1292 | |
| 1293 | sof = (cfm >> 0) & 0x7f; |
| 1294 | sol = (cfm >> 7) & 0x7f; |
Jan Kratochvil | 1f94271 | 2008-08-06 21:38:52 +0000 | [diff] [blame] | 1295 | bsp = (long) ia64_rse_skip_regs((unsigned long *) bsp, -sof + sol); |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1296 | |
Jan Kratochvil | 1f94271 | 2008-08-06 21:38:52 +0000 | [diff] [blame] | 1297 | *state = (unsigned long *) bsp; |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1298 | return 0; |
| 1299 | } |
| 1300 | |
Denys Vlasenko | 3bb7cd6 | 2009-02-09 18:55:59 +0000 | [diff] [blame] | 1301 | # define arg_finish_change(tcp, state) 0 |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1302 | |
Denys Vlasenko | 3bb7cd6 | 2009-02-09 18:55:59 +0000 | [diff] [blame] | 1303 | # ifdef SYS_fork |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1304 | static int |
| 1305 | get_arg0 (struct tcb *tcp, arg_setup_state *state, long *valp) |
| 1306 | { |
Roland McGrath | 08267b8 | 2004-02-20 22:56:43 +0000 | [diff] [blame] | 1307 | int ret; |
| 1308 | |
| 1309 | if (ia32) |
Denys Vlasenko | 932fc7d | 2008-12-16 18:18:40 +0000 | [diff] [blame] | 1310 | ret = upeek (tcp, PT_R11, valp); |
Roland McGrath | 08267b8 | 2004-02-20 22:56:43 +0000 | [diff] [blame] | 1311 | else |
| 1312 | ret = umoven (tcp, |
| 1313 | (unsigned long) ia64_rse_skip_regs(*state, 0), |
| 1314 | sizeof(long), (void *) valp); |
| 1315 | return ret; |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1316 | } |
| 1317 | |
| 1318 | static int |
| 1319 | get_arg1 (struct tcb *tcp, arg_setup_state *state, long *valp) |
| 1320 | { |
Roland McGrath | 08267b8 | 2004-02-20 22:56:43 +0000 | [diff] [blame] | 1321 | int ret; |
| 1322 | |
| 1323 | if (ia32) |
Denys Vlasenko | 932fc7d | 2008-12-16 18:18:40 +0000 | [diff] [blame] | 1324 | ret = upeek (tcp, PT_R9, valp); |
Roland McGrath | 08267b8 | 2004-02-20 22:56:43 +0000 | [diff] [blame] | 1325 | else |
| 1326 | ret = umoven (tcp, |
| 1327 | (unsigned long) ia64_rse_skip_regs(*state, 1), |
| 1328 | sizeof(long), (void *) valp); |
| 1329 | return ret; |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1330 | } |
Denys Vlasenko | 3bb7cd6 | 2009-02-09 18:55:59 +0000 | [diff] [blame] | 1331 | # endif |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1332 | |
| 1333 | static int |
| 1334 | set_arg0 (struct tcb *tcp, arg_setup_state *state, long val) |
| 1335 | { |
Roland McGrath | 08267b8 | 2004-02-20 22:56:43 +0000 | [diff] [blame] | 1336 | int req = PTRACE_POKEDATA; |
| 1337 | void *ap; |
| 1338 | |
| 1339 | if (ia32) { |
| 1340 | ap = (void *) (intptr_t) PT_R11; /* r11 == EBX */ |
| 1341 | req = PTRACE_POKEUSER; |
| 1342 | } else |
| 1343 | ap = ia64_rse_skip_regs(*state, 0); |
Roland McGrath | eb9e2e8 | 2009-06-02 16:49:22 -0700 | [diff] [blame] | 1344 | errno = 0; |
| 1345 | ptrace(req, tcp->pid, ap, val); |
| 1346 | return errno ? -1 : 0; |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1347 | } |
| 1348 | |
| 1349 | static int |
| 1350 | set_arg1 (struct tcb *tcp, arg_setup_state *state, long val) |
| 1351 | { |
Roland McGrath | 08267b8 | 2004-02-20 22:56:43 +0000 | [diff] [blame] | 1352 | int req = PTRACE_POKEDATA; |
| 1353 | void *ap; |
| 1354 | |
| 1355 | if (ia32) { |
| 1356 | ap = (void *) (intptr_t) PT_R9; /* r9 == ECX */ |
| 1357 | req = PTRACE_POKEUSER; |
| 1358 | } else |
| 1359 | ap = ia64_rse_skip_regs(*state, 1); |
Roland McGrath | eb9e2e8 | 2009-06-02 16:49:22 -0700 | [diff] [blame] | 1360 | errno = 0; |
| 1361 | ptrace(req, tcp->pid, ap, val); |
| 1362 | return errno ? -1 : 0; |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1363 | } |
| 1364 | |
Roland McGrath | b659f87 | 2008-07-18 01:19:36 +0000 | [diff] [blame] | 1365 | /* ia64 does not return the input arguments from functions (and syscalls) |
| 1366 | according to ia64 RSE (Register Stack Engine) behavior. */ |
| 1367 | |
Denys Vlasenko | 3bb7cd6 | 2009-02-09 18:55:59 +0000 | [diff] [blame] | 1368 | # define restore_arg0(tcp, state, val) ((void) (state), 0) |
| 1369 | # define restore_arg1(tcp, state, val) ((void) (state), 0) |
Roland McGrath | b659f87 | 2008-07-18 01:19:36 +0000 | [diff] [blame] | 1370 | |
Denys Vlasenko | 3bb7cd6 | 2009-02-09 18:55:59 +0000 | [diff] [blame] | 1371 | # elif defined (SPARC) || defined (SPARC64) |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1372 | |
Mike Frysinger | 8566c50 | 2009-10-12 11:05:14 -0400 | [diff] [blame] | 1373 | typedef struct pt_regs arg_setup_state; |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1374 | |
Denys Vlasenko | 3bb7cd6 | 2009-02-09 18:55:59 +0000 | [diff] [blame] | 1375 | # define arg_setup(tcp, state) \ |
Roland McGrath | eb9e2e8 | 2009-06-02 16:49:22 -0700 | [diff] [blame] | 1376 | (ptrace (PTRACE_GETREGS, tcp->pid, (char *) (state), 0)) |
Denys Vlasenko | 3bb7cd6 | 2009-02-09 18:55:59 +0000 | [diff] [blame] | 1377 | # define arg_finish_change(tcp, state) \ |
Roland McGrath | eb9e2e8 | 2009-06-02 16:49:22 -0700 | [diff] [blame] | 1378 | (ptrace (PTRACE_SETREGS, tcp->pid, (char *) (state), 0)) |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1379 | |
Mike Frysinger | 8566c50 | 2009-10-12 11:05:14 -0400 | [diff] [blame] | 1380 | # define get_arg0(tcp, state, valp) (*(valp) = (state)->u_regs[U_REG_O0], 0) |
| 1381 | # define get_arg1(tcp, state, valp) (*(valp) = (state)->u_regs[U_REG_O1], 0) |
| 1382 | # define set_arg0(tcp, state, val) ((state)->u_regs[U_REG_O0] = (val), 0) |
| 1383 | # define set_arg1(tcp, state, val) ((state)->u_regs[U_REG_O1] = (val), 0) |
Denys Vlasenko | 3bb7cd6 | 2009-02-09 18:55:59 +0000 | [diff] [blame] | 1384 | # define restore_arg0(tcp, state, val) 0 |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1385 | |
Denys Vlasenko | 3bb7cd6 | 2009-02-09 18:55:59 +0000 | [diff] [blame] | 1386 | # else /* other architectures */ |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1387 | |
Denys Vlasenko | 3bb7cd6 | 2009-02-09 18:55:59 +0000 | [diff] [blame] | 1388 | # if defined S390 || defined S390X |
Roland McGrath | 7b30822 | 2003-01-20 09:04:36 +0000 | [diff] [blame] | 1389 | /* Note: this is only true for the `clone' system call, which handles |
| 1390 | arguments specially. We could as well say that its first two arguments |
| 1391 | are swapped relative to other architectures, but that would just be |
| 1392 | another #ifdef in the calls. */ |
Denys Vlasenko | 3bb7cd6 | 2009-02-09 18:55:59 +0000 | [diff] [blame] | 1393 | # define arg0_offset PT_GPR3 |
| 1394 | # define arg1_offset PT_ORIGGPR2 |
| 1395 | # define restore_arg0(tcp, state, val) ((void) (state), 0) |
| 1396 | # define restore_arg1(tcp, state, val) ((void) (state), 0) |
| 1397 | # define arg0_index 1 |
| 1398 | # define arg1_index 0 |
| 1399 | # elif defined (ALPHA) || defined (MIPS) |
| 1400 | # define arg0_offset REG_A0 |
| 1401 | # define arg1_offset (REG_A0+1) |
Denys Vlasenko | 5ae2b7c | 2009-02-27 20:32:52 +0000 | [diff] [blame] | 1402 | # elif defined (AVR32) |
| 1403 | # define arg0_offset (REG_R12) |
| 1404 | # define arg1_offset (REG_R11) |
Denys Vlasenko | 3bb7cd6 | 2009-02-09 18:55:59 +0000 | [diff] [blame] | 1405 | # elif defined (POWERPC) |
| 1406 | # define arg0_offset (sizeof(unsigned long)*PT_R3) |
| 1407 | # define arg1_offset (sizeof(unsigned long)*PT_R4) |
| 1408 | # define restore_arg0(tcp, state, val) ((void) (state), 0) |
| 1409 | # elif defined (HPPA) |
| 1410 | # define arg0_offset PT_GR26 |
| 1411 | # define arg1_offset (PT_GR26-4) |
| 1412 | # elif defined (X86_64) |
| 1413 | # define arg0_offset ((long)(8*(current_personality ? RBX : RDI))) |
| 1414 | # define arg1_offset ((long)(8*(current_personality ? RCX : RSI))) |
| 1415 | # elif defined (SH) |
| 1416 | # define arg0_offset (4*(REG_REG0+4)) |
| 1417 | # define arg1_offset (4*(REG_REG0+5)) |
| 1418 | # elif defined (SH64) |
| 1419 | /* ABI defines arg0 & 1 in r2 & r3 */ |
| 1420 | # define arg0_offset (REG_OFFSET+16) |
| 1421 | # define arg1_offset (REG_OFFSET+24) |
| 1422 | # define restore_arg0(tcp, state, val) 0 |
Denys Vlasenko | ea0e6e8 | 2009-02-25 17:08:40 +0000 | [diff] [blame] | 1423 | # elif defined CRISV10 || defined CRISV32 |
| 1424 | # define arg0_offset (4*PT_R11) |
| 1425 | # define arg1_offset (4*PT_ORIG_R10) |
| 1426 | # define restore_arg0(tcp, state, val) 0 |
| 1427 | # define restore_arg1(tcp, state, val) 0 |
| 1428 | # define arg0_index 1 |
| 1429 | # define arg1_index 0 |
Denys Vlasenko | 3bb7cd6 | 2009-02-09 18:55:59 +0000 | [diff] [blame] | 1430 | # else |
| 1431 | # define arg0_offset 0 |
| 1432 | # define arg1_offset 4 |
| 1433 | # if defined ARM |
| 1434 | # define restore_arg0(tcp, state, val) 0 |
| 1435 | # endif |
| 1436 | # endif |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1437 | |
| 1438 | typedef int arg_setup_state; |
| 1439 | |
Denys Vlasenko | 3bb7cd6 | 2009-02-09 18:55:59 +0000 | [diff] [blame] | 1440 | # define arg_setup(tcp, state) (0) |
| 1441 | # define arg_finish_change(tcp, state) 0 |
| 1442 | # define get_arg0(tcp, cookie, valp) \ |
| 1443 | (upeek ((tcp), arg0_offset, (valp))) |
| 1444 | # define get_arg1(tcp, cookie, valp) \ |
| 1445 | (upeek ((tcp), arg1_offset, (valp))) |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1446 | |
| 1447 | static int |
Roland McGrath | eb9e2e8 | 2009-06-02 16:49:22 -0700 | [diff] [blame] | 1448 | set_arg0 (struct tcb *tcp, void *cookie, long val) |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1449 | { |
Roland McGrath | eb9e2e8 | 2009-06-02 16:49:22 -0700 | [diff] [blame] | 1450 | return ptrace (PTRACE_POKEUSER, tcp->pid, (char*)arg0_offset, val); |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1451 | } |
| 1452 | |
| 1453 | static int |
Roland McGrath | eb9e2e8 | 2009-06-02 16:49:22 -0700 | [diff] [blame] | 1454 | set_arg1 (struct tcb *tcp, void *cookie, long val) |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1455 | { |
Roland McGrath | eb9e2e8 | 2009-06-02 16:49:22 -0700 | [diff] [blame] | 1456 | return ptrace (PTRACE_POKEUSER, tcp->pid, (char*)arg1_offset, val); |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1457 | } |
| 1458 | |
Denys Vlasenko | 3bb7cd6 | 2009-02-09 18:55:59 +0000 | [diff] [blame] | 1459 | # endif /* architectures */ |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1460 | |
Denys Vlasenko | 3bb7cd6 | 2009-02-09 18:55:59 +0000 | [diff] [blame] | 1461 | # ifndef restore_arg0 |
| 1462 | # define restore_arg0(tcp, state, val) set_arg0((tcp), (state), (val)) |
| 1463 | # endif |
| 1464 | # ifndef restore_arg1 |
| 1465 | # define restore_arg1(tcp, state, val) set_arg1((tcp), (state), (val)) |
| 1466 | # endif |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1467 | |
Denys Vlasenko | 3bb7cd6 | 2009-02-09 18:55:59 +0000 | [diff] [blame] | 1468 | # ifndef arg0_index |
| 1469 | # define arg0_index 0 |
| 1470 | # define arg1_index 1 |
| 1471 | # endif |
Roland McGrath | 90d0afd | 2004-03-01 21:05:16 +0000 | [diff] [blame] | 1472 | |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1473 | int |
Denys Vlasenko | 418d66a | 2009-01-17 01:52:54 +0000 | [diff] [blame] | 1474 | setbpt(struct tcb *tcp) |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1475 | { |
Roland McGrath | 3291ef2 | 2008-05-20 00:34:34 +0000 | [diff] [blame] | 1476 | static int clone_scno[SUPPORTED_PERSONALITIES] = { SYS_clone }; |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1477 | arg_setup_state state; |
| 1478 | |
| 1479 | if (tcp->flags & TCB_BPTSET) { |
| 1480 | fprintf(stderr, "PANIC: TCB already set in pid %u\n", tcp->pid); |
| 1481 | return -1; |
| 1482 | } |
| 1483 | |
Roland McGrath | 3291ef2 | 2008-05-20 00:34:34 +0000 | [diff] [blame] | 1484 | /* |
| 1485 | * It's a silly kludge to initialize this with a search at runtime. |
| 1486 | * But it's better than maintaining another magic thing in the |
| 1487 | * godforsaken tables. |
| 1488 | */ |
| 1489 | if (clone_scno[current_personality] == 0) { |
| 1490 | int i; |
| 1491 | for (i = 0; i < nsyscalls; ++i) |
| 1492 | if (sysent[i].sys_func == sys_clone) { |
| 1493 | clone_scno[current_personality] = i; |
| 1494 | break; |
| 1495 | } |
| 1496 | } |
| 1497 | |
Roland McGrath | 76989d7 | 2005-06-07 23:21:31 +0000 | [diff] [blame] | 1498 | switch (known_scno(tcp)) { |
Denys Vlasenko | 3bb7cd6 | 2009-02-09 18:55:59 +0000 | [diff] [blame] | 1499 | # ifdef SYS_vfork |
Roland McGrath | 9383c6c | 2003-01-18 00:19:31 +0000 | [diff] [blame] | 1500 | case SYS_vfork: |
Denys Vlasenko | 3bb7cd6 | 2009-02-09 18:55:59 +0000 | [diff] [blame] | 1501 | # endif |
| 1502 | # ifdef SYS_fork |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1503 | case SYS_fork: |
Denys Vlasenko | 3bb7cd6 | 2009-02-09 18:55:59 +0000 | [diff] [blame] | 1504 | # endif |
| 1505 | # if defined SYS_fork || defined SYS_vfork |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1506 | if (arg_setup (tcp, &state) < 0 |
| 1507 | || get_arg0 (tcp, &state, &tcp->inst[0]) < 0 |
| 1508 | || get_arg1 (tcp, &state, &tcp->inst[1]) < 0 |
Roland McGrath | 3291ef2 | 2008-05-20 00:34:34 +0000 | [diff] [blame] | 1509 | || change_syscall(tcp, clone_scno[current_personality]) < 0 |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1510 | || set_arg0 (tcp, &state, CLONE_PTRACE|SIGCHLD) < 0 |
| 1511 | || set_arg1 (tcp, &state, 0) < 0 |
| 1512 | || arg_finish_change (tcp, &state) < 0) |
| 1513 | return -1; |
Roland McGrath | c9dc3c1 | 2004-03-01 20:57:09 +0000 | [diff] [blame] | 1514 | tcp->u_arg[arg0_index] = CLONE_PTRACE|SIGCHLD; |
| 1515 | tcp->u_arg[arg1_index] = 0; |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1516 | tcp->flags |= TCB_BPTSET; |
| 1517 | return 0; |
Denys Vlasenko | 3bb7cd6 | 2009-02-09 18:55:59 +0000 | [diff] [blame] | 1518 | # endif |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1519 | |
| 1520 | case SYS_clone: |
Denys Vlasenko | 3bb7cd6 | 2009-02-09 18:55:59 +0000 | [diff] [blame] | 1521 | # ifdef SYS_clone2 |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1522 | case SYS_clone2: |
Denys Vlasenko | 3bb7cd6 | 2009-02-09 18:55:59 +0000 | [diff] [blame] | 1523 | # endif |
Jan Kratochvil | 8fc9575 | 2008-08-06 21:43:35 +0000 | [diff] [blame] | 1524 | /* ia64 calls directly `clone (CLONE_VFORK | CLONE_VM)' |
| 1525 | contrary to x86 SYS_vfork above. Even on x86 we turn the |
| 1526 | vfork semantics into plain fork - each application must not |
| 1527 | depend on the vfork specifics according to POSIX. We would |
| 1528 | hang waiting for the parent resume otherwise. We need to |
| 1529 | clear also CLONE_VM but only in the CLONE_VFORK case as |
| 1530 | otherwise we would break pthread_create. */ |
| 1531 | |
Roland McGrath | d6ff0d5 | 2008-07-18 01:09:44 +0000 | [diff] [blame] | 1532 | if ((arg_setup (tcp, &state) < 0 |
| 1533 | || set_arg0 (tcp, &state, |
| 1534 | (tcp->u_arg[arg0_index] | CLONE_PTRACE) |
Jan Kratochvil | 8fc9575 | 2008-08-06 21:43:35 +0000 | [diff] [blame] | 1535 | & ~(tcp->u_arg[arg0_index] & CLONE_VFORK |
| 1536 | ? CLONE_VFORK | CLONE_VM : 0)) < 0 |
Roland McGrath | d6ff0d5 | 2008-07-18 01:09:44 +0000 | [diff] [blame] | 1537 | || arg_finish_change (tcp, &state) < 0)) |
Denys Vlasenko | 5ae2b7c | 2009-02-27 20:32:52 +0000 | [diff] [blame] | 1538 | return -1; |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1539 | tcp->flags |= TCB_BPTSET; |
Roland McGrath | c9dc3c1 | 2004-03-01 20:57:09 +0000 | [diff] [blame] | 1540 | tcp->inst[0] = tcp->u_arg[arg0_index]; |
| 1541 | tcp->inst[1] = tcp->u_arg[arg1_index]; |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1542 | return 0; |
| 1543 | |
| 1544 | default: |
| 1545 | fprintf(stderr, "PANIC: setbpt for syscall %ld on %u???\n", |
| 1546 | tcp->scno, tcp->pid); |
| 1547 | break; |
| 1548 | } |
| 1549 | |
| 1550 | return -1; |
| 1551 | } |
| 1552 | |
| 1553 | int |
| 1554 | clearbpt(tcp) |
| 1555 | struct tcb *tcp; |
| 1556 | { |
| 1557 | arg_setup_state state; |
| 1558 | if (arg_setup (tcp, &state) < 0 |
Roland McGrath | e1df47f | 2003-01-14 09:46:15 +0000 | [diff] [blame] | 1559 | || restore_arg0 (tcp, &state, tcp->inst[0]) < 0 |
| 1560 | || restore_arg1 (tcp, &state, tcp->inst[1]) < 0 |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1561 | || arg_finish_change (tcp, &state)) |
Andreas Schwab | 46ed50d | 2009-11-11 13:54:04 +0100 | [diff] [blame] | 1562 | if (errno != ESRCH) return -1; |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1563 | tcp->flags &= ~TCB_BPTSET; |
| 1564 | return 0; |
| 1565 | } |
| 1566 | |
Denys Vlasenko | 3bb7cd6 | 2009-02-09 18:55:59 +0000 | [diff] [blame] | 1567 | # else /* !defined LINUX */ |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1568 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1569 | int |
| 1570 | setbpt(tcp) |
| 1571 | struct tcb *tcp; |
| 1572 | { |
Denys Vlasenko | 3bb7cd6 | 2009-02-09 18:55:59 +0000 | [diff] [blame] | 1573 | # ifdef SUNOS4 |
| 1574 | # ifdef SPARC /* This code is slightly sparc specific */ |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1575 | |
Wichert Akkerman | e6f876c | 1999-06-22 15:28:30 +0000 | [diff] [blame] | 1576 | struct regs regs; |
Denys Vlasenko | 3bb7cd6 | 2009-02-09 18:55:59 +0000 | [diff] [blame] | 1577 | # define BPT 0x91d02001 /* ta 1 */ |
| 1578 | # define LOOP 0x10800000 /* ba 0 */ |
| 1579 | # define LOOPA 0x30800000 /* ba,a 0 */ |
| 1580 | # define NOP 0x01000000 |
| 1581 | # if LOOPA |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1582 | static int loopdeloop[1] = {LOOPA}; |
Denys Vlasenko | 3bb7cd6 | 2009-02-09 18:55:59 +0000 | [diff] [blame] | 1583 | # else |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1584 | static int loopdeloop[2] = {LOOP, NOP}; |
Denys Vlasenko | 3bb7cd6 | 2009-02-09 18:55:59 +0000 | [diff] [blame] | 1585 | # endif |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1586 | |
| 1587 | if (tcp->flags & TCB_BPTSET) { |
| 1588 | fprintf(stderr, "PANIC: TCB already set in pid %u\n", tcp->pid); |
| 1589 | return -1; |
| 1590 | } |
Roland McGrath | eb9e2e8 | 2009-06-02 16:49:22 -0700 | [diff] [blame] | 1591 | if (ptrace(PTRACE_GETREGS, tcp->pid, (char *)®s, 0) < 0) { |
| 1592 | perror("setbpt: ptrace(PTRACE_GETREGS, ...)"); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1593 | return -1; |
| 1594 | } |
| 1595 | tcp->baddr = regs.r_o7 + 8; |
Roland McGrath | eb9e2e8 | 2009-06-02 16:49:22 -0700 | [diff] [blame] | 1596 | if (ptrace(PTRACE_READTEXT, tcp->pid, (char *)tcp->baddr, |
| 1597 | sizeof tcp->inst, (char *)tcp->inst) < 0) { |
| 1598 | perror("setbpt: ptrace(PTRACE_READTEXT, ...)"); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1599 | return -1; |
| 1600 | } |
| 1601 | |
| 1602 | /* |
| 1603 | * XXX - BRUTAL MODE ON |
| 1604 | * We cannot set a real BPT in the child, since it will not be |
| 1605 | * traced at the moment it will reach the trap and would probably |
| 1606 | * die with a core dump. |
| 1607 | * Thus, we are force our way in by taking out two instructions |
| 1608 | * and insert an eternal loop in stead, in expectance of the SIGSTOP |
| 1609 | * generated by out PTRACE_ATTACH. |
| 1610 | * Of cause, if we evaporate ourselves in the middle of all this... |
| 1611 | */ |
Roland McGrath | eb9e2e8 | 2009-06-02 16:49:22 -0700 | [diff] [blame] | 1612 | if (ptrace(PTRACE_WRITETEXT, tcp->pid, (char *) tcp->baddr, |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1613 | sizeof loopdeloop, (char *) loopdeloop) < 0) { |
Roland McGrath | eb9e2e8 | 2009-06-02 16:49:22 -0700 | [diff] [blame] | 1614 | perror("setbpt: ptrace(PTRACE_WRITETEXT, ...)"); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1615 | return -1; |
| 1616 | } |
| 1617 | tcp->flags |= TCB_BPTSET; |
| 1618 | |
Denys Vlasenko | 3bb7cd6 | 2009-02-09 18:55:59 +0000 | [diff] [blame] | 1619 | # endif /* SPARC */ |
| 1620 | # endif /* SUNOS4 */ |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1621 | |
| 1622 | return 0; |
| 1623 | } |
| 1624 | |
| 1625 | int |
| 1626 | clearbpt(tcp) |
| 1627 | struct tcb *tcp; |
| 1628 | { |
Denys Vlasenko | 3bb7cd6 | 2009-02-09 18:55:59 +0000 | [diff] [blame] | 1629 | # ifdef SUNOS4 |
| 1630 | # ifdef SPARC |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1631 | |
Denys Vlasenko | 3bb7cd6 | 2009-02-09 18:55:59 +0000 | [diff] [blame] | 1632 | # if !LOOPA |
Wichert Akkerman | e6f876c | 1999-06-22 15:28:30 +0000 | [diff] [blame] | 1633 | struct regs regs; |
Denys Vlasenko | 3bb7cd6 | 2009-02-09 18:55:59 +0000 | [diff] [blame] | 1634 | # endif |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1635 | |
| 1636 | if (!(tcp->flags & TCB_BPTSET)) { |
| 1637 | fprintf(stderr, "PANIC: TCB not set in pid %u\n", tcp->pid); |
| 1638 | return -1; |
| 1639 | } |
Roland McGrath | eb9e2e8 | 2009-06-02 16:49:22 -0700 | [diff] [blame] | 1640 | if (ptrace(PTRACE_WRITETEXT, tcp->pid, (char *) tcp->baddr, |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1641 | sizeof tcp->inst, (char *) tcp->inst) < 0) { |
Roland McGrath | eb9e2e8 | 2009-06-02 16:49:22 -0700 | [diff] [blame] | 1642 | perror("clearbtp: ptrace(PTRACE_WRITETEXT, ...)"); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1643 | return -1; |
| 1644 | } |
| 1645 | tcp->flags &= ~TCB_BPTSET; |
| 1646 | |
Denys Vlasenko | 3bb7cd6 | 2009-02-09 18:55:59 +0000 | [diff] [blame] | 1647 | # if !LOOPA |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1648 | /* |
| 1649 | * Since we don't have a single instruction breakpoint, we may have |
Denys Vlasenko | 3bb7cd6 | 2009-02-09 18:55:59 +0000 | [diff] [blame] | 1650 | * to adjust the program counter after removing our `breakpoint'. |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1651 | */ |
Roland McGrath | eb9e2e8 | 2009-06-02 16:49:22 -0700 | [diff] [blame] | 1652 | if (ptrace(PTRACE_GETREGS, tcp->pid, (char *)®s, 0) < 0) { |
| 1653 | perror("clearbpt: ptrace(PTRACE_GETREGS, ...)"); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1654 | return -1; |
| 1655 | } |
Roland McGrath | eb9e2e8 | 2009-06-02 16:49:22 -0700 | [diff] [blame] | 1656 | if ((regs.r_pc < tcp->baddr) || |
| 1657 | (regs.r_pc > tcp->baddr + 4)) { |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1658 | /* The breakpoint has not been reached yet */ |
| 1659 | if (debug) |
| 1660 | fprintf(stderr, |
| 1661 | "NOTE: PC not at bpt (pc %#x baddr %#x)\n", |
Denys Vlasenko | 3bb7cd6 | 2009-02-09 18:55:59 +0000 | [diff] [blame] | 1662 | regs.r_pc, tcp->baddr); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1663 | return 0; |
| 1664 | } |
| 1665 | if (regs.r_pc != tcp->baddr) |
| 1666 | if (debug) |
| 1667 | fprintf(stderr, "NOTE: PC adjusted (%#x -> %#x\n", |
| 1668 | regs.r_pc, tcp->baddr); |
| 1669 | |
| 1670 | regs.r_pc = tcp->baddr; |
Roland McGrath | eb9e2e8 | 2009-06-02 16:49:22 -0700 | [diff] [blame] | 1671 | if (ptrace(PTRACE_SETREGS, tcp->pid, (char *)®s, 0) < 0) { |
| 1672 | perror("clearbpt: ptrace(PTRACE_SETREGS, ...)"); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1673 | return -1; |
| 1674 | } |
Denys Vlasenko | 3bb7cd6 | 2009-02-09 18:55:59 +0000 | [diff] [blame] | 1675 | # endif /* LOOPA */ |
| 1676 | # endif /* SPARC */ |
| 1677 | # endif /* SUNOS4 */ |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1678 | |
| 1679 | return 0; |
| 1680 | } |
| 1681 | |
Denys Vlasenko | 3bb7cd6 | 2009-02-09 18:55:59 +0000 | [diff] [blame] | 1682 | # endif /* !defined LINUX */ |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1683 | |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 1684 | #endif /* !USE_PROCFS */ |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1685 | |
Denys Vlasenko | 3bb7cd6 | 2009-02-09 18:55:59 +0000 | [diff] [blame] | 1686 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1687 | #ifdef SUNOS4 |
| 1688 | |
| 1689 | static int |
Denys Vlasenko | 932fc7d | 2008-12-16 18:18:40 +0000 | [diff] [blame] | 1690 | getex(tcp, hdr) |
| 1691 | struct tcb *tcp; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1692 | struct exec *hdr; |
| 1693 | { |
| 1694 | int n; |
| 1695 | |
| 1696 | for (n = 0; n < sizeof *hdr; n += 4) { |
| 1697 | long res; |
Denys Vlasenko | 932fc7d | 2008-12-16 18:18:40 +0000 | [diff] [blame] | 1698 | if (upeek(tcp, uoff(u_exdata) + n, &res) < 0) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1699 | return -1; |
| 1700 | memcpy(((char *) hdr) + n, &res, 4); |
| 1701 | } |
| 1702 | if (debug) { |
| 1703 | fprintf(stderr, "[struct exec: magic: %o version %u Mach %o\n", |
| 1704 | hdr->a_magic, hdr->a_toolversion, hdr->a_machtype); |
| 1705 | fprintf(stderr, "Text %lu Data %lu Bss %lu Syms %lu Entry %#lx]\n", |
| 1706 | hdr->a_text, hdr->a_data, hdr->a_bss, hdr->a_syms, hdr->a_entry); |
| 1707 | } |
| 1708 | return 0; |
| 1709 | } |
| 1710 | |
| 1711 | int |
| 1712 | fixvfork(tcp) |
| 1713 | struct tcb *tcp; |
| 1714 | { |
| 1715 | int pid = tcp->pid; |
| 1716 | /* |
| 1717 | * Change `vfork' in a freshly exec'ed dynamically linked |
| 1718 | * executable's (internal) symbol table to plain old `fork' |
| 1719 | */ |
| 1720 | |
| 1721 | struct exec hdr; |
| 1722 | struct link_dynamic dyn; |
| 1723 | struct link_dynamic_2 ld; |
| 1724 | char *strtab, *cp; |
| 1725 | |
Denys Vlasenko | 932fc7d | 2008-12-16 18:18:40 +0000 | [diff] [blame] | 1726 | if (getex(tcp, &hdr) < 0) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1727 | return -1; |
| 1728 | if (!hdr.a_dynamic) |
| 1729 | return -1; |
| 1730 | |
| 1731 | if (umove(tcp, (int) N_DATADDR(hdr), &dyn) < 0) { |
| 1732 | fprintf(stderr, "Cannot read DYNAMIC\n"); |
| 1733 | return -1; |
| 1734 | } |
| 1735 | if (umove(tcp, (int) dyn.ld_un.ld_2, &ld) < 0) { |
| 1736 | fprintf(stderr, "Cannot read link_dynamic_2\n"); |
| 1737 | return -1; |
| 1738 | } |
| 1739 | if ((strtab = malloc((unsigned)ld.ld_symb_size)) == NULL) { |
Roland McGrath | 46100d0 | 2005-06-01 18:55:42 +0000 | [diff] [blame] | 1740 | fprintf(stderr, "out of memory\n"); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1741 | return -1; |
| 1742 | } |
Roland McGrath | eb9e2e8 | 2009-06-02 16:49:22 -0700 | [diff] [blame] | 1743 | if (umoven(tcp, (int)ld.ld_symbols+(int)N_TXTADDR(hdr), |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1744 | (int)ld.ld_symb_size, strtab) < 0) |
| 1745 | goto err; |
| 1746 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1747 | for (cp = strtab; cp < strtab + ld.ld_symb_size; ) { |
| 1748 | if (strcmp(cp, "_vfork") == 0) { |
| 1749 | if (debug) |
| 1750 | fprintf(stderr, "fixvfork: FOUND _vfork\n"); |
| 1751 | strcpy(cp, "_fork"); |
| 1752 | break; |
| 1753 | } |
| 1754 | cp += strlen(cp)+1; |
| 1755 | } |
| 1756 | if (cp < strtab + ld.ld_symb_size) |
| 1757 | /* |
| 1758 | * Write entire symbol table back to avoid |
| 1759 | * memory alignment bugs in ptrace |
| 1760 | */ |
Roland McGrath | eb9e2e8 | 2009-06-02 16:49:22 -0700 | [diff] [blame] | 1761 | if (tload(pid, (int)ld.ld_symbols+(int)N_TXTADDR(hdr), |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1762 | (int)ld.ld_symb_size, strtab) < 0) |
| 1763 | goto err; |
| 1764 | |
| 1765 | free(strtab); |
| 1766 | return 0; |
| 1767 | |
| 1768 | err: |
| 1769 | free(strtab); |
| 1770 | return -1; |
| 1771 | } |
| 1772 | |
| 1773 | #endif /* SUNOS4 */ |