blob: 0658bc0a18149c27416f1ef3b225578b138f5c2e [file] [log] [blame]
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001/*
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 Akkerman4dc8a2a1999-12-23 14:20:14 +00005 * 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 Akkerman76baf7c1999-02-19 00:21:36 +00009 * 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 McGrathd81f1d92003-01-09 06:53:34 +000038#include <signal.h>
39#include <sys/syscall.h>
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000040#include <sys/user.h>
41#include <sys/param.h>
42#include <fcntl.h>
John Hughes1d08dcf2001-07-10 13:48:44 +000043#if HAVE_SYS_UIO_H
44#include <sys/uio.h>
45#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000046#ifdef SUNOS4
47#include <machine/reg.h>
48#include <a.out.h>
49#include <link.h>
50#endif /* SUNOS4 */
Wichert Akkerman36915a11999-07-13 15:45:02 +000051
Wichert Akkerman43a74822000-06-27 17:33:32 +000052#if defined(linux) && (__GLIBC__ < 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ < 1))
Wichert Akkerman36915a11999-07-13 15:45:02 +000053#include <linux/ptrace.h>
Roland McGrath1e85cf92002-12-16 20:40:54 +000054#endif
Wichert Akkerman36915a11999-07-13 15:45:02 +000055
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +000056#if defined(LINUX) && defined(IA64)
Roland McGrathd81f1d92003-01-09 06:53:34 +000057# include <asm/ptrace_offsets.h>
58# include <asm/rse.h>
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +000059#endif
60
Wichert Akkerman36915a11999-07-13 15:45:02 +000061#ifdef HAVE_SYS_REG_H
62#include <sys/reg.h>
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000063# define PTRACE_PEEKUSR PTRACE_PEEKUSER
Wichert Akkermanfaf72222000-02-19 23:59:03 +000064#elif defined(HAVE_LINUX_PTRACE_H)
65#undef PTRACE_SYSCALL
Roland McGrathce9f0742004-03-01 21:29:22 +000066# 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 Akkermanfaf72222000-02-19 23:59:03 +000072#include <linux/ptrace.h>
Roland McGrathce9f0742004-03-01 21:29:22 +000073# undef ia64_fpreg
74# undef pt_all_user_regs
Wichert Akkerman2e2553a1999-05-09 00:29:58 +000075#endif
76
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000077#ifdef SUNOS4_KERNEL_ARCH_KLUDGE
78#include <sys/utsname.h>
79#endif /* SUNOS4_KERNEL_ARCH_KLUDGE */
80
Mike Frysinger8566c502009-10-12 11:05:14 -040081#if defined(LINUXSPARC) && defined (SPARC64)
Roland McGrath6d1a65c2004-07-12 07:44:08 +000082# undef PTRACE_GETREGS
83# define PTRACE_GETREGS PTRACE_GETREGS64
84# undef PTRACE_SETREGS
85# define PTRACE_SETREGS PTRACE_SETREGS64
Wichert Akkerman9ce1a631999-08-29 23:15:07 +000086#endif
87
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000088/* 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 Akkerman76baf7c1999-02-19 00:21:36 +000096int
Denys Vlasenko12014262011-05-30 14:00:14 +020097tv_nz(struct timeval *a)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000098{
99 return a->tv_sec || a->tv_usec;
100}
101
102int
Denys Vlasenko12014262011-05-30 14:00:14 +0200103tv_cmp(struct timeval *a, struct timeval *b)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000104{
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
114double
Denys Vlasenko12014262011-05-30 14:00:14 +0200115tv_float(struct timeval *tv)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000116{
117 return tv->tv_sec + tv->tv_usec/1000000.0;
118}
119
120void
Denys Vlasenko12014262011-05-30 14:00:14 +0200121tv_add(struct timeval *tv, struct timeval *a, struct timeval *b)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000122{
123 tv->tv_sec = a->tv_sec + b->tv_sec;
124 tv->tv_usec = a->tv_usec + b->tv_usec;
Roland McGrath58372f52007-07-24 01:38:22 +0000125 if (tv->tv_usec >= 1000000) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000126 tv->tv_sec++;
127 tv->tv_usec -= 1000000;
128 }
129}
130
131void
Denys Vlasenko12014262011-05-30 14:00:14 +0200132tv_sub(struct timeval *tv, struct timeval *a, struct timeval *b)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000133{
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
142void
Denys Vlasenko12014262011-05-30 14:00:14 +0200143tv_div(struct timeval *tv, struct timeval *a, int n)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000144{
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
150void
Denys Vlasenko12014262011-05-30 14:00:14 +0200151tv_mul(struct timeval *tv, struct timeval *a, int n)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000152{
153 tv->tv_usec = a->tv_usec * n;
Dmitry V. Levinfefdd972007-06-29 21:25:56 +0000154 tv->tv_sec = a->tv_sec * n + tv->tv_usec / 1000000;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000155 tv->tv_usec %= 1000000;
156}
157
Dmitry V. Levinab9008b2007-01-11 22:05:04 +0000158const char *
159xlookup(const struct xlat *xlat, int val)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000160{
161 for (; xlat->str != NULL; xlat++)
162 if (xlat->val == val)
163 return xlat->str;
164 return NULL;
165}
166
Denys Vlasenko0a295bc2011-09-01 16:31:48 +0200167#if !defined HAVE_STPCPY
Denys Vlasenko52845572011-08-31 12:07:38 +0200168char *
169stpcpy(char *dst, const char *src)
170{
171 while ((*dst = *src++) != '\0')
172 dst++;
173 return dst;
174}
Denys Vlasenko0a295bc2011-09-01 16:31:48 +0200175#endif
Denys Vlasenko52845572011-08-31 12:07:38 +0200176
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000177/*
Roland McGratheb9e2e82009-06-02 16:49:22 -0700178 * Generic ptrace wrapper which tracks ESRCH errors
179 * by setting tcp->ptrace_errno to ESRCH.
Denys Vlasenko732d1bf2008-12-17 19:21:59 +0000180 *
181 * We assume that ESRCH indicates likely process death (SIGKILL?),
182 * modulo bugs where process somehow ended up not stopped.
183 * Unfortunately kernel uses ESRCH for that case too. Oh well.
Roland McGratheb9e2e82009-06-02 16:49:22 -0700184 *
185 * Currently used by upeek() only.
186 * TODO: use this in all other ptrace() calls while decoding.
Denys Vlasenko732d1bf2008-12-17 19:21:59 +0000187 */
Denys Vlasenko4dedd562009-02-24 15:17:53 +0000188long
Roland McGratheb9e2e82009-06-02 16:49:22 -0700189do_ptrace(int request, struct tcb *tcp, void *addr, void *data)
Denys Vlasenko4dedd562009-02-24 15:17:53 +0000190{
Denys Vlasenko732d1bf2008-12-17 19:21:59 +0000191 long l;
192
193 errno = 0;
Mike Frysinger09a13c22009-10-07 01:13:39 -0400194 l = ptrace(request, tcp->pid, addr, (long) data);
Roland McGratheb9e2e82009-06-02 16:49:22 -0700195 /* Non-ESRCH errors might be our invalid reg/mem accesses,
196 * we do not record them. */
197 if (errno == ESRCH)
198 tcp->ptrace_errno = ESRCH;
Denys Vlasenko732d1bf2008-12-17 19:21:59 +0000199 return l;
200}
201
202/*
203 * Used when we want to unblock stopped traced process.
204 * Should be only used with PTRACE_CONT, PTRACE_DETACH and PTRACE_SYSCALL.
205 * Returns 0 on success or if error was ESRCH
206 * (presumably process was killed while we talk to it).
207 * Otherwise prints error message and returns -1.
208 */
209int
Roland McGratheb9e2e82009-06-02 16:49:22 -0700210ptrace_restart(int op, struct tcb *tcp, int sig)
Denys Vlasenko732d1bf2008-12-17 19:21:59 +0000211{
212 int err;
Roland McGratheb9e2e82009-06-02 16:49:22 -0700213 const char *msg;
Denys Vlasenko732d1bf2008-12-17 19:21:59 +0000214
215 errno = 0;
Mike Frysinger09a13c22009-10-07 01:13:39 -0400216 ptrace(op, tcp->pid, (void *) 1, (long) sig);
Denys Vlasenko732d1bf2008-12-17 19:21:59 +0000217 err = errno;
218 if (!err || err == ESRCH)
219 return 0;
220
221 tcp->ptrace_errno = err;
Roland McGratheb9e2e82009-06-02 16:49:22 -0700222 msg = "SYSCALL";
223 if (op == PTRACE_CONT)
224 msg = "CONT";
225 if (op == PTRACE_DETACH)
226 msg = "DETACH";
Denys Vlasenko014ca3a2011-09-02 16:19:30 +0200227 perror_msg("ptrace(PTRACE_%s,1,%d)", msg, sig);
Denys Vlasenko732d1bf2008-12-17 19:21:59 +0000228 return -1;
229}
230
231/*
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000232 * Print entry in struct xlat table, if there.
233 */
234void
Dmitry V. Levinab9008b2007-01-11 22:05:04 +0000235printxval(const struct xlat *xlat, int val, const char *dflt)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000236{
Dmitry V. Levinab9008b2007-01-11 22:05:04 +0000237 const char *str = xlookup(xlat, val);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000238
239 if (str)
Denys Vlasenko5940e652011-09-01 09:55:05 +0200240 tprints(str);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000241 else
242 tprintf("%#x /* %s */", val, dflt);
243}
244
Andreas Schwabb5600fc2009-11-04 17:08:34 +0100245#if HAVE_LONG_LONG
246/*
247 * Print 64bit argument at position llarg and return the index of the next
248 * argument.
249 */
250int
251printllval(struct tcb *tcp, const char *format, int llarg)
252{
253# if defined(FREEBSD) \
Andreas Schwabd69fa492010-07-12 21:39:57 +0200254 || (defined(LINUX) && defined(POWERPC) && !defined(POWERPC64)) \
Dmitry V. Levin7a5b08f2011-05-28 20:47:43 +0000255 || defined(LINUX_MIPSO32) \
256 || defined(__ARM_EABI__)
Andreas Schwabb5600fc2009-11-04 17:08:34 +0100257 /* Align 64bit argument to 64bit boundary. */
Denys Vlasenko4b08df42011-08-19 15:58:24 +0200258 llarg = (llarg + 1) & 0x1e;
Andreas Schwabb5600fc2009-11-04 17:08:34 +0100259# endif
Andreas Schwabd69fa492010-07-12 21:39:57 +0200260# if defined LINUX && (defined X86_64 || defined POWERPC64)
Andreas Schwabb5600fc2009-11-04 17:08:34 +0100261 if (current_personality == 0) {
262 tprintf(format, tcp->u_arg[llarg]);
263 llarg++;
264 } else {
Andreas Schwabd69fa492010-07-12 21:39:57 +0200265# ifdef POWERPC64
266 /* Align 64bit argument to 64bit boundary. */
Denys Vlasenko4b08df42011-08-19 15:58:24 +0200267 llarg = (llarg + 1) & 0x1e;
Andreas Schwabd69fa492010-07-12 21:39:57 +0200268# endif
Andreas Schwabb5600fc2009-11-04 17:08:34 +0100269 tprintf(format, LONG_LONG(tcp->u_arg[llarg], tcp->u_arg[llarg + 1]));
270 llarg += 2;
271 }
Andreas Schwabd69fa492010-07-12 21:39:57 +0200272# elif defined IA64 || defined ALPHA
Andreas Schwabb5600fc2009-11-04 17:08:34 +0100273 tprintf(format, tcp->u_arg[llarg]);
274 llarg++;
275# elif defined LINUX_MIPSN32
276 tprintf(format, tcp->ext_arg[llarg]);
277 llarg++;
278# else
279 tprintf(format, LONG_LONG(tcp->u_arg[llarg], tcp->u_arg[llarg + 1]));
280 llarg += 2;
281# endif
282 return llarg;
283}
284#endif
285
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000286/*
287 * Interpret `xlat' as an array of flags
288 * print the entries whose bits are on in `flags'
289 * return # of flags printed.
290 */
Denys Vlasenko4924dbd2011-08-19 18:06:46 +0200291void
Denys Vlasenko12014262011-05-30 14:00:14 +0200292addflags(const struct xlat *xlat, int flags)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000293{
Denys Vlasenko4924dbd2011-08-19 18:06:46 +0200294 for (; xlat->str; xlat++) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000295 if (xlat->val && (flags & xlat->val) == xlat->val) {
296 tprintf("|%s", xlat->str);
297 flags &= ~xlat->val;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000298 }
299 }
300 if (flags) {
301 tprintf("|%#x", flags);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000302 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000303}
304
Roland McGratha6c0d8c2007-11-01 21:46:22 +0000305/*
Denys Vlasenko4924dbd2011-08-19 18:06:46 +0200306 * Interpret `xlat' as an array of flags.
Roland McGratha6c0d8c2007-11-01 21:46:22 +0000307 * Print to static string the entries whose bits are on in `flags'
308 * Return static string.
309 */
310const char *
311sprintflags(const char *prefix, const struct xlat *xlat, int flags)
312{
313 static char outstr[1024];
Denys Vlasenko52845572011-08-31 12:07:38 +0200314 char *outptr;
Roland McGratha6c0d8c2007-11-01 21:46:22 +0000315 int found = 0;
316
Denys Vlasenko52845572011-08-31 12:07:38 +0200317 outptr = stpcpy(outstr, prefix);
Roland McGratha6c0d8c2007-11-01 21:46:22 +0000318
319 for (; xlat->str; xlat++) {
320 if ((flags & xlat->val) == xlat->val) {
321 if (found)
Denys Vlasenko52845572011-08-31 12:07:38 +0200322 *outptr++ = '|';
323 outptr = stpcpy(outptr, xlat->str);
Roland McGratha6c0d8c2007-11-01 21:46:22 +0000324 flags &= ~xlat->val;
325 found = 1;
326 }
327 }
328 if (flags) {
329 if (found)
Denys Vlasenko52845572011-08-31 12:07:38 +0200330 *outptr++ = '|';
331 outptr += sprintf(outptr, "%#x", flags);
Roland McGratha6c0d8c2007-11-01 21:46:22 +0000332 }
333
334 return outstr;
335}
336
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000337int
Dmitry V. Levin30145dd2010-09-06 22:08:24 +0000338printflags(const struct xlat *xlat, int flags, const char *dflt)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000339{
340 int n;
Dmitry V. Levin30145dd2010-09-06 22:08:24 +0000341 const char *sep;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000342
343 if (flags == 0 && xlat->val == 0) {
Denys Vlasenko5940e652011-09-01 09:55:05 +0200344 tprints(xlat->str);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000345 return 1;
346 }
347
348 sep = "";
349 for (n = 0; xlat->str; xlat++) {
350 if (xlat->val && (flags & xlat->val) == xlat->val) {
351 tprintf("%s%s", sep, xlat->str);
352 flags &= ~xlat->val;
353 sep = "|";
354 n++;
355 }
356 }
Roland McGrathb2dee132005-06-01 19:02:36 +0000357
358 if (n) {
359 if (flags) {
360 tprintf("%s%#x", sep, flags);
361 n++;
362 }
363 } else {
364 if (flags) {
365 tprintf("%#x", flags);
366 if (dflt)
367 tprintf(" /* %s */", dflt);
368 } else {
369 if (dflt)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200370 tprints("0");
Roland McGrathb2dee132005-06-01 19:02:36 +0000371 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000372 }
Roland McGrathb2dee132005-06-01 19:02:36 +0000373
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000374 return n;
375}
376
377void
Dmitry V. Levin30145dd2010-09-06 22:08:24 +0000378printnum(struct tcb *tcp, long addr, const char *fmt)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000379{
Roland McGratheb285352003-01-14 09:59:00 +0000380 long num;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000381
382 if (!addr) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200383 tprints("NULL");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000384 return;
385 }
386 if (umove(tcp, addr, &num) < 0) {
387 tprintf("%#lx", addr);
388 return;
389 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200390 tprints("[");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000391 tprintf(fmt, num);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200392 tprints("]");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000393}
394
Roland McGrath6bc12202003-11-13 22:32:27 +0000395void
Dmitry V. Levin30145dd2010-09-06 22:08:24 +0000396printnum_int(struct tcb *tcp, long addr, const char *fmt)
Roland McGrath9814a942005-07-04 23:28:10 +0000397{
398 int num;
399
400 if (!addr) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200401 tprints("NULL");
Roland McGrath9814a942005-07-04 23:28:10 +0000402 return;
403 }
404 if (umove(tcp, addr, &num) < 0) {
405 tprintf("%#lx", addr);
406 return;
407 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200408 tprints("[");
Roland McGrath9814a942005-07-04 23:28:10 +0000409 tprintf(fmt, num);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200410 tprints("]");
Roland McGrath9814a942005-07-04 23:28:10 +0000411}
412
413void
Dmitry V. Levin31382132011-03-04 05:08:02 +0300414printfd(struct tcb *tcp, int fd)
415{
Grant Edwards8a082772011-04-07 20:25:40 +0000416 const char *p;
417
418 if (show_fd_path && (p = getfdpath(tcp, fd)))
419 tprintf("%d<%s>", fd, p);
420 else
421 tprintf("%d", fd);
Dmitry V. Levin31382132011-03-04 05:08:02 +0300422}
423
424void
Denys Vlasenko12014262011-05-30 14:00:14 +0200425printuid(const char *text, unsigned long uid)
Roland McGrath6bc12202003-11-13 22:32:27 +0000426{
Denys Vlasenko5940e652011-09-01 09:55:05 +0200427 tprintf((uid == -1) ? "%s%ld" : "%s%lu", text, uid);
Roland McGrath6bc12202003-11-13 22:32:27 +0000428}
429
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000430static char path[MAXPATHLEN + 1];
431
Dmitry V. Levina501f142008-11-10 23:19:13 +0000432/*
433 * Quote string `instr' of length `size'
434 * Write up to (3 + `size' * 4) bytes to `outstr' buffer.
435 * If `len' < 0, treat `instr' as a NUL-terminated string
436 * and quote at most (`size' - 1) bytes.
437 */
Roland McGrath6d970322007-11-01 23:53:59 +0000438static int
Dmitry V. Levinbea02032007-10-08 21:48:01 +0000439string_quote(const char *instr, char *outstr, int len, int size)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000440{
Dmitry V. Levinbea02032007-10-08 21:48:01 +0000441 const unsigned char *ustr = (const unsigned char *) instr;
442 char *s = outstr;
Denys Vlasenko8778bff2011-08-31 12:22:56 +0200443 int usehex, c, i, eol;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000444
Denys Vlasenko8778bff2011-08-31 12:22:56 +0200445 eol = 0x100; /* this can never match a char */
446 if (len < 0) {
447 size--;
448 eol = '\0';
449 }
450
451 usehex = 0;
Dmitry V. Levinbea02032007-10-08 21:48:01 +0000452 if (xflag > 1)
453 usehex = 1;
454 else if (xflag) {
Dmitry V. Levina501f142008-11-10 23:19:13 +0000455 /* Check for presence of symbol which require
456 to hex-quote the whole string. */
Dmitry V. Levinbea02032007-10-08 21:48:01 +0000457 for (i = 0; i < size; ++i) {
458 c = ustr[i];
Dmitry V. Levina501f142008-11-10 23:19:13 +0000459 /* Check for NUL-terminated string. */
Denys Vlasenko8778bff2011-08-31 12:22:56 +0200460 if (c == eol)
461 break;
Dmitry V. Levinbea02032007-10-08 21:48:01 +0000462 if (!isprint(c) && !isspace(c)) {
463 usehex = 1;
464 break;
465 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000466 }
467 }
Dmitry V. Levinbea02032007-10-08 21:48:01 +0000468
469 *s++ = '\"';
470
471 if (usehex) {
Dmitry V. Levina501f142008-11-10 23:19:13 +0000472 /* Hex-quote the whole string. */
Dmitry V. Levinbea02032007-10-08 21:48:01 +0000473 for (i = 0; i < size; ++i) {
474 c = ustr[i];
Dmitry V. Levina501f142008-11-10 23:19:13 +0000475 /* Check for NUL-terminated string. */
Denys Vlasenko8778bff2011-08-31 12:22:56 +0200476 if (c == eol)
477 goto asciz_ended;
478 *s++ = '\\';
479 *s++ = 'x';
480 *s++ = "0123456789abcdef"[c >> 4];
481 *s++ = "0123456789abcdef"[c & 0xf];
Dmitry V. Levinbea02032007-10-08 21:48:01 +0000482 }
483 } else {
484 for (i = 0; i < size; ++i) {
485 c = ustr[i];
Dmitry V. Levina501f142008-11-10 23:19:13 +0000486 /* Check for NUL-terminated string. */
Denys Vlasenko8778bff2011-08-31 12:22:56 +0200487 if (c == eol)
488 goto asciz_ended;
Dmitry V. Levinbea02032007-10-08 21:48:01 +0000489 switch (c) {
490 case '\"': case '\\':
491 *s++ = '\\';
492 *s++ = c;
493 break;
494 case '\f':
495 *s++ = '\\';
496 *s++ = 'f';
497 break;
498 case '\n':
499 *s++ = '\\';
500 *s++ = 'n';
501 break;
502 case '\r':
503 *s++ = '\\';
504 *s++ = 'r';
505 break;
506 case '\t':
507 *s++ = '\\';
508 *s++ = 't';
509 break;
510 case '\v':
511 *s++ = '\\';
512 *s++ = 'v';
513 break;
514 default:
515 if (isprint(c))
516 *s++ = c;
Denys Vlasenko8778bff2011-08-31 12:22:56 +0200517 else {
518 /* Print \octal */
519 *s++ = '\\';
520 if (i + 1 < size
521 && ustr[i + 1] >= '0'
522 && ustr[i + 1] <= '9'
523 ) {
524 /* Print \ooo */
525 *s++ = '0' + (c >> 6);
526 *s++ = '0' + ((c >> 3) & 0x7);
527 } else {
528 /* Print \[[o]o]o */
529 if ((c >> 3) != 0) {
530 if ((c >> 6) != 0)
531 *s++ = '0' + (c >> 6);
532 *s++ = '0' + ((c >> 3) & 0x7);
533 }
534 }
535 *s++ = '0' + (c & 0x7);
Dmitry V. Levinbea02032007-10-08 21:48:01 +0000536 }
537 break;
538 }
539 }
540 }
541
542 *s++ = '\"';
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000543 *s = '\0';
Roland McGrath6d970322007-11-01 23:53:59 +0000544
Denys Vlasenko8778bff2011-08-31 12:22:56 +0200545 /* Return zero if we printed entire ASCIZ string (didn't truncate it) */
546 if (len < 0 && ustr[i] == '\0') {
547 /* We didn't see NUL yet (otherwise we'd jump to 'asciz_ended')
548 * but next char is NUL.
549 */
550 return 0;
551 }
552
553 return 1;
554
555 asciz_ended:
556 *s++ = '\"';
557 *s = '\0';
558 /* Return zero: we printed entire ASCIZ string (didn't truncate it) */
559 return 0;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000560}
561
Dmitry V. Levina501f142008-11-10 23:19:13 +0000562/*
563 * Print path string specified by address `addr' and length `n'.
564 * If path length exceeds `n', append `...' to the output.
565 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000566void
Dmitry V. Levinbea02032007-10-08 21:48:01 +0000567printpathn(struct tcb *tcp, long addr, int n)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000568{
Dmitry V. Levina501f142008-11-10 23:19:13 +0000569 if (!addr) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200570 tprints("NULL");
Dmitry V. Levinbea02032007-10-08 21:48:01 +0000571 return;
572 }
573
Dmitry V. Levina501f142008-11-10 23:19:13 +0000574 /* Cap path length to the path buffer size,
575 and NUL-terminate the buffer. */
576 if (n > sizeof path - 1)
577 n = sizeof path - 1;
Dmitry V. Levinbea02032007-10-08 21:48:01 +0000578 path[n] = '\0';
Dmitry V. Levina501f142008-11-10 23:19:13 +0000579
580 /* Fetch one byte more to find out whether path length > n. */
Dmitry V. Levinbea02032007-10-08 21:48:01 +0000581 if (umovestr(tcp, addr, n + 1, path) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000582 tprintf("%#lx", addr);
583 else {
Dmitry V. Levinbea02032007-10-08 21:48:01 +0000584 static char outstr[4*(sizeof path - 1) + sizeof "\"...\""];
Denys Vlasenko52845572011-08-31 12:07:38 +0200585 const char *fmt;
Dmitry V. Levinbea02032007-10-08 21:48:01 +0000586 int trunc = (path[n] != '\0');
587
588 if (trunc)
589 path[n] = '\0';
Denys Vlasenko52845572011-08-31 12:07:38 +0200590 string_quote(path, outstr, -1, n + 1);
591 fmt = "%s";
Dmitry V. Levina501f142008-11-10 23:19:13 +0000592 if (trunc)
Denys Vlasenko52845572011-08-31 12:07:38 +0200593 fmt = "%s...";
594 tprintf(fmt, outstr);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000595 }
596}
597
598void
Dmitry V. Levinbea02032007-10-08 21:48:01 +0000599printpath(struct tcb *tcp, long addr)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000600{
Dmitry V. Levinbea02032007-10-08 21:48:01 +0000601 printpathn(tcp, addr, sizeof path - 1);
602}
603
Dmitry V. Levina501f142008-11-10 23:19:13 +0000604/*
605 * Print string specified by address `addr' and length `len'.
606 * If `len' < 0, treat the string as a NUL-terminated string.
607 * If string length exceeds `max_strlen', append `...' to the output.
608 */
Dmitry V. Levinbea02032007-10-08 21:48:01 +0000609void
610printstr(struct tcb *tcp, long addr, int len)
611{
612 static char *str = NULL;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000613 static char *outstr;
Roland McGrath6d970322007-11-01 23:53:59 +0000614 int size;
Denys Vlasenko52845572011-08-31 12:07:38 +0200615 const char *fmt;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000616
617 if (!addr) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200618 tprints("NULL");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000619 return;
620 }
Dmitry V. Levina501f142008-11-10 23:19:13 +0000621 /* Allocate static buffers if they are not allocated yet. */
Denys Vlasenko1d46ba52011-08-31 14:00:02 +0200622 if (!str) {
Dmitry V. Levina501f142008-11-10 23:19:13 +0000623 str = malloc(max_strlen + 1);
Denys Vlasenko1d46ba52011-08-31 14:00:02 +0200624 if (!str)
625 die_out_of_memory();
626 }
627 if (!outstr) {
Dmitry V. Levina501f142008-11-10 23:19:13 +0000628 outstr = malloc(4 * max_strlen + sizeof "\"...\"");
Denys Vlasenko1d46ba52011-08-31 14:00:02 +0200629 if (!outstr)
630 die_out_of_memory();
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000631 }
Dmitry V. Levinbea02032007-10-08 21:48:01 +0000632
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000633 if (len < 0) {
Dmitry V. Levina501f142008-11-10 23:19:13 +0000634 /*
635 * Treat as a NUL-terminated string: fetch one byte more
636 * because string_quote() quotes one byte less.
637 */
Dmitry V. Levinbea02032007-10-08 21:48:01 +0000638 size = max_strlen + 1;
Dmitry V. Levina501f142008-11-10 23:19:13 +0000639 str[max_strlen] = '\0';
Denys Vlasenko52845572011-08-31 12:07:38 +0200640 /* FIXME! umovestr can overwrite the '\0' stored above??? */
Dmitry V. Levinbea02032007-10-08 21:48:01 +0000641 if (umovestr(tcp, addr, size, str) < 0) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000642 tprintf("%#lx", addr);
643 return;
644 }
645 }
646 else {
Dmitry V. Levina501f142008-11-10 23:19:13 +0000647 size = MIN(len, max_strlen);
Dmitry V. Levinbea02032007-10-08 21:48:01 +0000648 if (umoven(tcp, addr, size, str) < 0) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000649 tprintf("%#lx", addr);
650 return;
651 }
652 }
653
Denys Vlasenko52845572011-08-31 12:07:38 +0200654 fmt = "%s";
Dmitry V. Levina501f142008-11-10 23:19:13 +0000655 if (string_quote(str, outstr, len, size) &&
656 (len < 0 || len > max_strlen))
Denys Vlasenko52845572011-08-31 12:07:38 +0200657 fmt = "%s...";
Roland McGratha503dcf2007-08-02 02:06:26 +0000658
Denys Vlasenko52845572011-08-31 12:07:38 +0200659 tprintf(fmt, outstr);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000660}
661
John Hughes1d08dcf2001-07-10 13:48:44 +0000662#if HAVE_SYS_UIO_H
663void
Denys Vlasenko12014262011-05-30 14:00:14 +0200664dumpiov(struct tcb *tcp, int len, long addr)
John Hughes1d08dcf2001-07-10 13:48:44 +0000665{
Dmitry V. Levin4ebb4e32006-12-13 17:08:08 +0000666#if defined(LINUX) && SUPPORTED_PERSONALITIES > 1
667 union {
668 struct { u_int32_t base; u_int32_t len; } *iov32;
669 struct { u_int64_t base; u_int64_t len; } *iov64;
670 } iovu;
671#define iov iovu.iov64
672#define sizeof_iov \
673 (personality_wordsize[current_personality] == 4 \
674 ? sizeof(*iovu.iov32) : sizeof(*iovu.iov64))
675#define iov_iov_base(i) \
676 (personality_wordsize[current_personality] == 4 \
677 ? (u_int64_t) iovu.iov32[i].base : iovu.iov64[i].base)
678#define iov_iov_len(i) \
679 (personality_wordsize[current_personality] == 4 \
680 ? (u_int64_t) iovu.iov32[i].len : iovu.iov64[i].len)
681#else
John Hughes1d08dcf2001-07-10 13:48:44 +0000682 struct iovec *iov;
Dmitry V. Levin4ebb4e32006-12-13 17:08:08 +0000683#define sizeof_iov sizeof(*iov)
684#define iov_iov_base(i) iov[i].iov_base
685#define iov_iov_len(i) iov[i].iov_len
686#endif
John Hughes1d08dcf2001-07-10 13:48:44 +0000687 int i;
Denys Vlasenko79a79ea2011-09-01 16:35:44 +0200688 unsigned size;
John Hughes1d08dcf2001-07-10 13:48:44 +0000689
Denys Vlasenko79a79ea2011-09-01 16:35:44 +0200690 size = sizeof_iov * len;
691 /* Assuming no sane program has millions of iovs */
692 if ((unsigned)len > 1024*1024 /* insane or negative size? */
Dmitry V. Levin4ebb4e32006-12-13 17:08:08 +0000693 || (iov = malloc(size)) == NULL) {
Denys Vlasenko79a79ea2011-09-01 16:35:44 +0200694 fprintf(stderr, "Out of memory\n");
695 return;
John Hughes1d08dcf2001-07-10 13:48:44 +0000696 }
Roland McGrathaa524c82005-06-01 19:22:06 +0000697 if (umoven(tcp, addr, size, (char *) iov) >= 0) {
John Hughes1d08dcf2001-07-10 13:48:44 +0000698 for (i = 0; i < len; i++) {
Denys Vlasenkoadedb512008-12-30 18:47:55 +0000699 /* include the buffer number to make it easy to
700 * match up the trace with the source */
701 tprintf(" * %lu bytes in buffer %d\n",
702 (unsigned long)iov_iov_len(i), i);
703 dumpstr(tcp, (long) iov_iov_base(i),
704 iov_iov_len(i));
705 }
John Hughes1d08dcf2001-07-10 13:48:44 +0000706 }
Denys Vlasenko79a79ea2011-09-01 16:35:44 +0200707 free(iov);
Dmitry V. Levin4ebb4e32006-12-13 17:08:08 +0000708#undef sizeof_iov
709#undef iov_iov_base
710#undef iov_iov_len
711#undef iov
John Hughes1d08dcf2001-07-10 13:48:44 +0000712}
713#endif
714
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000715void
Denys Vlasenko12014262011-05-30 14:00:14 +0200716dumpstr(struct tcb *tcp, long addr, int len)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000717{
718 static int strsize = -1;
719 static unsigned char *str;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000720 char *s;
721 int i, j;
722
723 if (strsize < len) {
Denys Vlasenko5d645812011-08-20 12:48:18 +0200724 free(str);
725 str = malloc(len);
Denys Vlasenko79a79ea2011-09-01 16:35:44 +0200726 if (!str) {
727 strsize = -1;
728 fprintf(stderr, "Out of memory\n");
729 return;
730 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000731 strsize = len;
732 }
733
734 if (umoven(tcp, addr, len, (char *) str) < 0)
735 return;
736
737 for (i = 0; i < len; i += 16) {
Denys Vlasenko1d46ba52011-08-31 14:00:02 +0200738 char outstr[80];
739
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000740 s = outstr;
741 sprintf(s, " | %05x ", i);
742 s += 9;
743 for (j = 0; j < 16; j++) {
744 if (j == 8)
745 *s++ = ' ';
746 if (i + j < len) {
747 sprintf(s, " %02x", str[i + j]);
748 s += 3;
749 }
750 else {
751 *s++ = ' '; *s++ = ' '; *s++ = ' ';
752 }
753 }
754 *s++ = ' '; *s++ = ' ';
755 for (j = 0; j < 16; j++) {
756 if (j == 8)
757 *s++ = ' ';
758 if (i + j < len) {
759 if (isprint(str[i + j]))
760 *s++ = str[i + j];
761 else
762 *s++ = '.';
763 }
764 else
765 *s++ = ' ';
766 }
767 tprintf("%s |\n", outstr);
768 }
769}
770
771#define PAGMASK (~(PAGSIZ - 1))
772/*
773 * move `len' bytes of data from process `pid'
774 * at address `addr' to our space at `laddr'
775 */
776int
Denys Vlasenkoef2fbf82009-01-06 21:45:06 +0000777umoven(struct tcb *tcp, long addr, int len, char *laddr)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000778{
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000779#ifdef LINUX
Roland McGratheb9e2e82009-06-02 16:49:22 -0700780 int pid = tcp->pid;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000781 int n, m;
Wichert Akkerman5daa0281999-03-15 19:49:42 +0000782 int started = 0;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000783 union {
784 long val;
785 char x[sizeof(long)];
786 } u;
787
788 if (addr & (sizeof(long) - 1)) {
789 /* addr not a multiple of sizeof(long) */
790 n = addr - (addr & -sizeof(long)); /* residue */
791 addr &= -sizeof(long); /* residue */
Roland McGratheb9e2e82009-06-02 16:49:22 -0700792 errno = 0;
793 u.val = ptrace(PTRACE_PEEKDATA, pid, (char *) addr, 0);
794 if (errno) {
795 if (started && (errno==EPERM || errno==EIO)) {
796 /* Ran into 'end of memory' - stupid "printpath" */
797 return 0;
798 }
799 /* But if not started, we had a bogus address. */
800 if (addr != 0 && errno != EIO && errno != ESRCH)
801 perror("ptrace: umoven");
802 return -1;
803 }
Wichert Akkerman5daa0281999-03-15 19:49:42 +0000804 started = 1;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000805 memcpy(laddr, &u.x[n], m = MIN(sizeof(long) - n, len));
806 addr += sizeof(long), laddr += m, len -= m;
807 }
808 while (len) {
Roland McGratheb9e2e82009-06-02 16:49:22 -0700809 errno = 0;
810 u.val = ptrace(PTRACE_PEEKDATA, pid, (char *) addr, 0);
811 if (errno) {
812 if (started && (errno==EPERM || errno==EIO)) {
813 /* Ran into 'end of memory' - stupid "printpath" */
814 return 0;
815 }
816 if (addr != 0 && errno != EIO && errno != ESRCH)
817 perror("ptrace: umoven");
818 return -1;
819 }
Wichert Akkerman5daa0281999-03-15 19:49:42 +0000820 started = 1;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000821 memcpy(laddr, u.x, m = MIN(sizeof(long), len));
822 addr += sizeof(long), laddr += m, len -= m;
823 }
824#endif /* LINUX */
825
826#ifdef SUNOS4
827 int pid = tcp->pid;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000828 int n;
829
830 while (len) {
831 n = MIN(len, PAGSIZ);
832 n = MIN(n, ((addr + PAGSIZ) & PAGMASK) - addr);
Roland McGratheb9e2e82009-06-02 16:49:22 -0700833 if (ptrace(PTRACE_READDATA, pid,
834 (char *) addr, len, laddr) < 0) {
835 if (errno != ESRCH) {
836 perror("umoven: ptrace(PTRACE_READDATA, ...)");
837 abort();
838 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000839 return -1;
840 }
841 len -= n;
842 addr += n;
843 laddr += n;
844 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000845#endif /* SUNOS4 */
846
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000847#ifdef USE_PROCFS
Wichert Akkermanea78f0f1999-11-29 15:34:02 +0000848#ifdef HAVE_MP_PROCFS
John Hughesaa09c6b2001-05-15 14:53:43 +0000849 int fd = tcp->pfd_as;
Wichert Akkerman9ce1a631999-08-29 23:15:07 +0000850#else
John Hughesaa09c6b2001-05-15 14:53:43 +0000851 int fd = tcp->pfd;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000852#endif
John Hughesaa09c6b2001-05-15 14:53:43 +0000853 lseek(fd, addr, SEEK_SET);
854 if (read(fd, laddr, len) == -1)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000855 return -1;
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000856#endif /* USE_PROCFS */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000857
858 return 0;
859}
860
861/*
862 * like `umove' but make the additional effort of looking
863 * for a terminating zero byte.
864 */
865int
Denys Vlasenkoef2fbf82009-01-06 21:45:06 +0000866umovestr(struct tcb *tcp, long addr, int len, char *laddr)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000867{
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000868#ifdef USE_PROCFS
John Hughesaa09c6b2001-05-15 14:53:43 +0000869#ifdef HAVE_MP_PROCFS
870 int fd = tcp->pfd_as;
871#else
872 int fd = tcp->pfd;
873#endif
874 /* Some systems (e.g. FreeBSD) can be upset if we read off the
875 end of valid memory, avoid this by trying to read up
876 to page boundaries. But we don't know what a page is (and
877 getpagesize(2) (if it exists) doesn't necessarily return
878 hardware page size). Assume all pages >= 1024 (a-historical
879 I know) */
880
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200881 int page = 1024; /* How to find this? */
John Hughesaa09c6b2001-05-15 14:53:43 +0000882 int move = page - (addr & (page - 1));
883 int left = len;
884
885 lseek(fd, addr, SEEK_SET);
886
887 while (left) {
Denys Vlasenko5d645812011-08-20 12:48:18 +0200888 if (move > left)
889 move = left;
890 move = read(fd, laddr, move);
891 if (move <= 0)
John Hughesaa09c6b2001-05-15 14:53:43 +0000892 return left != len ? 0 : -1;
Denys Vlasenko5d645812011-08-20 12:48:18 +0200893 if (memchr(laddr, 0, move))
894 break;
John Hughesaa09c6b2001-05-15 14:53:43 +0000895 left -= move;
896 laddr += move;
897 addr += move;
898 move = page;
899 }
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000900#else /* !USE_PROCFS */
Wichert Akkerman5daa0281999-03-15 19:49:42 +0000901 int started = 0;
Roland McGratheb9e2e82009-06-02 16:49:22 -0700902 int pid = tcp->pid;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000903 int i, n, m;
904 union {
905 long val;
906 char x[sizeof(long)];
907 } u;
908
909 if (addr & (sizeof(long) - 1)) {
910 /* addr not a multiple of sizeof(long) */
911 n = addr - (addr & -sizeof(long)); /* residue */
912 addr &= -sizeof(long); /* residue */
Roland McGratheb9e2e82009-06-02 16:49:22 -0700913 errno = 0;
914 u.val = ptrace(PTRACE_PEEKDATA, pid, (char *)addr, 0);
915 if (errno) {
916 if (started && (errno==EPERM || errno==EIO)) {
917 /* Ran into 'end of memory' - stupid "printpath" */
918 return 0;
919 }
920 if (addr != 0 && errno != EIO && errno != ESRCH)
921 perror("umovestr");
922 return -1;
923 }
Wichert Akkerman5daa0281999-03-15 19:49:42 +0000924 started = 1;
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200925 memcpy(laddr, &u.x[n], m = MIN(sizeof(long)-n, len));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000926 while (n & (sizeof(long) - 1))
927 if (u.x[n++] == '\0')
928 return 0;
929 addr += sizeof(long), laddr += m, len -= m;
930 }
931 while (len) {
Roland McGratheb9e2e82009-06-02 16:49:22 -0700932 errno = 0;
933 u.val = ptrace(PTRACE_PEEKDATA, pid, (char *)addr, 0);
934 if (errno) {
935 if (started && (errno==EPERM || errno==EIO)) {
936 /* Ran into 'end of memory' - stupid "printpath" */
937 return 0;
938 }
939 if (addr != 0 && errno != EIO && errno != ESRCH)
940 perror("umovestr");
941 return -1;
942 }
Wichert Akkerman5daa0281999-03-15 19:49:42 +0000943 started = 1;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000944 memcpy(laddr, u.x, m = MIN(sizeof(long), len));
945 for (i = 0; i < sizeof(long); i++)
946 if (u.x[i] == '\0')
947 return 0;
948
949 addr += sizeof(long), laddr += m, len -= m;
950 }
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000951#endif /* !USE_PROCFS */
John Hughesaa09c6b2001-05-15 14:53:43 +0000952 return 0;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000953}
954
955#ifdef LINUX
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +0000956# if !defined (SPARC) && !defined(SPARC64)
957# define PTRACE_WRITETEXT 101
958# define PTRACE_WRITEDATA 102
959# endif /* !SPARC && !SPARC64 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000960#endif /* LINUX */
961
962#ifdef SUNOS4
963
964static int
Denys Vlasenko12014262011-05-30 14:00:14 +0200965uload(int cmd, int pid, long addr, int len, char *laddr)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000966{
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000967 int peek, poke;
968 int n, m;
969 union {
970 long val;
971 char x[sizeof(long)];
972 } u;
973
974 if (cmd == PTRACE_WRITETEXT) {
975 peek = PTRACE_PEEKTEXT;
976 poke = PTRACE_POKETEXT;
977 }
978 else {
979 peek = PTRACE_PEEKDATA;
980 poke = PTRACE_POKEDATA;
981 }
982 if (addr & (sizeof(long) - 1)) {
983 /* addr not a multiple of sizeof(long) */
984 n = addr - (addr & -sizeof(long)); /* residue */
985 addr &= -sizeof(long);
Roland McGratheb9e2e82009-06-02 16:49:22 -0700986 errno = 0;
987 u.val = ptrace(peek, pid, (char *) addr, 0);
988 if (errno) {
989 perror("uload: POKE");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000990 return -1;
991 }
Roland McGratheb9e2e82009-06-02 16:49:22 -0700992 memcpy(&u.x[n], laddr, m = MIN(sizeof(long) - n, len));
993 if (ptrace(poke, pid, (char *)addr, u.val) < 0) {
994 perror("uload: POKE");
995 return -1;
996 }
997 addr += sizeof(long), laddr += m, len -= m;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000998 }
999 while (len) {
1000 if (len < sizeof(long))
Roland McGratheb9e2e82009-06-02 16:49:22 -07001001 u.val = ptrace(peek, pid, (char *) addr, 0);
1002 memcpy(u.x, laddr, m = MIN(sizeof(long), len));
1003 if (ptrace(poke, pid, (char *) addr, u.val) < 0) {
1004 perror("uload: POKE");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001005 return -1;
1006 }
Roland McGratheb9e2e82009-06-02 16:49:22 -07001007 addr += sizeof(long), laddr += m, len -= m;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001008 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001009 return 0;
1010}
1011
Roland McGratheb9e2e82009-06-02 16:49:22 -07001012int
Denys Vlasenko12014262011-05-30 14:00:14 +02001013tload(int pid, int addr, int len, char *laddr)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001014{
Roland McGratheb9e2e82009-06-02 16:49:22 -07001015 return uload(PTRACE_WRITETEXT, pid, addr, len, laddr);
1016}
1017
1018int
Denys Vlasenko12014262011-05-30 14:00:14 +02001019dload(int pid, int addr, int len, char *laddr)
Roland McGratheb9e2e82009-06-02 16:49:22 -07001020{
1021 return uload(PTRACE_WRITEDATA, pid, addr, len, laddr);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001022}
1023
1024#endif /* SUNOS4 */
1025
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001026#ifndef USE_PROCFS
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001027
1028int
Denys Vlasenko12014262011-05-30 14:00:14 +02001029upeek(struct tcb *tcp, long off, long *res)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001030{
1031 long val;
1032
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001033# ifdef SUNOS4_KERNEL_ARCH_KLUDGE
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001034 {
1035 static int is_sun4m = -1;
1036 struct utsname name;
1037
1038 /* Round up the usual suspects. */
1039 if (is_sun4m == -1) {
1040 if (uname(&name) < 0) {
1041 perror("upeek: uname?");
1042 exit(1);
1043 }
1044 is_sun4m = strcmp(name.machine, "sun4m") == 0;
1045 if (is_sun4m) {
Roland McGrathd9f816f2004-09-04 03:39:20 +00001046 const struct xlat *x;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001047
1048 for (x = struct_user_offsets; x->str; x++)
1049 x->val += 1024;
1050 }
1051 }
1052 if (is_sun4m)
1053 off += 1024;
1054 }
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001055# endif /* SUNOS4_KERNEL_ARCH_KLUDGE */
Roland McGratheb9e2e82009-06-02 16:49:22 -07001056 errno = 0;
Denys Vlasenko732d1bf2008-12-17 19:21:59 +00001057 val = do_ptrace(PTRACE_PEEKUSER, tcp, (char *) off, 0);
Roland McGratheb9e2e82009-06-02 16:49:22 -07001058 if (val == -1 && errno) {
1059 if (errno != ESRCH) {
1060 char buf[60];
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001061 sprintf(buf, "upeek: ptrace(PTRACE_PEEKUSER,%d,%lu,0)", tcp->pid, off);
Roland McGratheb9e2e82009-06-02 16:49:22 -07001062 perror(buf);
1063 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001064 return -1;
Roland McGratheb9e2e82009-06-02 16:49:22 -07001065 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001066 *res = val;
1067 return 0;
1068}
1069
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001070#endif /* !USE_PROCFS */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001071
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001072void
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001073printcall(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001074{
Roland McGrath7a918832005-02-02 20:55:23 +00001075#define PRINTBADPC tprintf(sizeof(long) == 4 ? "[????????] " : \
1076 sizeof(long) == 8 ? "[????????????????] " : \
1077 NULL /* crash */)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001078
1079#ifdef LINUX
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001080# ifdef I386
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001081 long eip;
1082
Denys Vlasenko932fc7d2008-12-16 18:18:40 +00001083 if (upeek(tcp, 4*EIP, &eip) < 0) {
Roland McGrath7a918832005-02-02 20:55:23 +00001084 PRINTBADPC;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001085 return;
1086 }
1087 tprintf("[%08lx] ", eip);
Roland McGratheac26fc2005-02-02 02:48:53 +00001088
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001089# elif defined(S390) || defined(S390X)
Denys Vlasenkoadedb512008-12-30 18:47:55 +00001090 long psw;
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001091 if (upeek(tcp, PT_PSWADDR, &psw) < 0) {
Denys Vlasenkoadedb512008-12-30 18:47:55 +00001092 PRINTBADPC;
1093 return;
1094 }
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001095# ifdef S390
Denys Vlasenkoadedb512008-12-30 18:47:55 +00001096 tprintf("[%08lx] ", psw);
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001097# elif S390X
Denys Vlasenkoadedb512008-12-30 18:47:55 +00001098 tprintf("[%16lx] ", psw);
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001099# endif
Roland McGratheac26fc2005-02-02 02:48:53 +00001100
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001101# elif defined(X86_64)
Michal Ludvig0e035502002-09-23 15:41:01 +00001102 long rip;
1103
Denys Vlasenko932fc7d2008-12-16 18:18:40 +00001104 if (upeek(tcp, 8*RIP, &rip) < 0) {
Roland McGrath7a918832005-02-02 20:55:23 +00001105 PRINTBADPC;
Michal Ludvig0e035502002-09-23 15:41:01 +00001106 return;
1107 }
1108 tprintf("[%16lx] ", rip);
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001109# elif defined(IA64)
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +00001110 long ip;
1111
Denys Vlasenko932fc7d2008-12-16 18:18:40 +00001112 if (upeek(tcp, PT_B0, &ip) < 0) {
Roland McGrath7a918832005-02-02 20:55:23 +00001113 PRINTBADPC;
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +00001114 return;
1115 }
1116 tprintf("[%08lx] ", ip);
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001117# elif defined(POWERPC)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001118 long pc;
1119
Denys Vlasenko932fc7d2008-12-16 18:18:40 +00001120 if (upeek(tcp, sizeof(unsigned long)*PT_NIP, &pc) < 0) {
Andreas Schwabd69fa492010-07-12 21:39:57 +02001121 PRINTBADPC;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001122 return;
1123 }
Andreas Schwabd69fa492010-07-12 21:39:57 +02001124# ifdef POWERPC64
1125 tprintf("[%016lx] ", pc);
1126# else
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001127 tprintf("[%08lx] ", pc);
Andreas Schwabd69fa492010-07-12 21:39:57 +02001128# endif
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001129# elif defined(M68K)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001130 long pc;
1131
Denys Vlasenko932fc7d2008-12-16 18:18:40 +00001132 if (upeek(tcp, 4*PT_PC, &pc) < 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001133 tprints("[????????] ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001134 return;
1135 }
1136 tprintf("[%08lx] ", pc);
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001137# elif defined(ALPHA)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001138 long pc;
1139
Denys Vlasenko932fc7d2008-12-16 18:18:40 +00001140 if (upeek(tcp, REG_PC, &pc) < 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001141 tprints("[????????????????] ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001142 return;
1143 }
1144 tprintf("[%08lx] ", pc);
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001145# elif defined(SPARC) || defined(SPARC64)
Mike Frysinger8566c502009-10-12 11:05:14 -04001146 struct pt_regs regs;
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001147 if (ptrace(PTRACE_GETREGS, tcp->pid, (char *)&regs, 0) < 0) {
Roland McGrath7a918832005-02-02 20:55:23 +00001148 PRINTBADPC;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001149 return;
1150 }
Mike Frysinger8566c502009-10-12 11:05:14 -04001151# if defined(SPARC64)
1152 tprintf("[%08lx] ", regs.tpc);
1153# else
1154 tprintf("[%08lx] ", regs.pc);
1155# endif
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001156# elif defined(HPPA)
Wichert Akkermanc1652e22001-03-27 12:17:16 +00001157 long pc;
1158
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001159 if (upeek(tcp, PT_IAOQ0, &pc) < 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001160 tprints("[????????] ");
Wichert Akkermanc1652e22001-03-27 12:17:16 +00001161 return;
1162 }
1163 tprintf("[%08lx] ", pc);
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001164# elif defined(MIPS)
Wichert Akkerman75c422b2001-04-10 10:22:50 +00001165 long pc;
1166
Denys Vlasenko932fc7d2008-12-16 18:18:40 +00001167 if (upeek(tcp, REG_EPC, &pc) < 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001168 tprints("[????????] ");
Wichert Akkerman75c422b2001-04-10 10:22:50 +00001169 return;
1170 }
1171 tprintf("[%08lx] ", pc);
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001172# elif defined(SH)
Denys Vlasenkoadedb512008-12-30 18:47:55 +00001173 long pc;
Wichert Akkermanccef6372002-05-01 16:39:22 +00001174
Denys Vlasenkoadedb512008-12-30 18:47:55 +00001175 if (upeek(tcp, 4*REG_PC, &pc) < 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001176 tprints("[????????] ");
Denys Vlasenkoadedb512008-12-30 18:47:55 +00001177 return;
1178 }
1179 tprintf("[%08lx] ", pc);
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001180# elif defined(SH64)
Roland McGrathe1e584b2003-06-02 19:18:58 +00001181 long pc;
1182
Denys Vlasenko932fc7d2008-12-16 18:18:40 +00001183 if (upeek(tcp, REG_PC, &pc) < 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001184 tprints("[????????????????] ");
Roland McGrathe1e584b2003-06-02 19:18:58 +00001185 return;
1186 }
1187 tprintf("[%08lx] ", pc);
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001188# elif defined(ARM)
Roland McGrathef388682003-06-03 23:28:59 +00001189 long pc;
Roland McGrathe1e584b2003-06-02 19:18:58 +00001190
Denys Vlasenko932fc7d2008-12-16 18:18:40 +00001191 if (upeek(tcp, 4*15, &pc) < 0) {
Roland McGrath7a918832005-02-02 20:55:23 +00001192 PRINTBADPC;
Roland McGrathef388682003-06-03 23:28:59 +00001193 return;
1194 }
1195 tprintf("[%08lx] ", pc);
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +00001196# elif defined(AVR32)
1197 long pc;
1198
1199 if (upeek(tcp, REG_PC, &pc) < 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001200 tprints("[????????] ");
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +00001201 return;
1202 }
1203 tprintf("[%08lx] ", pc);
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001204# elif defined(BFIN)
Dmitry V. Levin87ea1f42008-11-10 22:21:41 +00001205 long pc;
1206
Denys Vlasenko932fc7d2008-12-16 18:18:40 +00001207 if (upeek(tcp, PT_PC, &pc) < 0) {
Dmitry V. Levin87ea1f42008-11-10 22:21:41 +00001208 PRINTBADPC;
1209 return;
1210 }
1211 tprintf("[%08lx] ", pc);
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001212#elif defined(CRISV10)
1213 long pc;
1214
Edgar E. Iglesiaseeb9ce32009-10-05 14:41:02 +00001215 if (upeek(tcp, 4*PT_IRP, &pc) < 0) {
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001216 PRINTBADPC;
1217 return;
1218 }
1219 tprintf("[%08lx] ", pc);
1220#elif defined(CRISV32)
1221 long pc;
1222
Edgar E. Iglesiaseeb9ce32009-10-05 14:41:02 +00001223 if (upeek(tcp, 4*PT_ERP, &pc) < 0) {
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001224 PRINTBADPC;
1225 return;
1226 }
1227 tprintf("[%08lx] ", pc);
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001228# endif /* architecture */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001229#endif /* LINUX */
1230
1231#ifdef SUNOS4
1232 struct regs regs;
1233
Roland McGratheb9e2e82009-06-02 16:49:22 -07001234 if (ptrace(PTRACE_GETREGS, tcp->pid, (char *) &regs, 0) < 0) {
1235 perror("printcall: ptrace(PTRACE_GETREGS, ...)");
Roland McGrath7a918832005-02-02 20:55:23 +00001236 PRINTBADPC;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001237 return;
1238 }
1239 tprintf("[%08x] ", regs.r_o7);
1240#endif /* SUNOS4 */
1241
1242#ifdef SVR4
1243 /* XXX */
Roland McGrath7a918832005-02-02 20:55:23 +00001244 PRINTBADPC;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001245#endif
1246
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001247#ifdef FREEBSD
1248 struct reg regs;
1249 pread(tcp->pfd_reg, &regs, sizeof(regs), 0);
1250 tprintf("[%08x] ", regs.r_eip);
1251#endif /* FREEBSD */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001252}
1253
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001254
1255/*
1256 * These #if's are huge, please indent them correctly.
1257 * It's easy to get confused otherwise.
1258 */
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001259#ifndef USE_PROCFS
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001260
Denys Vlasenkoe7c90242011-06-22 00:09:25 +02001261# ifdef LINUX
Roland McGrathd81f1d92003-01-09 06:53:34 +00001262
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001263# include "syscall.h"
Roland McGrath3291ef22008-05-20 00:34:34 +00001264
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001265# include <sys/syscall.h>
1266# ifndef CLONE_PTRACE
1267# define CLONE_PTRACE 0x00002000
1268# endif
1269# ifndef CLONE_VFORK
1270# define CLONE_VFORK 0x00004000
1271# endif
1272# ifndef CLONE_VM
1273# define CLONE_VM 0x00000100
1274# endif
1275# ifndef CLONE_STOPPED
1276# define CLONE_STOPPED 0x02000000
1277# endif
Roland McGrathd81f1d92003-01-09 06:53:34 +00001278
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001279# ifdef IA64
Roland McGrathd81f1d92003-01-09 06:53:34 +00001280
Roland McGrath08267b82004-02-20 22:56:43 +00001281/* We don't have fork()/vfork() syscalls on ia64 itself, but the ia32
1282 subsystem has them for x86... */
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001283# define SYS_fork 2
1284# define SYS_vfork 190
Roland McGrath08267b82004-02-20 22:56:43 +00001285
Roland McGrathd81f1d92003-01-09 06:53:34 +00001286typedef unsigned long *arg_setup_state;
1287
1288static int
1289arg_setup(struct tcb *tcp, arg_setup_state *state)
1290{
Jan Kratochvil1f942712008-08-06 21:38:52 +00001291 unsigned long cfm, sof, sol;
1292 long bsp;
Roland McGrathd81f1d92003-01-09 06:53:34 +00001293
Jan Kratochvil1f942712008-08-06 21:38:52 +00001294 if (ia32) {
1295 /* Satisfy a false GCC warning. */
1296 *state = NULL;
Roland McGrath08267b82004-02-20 22:56:43 +00001297 return 0;
Jan Kratochvil1f942712008-08-06 21:38:52 +00001298 }
Roland McGrath08267b82004-02-20 22:56:43 +00001299
Denys Vlasenko932fc7d2008-12-16 18:18:40 +00001300 if (upeek(tcp, PT_AR_BSP, &bsp) < 0)
Roland McGrathd81f1d92003-01-09 06:53:34 +00001301 return -1;
Denys Vlasenko932fc7d2008-12-16 18:18:40 +00001302 if (upeek(tcp, PT_CFM, (long *) &cfm) < 0)
Roland McGrathd81f1d92003-01-09 06:53:34 +00001303 return -1;
1304
1305 sof = (cfm >> 0) & 0x7f;
1306 sol = (cfm >> 7) & 0x7f;
Jan Kratochvil1f942712008-08-06 21:38:52 +00001307 bsp = (long) ia64_rse_skip_regs((unsigned long *) bsp, -sof + sol);
Roland McGrathd81f1d92003-01-09 06:53:34 +00001308
Jan Kratochvil1f942712008-08-06 21:38:52 +00001309 *state = (unsigned long *) bsp;
Roland McGrathd81f1d92003-01-09 06:53:34 +00001310 return 0;
1311}
1312
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001313# define arg_finish_change(tcp, state) 0
Roland McGrathd81f1d92003-01-09 06:53:34 +00001314
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001315# ifdef SYS_fork
Roland McGrathd81f1d92003-01-09 06:53:34 +00001316static int
Denys Vlasenko12014262011-05-30 14:00:14 +02001317get_arg0(struct tcb *tcp, arg_setup_state *state, long *valp)
Roland McGrathd81f1d92003-01-09 06:53:34 +00001318{
Roland McGrath08267b82004-02-20 22:56:43 +00001319 int ret;
1320
1321 if (ia32)
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001322 ret = upeek(tcp, PT_R11, valp);
Roland McGrath08267b82004-02-20 22:56:43 +00001323 else
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001324 ret = umoven(tcp,
Roland McGrath08267b82004-02-20 22:56:43 +00001325 (unsigned long) ia64_rse_skip_regs(*state, 0),
1326 sizeof(long), (void *) valp);
1327 return ret;
Roland McGrathd81f1d92003-01-09 06:53:34 +00001328}
1329
1330static int
Denys Vlasenko12014262011-05-30 14:00:14 +02001331get_arg1(struct tcb *tcp, arg_setup_state *state, long *valp)
Roland McGrathd81f1d92003-01-09 06:53:34 +00001332{
Roland McGrath08267b82004-02-20 22:56:43 +00001333 int ret;
1334
1335 if (ia32)
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001336 ret = upeek(tcp, PT_R9, valp);
Roland McGrath08267b82004-02-20 22:56:43 +00001337 else
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001338 ret = umoven(tcp,
Roland McGrath08267b82004-02-20 22:56:43 +00001339 (unsigned long) ia64_rse_skip_regs(*state, 1),
1340 sizeof(long), (void *) valp);
1341 return ret;
Roland McGrathd81f1d92003-01-09 06:53:34 +00001342}
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001343# endif
Roland McGrathd81f1d92003-01-09 06:53:34 +00001344
1345static int
Denys Vlasenko12014262011-05-30 14:00:14 +02001346set_arg0(struct tcb *tcp, arg_setup_state *state, long val)
Roland McGrathd81f1d92003-01-09 06:53:34 +00001347{
Roland McGrath08267b82004-02-20 22:56:43 +00001348 int req = PTRACE_POKEDATA;
1349 void *ap;
1350
1351 if (ia32) {
1352 ap = (void *) (intptr_t) PT_R11; /* r11 == EBX */
1353 req = PTRACE_POKEUSER;
1354 } else
1355 ap = ia64_rse_skip_regs(*state, 0);
Roland McGratheb9e2e82009-06-02 16:49:22 -07001356 errno = 0;
1357 ptrace(req, tcp->pid, ap, val);
1358 return errno ? -1 : 0;
Roland McGrathd81f1d92003-01-09 06:53:34 +00001359}
1360
1361static int
Denys Vlasenko12014262011-05-30 14:00:14 +02001362set_arg1(struct tcb *tcp, arg_setup_state *state, long val)
Roland McGrathd81f1d92003-01-09 06:53:34 +00001363{
Roland McGrath08267b82004-02-20 22:56:43 +00001364 int req = PTRACE_POKEDATA;
1365 void *ap;
1366
1367 if (ia32) {
1368 ap = (void *) (intptr_t) PT_R9; /* r9 == ECX */
1369 req = PTRACE_POKEUSER;
1370 } else
1371 ap = ia64_rse_skip_regs(*state, 1);
Roland McGratheb9e2e82009-06-02 16:49:22 -07001372 errno = 0;
1373 ptrace(req, tcp->pid, ap, val);
1374 return errno ? -1 : 0;
Roland McGrathd81f1d92003-01-09 06:53:34 +00001375}
1376
Roland McGrathb659f872008-07-18 01:19:36 +00001377/* ia64 does not return the input arguments from functions (and syscalls)
1378 according to ia64 RSE (Register Stack Engine) behavior. */
1379
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001380# define restore_arg0(tcp, state, val) ((void) (state), 0)
1381# define restore_arg1(tcp, state, val) ((void) (state), 0)
Roland McGrathb659f872008-07-18 01:19:36 +00001382
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001383# elif defined (SPARC) || defined (SPARC64)
Roland McGrathd81f1d92003-01-09 06:53:34 +00001384
Mike Frysinger8566c502009-10-12 11:05:14 -04001385typedef struct pt_regs arg_setup_state;
Roland McGrathd81f1d92003-01-09 06:53:34 +00001386
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001387# define arg_setup(tcp, state) \
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001388 (ptrace(PTRACE_GETREGS, tcp->pid, (char *) (state), 0))
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001389# define arg_finish_change(tcp, state) \
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001390 (ptrace(PTRACE_SETREGS, tcp->pid, (char *) (state), 0))
Roland McGrathd81f1d92003-01-09 06:53:34 +00001391
Mike Frysinger8566c502009-10-12 11:05:14 -04001392# define get_arg0(tcp, state, valp) (*(valp) = (state)->u_regs[U_REG_O0], 0)
1393# define get_arg1(tcp, state, valp) (*(valp) = (state)->u_regs[U_REG_O1], 0)
1394# define set_arg0(tcp, state, val) ((state)->u_regs[U_REG_O0] = (val), 0)
1395# define set_arg1(tcp, state, val) ((state)->u_regs[U_REG_O1] = (val), 0)
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001396# define restore_arg0(tcp, state, val) 0
Roland McGrathd81f1d92003-01-09 06:53:34 +00001397
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001398# else /* other architectures */
Roland McGrathd81f1d92003-01-09 06:53:34 +00001399
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001400# if defined S390 || defined S390X
Roland McGrath7b308222003-01-20 09:04:36 +00001401/* Note: this is only true for the `clone' system call, which handles
1402 arguments specially. We could as well say that its first two arguments
1403 are swapped relative to other architectures, but that would just be
1404 another #ifdef in the calls. */
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001405# define arg0_offset PT_GPR3
1406# define arg1_offset PT_ORIGGPR2
1407# define restore_arg0(tcp, state, val) ((void) (state), 0)
1408# define restore_arg1(tcp, state, val) ((void) (state), 0)
1409# define arg0_index 1
1410# define arg1_index 0
1411# elif defined (ALPHA) || defined (MIPS)
1412# define arg0_offset REG_A0
1413# define arg1_offset (REG_A0+1)
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +00001414# elif defined (AVR32)
1415# define arg0_offset (REG_R12)
1416# define arg1_offset (REG_R11)
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001417# elif defined (POWERPC)
1418# define arg0_offset (sizeof(unsigned long)*PT_R3)
1419# define arg1_offset (sizeof(unsigned long)*PT_R4)
1420# define restore_arg0(tcp, state, val) ((void) (state), 0)
1421# elif defined (HPPA)
1422# define arg0_offset PT_GR26
1423# define arg1_offset (PT_GR26-4)
1424# elif defined (X86_64)
1425# define arg0_offset ((long)(8*(current_personality ? RBX : RDI)))
1426# define arg1_offset ((long)(8*(current_personality ? RCX : RSI)))
1427# elif defined (SH)
1428# define arg0_offset (4*(REG_REG0+4))
1429# define arg1_offset (4*(REG_REG0+5))
1430# elif defined (SH64)
1431 /* ABI defines arg0 & 1 in r2 & r3 */
1432# define arg0_offset (REG_OFFSET+16)
1433# define arg1_offset (REG_OFFSET+24)
1434# define restore_arg0(tcp, state, val) 0
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001435# elif defined CRISV10 || defined CRISV32
1436# define arg0_offset (4*PT_R11)
1437# define arg1_offset (4*PT_ORIG_R10)
1438# define restore_arg0(tcp, state, val) 0
1439# define restore_arg1(tcp, state, val) 0
1440# define arg0_index 1
1441# define arg1_index 0
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001442# else
1443# define arg0_offset 0
1444# define arg1_offset 4
1445# if defined ARM
1446# define restore_arg0(tcp, state, val) 0
1447# endif
1448# endif
Roland McGrathd81f1d92003-01-09 06:53:34 +00001449
1450typedef int arg_setup_state;
1451
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001452# define arg_setup(tcp, state) (0)
1453# define arg_finish_change(tcp, state) 0
1454# define get_arg0(tcp, cookie, valp) \
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001455 (upeek((tcp), arg0_offset, (valp)))
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001456# define get_arg1(tcp, cookie, valp) \
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001457 (upeek((tcp), arg1_offset, (valp)))
Roland McGrathd81f1d92003-01-09 06:53:34 +00001458
1459static int
Denys Vlasenko12014262011-05-30 14:00:14 +02001460set_arg0(struct tcb *tcp, void *cookie, long val)
Roland McGrathd81f1d92003-01-09 06:53:34 +00001461{
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001462 return ptrace(PTRACE_POKEUSER, tcp->pid, (char*)arg0_offset, val);
Roland McGrathd81f1d92003-01-09 06:53:34 +00001463}
1464
1465static int
Denys Vlasenko12014262011-05-30 14:00:14 +02001466set_arg1(struct tcb *tcp, void *cookie, long val)
Roland McGrathd81f1d92003-01-09 06:53:34 +00001467{
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001468 return ptrace(PTRACE_POKEUSER, tcp->pid, (char*)arg1_offset, val);
Roland McGrathd81f1d92003-01-09 06:53:34 +00001469}
1470
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001471# endif /* architectures */
Roland McGrathd81f1d92003-01-09 06:53:34 +00001472
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001473# ifndef restore_arg0
1474# define restore_arg0(tcp, state, val) set_arg0((tcp), (state), (val))
1475# endif
1476# ifndef restore_arg1
1477# define restore_arg1(tcp, state, val) set_arg1((tcp), (state), (val))
1478# endif
Roland McGrathd81f1d92003-01-09 06:53:34 +00001479
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001480# ifndef arg0_index
1481# define arg0_index 0
1482# define arg1_index 1
1483# endif
Roland McGrath90d0afd2004-03-01 21:05:16 +00001484
Roland McGrathd81f1d92003-01-09 06:53:34 +00001485int
Denys Vlasenko418d66a2009-01-17 01:52:54 +00001486setbpt(struct tcb *tcp)
Roland McGrathd81f1d92003-01-09 06:53:34 +00001487{
Roland McGrath3291ef22008-05-20 00:34:34 +00001488 static int clone_scno[SUPPORTED_PERSONALITIES] = { SYS_clone };
Roland McGrathd81f1d92003-01-09 06:53:34 +00001489 arg_setup_state state;
1490
1491 if (tcp->flags & TCB_BPTSET) {
1492 fprintf(stderr, "PANIC: TCB already set in pid %u\n", tcp->pid);
1493 return -1;
1494 }
1495
Roland McGrath3291ef22008-05-20 00:34:34 +00001496 /*
1497 * It's a silly kludge to initialize this with a search at runtime.
1498 * But it's better than maintaining another magic thing in the
1499 * godforsaken tables.
1500 */
1501 if (clone_scno[current_personality] == 0) {
1502 int i;
1503 for (i = 0; i < nsyscalls; ++i)
1504 if (sysent[i].sys_func == sys_clone) {
1505 clone_scno[current_personality] = i;
1506 break;
1507 }
1508 }
1509
Roland McGrath76989d72005-06-07 23:21:31 +00001510 switch (known_scno(tcp)) {
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001511# ifdef SYS_vfork
Roland McGrath9383c6c2003-01-18 00:19:31 +00001512 case SYS_vfork:
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001513# endif
1514# ifdef SYS_fork
Roland McGrathd81f1d92003-01-09 06:53:34 +00001515 case SYS_fork:
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001516# endif
1517# if defined SYS_fork || defined SYS_vfork
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001518 if (arg_setup(tcp, &state) < 0
1519 || get_arg0(tcp, &state, &tcp->inst[0]) < 0
1520 || get_arg1(tcp, &state, &tcp->inst[1]) < 0
Roland McGrath3291ef22008-05-20 00:34:34 +00001521 || change_syscall(tcp, clone_scno[current_personality]) < 0
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001522 || set_arg0(tcp, &state, CLONE_PTRACE|SIGCHLD) < 0
1523 || set_arg1(tcp, &state, 0) < 0
1524 || arg_finish_change(tcp, &state) < 0)
Roland McGrathd81f1d92003-01-09 06:53:34 +00001525 return -1;
Roland McGrathc9dc3c12004-03-01 20:57:09 +00001526 tcp->u_arg[arg0_index] = CLONE_PTRACE|SIGCHLD;
1527 tcp->u_arg[arg1_index] = 0;
Roland McGrathd81f1d92003-01-09 06:53:34 +00001528 tcp->flags |= TCB_BPTSET;
1529 return 0;
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001530# endif
Roland McGrathd81f1d92003-01-09 06:53:34 +00001531
Denys Vlasenkoc133bf02011-06-23 21:57:54 +02001532 case SYS_clone: ;
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001533# ifdef SYS_clone2
Denys Vlasenkoc133bf02011-06-23 21:57:54 +02001534 case SYS_clone2: ;
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001535# endif
Jan Kratochvil8fc95752008-08-06 21:43:35 +00001536 /* ia64 calls directly `clone (CLONE_VFORK | CLONE_VM)'
1537 contrary to x86 SYS_vfork above. Even on x86 we turn the
1538 vfork semantics into plain fork - each application must not
1539 depend on the vfork specifics according to POSIX. We would
1540 hang waiting for the parent resume otherwise. We need to
1541 clear also CLONE_VM but only in the CLONE_VFORK case as
1542 otherwise we would break pthread_create. */
1543
Denys Vlasenkoc133bf02011-06-23 21:57:54 +02001544 long new_arg0 = (tcp->u_arg[arg0_index] | CLONE_PTRACE);
1545 if (new_arg0 & CLONE_VFORK)
1546 new_arg0 &= ~(unsigned long)(CLONE_VFORK | CLONE_VM);
1547 if (arg_setup(tcp, &state) < 0
1548 || set_arg0(tcp, &state, new_arg0) < 0
1549 || arg_finish_change(tcp, &state) < 0)
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +00001550 return -1;
Roland McGrathd81f1d92003-01-09 06:53:34 +00001551 tcp->flags |= TCB_BPTSET;
Roland McGrathc9dc3c12004-03-01 20:57:09 +00001552 tcp->inst[0] = tcp->u_arg[arg0_index];
1553 tcp->inst[1] = tcp->u_arg[arg1_index];
Roland McGrathd81f1d92003-01-09 06:53:34 +00001554 return 0;
1555
1556 default:
1557 fprintf(stderr, "PANIC: setbpt for syscall %ld on %u???\n",
1558 tcp->scno, tcp->pid);
1559 break;
1560 }
1561
1562 return -1;
1563}
1564
1565int
Denys Vlasenko12014262011-05-30 14:00:14 +02001566clearbpt(struct tcb *tcp)
Roland McGrathd81f1d92003-01-09 06:53:34 +00001567{
1568 arg_setup_state state;
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001569 if (arg_setup(tcp, &state) < 0
1570 || restore_arg0(tcp, &state, tcp->inst[0]) < 0
1571 || restore_arg1(tcp, &state, tcp->inst[1]) < 0
1572 || arg_finish_change(tcp, &state))
Denys Vlasenkoc133bf02011-06-23 21:57:54 +02001573 if (errno != ESRCH)
1574 return -1;
Roland McGrathd81f1d92003-01-09 06:53:34 +00001575 tcp->flags &= ~TCB_BPTSET;
1576 return 0;
1577}
1578
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001579# else /* !defined LINUX */
Roland McGrathd81f1d92003-01-09 06:53:34 +00001580
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001581int
Denys Vlasenko12014262011-05-30 14:00:14 +02001582setbpt(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001583{
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001584# ifdef SUNOS4
1585# ifdef SPARC /* This code is slightly sparc specific */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001586
Wichert Akkermane6f876c1999-06-22 15:28:30 +00001587 struct regs regs;
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001588# define BPT 0x91d02001 /* ta 1 */
1589# define LOOP 0x10800000 /* ba 0 */
1590# define LOOPA 0x30800000 /* ba,a 0 */
1591# define NOP 0x01000000
1592# if LOOPA
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001593 static int loopdeloop[1] = {LOOPA};
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001594# else
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001595 static int loopdeloop[2] = {LOOP, NOP};
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001596# endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001597
1598 if (tcp->flags & TCB_BPTSET) {
1599 fprintf(stderr, "PANIC: TCB already set in pid %u\n", tcp->pid);
1600 return -1;
1601 }
Roland McGratheb9e2e82009-06-02 16:49:22 -07001602 if (ptrace(PTRACE_GETREGS, tcp->pid, (char *)&regs, 0) < 0) {
1603 perror("setbpt: ptrace(PTRACE_GETREGS, ...)");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001604 return -1;
1605 }
1606 tcp->baddr = regs.r_o7 + 8;
Roland McGratheb9e2e82009-06-02 16:49:22 -07001607 if (ptrace(PTRACE_READTEXT, tcp->pid, (char *)tcp->baddr,
1608 sizeof tcp->inst, (char *)tcp->inst) < 0) {
1609 perror("setbpt: ptrace(PTRACE_READTEXT, ...)");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001610 return -1;
1611 }
1612
1613 /*
1614 * XXX - BRUTAL MODE ON
1615 * We cannot set a real BPT in the child, since it will not be
1616 * traced at the moment it will reach the trap and would probably
1617 * die with a core dump.
1618 * Thus, we are force our way in by taking out two instructions
1619 * and insert an eternal loop in stead, in expectance of the SIGSTOP
1620 * generated by out PTRACE_ATTACH.
1621 * Of cause, if we evaporate ourselves in the middle of all this...
1622 */
Roland McGratheb9e2e82009-06-02 16:49:22 -07001623 if (ptrace(PTRACE_WRITETEXT, tcp->pid, (char *) tcp->baddr,
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001624 sizeof loopdeloop, (char *) loopdeloop) < 0) {
Roland McGratheb9e2e82009-06-02 16:49:22 -07001625 perror("setbpt: ptrace(PTRACE_WRITETEXT, ...)");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001626 return -1;
1627 }
1628 tcp->flags |= TCB_BPTSET;
1629
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001630# endif /* SPARC */
1631# endif /* SUNOS4 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001632
1633 return 0;
1634}
1635
1636int
Denys Vlasenko12014262011-05-30 14:00:14 +02001637clearbpt(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001638{
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001639# ifdef SUNOS4
1640# ifdef SPARC
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001641
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001642# if !LOOPA
Wichert Akkermane6f876c1999-06-22 15:28:30 +00001643 struct regs regs;
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001644# endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001645
1646 if (!(tcp->flags & TCB_BPTSET)) {
1647 fprintf(stderr, "PANIC: TCB not set in pid %u\n", tcp->pid);
1648 return -1;
1649 }
Roland McGratheb9e2e82009-06-02 16:49:22 -07001650 if (ptrace(PTRACE_WRITETEXT, tcp->pid, (char *) tcp->baddr,
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001651 sizeof tcp->inst, (char *) tcp->inst) < 0) {
Roland McGratheb9e2e82009-06-02 16:49:22 -07001652 perror("clearbtp: ptrace(PTRACE_WRITETEXT, ...)");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001653 return -1;
1654 }
1655 tcp->flags &= ~TCB_BPTSET;
1656
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001657# if !LOOPA
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001658 /*
1659 * Since we don't have a single instruction breakpoint, we may have
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001660 * to adjust the program counter after removing our `breakpoint'.
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001661 */
Roland McGratheb9e2e82009-06-02 16:49:22 -07001662 if (ptrace(PTRACE_GETREGS, tcp->pid, (char *)&regs, 0) < 0) {
1663 perror("clearbpt: ptrace(PTRACE_GETREGS, ...)");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001664 return -1;
1665 }
Roland McGratheb9e2e82009-06-02 16:49:22 -07001666 if ((regs.r_pc < tcp->baddr) ||
1667 (regs.r_pc > tcp->baddr + 4)) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001668 /* The breakpoint has not been reached yet */
1669 if (debug)
1670 fprintf(stderr,
1671 "NOTE: PC not at bpt (pc %#x baddr %#x)\n",
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001672 regs.r_pc, tcp->baddr);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001673 return 0;
1674 }
1675 if (regs.r_pc != tcp->baddr)
1676 if (debug)
1677 fprintf(stderr, "NOTE: PC adjusted (%#x -> %#x\n",
1678 regs.r_pc, tcp->baddr);
1679
1680 regs.r_pc = tcp->baddr;
Roland McGratheb9e2e82009-06-02 16:49:22 -07001681 if (ptrace(PTRACE_SETREGS, tcp->pid, (char *)&regs, 0) < 0) {
1682 perror("clearbpt: ptrace(PTRACE_SETREGS, ...)");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001683 return -1;
1684 }
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001685# endif /* LOOPA */
1686# endif /* SPARC */
1687# endif /* SUNOS4 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001688
1689 return 0;
1690}
1691
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001692# endif /* !defined LINUX */
Roland McGrathd81f1d92003-01-09 06:53:34 +00001693
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001694#endif /* !USE_PROCFS */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001695
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001696
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001697#ifdef SUNOS4
1698
1699static int
Denys Vlasenko12014262011-05-30 14:00:14 +02001700getex(struct tcb *tcp, struct exec *hdr)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001701{
1702 int n;
1703
1704 for (n = 0; n < sizeof *hdr; n += 4) {
1705 long res;
Denys Vlasenko932fc7d2008-12-16 18:18:40 +00001706 if (upeek(tcp, uoff(u_exdata) + n, &res) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001707 return -1;
1708 memcpy(((char *) hdr) + n, &res, 4);
1709 }
1710 if (debug) {
1711 fprintf(stderr, "[struct exec: magic: %o version %u Mach %o\n",
1712 hdr->a_magic, hdr->a_toolversion, hdr->a_machtype);
1713 fprintf(stderr, "Text %lu Data %lu Bss %lu Syms %lu Entry %#lx]\n",
1714 hdr->a_text, hdr->a_data, hdr->a_bss, hdr->a_syms, hdr->a_entry);
1715 }
1716 return 0;
1717}
1718
1719int
Denys Vlasenko12014262011-05-30 14:00:14 +02001720fixvfork(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001721{
1722 int pid = tcp->pid;
1723 /*
1724 * Change `vfork' in a freshly exec'ed dynamically linked
1725 * executable's (internal) symbol table to plain old `fork'
1726 */
1727
1728 struct exec hdr;
1729 struct link_dynamic dyn;
1730 struct link_dynamic_2 ld;
1731 char *strtab, *cp;
1732
Denys Vlasenko932fc7d2008-12-16 18:18:40 +00001733 if (getex(tcp, &hdr) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001734 return -1;
1735 if (!hdr.a_dynamic)
1736 return -1;
1737
1738 if (umove(tcp, (int) N_DATADDR(hdr), &dyn) < 0) {
1739 fprintf(stderr, "Cannot read DYNAMIC\n");
1740 return -1;
1741 }
1742 if (umove(tcp, (int) dyn.ld_un.ld_2, &ld) < 0) {
1743 fprintf(stderr, "Cannot read link_dynamic_2\n");
1744 return -1;
1745 }
Denys Vlasenko5d645812011-08-20 12:48:18 +02001746 strtab = malloc((unsigned)ld.ld_symb_size);
Denys Vlasenko1d46ba52011-08-31 14:00:02 +02001747 if (!strtab)
1748 die_out_of_memory();
Roland McGratheb9e2e82009-06-02 16:49:22 -07001749 if (umoven(tcp, (int)ld.ld_symbols+(int)N_TXTADDR(hdr),
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001750 (int)ld.ld_symb_size, strtab) < 0)
1751 goto err;
1752
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001753 for (cp = strtab; cp < strtab + ld.ld_symb_size; ) {
1754 if (strcmp(cp, "_vfork") == 0) {
1755 if (debug)
1756 fprintf(stderr, "fixvfork: FOUND _vfork\n");
1757 strcpy(cp, "_fork");
1758 break;
1759 }
1760 cp += strlen(cp)+1;
1761 }
1762 if (cp < strtab + ld.ld_symb_size)
1763 /*
1764 * Write entire symbol table back to avoid
1765 * memory alignment bugs in ptrace
1766 */
Roland McGratheb9e2e82009-06-02 16:49:22 -07001767 if (tload(pid, (int)ld.ld_symbols+(int)N_TXTADDR(hdr),
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001768 (int)ld.ld_symb_size, strtab) < 0)
1769 goto err;
1770
1771 free(strtab);
1772 return 0;
1773
1774err:
1775 free(strtab);
1776 return -1;
1777}
1778
1779#endif /* SUNOS4 */