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