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