blob: 3e6269fd843f24966c322bf5fca3dfe844800087 [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 Vlasenko31fa8a22012-01-29 02:01:44 +0100227#ifdef PTRACE_LISTEN
228 if (op == PTRACE_LISTEN)
229 msg = "LISTEN";
230#endif
Denys Vlasenko014ca3a2011-09-02 16:19:30 +0200231 perror_msg("ptrace(PTRACE_%s,1,%d)", msg, sig);
Denys Vlasenko732d1bf2008-12-17 19:21:59 +0000232 return -1;
233}
234
235/*
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000236 * Print entry in struct xlat table, if there.
237 */
238void
Dmitry V. Levinab9008b2007-01-11 22:05:04 +0000239printxval(const struct xlat *xlat, int val, const char *dflt)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000240{
Dmitry V. Levinab9008b2007-01-11 22:05:04 +0000241 const char *str = xlookup(xlat, val);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000242
243 if (str)
Denys Vlasenko5940e652011-09-01 09:55:05 +0200244 tprints(str);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000245 else
246 tprintf("%#x /* %s */", val, dflt);
247}
248
Andreas Schwabb5600fc2009-11-04 17:08:34 +0100249#if HAVE_LONG_LONG
250/*
251 * Print 64bit argument at position llarg and return the index of the next
252 * argument.
253 */
254int
255printllval(struct tcb *tcp, const char *format, int llarg)
256{
257# if defined(FREEBSD) \
Andreas Schwabd69fa492010-07-12 21:39:57 +0200258 || (defined(LINUX) && defined(POWERPC) && !defined(POWERPC64)) \
Dmitry V. Levin7a5b08f2011-05-28 20:47:43 +0000259 || defined(LINUX_MIPSO32) \
260 || defined(__ARM_EABI__)
Andreas Schwabb5600fc2009-11-04 17:08:34 +0100261 /* Align 64bit argument to 64bit boundary. */
Denys Vlasenko4b08df42011-08-19 15:58:24 +0200262 llarg = (llarg + 1) & 0x1e;
Andreas Schwabb5600fc2009-11-04 17:08:34 +0100263# endif
Andreas Schwabd69fa492010-07-12 21:39:57 +0200264# if defined LINUX && (defined X86_64 || defined POWERPC64)
Andreas Schwabb5600fc2009-11-04 17:08:34 +0100265 if (current_personality == 0) {
266 tprintf(format, tcp->u_arg[llarg]);
267 llarg++;
268 } else {
Andreas Schwabd69fa492010-07-12 21:39:57 +0200269# ifdef POWERPC64
270 /* Align 64bit argument to 64bit boundary. */
Denys Vlasenko4b08df42011-08-19 15:58:24 +0200271 llarg = (llarg + 1) & 0x1e;
Andreas Schwabd69fa492010-07-12 21:39:57 +0200272# endif
Andreas Schwabb5600fc2009-11-04 17:08:34 +0100273 tprintf(format, LONG_LONG(tcp->u_arg[llarg], tcp->u_arg[llarg + 1]));
274 llarg += 2;
275 }
Andreas Schwabd69fa492010-07-12 21:39:57 +0200276# elif defined IA64 || defined ALPHA
Andreas Schwabb5600fc2009-11-04 17:08:34 +0100277 tprintf(format, tcp->u_arg[llarg]);
278 llarg++;
279# elif defined LINUX_MIPSN32
280 tprintf(format, tcp->ext_arg[llarg]);
281 llarg++;
282# else
283 tprintf(format, LONG_LONG(tcp->u_arg[llarg], tcp->u_arg[llarg + 1]));
284 llarg += 2;
285# endif
286 return llarg;
287}
288#endif
289
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000290/*
291 * Interpret `xlat' as an array of flags
292 * print the entries whose bits are on in `flags'
293 * return # of flags printed.
294 */
Denys Vlasenko4924dbd2011-08-19 18:06:46 +0200295void
Denys Vlasenko12014262011-05-30 14:00:14 +0200296addflags(const struct xlat *xlat, int flags)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000297{
Denys Vlasenko4924dbd2011-08-19 18:06:46 +0200298 for (; xlat->str; xlat++) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000299 if (xlat->val && (flags & xlat->val) == xlat->val) {
300 tprintf("|%s", xlat->str);
301 flags &= ~xlat->val;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000302 }
303 }
304 if (flags) {
305 tprintf("|%#x", flags);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000306 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000307}
308
Roland McGratha6c0d8c2007-11-01 21:46:22 +0000309/*
Denys Vlasenko4924dbd2011-08-19 18:06:46 +0200310 * Interpret `xlat' as an array of flags.
Roland McGratha6c0d8c2007-11-01 21:46:22 +0000311 * Print to static string the entries whose bits are on in `flags'
312 * Return static string.
313 */
314const char *
315sprintflags(const char *prefix, const struct xlat *xlat, int flags)
316{
317 static char outstr[1024];
Denys Vlasenko52845572011-08-31 12:07:38 +0200318 char *outptr;
Roland McGratha6c0d8c2007-11-01 21:46:22 +0000319 int found = 0;
320
Denys Vlasenko52845572011-08-31 12:07:38 +0200321 outptr = stpcpy(outstr, prefix);
Roland McGratha6c0d8c2007-11-01 21:46:22 +0000322
323 for (; xlat->str; xlat++) {
324 if ((flags & xlat->val) == xlat->val) {
325 if (found)
Denys Vlasenko52845572011-08-31 12:07:38 +0200326 *outptr++ = '|';
327 outptr = stpcpy(outptr, xlat->str);
Roland McGratha6c0d8c2007-11-01 21:46:22 +0000328 found = 1;
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100329 flags &= ~xlat->val;
330 if (!flags)
331 break;
Roland McGratha6c0d8c2007-11-01 21:46:22 +0000332 }
333 }
334 if (flags) {
335 if (found)
Denys Vlasenko52845572011-08-31 12:07:38 +0200336 *outptr++ = '|';
337 outptr += sprintf(outptr, "%#x", flags);
Roland McGratha6c0d8c2007-11-01 21:46:22 +0000338 }
339
340 return outstr;
341}
342
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000343int
Dmitry V. Levin30145dd2010-09-06 22:08:24 +0000344printflags(const struct xlat *xlat, int flags, const char *dflt)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000345{
346 int n;
Dmitry V. Levin30145dd2010-09-06 22:08:24 +0000347 const char *sep;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000348
349 if (flags == 0 && xlat->val == 0) {
Denys Vlasenko5940e652011-09-01 09:55:05 +0200350 tprints(xlat->str);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000351 return 1;
352 }
353
354 sep = "";
355 for (n = 0; xlat->str; xlat++) {
356 if (xlat->val && (flags & xlat->val) == xlat->val) {
357 tprintf("%s%s", sep, xlat->str);
358 flags &= ~xlat->val;
359 sep = "|";
360 n++;
361 }
362 }
Roland McGrathb2dee132005-06-01 19:02:36 +0000363
364 if (n) {
365 if (flags) {
366 tprintf("%s%#x", sep, flags);
367 n++;
368 }
369 } else {
370 if (flags) {
371 tprintf("%#x", flags);
372 if (dflt)
373 tprintf(" /* %s */", dflt);
374 } else {
375 if (dflt)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200376 tprints("0");
Roland McGrathb2dee132005-06-01 19:02:36 +0000377 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000378 }
Roland McGrathb2dee132005-06-01 19:02:36 +0000379
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000380 return n;
381}
382
383void
Dmitry V. Levin30145dd2010-09-06 22:08:24 +0000384printnum(struct tcb *tcp, long addr, const char *fmt)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000385{
Roland McGratheb285352003-01-14 09:59:00 +0000386 long num;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000387
388 if (!addr) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200389 tprints("NULL");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000390 return;
391 }
392 if (umove(tcp, addr, &num) < 0) {
393 tprintf("%#lx", addr);
394 return;
395 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200396 tprints("[");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000397 tprintf(fmt, num);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200398 tprints("]");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000399}
400
Roland McGrath6bc12202003-11-13 22:32:27 +0000401void
Dmitry V. Levin30145dd2010-09-06 22:08:24 +0000402printnum_int(struct tcb *tcp, long addr, const char *fmt)
Roland McGrath9814a942005-07-04 23:28:10 +0000403{
404 int num;
405
406 if (!addr) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200407 tprints("NULL");
Roland McGrath9814a942005-07-04 23:28:10 +0000408 return;
409 }
410 if (umove(tcp, addr, &num) < 0) {
411 tprintf("%#lx", addr);
412 return;
413 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200414 tprints("[");
Roland McGrath9814a942005-07-04 23:28:10 +0000415 tprintf(fmt, num);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200416 tprints("]");
Roland McGrath9814a942005-07-04 23:28:10 +0000417}
418
419void
Dmitry V. Levin31382132011-03-04 05:08:02 +0300420printfd(struct tcb *tcp, int fd)
421{
Grant Edwards8a082772011-04-07 20:25:40 +0000422 const char *p;
423
424 if (show_fd_path && (p = getfdpath(tcp, fd)))
425 tprintf("%d<%s>", fd, p);
426 else
427 tprintf("%d", fd);
Dmitry V. Levin31382132011-03-04 05:08:02 +0300428}
429
430void
Denys Vlasenko12014262011-05-30 14:00:14 +0200431printuid(const char *text, unsigned long uid)
Roland McGrath6bc12202003-11-13 22:32:27 +0000432{
Denys Vlasenko5940e652011-09-01 09:55:05 +0200433 tprintf((uid == -1) ? "%s%ld" : "%s%lu", text, uid);
Roland McGrath6bc12202003-11-13 22:32:27 +0000434}
435
Dmitry V. Levina501f142008-11-10 23:19:13 +0000436/*
437 * Quote string `instr' of length `size'
438 * Write up to (3 + `size' * 4) bytes to `outstr' buffer.
439 * If `len' < 0, treat `instr' as a NUL-terminated string
440 * and quote at most (`size' - 1) bytes.
Denys Vlasenko6cecba52012-01-20 11:56:00 +0100441 *
442 * Returns 0 if len < 0 and NUL was seen, 1 otherwise.
443 * Note that if len >= 0, always returns 1.
Dmitry V. Levina501f142008-11-10 23:19:13 +0000444 */
Roland McGrath6d970322007-11-01 23:53:59 +0000445static int
Dmitry V. Levinbea02032007-10-08 21:48:01 +0000446string_quote(const char *instr, char *outstr, int len, int size)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000447{
Dmitry V. Levinbea02032007-10-08 21:48:01 +0000448 const unsigned char *ustr = (const unsigned char *) instr;
449 char *s = outstr;
Denys Vlasenko8778bff2011-08-31 12:22:56 +0200450 int usehex, c, i, eol;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000451
Denys Vlasenko8778bff2011-08-31 12:22:56 +0200452 eol = 0x100; /* this can never match a char */
453 if (len < 0) {
454 size--;
455 eol = '\0';
456 }
457
458 usehex = 0;
Dmitry V. Levinbea02032007-10-08 21:48:01 +0000459 if (xflag > 1)
460 usehex = 1;
461 else if (xflag) {
Dmitry V. Levina501f142008-11-10 23:19:13 +0000462 /* Check for presence of symbol which require
463 to hex-quote the whole string. */
Dmitry V. Levinbea02032007-10-08 21:48:01 +0000464 for (i = 0; i < size; ++i) {
465 c = ustr[i];
Dmitry V. Levina501f142008-11-10 23:19:13 +0000466 /* Check for NUL-terminated string. */
Denys Vlasenko8778bff2011-08-31 12:22:56 +0200467 if (c == eol)
468 break;
Dmitry V. Levinbea02032007-10-08 21:48:01 +0000469 if (!isprint(c) && !isspace(c)) {
470 usehex = 1;
471 break;
472 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000473 }
474 }
Dmitry V. Levinbea02032007-10-08 21:48:01 +0000475
476 *s++ = '\"';
477
478 if (usehex) {
Dmitry V. Levina501f142008-11-10 23:19:13 +0000479 /* Hex-quote the whole string. */
Dmitry V. Levinbea02032007-10-08 21:48:01 +0000480 for (i = 0; i < size; ++i) {
481 c = ustr[i];
Dmitry V. Levina501f142008-11-10 23:19:13 +0000482 /* Check for NUL-terminated string. */
Denys Vlasenko8778bff2011-08-31 12:22:56 +0200483 if (c == eol)
484 goto asciz_ended;
485 *s++ = '\\';
486 *s++ = 'x';
487 *s++ = "0123456789abcdef"[c >> 4];
488 *s++ = "0123456789abcdef"[c & 0xf];
Dmitry V. Levinbea02032007-10-08 21:48:01 +0000489 }
490 } else {
491 for (i = 0; i < size; ++i) {
492 c = ustr[i];
Dmitry V. Levina501f142008-11-10 23:19:13 +0000493 /* Check for NUL-terminated string. */
Denys Vlasenko8778bff2011-08-31 12:22:56 +0200494 if (c == eol)
495 goto asciz_ended;
Dmitry V. Levinbea02032007-10-08 21:48:01 +0000496 switch (c) {
497 case '\"': case '\\':
498 *s++ = '\\';
499 *s++ = c;
500 break;
501 case '\f':
502 *s++ = '\\';
503 *s++ = 'f';
504 break;
505 case '\n':
506 *s++ = '\\';
507 *s++ = 'n';
508 break;
509 case '\r':
510 *s++ = '\\';
511 *s++ = 'r';
512 break;
513 case '\t':
514 *s++ = '\\';
515 *s++ = 't';
516 break;
517 case '\v':
518 *s++ = '\\';
519 *s++ = 'v';
520 break;
521 default:
522 if (isprint(c))
523 *s++ = c;
Denys Vlasenko8778bff2011-08-31 12:22:56 +0200524 else {
525 /* Print \octal */
526 *s++ = '\\';
527 if (i + 1 < size
528 && ustr[i + 1] >= '0'
529 && ustr[i + 1] <= '9'
530 ) {
531 /* Print \ooo */
532 *s++ = '0' + (c >> 6);
533 *s++ = '0' + ((c >> 3) & 0x7);
534 } else {
535 /* Print \[[o]o]o */
536 if ((c >> 3) != 0) {
537 if ((c >> 6) != 0)
538 *s++ = '0' + (c >> 6);
539 *s++ = '0' + ((c >> 3) & 0x7);
540 }
541 }
542 *s++ = '0' + (c & 0x7);
Dmitry V. Levinbea02032007-10-08 21:48:01 +0000543 }
544 break;
545 }
546 }
547 }
548
549 *s++ = '\"';
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000550 *s = '\0';
Roland McGrath6d970322007-11-01 23:53:59 +0000551
Denys Vlasenko8778bff2011-08-31 12:22:56 +0200552 /* Return zero if we printed entire ASCIZ string (didn't truncate it) */
553 if (len < 0 && ustr[i] == '\0') {
554 /* We didn't see NUL yet (otherwise we'd jump to 'asciz_ended')
555 * but next char is NUL.
556 */
557 return 0;
558 }
559
560 return 1;
561
562 asciz_ended:
563 *s++ = '\"';
564 *s = '\0';
565 /* Return zero: we printed entire ASCIZ string (didn't truncate it) */
566 return 0;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000567}
568
Dmitry V. Levina501f142008-11-10 23:19:13 +0000569/*
570 * Print path string specified by address `addr' and length `n'.
571 * If path length exceeds `n', append `...' to the output.
572 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000573void
Dmitry V. Levinbea02032007-10-08 21:48:01 +0000574printpathn(struct tcb *tcp, long addr, int n)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000575{
Denys Vlasenkob3c52cf2012-01-19 17:20:23 +0100576 char path[MAXPATHLEN + 1];
Denys Vlasenko6cecba52012-01-20 11:56:00 +0100577 int nul_seen;
Denys Vlasenkob3c52cf2012-01-19 17:20:23 +0100578
Dmitry V. Levina501f142008-11-10 23:19:13 +0000579 if (!addr) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200580 tprints("NULL");
Dmitry V. Levinbea02032007-10-08 21:48:01 +0000581 return;
582 }
583
Denys Vlasenko6cecba52012-01-20 11:56:00 +0100584 /* Cap path length to the path buffer size */
Dmitry V. Levina501f142008-11-10 23:19:13 +0000585 if (n > sizeof path - 1)
586 n = sizeof path - 1;
Dmitry V. Levina501f142008-11-10 23:19:13 +0000587
588 /* Fetch one byte more to find out whether path length > n. */
Denys Vlasenko6cecba52012-01-20 11:56:00 +0100589 nul_seen = umovestr(tcp, addr, n + 1, path);
590 if (nul_seen < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000591 tprintf("%#lx", addr);
592 else {
Denys Vlasenkob3c52cf2012-01-19 17:20:23 +0100593 char *outstr;
Dmitry V. Levinbea02032007-10-08 21:48:01 +0000594
Denys Vlasenko6cecba52012-01-20 11:56:00 +0100595 path[n] = '\0';
Denys Vlasenkob3c52cf2012-01-19 17:20:23 +0100596 n++;
Denys Vlasenko6cecba52012-01-20 11:56:00 +0100597 outstr = alloca(4 * n); /* 4*(n-1) + 3 for quotes and NUL */
Denys Vlasenkob3c52cf2012-01-19 17:20:23 +0100598 string_quote(path, outstr, -1, n);
599 tprints(outstr);
Denys Vlasenko6cecba52012-01-20 11:56:00 +0100600 if (!nul_seen)
Denys Vlasenkob3c52cf2012-01-19 17:20:23 +0100601 tprints("...");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000602 }
603}
604
605void
Dmitry V. Levinbea02032007-10-08 21:48:01 +0000606printpath(struct tcb *tcp, long addr)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000607{
Denys Vlasenkob3c52cf2012-01-19 17:20:23 +0100608 /* Size must correspond to char path[] size in printpathn */
609 printpathn(tcp, addr, MAXPATHLEN);
Dmitry V. Levinbea02032007-10-08 21:48:01 +0000610}
611
Dmitry V. Levina501f142008-11-10 23:19:13 +0000612/*
613 * Print string specified by address `addr' and length `len'.
614 * If `len' < 0, treat the string as a NUL-terminated string.
615 * If string length exceeds `max_strlen', append `...' to the output.
616 */
Dmitry V. Levinbea02032007-10-08 21:48:01 +0000617void
618printstr(struct tcb *tcp, long addr, int len)
619{
620 static char *str = NULL;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000621 static char *outstr;
Roland McGrath6d970322007-11-01 23:53:59 +0000622 int size;
Denys Vlasenkob3c52cf2012-01-19 17:20:23 +0100623 int ellipsis;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000624
625 if (!addr) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200626 tprints("NULL");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000627 return;
628 }
Dmitry V. Levina501f142008-11-10 23:19:13 +0000629 /* Allocate static buffers if they are not allocated yet. */
Denys Vlasenko1d46ba52011-08-31 14:00:02 +0200630 if (!str) {
Dmitry V. Levina501f142008-11-10 23:19:13 +0000631 str = malloc(max_strlen + 1);
Denys Vlasenko1d46ba52011-08-31 14:00:02 +0200632 if (!str)
633 die_out_of_memory();
Denys Vlasenko6cecba52012-01-20 11:56:00 +0100634 outstr = malloc(4 * max_strlen + /*for quotes and NUL:*/ 3);
Denys Vlasenko1d46ba52011-08-31 14:00:02 +0200635 if (!outstr)
636 die_out_of_memory();
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000637 }
Dmitry V. Levinbea02032007-10-08 21:48:01 +0000638
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000639 if (len < 0) {
Dmitry V. Levina501f142008-11-10 23:19:13 +0000640 /*
641 * Treat as a NUL-terminated string: fetch one byte more
642 * because string_quote() quotes one byte less.
643 */
Dmitry V. Levinbea02032007-10-08 21:48:01 +0000644 size = max_strlen + 1;
645 if (umovestr(tcp, addr, size, str) < 0) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000646 tprintf("%#lx", addr);
647 return;
648 }
649 }
650 else {
Dmitry V. Levina501f142008-11-10 23:19:13 +0000651 size = MIN(len, max_strlen);
Dmitry V. Levinbea02032007-10-08 21:48:01 +0000652 if (umoven(tcp, addr, size, str) < 0) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000653 tprintf("%#lx", addr);
654 return;
655 }
656 }
657
Denys Vlasenko6cecba52012-01-20 11:56:00 +0100658 /* If string_quote didn't see NUL and (it was supposed to be ASCIZ str
659 * or we were requested to print more than -s NUM chars)...
660 */
Denys Vlasenkob3c52cf2012-01-19 17:20:23 +0100661 ellipsis = (string_quote(str, outstr, len, size) &&
662 (len < 0 || len > max_strlen));
Roland McGratha503dcf2007-08-02 02:06:26 +0000663
Denys Vlasenkob3c52cf2012-01-19 17:20:23 +0100664 tprints(outstr);
665 if (ellipsis)
666 tprints("...");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000667}
668
John Hughes1d08dcf2001-07-10 13:48:44 +0000669#if HAVE_SYS_UIO_H
670void
Denys Vlasenko12014262011-05-30 14:00:14 +0200671dumpiov(struct tcb *tcp, int len, long addr)
John Hughes1d08dcf2001-07-10 13:48:44 +0000672{
Dmitry V. Levin4ebb4e32006-12-13 17:08:08 +0000673#if defined(LINUX) && SUPPORTED_PERSONALITIES > 1
674 union {
675 struct { u_int32_t base; u_int32_t len; } *iov32;
676 struct { u_int64_t base; u_int64_t len; } *iov64;
677 } iovu;
678#define iov iovu.iov64
679#define sizeof_iov \
680 (personality_wordsize[current_personality] == 4 \
681 ? sizeof(*iovu.iov32) : sizeof(*iovu.iov64))
682#define iov_iov_base(i) \
683 (personality_wordsize[current_personality] == 4 \
684 ? (u_int64_t) iovu.iov32[i].base : iovu.iov64[i].base)
685#define iov_iov_len(i) \
686 (personality_wordsize[current_personality] == 4 \
687 ? (u_int64_t) iovu.iov32[i].len : iovu.iov64[i].len)
688#else
John Hughes1d08dcf2001-07-10 13:48:44 +0000689 struct iovec *iov;
Dmitry V. Levin4ebb4e32006-12-13 17:08:08 +0000690#define sizeof_iov sizeof(*iov)
691#define iov_iov_base(i) iov[i].iov_base
692#define iov_iov_len(i) iov[i].iov_len
693#endif
John Hughes1d08dcf2001-07-10 13:48:44 +0000694 int i;
Denys Vlasenko79a79ea2011-09-01 16:35:44 +0200695 unsigned size;
John Hughes1d08dcf2001-07-10 13:48:44 +0000696
Denys Vlasenko79a79ea2011-09-01 16:35:44 +0200697 size = sizeof_iov * len;
698 /* Assuming no sane program has millions of iovs */
699 if ((unsigned)len > 1024*1024 /* insane or negative size? */
Dmitry V. Levin4ebb4e32006-12-13 17:08:08 +0000700 || (iov = malloc(size)) == NULL) {
Denys Vlasenko79a79ea2011-09-01 16:35:44 +0200701 fprintf(stderr, "Out of memory\n");
702 return;
John Hughes1d08dcf2001-07-10 13:48:44 +0000703 }
Roland McGrathaa524c82005-06-01 19:22:06 +0000704 if (umoven(tcp, addr, size, (char *) iov) >= 0) {
John Hughes1d08dcf2001-07-10 13:48:44 +0000705 for (i = 0; i < len; i++) {
Denys Vlasenkoadedb512008-12-30 18:47:55 +0000706 /* include the buffer number to make it easy to
707 * match up the trace with the source */
708 tprintf(" * %lu bytes in buffer %d\n",
709 (unsigned long)iov_iov_len(i), i);
710 dumpstr(tcp, (long) iov_iov_base(i),
711 iov_iov_len(i));
712 }
John Hughes1d08dcf2001-07-10 13:48:44 +0000713 }
Denys Vlasenko79a79ea2011-09-01 16:35:44 +0200714 free(iov);
Dmitry V. Levin4ebb4e32006-12-13 17:08:08 +0000715#undef sizeof_iov
716#undef iov_iov_base
717#undef iov_iov_len
718#undef iov
John Hughes1d08dcf2001-07-10 13:48:44 +0000719}
720#endif
721
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000722void
Denys Vlasenko12014262011-05-30 14:00:14 +0200723dumpstr(struct tcb *tcp, long addr, int len)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000724{
725 static int strsize = -1;
726 static unsigned char *str;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000727 char *s;
728 int i, j;
729
730 if (strsize < len) {
Denys Vlasenko5d645812011-08-20 12:48:18 +0200731 free(str);
732 str = malloc(len);
Denys Vlasenko79a79ea2011-09-01 16:35:44 +0200733 if (!str) {
734 strsize = -1;
735 fprintf(stderr, "Out of memory\n");
736 return;
737 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000738 strsize = len;
739 }
740
741 if (umoven(tcp, addr, len, (char *) str) < 0)
742 return;
743
744 for (i = 0; i < len; i += 16) {
Denys Vlasenko1d46ba52011-08-31 14:00:02 +0200745 char outstr[80];
746
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000747 s = outstr;
748 sprintf(s, " | %05x ", i);
749 s += 9;
750 for (j = 0; j < 16; j++) {
751 if (j == 8)
752 *s++ = ' ';
753 if (i + j < len) {
754 sprintf(s, " %02x", str[i + j]);
755 s += 3;
756 }
757 else {
758 *s++ = ' '; *s++ = ' '; *s++ = ' ';
759 }
760 }
761 *s++ = ' '; *s++ = ' ';
762 for (j = 0; j < 16; j++) {
763 if (j == 8)
764 *s++ = ' ';
765 if (i + j < len) {
766 if (isprint(str[i + j]))
767 *s++ = str[i + j];
768 else
769 *s++ = '.';
770 }
771 else
772 *s++ = ' ';
773 }
774 tprintf("%s |\n", outstr);
775 }
776}
777
Denys Vlasenko3af224c2012-01-28 01:46:33 +0100778
Mike Frysinger612659e2012-02-14 14:38:28 +0100779#ifdef HAVE_PROCESS_VM_READV
780/* C library supports this, but the kernel might not. */
781static bool process_vm_readv_not_supported = 0;
782#else
783
Denys Vlasenko3af224c2012-01-28 01:46:33 +0100784/* Need to do this since process_vm_readv() is not yet available in libc.
785 * When libc is be updated, only "static bool process_vm_readv_not_supported"
786 * line should remain.
787 */
788#if !defined(__NR_process_vm_readv)
789# if defined(I386)
790# define __NR_process_vm_readv 347
791# elif defined(X86_64)
792# define __NR_process_vm_readv 310
793# elif defined(POWERPC)
794# define __NR_process_vm_readv 351
795# endif
796#endif
797
798#if defined(__NR_process_vm_readv)
799static bool process_vm_readv_not_supported = 0;
800static ssize_t process_vm_readv(pid_t pid,
801 const struct iovec *lvec,
802 unsigned long liovcnt,
803 const struct iovec *rvec,
804 unsigned long riovcnt,
805 unsigned long flags)
806{
807 return syscall(__NR_process_vm_readv, (long)pid, lvec, liovcnt, rvec, riovcnt, flags);
808}
809#else
810static bool process_vm_readv_not_supported = 1;
811# define process_vm_readv(...) (errno = ENOSYS, -1)
812#endif
Mike Frysinger612659e2012-02-14 14:38:28 +0100813
814#endif /* end of hack */
Denys Vlasenko3af224c2012-01-28 01:46:33 +0100815
816
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000817#define PAGMASK (~(PAGSIZ - 1))
818/*
819 * move `len' bytes of data from process `pid'
820 * at address `addr' to our space at `laddr'
821 */
822int
Denys Vlasenkoef2fbf82009-01-06 21:45:06 +0000823umoven(struct tcb *tcp, long addr, int len, char *laddr)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000824{
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000825#ifdef LINUX
Roland McGratheb9e2e82009-06-02 16:49:22 -0700826 int pid = tcp->pid;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000827 int n, m;
Denys Vlasenkoa47e6b92012-01-21 04:01:56 +0100828 int started;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000829 union {
830 long val;
831 char x[sizeof(long)];
832 } u;
833
Denys Vlasenko3af224c2012-01-28 01:46:33 +0100834 if (!process_vm_readv_not_supported) {
835 struct iovec local[1], remote[1];
836 int r;
837
838 local[0].iov_base = laddr;
839 remote[0].iov_base = (void*)addr;
840 local[0].iov_len = remote[0].iov_len = len;
841 r = process_vm_readv(pid,
842 local, 1,
843 remote, 1,
844 /*flags:*/ 0
845 );
846 if (r < 0) {
847 if (errno == ENOSYS)
848 process_vm_readv_not_supported = 1;
Denys Vlasenko29456392012-01-28 02:49:48 +0100849 else if (errno != EINVAL) /* EINVAL is seen if process is gone */
850 /* strange... */
Denys Vlasenko3af224c2012-01-28 01:46:33 +0100851 perror("process_vm_readv");
852 goto vm_readv_didnt_work;
853 }
854 return r;
855 }
856 vm_readv_didnt_work:
857
Dmitry V. Levin856c7ed2011-12-26 20:12:02 +0000858#if SUPPORTED_PERSONALITIES > 1
859 if (personality_wordsize[current_personality] < sizeof(addr))
860 addr &= (1ul << 8 * personality_wordsize[current_personality]) - 1;
861#endif
862
Denys Vlasenkoa47e6b92012-01-21 04:01:56 +0100863 started = 0;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000864 if (addr & (sizeof(long) - 1)) {
865 /* addr not a multiple of sizeof(long) */
866 n = addr - (addr & -sizeof(long)); /* residue */
867 addr &= -sizeof(long); /* residue */
Roland McGratheb9e2e82009-06-02 16:49:22 -0700868 errno = 0;
869 u.val = ptrace(PTRACE_PEEKDATA, pid, (char *) addr, 0);
870 if (errno) {
Roland McGratheb9e2e82009-06-02 16:49:22 -0700871 /* But if not started, we had a bogus address. */
872 if (addr != 0 && errno != EIO && errno != ESRCH)
873 perror("ptrace: umoven");
874 return -1;
875 }
Wichert Akkerman5daa0281999-03-15 19:49:42 +0000876 started = 1;
Denys Vlasenkoa47e6b92012-01-21 04:01:56 +0100877 m = MIN(sizeof(long) - n, len);
878 memcpy(laddr, &u.x[n], m);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000879 addr += sizeof(long), laddr += m, len -= m;
880 }
881 while (len) {
Roland McGratheb9e2e82009-06-02 16:49:22 -0700882 errno = 0;
883 u.val = ptrace(PTRACE_PEEKDATA, pid, (char *) addr, 0);
884 if (errno) {
885 if (started && (errno==EPERM || errno==EIO)) {
886 /* Ran into 'end of memory' - stupid "printpath" */
887 return 0;
888 }
889 if (addr != 0 && errno != EIO && errno != ESRCH)
890 perror("ptrace: umoven");
891 return -1;
892 }
Wichert Akkerman5daa0281999-03-15 19:49:42 +0000893 started = 1;
Denys Vlasenkoa47e6b92012-01-21 04:01:56 +0100894 m = MIN(sizeof(long), len);
895 memcpy(laddr, u.x, m);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000896 addr += sizeof(long), laddr += m, len -= m;
897 }
898#endif /* LINUX */
899
900#ifdef SUNOS4
901 int pid = tcp->pid;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000902 int n;
903
904 while (len) {
905 n = MIN(len, PAGSIZ);
906 n = MIN(n, ((addr + PAGSIZ) & PAGMASK) - addr);
Roland McGratheb9e2e82009-06-02 16:49:22 -0700907 if (ptrace(PTRACE_READDATA, pid,
908 (char *) addr, len, laddr) < 0) {
909 if (errno != ESRCH) {
910 perror("umoven: ptrace(PTRACE_READDATA, ...)");
911 abort();
912 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000913 return -1;
914 }
915 len -= n;
916 addr += n;
917 laddr += n;
918 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000919#endif /* SUNOS4 */
920
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000921#ifdef USE_PROCFS
Wichert Akkermanea78f0f1999-11-29 15:34:02 +0000922#ifdef HAVE_MP_PROCFS
John Hughesaa09c6b2001-05-15 14:53:43 +0000923 int fd = tcp->pfd_as;
Wichert Akkerman9ce1a631999-08-29 23:15:07 +0000924#else
John Hughesaa09c6b2001-05-15 14:53:43 +0000925 int fd = tcp->pfd;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000926#endif
John Hughesaa09c6b2001-05-15 14:53:43 +0000927 lseek(fd, addr, SEEK_SET);
928 if (read(fd, laddr, len) == -1)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000929 return -1;
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000930#endif /* USE_PROCFS */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000931
932 return 0;
933}
934
935/*
Denys Vlasenko6cecba52012-01-20 11:56:00 +0100936 * Like `umove' but make the additional effort of looking
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000937 * for a terminating zero byte.
Denys Vlasenko6cecba52012-01-20 11:56:00 +0100938 *
939 * Returns < 0 on error, > 0 if NUL was seen,
940 * (TODO if useful: return count of bytes including NUL),
941 * else 0 if len bytes were read but no NUL byte seen.
942 *
943 * Note: there is no guarantee we won't overwrite some bytes
944 * in laddr[] _after_ terminating NUL (but, of course,
945 * we never write past laddr[len-1]).
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000946 */
947int
Denys Vlasenkoef2fbf82009-01-06 21:45:06 +0000948umovestr(struct tcb *tcp, long addr, int len, char *laddr)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000949{
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000950#ifdef USE_PROCFS
Denys Vlasenkoa47e6b92012-01-21 04:01:56 +0100951# ifdef HAVE_MP_PROCFS
John Hughesaa09c6b2001-05-15 14:53:43 +0000952 int fd = tcp->pfd_as;
Denys Vlasenkoa47e6b92012-01-21 04:01:56 +0100953# else
John Hughesaa09c6b2001-05-15 14:53:43 +0000954 int fd = tcp->pfd;
Denys Vlasenkoa47e6b92012-01-21 04:01:56 +0100955# endif
John Hughesaa09c6b2001-05-15 14:53:43 +0000956 /* Some systems (e.g. FreeBSD) can be upset if we read off the
957 end of valid memory, avoid this by trying to read up
958 to page boundaries. But we don't know what a page is (and
959 getpagesize(2) (if it exists) doesn't necessarily return
960 hardware page size). Assume all pages >= 1024 (a-historical
961 I know) */
962
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200963 int page = 1024; /* How to find this? */
John Hughesaa09c6b2001-05-15 14:53:43 +0000964 int move = page - (addr & (page - 1));
965 int left = len;
966
967 lseek(fd, addr, SEEK_SET);
968
969 while (left) {
Denys Vlasenko5d645812011-08-20 12:48:18 +0200970 if (move > left)
971 move = left;
972 move = read(fd, laddr, move);
973 if (move <= 0)
John Hughesaa09c6b2001-05-15 14:53:43 +0000974 return left != len ? 0 : -1;
Denys Vlasenko5d645812011-08-20 12:48:18 +0200975 if (memchr(laddr, 0, move))
Denys Vlasenko6cecba52012-01-20 11:56:00 +0100976 return 1;
John Hughesaa09c6b2001-05-15 14:53:43 +0000977 left -= move;
978 laddr += move;
979 addr += move;
980 move = page;
981 }
Denys Vlasenkoa47e6b92012-01-21 04:01:56 +0100982 return 0;
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000983#else /* !USE_PROCFS */
Denys Vlasenkoa47e6b92012-01-21 04:01:56 +0100984 int started;
Roland McGratheb9e2e82009-06-02 16:49:22 -0700985 int pid = tcp->pid;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000986 int i, n, m;
987 union {
988 long val;
989 char x[sizeof(long)];
990 } u;
991
Dmitry V. Levin856c7ed2011-12-26 20:12:02 +0000992#if SUPPORTED_PERSONALITIES > 1
993 if (personality_wordsize[current_personality] < sizeof(addr))
994 addr &= (1ul << 8 * personality_wordsize[current_personality]) - 1;
995#endif
996
Denys Vlasenko3af224c2012-01-28 01:46:33 +0100997 if (!process_vm_readv_not_supported) {
998 struct iovec local[1], remote[1];
999
1000 local[0].iov_base = laddr;
1001 remote[0].iov_base = (void*)addr;
1002
1003 while (len > 0) {
1004 int end_in_page;
1005 int r;
1006 int chunk_len;
1007
1008 /* Don't read kilobytes: most strings are short */
1009 chunk_len = len;
1010 if (chunk_len > 256)
1011 chunk_len = 256;
1012 /* Don't cross pages. I guess otherwise we can get EFAULT
1013 * and fail to notice that terminating NUL lies
1014 * in the existing (first) page.
1015 * (I hope there aren't arches with pages < 4K)
1016 */
1017 end_in_page = ((addr + chunk_len) & 4095);
1018 r = chunk_len - end_in_page;
1019 if (r > 0) /* if chunk_len > end_in_page */
1020 chunk_len = r; /* chunk_len -= end_in_page */
1021
1022 local[0].iov_len = remote[0].iov_len = chunk_len;
1023 r = process_vm_readv(pid,
1024 local, 1,
1025 remote, 1,
1026 /*flags:*/ 0
1027 );
1028 if (r < 0) {
1029 if (errno == ENOSYS)
1030 process_vm_readv_not_supported = 1;
Denys Vlasenko29456392012-01-28 02:49:48 +01001031 else if (errno != EINVAL) /* EINVAL is seen if process is gone */
1032 /* strange... */
Denys Vlasenko3af224c2012-01-28 01:46:33 +01001033 perror("process_vm_readv");
1034 goto vm_readv_didnt_work;
1035 }
1036 if (memchr(local[0].iov_base, '\0', r))
1037 return 1;
1038 local[0].iov_base += r;
1039 remote[0].iov_base += r;
1040 len -= r;
1041 }
1042 return 0;
1043 }
1044 vm_readv_didnt_work:
1045
Denys Vlasenkoa47e6b92012-01-21 04:01:56 +01001046 started = 0;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001047 if (addr & (sizeof(long) - 1)) {
1048 /* addr not a multiple of sizeof(long) */
1049 n = addr - (addr & -sizeof(long)); /* residue */
1050 addr &= -sizeof(long); /* residue */
Roland McGratheb9e2e82009-06-02 16:49:22 -07001051 errno = 0;
1052 u.val = ptrace(PTRACE_PEEKDATA, pid, (char *)addr, 0);
1053 if (errno) {
Roland McGratheb9e2e82009-06-02 16:49:22 -07001054 if (addr != 0 && errno != EIO && errno != ESRCH)
1055 perror("umovestr");
1056 return -1;
1057 }
Wichert Akkerman5daa0281999-03-15 19:49:42 +00001058 started = 1;
Denys Vlasenkoa47e6b92012-01-21 04:01:56 +01001059 m = MIN(sizeof(long) - n, len);
1060 memcpy(laddr, &u.x[n], m);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001061 while (n & (sizeof(long) - 1))
1062 if (u.x[n++] == '\0')
Denys Vlasenko6cecba52012-01-20 11:56:00 +01001063 return 1;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001064 addr += sizeof(long), laddr += m, len -= m;
1065 }
1066 while (len) {
Roland McGratheb9e2e82009-06-02 16:49:22 -07001067 errno = 0;
1068 u.val = ptrace(PTRACE_PEEKDATA, pid, (char *)addr, 0);
1069 if (errno) {
1070 if (started && (errno==EPERM || errno==EIO)) {
1071 /* Ran into 'end of memory' - stupid "printpath" */
1072 return 0;
1073 }
1074 if (addr != 0 && errno != EIO && errno != ESRCH)
1075 perror("umovestr");
1076 return -1;
1077 }
Wichert Akkerman5daa0281999-03-15 19:49:42 +00001078 started = 1;
Denys Vlasenkoa47e6b92012-01-21 04:01:56 +01001079 m = MIN(sizeof(long), len);
1080 memcpy(laddr, u.x, m);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001081 for (i = 0; i < sizeof(long); i++)
1082 if (u.x[i] == '\0')
Denys Vlasenko6cecba52012-01-20 11:56:00 +01001083 return 1;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001084 addr += sizeof(long), laddr += m, len -= m;
1085 }
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001086#endif /* !USE_PROCFS */
John Hughesaa09c6b2001-05-15 14:53:43 +00001087 return 0;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001088}
1089
1090#ifdef LINUX
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001091# if !defined (SPARC) && !defined(SPARC64)
1092# define PTRACE_WRITETEXT 101
1093# define PTRACE_WRITEDATA 102
1094# endif /* !SPARC && !SPARC64 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001095#endif /* LINUX */
1096
1097#ifdef SUNOS4
1098
1099static int
Denys Vlasenko12014262011-05-30 14:00:14 +02001100uload(int cmd, int pid, long addr, int len, char *laddr)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001101{
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001102 int peek, poke;
1103 int n, m;
1104 union {
1105 long val;
1106 char x[sizeof(long)];
1107 } u;
1108
1109 if (cmd == PTRACE_WRITETEXT) {
1110 peek = PTRACE_PEEKTEXT;
1111 poke = PTRACE_POKETEXT;
1112 }
1113 else {
1114 peek = PTRACE_PEEKDATA;
1115 poke = PTRACE_POKEDATA;
1116 }
1117 if (addr & (sizeof(long) - 1)) {
1118 /* addr not a multiple of sizeof(long) */
1119 n = addr - (addr & -sizeof(long)); /* residue */
1120 addr &= -sizeof(long);
Roland McGratheb9e2e82009-06-02 16:49:22 -07001121 errno = 0;
1122 u.val = ptrace(peek, pid, (char *) addr, 0);
1123 if (errno) {
1124 perror("uload: POKE");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001125 return -1;
1126 }
Denys Vlasenkoa47e6b92012-01-21 04:01:56 +01001127 m = MIN(sizeof(long) - n, len);
1128 memcpy(&u.x[n], laddr, m);
Roland McGratheb9e2e82009-06-02 16:49:22 -07001129 if (ptrace(poke, pid, (char *)addr, u.val) < 0) {
1130 perror("uload: POKE");
1131 return -1;
1132 }
1133 addr += sizeof(long), laddr += m, len -= m;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001134 }
1135 while (len) {
1136 if (len < sizeof(long))
Roland McGratheb9e2e82009-06-02 16:49:22 -07001137 u.val = ptrace(peek, pid, (char *) addr, 0);
Denys Vlasenkoa47e6b92012-01-21 04:01:56 +01001138 m = MIN(sizeof(long), len);
1139 memcpy(u.x, laddr, m);
Roland McGratheb9e2e82009-06-02 16:49:22 -07001140 if (ptrace(poke, pid, (char *) addr, u.val) < 0) {
1141 perror("uload: POKE");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001142 return -1;
1143 }
Roland McGratheb9e2e82009-06-02 16:49:22 -07001144 addr += sizeof(long), laddr += m, len -= m;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001145 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001146 return 0;
1147}
1148
Roland McGratheb9e2e82009-06-02 16:49:22 -07001149int
Denys Vlasenko12014262011-05-30 14:00:14 +02001150tload(int pid, int addr, int len, char *laddr)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001151{
Roland McGratheb9e2e82009-06-02 16:49:22 -07001152 return uload(PTRACE_WRITETEXT, pid, addr, len, laddr);
1153}
1154
1155int
Denys Vlasenko12014262011-05-30 14:00:14 +02001156dload(int pid, int addr, int len, char *laddr)
Roland McGratheb9e2e82009-06-02 16:49:22 -07001157{
1158 return uload(PTRACE_WRITEDATA, pid, addr, len, laddr);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001159}
1160
1161#endif /* SUNOS4 */
1162
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001163#ifndef USE_PROCFS
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001164
1165int
Denys Vlasenko12014262011-05-30 14:00:14 +02001166upeek(struct tcb *tcp, long off, long *res)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001167{
1168 long val;
1169
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001170# ifdef SUNOS4_KERNEL_ARCH_KLUDGE
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001171 {
1172 static int is_sun4m = -1;
1173 struct utsname name;
1174
1175 /* Round up the usual suspects. */
1176 if (is_sun4m == -1) {
1177 if (uname(&name) < 0) {
1178 perror("upeek: uname?");
1179 exit(1);
1180 }
1181 is_sun4m = strcmp(name.machine, "sun4m") == 0;
1182 if (is_sun4m) {
Roland McGrathd9f816f2004-09-04 03:39:20 +00001183 const struct xlat *x;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001184
1185 for (x = struct_user_offsets; x->str; x++)
1186 x->val += 1024;
1187 }
1188 }
1189 if (is_sun4m)
1190 off += 1024;
1191 }
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001192# endif /* SUNOS4_KERNEL_ARCH_KLUDGE */
Roland McGratheb9e2e82009-06-02 16:49:22 -07001193 errno = 0;
Denys Vlasenko732d1bf2008-12-17 19:21:59 +00001194 val = do_ptrace(PTRACE_PEEKUSER, tcp, (char *) off, 0);
Roland McGratheb9e2e82009-06-02 16:49:22 -07001195 if (val == -1 && errno) {
1196 if (errno != ESRCH) {
1197 char buf[60];
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001198 sprintf(buf, "upeek: ptrace(PTRACE_PEEKUSER,%d,%lu,0)", tcp->pid, off);
Roland McGratheb9e2e82009-06-02 16:49:22 -07001199 perror(buf);
1200 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001201 return -1;
Roland McGratheb9e2e82009-06-02 16:49:22 -07001202 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001203 *res = val;
1204 return 0;
1205}
1206
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001207#endif /* !USE_PROCFS */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001208
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001209void
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001210printcall(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001211{
Roland McGrath7a918832005-02-02 20:55:23 +00001212#define PRINTBADPC tprintf(sizeof(long) == 4 ? "[????????] " : \
1213 sizeof(long) == 8 ? "[????????????????] " : \
1214 NULL /* crash */)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001215
1216#ifdef LINUX
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001217# ifdef I386
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001218 long eip;
1219
Denys Vlasenko932fc7d2008-12-16 18:18:40 +00001220 if (upeek(tcp, 4*EIP, &eip) < 0) {
Roland McGrath7a918832005-02-02 20:55:23 +00001221 PRINTBADPC;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001222 return;
1223 }
1224 tprintf("[%08lx] ", eip);
Roland McGratheac26fc2005-02-02 02:48:53 +00001225
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001226# elif defined(S390) || defined(S390X)
Denys Vlasenkoadedb512008-12-30 18:47:55 +00001227 long psw;
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001228 if (upeek(tcp, PT_PSWADDR, &psw) < 0) {
Denys Vlasenkoadedb512008-12-30 18:47:55 +00001229 PRINTBADPC;
1230 return;
1231 }
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001232# ifdef S390
Denys Vlasenkoadedb512008-12-30 18:47:55 +00001233 tprintf("[%08lx] ", psw);
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001234# elif S390X
Denys Vlasenkoadedb512008-12-30 18:47:55 +00001235 tprintf("[%16lx] ", psw);
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001236# endif
Roland McGratheac26fc2005-02-02 02:48:53 +00001237
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001238# elif defined(X86_64)
Michal Ludvig0e035502002-09-23 15:41:01 +00001239 long rip;
1240
Denys Vlasenko932fc7d2008-12-16 18:18:40 +00001241 if (upeek(tcp, 8*RIP, &rip) < 0) {
Roland McGrath7a918832005-02-02 20:55:23 +00001242 PRINTBADPC;
Michal Ludvig0e035502002-09-23 15:41:01 +00001243 return;
1244 }
1245 tprintf("[%16lx] ", rip);
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001246# elif defined(IA64)
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +00001247 long ip;
1248
Denys Vlasenko932fc7d2008-12-16 18:18:40 +00001249 if (upeek(tcp, PT_B0, &ip) < 0) {
Roland McGrath7a918832005-02-02 20:55:23 +00001250 PRINTBADPC;
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +00001251 return;
1252 }
1253 tprintf("[%08lx] ", ip);
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001254# elif defined(POWERPC)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001255 long pc;
1256
Denys Vlasenko932fc7d2008-12-16 18:18:40 +00001257 if (upeek(tcp, sizeof(unsigned long)*PT_NIP, &pc) < 0) {
Andreas Schwabd69fa492010-07-12 21:39:57 +02001258 PRINTBADPC;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001259 return;
1260 }
Andreas Schwabd69fa492010-07-12 21:39:57 +02001261# ifdef POWERPC64
1262 tprintf("[%016lx] ", pc);
1263# else
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001264 tprintf("[%08lx] ", pc);
Andreas Schwabd69fa492010-07-12 21:39:57 +02001265# endif
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001266# elif defined(M68K)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001267 long pc;
1268
Denys Vlasenko932fc7d2008-12-16 18:18:40 +00001269 if (upeek(tcp, 4*PT_PC, &pc) < 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001270 tprints("[????????] ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001271 return;
1272 }
1273 tprintf("[%08lx] ", pc);
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001274# elif defined(ALPHA)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001275 long pc;
1276
Denys Vlasenko932fc7d2008-12-16 18:18:40 +00001277 if (upeek(tcp, REG_PC, &pc) < 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001278 tprints("[????????????????] ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001279 return;
1280 }
1281 tprintf("[%08lx] ", pc);
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001282# elif defined(SPARC) || defined(SPARC64)
Mike Frysinger8566c502009-10-12 11:05:14 -04001283 struct pt_regs regs;
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001284 if (ptrace(PTRACE_GETREGS, tcp->pid, (char *)&regs, 0) < 0) {
Roland McGrath7a918832005-02-02 20:55:23 +00001285 PRINTBADPC;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001286 return;
1287 }
Mike Frysinger8566c502009-10-12 11:05:14 -04001288# if defined(SPARC64)
1289 tprintf("[%08lx] ", regs.tpc);
1290# else
1291 tprintf("[%08lx] ", regs.pc);
1292# endif
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001293# elif defined(HPPA)
Wichert Akkermanc1652e22001-03-27 12:17:16 +00001294 long pc;
1295
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001296 if (upeek(tcp, PT_IAOQ0, &pc) < 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001297 tprints("[????????] ");
Wichert Akkermanc1652e22001-03-27 12:17:16 +00001298 return;
1299 }
1300 tprintf("[%08lx] ", pc);
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001301# elif defined(MIPS)
Wichert Akkerman75c422b2001-04-10 10:22:50 +00001302 long pc;
1303
Denys Vlasenko932fc7d2008-12-16 18:18:40 +00001304 if (upeek(tcp, REG_EPC, &pc) < 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001305 tprints("[????????] ");
Wichert Akkerman75c422b2001-04-10 10:22:50 +00001306 return;
1307 }
1308 tprintf("[%08lx] ", pc);
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001309# elif defined(SH)
Denys Vlasenkoadedb512008-12-30 18:47:55 +00001310 long pc;
Wichert Akkermanccef6372002-05-01 16:39:22 +00001311
Denys Vlasenkoadedb512008-12-30 18:47:55 +00001312 if (upeek(tcp, 4*REG_PC, &pc) < 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001313 tprints("[????????] ");
Denys Vlasenkoadedb512008-12-30 18:47:55 +00001314 return;
1315 }
1316 tprintf("[%08lx] ", pc);
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001317# elif defined(SH64)
Roland McGrathe1e584b2003-06-02 19:18:58 +00001318 long pc;
1319
Denys Vlasenko932fc7d2008-12-16 18:18:40 +00001320 if (upeek(tcp, REG_PC, &pc) < 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001321 tprints("[????????????????] ");
Roland McGrathe1e584b2003-06-02 19:18:58 +00001322 return;
1323 }
1324 tprintf("[%08lx] ", pc);
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001325# elif defined(ARM)
Roland McGrathef388682003-06-03 23:28:59 +00001326 long pc;
Roland McGrathe1e584b2003-06-02 19:18:58 +00001327
Denys Vlasenko932fc7d2008-12-16 18:18:40 +00001328 if (upeek(tcp, 4*15, &pc) < 0) {
Roland McGrath7a918832005-02-02 20:55:23 +00001329 PRINTBADPC;
Roland McGrathef388682003-06-03 23:28:59 +00001330 return;
1331 }
1332 tprintf("[%08lx] ", pc);
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +00001333# elif defined(AVR32)
1334 long pc;
1335
1336 if (upeek(tcp, REG_PC, &pc) < 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001337 tprints("[????????] ");
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +00001338 return;
1339 }
1340 tprintf("[%08lx] ", pc);
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001341# elif defined(BFIN)
Dmitry V. Levin87ea1f42008-11-10 22:21:41 +00001342 long pc;
1343
Denys Vlasenko932fc7d2008-12-16 18:18:40 +00001344 if (upeek(tcp, PT_PC, &pc) < 0) {
Dmitry V. Levin87ea1f42008-11-10 22:21:41 +00001345 PRINTBADPC;
1346 return;
1347 }
1348 tprintf("[%08lx] ", pc);
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001349#elif defined(CRISV10)
1350 long pc;
1351
Edgar E. Iglesiaseeb9ce32009-10-05 14:41:02 +00001352 if (upeek(tcp, 4*PT_IRP, &pc) < 0) {
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001353 PRINTBADPC;
1354 return;
1355 }
1356 tprintf("[%08lx] ", pc);
1357#elif defined(CRISV32)
1358 long pc;
1359
Edgar E. Iglesiaseeb9ce32009-10-05 14:41:02 +00001360 if (upeek(tcp, 4*PT_ERP, &pc) < 0) {
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001361 PRINTBADPC;
1362 return;
1363 }
1364 tprintf("[%08lx] ", pc);
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001365# endif /* architecture */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001366#endif /* LINUX */
1367
1368#ifdef SUNOS4
1369 struct regs regs;
1370
Roland McGratheb9e2e82009-06-02 16:49:22 -07001371 if (ptrace(PTRACE_GETREGS, tcp->pid, (char *) &regs, 0) < 0) {
1372 perror("printcall: ptrace(PTRACE_GETREGS, ...)");
Roland McGrath7a918832005-02-02 20:55:23 +00001373 PRINTBADPC;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001374 return;
1375 }
1376 tprintf("[%08x] ", regs.r_o7);
1377#endif /* SUNOS4 */
1378
1379#ifdef SVR4
1380 /* XXX */
Roland McGrath7a918832005-02-02 20:55:23 +00001381 PRINTBADPC;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001382#endif
1383
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001384#ifdef FREEBSD
1385 struct reg regs;
1386 pread(tcp->pfd_reg, &regs, sizeof(regs), 0);
1387 tprintf("[%08x] ", regs.r_eip);
1388#endif /* FREEBSD */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001389}
1390
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001391
1392/*
1393 * These #if's are huge, please indent them correctly.
1394 * It's easy to get confused otherwise.
1395 */
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001396#ifndef USE_PROCFS
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001397
Denys Vlasenkoe7c90242011-06-22 00:09:25 +02001398# ifdef LINUX
Roland McGrathd81f1d92003-01-09 06:53:34 +00001399
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001400# include "syscall.h"
Roland McGrath3291ef22008-05-20 00:34:34 +00001401
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001402# include <sys/syscall.h>
1403# ifndef CLONE_PTRACE
1404# define CLONE_PTRACE 0x00002000
1405# endif
1406# ifndef CLONE_VFORK
1407# define CLONE_VFORK 0x00004000
1408# endif
1409# ifndef CLONE_VM
1410# define CLONE_VM 0x00000100
1411# endif
1412# ifndef CLONE_STOPPED
1413# define CLONE_STOPPED 0x02000000
1414# endif
Roland McGrathd81f1d92003-01-09 06:53:34 +00001415
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001416# ifdef IA64
Roland McGrathd81f1d92003-01-09 06:53:34 +00001417
1418typedef unsigned long *arg_setup_state;
1419
1420static int
1421arg_setup(struct tcb *tcp, arg_setup_state *state)
1422{
Jan Kratochvil1f942712008-08-06 21:38:52 +00001423 unsigned long cfm, sof, sol;
1424 long bsp;
Roland McGrathd81f1d92003-01-09 06:53:34 +00001425
Jan Kratochvil1f942712008-08-06 21:38:52 +00001426 if (ia32) {
1427 /* Satisfy a false GCC warning. */
1428 *state = NULL;
Roland McGrath08267b82004-02-20 22:56:43 +00001429 return 0;
Jan Kratochvil1f942712008-08-06 21:38:52 +00001430 }
Roland McGrath08267b82004-02-20 22:56:43 +00001431
Denys Vlasenko932fc7d2008-12-16 18:18:40 +00001432 if (upeek(tcp, PT_AR_BSP, &bsp) < 0)
Roland McGrathd81f1d92003-01-09 06:53:34 +00001433 return -1;
Denys Vlasenko932fc7d2008-12-16 18:18:40 +00001434 if (upeek(tcp, PT_CFM, (long *) &cfm) < 0)
Roland McGrathd81f1d92003-01-09 06:53:34 +00001435 return -1;
1436
1437 sof = (cfm >> 0) & 0x7f;
1438 sol = (cfm >> 7) & 0x7f;
Jan Kratochvil1f942712008-08-06 21:38:52 +00001439 bsp = (long) ia64_rse_skip_regs((unsigned long *) bsp, -sof + sol);
Roland McGrathd81f1d92003-01-09 06:53:34 +00001440
Jan Kratochvil1f942712008-08-06 21:38:52 +00001441 *state = (unsigned long *) bsp;
Roland McGrathd81f1d92003-01-09 06:53:34 +00001442 return 0;
1443}
1444
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001445# define arg_finish_change(tcp, state) 0
Roland McGrathd81f1d92003-01-09 06:53:34 +00001446
Roland McGrathd81f1d92003-01-09 06:53:34 +00001447static int
Denys Vlasenko12014262011-05-30 14:00:14 +02001448get_arg0(struct tcb *tcp, arg_setup_state *state, long *valp)
Roland McGrathd81f1d92003-01-09 06:53:34 +00001449{
Roland McGrath08267b82004-02-20 22:56:43 +00001450 int ret;
1451
1452 if (ia32)
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001453 ret = upeek(tcp, PT_R11, valp);
Roland McGrath08267b82004-02-20 22:56:43 +00001454 else
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001455 ret = umoven(tcp,
Roland McGrath08267b82004-02-20 22:56:43 +00001456 (unsigned long) ia64_rse_skip_regs(*state, 0),
1457 sizeof(long), (void *) valp);
1458 return ret;
Roland McGrathd81f1d92003-01-09 06:53:34 +00001459}
1460
1461static int
Denys Vlasenko12014262011-05-30 14:00:14 +02001462get_arg1(struct tcb *tcp, arg_setup_state *state, long *valp)
Roland McGrathd81f1d92003-01-09 06:53:34 +00001463{
Roland McGrath08267b82004-02-20 22:56:43 +00001464 int ret;
1465
1466 if (ia32)
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001467 ret = upeek(tcp, PT_R9, valp);
Roland McGrath08267b82004-02-20 22:56:43 +00001468 else
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001469 ret = umoven(tcp,
Roland McGrath08267b82004-02-20 22:56:43 +00001470 (unsigned long) ia64_rse_skip_regs(*state, 1),
1471 sizeof(long), (void *) valp);
1472 return ret;
Roland McGrathd81f1d92003-01-09 06:53:34 +00001473}
Roland McGrathd81f1d92003-01-09 06:53:34 +00001474
1475static int
Denys Vlasenko12014262011-05-30 14:00:14 +02001476set_arg0(struct tcb *tcp, arg_setup_state *state, long val)
Roland McGrathd81f1d92003-01-09 06:53:34 +00001477{
Roland McGrath08267b82004-02-20 22:56:43 +00001478 int req = PTRACE_POKEDATA;
1479 void *ap;
1480
1481 if (ia32) {
1482 ap = (void *) (intptr_t) PT_R11; /* r11 == EBX */
1483 req = PTRACE_POKEUSER;
1484 } else
1485 ap = ia64_rse_skip_regs(*state, 0);
Roland McGratheb9e2e82009-06-02 16:49:22 -07001486 errno = 0;
1487 ptrace(req, tcp->pid, ap, val);
1488 return errno ? -1 : 0;
Roland McGrathd81f1d92003-01-09 06:53:34 +00001489}
1490
1491static int
Denys Vlasenko12014262011-05-30 14:00:14 +02001492set_arg1(struct tcb *tcp, arg_setup_state *state, long val)
Roland McGrathd81f1d92003-01-09 06:53:34 +00001493{
Roland McGrath08267b82004-02-20 22:56:43 +00001494 int req = PTRACE_POKEDATA;
1495 void *ap;
1496
1497 if (ia32) {
1498 ap = (void *) (intptr_t) PT_R9; /* r9 == ECX */
1499 req = PTRACE_POKEUSER;
1500 } else
1501 ap = ia64_rse_skip_regs(*state, 1);
Roland McGratheb9e2e82009-06-02 16:49:22 -07001502 errno = 0;
1503 ptrace(req, tcp->pid, ap, val);
1504 return errno ? -1 : 0;
Roland McGrathd81f1d92003-01-09 06:53:34 +00001505}
1506
Roland McGrathb659f872008-07-18 01:19:36 +00001507/* ia64 does not return the input arguments from functions (and syscalls)
1508 according to ia64 RSE (Register Stack Engine) behavior. */
1509
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001510# define restore_arg0(tcp, state, val) ((void) (state), 0)
1511# define restore_arg1(tcp, state, val) ((void) (state), 0)
Roland McGrathb659f872008-07-18 01:19:36 +00001512
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001513# elif defined (SPARC) || defined (SPARC64)
Roland McGrathd81f1d92003-01-09 06:53:34 +00001514
Mike Frysinger8566c502009-10-12 11:05:14 -04001515typedef struct pt_regs arg_setup_state;
Roland McGrathd81f1d92003-01-09 06:53:34 +00001516
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001517# define arg_setup(tcp, state) \
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001518 (ptrace(PTRACE_GETREGS, tcp->pid, (char *) (state), 0))
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001519# define arg_finish_change(tcp, state) \
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001520 (ptrace(PTRACE_SETREGS, tcp->pid, (char *) (state), 0))
Roland McGrathd81f1d92003-01-09 06:53:34 +00001521
Mike Frysinger8566c502009-10-12 11:05:14 -04001522# define get_arg0(tcp, state, valp) (*(valp) = (state)->u_regs[U_REG_O0], 0)
1523# define get_arg1(tcp, state, valp) (*(valp) = (state)->u_regs[U_REG_O1], 0)
1524# define set_arg0(tcp, state, val) ((state)->u_regs[U_REG_O0] = (val), 0)
1525# define set_arg1(tcp, state, val) ((state)->u_regs[U_REG_O1] = (val), 0)
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001526# define restore_arg0(tcp, state, val) 0
Roland McGrathd81f1d92003-01-09 06:53:34 +00001527
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001528# else /* other architectures */
Roland McGrathd81f1d92003-01-09 06:53:34 +00001529
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001530# if defined S390 || defined S390X
Roland McGrath7b308222003-01-20 09:04:36 +00001531/* Note: this is only true for the `clone' system call, which handles
1532 arguments specially. We could as well say that its first two arguments
1533 are swapped relative to other architectures, but that would just be
1534 another #ifdef in the calls. */
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001535# define arg0_offset PT_GPR3
1536# define arg1_offset PT_ORIGGPR2
1537# define restore_arg0(tcp, state, val) ((void) (state), 0)
1538# define restore_arg1(tcp, state, val) ((void) (state), 0)
1539# define arg0_index 1
1540# define arg1_index 0
1541# elif defined (ALPHA) || defined (MIPS)
1542# define arg0_offset REG_A0
1543# define arg1_offset (REG_A0+1)
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +00001544# elif defined (AVR32)
1545# define arg0_offset (REG_R12)
1546# define arg1_offset (REG_R11)
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001547# elif defined (POWERPC)
1548# define arg0_offset (sizeof(unsigned long)*PT_R3)
1549# define arg1_offset (sizeof(unsigned long)*PT_R4)
1550# define restore_arg0(tcp, state, val) ((void) (state), 0)
1551# elif defined (HPPA)
1552# define arg0_offset PT_GR26
1553# define arg1_offset (PT_GR26-4)
1554# elif defined (X86_64)
1555# define arg0_offset ((long)(8*(current_personality ? RBX : RDI)))
1556# define arg1_offset ((long)(8*(current_personality ? RCX : RSI)))
1557# elif defined (SH)
1558# define arg0_offset (4*(REG_REG0+4))
1559# define arg1_offset (4*(REG_REG0+5))
1560# elif defined (SH64)
1561 /* ABI defines arg0 & 1 in r2 & r3 */
1562# define arg0_offset (REG_OFFSET+16)
1563# define arg1_offset (REG_OFFSET+24)
1564# define restore_arg0(tcp, state, val) 0
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001565# elif defined CRISV10 || defined CRISV32
1566# define arg0_offset (4*PT_R11)
1567# define arg1_offset (4*PT_ORIG_R10)
1568# define restore_arg0(tcp, state, val) 0
1569# define restore_arg1(tcp, state, val) 0
1570# define arg0_index 1
1571# define arg1_index 0
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001572# else
1573# define arg0_offset 0
1574# define arg1_offset 4
1575# if defined ARM
1576# define restore_arg0(tcp, state, val) 0
1577# endif
1578# endif
Roland McGrathd81f1d92003-01-09 06:53:34 +00001579
1580typedef int arg_setup_state;
1581
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001582# define arg_setup(tcp, state) (0)
1583# define arg_finish_change(tcp, state) 0
1584# define get_arg0(tcp, cookie, valp) \
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001585 (upeek((tcp), arg0_offset, (valp)))
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001586# define get_arg1(tcp, cookie, valp) \
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001587 (upeek((tcp), arg1_offset, (valp)))
Roland McGrathd81f1d92003-01-09 06:53:34 +00001588
1589static int
Denys Vlasenko12014262011-05-30 14:00:14 +02001590set_arg0(struct tcb *tcp, void *cookie, long val)
Roland McGrathd81f1d92003-01-09 06:53:34 +00001591{
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001592 return ptrace(PTRACE_POKEUSER, tcp->pid, (char*)arg0_offset, val);
Roland McGrathd81f1d92003-01-09 06:53:34 +00001593}
1594
1595static int
Denys Vlasenko12014262011-05-30 14:00:14 +02001596set_arg1(struct tcb *tcp, void *cookie, long val)
Roland McGrathd81f1d92003-01-09 06:53:34 +00001597{
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001598 return ptrace(PTRACE_POKEUSER, tcp->pid, (char*)arg1_offset, val);
Roland McGrathd81f1d92003-01-09 06:53:34 +00001599}
1600
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001601# endif /* architectures */
Roland McGrathd81f1d92003-01-09 06:53:34 +00001602
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001603# ifndef restore_arg0
1604# define restore_arg0(tcp, state, val) set_arg0((tcp), (state), (val))
1605# endif
1606# ifndef restore_arg1
1607# define restore_arg1(tcp, state, val) set_arg1((tcp), (state), (val))
1608# endif
Roland McGrathd81f1d92003-01-09 06:53:34 +00001609
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001610# ifndef arg0_index
1611# define arg0_index 0
1612# define arg1_index 1
1613# endif
Roland McGrath90d0afd2004-03-01 21:05:16 +00001614
Roland McGrathd81f1d92003-01-09 06:53:34 +00001615int
Denys Vlasenko418d66a2009-01-17 01:52:54 +00001616setbpt(struct tcb *tcp)
Roland McGrathd81f1d92003-01-09 06:53:34 +00001617{
Roland McGrath3291ef22008-05-20 00:34:34 +00001618 static int clone_scno[SUPPORTED_PERSONALITIES] = { SYS_clone };
Roland McGrathd81f1d92003-01-09 06:53:34 +00001619 arg_setup_state state;
1620
1621 if (tcp->flags & TCB_BPTSET) {
1622 fprintf(stderr, "PANIC: TCB already set in pid %u\n", tcp->pid);
1623 return -1;
1624 }
1625
Roland McGrath3291ef22008-05-20 00:34:34 +00001626 /*
1627 * It's a silly kludge to initialize this with a search at runtime.
1628 * But it's better than maintaining another magic thing in the
1629 * godforsaken tables.
1630 */
1631 if (clone_scno[current_personality] == 0) {
1632 int i;
1633 for (i = 0; i < nsyscalls; ++i)
1634 if (sysent[i].sys_func == sys_clone) {
1635 clone_scno[current_personality] = i;
1636 break;
1637 }
1638 }
1639
Dmitry V. Levin0c661512012-02-20 21:17:58 +00001640 if (sysent[tcp->scno].sys_func == sys_fork ||
1641 sysent[tcp->scno].sys_func == sys_vfork) {
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001642 if (arg_setup(tcp, &state) < 0
1643 || get_arg0(tcp, &state, &tcp->inst[0]) < 0
1644 || get_arg1(tcp, &state, &tcp->inst[1]) < 0
Roland McGrath3291ef22008-05-20 00:34:34 +00001645 || change_syscall(tcp, clone_scno[current_personality]) < 0
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001646 || set_arg0(tcp, &state, CLONE_PTRACE|SIGCHLD) < 0
1647 || set_arg1(tcp, &state, 0) < 0
1648 || arg_finish_change(tcp, &state) < 0)
Roland McGrathd81f1d92003-01-09 06:53:34 +00001649 return -1;
Roland McGrathc9dc3c12004-03-01 20:57:09 +00001650 tcp->u_arg[arg0_index] = CLONE_PTRACE|SIGCHLD;
1651 tcp->u_arg[arg1_index] = 0;
Roland McGrathd81f1d92003-01-09 06:53:34 +00001652 tcp->flags |= TCB_BPTSET;
1653 return 0;
Dmitry V. Levin0c661512012-02-20 21:17:58 +00001654 }
Roland McGrathd81f1d92003-01-09 06:53:34 +00001655
Dmitry V. Levin0c661512012-02-20 21:17:58 +00001656 if (sysent[tcp->scno].sys_func == sys_clone) {
Jan Kratochvil8fc95752008-08-06 21:43:35 +00001657 /* ia64 calls directly `clone (CLONE_VFORK | CLONE_VM)'
Dmitry V. Levin0c661512012-02-20 21:17:58 +00001658 contrary to x86 vfork above. Even on x86 we turn the
Jan Kratochvil8fc95752008-08-06 21:43:35 +00001659 vfork semantics into plain fork - each application must not
1660 depend on the vfork specifics according to POSIX. We would
1661 hang waiting for the parent resume otherwise. We need to
1662 clear also CLONE_VM but only in the CLONE_VFORK case as
1663 otherwise we would break pthread_create. */
1664
Denys Vlasenkoc133bf02011-06-23 21:57:54 +02001665 long new_arg0 = (tcp->u_arg[arg0_index] | CLONE_PTRACE);
1666 if (new_arg0 & CLONE_VFORK)
1667 new_arg0 &= ~(unsigned long)(CLONE_VFORK | CLONE_VM);
1668 if (arg_setup(tcp, &state) < 0
1669 || set_arg0(tcp, &state, new_arg0) < 0
1670 || arg_finish_change(tcp, &state) < 0)
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +00001671 return -1;
Roland McGrathd81f1d92003-01-09 06:53:34 +00001672 tcp->flags |= TCB_BPTSET;
Roland McGrathc9dc3c12004-03-01 20:57:09 +00001673 tcp->inst[0] = tcp->u_arg[arg0_index];
1674 tcp->inst[1] = tcp->u_arg[arg1_index];
Roland McGrathd81f1d92003-01-09 06:53:34 +00001675 return 0;
Roland McGrathd81f1d92003-01-09 06:53:34 +00001676 }
1677
Dmitry V. Levin0c661512012-02-20 21:17:58 +00001678 fprintf(stderr, "PANIC: setbpt for syscall %ld on %u???\n",
1679 tcp->scno, tcp->pid);
Roland McGrathd81f1d92003-01-09 06:53:34 +00001680 return -1;
1681}
1682
1683int
Denys Vlasenko12014262011-05-30 14:00:14 +02001684clearbpt(struct tcb *tcp)
Roland McGrathd81f1d92003-01-09 06:53:34 +00001685{
1686 arg_setup_state state;
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001687 if (arg_setup(tcp, &state) < 0
1688 || restore_arg0(tcp, &state, tcp->inst[0]) < 0
1689 || restore_arg1(tcp, &state, tcp->inst[1]) < 0
1690 || arg_finish_change(tcp, &state))
Denys Vlasenkoc133bf02011-06-23 21:57:54 +02001691 if (errno != ESRCH)
1692 return -1;
Roland McGrathd81f1d92003-01-09 06:53:34 +00001693 tcp->flags &= ~TCB_BPTSET;
1694 return 0;
1695}
1696
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001697# else /* !defined LINUX */
Roland McGrathd81f1d92003-01-09 06:53:34 +00001698
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001699int
Denys Vlasenko12014262011-05-30 14:00:14 +02001700setbpt(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001701{
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001702# ifdef SUNOS4
1703# ifdef SPARC /* This code is slightly sparc specific */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001704
Wichert Akkermane6f876c1999-06-22 15:28:30 +00001705 struct regs regs;
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001706# define BPT 0x91d02001 /* ta 1 */
1707# define LOOP 0x10800000 /* ba 0 */
1708# define LOOPA 0x30800000 /* ba,a 0 */
1709# define NOP 0x01000000
1710# if LOOPA
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001711 static int loopdeloop[1] = {LOOPA};
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001712# else
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001713 static int loopdeloop[2] = {LOOP, NOP};
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001714# endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001715
1716 if (tcp->flags & TCB_BPTSET) {
1717 fprintf(stderr, "PANIC: TCB already set in pid %u\n", tcp->pid);
1718 return -1;
1719 }
Roland McGratheb9e2e82009-06-02 16:49:22 -07001720 if (ptrace(PTRACE_GETREGS, tcp->pid, (char *)&regs, 0) < 0) {
1721 perror("setbpt: ptrace(PTRACE_GETREGS, ...)");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001722 return -1;
1723 }
1724 tcp->baddr = regs.r_o7 + 8;
Roland McGratheb9e2e82009-06-02 16:49:22 -07001725 if (ptrace(PTRACE_READTEXT, tcp->pid, (char *)tcp->baddr,
1726 sizeof tcp->inst, (char *)tcp->inst) < 0) {
1727 perror("setbpt: ptrace(PTRACE_READTEXT, ...)");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001728 return -1;
1729 }
1730
1731 /*
1732 * XXX - BRUTAL MODE ON
1733 * We cannot set a real BPT in the child, since it will not be
1734 * traced at the moment it will reach the trap and would probably
1735 * die with a core dump.
1736 * Thus, we are force our way in by taking out two instructions
1737 * and insert an eternal loop in stead, in expectance of the SIGSTOP
1738 * generated by out PTRACE_ATTACH.
1739 * Of cause, if we evaporate ourselves in the middle of all this...
1740 */
Roland McGratheb9e2e82009-06-02 16:49:22 -07001741 if (ptrace(PTRACE_WRITETEXT, tcp->pid, (char *) tcp->baddr,
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001742 sizeof loopdeloop, (char *) loopdeloop) < 0) {
Roland McGratheb9e2e82009-06-02 16:49:22 -07001743 perror("setbpt: ptrace(PTRACE_WRITETEXT, ...)");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001744 return -1;
1745 }
1746 tcp->flags |= TCB_BPTSET;
1747
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001748# endif /* SPARC */
1749# endif /* SUNOS4 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001750
1751 return 0;
1752}
1753
1754int
Denys Vlasenko12014262011-05-30 14:00:14 +02001755clearbpt(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001756{
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001757# ifdef SUNOS4
1758# ifdef SPARC
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001759
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001760# if !LOOPA
Wichert Akkermane6f876c1999-06-22 15:28:30 +00001761 struct regs regs;
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001762# endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001763
1764 if (!(tcp->flags & TCB_BPTSET)) {
1765 fprintf(stderr, "PANIC: TCB not set in pid %u\n", tcp->pid);
1766 return -1;
1767 }
Roland McGratheb9e2e82009-06-02 16:49:22 -07001768 if (ptrace(PTRACE_WRITETEXT, tcp->pid, (char *) tcp->baddr,
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001769 sizeof tcp->inst, (char *) tcp->inst) < 0) {
Roland McGratheb9e2e82009-06-02 16:49:22 -07001770 perror("clearbtp: ptrace(PTRACE_WRITETEXT, ...)");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001771 return -1;
1772 }
1773 tcp->flags &= ~TCB_BPTSET;
1774
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001775# if !LOOPA
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001776 /*
1777 * Since we don't have a single instruction breakpoint, we may have
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001778 * to adjust the program counter after removing our `breakpoint'.
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001779 */
Roland McGratheb9e2e82009-06-02 16:49:22 -07001780 if (ptrace(PTRACE_GETREGS, tcp->pid, (char *)&regs, 0) < 0) {
1781 perror("clearbpt: ptrace(PTRACE_GETREGS, ...)");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001782 return -1;
1783 }
Roland McGratheb9e2e82009-06-02 16:49:22 -07001784 if ((regs.r_pc < tcp->baddr) ||
1785 (regs.r_pc > tcp->baddr + 4)) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001786 /* The breakpoint has not been reached yet */
1787 if (debug)
1788 fprintf(stderr,
1789 "NOTE: PC not at bpt (pc %#x baddr %#x)\n",
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001790 regs.r_pc, tcp->baddr);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001791 return 0;
1792 }
1793 if (regs.r_pc != tcp->baddr)
1794 if (debug)
1795 fprintf(stderr, "NOTE: PC adjusted (%#x -> %#x\n",
1796 regs.r_pc, tcp->baddr);
1797
1798 regs.r_pc = tcp->baddr;
Roland McGratheb9e2e82009-06-02 16:49:22 -07001799 if (ptrace(PTRACE_SETREGS, tcp->pid, (char *)&regs, 0) < 0) {
1800 perror("clearbpt: ptrace(PTRACE_SETREGS, ...)");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001801 return -1;
1802 }
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001803# endif /* LOOPA */
1804# endif /* SPARC */
1805# endif /* SUNOS4 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001806
1807 return 0;
1808}
1809
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001810# endif /* !defined LINUX */
Roland McGrathd81f1d92003-01-09 06:53:34 +00001811
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001812#endif /* !USE_PROCFS */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001813
Denys Vlasenko3bb7cd62009-02-09 18:55:59 +00001814
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001815#ifdef SUNOS4
1816
1817static int
Denys Vlasenko12014262011-05-30 14:00:14 +02001818getex(struct tcb *tcp, struct exec *hdr)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001819{
1820 int n;
1821
1822 for (n = 0; n < sizeof *hdr; n += 4) {
1823 long res;
Denys Vlasenko932fc7d2008-12-16 18:18:40 +00001824 if (upeek(tcp, uoff(u_exdata) + n, &res) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001825 return -1;
1826 memcpy(((char *) hdr) + n, &res, 4);
1827 }
1828 if (debug) {
1829 fprintf(stderr, "[struct exec: magic: %o version %u Mach %o\n",
1830 hdr->a_magic, hdr->a_toolversion, hdr->a_machtype);
1831 fprintf(stderr, "Text %lu Data %lu Bss %lu Syms %lu Entry %#lx]\n",
1832 hdr->a_text, hdr->a_data, hdr->a_bss, hdr->a_syms, hdr->a_entry);
1833 }
1834 return 0;
1835}
1836
1837int
Denys Vlasenko12014262011-05-30 14:00:14 +02001838fixvfork(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001839{
1840 int pid = tcp->pid;
1841 /*
1842 * Change `vfork' in a freshly exec'ed dynamically linked
1843 * executable's (internal) symbol table to plain old `fork'
1844 */
1845
1846 struct exec hdr;
1847 struct link_dynamic dyn;
1848 struct link_dynamic_2 ld;
1849 char *strtab, *cp;
1850
Denys Vlasenko932fc7d2008-12-16 18:18:40 +00001851 if (getex(tcp, &hdr) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001852 return -1;
1853 if (!hdr.a_dynamic)
1854 return -1;
1855
1856 if (umove(tcp, (int) N_DATADDR(hdr), &dyn) < 0) {
1857 fprintf(stderr, "Cannot read DYNAMIC\n");
1858 return -1;
1859 }
1860 if (umove(tcp, (int) dyn.ld_un.ld_2, &ld) < 0) {
1861 fprintf(stderr, "Cannot read link_dynamic_2\n");
1862 return -1;
1863 }
Denys Vlasenko5d645812011-08-20 12:48:18 +02001864 strtab = malloc((unsigned)ld.ld_symb_size);
Denys Vlasenko1d46ba52011-08-31 14:00:02 +02001865 if (!strtab)
1866 die_out_of_memory();
Roland McGratheb9e2e82009-06-02 16:49:22 -07001867 if (umoven(tcp, (int)ld.ld_symbols+(int)N_TXTADDR(hdr),
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001868 (int)ld.ld_symb_size, strtab) < 0)
1869 goto err;
1870
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001871 for (cp = strtab; cp < strtab + ld.ld_symb_size; ) {
1872 if (strcmp(cp, "_vfork") == 0) {
1873 if (debug)
1874 fprintf(stderr, "fixvfork: FOUND _vfork\n");
1875 strcpy(cp, "_fork");
1876 break;
1877 }
1878 cp += strlen(cp)+1;
1879 }
1880 if (cp < strtab + ld.ld_symb_size)
1881 /*
1882 * Write entire symbol table back to avoid
1883 * memory alignment bugs in ptrace
1884 */
Roland McGratheb9e2e82009-06-02 16:49:22 -07001885 if (tload(pid, (int)ld.ld_symbols+(int)N_TXTADDR(hdr),
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001886 (int)ld.ld_symb_size, strtab) < 0)
1887 goto err;
1888
1889 free(strtab);
1890 return 0;
1891
1892err:
1893 free(strtab);
1894 return -1;
1895}
1896
1897#endif /* SUNOS4 */