Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 1991, 1992 Paul Kranenburg <pk@cs.few.eur.nl> |
| 3 | * Copyright (c) 1993 Branko Lankester <branko@hacktic.nl> |
| 4 | * Copyright (c) 1993, 1994, 1995, 1996 Rick Sladkey <jrs@world.std.com> |
Wichert Akkerman | 4dc8a2a | 1999-12-23 14:20:14 +0000 | [diff] [blame] | 5 | * Copyright (c) 1996-1999 Wichert Akkerman <wichert@cistron.nl> |
| 6 | * Copyright (c) 1999 IBM Deutschland Entwicklung GmbH, IBM Corporation |
| 7 | * Linux for s390 port by D.J. Barrow |
| 8 | * <barrow_dj@mail.yahoo.com,djbarrow@de.ibm.com> |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 9 | * All rights reserved. |
| 10 | * |
| 11 | * Redistribution and use in source and binary forms, with or without |
| 12 | * modification, are permitted provided that the following conditions |
| 13 | * are met: |
| 14 | * 1. Redistributions of source code must retain the above copyright |
| 15 | * notice, this list of conditions and the following disclaimer. |
| 16 | * 2. Redistributions in binary form must reproduce the above copyright |
| 17 | * notice, this list of conditions and the following disclaimer in the |
| 18 | * documentation and/or other materials provided with the distribution. |
| 19 | * 3. The name of the author may not be used to endorse or promote products |
| 20 | * derived from this software without specific prior written permission. |
| 21 | * |
| 22 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 23 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 24 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 25 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 26 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 27 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 28 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 29 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 30 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 31 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 32 | * |
| 33 | * $Id$ |
| 34 | */ |
| 35 | |
| 36 | #include "defs.h" |
| 37 | |
| 38 | #include <signal.h> |
| 39 | #include <time.h> |
| 40 | #include <errno.h> |
| 41 | #include <sys/user.h> |
| 42 | #include <sys/syscall.h> |
| 43 | #include <sys/param.h> |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 44 | |
Wichert Akkerman | 15dea97 | 1999-10-06 13:06:34 +0000 | [diff] [blame] | 45 | #ifdef HAVE_SYS_REG_H |
Roland McGrath | eb9e2e8 | 2009-06-02 16:49:22 -0700 | [diff] [blame] | 46 | #include <sys/reg.h> |
| 47 | #ifndef PTRACE_PEEKUSR |
| 48 | # define PTRACE_PEEKUSR PTRACE_PEEKUSER |
| 49 | #endif |
Wichert Akkerman | faf7222 | 2000-02-19 23:59:03 +0000 | [diff] [blame] | 50 | #elif defined(HAVE_LINUX_PTRACE_H) |
Roland McGrath | eb9e2e8 | 2009-06-02 16:49:22 -0700 | [diff] [blame] | 51 | #undef PTRACE_SYSCALL |
Roland McGrath | ce9f074 | 2004-03-01 21:29:22 +0000 | [diff] [blame] | 52 | # ifdef HAVE_STRUCT_IA64_FPREG |
| 53 | # define ia64_fpreg XXX_ia64_fpreg |
| 54 | # endif |
| 55 | # ifdef HAVE_STRUCT_PT_ALL_USER_REGS |
| 56 | # define pt_all_user_regs XXX_pt_all_user_regs |
| 57 | # endif |
Roland McGrath | eb9e2e8 | 2009-06-02 16:49:22 -0700 | [diff] [blame] | 58 | #include <linux/ptrace.h> |
Roland McGrath | ce9f074 | 2004-03-01 21:29:22 +0000 | [diff] [blame] | 59 | # undef ia64_fpreg |
| 60 | # undef pt_all_user_regs |
Wichert Akkerman | 15dea97 | 1999-10-06 13:06:34 +0000 | [diff] [blame] | 61 | #endif |
| 62 | |
Roland McGrath | 6d1a65c | 2004-07-12 07:44:08 +0000 | [diff] [blame] | 63 | #if defined (LINUX) && defined (SPARC64) |
Roland McGrath | 6d1a65c | 2004-07-12 07:44:08 +0000 | [diff] [blame] | 64 | # undef PTRACE_GETREGS |
| 65 | # define PTRACE_GETREGS PTRACE_GETREGS64 |
| 66 | # undef PTRACE_SETREGS |
| 67 | # define PTRACE_SETREGS PTRACE_SETREGS64 |
| 68 | #endif /* LINUX && SPARC64 */ |
| 69 | |
Wichert Akkerman | 8b1b40c | 2000-02-03 21:58:30 +0000 | [diff] [blame] | 70 | #if defined(LINUX) && defined(IA64) |
| 71 | # include <asm/ptrace_offsets.h> |
| 72 | # include <asm/rse.h> |
| 73 | #endif |
| 74 | |
Pavel Machek | d8ae7e3 | 2000-02-01 17:17:25 +0000 | [diff] [blame] | 75 | #define NR_SYSCALL_BASE 0 |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 76 | #ifdef LINUX |
| 77 | #ifndef ERESTARTSYS |
| 78 | #define ERESTARTSYS 512 |
| 79 | #endif |
| 80 | #ifndef ERESTARTNOINTR |
| 81 | #define ERESTARTNOINTR 513 |
| 82 | #endif |
| 83 | #ifndef ERESTARTNOHAND |
| 84 | #define ERESTARTNOHAND 514 /* restart if no handler.. */ |
| 85 | #endif |
| 86 | #ifndef ENOIOCTLCMD |
| 87 | #define ENOIOCTLCMD 515 /* No ioctl command */ |
| 88 | #endif |
Roland McGrath | 9c555e7 | 2003-07-09 09:47:59 +0000 | [diff] [blame] | 89 | #ifndef ERESTART_RESTARTBLOCK |
| 90 | #define ERESTART_RESTARTBLOCK 516 /* restart by calling sys_restart_syscall */ |
| 91 | #endif |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 92 | #ifndef NSIG |
Denys Vlasenko | 041b3ee | 2011-08-18 12:48:56 +0200 | [diff] [blame] | 93 | #warning: NSIG is not defined, using 32 |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 94 | #define NSIG 32 |
| 95 | #endif |
| 96 | #ifdef ARM |
Denys Vlasenko | 041b3ee | 2011-08-18 12:48:56 +0200 | [diff] [blame] | 97 | /* Ugh. Is this really correct? ARM has no RT signals?! */ |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 98 | #undef NSIG |
| 99 | #define NSIG 32 |
Pavel Machek | d8ae7e3 | 2000-02-01 17:17:25 +0000 | [diff] [blame] | 100 | #undef NR_SYSCALL_BASE |
| 101 | #define NR_SYSCALL_BASE __NR_SYSCALL_BASE |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 102 | #endif |
| 103 | #endif /* LINUX */ |
| 104 | |
| 105 | #include "syscall.h" |
| 106 | |
| 107 | /* Define these shorthand notations to simplify the syscallent files. */ |
Roland McGrath | 2fe7b13 | 2005-07-05 03:25:35 +0000 | [diff] [blame] | 108 | #define TD TRACE_DESC |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 109 | #define TF TRACE_FILE |
| 110 | #define TI TRACE_IPC |
| 111 | #define TN TRACE_NETWORK |
| 112 | #define TP TRACE_PROCESS |
| 113 | #define TS TRACE_SIGNAL |
Dmitry V. Levin | 50a218d | 2011-01-18 17:36:20 +0000 | [diff] [blame] | 114 | #define NF SYSCALL_NEVER_FAILS |
Denys Vlasenko | ac1ce77 | 2011-08-23 13:24:17 +0200 | [diff] [blame] | 115 | #define MA MAX_ARGS |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 116 | |
Roland McGrath | ee36ce1 | 2004-09-04 03:53:10 +0000 | [diff] [blame] | 117 | static const struct sysent sysent0[] = { |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 118 | #include "syscallent.h" |
| 119 | }; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 120 | |
| 121 | #if SUPPORTED_PERSONALITIES >= 2 |
Roland McGrath | ee36ce1 | 2004-09-04 03:53:10 +0000 | [diff] [blame] | 122 | static const struct sysent sysent1[] = { |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 123 | #include "syscallent1.h" |
| 124 | }; |
Denys Vlasenko | 39fca62 | 2011-08-20 02:12:33 +0200 | [diff] [blame] | 125 | #endif |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 126 | |
| 127 | #if SUPPORTED_PERSONALITIES >= 3 |
Roland McGrath | ee36ce1 | 2004-09-04 03:53:10 +0000 | [diff] [blame] | 128 | static const struct sysent sysent2[] = { |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 129 | #include "syscallent2.h" |
| 130 | }; |
Denys Vlasenko | 39fca62 | 2011-08-20 02:12:33 +0200 | [diff] [blame] | 131 | #endif |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 132 | |
| 133 | /* Now undef them since short defines cause wicked namespace pollution. */ |
Roland McGrath | 2fe7b13 | 2005-07-05 03:25:35 +0000 | [diff] [blame] | 134 | #undef TD |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 135 | #undef TF |
| 136 | #undef TI |
| 137 | #undef TN |
| 138 | #undef TP |
| 139 | #undef TS |
Dmitry V. Levin | 50a218d | 2011-01-18 17:36:20 +0000 | [diff] [blame] | 140 | #undef NF |
Denys Vlasenko | ac1ce77 | 2011-08-23 13:24:17 +0200 | [diff] [blame] | 141 | #undef MA |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 142 | |
Denys Vlasenko | 39fca62 | 2011-08-20 02:12:33 +0200 | [diff] [blame] | 143 | |
| 144 | /* |
| 145 | * `ioctlent.h' may be generated from `ioctlent.raw' by the auxiliary |
| 146 | * program `ioctlsort', such that the list is sorted by the `code' field. |
| 147 | * This has the side-effect of resolving the _IO.. macros into |
| 148 | * plain integers, eliminating the need to include here everything |
| 149 | * in "/usr/include". |
| 150 | */ |
| 151 | |
| 152 | |
Roland McGrath | ee36ce1 | 2004-09-04 03:53:10 +0000 | [diff] [blame] | 153 | static const char *const errnoent0[] = { |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 154 | #include "errnoent.h" |
| 155 | }; |
Denys Vlasenko | 39fca62 | 2011-08-20 02:12:33 +0200 | [diff] [blame] | 156 | static const char *const signalent0[] = { |
| 157 | #include "signalent.h" |
| 158 | }; |
| 159 | static const struct ioctlent ioctlent0[] = { |
| 160 | #include "ioctlent.h" |
| 161 | }; |
| 162 | enum { nsyscalls0 = ARRAY_SIZE(sysent0) }; |
| 163 | enum { nerrnos0 = ARRAY_SIZE(errnoent0) }; |
| 164 | enum { nsignals0 = ARRAY_SIZE(signalent0) }; |
| 165 | enum { nioctlents0 = ARRAY_SIZE(ioctlent0) }; |
| 166 | int qual_flags0[MAX_QUALS]; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 167 | |
| 168 | #if SUPPORTED_PERSONALITIES >= 2 |
Roland McGrath | ee36ce1 | 2004-09-04 03:53:10 +0000 | [diff] [blame] | 169 | static const char *const errnoent1[] = { |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 170 | #include "errnoent1.h" |
| 171 | }; |
Denys Vlasenko | 39fca62 | 2011-08-20 02:12:33 +0200 | [diff] [blame] | 172 | static const char *const signalent1[] = { |
| 173 | #include "signalent1.h" |
| 174 | }; |
| 175 | static const struct ioctlent ioctlent1[] = { |
| 176 | #include "ioctlent1.h" |
| 177 | }; |
| 178 | enum { nsyscalls1 = ARRAY_SIZE(sysent1) }; |
| 179 | enum { nerrnos1 = ARRAY_SIZE(errnoent1) }; |
| 180 | enum { nsignals1 = ARRAY_SIZE(signalent1) }; |
| 181 | enum { nioctlents1 = ARRAY_SIZE(ioctlent1) }; |
| 182 | int qual_flags1[MAX_QUALS]; |
| 183 | #endif |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 184 | |
| 185 | #if SUPPORTED_PERSONALITIES >= 3 |
Roland McGrath | ee36ce1 | 2004-09-04 03:53:10 +0000 | [diff] [blame] | 186 | static const char *const errnoent2[] = { |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 187 | #include "errnoent2.h" |
| 188 | }; |
Denys Vlasenko | 39fca62 | 2011-08-20 02:12:33 +0200 | [diff] [blame] | 189 | static const char *const signalent2[] = { |
| 190 | #include "signalent2.h" |
| 191 | }; |
| 192 | static const struct ioctlent ioctlent2[] = { |
| 193 | #include "ioctlent2.h" |
| 194 | }; |
| 195 | enum { nsyscalls2 = ARRAY_SIZE(sysent2) }; |
| 196 | enum { nerrnos2 = ARRAY_SIZE(errnoent2) }; |
| 197 | enum { nsignals2 = ARRAY_SIZE(signalent2) }; |
| 198 | enum { nioctlents2 = ARRAY_SIZE(ioctlent2) }; |
| 199 | int qual_flags2[MAX_QUALS]; |
| 200 | #endif |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 201 | |
Denys Vlasenko | 39fca62 | 2011-08-20 02:12:33 +0200 | [diff] [blame] | 202 | |
| 203 | const struct sysent *sysent; |
Roland McGrath | ee36ce1 | 2004-09-04 03:53:10 +0000 | [diff] [blame] | 204 | const char *const *errnoent; |
Denys Vlasenko | 39fca62 | 2011-08-20 02:12:33 +0200 | [diff] [blame] | 205 | const char *const *signalent; |
| 206 | const struct ioctlent *ioctlent; |
Denys Vlasenko | afc6403 | 2011-08-23 13:29:01 +0200 | [diff] [blame] | 207 | unsigned nsyscalls; |
| 208 | unsigned nerrnos; |
| 209 | unsigned nsignals; |
| 210 | unsigned nioctlents; |
Denys Vlasenko | 39fca62 | 2011-08-20 02:12:33 +0200 | [diff] [blame] | 211 | int *qual_flags; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 212 | |
| 213 | int current_personality; |
| 214 | |
Roland McGrath | 4b2dcca | 2006-01-12 10:18:53 +0000 | [diff] [blame] | 215 | #ifndef PERSONALITY0_WORDSIZE |
| 216 | # define PERSONALITY0_WORDSIZE sizeof(long) |
| 217 | #endif |
| 218 | const int personality_wordsize[SUPPORTED_PERSONALITIES] = { |
| 219 | PERSONALITY0_WORDSIZE, |
| 220 | #if SUPPORTED_PERSONALITIES > 1 |
| 221 | PERSONALITY1_WORDSIZE, |
| 222 | #endif |
| 223 | #if SUPPORTED_PERSONALITIES > 2 |
| 224 | PERSONALITY2_WORDSIZE, |
| 225 | #endif |
Denys Vlasenko | 5c774b2 | 2011-08-20 01:50:09 +0200 | [diff] [blame] | 226 | }; |
Roland McGrath | 4b2dcca | 2006-01-12 10:18:53 +0000 | [diff] [blame] | 227 | |
Denys Vlasenko | 5c774b2 | 2011-08-20 01:50:09 +0200 | [diff] [blame] | 228 | void |
Dmitry V. Levin | 3abe8b2 | 2006-12-20 22:37:21 +0000 | [diff] [blame] | 229 | set_personality(int personality) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 230 | { |
| 231 | switch (personality) { |
| 232 | case 0: |
| 233 | errnoent = errnoent0; |
| 234 | nerrnos = nerrnos0; |
| 235 | sysent = sysent0; |
| 236 | nsyscalls = nsyscalls0; |
| 237 | ioctlent = ioctlent0; |
| 238 | nioctlents = nioctlents0; |
| 239 | signalent = signalent0; |
| 240 | nsignals = nsignals0; |
Roland McGrath | 138c6a3 | 2006-01-12 09:50:49 +0000 | [diff] [blame] | 241 | qual_flags = qual_flags0; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 242 | break; |
| 243 | |
| 244 | #if SUPPORTED_PERSONALITIES >= 2 |
| 245 | case 1: |
| 246 | errnoent = errnoent1; |
| 247 | nerrnos = nerrnos1; |
| 248 | sysent = sysent1; |
| 249 | nsyscalls = nsyscalls1; |
| 250 | ioctlent = ioctlent1; |
| 251 | nioctlents = nioctlents1; |
| 252 | signalent = signalent1; |
| 253 | nsignals = nsignals1; |
Roland McGrath | 138c6a3 | 2006-01-12 09:50:49 +0000 | [diff] [blame] | 254 | qual_flags = qual_flags1; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 255 | break; |
Denys Vlasenko | 5c774b2 | 2011-08-20 01:50:09 +0200 | [diff] [blame] | 256 | #endif |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 257 | |
| 258 | #if SUPPORTED_PERSONALITIES >= 3 |
| 259 | case 2: |
| 260 | errnoent = errnoent2; |
| 261 | nerrnos = nerrnos2; |
| 262 | sysent = sysent2; |
| 263 | nsyscalls = nsyscalls2; |
| 264 | ioctlent = ioctlent2; |
| 265 | nioctlents = nioctlents2; |
| 266 | signalent = signalent2; |
| 267 | nsignals = nsignals2; |
Roland McGrath | 138c6a3 | 2006-01-12 09:50:49 +0000 | [diff] [blame] | 268 | qual_flags = qual_flags2; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 269 | break; |
Denys Vlasenko | 5c774b2 | 2011-08-20 01:50:09 +0200 | [diff] [blame] | 270 | #endif |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 271 | } |
| 272 | |
| 273 | current_personality = personality; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 274 | } |
| 275 | |
Roland McGrath | e10e62a | 2004-09-04 04:20:43 +0000 | [diff] [blame] | 276 | |
Roland McGrath | 9797ceb | 2002-12-30 10:23:00 +0000 | [diff] [blame] | 277 | static int qual_syscall(), qual_signal(), qual_fault(), qual_desc(); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 278 | |
Roland McGrath | e10e62a | 2004-09-04 04:20:43 +0000 | [diff] [blame] | 279 | static const struct qual_options { |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 280 | int bitflag; |
Dmitry V. Levin | 30145dd | 2010-09-06 22:08:24 +0000 | [diff] [blame] | 281 | const char *option_name; |
Dmitry V. Levin | 35d0572 | 2010-09-15 16:18:20 +0000 | [diff] [blame] | 282 | int (*qualify)(const char *, int, int); |
Dmitry V. Levin | 30145dd | 2010-09-06 22:08:24 +0000 | [diff] [blame] | 283 | const char *argument_name; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 284 | } qual_options[] = { |
Roland McGrath | 9797ceb | 2002-12-30 10:23:00 +0000 | [diff] [blame] | 285 | { QUAL_TRACE, "trace", qual_syscall, "system call" }, |
| 286 | { QUAL_TRACE, "t", qual_syscall, "system call" }, |
| 287 | { QUAL_ABBREV, "abbrev", qual_syscall, "system call" }, |
| 288 | { QUAL_ABBREV, "a", qual_syscall, "system call" }, |
| 289 | { QUAL_VERBOSE, "verbose", qual_syscall, "system call" }, |
| 290 | { QUAL_VERBOSE, "v", qual_syscall, "system call" }, |
| 291 | { QUAL_RAW, "raw", qual_syscall, "system call" }, |
| 292 | { QUAL_RAW, "x", qual_syscall, "system call" }, |
| 293 | { QUAL_SIGNAL, "signal", qual_signal, "signal" }, |
| 294 | { QUAL_SIGNAL, "signals", qual_signal, "signal" }, |
| 295 | { QUAL_SIGNAL, "s", qual_signal, "signal" }, |
| 296 | { QUAL_FAULT, "fault", qual_fault, "fault" }, |
| 297 | { QUAL_FAULT, "faults", qual_fault, "fault" }, |
| 298 | { QUAL_FAULT, "m", qual_fault, "fault" }, |
| 299 | { QUAL_READ, "read", qual_desc, "descriptor" }, |
| 300 | { QUAL_READ, "reads", qual_desc, "descriptor" }, |
| 301 | { QUAL_READ, "r", qual_desc, "descriptor" }, |
| 302 | { QUAL_WRITE, "write", qual_desc, "descriptor" }, |
| 303 | { QUAL_WRITE, "writes", qual_desc, "descriptor" }, |
| 304 | { QUAL_WRITE, "w", qual_desc, "descriptor" }, |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 305 | { 0, NULL, NULL, NULL }, |
| 306 | }; |
| 307 | |
Roland McGrath | 9797ceb | 2002-12-30 10:23:00 +0000 | [diff] [blame] | 308 | static void |
Dmitry V. Levin | 35d0572 | 2010-09-15 16:18:20 +0000 | [diff] [blame] | 309 | qualify_one(int n, int bitflag, int not, int pers) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 310 | { |
Roland McGrath | 138c6a3 | 2006-01-12 09:50:49 +0000 | [diff] [blame] | 311 | if (pers == 0 || pers < 0) { |
| 312 | if (not) |
Dmitry V. Levin | 35d0572 | 2010-09-15 16:18:20 +0000 | [diff] [blame] | 313 | qual_flags0[n] &= ~bitflag; |
Roland McGrath | 138c6a3 | 2006-01-12 09:50:49 +0000 | [diff] [blame] | 314 | else |
Dmitry V. Levin | 35d0572 | 2010-09-15 16:18:20 +0000 | [diff] [blame] | 315 | qual_flags0[n] |= bitflag; |
Roland McGrath | 138c6a3 | 2006-01-12 09:50:49 +0000 | [diff] [blame] | 316 | } |
| 317 | |
| 318 | #if SUPPORTED_PERSONALITIES >= 2 |
| 319 | if (pers == 1 || pers < 0) { |
| 320 | if (not) |
Dmitry V. Levin | 35d0572 | 2010-09-15 16:18:20 +0000 | [diff] [blame] | 321 | qual_flags1[n] &= ~bitflag; |
Roland McGrath | 138c6a3 | 2006-01-12 09:50:49 +0000 | [diff] [blame] | 322 | else |
Dmitry V. Levin | 35d0572 | 2010-09-15 16:18:20 +0000 | [diff] [blame] | 323 | qual_flags1[n] |= bitflag; |
Roland McGrath | 138c6a3 | 2006-01-12 09:50:49 +0000 | [diff] [blame] | 324 | } |
| 325 | #endif /* SUPPORTED_PERSONALITIES >= 2 */ |
| 326 | |
| 327 | #if SUPPORTED_PERSONALITIES >= 3 |
| 328 | if (pers == 2 || pers < 0) { |
| 329 | if (not) |
Dmitry V. Levin | 35d0572 | 2010-09-15 16:18:20 +0000 | [diff] [blame] | 330 | qual_flags2[n] &= ~bitflag; |
Roland McGrath | 138c6a3 | 2006-01-12 09:50:49 +0000 | [diff] [blame] | 331 | else |
Dmitry V. Levin | 35d0572 | 2010-09-15 16:18:20 +0000 | [diff] [blame] | 332 | qual_flags2[n] |= bitflag; |
Roland McGrath | 138c6a3 | 2006-01-12 09:50:49 +0000 | [diff] [blame] | 333 | } |
| 334 | #endif /* SUPPORTED_PERSONALITIES >= 3 */ |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 335 | } |
| 336 | |
| 337 | static int |
Dmitry V. Levin | 35d0572 | 2010-09-15 16:18:20 +0000 | [diff] [blame] | 338 | qual_syscall(const char *s, int bitflag, int not) |
Roland McGrath | 9797ceb | 2002-12-30 10:23:00 +0000 | [diff] [blame] | 339 | { |
| 340 | int i; |
Roland McGrath | fe6b352 | 2005-02-02 04:40:11 +0000 | [diff] [blame] | 341 | int rc = -1; |
Roland McGrath | 9797ceb | 2002-12-30 10:23:00 +0000 | [diff] [blame] | 342 | |
Denys Vlasenko | 5ae2b7c | 2009-02-27 20:32:52 +0000 | [diff] [blame] | 343 | if (isdigit((unsigned char)*s)) { |
| 344 | int i = atoi(s); |
Dmitry V. Levin | c18c703 | 2007-08-22 21:43:30 +0000 | [diff] [blame] | 345 | if (i < 0 || i >= MAX_QUALS) |
Denys Vlasenko | 5ae2b7c | 2009-02-27 20:32:52 +0000 | [diff] [blame] | 346 | return -1; |
Dmitry V. Levin | 35d0572 | 2010-09-15 16:18:20 +0000 | [diff] [blame] | 347 | qualify_one(i, bitflag, not, -1); |
Denys Vlasenko | 5ae2b7c | 2009-02-27 20:32:52 +0000 | [diff] [blame] | 348 | return 0; |
Roland McGrath | 48a035f | 2006-01-12 09:45:56 +0000 | [diff] [blame] | 349 | } |
Dmitry V. Levin | c18c703 | 2007-08-22 21:43:30 +0000 | [diff] [blame] | 350 | for (i = 0; i < nsyscalls0; i++) |
Roland McGrath | 138c6a3 | 2006-01-12 09:50:49 +0000 | [diff] [blame] | 351 | if (strcmp(s, sysent0[i].sys_name) == 0) { |
Dmitry V. Levin | 35d0572 | 2010-09-15 16:18:20 +0000 | [diff] [blame] | 352 | qualify_one(i, bitflag, not, 0); |
Roland McGrath | fe6b352 | 2005-02-02 04:40:11 +0000 | [diff] [blame] | 353 | rc = 0; |
Roland McGrath | 9797ceb | 2002-12-30 10:23:00 +0000 | [diff] [blame] | 354 | } |
Roland McGrath | 138c6a3 | 2006-01-12 09:50:49 +0000 | [diff] [blame] | 355 | |
| 356 | #if SUPPORTED_PERSONALITIES >= 2 |
Dmitry V. Levin | c18c703 | 2007-08-22 21:43:30 +0000 | [diff] [blame] | 357 | for (i = 0; i < nsyscalls1; i++) |
Roland McGrath | 138c6a3 | 2006-01-12 09:50:49 +0000 | [diff] [blame] | 358 | if (strcmp(s, sysent1[i].sys_name) == 0) { |
Dmitry V. Levin | 35d0572 | 2010-09-15 16:18:20 +0000 | [diff] [blame] | 359 | qualify_one(i, bitflag, not, 1); |
Roland McGrath | 138c6a3 | 2006-01-12 09:50:49 +0000 | [diff] [blame] | 360 | rc = 0; |
| 361 | } |
| 362 | #endif /* SUPPORTED_PERSONALITIES >= 2 */ |
| 363 | |
| 364 | #if SUPPORTED_PERSONALITIES >= 3 |
Dmitry V. Levin | c18c703 | 2007-08-22 21:43:30 +0000 | [diff] [blame] | 365 | for (i = 0; i < nsyscalls2; i++) |
Roland McGrath | 138c6a3 | 2006-01-12 09:50:49 +0000 | [diff] [blame] | 366 | if (strcmp(s, sysent2[i].sys_name) == 0) { |
Dmitry V. Levin | 35d0572 | 2010-09-15 16:18:20 +0000 | [diff] [blame] | 367 | qualify_one(i, bitflag, not, 2); |
Roland McGrath | 138c6a3 | 2006-01-12 09:50:49 +0000 | [diff] [blame] | 368 | rc = 0; |
| 369 | } |
| 370 | #endif /* SUPPORTED_PERSONALITIES >= 3 */ |
Dmitry V. Levin | c18c703 | 2007-08-22 21:43:30 +0000 | [diff] [blame] | 371 | |
Roland McGrath | fe6b352 | 2005-02-02 04:40:11 +0000 | [diff] [blame] | 372 | return rc; |
Roland McGrath | 9797ceb | 2002-12-30 10:23:00 +0000 | [diff] [blame] | 373 | } |
| 374 | |
| 375 | static int |
Dmitry V. Levin | 35d0572 | 2010-09-15 16:18:20 +0000 | [diff] [blame] | 376 | qual_signal(const char *s, int bitflag, int not) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 377 | { |
| 378 | int i; |
| 379 | char buf[32]; |
| 380 | |
Denys Vlasenko | 5ae2b7c | 2009-02-27 20:32:52 +0000 | [diff] [blame] | 381 | if (isdigit((unsigned char)*s)) { |
| 382 | int signo = atoi(s); |
| 383 | if (signo < 0 || signo >= MAX_QUALS) |
| 384 | return -1; |
Dmitry V. Levin | 35d0572 | 2010-09-15 16:18:20 +0000 | [diff] [blame] | 385 | qualify_one(signo, bitflag, not, -1); |
Denys Vlasenko | 5ae2b7c | 2009-02-27 20:32:52 +0000 | [diff] [blame] | 386 | return 0; |
Roland McGrath | 9797ceb | 2002-12-30 10:23:00 +0000 | [diff] [blame] | 387 | } |
Roland McGrath | d62b671 | 2004-03-02 06:52:01 +0000 | [diff] [blame] | 388 | if (strlen(s) >= sizeof buf) |
Roland McGrath | fe6b352 | 2005-02-02 04:40:11 +0000 | [diff] [blame] | 389 | return -1; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 390 | strcpy(buf, s); |
| 391 | s = buf; |
Dmitry V. Levin | 30145dd | 2010-09-06 22:08:24 +0000 | [diff] [blame] | 392 | if (strncasecmp(s, "SIG", 3) == 0) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 393 | s += 3; |
Roland McGrath | 9797ceb | 2002-12-30 10:23:00 +0000 | [diff] [blame] | 394 | for (i = 0; i <= NSIG; i++) |
Dmitry V. Levin | 30145dd | 2010-09-06 22:08:24 +0000 | [diff] [blame] | 395 | if (strcasecmp(s, signame(i) + 3) == 0) { |
Dmitry V. Levin | 35d0572 | 2010-09-15 16:18:20 +0000 | [diff] [blame] | 396 | qualify_one(i, bitflag, not, -1); |
Roland McGrath | 76421df | 2005-02-02 03:51:18 +0000 | [diff] [blame] | 397 | return 0; |
Roland McGrath | 9797ceb | 2002-12-30 10:23:00 +0000 | [diff] [blame] | 398 | } |
Roland McGrath | 76421df | 2005-02-02 03:51:18 +0000 | [diff] [blame] | 399 | return -1; |
Roland McGrath | 9797ceb | 2002-12-30 10:23:00 +0000 | [diff] [blame] | 400 | } |
| 401 | |
| 402 | static int |
Dmitry V. Levin | 35d0572 | 2010-09-15 16:18:20 +0000 | [diff] [blame] | 403 | qual_fault(const char *s, int bitflag, int not) |
Roland McGrath | 9797ceb | 2002-12-30 10:23:00 +0000 | [diff] [blame] | 404 | { |
| 405 | return -1; |
| 406 | } |
| 407 | |
| 408 | static int |
Dmitry V. Levin | 35d0572 | 2010-09-15 16:18:20 +0000 | [diff] [blame] | 409 | qual_desc(const char *s, int bitflag, int not) |
Roland McGrath | 9797ceb | 2002-12-30 10:23:00 +0000 | [diff] [blame] | 410 | { |
Roland McGrath | 48a035f | 2006-01-12 09:45:56 +0000 | [diff] [blame] | 411 | if (isdigit((unsigned char)*s)) { |
Roland McGrath | fe6b352 | 2005-02-02 04:40:11 +0000 | [diff] [blame] | 412 | int desc = atoi(s); |
| 413 | if (desc < 0 || desc >= MAX_QUALS) |
| 414 | return -1; |
Dmitry V. Levin | 35d0572 | 2010-09-15 16:18:20 +0000 | [diff] [blame] | 415 | qualify_one(desc, bitflag, not, -1); |
Roland McGrath | 2b61902 | 2003-04-10 18:58:20 +0000 | [diff] [blame] | 416 | return 0; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 417 | } |
| 418 | return -1; |
| 419 | } |
| 420 | |
| 421 | static int |
Dmitry V. Levin | 30145dd | 2010-09-06 22:08:24 +0000 | [diff] [blame] | 422 | lookup_class(const char *s) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 423 | { |
| 424 | if (strcmp(s, "file") == 0) |
| 425 | return TRACE_FILE; |
| 426 | if (strcmp(s, "ipc") == 0) |
| 427 | return TRACE_IPC; |
| 428 | if (strcmp(s, "network") == 0) |
| 429 | return TRACE_NETWORK; |
| 430 | if (strcmp(s, "process") == 0) |
| 431 | return TRACE_PROCESS; |
| 432 | if (strcmp(s, "signal") == 0) |
| 433 | return TRACE_SIGNAL; |
Roland McGrath | 2fe7b13 | 2005-07-05 03:25:35 +0000 | [diff] [blame] | 434 | if (strcmp(s, "desc") == 0) |
| 435 | return TRACE_DESC; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 436 | return -1; |
| 437 | } |
| 438 | |
| 439 | void |
Dmitry V. Levin | 30145dd | 2010-09-06 22:08:24 +0000 | [diff] [blame] | 440 | qualify(const char *s) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 441 | { |
Roland McGrath | e10e62a | 2004-09-04 04:20:43 +0000 | [diff] [blame] | 442 | const struct qual_options *opt; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 443 | int not; |
Dmitry V. Levin | 30145dd | 2010-09-06 22:08:24 +0000 | [diff] [blame] | 444 | char *copy; |
| 445 | const char *p; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 446 | int i, n; |
| 447 | |
| 448 | opt = &qual_options[0]; |
| 449 | for (i = 0; (p = qual_options[i].option_name); i++) { |
| 450 | n = strlen(p); |
| 451 | if (strncmp(s, p, n) == 0 && s[n] == '=') { |
| 452 | opt = &qual_options[i]; |
| 453 | s += n + 1; |
| 454 | break; |
| 455 | } |
| 456 | } |
| 457 | not = 0; |
| 458 | if (*s == '!') { |
| 459 | not = 1; |
| 460 | s++; |
| 461 | } |
| 462 | if (strcmp(s, "none") == 0) { |
| 463 | not = 1 - not; |
| 464 | s = "all"; |
| 465 | } |
| 466 | if (strcmp(s, "all") == 0) { |
| 467 | for (i = 0; i < MAX_QUALS; i++) { |
Dmitry V. Levin | 35d0572 | 2010-09-15 16:18:20 +0000 | [diff] [blame] | 468 | qualify_one(i, opt->bitflag, not, -1); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 469 | } |
| 470 | return; |
| 471 | } |
| 472 | for (i = 0; i < MAX_QUALS; i++) { |
Dmitry V. Levin | 35d0572 | 2010-09-15 16:18:20 +0000 | [diff] [blame] | 473 | qualify_one(i, opt->bitflag, !not, -1); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 474 | } |
Denys Vlasenko | 5d64581 | 2011-08-20 12:48:18 +0200 | [diff] [blame] | 475 | copy = strdup(s); |
| 476 | if (!copy) { |
Dmitry V. Levin | 30145dd | 2010-09-06 22:08:24 +0000 | [diff] [blame] | 477 | fprintf(stderr, "out of memory\n"); |
| 478 | exit(1); |
| 479 | } |
| 480 | for (p = strtok(copy, ","); p; p = strtok(NULL, ",")) { |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 481 | if (opt->bitflag == QUAL_TRACE && (n = lookup_class(p)) > 0) { |
Dmitry V. Levin | c18c703 | 2007-08-22 21:43:30 +0000 | [diff] [blame] | 482 | for (i = 0; i < nsyscalls0; i++) |
Roland McGrath | 138c6a3 | 2006-01-12 09:50:49 +0000 | [diff] [blame] | 483 | if (sysent0[i].sys_flags & n) |
Dmitry V. Levin | 35d0572 | 2010-09-15 16:18:20 +0000 | [diff] [blame] | 484 | qualify_one(i, opt->bitflag, not, 0); |
Roland McGrath | 138c6a3 | 2006-01-12 09:50:49 +0000 | [diff] [blame] | 485 | |
| 486 | #if SUPPORTED_PERSONALITIES >= 2 |
Dmitry V. Levin | c18c703 | 2007-08-22 21:43:30 +0000 | [diff] [blame] | 487 | for (i = 0; i < nsyscalls1; i++) |
Roland McGrath | 138c6a3 | 2006-01-12 09:50:49 +0000 | [diff] [blame] | 488 | if (sysent1[i].sys_flags & n) |
Dmitry V. Levin | 35d0572 | 2010-09-15 16:18:20 +0000 | [diff] [blame] | 489 | qualify_one(i, opt->bitflag, not, 1); |
Roland McGrath | 138c6a3 | 2006-01-12 09:50:49 +0000 | [diff] [blame] | 490 | #endif /* SUPPORTED_PERSONALITIES >= 2 */ |
| 491 | |
| 492 | #if SUPPORTED_PERSONALITIES >= 3 |
Dmitry V. Levin | c18c703 | 2007-08-22 21:43:30 +0000 | [diff] [blame] | 493 | for (i = 0; i < nsyscalls2; i++) |
Roland McGrath | 138c6a3 | 2006-01-12 09:50:49 +0000 | [diff] [blame] | 494 | if (sysent2[i].sys_flags & n) |
Dmitry V. Levin | 35d0572 | 2010-09-15 16:18:20 +0000 | [diff] [blame] | 495 | qualify_one(i, opt->bitflag, not, 2); |
Roland McGrath | 138c6a3 | 2006-01-12 09:50:49 +0000 | [diff] [blame] | 496 | #endif /* SUPPORTED_PERSONALITIES >= 3 */ |
Dmitry V. Levin | c18c703 | 2007-08-22 21:43:30 +0000 | [diff] [blame] | 497 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 498 | continue; |
| 499 | } |
Dmitry V. Levin | 35d0572 | 2010-09-15 16:18:20 +0000 | [diff] [blame] | 500 | if (opt->qualify(p, opt->bitflag, not)) { |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 501 | fprintf(stderr, "strace: invalid %s `%s'\n", |
| 502 | opt->argument_name, p); |
| 503 | exit(1); |
| 504 | } |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 505 | } |
Dmitry V. Levin | 30145dd | 2010-09-06 22:08:24 +0000 | [diff] [blame] | 506 | free(copy); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 507 | return; |
| 508 | } |
| 509 | |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 510 | #ifndef FREEBSD |
Wichert Akkerman | 8829a55 | 1999-06-11 13:18:40 +0000 | [diff] [blame] | 511 | enum subcall_style { shift_style, deref_style, mask_style, door_style }; |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 512 | #else /* FREEBSD */ |
| 513 | enum subcall_style { shift_style, deref_style, mask_style, door_style, table_style }; |
| 514 | |
| 515 | struct subcall { |
| 516 | int call; |
| 517 | int nsubcalls; |
| 518 | int subcalls[5]; |
| 519 | }; |
| 520 | |
Roland McGrath | a4d4853 | 2005-06-08 20:45:28 +0000 | [diff] [blame] | 521 | static const struct subcall subcalls_table[] = { |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 522 | { SYS_shmsys, 5, { SYS_shmat, SYS_shmctl, SYS_shmdt, SYS_shmget, SYS_shmctl } }, |
John Hughes | 61eeb55 | 2001-03-06 15:51:53 +0000 | [diff] [blame] | 523 | #ifdef SYS_semconfig |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 524 | { SYS_semsys, 4, { SYS___semctl, SYS_semget, SYS_semop, SYS_semconfig } }, |
John Hughes | 61eeb55 | 2001-03-06 15:51:53 +0000 | [diff] [blame] | 525 | #else |
| 526 | { SYS_semsys, 3, { SYS___semctl, SYS_semget, SYS_semop } }, |
| 527 | #endif |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 528 | { SYS_msgsys, 4, { SYS_msgctl, SYS_msgget, SYS_msgsnd, SYS_msgrcv } }, |
| 529 | }; |
| 530 | #endif /* FREEBSD */ |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 531 | |
Denys Vlasenko | 8ba1cd7 | 2008-12-30 17:50:46 +0000 | [diff] [blame] | 532 | #if !(defined(LINUX) && ( defined(ALPHA) || defined(MIPS) || defined(__ARM_EABI__) )) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 533 | |
Roland McGrath | a4d4853 | 2005-06-08 20:45:28 +0000 | [diff] [blame] | 534 | static void |
Denys Vlasenko | 1201426 | 2011-05-30 14:00:14 +0200 | [diff] [blame] | 535 | decode_subcall(struct tcb *tcp, int subcall, int nsubcalls, enum subcall_style style) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 536 | { |
Roland McGrath | 4b2dcca | 2006-01-12 10:18:53 +0000 | [diff] [blame] | 537 | unsigned long addr, mask; |
Denys Vlasenko | 4b887a5 | 2011-08-23 13:32:38 +0200 | [diff] [blame] | 538 | int i, n; |
Roland McGrath | 4b2dcca | 2006-01-12 10:18:53 +0000 | [diff] [blame] | 539 | int size = personality_wordsize[current_personality]; |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 540 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 541 | switch (style) { |
| 542 | case shift_style: |
Wichert Akkerman | 16a03d2 | 2000-08-10 02:14:04 +0000 | [diff] [blame] | 543 | if (tcp->u_arg[0] < 0 || tcp->u_arg[0] >= nsubcalls) |
| 544 | return; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 545 | tcp->scno = subcall + tcp->u_arg[0]; |
Denys Vlasenko | 4b887a5 | 2011-08-23 13:32:38 +0200 | [diff] [blame] | 546 | tcp->u_nargs = n = sysent[tcp->scno].nargs; |
| 547 | for (i = 0; i < n; i++) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 548 | tcp->u_arg[i] = tcp->u_arg[i + 1]; |
| 549 | break; |
| 550 | case deref_style: |
Wichert Akkerman | 16a03d2 | 2000-08-10 02:14:04 +0000 | [diff] [blame] | 551 | if (tcp->u_arg[0] < 0 || tcp->u_arg[0] >= nsubcalls) |
| 552 | return; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 553 | tcp->scno = subcall + tcp->u_arg[0]; |
| 554 | addr = tcp->u_arg[1]; |
Denys Vlasenko | 4b887a5 | 2011-08-23 13:32:38 +0200 | [diff] [blame] | 555 | tcp->u_nargs = n = sysent[tcp->scno].nargs; |
| 556 | for (i = 0; i < n; i++) { |
Roland McGrath | 4b2dcca | 2006-01-12 10:18:53 +0000 | [diff] [blame] | 557 | if (size == sizeof(int)) { |
| 558 | unsigned int arg; |
| 559 | if (umove(tcp, addr, &arg) < 0) |
| 560 | arg = 0; |
| 561 | tcp->u_arg[i] = arg; |
| 562 | } |
| 563 | else if (size == sizeof(long)) { |
| 564 | unsigned long arg; |
| 565 | if (umove(tcp, addr, &arg) < 0) |
| 566 | arg = 0; |
| 567 | tcp->u_arg[i] = arg; |
| 568 | } |
| 569 | else |
| 570 | abort(); |
| 571 | addr += size; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 572 | } |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 573 | break; |
| 574 | case mask_style: |
| 575 | mask = (tcp->u_arg[0] >> 8) & 0xff; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 576 | for (i = 0; mask; i++) |
| 577 | mask >>= 1; |
Wichert Akkerman | 16a03d2 | 2000-08-10 02:14:04 +0000 | [diff] [blame] | 578 | if (i >= nsubcalls) |
| 579 | return; |
| 580 | tcp->u_arg[0] &= 0xff; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 581 | tcp->scno = subcall + i; |
Denys Vlasenko | afc6403 | 2011-08-23 13:29:01 +0200 | [diff] [blame] | 582 | tcp->u_nargs = sysent[tcp->scno].nargs; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 583 | break; |
Wichert Akkerman | 8829a55 | 1999-06-11 13:18:40 +0000 | [diff] [blame] | 584 | case door_style: |
| 585 | /* |
| 586 | * Oh, yuck. The call code is the *sixth* argument. |
Wichert Akkerman | 16a03d2 | 2000-08-10 02:14:04 +0000 | [diff] [blame] | 587 | * (don't you mean the *last* argument? - JH) |
Wichert Akkerman | 8829a55 | 1999-06-11 13:18:40 +0000 | [diff] [blame] | 588 | */ |
Wichert Akkerman | 16a03d2 | 2000-08-10 02:14:04 +0000 | [diff] [blame] | 589 | if (tcp->u_arg[5] < 0 || tcp->u_arg[5] >= nsubcalls) |
| 590 | return; |
Wichert Akkerman | 8829a55 | 1999-06-11 13:18:40 +0000 | [diff] [blame] | 591 | tcp->scno = subcall + tcp->u_arg[5]; |
Denys Vlasenko | afc6403 | 2011-08-23 13:29:01 +0200 | [diff] [blame] | 592 | tcp->u_nargs = sysent[tcp->scno].nargs; |
Wichert Akkerman | 8829a55 | 1999-06-11 13:18:40 +0000 | [diff] [blame] | 593 | break; |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 594 | #ifdef FREEBSD |
| 595 | case table_style: |
Dmitry V. Levin | fcda7a5 | 2011-06-13 21:58:43 +0000 | [diff] [blame] | 596 | for (i = 0; i < ARRAY_SIZE(subcalls_table); i++) |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 597 | if (subcalls_table[i].call == tcp->scno) break; |
Dmitry V. Levin | fcda7a5 | 2011-06-13 21:58:43 +0000 | [diff] [blame] | 598 | if (i < ARRAY_SIZE(subcalls_table) && |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 599 | tcp->u_arg[0] >= 0 && tcp->u_arg[0] < subcalls_table[i].nsubcalls) { |
| 600 | tcp->scno = subcalls_table[i].subcalls[tcp->u_arg[0]]; |
| 601 | for (i = 0; i < tcp->u_nargs; i++) |
| 602 | tcp->u_arg[i] = tcp->u_arg[i + 1]; |
| 603 | } |
| 604 | break; |
| 605 | #endif /* FREEBSD */ |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 606 | } |
| 607 | } |
| 608 | #endif |
| 609 | |
Denys Vlasenko | a614692 | 2011-08-24 18:07:22 +0200 | [diff] [blame] | 610 | int |
| 611 | printargs(struct tcb *tcp) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 612 | { |
Denys Vlasenko | a614692 | 2011-08-24 18:07:22 +0200 | [diff] [blame] | 613 | if (entering(tcp)) { |
| 614 | int i; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 615 | |
Denys Vlasenko | a614692 | 2011-08-24 18:07:22 +0200 | [diff] [blame] | 616 | for (i = 0; i < tcp->u_nargs; i++) |
| 617 | tprintf("%s%#lx", i ? ", " : "", tcp->u_arg[i]); |
| 618 | } |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 619 | return 0; |
| 620 | } |
| 621 | |
Denys Vlasenko | a614692 | 2011-08-24 18:07:22 +0200 | [diff] [blame] | 622 | long |
| 623 | getrval2(struct tcb *tcp) |
| 624 | { |
| 625 | long val = -1; |
| 626 | |
| 627 | #ifdef LINUX |
| 628 | #if defined (SPARC) || defined (SPARC64) |
| 629 | struct pt_regs regs; |
| 630 | if (ptrace(PTRACE_GETREGS, tcp->pid, (char *)®s, 0) < 0) |
| 631 | return -1; |
| 632 | val = regs.u_regs[U_REG_O1]; |
| 633 | #elif defined(SH) |
| 634 | if (upeek(tcp, 4*(REG_REG0+1), &val) < 0) |
| 635 | return -1; |
| 636 | #elif defined(IA64) |
| 637 | if (upeek(tcp, PT_R9, &val) < 0) |
| 638 | return -1; |
| 639 | #endif |
| 640 | #endif /* LINUX */ |
| 641 | |
| 642 | #ifdef SUNOS4 |
| 643 | if (upeek(tcp, uoff(u_rval2), &val) < 0) |
| 644 | return -1; |
| 645 | #endif /* SUNOS4 */ |
| 646 | |
| 647 | #ifdef SVR4 |
| 648 | #ifdef SPARC |
| 649 | val = tcp->status.PR_REG[R_O1]; |
| 650 | #endif /* SPARC */ |
| 651 | #ifdef I386 |
| 652 | val = tcp->status.PR_REG[EDX]; |
| 653 | #endif /* I386 */ |
| 654 | #ifdef X86_64 |
| 655 | val = tcp->status.PR_REG[RDX]; |
| 656 | #endif /* X86_64 */ |
| 657 | #ifdef MIPS |
| 658 | val = tcp->status.PR_REG[CTX_V1]; |
| 659 | #endif /* MIPS */ |
| 660 | #endif /* SVR4 */ |
| 661 | |
| 662 | #ifdef FREEBSD |
| 663 | struct reg regs; |
| 664 | pread(tcp->pfd_reg, ®s, sizeof(regs), 0); |
| 665 | val = regs.r_edx; |
| 666 | #endif |
| 667 | return val; |
| 668 | } |
| 669 | |
| 670 | #ifdef SUNOS4 |
| 671 | /* |
| 672 | * Apparently, indirect system calls have already be converted by ptrace(2), |
| 673 | * so if you see "indir" this program has gone astray. |
| 674 | */ |
| 675 | int |
| 676 | sys_indir(struct tcb *tcp) |
| 677 | { |
Denys Vlasenko | cb6f056 | 2011-08-25 01:13:43 +0200 | [diff] [blame] | 678 | int i, nargs; |
| 679 | long scno; |
Denys Vlasenko | a614692 | 2011-08-24 18:07:22 +0200 | [diff] [blame] | 680 | |
| 681 | if (entering(tcp)) { |
| 682 | scno = tcp->u_arg[0]; |
Denys Vlasenko | cb6f056 | 2011-08-25 01:13:43 +0200 | [diff] [blame] | 683 | if (!SCNO_IN_RANGE(scno)) { |
Denys Vlasenko | fabaa91 | 2011-08-25 01:23:10 +0200 | [diff] [blame] | 684 | fprintf(stderr, "Bogus syscall: %ld\n", scno); |
Denys Vlasenko | a614692 | 2011-08-24 18:07:22 +0200 | [diff] [blame] | 685 | return 0; |
| 686 | } |
| 687 | nargs = sysent[scno].nargs; |
| 688 | tprintf("%s", sysent[scno].sys_name); |
| 689 | for (i = 0; i < nargs; i++) |
| 690 | tprintf(", %#lx", tcp->u_arg[i+1]); |
| 691 | } |
| 692 | return 0; |
| 693 | } |
| 694 | #endif /* SUNOS4 */ |
| 695 | |
| 696 | int |
| 697 | is_restart_error(struct tcb *tcp) |
| 698 | { |
| 699 | #ifdef LINUX |
| 700 | if (!syserror(tcp)) |
| 701 | return 0; |
| 702 | switch (tcp->u_error) { |
| 703 | case ERESTARTSYS: |
| 704 | case ERESTARTNOINTR: |
| 705 | case ERESTARTNOHAND: |
| 706 | case ERESTART_RESTARTBLOCK: |
| 707 | return 1; |
| 708 | default: |
| 709 | break; |
| 710 | } |
| 711 | #endif /* LINUX */ |
| 712 | return 0; |
| 713 | } |
| 714 | |
| 715 | struct tcb *tcp_last = NULL; |
Wichert Akkerman | c792698 | 2000-04-10 22:22:31 +0000 | [diff] [blame] | 716 | |
| 717 | #ifdef LINUX |
Denys Vlasenko | b63256e | 2011-06-07 12:13:24 +0200 | [diff] [blame] | 718 | # if defined (I386) |
| 719 | static long eax; |
| 720 | # elif defined (IA64) |
| 721 | long r8, r10, psr; /* TODO: make static? */ |
| 722 | long ia32 = 0; /* not static */ |
| 723 | # elif defined (POWERPC) |
| 724 | static long result, flags; |
| 725 | # elif defined (M68K) |
| 726 | static long d0; |
| 727 | # elif defined(BFIN) |
| 728 | static long r0; |
| 729 | # elif defined (ARM) |
| 730 | static struct pt_regs regs; |
| 731 | # elif defined (ALPHA) |
| 732 | static long r0; |
| 733 | static long a3; |
| 734 | # elif defined(AVR32) |
| 735 | static struct pt_regs regs; |
| 736 | # elif defined (SPARC) || defined (SPARC64) |
| 737 | static struct pt_regs regs; |
| 738 | static unsigned long trap; |
| 739 | # elif defined(LINUX_MIPSN32) |
| 740 | static long long a3; |
| 741 | static long long r2; |
| 742 | # elif defined(MIPS) |
| 743 | static long a3; |
| 744 | static long r2; |
| 745 | # elif defined(S390) || defined(S390X) |
| 746 | static long gpr2; |
| 747 | static long pc; |
| 748 | static long syscall_mode; |
| 749 | # elif defined(HPPA) |
| 750 | static long r28; |
| 751 | # elif defined(SH) |
| 752 | static long r0; |
| 753 | # elif defined(SH64) |
| 754 | static long r9; |
| 755 | # elif defined(X86_64) |
| 756 | static long rax; |
| 757 | # elif defined(CRISV10) || defined(CRISV32) |
| 758 | static long r10; |
| 759 | # elif defined(MICROBLAZE) |
| 760 | static long r3; |
| 761 | # endif |
Wichert Akkerman | c792698 | 2000-04-10 22:22:31 +0000 | [diff] [blame] | 762 | #endif /* LINUX */ |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 763 | #ifdef FREEBSD |
Denys Vlasenko | b63256e | 2011-06-07 12:13:24 +0200 | [diff] [blame] | 764 | struct reg regs; /* TODO: make static? */ |
Roland McGrath | 761b5d7 | 2002-12-15 23:58:31 +0000 | [diff] [blame] | 765 | #endif /* FREEBSD */ |
Wichert Akkerman | c792698 | 2000-04-10 22:22:31 +0000 | [diff] [blame] | 766 | |
Denys Vlasenko | b88f961 | 2011-08-21 18:03:23 +0200 | [diff] [blame] | 767 | /* Returns: |
| 768 | * 0: "ignore this ptrace stop", bail out of trace_syscall() silently. |
| 769 | * 1: ok, continue in trace_syscall(). |
| 770 | * other: error, trace_syscall() should print error indicator |
| 771 | * ("????" etc) and bail out. |
| 772 | */ |
Denys Vlasenko | 9a36ae5 | 2011-08-24 16:47:32 +0200 | [diff] [blame] | 773 | #ifndef USE_PROCFS |
| 774 | static |
| 775 | #endif |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 776 | int |
Denys Vlasenko | 06602d9 | 2011-08-24 17:53:52 +0200 | [diff] [blame] | 777 | get_scno(struct tcb *tcp) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 778 | { |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 779 | long scno = 0; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 780 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 781 | #ifdef LINUX |
Denys Vlasenko | ea0e6e8 | 2009-02-25 17:08:40 +0000 | [diff] [blame] | 782 | # if defined(S390) || defined(S390X) |
Denys Vlasenko | 932fc7d | 2008-12-16 18:18:40 +0000 | [diff] [blame] | 783 | if (upeek(tcp, PT_GPR2, &syscall_mode) < 0) |
Denys Vlasenko | b63256e | 2011-06-07 12:13:24 +0200 | [diff] [blame] | 784 | return -1; |
Roland McGrath | 2f924ca | 2003-06-26 22:23:28 +0000 | [diff] [blame] | 785 | |
| 786 | if (syscall_mode != -ENOSYS) { |
| 787 | /* |
Denys Vlasenko | 5ae2b7c | 2009-02-27 20:32:52 +0000 | [diff] [blame] | 788 | * Since kernel version 2.5.44 the scno gets passed in gpr2. |
Roland McGrath | 2f924ca | 2003-06-26 22:23:28 +0000 | [diff] [blame] | 789 | */ |
| 790 | scno = syscall_mode; |
| 791 | } else { |
Denys Vlasenko | 5ae2b7c | 2009-02-27 20:32:52 +0000 | [diff] [blame] | 792 | /* |
Michal Ludvig | 882eda8 | 2002-11-11 12:50:47 +0000 | [diff] [blame] | 793 | * Old style of "passing" the scno via the SVC instruction. |
| 794 | */ |
Michal Ludvig | 882eda8 | 2002-11-11 12:50:47 +0000 | [diff] [blame] | 795 | long opcode, offset_reg, tmp; |
Denys Vlasenko | 8cd1acd | 2011-08-24 16:52:57 +0200 | [diff] [blame] | 796 | void *svc_addr; |
Denys Vlasenko | 7c9ba8b | 2011-08-19 19:46:32 +0200 | [diff] [blame] | 797 | static const int gpr_offset[16] = { |
| 798 | PT_GPR0, PT_GPR1, PT_ORIGGPR2, PT_GPR3, |
| 799 | PT_GPR4, PT_GPR5, PT_GPR6, PT_GPR7, |
| 800 | PT_GPR8, PT_GPR9, PT_GPR10, PT_GPR11, |
| 801 | PT_GPR12, PT_GPR13, PT_GPR14, PT_GPR15 |
| 802 | }; |
Roland McGrath | 761b5d7 | 2002-12-15 23:58:31 +0000 | [diff] [blame] | 803 | |
Denys Vlasenko | 932fc7d | 2008-12-16 18:18:40 +0000 | [diff] [blame] | 804 | if (upeek(tcp, PT_PSWADDR, &pc) < 0) |
Michal Ludvig | 882eda8 | 2002-11-11 12:50:47 +0000 | [diff] [blame] | 805 | return -1; |
Roland McGrath | 96dc514 | 2003-01-20 10:23:04 +0000 | [diff] [blame] | 806 | errno = 0; |
Denys Vlasenko | fb03667 | 2009-01-23 16:30:26 +0000 | [diff] [blame] | 807 | opcode = ptrace(PTRACE_PEEKTEXT, tcp->pid, (char *)(pc-sizeof(long)), 0); |
Roland McGrath | 96dc514 | 2003-01-20 10:23:04 +0000 | [diff] [blame] | 808 | if (errno) { |
| 809 | perror("peektext(pc-oneword)"); |
Michal Ludvig | 882eda8 | 2002-11-11 12:50:47 +0000 | [diff] [blame] | 810 | return -1; |
Roland McGrath | 96dc514 | 2003-01-20 10:23:04 +0000 | [diff] [blame] | 811 | } |
Michal Ludvig | 882eda8 | 2002-11-11 12:50:47 +0000 | [diff] [blame] | 812 | |
| 813 | /* |
| 814 | * We have to check if the SVC got executed directly or via an |
| 815 | * EXECUTE instruction. In case of EXECUTE it is necessary to do |
| 816 | * instruction decoding to derive the system call number. |
| 817 | * Unfortunately the opcode sizes of EXECUTE and SVC are differently, |
| 818 | * so that this doesn't work if a SVC opcode is part of an EXECUTE |
| 819 | * opcode. Since there is no way to find out the opcode size this |
| 820 | * is the best we can do... |
| 821 | */ |
Michal Ludvig | 882eda8 | 2002-11-11 12:50:47 +0000 | [diff] [blame] | 822 | if ((opcode & 0xff00) == 0x0a00) { |
| 823 | /* SVC opcode */ |
| 824 | scno = opcode & 0xff; |
Roland McGrath | 761b5d7 | 2002-12-15 23:58:31 +0000 | [diff] [blame] | 825 | } |
Michal Ludvig | 882eda8 | 2002-11-11 12:50:47 +0000 | [diff] [blame] | 826 | else { |
| 827 | /* SVC got executed by EXECUTE instruction */ |
| 828 | |
| 829 | /* |
| 830 | * Do instruction decoding of EXECUTE. If you really want to |
| 831 | * understand this, read the Principles of Operations. |
| 832 | */ |
| 833 | svc_addr = (void *) (opcode & 0xfff); |
| 834 | |
| 835 | tmp = 0; |
| 836 | offset_reg = (opcode & 0x000f0000) >> 16; |
Denys Vlasenko | 932fc7d | 2008-12-16 18:18:40 +0000 | [diff] [blame] | 837 | if (offset_reg && (upeek(tcp, gpr_offset[offset_reg], &tmp) < 0)) |
Michal Ludvig | 882eda8 | 2002-11-11 12:50:47 +0000 | [diff] [blame] | 838 | return -1; |
| 839 | svc_addr += tmp; |
| 840 | |
| 841 | tmp = 0; |
| 842 | offset_reg = (opcode & 0x0000f000) >> 12; |
Denys Vlasenko | 932fc7d | 2008-12-16 18:18:40 +0000 | [diff] [blame] | 843 | if (offset_reg && (upeek(tcp, gpr_offset[offset_reg], &tmp) < 0)) |
Michal Ludvig | 882eda8 | 2002-11-11 12:50:47 +0000 | [diff] [blame] | 844 | return -1; |
| 845 | svc_addr += tmp; |
| 846 | |
Denys Vlasenko | fb03667 | 2009-01-23 16:30:26 +0000 | [diff] [blame] | 847 | scno = ptrace(PTRACE_PEEKTEXT, tcp->pid, svc_addr, 0); |
Michal Ludvig | 882eda8 | 2002-11-11 12:50:47 +0000 | [diff] [blame] | 848 | if (errno) |
| 849 | return -1; |
Denys Vlasenko | ea0e6e8 | 2009-02-25 17:08:40 +0000 | [diff] [blame] | 850 | # if defined(S390X) |
Michal Ludvig | 882eda8 | 2002-11-11 12:50:47 +0000 | [diff] [blame] | 851 | scno >>= 48; |
Denys Vlasenko | ea0e6e8 | 2009-02-25 17:08:40 +0000 | [diff] [blame] | 852 | # else |
Michal Ludvig | 882eda8 | 2002-11-11 12:50:47 +0000 | [diff] [blame] | 853 | scno >>= 16; |
Denys Vlasenko | ea0e6e8 | 2009-02-25 17:08:40 +0000 | [diff] [blame] | 854 | # endif |
Michal Ludvig | 882eda8 | 2002-11-11 12:50:47 +0000 | [diff] [blame] | 855 | tmp = 0; |
| 856 | offset_reg = (opcode & 0x00f00000) >> 20; |
Denys Vlasenko | 932fc7d | 2008-12-16 18:18:40 +0000 | [diff] [blame] | 857 | if (offset_reg && (upeek(tcp, gpr_offset[offset_reg], &tmp) < 0)) |
Michal Ludvig | 882eda8 | 2002-11-11 12:50:47 +0000 | [diff] [blame] | 858 | return -1; |
| 859 | |
| 860 | scno = (scno | tmp) & 0xff; |
| 861 | } |
| 862 | } |
Denys Vlasenko | ea0e6e8 | 2009-02-25 17:08:40 +0000 | [diff] [blame] | 863 | # elif defined (POWERPC) |
Denys Vlasenko | 932fc7d | 2008-12-16 18:18:40 +0000 | [diff] [blame] | 864 | if (upeek(tcp, sizeof(unsigned long)*PT_R0, &scno) < 0) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 865 | return -1; |
Andreas Schwab | d69fa49 | 2010-07-12 21:39:57 +0200 | [diff] [blame] | 866 | # ifdef POWERPC64 |
Denys Vlasenko | 8cd1acd | 2011-08-24 16:52:57 +0200 | [diff] [blame] | 867 | /* TODO: speed up strace by not doing this at every syscall. |
| 868 | * We only need to do it after execve. |
| 869 | */ |
| 870 | int currpers; |
| 871 | long val; |
| 872 | int pid = tcp->pid; |
Andreas Schwab | d69fa49 | 2010-07-12 21:39:57 +0200 | [diff] [blame] | 873 | |
Denys Vlasenko | 8cd1acd | 2011-08-24 16:52:57 +0200 | [diff] [blame] | 874 | /* Check for 64/32 bit mode. */ |
| 875 | if (upeek(tcp, sizeof(unsigned long)*PT_MSR, &val) < 0) |
| 876 | return -1; |
| 877 | /* SF is bit 0 of MSR */ |
| 878 | if (val < 0) |
| 879 | currpers = 0; |
| 880 | else |
| 881 | currpers = 1; |
| 882 | if (currpers != current_personality) { |
| 883 | static const char *const names[] = {"64 bit", "32 bit"}; |
| 884 | set_personality(currpers); |
| 885 | fprintf(stderr, "[ Process PID=%d runs in %s mode. ]\n", |
| 886 | pid, names[current_personality]); |
Andreas Schwab | d69fa49 | 2010-07-12 21:39:57 +0200 | [diff] [blame] | 887 | } |
| 888 | # endif |
Denys Vlasenko | 5ae2b7c | 2009-02-27 20:32:52 +0000 | [diff] [blame] | 889 | # elif defined(AVR32) |
Denys Vlasenko | 2ce12ed | 2011-08-24 17:25:32 +0200 | [diff] [blame] | 890 | /* Read complete register set in one go. */ |
Denys Vlasenko | 5ae2b7c | 2009-02-27 20:32:52 +0000 | [diff] [blame] | 891 | if (ptrace(PTRACE_GETREGS, tcp->pid, NULL, ®s) < 0) |
| 892 | return -1; |
Denys Vlasenko | 8cd1acd | 2011-08-24 16:52:57 +0200 | [diff] [blame] | 893 | scno = regs.r8; |
Denys Vlasenko | ea0e6e8 | 2009-02-25 17:08:40 +0000 | [diff] [blame] | 894 | # elif defined(BFIN) |
Denys Vlasenko | 932fc7d | 2008-12-16 18:18:40 +0000 | [diff] [blame] | 895 | if (upeek(tcp, PT_ORIG_P0, &scno)) |
Dmitry V. Levin | 87ea1f4 | 2008-11-10 22:21:41 +0000 | [diff] [blame] | 896 | return -1; |
Denys Vlasenko | ea0e6e8 | 2009-02-25 17:08:40 +0000 | [diff] [blame] | 897 | # elif defined (I386) |
Denys Vlasenko | 932fc7d | 2008-12-16 18:18:40 +0000 | [diff] [blame] | 898 | if (upeek(tcp, 4*ORIG_EAX, &scno) < 0) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 899 | return -1; |
Denys Vlasenko | ea0e6e8 | 2009-02-25 17:08:40 +0000 | [diff] [blame] | 900 | # elif defined (X86_64) |
Denys Vlasenko | 932fc7d | 2008-12-16 18:18:40 +0000 | [diff] [blame] | 901 | if (upeek(tcp, 8*ORIG_RAX, &scno) < 0) |
Michal Ludvig | 0e03550 | 2002-09-23 15:41:01 +0000 | [diff] [blame] | 902 | return -1; |
| 903 | |
Denys Vlasenko | 8cd1acd | 2011-08-24 16:52:57 +0200 | [diff] [blame] | 904 | /* TODO: speed up strace by not doing this at every syscall. |
| 905 | * We only need to do it after execve. |
| 906 | */ |
| 907 | int currpers; |
| 908 | long val; |
| 909 | int pid = tcp->pid; |
Michal Ludvig | 0e03550 | 2002-09-23 15:41:01 +0000 | [diff] [blame] | 910 | |
Denys Vlasenko | 8cd1acd | 2011-08-24 16:52:57 +0200 | [diff] [blame] | 911 | /* Check CS register value. On x86-64 linux it is: |
| 912 | * 0x33 for long mode (64 bit) |
| 913 | * 0x23 for compatibility mode (32 bit) |
| 914 | * It takes only one ptrace and thus doesn't need |
| 915 | * to be cached. |
| 916 | */ |
| 917 | if (upeek(tcp, 8*CS, &val) < 0) |
| 918 | return -1; |
| 919 | switch (val) { |
| 920 | case 0x23: currpers = 1; break; |
| 921 | case 0x33: currpers = 0; break; |
| 922 | default: |
| 923 | fprintf(stderr, "Unknown value CS=0x%02X while " |
| 924 | "detecting personality of process " |
| 925 | "PID=%d\n", (int)val, pid); |
| 926 | currpers = current_personality; |
| 927 | break; |
| 928 | } |
Denys Vlasenko | ea0e6e8 | 2009-02-25 17:08:40 +0000 | [diff] [blame] | 929 | # if 0 |
Denys Vlasenko | 8cd1acd | 2011-08-24 16:52:57 +0200 | [diff] [blame] | 930 | /* This version analyzes the opcode of a syscall instruction. |
| 931 | * (int 0x80 on i386 vs. syscall on x86-64) |
| 932 | * It works, but is too complicated. |
| 933 | */ |
| 934 | unsigned long val, rip, i; |
Michal Ludvig | 0e03550 | 2002-09-23 15:41:01 +0000 | [diff] [blame] | 935 | |
Denys Vlasenko | 8cd1acd | 2011-08-24 16:52:57 +0200 | [diff] [blame] | 936 | if (upeek(tcp, 8*RIP, &rip) < 0) |
| 937 | perror("upeek(RIP)"); |
Roland McGrath | 761b5d7 | 2002-12-15 23:58:31 +0000 | [diff] [blame] | 938 | |
Denys Vlasenko | 8cd1acd | 2011-08-24 16:52:57 +0200 | [diff] [blame] | 939 | /* sizeof(syscall) == sizeof(int 0x80) == 2 */ |
| 940 | rip -= 2; |
| 941 | errno = 0; |
Michal Ludvig | 0e03550 | 2002-09-23 15:41:01 +0000 | [diff] [blame] | 942 | |
Denys Vlasenko | 8cd1acd | 2011-08-24 16:52:57 +0200 | [diff] [blame] | 943 | call = ptrace(PTRACE_PEEKTEXT, pid, (char *)rip, (char *)0); |
| 944 | if (errno) |
| 945 | fprintf(stderr, "ptrace_peektext failed: %s\n", |
| 946 | strerror(errno)); |
| 947 | switch (call & 0xffff) { |
| 948 | /* x86-64: syscall = 0x0f 0x05 */ |
| 949 | case 0x050f: currpers = 0; break; |
| 950 | /* i386: int 0x80 = 0xcd 0x80 */ |
| 951 | case 0x80cd: currpers = 1; break; |
| 952 | default: |
| 953 | currpers = current_personality; |
| 954 | fprintf(stderr, |
| 955 | "Unknown syscall opcode (0x%04X) while " |
| 956 | "detecting personality of process " |
| 957 | "PID=%d\n", (int)call, pid); |
| 958 | break; |
| 959 | } |
Denys Vlasenko | ea0e6e8 | 2009-02-25 17:08:40 +0000 | [diff] [blame] | 960 | # endif |
Denys Vlasenko | 8cd1acd | 2011-08-24 16:52:57 +0200 | [diff] [blame] | 961 | if (currpers != current_personality) { |
| 962 | static const char *const names[] = {"64 bit", "32 bit"}; |
| 963 | set_personality(currpers); |
| 964 | fprintf(stderr, "[ Process PID=%d runs in %s mode. ]\n", |
| 965 | pid, names[current_personality]); |
Roland McGrath | 761b5d7 | 2002-12-15 23:58:31 +0000 | [diff] [blame] | 966 | } |
Denys Vlasenko | ea0e6e8 | 2009-02-25 17:08:40 +0000 | [diff] [blame] | 967 | # elif defined(IA64) |
Wichert Akkerman | 7b3346b | 2001-10-09 23:47:38 +0000 | [diff] [blame] | 968 | # define IA64_PSR_IS ((long)1 << 34) |
Denys Vlasenko | b63256e | 2011-06-07 12:13:24 +0200 | [diff] [blame] | 969 | if (upeek(tcp, PT_CR_IPSR, &psr) >= 0) |
Wichert Akkerman | 7b3346b | 2001-10-09 23:47:38 +0000 | [diff] [blame] | 970 | ia32 = (psr & IA64_PSR_IS) != 0; |
Denys Vlasenko | 8cd1acd | 2011-08-24 16:52:57 +0200 | [diff] [blame] | 971 | if (ia32) { |
| 972 | if (upeek(tcp, PT_R1, &scno) < 0) /* orig eax */ |
| 973 | return -1; |
Wichert Akkerman | 8b1b40c | 2000-02-03 21:58:30 +0000 | [diff] [blame] | 974 | } else { |
Denys Vlasenko | 8cd1acd | 2011-08-24 16:52:57 +0200 | [diff] [blame] | 975 | if (upeek(tcp, PT_R15, &scno) < 0) |
Wichert Akkerman | 8b1b40c | 2000-02-03 21:58:30 +0000 | [diff] [blame] | 976 | return -1; |
Denys Vlasenko | 8cd1acd | 2011-08-24 16:52:57 +0200 | [diff] [blame] | 977 | } |
Denys Vlasenko | ea0e6e8 | 2009-02-25 17:08:40 +0000 | [diff] [blame] | 978 | # elif defined (ARM) |
Denys Vlasenko | 2ce12ed | 2011-08-24 17:25:32 +0200 | [diff] [blame] | 979 | /* Read complete register set in one go. */ |
Denys Vlasenko | fb03667 | 2009-01-23 16:30:26 +0000 | [diff] [blame] | 980 | if (ptrace(PTRACE_GETREGS, tcp->pid, NULL, (void *)®s) == -1) |
Roland McGrath | 0f87c49 | 2003-06-03 23:29:04 +0000 | [diff] [blame] | 981 | return -1; |
| 982 | |
| 983 | /* |
| 984 | * We only need to grab the syscall number on syscall entry. |
| 985 | */ |
| 986 | if (regs.ARM_ip == 0) { |
| 987 | /* |
| 988 | * Note: we only deal with only 32-bit CPUs here. |
| 989 | */ |
| 990 | if (regs.ARM_cpsr & 0x20) { |
| 991 | /* |
| 992 | * Get the Thumb-mode system call number |
| 993 | */ |
| 994 | scno = regs.ARM_r7; |
| 995 | } else { |
| 996 | /* |
| 997 | * Get the ARM-mode system call number |
| 998 | */ |
| 999 | errno = 0; |
Denys Vlasenko | fb03667 | 2009-01-23 16:30:26 +0000 | [diff] [blame] | 1000 | scno = ptrace(PTRACE_PEEKTEXT, tcp->pid, (void *)(regs.ARM_pc - 4), NULL); |
Roland McGrath | 0f87c49 | 2003-06-03 23:29:04 +0000 | [diff] [blame] | 1001 | if (errno) |
| 1002 | return -1; |
| 1003 | |
Roland McGrath | f691bd2 | 2006-04-25 07:34:41 +0000 | [diff] [blame] | 1004 | /* Handle the EABI syscall convention. We do not |
| 1005 | bother converting structures between the two |
| 1006 | ABIs, but basic functionality should work even |
| 1007 | if strace and the traced program have different |
| 1008 | ABIs. */ |
| 1009 | if (scno == 0xef000000) { |
| 1010 | scno = regs.ARM_r7; |
| 1011 | } else { |
| 1012 | if ((scno & 0x0ff00000) != 0x0f900000) { |
| 1013 | fprintf(stderr, "syscall: unknown syscall trap 0x%08lx\n", |
| 1014 | scno); |
| 1015 | return -1; |
| 1016 | } |
Roland McGrath | 0f87c49 | 2003-06-03 23:29:04 +0000 | [diff] [blame] | 1017 | |
Roland McGrath | f691bd2 | 2006-04-25 07:34:41 +0000 | [diff] [blame] | 1018 | /* |
| 1019 | * Fixup the syscall number |
| 1020 | */ |
| 1021 | scno &= 0x000fffff; |
| 1022 | } |
Roland McGrath | 0f87c49 | 2003-06-03 23:29:04 +0000 | [diff] [blame] | 1023 | } |
Roland McGrath | 5670331 | 2008-05-20 01:35:55 +0000 | [diff] [blame] | 1024 | if (scno & 0x0f0000) { |
| 1025 | /* |
| 1026 | * Handle ARM specific syscall |
| 1027 | */ |
| 1028 | set_personality(1); |
| 1029 | scno &= 0x0000ffff; |
| 1030 | } else |
| 1031 | set_personality(0); |
Roland McGrath | 0f87c49 | 2003-06-03 23:29:04 +0000 | [diff] [blame] | 1032 | |
Roland McGrath | 0f87c49 | 2003-06-03 23:29:04 +0000 | [diff] [blame] | 1033 | } else { |
Denys Vlasenko | 8cd1acd | 2011-08-24 16:52:57 +0200 | [diff] [blame] | 1034 | fprintf(stderr, "pid %d stray syscall entry\n", tcp->pid); |
| 1035 | tcp->flags |= TCB_INSYSCALL; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1036 | } |
Denys Vlasenko | ea0e6e8 | 2009-02-25 17:08:40 +0000 | [diff] [blame] | 1037 | # elif defined (M68K) |
Denys Vlasenko | 932fc7d | 2008-12-16 18:18:40 +0000 | [diff] [blame] | 1038 | if (upeek(tcp, 4*PT_ORIG_D0, &scno) < 0) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1039 | return -1; |
Denys Vlasenko | ea0e6e8 | 2009-02-25 17:08:40 +0000 | [diff] [blame] | 1040 | # elif defined (LINUX_MIPSN32) |
Roland McGrath | 542c2c6 | 2008-05-20 01:11:56 +0000 | [diff] [blame] | 1041 | unsigned long long regs[38]; |
| 1042 | |
Denys Vlasenko | b63256e | 2011-06-07 12:13:24 +0200 | [diff] [blame] | 1043 | if (ptrace(PTRACE_GETREGS, tcp->pid, NULL, (long) ®s) < 0) |
Roland McGrath | 542c2c6 | 2008-05-20 01:11:56 +0000 | [diff] [blame] | 1044 | return -1; |
| 1045 | a3 = regs[REG_A3]; |
| 1046 | r2 = regs[REG_V0]; |
| 1047 | |
Denys Vlasenko | 8cd1acd | 2011-08-24 16:52:57 +0200 | [diff] [blame] | 1048 | scno = r2; |
Denys Vlasenko | cb6f056 | 2011-08-25 01:13:43 +0200 | [diff] [blame] | 1049 | if (!SCNO_IN_RANGE(scno)) { |
Denys Vlasenko | 8cd1acd | 2011-08-24 16:52:57 +0200 | [diff] [blame] | 1050 | if (a3 == 0 || a3 == -1) { |
| 1051 | if (debug) |
| 1052 | fprintf(stderr, "stray syscall exit: v0 = %ld\n", scno); |
Roland McGrath | 542c2c6 | 2008-05-20 01:11:56 +0000 | [diff] [blame] | 1053 | return 0; |
| 1054 | } |
Roland McGrath | 542c2c6 | 2008-05-20 01:11:56 +0000 | [diff] [blame] | 1055 | } |
Denys Vlasenko | ea0e6e8 | 2009-02-25 17:08:40 +0000 | [diff] [blame] | 1056 | # elif defined (MIPS) |
Denys Vlasenko | 932fc7d | 2008-12-16 18:18:40 +0000 | [diff] [blame] | 1057 | if (upeek(tcp, REG_A3, &a3) < 0) |
Denys Vlasenko | 5ae2b7c | 2009-02-27 20:32:52 +0000 | [diff] [blame] | 1058 | return -1; |
Denys Vlasenko | 8cd1acd | 2011-08-24 16:52:57 +0200 | [diff] [blame] | 1059 | if (upeek(tcp, REG_V0, &scno) < 0) |
| 1060 | return -1; |
Wichert Akkerman | f90da01 | 1999-10-31 21:15:38 +0000 | [diff] [blame] | 1061 | |
Denys Vlasenko | cb6f056 | 2011-08-25 01:13:43 +0200 | [diff] [blame] | 1062 | if (!SCNO_IN_RANGE(scno)) { |
Denys Vlasenko | 8cd1acd | 2011-08-24 16:52:57 +0200 | [diff] [blame] | 1063 | if (a3 == 0 || a3 == -1) { |
| 1064 | if (debug) |
| 1065 | fprintf(stderr, "stray syscall exit: v0 = %ld\n", scno); |
Roland McGrath | 542c2c6 | 2008-05-20 01:11:56 +0000 | [diff] [blame] | 1066 | return 0; |
| 1067 | } |
Wichert Akkerman | f90da01 | 1999-10-31 21:15:38 +0000 | [diff] [blame] | 1068 | } |
Denys Vlasenko | ea0e6e8 | 2009-02-25 17:08:40 +0000 | [diff] [blame] | 1069 | # elif defined (ALPHA) |
Denys Vlasenko | 932fc7d | 2008-12-16 18:18:40 +0000 | [diff] [blame] | 1070 | if (upeek(tcp, REG_A3, &a3) < 0) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1071 | return -1; |
Denys Vlasenko | 8cd1acd | 2011-08-24 16:52:57 +0200 | [diff] [blame] | 1072 | if (upeek(tcp, REG_R0, &scno) < 0) |
| 1073 | return -1; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1074 | |
Denys Vlasenko | 8cd1acd | 2011-08-24 16:52:57 +0200 | [diff] [blame] | 1075 | /* |
| 1076 | * Do some sanity checks to figure out if it's |
| 1077 | * really a syscall entry |
| 1078 | */ |
Denys Vlasenko | cb6f056 | 2011-08-25 01:13:43 +0200 | [diff] [blame] | 1079 | if (!SCNO_IN_RANGE(scno)) { |
Denys Vlasenko | 8cd1acd | 2011-08-24 16:52:57 +0200 | [diff] [blame] | 1080 | if (a3 == 0 || a3 == -1) { |
| 1081 | if (debug) |
| 1082 | fprintf(stderr, "stray syscall exit: r0 = %ld\n", scno); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1083 | return 0; |
| 1084 | } |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1085 | } |
Denys Vlasenko | ea0e6e8 | 2009-02-25 17:08:40 +0000 | [diff] [blame] | 1086 | # elif defined (SPARC) || defined (SPARC64) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1087 | /* Everything we need is in the current register set. */ |
Denys Vlasenko | fb03667 | 2009-01-23 16:30:26 +0000 | [diff] [blame] | 1088 | if (ptrace(PTRACE_GETREGS, tcp->pid, (char *)®s, 0) < 0) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1089 | return -1; |
| 1090 | |
Denys Vlasenko | 8cd1acd | 2011-08-24 16:52:57 +0200 | [diff] [blame] | 1091 | /* Disassemble the syscall trap. */ |
| 1092 | /* Retrieve the syscall trap instruction. */ |
| 1093 | errno = 0; |
Denys Vlasenko | ea0e6e8 | 2009-02-25 17:08:40 +0000 | [diff] [blame] | 1094 | # if defined(SPARC64) |
Denys Vlasenko | 8cd1acd | 2011-08-24 16:52:57 +0200 | [diff] [blame] | 1095 | trap = ptrace(PTRACE_PEEKTEXT, tcp->pid, (char *)regs.tpc, 0); |
| 1096 | trap >>= 32; |
Mike Frysinger | 8566c50 | 2009-10-12 11:05:14 -0400 | [diff] [blame] | 1097 | # else |
Denys Vlasenko | 8cd1acd | 2011-08-24 16:52:57 +0200 | [diff] [blame] | 1098 | trap = ptrace(PTRACE_PEEKTEXT, tcp->pid, (char *)regs.pc, 0); |
Denys Vlasenko | ea0e6e8 | 2009-02-25 17:08:40 +0000 | [diff] [blame] | 1099 | # endif |
Denys Vlasenko | 8cd1acd | 2011-08-24 16:52:57 +0200 | [diff] [blame] | 1100 | if (errno) |
Wichert Akkerman | c1652e2 | 2001-03-27 12:17:16 +0000 | [diff] [blame] | 1101 | return -1; |
Denys Vlasenko | 8cd1acd | 2011-08-24 16:52:57 +0200 | [diff] [blame] | 1102 | |
| 1103 | /* Disassemble the trap to see what personality to use. */ |
| 1104 | switch (trap) { |
| 1105 | case 0x91d02010: |
| 1106 | /* Linux/SPARC syscall trap. */ |
| 1107 | set_personality(0); |
| 1108 | break; |
| 1109 | case 0x91d0206d: |
| 1110 | /* Linux/SPARC64 syscall trap. */ |
| 1111 | set_personality(2); |
| 1112 | break; |
| 1113 | case 0x91d02000: |
| 1114 | /* SunOS syscall trap. (pers 1) */ |
| 1115 | fprintf(stderr, "syscall: SunOS no support\n"); |
| 1116 | return -1; |
| 1117 | case 0x91d02008: |
| 1118 | /* Solaris 2.x syscall trap. (per 2) */ |
| 1119 | set_personality(1); |
| 1120 | break; |
| 1121 | case 0x91d02009: |
| 1122 | /* NetBSD/FreeBSD syscall trap. */ |
| 1123 | fprintf(stderr, "syscall: NetBSD/FreeBSD not supported\n"); |
| 1124 | return -1; |
| 1125 | case 0x91d02027: |
| 1126 | /* Solaris 2.x gettimeofday */ |
| 1127 | set_personality(1); |
| 1128 | break; |
| 1129 | default: |
Denys Vlasenko | 8cd1acd | 2011-08-24 16:52:57 +0200 | [diff] [blame] | 1130 | # if defined (SPARC64) |
| 1131 | fprintf(stderr, "syscall: unknown syscall trap %08lx %016lx\n", trap, regs.tpc); |
| 1132 | # else |
| 1133 | fprintf(stderr, "syscall: unknown syscall trap %08lx %08lx\n", trap, regs.pc); |
| 1134 | # endif |
| 1135 | return -1; |
| 1136 | } |
| 1137 | |
| 1138 | /* Extract the system call number from the registers. */ |
| 1139 | if (trap == 0x91d02027) |
| 1140 | scno = 156; |
| 1141 | else |
| 1142 | scno = regs.u_regs[U_REG_G1]; |
| 1143 | if (scno == 0) { |
| 1144 | scno = regs.u_regs[U_REG_O0]; |
| 1145 | memmove(®s.u_regs[U_REG_O0], ®s.u_regs[U_REG_O1], 7*sizeof(regs.u_regs[0])); |
| 1146 | } |
| 1147 | # elif defined(HPPA) |
| 1148 | if (upeek(tcp, PT_GR20, &scno) < 0) |
| 1149 | return -1; |
Denys Vlasenko | ea0e6e8 | 2009-02-25 17:08:40 +0000 | [diff] [blame] | 1150 | # elif defined(SH) |
Denys Vlasenko | adedb51 | 2008-12-30 18:47:55 +0000 | [diff] [blame] | 1151 | /* |
| 1152 | * In the new syscall ABI, the system call number is in R3. |
| 1153 | */ |
| 1154 | if (upeek(tcp, 4*(REG_REG0+3), &scno) < 0) |
| 1155 | return -1; |
Wichert Akkerman | ccef637 | 2002-05-01 16:39:22 +0000 | [diff] [blame] | 1156 | |
Denys Vlasenko | adedb51 | 2008-12-30 18:47:55 +0000 | [diff] [blame] | 1157 | if (scno < 0) { |
| 1158 | /* Odd as it may seem, a glibc bug has been known to cause |
| 1159 | glibc to issue bogus negative syscall numbers. So for |
| 1160 | our purposes, make strace print what it *should* have been */ |
| 1161 | long correct_scno = (scno & 0xff); |
| 1162 | if (debug) |
Denys Vlasenko | 5ae2b7c | 2009-02-27 20:32:52 +0000 | [diff] [blame] | 1163 | fprintf(stderr, |
Denys Vlasenko | adedb51 | 2008-12-30 18:47:55 +0000 | [diff] [blame] | 1164 | "Detected glibc bug: bogus system call" |
| 1165 | " number = %ld, correcting to %ld\n", |
| 1166 | scno, |
| 1167 | correct_scno); |
| 1168 | scno = correct_scno; |
| 1169 | } |
Denys Vlasenko | ea0e6e8 | 2009-02-25 17:08:40 +0000 | [diff] [blame] | 1170 | # elif defined(SH64) |
Denys Vlasenko | 932fc7d | 2008-12-16 18:18:40 +0000 | [diff] [blame] | 1171 | if (upeek(tcp, REG_SYSCALL, &scno) < 0) |
Roland McGrath | e1e584b | 2003-06-02 19:18:58 +0000 | [diff] [blame] | 1172 | return -1; |
Denys Vlasenko | adedb51 | 2008-12-30 18:47:55 +0000 | [diff] [blame] | 1173 | scno &= 0xFFFF; |
Denys Vlasenko | ea0e6e8 | 2009-02-25 17:08:40 +0000 | [diff] [blame] | 1174 | # elif defined(CRISV10) || defined(CRISV32) |
| 1175 | if (upeek(tcp, 4*PT_R9, &scno) < 0) |
| 1176 | return -1; |
Chris Metcalf | c8c6698 | 2009-12-28 10:00:15 -0500 | [diff] [blame] | 1177 | # elif defined(TILE) |
| 1178 | if (upeek(tcp, PTREGS_OFFSET_REG(10), &scno) < 0) |
| 1179 | return -1; |
Edgar E. Iglesias | 939caba | 2010-07-06 14:21:07 +0200 | [diff] [blame] | 1180 | # elif defined(MICROBLAZE) |
| 1181 | if (upeek(tcp, 0, &scno) < 0) |
| 1182 | return -1; |
Denys Vlasenko | ea0e6e8 | 2009-02-25 17:08:40 +0000 | [diff] [blame] | 1183 | # endif |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1184 | #endif /* LINUX */ |
Denys Vlasenko | ea0e6e8 | 2009-02-25 17:08:40 +0000 | [diff] [blame] | 1185 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1186 | #ifdef SUNOS4 |
Denys Vlasenko | 932fc7d | 2008-12-16 18:18:40 +0000 | [diff] [blame] | 1187 | if (upeek(tcp, uoff(u_arg[7]), &scno) < 0) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1188 | return -1; |
Wichert Akkerman | ccef637 | 2002-05-01 16:39:22 +0000 | [diff] [blame] | 1189 | #elif defined(SH) |
Denys Vlasenko | adedb51 | 2008-12-30 18:47:55 +0000 | [diff] [blame] | 1190 | /* new syscall ABI returns result in R0 */ |
| 1191 | if (upeek(tcp, 4*REG_REG0, (long *)&r0) < 0) |
| 1192 | return -1; |
Roland McGrath | f5a4777 | 2003-06-26 22:40:42 +0000 | [diff] [blame] | 1193 | #elif defined(SH64) |
Denys Vlasenko | adedb51 | 2008-12-30 18:47:55 +0000 | [diff] [blame] | 1194 | /* ABI defines result returned in r9 */ |
| 1195 | if (upeek(tcp, REG_GENERAL(9), (long *)&r9) < 0) |
| 1196 | return -1; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1197 | #endif |
Denys Vlasenko | ea0e6e8 | 2009-02-25 17:08:40 +0000 | [diff] [blame] | 1198 | |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 1199 | #ifdef USE_PROCFS |
Denys Vlasenko | ea0e6e8 | 2009-02-25 17:08:40 +0000 | [diff] [blame] | 1200 | # ifdef HAVE_PR_SYSCALL |
John Hughes | 2529971 | 2001-03-06 10:10:06 +0000 | [diff] [blame] | 1201 | scno = tcp->status.PR_SYSCALL; |
Denys Vlasenko | ea0e6e8 | 2009-02-25 17:08:40 +0000 | [diff] [blame] | 1202 | # else |
| 1203 | # ifndef FREEBSD |
Wichert Akkerman | 9ce1a63 | 1999-08-29 23:15:07 +0000 | [diff] [blame] | 1204 | scno = tcp->status.PR_WHAT; |
Denys Vlasenko | ea0e6e8 | 2009-02-25 17:08:40 +0000 | [diff] [blame] | 1205 | # else |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 1206 | if (pread(tcp->pfd_reg, ®s, sizeof(regs), 0) < 0) { |
Denys Vlasenko | adedb51 | 2008-12-30 18:47:55 +0000 | [diff] [blame] | 1207 | perror("pread"); |
| 1208 | return -1; |
| 1209 | } |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 1210 | switch (regs.r_eax) { |
| 1211 | case SYS_syscall: |
| 1212 | case SYS___syscall: |
Denys Vlasenko | adedb51 | 2008-12-30 18:47:55 +0000 | [diff] [blame] | 1213 | pread(tcp->pfd, &scno, sizeof(scno), regs.r_esp + sizeof(int)); |
| 1214 | break; |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 1215 | default: |
Denys Vlasenko | adedb51 | 2008-12-30 18:47:55 +0000 | [diff] [blame] | 1216 | scno = regs.r_eax; |
| 1217 | break; |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 1218 | } |
Denys Vlasenko | ea0e6e8 | 2009-02-25 17:08:40 +0000 | [diff] [blame] | 1219 | # endif /* FREEBSD */ |
| 1220 | # endif /* !HAVE_PR_SYSCALL */ |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 1221 | #endif /* USE_PROCFS */ |
Denys Vlasenko | ea0e6e8 | 2009-02-25 17:08:40 +0000 | [diff] [blame] | 1222 | |
Denys Vlasenko | 8cd1acd | 2011-08-24 16:52:57 +0200 | [diff] [blame] | 1223 | tcp->scno = scno; |
Pavel Machek | 4dc3b14 | 2000-02-01 17:58:41 +0000 | [diff] [blame] | 1224 | return 1; |
| 1225 | } |
| 1226 | |
Roland McGrath | 1735279 | 2005-06-07 23:21:26 +0000 | [diff] [blame] | 1227 | long |
Dmitry V. Levin | bd13645 | 2011-02-18 23:19:47 +0000 | [diff] [blame] | 1228 | known_scno(struct tcb *tcp) |
Roland McGrath | 1735279 | 2005-06-07 23:21:26 +0000 | [diff] [blame] | 1229 | { |
| 1230 | long scno = tcp->scno; |
Dmitry V. Levin | bd13645 | 2011-02-18 23:19:47 +0000 | [diff] [blame] | 1231 | #if SUPPORTED_PERSONALITIES > 1 |
Denys Vlasenko | cb6f056 | 2011-08-25 01:13:43 +0200 | [diff] [blame] | 1232 | if (SCNO_IN_RANGE(scno) && sysent[scno].native_scno != 0) |
Roland McGrath | 1735279 | 2005-06-07 23:21:26 +0000 | [diff] [blame] | 1233 | scno = sysent[scno].native_scno; |
| 1234 | else |
Dmitry V. Levin | bd13645 | 2011-02-18 23:19:47 +0000 | [diff] [blame] | 1235 | #endif |
Roland McGrath | 1735279 | 2005-06-07 23:21:26 +0000 | [diff] [blame] | 1236 | scno += NR_SYSCALL_BASE; |
| 1237 | return scno; |
| 1238 | } |
| 1239 | |
Denys Vlasenko | 20c41fd | 2011-08-25 10:23:00 +0200 | [diff] [blame] | 1240 | /* Called at each syscall entry. |
Denys Vlasenko | bc161ec | 2009-01-02 18:02:45 +0000 | [diff] [blame] | 1241 | * Returns: |
Denys Vlasenko | b88f961 | 2011-08-21 18:03:23 +0200 | [diff] [blame] | 1242 | * 0: "ignore this ptrace stop", bail out of trace_syscall() silently. |
Roland McGrath | eb9e2e8 | 2009-06-02 16:49:22 -0700 | [diff] [blame] | 1243 | * 1: ok, continue in trace_syscall(). |
| 1244 | * other: error, trace_syscall() should print error indicator |
Denys Vlasenko | bc161ec | 2009-01-02 18:02:45 +0000 | [diff] [blame] | 1245 | * ("????" etc) and bail out. |
| 1246 | */ |
Roland McGrath | a4d4853 | 2005-06-08 20:45:28 +0000 | [diff] [blame] | 1247 | static int |
Denys Vlasenko | ea0e6e8 | 2009-02-25 17:08:40 +0000 | [diff] [blame] | 1248 | syscall_fixup(struct tcb *tcp) |
Pavel Machek | 4dc3b14 | 2000-02-01 17:58:41 +0000 | [diff] [blame] | 1249 | { |
Denys Vlasenko | 932fc7d | 2008-12-16 18:18:40 +0000 | [diff] [blame] | 1250 | #ifdef USE_PROCFS |
Roland McGrath | 1735279 | 2005-06-07 23:21:26 +0000 | [diff] [blame] | 1251 | int scno = known_scno(tcp); |
Pavel Machek | 4dc3b14 | 2000-02-01 17:58:41 +0000 | [diff] [blame] | 1252 | |
Denys Vlasenko | ece9879 | 2011-08-25 10:25:35 +0200 | [diff] [blame^] | 1253 | if (tcp->status.PR_WHY != PR_SYSENTRY) { |
| 1254 | if ( |
| 1255 | scno == SYS_fork |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1256 | #ifdef SYS_vfork |
Denys Vlasenko | ece9879 | 2011-08-25 10:25:35 +0200 | [diff] [blame^] | 1257 | || scno == SYS_vfork |
| 1258 | #endif |
John Hughes | 4e36a81 | 2001-04-18 15:11:51 +0000 | [diff] [blame] | 1259 | #ifdef SYS_fork1 |
Denys Vlasenko | ece9879 | 2011-08-25 10:25:35 +0200 | [diff] [blame^] | 1260 | || scno == SYS_fork1 |
| 1261 | #endif |
John Hughes | 4e36a81 | 2001-04-18 15:11:51 +0000 | [diff] [blame] | 1262 | #ifdef SYS_forkall |
Denys Vlasenko | ece9879 | 2011-08-25 10:25:35 +0200 | [diff] [blame^] | 1263 | || scno == SYS_forkall |
| 1264 | #endif |
John Hughes | 4e36a81 | 2001-04-18 15:11:51 +0000 | [diff] [blame] | 1265 | #ifdef SYS_rfork1 |
Denys Vlasenko | ece9879 | 2011-08-25 10:25:35 +0200 | [diff] [blame^] | 1266 | || scno == SYS_rfork1 |
| 1267 | #endif |
John Hughes | 4e36a81 | 2001-04-18 15:11:51 +0000 | [diff] [blame] | 1268 | #ifdef SYS_rforkall |
Denys Vlasenko | ece9879 | 2011-08-25 10:25:35 +0200 | [diff] [blame^] | 1269 | || scno == SYS_rforkall |
| 1270 | #endif |
| 1271 | ) { |
| 1272 | /* We are returning in the child, fake it. */ |
| 1273 | tcp->status.PR_WHY = PR_SYSENTRY; |
| 1274 | trace_syscall(tcp); |
| 1275 | tcp->status.PR_WHY = PR_SYSEXIT; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1276 | } |
Denys Vlasenko | ece9879 | 2011-08-25 10:25:35 +0200 | [diff] [blame^] | 1277 | else { |
| 1278 | fprintf(stderr, "syscall: missing entry\n"); |
| 1279 | tcp->flags |= TCB_INSYSCALL; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1280 | } |
| 1281 | } |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 1282 | #endif /* USE_PROCFS */ |
Denys Vlasenko | b88f961 | 2011-08-21 18:03:23 +0200 | [diff] [blame] | 1283 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1284 | #ifdef SUNOS4 |
Denys Vlasenko | ece9879 | 2011-08-25 10:25:35 +0200 | [diff] [blame^] | 1285 | if (scno == 0) { |
| 1286 | fprintf(stderr, "syscall: missing entry\n"); |
| 1287 | tcp->flags |= TCB_INSYSCALL; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1288 | } |
Denys Vlasenko | ece9879 | 2011-08-25 10:25:35 +0200 | [diff] [blame^] | 1289 | #endif |
Denys Vlasenko | b88f961 | 2011-08-21 18:03:23 +0200 | [diff] [blame] | 1290 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1291 | #ifdef LINUX |
Denys Vlasenko | b88f961 | 2011-08-21 18:03:23 +0200 | [diff] [blame] | 1292 | /* A common case of "not a syscall entry" is post-execve SIGTRAP */ |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1293 | #if defined (I386) |
Denys Vlasenko | 18beb98 | 2011-08-24 16:59:23 +0200 | [diff] [blame] | 1294 | /* With PTRACE_O_TRACEEXEC, post-execve SIGTRAP is disabled. |
| 1295 | * Every extra ptrace call is expensive, so check EAX |
| 1296 | * on syscall entry only if PTRACE_O_TRACEEXEC is not enabled: |
| 1297 | */ |
Denys Vlasenko | ece9879 | 2011-08-25 10:25:35 +0200 | [diff] [blame^] | 1298 | if (!(ptrace_setoptions & PTRACE_O_TRACEEXEC)) { |
Denys Vlasenko | 18beb98 | 2011-08-24 16:59:23 +0200 | [diff] [blame] | 1299 | if (upeek(tcp, 4*EAX, &eax) < 0) |
| 1300 | return -1; |
| 1301 | if (eax != -ENOSYS) { |
| 1302 | if (debug) |
| 1303 | fprintf(stderr, "not a syscall entry (eax = %ld)\n", eax); |
| 1304 | return 0; |
| 1305 | } |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1306 | } |
Michal Ludvig | 0e03550 | 2002-09-23 15:41:01 +0000 | [diff] [blame] | 1307 | #elif defined (X86_64) |
Denys Vlasenko | ece9879 | 2011-08-25 10:25:35 +0200 | [diff] [blame^] | 1308 | if (!(ptrace_setoptions & PTRACE_O_TRACEEXEC)) { |
Denys Vlasenko | 18beb98 | 2011-08-24 16:59:23 +0200 | [diff] [blame] | 1309 | if (upeek(tcp, 8*RAX, &rax) < 0) |
| 1310 | return -1; |
| 1311 | if (current_personality == 1) |
| 1312 | rax = (long int)(int)rax; /* sign extend from 32 bits */ |
| 1313 | if (rax != -ENOSYS && entering(tcp)) { |
| 1314 | if (debug) |
| 1315 | fprintf(stderr, "not a syscall entry (rax = %ld)\n", rax); |
| 1316 | return 0; |
| 1317 | } |
Michal Ludvig | 0e03550 | 2002-09-23 15:41:01 +0000 | [diff] [blame] | 1318 | } |
Michal Ludvig | 10a88d0 | 2002-10-07 14:31:00 +0000 | [diff] [blame] | 1319 | #elif defined (S390) || defined (S390X) |
Denys Vlasenko | 932fc7d | 2008-12-16 18:18:40 +0000 | [diff] [blame] | 1320 | if (upeek(tcp, PT_GPR2, &gpr2) < 0) |
Wichert Akkerman | 12f75d1 | 2000-02-14 16:23:40 +0000 | [diff] [blame] | 1321 | return -1; |
Michal Ludvig | 882eda8 | 2002-11-11 12:50:47 +0000 | [diff] [blame] | 1322 | if (syscall_mode != -ENOSYS) |
| 1323 | syscall_mode = tcp->scno; |
Denys Vlasenko | ece9879 | 2011-08-25 10:25:35 +0200 | [diff] [blame^] | 1324 | if (gpr2 != syscall_mode) { |
Wichert Akkerman | 12f75d1 | 2000-02-14 16:23:40 +0000 | [diff] [blame] | 1325 | if (debug) |
Denys Vlasenko | b88f961 | 2011-08-21 18:03:23 +0200 | [diff] [blame] | 1326 | fprintf(stderr, "not a syscall entry (gpr2 = %ld)\n", gpr2); |
Wichert Akkerman | 12f75d1 | 2000-02-14 16:23:40 +0000 | [diff] [blame] | 1327 | return 0; |
| 1328 | } |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1329 | #elif defined (POWERPC) |
| 1330 | # define SO_MASK 0x10000000 |
Denys Vlasenko | 932fc7d | 2008-12-16 18:18:40 +0000 | [diff] [blame] | 1331 | if (upeek(tcp, sizeof(unsigned long)*PT_CCR, &flags) < 0) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1332 | return -1; |
Denys Vlasenko | 932fc7d | 2008-12-16 18:18:40 +0000 | [diff] [blame] | 1333 | if (upeek(tcp, sizeof(unsigned long)*PT_R3, &result) < 0) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1334 | return -1; |
| 1335 | if (flags & SO_MASK) |
| 1336 | result = -result; |
| 1337 | #elif defined (M68K) |
Denys Vlasenko | 932fc7d | 2008-12-16 18:18:40 +0000 | [diff] [blame] | 1338 | if (upeek(tcp, 4*PT_D0, &d0) < 0) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1339 | return -1; |
Denys Vlasenko | ece9879 | 2011-08-25 10:25:35 +0200 | [diff] [blame^] | 1340 | if (d0 != -ENOSYS) { |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1341 | if (debug) |
Denys Vlasenko | b88f961 | 2011-08-21 18:03:23 +0200 | [diff] [blame] | 1342 | fprintf(stderr, "not a syscall entry (d0 = %ld)\n", d0); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1343 | return 0; |
| 1344 | } |
| 1345 | #elif defined (ARM) |
Denys Vlasenko | ece9879 | 2011-08-25 10:25:35 +0200 | [diff] [blame^] | 1346 | /* Nothing required */ |
Dmitry V. Levin | 87ea1f4 | 2008-11-10 22:21:41 +0000 | [diff] [blame] | 1347 | #elif defined(BFIN) |
Denys Vlasenko | 932fc7d | 2008-12-16 18:18:40 +0000 | [diff] [blame] | 1348 | if (upeek(tcp, PT_R0, &r0) < 0) |
Dmitry V. Levin | 87ea1f4 | 2008-11-10 22:21:41 +0000 | [diff] [blame] | 1349 | return -1; |
Wichert Akkerman | c1652e2 | 2001-03-27 12:17:16 +0000 | [diff] [blame] | 1350 | #elif defined (HPPA) |
Denys Vlasenko | 932fc7d | 2008-12-16 18:18:40 +0000 | [diff] [blame] | 1351 | if (upeek(tcp, PT_GR28, &r28) < 0) |
Wichert Akkerman | c1652e2 | 2001-03-27 12:17:16 +0000 | [diff] [blame] | 1352 | return -1; |
Wichert Akkerman | 7b3346b | 2001-10-09 23:47:38 +0000 | [diff] [blame] | 1353 | #elif defined(IA64) |
Denys Vlasenko | 932fc7d | 2008-12-16 18:18:40 +0000 | [diff] [blame] | 1354 | if (upeek(tcp, PT_R10, &r10) < 0) |
Wichert Akkerman | 7b3346b | 2001-10-09 23:47:38 +0000 | [diff] [blame] | 1355 | return -1; |
Denys Vlasenko | 932fc7d | 2008-12-16 18:18:40 +0000 | [diff] [blame] | 1356 | if (upeek(tcp, PT_R8, &r8) < 0) |
Wichert Akkerman | 7b3346b | 2001-10-09 23:47:38 +0000 | [diff] [blame] | 1357 | return -1; |
Denys Vlasenko | ece9879 | 2011-08-25 10:25:35 +0200 | [diff] [blame^] | 1358 | if (ia32 && r8 != -ENOSYS) { |
Wichert Akkerman | 7b3346b | 2001-10-09 23:47:38 +0000 | [diff] [blame] | 1359 | if (debug) |
Denys Vlasenko | b88f961 | 2011-08-21 18:03:23 +0200 | [diff] [blame] | 1360 | fprintf(stderr, "not a syscall entry (r8 = %ld)\n", r8); |
Wichert Akkerman | 7b3346b | 2001-10-09 23:47:38 +0000 | [diff] [blame] | 1361 | return 0; |
| 1362 | } |
Denys Vlasenko | ea0e6e8 | 2009-02-25 17:08:40 +0000 | [diff] [blame] | 1363 | #elif defined(CRISV10) || defined(CRISV32) |
Edgar E. Iglesias | eeb9ce3 | 2009-10-05 14:41:02 +0000 | [diff] [blame] | 1364 | if (upeek(tcp, 4*PT_R10, &r10) < 0) |
Denys Vlasenko | ea0e6e8 | 2009-02-25 17:08:40 +0000 | [diff] [blame] | 1365 | return -1; |
Denys Vlasenko | ece9879 | 2011-08-25 10:25:35 +0200 | [diff] [blame^] | 1366 | if (r10 != -ENOSYS) { |
Denys Vlasenko | ea0e6e8 | 2009-02-25 17:08:40 +0000 | [diff] [blame] | 1367 | if (debug) |
Denys Vlasenko | b88f961 | 2011-08-21 18:03:23 +0200 | [diff] [blame] | 1368 | fprintf(stderr, "not a syscall entry (r10 = %ld)\n", r10); |
Denys Vlasenko | ea0e6e8 | 2009-02-25 17:08:40 +0000 | [diff] [blame] | 1369 | return 0; |
| 1370 | } |
Edgar E. Iglesias | 939caba | 2010-07-06 14:21:07 +0200 | [diff] [blame] | 1371 | #elif defined(MICROBLAZE) |
| 1372 | if (upeek(tcp, 3 * 4, &r3) < 0) |
| 1373 | return -1; |
Denys Vlasenko | ece9879 | 2011-08-25 10:25:35 +0200 | [diff] [blame^] | 1374 | if (r3 != -ENOSYS) { |
Edgar E. Iglesias | 939caba | 2010-07-06 14:21:07 +0200 | [diff] [blame] | 1375 | if (debug) |
Denys Vlasenko | b88f961 | 2011-08-21 18:03:23 +0200 | [diff] [blame] | 1376 | fprintf(stderr, "not a syscall entry (r3 = %ld)\n", r3); |
Edgar E. Iglesias | 939caba | 2010-07-06 14:21:07 +0200 | [diff] [blame] | 1377 | return 0; |
| 1378 | } |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1379 | #endif |
| 1380 | #endif /* LINUX */ |
Pavel Machek | 4dc3b14 | 2000-02-01 17:58:41 +0000 | [diff] [blame] | 1381 | return 1; |
| 1382 | } |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1383 | |
Denys Vlasenko | a614692 | 2011-08-24 18:07:22 +0200 | [diff] [blame] | 1384 | static int |
| 1385 | internal_syscall(struct tcb *tcp) |
Roland McGrath | c1e4592 | 2008-05-27 23:18:29 +0000 | [diff] [blame] | 1386 | { |
Denys Vlasenko | a614692 | 2011-08-24 18:07:22 +0200 | [diff] [blame] | 1387 | /* |
| 1388 | * We must always trace a few critical system calls in order to |
| 1389 | * correctly support following forks in the presence of tracing |
| 1390 | * qualifiers. |
| 1391 | */ |
| 1392 | int (*func)(); |
| 1393 | |
Denys Vlasenko | cb6f056 | 2011-08-25 01:13:43 +0200 | [diff] [blame] | 1394 | if (!SCNO_IN_RANGE(tcp->scno)) |
Denys Vlasenko | a614692 | 2011-08-24 18:07:22 +0200 | [diff] [blame] | 1395 | return 0; |
| 1396 | |
| 1397 | func = sysent[tcp->scno].sys_func; |
| 1398 | |
| 1399 | if ( sys_fork == func |
| 1400 | #if defined(FREEBSD) || defined(LINUX) || defined(SUNOS4) |
| 1401 | || sys_vfork == func |
| 1402 | #endif |
| 1403 | #ifdef LINUX |
| 1404 | || sys_clone == func |
| 1405 | #endif |
| 1406 | #if UNIXWARE > 2 |
| 1407 | || sys_rfork == func |
| 1408 | #endif |
| 1409 | ) |
| 1410 | return internal_fork(tcp); |
| 1411 | |
| 1412 | #if defined SUNOS4 || (defined LINUX && defined TCB_WAITEXECVE) |
| 1413 | if ( sys_execve == func |
| 1414 | # if defined(SPARC) || defined(SPARC64) || defined(SUNOS4) |
| 1415 | || sys_execv == func |
Denys Vlasenko | a794974 | 2011-08-21 17:26:55 +0200 | [diff] [blame] | 1416 | # endif |
Denys Vlasenko | a614692 | 2011-08-24 18:07:22 +0200 | [diff] [blame] | 1417 | # if UNIXWARE > 2 |
| 1418 | || sys_rexecve == func |
| 1419 | # endif |
| 1420 | ) |
| 1421 | return internal_exec(tcp); |
Roland McGrath | c1e4592 | 2008-05-27 23:18:29 +0000 | [diff] [blame] | 1422 | #endif |
| 1423 | |
Denys Vlasenko | a614692 | 2011-08-24 18:07:22 +0200 | [diff] [blame] | 1424 | return 0; |
Pavel Machek | 4dc3b14 | 2000-02-01 17:58:41 +0000 | [diff] [blame] | 1425 | } |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1426 | |
Roland McGrath | a4d4853 | 2005-06-08 20:45:28 +0000 | [diff] [blame] | 1427 | static int |
Denys Vlasenko | ea0e6e8 | 2009-02-25 17:08:40 +0000 | [diff] [blame] | 1428 | syscall_enter(struct tcb *tcp) |
Pavel Machek | 4dc3b14 | 2000-02-01 17:58:41 +0000 | [diff] [blame] | 1429 | { |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1430 | #ifdef LINUX |
Dmitry V. Levin | 5f731c4 | 2011-08-23 16:24:20 +0000 | [diff] [blame] | 1431 | int i, nargs; |
| 1432 | |
Denys Vlasenko | cb6f056 | 2011-08-25 01:13:43 +0200 | [diff] [blame] | 1433 | if (SCNO_IN_RANGE(tcp->scno)) |
Dmitry V. Levin | 5f731c4 | 2011-08-23 16:24:20 +0000 | [diff] [blame] | 1434 | nargs = tcp->u_nargs = sysent[tcp->scno].nargs; |
Denys Vlasenko | f5d099c | 2011-06-23 22:10:54 +0200 | [diff] [blame] | 1435 | else |
Dmitry V. Levin | 5f731c4 | 2011-08-23 16:24:20 +0000 | [diff] [blame] | 1436 | nargs = tcp->u_nargs = MAX_ARGS; |
| 1437 | |
| 1438 | # if defined(S390) || defined(S390X) |
| 1439 | for (i = 0; i < nargs; ++i) |
Denys Vlasenko | f5d099c | 2011-06-23 22:10:54 +0200 | [diff] [blame] | 1440 | if (upeek(tcp, i==0 ? PT_ORIGGPR2 : PT_GPR2 + i*sizeof(long), &tcp->u_arg[i]) < 0) |
| 1441 | return -1; |
Denys Vlasenko | f5d099c | 2011-06-23 22:10:54 +0200 | [diff] [blame] | 1442 | # elif defined(ALPHA) |
Dmitry V. Levin | 5f731c4 | 2011-08-23 16:24:20 +0000 | [diff] [blame] | 1443 | for (i = 0; i < nargs; ++i) |
Denys Vlasenko | f5d099c | 2011-06-23 22:10:54 +0200 | [diff] [blame] | 1444 | if (upeek(tcp, REG_A0+i, &tcp->u_arg[i]) < 0) |
| 1445 | return -1; |
Denys Vlasenko | f5d099c | 2011-06-23 22:10:54 +0200 | [diff] [blame] | 1446 | # elif defined(IA64) |
| 1447 | if (!ia32) { |
Dmitry V. Levin | 5f731c4 | 2011-08-23 16:24:20 +0000 | [diff] [blame] | 1448 | unsigned long *out0, cfm, sof, sol; |
Denys Vlasenko | f5d099c | 2011-06-23 22:10:54 +0200 | [diff] [blame] | 1449 | long rbs_end; |
| 1450 | /* be backwards compatible with kernel < 2.4.4... */ |
| 1451 | # ifndef PT_RBS_END |
| 1452 | # define PT_RBS_END PT_AR_BSP |
| 1453 | # endif |
Wichert Akkerman | 8b1b40c | 2000-02-03 21:58:30 +0000 | [diff] [blame] | 1454 | |
Denys Vlasenko | f5d099c | 2011-06-23 22:10:54 +0200 | [diff] [blame] | 1455 | if (upeek(tcp, PT_RBS_END, &rbs_end) < 0) |
| 1456 | return -1; |
| 1457 | if (upeek(tcp, PT_CFM, (long *) &cfm) < 0) |
Roland McGrath | 542c2c6 | 2008-05-20 01:11:56 +0000 | [diff] [blame] | 1458 | return -1; |
| 1459 | |
Denys Vlasenko | f5d099c | 2011-06-23 22:10:54 +0200 | [diff] [blame] | 1460 | sof = (cfm >> 0) & 0x7f; |
| 1461 | sol = (cfm >> 7) & 0x7f; |
| 1462 | out0 = ia64_rse_skip_regs((unsigned long *) rbs_end, -sof + sol); |
| 1463 | |
Dmitry V. Levin | 5f731c4 | 2011-08-23 16:24:20 +0000 | [diff] [blame] | 1464 | for (i = 0; i < nargs; ++i) { |
Denys Vlasenko | f5d099c | 2011-06-23 22:10:54 +0200 | [diff] [blame] | 1465 | if (umoven(tcp, (unsigned long) ia64_rse_skip_regs(out0, i), |
| 1466 | sizeof(long), (char *) &tcp->u_arg[i]) < 0) |
| 1467 | return -1; |
| 1468 | } |
| 1469 | } else { |
Dmitry V. Levin | 5f731c4 | 2011-08-23 16:24:20 +0000 | [diff] [blame] | 1470 | static const int argreg[MAX_ARGS] = { PT_R11 /* EBX = out0 */, |
| 1471 | PT_R9 /* ECX = out1 */, |
| 1472 | PT_R10 /* EDX = out2 */, |
| 1473 | PT_R14 /* ESI = out3 */, |
| 1474 | PT_R15 /* EDI = out4 */, |
| 1475 | PT_R13 /* EBP = out5 */}; |
Denys Vlasenko | f5d099c | 2011-06-23 22:10:54 +0200 | [diff] [blame] | 1476 | |
Dmitry V. Levin | 5f731c4 | 2011-08-23 16:24:20 +0000 | [diff] [blame] | 1477 | for (i = 0; i < nargs; ++i) { |
| 1478 | if (upeek(tcp, argreg[i], &tcp->u_arg[i]) < 0) |
| 1479 | return -1; |
Denys Vlasenko | f5d099c | 2011-06-23 22:10:54 +0200 | [diff] [blame] | 1480 | /* truncate away IVE sign-extension */ |
| 1481 | tcp->u_arg[i] &= 0xffffffff; |
Dmitry V. Levin | 5f731c4 | 2011-08-23 16:24:20 +0000 | [diff] [blame] | 1482 | } |
Denys Vlasenko | f5d099c | 2011-06-23 22:10:54 +0200 | [diff] [blame] | 1483 | } |
| 1484 | # elif defined(LINUX_MIPSN32) || defined(LINUX_MIPSN64) |
| 1485 | /* N32 and N64 both use up to six registers. */ |
| 1486 | unsigned long long regs[38]; |
Denys Vlasenko | f5d099c | 2011-06-23 22:10:54 +0200 | [diff] [blame] | 1487 | |
| 1488 | if (ptrace(PTRACE_GETREGS, tcp->pid, NULL, (long) ®s) < 0) |
| 1489 | return -1; |
| 1490 | |
Dmitry V. Levin | 5f731c4 | 2011-08-23 16:24:20 +0000 | [diff] [blame] | 1491 | for (i = 0; i < nargs; ++i) { |
Denys Vlasenko | f5d099c | 2011-06-23 22:10:54 +0200 | [diff] [blame] | 1492 | tcp->u_arg[i] = regs[REG_A0 + i]; |
| 1493 | # if defined(LINUX_MIPSN32) |
| 1494 | tcp->ext_arg[i] = regs[REG_A0 + i]; |
| 1495 | # endif |
| 1496 | } |
| 1497 | # elif defined(MIPS) |
Denys Vlasenko | f5d099c | 2011-06-23 22:10:54 +0200 | [diff] [blame] | 1498 | if (nargs > 4) { |
Dmitry V. Levin | 5f731c4 | 2011-08-23 16:24:20 +0000 | [diff] [blame] | 1499 | long sp; |
| 1500 | |
Denys Vlasenko | f5d099c | 2011-06-23 22:10:54 +0200 | [diff] [blame] | 1501 | if (upeek(tcp, REG_SP, &sp) < 0) |
| 1502 | return -1; |
Dmitry V. Levin | 5f731c4 | 2011-08-23 16:24:20 +0000 | [diff] [blame] | 1503 | for (i = 0; i < 4; ++i) |
Denys Vlasenko | f5d099c | 2011-06-23 22:10:54 +0200 | [diff] [blame] | 1504 | if (upeek(tcp, REG_A0 + i, &tcp->u_arg[i]) < 0) |
| 1505 | return -1; |
Dmitry V. Levin | 5f731c4 | 2011-08-23 16:24:20 +0000 | [diff] [blame] | 1506 | umoven(tcp, sp + 16, (nargs - 4) * sizeof(tcp->u_arg[0]), |
Denys Vlasenko | f5d099c | 2011-06-23 22:10:54 +0200 | [diff] [blame] | 1507 | (char *)(tcp->u_arg + 4)); |
| 1508 | } else { |
Dmitry V. Levin | 5f731c4 | 2011-08-23 16:24:20 +0000 | [diff] [blame] | 1509 | for (i = 0; i < nargs; ++i) |
Denys Vlasenko | f5d099c | 2011-06-23 22:10:54 +0200 | [diff] [blame] | 1510 | if (upeek(tcp, REG_A0 + i, &tcp->u_arg[i]) < 0) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1511 | return -1; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1512 | } |
Denys Vlasenko | f5d099c | 2011-06-23 22:10:54 +0200 | [diff] [blame] | 1513 | # elif defined(POWERPC) |
| 1514 | # ifndef PT_ORIG_R3 |
| 1515 | # define PT_ORIG_R3 34 |
| 1516 | # endif |
Dmitry V. Levin | 5f731c4 | 2011-08-23 16:24:20 +0000 | [diff] [blame] | 1517 | for (i = 0; i < nargs; ++i) { |
Denys Vlasenko | f5d099c | 2011-06-23 22:10:54 +0200 | [diff] [blame] | 1518 | if (upeek(tcp, (i==0) ? |
| 1519 | (sizeof(unsigned long) * PT_ORIG_R3) : |
| 1520 | ((i+PT_R3) * sizeof(unsigned long)), |
| 1521 | &tcp->u_arg[i]) < 0) |
| 1522 | return -1; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1523 | } |
Denys Vlasenko | f5d099c | 2011-06-23 22:10:54 +0200 | [diff] [blame] | 1524 | # elif defined(SPARC) || defined(SPARC64) |
Dmitry V. Levin | 5f731c4 | 2011-08-23 16:24:20 +0000 | [diff] [blame] | 1525 | for (i = 0; i < nargs; ++i) |
Denys Vlasenko | f5d099c | 2011-06-23 22:10:54 +0200 | [diff] [blame] | 1526 | tcp->u_arg[i] = regs.u_regs[U_REG_O0 + i]; |
| 1527 | # elif defined(HPPA) |
Dmitry V. Levin | 5f731c4 | 2011-08-23 16:24:20 +0000 | [diff] [blame] | 1528 | for (i = 0; i < nargs; ++i) |
Denys Vlasenko | f5d099c | 2011-06-23 22:10:54 +0200 | [diff] [blame] | 1529 | if (upeek(tcp, PT_GR26-4*i, &tcp->u_arg[i]) < 0) |
| 1530 | return -1; |
Denys Vlasenko | f5d099c | 2011-06-23 22:10:54 +0200 | [diff] [blame] | 1531 | # elif defined(ARM) |
Dmitry V. Levin | 5f731c4 | 2011-08-23 16:24:20 +0000 | [diff] [blame] | 1532 | for (i = 0; i < nargs; ++i) |
Denys Vlasenko | f5d099c | 2011-06-23 22:10:54 +0200 | [diff] [blame] | 1533 | tcp->u_arg[i] = regs.uregs[i]; |
| 1534 | # elif defined(AVR32) |
Dmitry V. Levin | 5f731c4 | 2011-08-23 16:24:20 +0000 | [diff] [blame] | 1535 | static const unsigned long *argregp[MAX_ARGS] = { ®s.r12, |
| 1536 | ®s.r11, |
| 1537 | ®s.r10, |
| 1538 | ®s.r9, |
| 1539 | ®s.r5, |
| 1540 | ®s.r3 }; |
| 1541 | for (i = 0; i < nargs; ++i) |
| 1542 | tcp->u_arg[i] = *argregp[i]; |
Denys Vlasenko | f5d099c | 2011-06-23 22:10:54 +0200 | [diff] [blame] | 1543 | # elif defined(BFIN) |
Dmitry V. Levin | 5f731c4 | 2011-08-23 16:24:20 +0000 | [diff] [blame] | 1544 | static const int argreg[MAX_ARGS] = { PT_R0, PT_R1, PT_R2, PT_R3, PT_R4, PT_R5 }; |
Denys Vlasenko | f5d099c | 2011-06-23 22:10:54 +0200 | [diff] [blame] | 1545 | |
Denys Vlasenko | 4b887a5 | 2011-08-23 13:32:38 +0200 | [diff] [blame] | 1546 | for (i = 0; i < nargs; ++i) |
Denys Vlasenko | f5d099c | 2011-06-23 22:10:54 +0200 | [diff] [blame] | 1547 | if (upeek(tcp, argreg[i], &tcp->u_arg[i]) < 0) |
| 1548 | return -1; |
| 1549 | # elif defined(SH) |
Dmitry V. Levin | 5f731c4 | 2011-08-23 16:24:20 +0000 | [diff] [blame] | 1550 | static const int syscall_regs[MAX_ARGS] = { |
| 1551 | 4 * (REG_REG0+4), 4 * (REG_REG0+5), 4 * (REG_REG0+6), |
| 1552 | 4 * (REG_REG0+7), 4 * (REG_REG0 ), 4 * (REG_REG0+1) |
Denys Vlasenko | f5d099c | 2011-06-23 22:10:54 +0200 | [diff] [blame] | 1553 | }; |
| 1554 | |
Dmitry V. Levin | 5f731c4 | 2011-08-23 16:24:20 +0000 | [diff] [blame] | 1555 | for (i = 0; i < nargs; ++i) |
Denys Vlasenko | 0b6c73c | 2011-06-23 22:22:34 +0200 | [diff] [blame] | 1556 | if (upeek(tcp, syscall_regs[i], &tcp->u_arg[i]) < 0) |
Denys Vlasenko | f5d099c | 2011-06-23 22:10:54 +0200 | [diff] [blame] | 1557 | return -1; |
Denys Vlasenko | f5d099c | 2011-06-23 22:10:54 +0200 | [diff] [blame] | 1558 | # elif defined(SH64) |
| 1559 | int i; |
| 1560 | /* Registers used by SH5 Linux system calls for parameters */ |
Dmitry V. Levin | 5f731c4 | 2011-08-23 16:24:20 +0000 | [diff] [blame] | 1561 | static const int syscall_regs[MAX_ARGS] = { 2, 3, 4, 5, 6, 7 }; |
Roland McGrath | e1e584b | 2003-06-02 19:18:58 +0000 | [diff] [blame] | 1562 | |
Dmitry V. Levin | 5f731c4 | 2011-08-23 16:24:20 +0000 | [diff] [blame] | 1563 | for (i = 0; i < nargs; ++i) |
Denys Vlasenko | f5d099c | 2011-06-23 22:10:54 +0200 | [diff] [blame] | 1564 | if (upeek(tcp, REG_GENERAL(syscall_regs[i]), &tcp->u_arg[i]) < 0) |
| 1565 | return -1; |
Denys Vlasenko | f5d099c | 2011-06-23 22:10:54 +0200 | [diff] [blame] | 1566 | # elif defined(X86_64) |
Denys Vlasenko | 0b6c73c | 2011-06-23 22:22:34 +0200 | [diff] [blame] | 1567 | static const int argreg[SUPPORTED_PERSONALITIES][MAX_ARGS] = { |
| 1568 | { 8 * RDI, 8 * RSI, 8 * RDX, 8 * R10, 8 * R8 , 8 * R9 }, /* x86-64 ABI */ |
| 1569 | { 8 * RBX, 8 * RCX, 8 * RDX, 8 * RSI, 8 * RDI, 8 * RBP } /* i386 ABI */ |
Denys Vlasenko | f5d099c | 2011-06-23 22:10:54 +0200 | [diff] [blame] | 1570 | }; |
| 1571 | |
Dmitry V. Levin | 5f731c4 | 2011-08-23 16:24:20 +0000 | [diff] [blame] | 1572 | for (i = 0; i < nargs; ++i) |
Denys Vlasenko | 0b6c73c | 2011-06-23 22:22:34 +0200 | [diff] [blame] | 1573 | if (upeek(tcp, argreg[current_personality][i], &tcp->u_arg[i]) < 0) |
Denys Vlasenko | f5d099c | 2011-06-23 22:10:54 +0200 | [diff] [blame] | 1574 | return -1; |
Denys Vlasenko | f5d099c | 2011-06-23 22:10:54 +0200 | [diff] [blame] | 1575 | # elif defined(MICROBLAZE) |
Dmitry V. Levin | 5f731c4 | 2011-08-23 16:24:20 +0000 | [diff] [blame] | 1576 | for (i = 0; i < nargs; ++i) |
Denys Vlasenko | f5d099c | 2011-06-23 22:10:54 +0200 | [diff] [blame] | 1577 | if (upeek(tcp, (5 + i) * 4, &tcp->u_arg[i]) < 0) |
| 1578 | return -1; |
Denys Vlasenko | f5d099c | 2011-06-23 22:10:54 +0200 | [diff] [blame] | 1579 | # elif defined(CRISV10) || defined(CRISV32) |
Dmitry V. Levin | 5f731c4 | 2011-08-23 16:24:20 +0000 | [diff] [blame] | 1580 | static const int crisregs[MAX_ARGS] = { |
Denys Vlasenko | f5d099c | 2011-06-23 22:10:54 +0200 | [diff] [blame] | 1581 | 4*PT_ORIG_R10, 4*PT_R11, 4*PT_R12, |
Denys Vlasenko | 0b6c73c | 2011-06-23 22:22:34 +0200 | [diff] [blame] | 1582 | 4*PT_R13 , 4*PT_MOF, 4*PT_SRP |
Denys Vlasenko | f5d099c | 2011-06-23 22:10:54 +0200 | [diff] [blame] | 1583 | }; |
Roland McGrath | e1e584b | 2003-06-02 19:18:58 +0000 | [diff] [blame] | 1584 | |
Dmitry V. Levin | 5f731c4 | 2011-08-23 16:24:20 +0000 | [diff] [blame] | 1585 | for (i = 0; i < nargs; ++i) |
Denys Vlasenko | f5d099c | 2011-06-23 22:10:54 +0200 | [diff] [blame] | 1586 | if (upeek(tcp, crisregs[i], &tcp->u_arg[i]) < 0) |
| 1587 | return -1; |
Denys Vlasenko | f5d099c | 2011-06-23 22:10:54 +0200 | [diff] [blame] | 1588 | # elif defined(TILE) |
Dmitry V. Levin | 5f731c4 | 2011-08-23 16:24:20 +0000 | [diff] [blame] | 1589 | for (i = 0; i < nargs; ++i) |
Denys Vlasenko | f5d099c | 2011-06-23 22:10:54 +0200 | [diff] [blame] | 1590 | if (upeek(tcp, PTREGS_OFFSET_REG(i), &tcp->u_arg[i]) < 0) |
| 1591 | return -1; |
Denys Vlasenko | f5d099c | 2011-06-23 22:10:54 +0200 | [diff] [blame] | 1592 | # elif defined(M68K) |
Dmitry V. Levin | 5f731c4 | 2011-08-23 16:24:20 +0000 | [diff] [blame] | 1593 | for (i = 0; i < nargs; ++i) |
Denys Vlasenko | f5d099c | 2011-06-23 22:10:54 +0200 | [diff] [blame] | 1594 | if (upeek(tcp, (i < 5 ? i : i + 2)*4, &tcp->u_arg[i]) < 0) |
| 1595 | return -1; |
Denys Vlasenko | f5d099c | 2011-06-23 22:10:54 +0200 | [diff] [blame] | 1596 | # else /* Other architecture (like i386) (32bits specific) */ |
Dmitry V. Levin | 5f731c4 | 2011-08-23 16:24:20 +0000 | [diff] [blame] | 1597 | for (i = 0; i < nargs; ++i) |
Denys Vlasenko | f5d099c | 2011-06-23 22:10:54 +0200 | [diff] [blame] | 1598 | if (upeek(tcp, i*4, &tcp->u_arg[i]) < 0) |
| 1599 | return -1; |
Denys Vlasenko | f5d099c | 2011-06-23 22:10:54 +0200 | [diff] [blame] | 1600 | # endif |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1601 | #endif /* LINUX */ |
| 1602 | #ifdef SUNOS4 |
Denys Vlasenko | 4b887a5 | 2011-08-23 13:32:38 +0200 | [diff] [blame] | 1603 | int i, nargs; |
Denys Vlasenko | cb6f056 | 2011-08-25 01:13:43 +0200 | [diff] [blame] | 1604 | if (SCNO_IN_RANGE(tcp->scno)) |
Denys Vlasenko | 4b887a5 | 2011-08-23 13:32:38 +0200 | [diff] [blame] | 1605 | nargs = tcp->u_nargs = sysent[tcp->scno].nargs; |
Denys Vlasenko | f5d099c | 2011-06-23 22:10:54 +0200 | [diff] [blame] | 1606 | else |
Denys Vlasenko | 4b887a5 | 2011-08-23 13:32:38 +0200 | [diff] [blame] | 1607 | nargs = tcp->u_nargs = MAX_ARGS; |
| 1608 | for (i = 0; i < nargs; i++) { |
Denys Vlasenko | f5d099c | 2011-06-23 22:10:54 +0200 | [diff] [blame] | 1609 | struct user *u; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1610 | |
Denys Vlasenko | f5d099c | 2011-06-23 22:10:54 +0200 | [diff] [blame] | 1611 | if (upeek(tcp, uoff(u_arg[0]) + |
| 1612 | (i * sizeof(u->u_arg[0])), &tcp->u_arg[i]) < 0) |
| 1613 | return -1; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1614 | } |
| 1615 | #endif /* SUNOS4 */ |
| 1616 | #ifdef SVR4 |
Denys Vlasenko | f5d099c | 2011-06-23 22:10:54 +0200 | [diff] [blame] | 1617 | # ifdef MIPS |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1618 | /* |
| 1619 | * SGI is broken: even though it has pr_sysarg, it doesn't |
| 1620 | * set them on system call entry. Get a clue. |
| 1621 | */ |
Denys Vlasenko | cb6f056 | 2011-08-25 01:13:43 +0200 | [diff] [blame] | 1622 | if (SCNO_IN_RANGE(tcp->scno)) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1623 | tcp->u_nargs = sysent[tcp->scno].nargs; |
| 1624 | else |
| 1625 | tcp->u_nargs = tcp->status.pr_nsysarg; |
| 1626 | if (tcp->u_nargs > 4) { |
| 1627 | memcpy(tcp->u_arg, &tcp->status.pr_reg[CTX_A0], |
Denys Vlasenko | f5d099c | 2011-06-23 22:10:54 +0200 | [diff] [blame] | 1628 | 4 * sizeof(tcp->u_arg[0])); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1629 | umoven(tcp, tcp->status.pr_reg[CTX_SP] + 16, |
Denys Vlasenko | f5d099c | 2011-06-23 22:10:54 +0200 | [diff] [blame] | 1630 | (tcp->u_nargs - 4) * sizeof(tcp->u_arg[0]), (char *) (tcp->u_arg + 4)); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1631 | } |
| 1632 | else { |
| 1633 | memcpy(tcp->u_arg, &tcp->status.pr_reg[CTX_A0], |
Denys Vlasenko | f5d099c | 2011-06-23 22:10:54 +0200 | [diff] [blame] | 1634 | tcp->u_nargs * sizeof(tcp->u_arg[0])); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1635 | } |
Denys Vlasenko | f5d099c | 2011-06-23 22:10:54 +0200 | [diff] [blame] | 1636 | # elif UNIXWARE >= 2 |
John Hughes | 2529971 | 2001-03-06 10:10:06 +0000 | [diff] [blame] | 1637 | /* |
| 1638 | * Like SGI, UnixWare doesn't set pr_sysarg until system call exit |
| 1639 | */ |
Denys Vlasenko | cb6f056 | 2011-08-25 01:13:43 +0200 | [diff] [blame] | 1640 | if (SCNO_IN_RANGE(tcp->scno)) |
John Hughes | 2529971 | 2001-03-06 10:10:06 +0000 | [diff] [blame] | 1641 | tcp->u_nargs = sysent[tcp->scno].nargs; |
| 1642 | else |
| 1643 | tcp->u_nargs = tcp->status.pr_lwp.pr_nsysarg; |
| 1644 | umoven(tcp, tcp->status.PR_REG[UESP] + 4, |
Denys Vlasenko | f5d099c | 2011-06-23 22:10:54 +0200 | [diff] [blame] | 1645 | tcp->u_nargs * sizeof(tcp->u_arg[0]), (char *) tcp->u_arg); |
| 1646 | # elif defined(HAVE_PR_SYSCALL) |
| 1647 | int i; |
Denys Vlasenko | cb6f056 | 2011-08-25 01:13:43 +0200 | [diff] [blame] | 1648 | if (SCNO_IN_RANGE(tcp->scno)) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1649 | tcp->u_nargs = sysent[tcp->scno].nargs; |
| 1650 | else |
| 1651 | tcp->u_nargs = tcp->status.pr_nsysarg; |
Denys Vlasenko | f5d099c | 2011-06-23 22:10:54 +0200 | [diff] [blame] | 1652 | for (i = 0; i < tcp->u_nargs; i++) |
| 1653 | tcp->u_arg[i] = tcp->status.pr_sysarg[i]; |
| 1654 | # elif defined(I386) |
Denys Vlasenko | cb6f056 | 2011-08-25 01:13:43 +0200 | [diff] [blame] | 1655 | if (SCNO_IN_RANGE(tcp->scno)) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1656 | tcp->u_nargs = sysent[tcp->scno].nargs; |
| 1657 | else |
| 1658 | tcp->u_nargs = 5; |
Denys Vlasenko | 4660fe6 | 2011-06-09 01:32:23 +0200 | [diff] [blame] | 1659 | if (tcp->u_nargs > 0) |
| 1660 | umoven(tcp, tcp->status.PR_REG[UESP] + 4, |
Denys Vlasenko | f5d099c | 2011-06-23 22:10:54 +0200 | [diff] [blame] | 1661 | tcp->u_nargs * sizeof(tcp->u_arg[0]), (char *) tcp->u_arg); |
| 1662 | # else |
John Hughes | 2529971 | 2001-03-06 10:10:06 +0000 | [diff] [blame] | 1663 | I DONT KNOW WHAT TO DO |
Denys Vlasenko | f5d099c | 2011-06-23 22:10:54 +0200 | [diff] [blame] | 1664 | # endif |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1665 | #endif /* SVR4 */ |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 1666 | #ifdef FREEBSD |
Denys Vlasenko | cb6f056 | 2011-08-25 01:13:43 +0200 | [diff] [blame] | 1667 | if (SCNO_IN_RANGE(tcp->scno) && |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 1668 | sysent[tcp->scno].nargs > tcp->status.val) |
| 1669 | tcp->u_nargs = sysent[tcp->scno].nargs; |
Roland McGrath | 761b5d7 | 2002-12-15 23:58:31 +0000 | [diff] [blame] | 1670 | else |
Denys Vlasenko | 5ae2b7c | 2009-02-27 20:32:52 +0000 | [diff] [blame] | 1671 | tcp->u_nargs = tcp->status.val; |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 1672 | if (tcp->u_nargs < 0) |
| 1673 | tcp->u_nargs = 0; |
| 1674 | if (tcp->u_nargs > MAX_ARGS) |
| 1675 | tcp->u_nargs = MAX_ARGS; |
Denys Vlasenko | b63256e | 2011-06-07 12:13:24 +0200 | [diff] [blame] | 1676 | switch (regs.r_eax) { |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 1677 | case SYS___syscall: |
| 1678 | pread(tcp->pfd, &tcp->u_arg, tcp->u_nargs * sizeof(unsigned long), |
| 1679 | regs.r_esp + sizeof(int) + sizeof(quad_t)); |
Denys Vlasenko | adedb51 | 2008-12-30 18:47:55 +0000 | [diff] [blame] | 1680 | break; |
| 1681 | case SYS_syscall: |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 1682 | pread(tcp->pfd, &tcp->u_arg, tcp->u_nargs * sizeof(unsigned long), |
| 1683 | regs.r_esp + 2 * sizeof(int)); |
Denys Vlasenko | adedb51 | 2008-12-30 18:47:55 +0000 | [diff] [blame] | 1684 | break; |
| 1685 | default: |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 1686 | pread(tcp->pfd, &tcp->u_arg, tcp->u_nargs * sizeof(unsigned long), |
| 1687 | regs.r_esp + sizeof(int)); |
Denys Vlasenko | adedb51 | 2008-12-30 18:47:55 +0000 | [diff] [blame] | 1688 | break; |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 1689 | } |
| 1690 | #endif /* FREEBSD */ |
Pavel Machek | 4dc3b14 | 2000-02-01 17:58:41 +0000 | [diff] [blame] | 1691 | return 1; |
| 1692 | } |
| 1693 | |
Dmitry V. Levin | 7d7c963 | 2010-03-29 17:51:02 +0000 | [diff] [blame] | 1694 | static int |
Denys Vlasenko | ed4f4f0 | 2011-08-22 11:54:06 +0200 | [diff] [blame] | 1695 | trace_syscall_entering(struct tcb *tcp) |
| 1696 | { |
| 1697 | int res, scno_good; |
| 1698 | |
Denys Vlasenko | 2ce12ed | 2011-08-24 17:25:32 +0200 | [diff] [blame] | 1699 | #if defined TCB_WAITEXECVE |
| 1700 | if (tcp->flags & TCB_WAITEXECVE) { |
| 1701 | /* This is the post-execve SIGTRAP. */ |
| 1702 | tcp->flags &= ~TCB_WAITEXECVE; |
| 1703 | return 0; |
| 1704 | } |
| 1705 | #endif |
| 1706 | |
Denys Vlasenko | 06602d9 | 2011-08-24 17:53:52 +0200 | [diff] [blame] | 1707 | scno_good = res = get_scno(tcp); |
Denys Vlasenko | ed4f4f0 | 2011-08-22 11:54:06 +0200 | [diff] [blame] | 1708 | if (res == 0) |
| 1709 | return res; |
| 1710 | if (res == 1) |
| 1711 | res = syscall_fixup(tcp); |
| 1712 | if (res == 0) |
| 1713 | return res; |
| 1714 | if (res == 1) |
| 1715 | res = syscall_enter(tcp); |
| 1716 | if (res == 0) |
| 1717 | return res; |
| 1718 | |
| 1719 | if (res != 1) { |
| 1720 | printleader(tcp); |
| 1721 | tcp->flags &= ~TCB_REPRINT; |
| 1722 | tcp_last = tcp; |
| 1723 | if (scno_good != 1) |
| 1724 | tprintf("????" /* anti-trigraph gap */ "("); |
Denys Vlasenko | cb6f056 | 2011-08-25 01:13:43 +0200 | [diff] [blame] | 1725 | else if (!SCNO_IN_RANGE(tcp->scno)) |
Denys Vlasenko | ed4f4f0 | 2011-08-22 11:54:06 +0200 | [diff] [blame] | 1726 | tprintf("syscall_%lu(", tcp->scno); |
| 1727 | else |
| 1728 | tprintf("%s(", sysent[tcp->scno].sys_name); |
| 1729 | /* |
| 1730 | * " <unavailable>" will be added later by the code which |
| 1731 | * detects ptrace errors. |
| 1732 | */ |
| 1733 | goto ret; |
| 1734 | } |
| 1735 | |
| 1736 | switch (known_scno(tcp)) { |
| 1737 | #ifdef SYS_socket_subcall |
| 1738 | case SYS_socketcall: |
| 1739 | decode_subcall(tcp, SYS_socket_subcall, |
| 1740 | SYS_socket_nsubcalls, deref_style); |
| 1741 | break; |
| 1742 | #endif |
| 1743 | #ifdef SYS_ipc_subcall |
| 1744 | case SYS_ipc: |
| 1745 | decode_subcall(tcp, SYS_ipc_subcall, |
| 1746 | SYS_ipc_nsubcalls, shift_style); |
| 1747 | break; |
| 1748 | #endif |
| 1749 | #ifdef SVR4 |
| 1750 | #ifdef SYS_pgrpsys_subcall |
| 1751 | case SYS_pgrpsys: |
| 1752 | decode_subcall(tcp, SYS_pgrpsys_subcall, |
| 1753 | SYS_pgrpsys_nsubcalls, shift_style); |
| 1754 | break; |
| 1755 | #endif /* SYS_pgrpsys_subcall */ |
| 1756 | #ifdef SYS_sigcall_subcall |
| 1757 | case SYS_sigcall: |
| 1758 | decode_subcall(tcp, SYS_sigcall_subcall, |
| 1759 | SYS_sigcall_nsubcalls, mask_style); |
| 1760 | break; |
| 1761 | #endif /* SYS_sigcall_subcall */ |
| 1762 | case SYS_msgsys: |
| 1763 | decode_subcall(tcp, SYS_msgsys_subcall, |
| 1764 | SYS_msgsys_nsubcalls, shift_style); |
| 1765 | break; |
| 1766 | case SYS_shmsys: |
| 1767 | decode_subcall(tcp, SYS_shmsys_subcall, |
| 1768 | SYS_shmsys_nsubcalls, shift_style); |
| 1769 | break; |
| 1770 | case SYS_semsys: |
| 1771 | decode_subcall(tcp, SYS_semsys_subcall, |
| 1772 | SYS_semsys_nsubcalls, shift_style); |
| 1773 | break; |
| 1774 | case SYS_sysfs: |
| 1775 | decode_subcall(tcp, SYS_sysfs_subcall, |
| 1776 | SYS_sysfs_nsubcalls, shift_style); |
| 1777 | break; |
| 1778 | case SYS_spcall: |
| 1779 | decode_subcall(tcp, SYS_spcall_subcall, |
| 1780 | SYS_spcall_nsubcalls, shift_style); |
| 1781 | break; |
| 1782 | #ifdef SYS_context_subcall |
| 1783 | case SYS_context: |
| 1784 | decode_subcall(tcp, SYS_context_subcall, |
| 1785 | SYS_context_nsubcalls, shift_style); |
| 1786 | break; |
| 1787 | #endif /* SYS_context_subcall */ |
| 1788 | #ifdef SYS_door_subcall |
| 1789 | case SYS_door: |
| 1790 | decode_subcall(tcp, SYS_door_subcall, |
| 1791 | SYS_door_nsubcalls, door_style); |
| 1792 | break; |
| 1793 | #endif /* SYS_door_subcall */ |
| 1794 | #ifdef SYS_kaio_subcall |
| 1795 | case SYS_kaio: |
| 1796 | decode_subcall(tcp, SYS_kaio_subcall, |
| 1797 | SYS_kaio_nsubcalls, shift_style); |
| 1798 | break; |
| 1799 | #endif |
| 1800 | #endif /* SVR4 */ |
| 1801 | #ifdef FREEBSD |
| 1802 | case SYS_msgsys: |
| 1803 | case SYS_shmsys: |
| 1804 | case SYS_semsys: |
| 1805 | decode_subcall(tcp, 0, 0, table_style); |
| 1806 | break; |
| 1807 | #endif |
| 1808 | #ifdef SUNOS4 |
| 1809 | case SYS_semsys: |
| 1810 | decode_subcall(tcp, SYS_semsys_subcall, |
| 1811 | SYS_semsys_nsubcalls, shift_style); |
| 1812 | break; |
| 1813 | case SYS_msgsys: |
| 1814 | decode_subcall(tcp, SYS_msgsys_subcall, |
| 1815 | SYS_msgsys_nsubcalls, shift_style); |
| 1816 | break; |
| 1817 | case SYS_shmsys: |
| 1818 | decode_subcall(tcp, SYS_shmsys_subcall, |
| 1819 | SYS_shmsys_nsubcalls, shift_style); |
| 1820 | break; |
| 1821 | #endif |
| 1822 | } |
| 1823 | |
| 1824 | internal_syscall(tcp); |
| 1825 | |
Denys Vlasenko | cb6f056 | 2011-08-25 01:13:43 +0200 | [diff] [blame] | 1826 | if ((SCNO_IN_RANGE(tcp->scno) && |
Denys Vlasenko | ed4f4f0 | 2011-08-22 11:54:06 +0200 | [diff] [blame] | 1827 | !(qual_flags[tcp->scno] & QUAL_TRACE)) || |
| 1828 | (tracing_paths && !pathtrace_match(tcp))) { |
| 1829 | tcp->flags |= TCB_INSYSCALL | TCB_FILTERED; |
| 1830 | return 0; |
| 1831 | } |
| 1832 | |
| 1833 | tcp->flags &= ~TCB_FILTERED; |
| 1834 | |
| 1835 | if (cflag == CFLAG_ONLY_STATS) { |
| 1836 | res = 0; |
| 1837 | goto ret; |
| 1838 | } |
| 1839 | |
| 1840 | printleader(tcp); |
| 1841 | tcp->flags &= ~TCB_REPRINT; |
| 1842 | tcp_last = tcp; |
Denys Vlasenko | cb6f056 | 2011-08-25 01:13:43 +0200 | [diff] [blame] | 1843 | if (!SCNO_IN_RANGE(tcp->scno)) |
Denys Vlasenko | ed4f4f0 | 2011-08-22 11:54:06 +0200 | [diff] [blame] | 1844 | tprintf("syscall_%lu(", tcp->scno); |
| 1845 | else |
| 1846 | tprintf("%s(", sysent[tcp->scno].sys_name); |
Denys Vlasenko | cb6f056 | 2011-08-25 01:13:43 +0200 | [diff] [blame] | 1847 | if (!SCNO_IN_RANGE(tcp->scno) || |
Denys Vlasenko | ed4f4f0 | 2011-08-22 11:54:06 +0200 | [diff] [blame] | 1848 | ((qual_flags[tcp->scno] & QUAL_RAW) && |
| 1849 | sysent[tcp->scno].sys_func != sys_exit)) |
| 1850 | res = printargs(tcp); |
| 1851 | else |
| 1852 | res = (*sysent[tcp->scno].sys_func)(tcp); |
| 1853 | |
| 1854 | if (fflush(tcp->outf) == EOF) |
| 1855 | return -1; |
| 1856 | ret: |
| 1857 | tcp->flags |= TCB_INSYSCALL; |
| 1858 | /* Measure the entrance time as late as possible to avoid errors. */ |
| 1859 | if (dtime || cflag) |
| 1860 | gettimeofday(&tcp->etime, NULL); |
| 1861 | return res; |
| 1862 | } |
| 1863 | |
Denys Vlasenko | a614692 | 2011-08-24 18:07:22 +0200 | [diff] [blame] | 1864 | /* Returns: |
| 1865 | * 0: "ignore this ptrace stop", bail out of trace_syscall() silently. |
| 1866 | * 1: ok, continue in trace_syscall(). |
| 1867 | * other: error, trace_syscall() should print error indicator |
| 1868 | * ("????" etc) and bail out. |
| 1869 | */ |
| 1870 | static int |
| 1871 | get_syscall_result(struct tcb *tcp) |
| 1872 | { |
| 1873 | #ifdef LINUX |
| 1874 | # if defined(S390) || defined(S390X) |
| 1875 | # elif defined (POWERPC) |
| 1876 | # elif defined(AVR32) |
| 1877 | /* Read complete register set in one go. */ |
| 1878 | if (ptrace(PTRACE_GETREGS, tcp->pid, NULL, ®s) < 0) |
| 1879 | return -1; |
| 1880 | # elif defined(BFIN) |
| 1881 | # elif defined (I386) |
| 1882 | if (upeek(tcp, 4*EAX, &eax) < 0) |
| 1883 | return -1; |
| 1884 | # elif defined (X86_64) |
| 1885 | if (upeek(tcp, 8*RAX, &rax) < 0) |
| 1886 | return -1; |
| 1887 | # elif defined(IA64) |
| 1888 | # define IA64_PSR_IS ((long)1 << 34) |
| 1889 | if (upeek(tcp, PT_CR_IPSR, &psr) >= 0) |
| 1890 | ia32 = (psr & IA64_PSR_IS) != 0; |
| 1891 | if (upeek(tcp, PT_R8, &r8) < 0) |
| 1892 | return -1; |
| 1893 | if (upeek(tcp, PT_R10, &r10) < 0) |
| 1894 | return -1; |
| 1895 | # elif defined (ARM) |
| 1896 | /* Read complete register set in one go. */ |
| 1897 | if (ptrace(PTRACE_GETREGS, tcp->pid, NULL, (void *)®s) == -1) |
| 1898 | return -1; |
| 1899 | # elif defined (M68K) |
| 1900 | # elif defined (LINUX_MIPSN32) |
| 1901 | unsigned long long regs[38]; |
| 1902 | |
| 1903 | if (ptrace(PTRACE_GETREGS, tcp->pid, NULL, (long) ®s) < 0) |
| 1904 | return -1; |
| 1905 | a3 = regs[REG_A3]; |
| 1906 | r2 = regs[REG_V0]; |
| 1907 | # elif defined (MIPS) |
| 1908 | if (upeek(tcp, REG_A3, &a3) < 0) |
| 1909 | return -1; |
| 1910 | if (upeek(tcp, REG_V0, &r2) < 0) |
| 1911 | return -1; |
| 1912 | # elif defined (ALPHA) |
| 1913 | if (upeek(tcp, REG_A3, &a3) < 0) |
| 1914 | return -1; |
| 1915 | if (upeek(tcp, REG_R0, &r0) < 0) |
| 1916 | return -1; |
| 1917 | # elif defined (SPARC) || defined (SPARC64) |
| 1918 | /* Everything we need is in the current register set. */ |
| 1919 | if (ptrace(PTRACE_GETREGS, tcp->pid, (char *)®s, 0) < 0) |
| 1920 | return -1; |
| 1921 | # elif defined(HPPA) |
| 1922 | # elif defined(SH) |
| 1923 | # elif defined(SH64) |
| 1924 | # elif defined(CRISV10) || defined(CRISV32) |
| 1925 | # elif defined(TILE) |
| 1926 | # elif defined(MICROBLAZE) |
| 1927 | # endif |
| 1928 | #endif /* LINUX */ |
| 1929 | |
| 1930 | #ifdef SUNOS4 |
| 1931 | #elif defined(SH) |
| 1932 | /* new syscall ABI returns result in R0 */ |
| 1933 | if (upeek(tcp, 4*REG_REG0, (long *)&r0) < 0) |
| 1934 | return -1; |
| 1935 | #elif defined(SH64) |
| 1936 | /* ABI defines result returned in r9 */ |
| 1937 | if (upeek(tcp, REG_GENERAL(9), (long *)&r9) < 0) |
| 1938 | return -1; |
| 1939 | #endif |
| 1940 | |
| 1941 | #ifdef USE_PROCFS |
| 1942 | # ifndef HAVE_PR_SYSCALL |
| 1943 | # ifdef FREEBSD |
| 1944 | if (pread(tcp->pfd_reg, ®s, sizeof(regs), 0) < 0) { |
| 1945 | perror("pread"); |
| 1946 | return -1; |
| 1947 | } |
| 1948 | # endif /* FREEBSD */ |
| 1949 | # endif /* !HAVE_PR_SYSCALL */ |
| 1950 | #endif /* USE_PROCFS */ |
| 1951 | |
| 1952 | return 1; |
| 1953 | } |
| 1954 | |
Denys Vlasenko | 20c41fd | 2011-08-25 10:23:00 +0200 | [diff] [blame] | 1955 | /* Called at each syscall exit. |
| 1956 | * Returns: |
| 1957 | * 0: "ignore this ptrace stop", bail out of trace_syscall() silently. |
| 1958 | * 1: ok, continue in trace_syscall(). |
| 1959 | * other: error, trace_syscall() should print error indicator |
| 1960 | * ("????" etc) and bail out. |
| 1961 | */ |
| 1962 | static int |
| 1963 | syscall_fixup_on_sysexit(struct tcb *tcp) |
| 1964 | { |
| 1965 | #ifdef USE_PROCFS |
Denys Vlasenko | ece9879 | 2011-08-25 10:25:35 +0200 | [diff] [blame^] | 1966 | if (tcp->status.PR_WHY != PR_SYSEXIT) { |
| 1967 | fprintf(stderr, "syscall: missing exit\n"); |
| 1968 | tcp->flags &= ~TCB_INSYSCALL; |
Denys Vlasenko | 20c41fd | 2011-08-25 10:23:00 +0200 | [diff] [blame] | 1969 | } |
| 1970 | #endif /* USE_PROCFS */ |
| 1971 | |
| 1972 | #ifdef SUNOS4 |
Denys Vlasenko | ece9879 | 2011-08-25 10:25:35 +0200 | [diff] [blame^] | 1973 | { |
| 1974 | int scno = known_scno(tcp); |
Denys Vlasenko | 20c41fd | 2011-08-25 10:23:00 +0200 | [diff] [blame] | 1975 | if (scno != 0) { |
| 1976 | if (debug) { |
| 1977 | /* |
| 1978 | * This happens when a signal handler |
| 1979 | * for a signal which interrupted a |
| 1980 | * a system call makes another system call. |
| 1981 | */ |
| 1982 | fprintf(stderr, "syscall: missing exit\n"); |
| 1983 | } |
| 1984 | tcp->flags &= ~TCB_INSYSCALL; |
| 1985 | } |
| 1986 | } |
| 1987 | #endif /* SUNOS4 */ |
| 1988 | |
| 1989 | #ifdef LINUX |
Denys Vlasenko | ece9879 | 2011-08-25 10:25:35 +0200 | [diff] [blame^] | 1990 | #if defined (S390) || defined (S390X) |
Denys Vlasenko | 20c41fd | 2011-08-25 10:23:00 +0200 | [diff] [blame] | 1991 | if (upeek(tcp, PT_GPR2, &gpr2) < 0) |
| 1992 | return -1; |
| 1993 | if (syscall_mode != -ENOSYS) |
| 1994 | syscall_mode = tcp->scno; |
Denys Vlasenko | ece9879 | 2011-08-25 10:25:35 +0200 | [diff] [blame^] | 1995 | if ((tcp->flags & TCB_WAITEXECVE) |
Denys Vlasenko | 20c41fd | 2011-08-25 10:23:00 +0200 | [diff] [blame] | 1996 | && (gpr2 == -ENOSYS || gpr2 == tcp->scno)) { |
| 1997 | /* |
| 1998 | * Return from execve. |
| 1999 | * Fake a return value of zero. We leave the TCB_WAITEXECVE |
| 2000 | * flag set for the post-execve SIGTRAP to see and reset. |
| 2001 | */ |
| 2002 | gpr2 = 0; |
| 2003 | } |
| 2004 | #elif defined (POWERPC) |
| 2005 | # define SO_MASK 0x10000000 |
| 2006 | if (upeek(tcp, sizeof(unsigned long)*PT_CCR, &flags) < 0) |
| 2007 | return -1; |
| 2008 | if (upeek(tcp, sizeof(unsigned long)*PT_R3, &result) < 0) |
| 2009 | return -1; |
| 2010 | if (flags & SO_MASK) |
| 2011 | result = -result; |
| 2012 | #elif defined (M68K) |
| 2013 | if (upeek(tcp, 4*PT_D0, &d0) < 0) |
| 2014 | return -1; |
Denys Vlasenko | 20c41fd | 2011-08-25 10:23:00 +0200 | [diff] [blame] | 2015 | #elif defined (ARM) |
Denys Vlasenko | ece9879 | 2011-08-25 10:25:35 +0200 | [diff] [blame^] | 2016 | /* Nothing required */ |
Denys Vlasenko | 20c41fd | 2011-08-25 10:23:00 +0200 | [diff] [blame] | 2017 | #elif defined(BFIN) |
| 2018 | if (upeek(tcp, PT_R0, &r0) < 0) |
| 2019 | return -1; |
| 2020 | #elif defined (HPPA) |
| 2021 | if (upeek(tcp, PT_GR28, &r28) < 0) |
| 2022 | return -1; |
| 2023 | #elif defined(IA64) |
| 2024 | if (upeek(tcp, PT_R10, &r10) < 0) |
| 2025 | return -1; |
| 2026 | if (upeek(tcp, PT_R8, &r8) < 0) |
| 2027 | return -1; |
Denys Vlasenko | 20c41fd | 2011-08-25 10:23:00 +0200 | [diff] [blame] | 2028 | #elif defined(CRISV10) || defined(CRISV32) |
| 2029 | if (upeek(tcp, 4*PT_R10, &r10) < 0) |
| 2030 | return -1; |
Denys Vlasenko | 20c41fd | 2011-08-25 10:23:00 +0200 | [diff] [blame] | 2031 | #elif defined(MICROBLAZE) |
| 2032 | if (upeek(tcp, 3 * 4, &r3) < 0) |
| 2033 | return -1; |
Denys Vlasenko | 20c41fd | 2011-08-25 10:23:00 +0200 | [diff] [blame] | 2034 | #endif |
| 2035 | #endif /* LINUX */ |
| 2036 | return 1; |
| 2037 | } |
| 2038 | |
Denys Vlasenko | a614692 | 2011-08-24 18:07:22 +0200 | [diff] [blame] | 2039 | #ifdef LINUX |
| 2040 | /* |
| 2041 | * Check the syscall return value register value for whether it is |
| 2042 | * a negated errno code indicating an error, or a success return value. |
| 2043 | */ |
| 2044 | static inline int |
| 2045 | is_negated_errno(unsigned long int val) |
| 2046 | { |
| 2047 | unsigned long int max = -(long int) nerrnos; |
| 2048 | # if SUPPORTED_PERSONALITIES > 1 |
| 2049 | if (personality_wordsize[current_personality] < sizeof(val)) { |
| 2050 | val = (unsigned int) val; |
| 2051 | max = (unsigned int) max; |
| 2052 | } |
| 2053 | # endif |
| 2054 | return val > max; |
| 2055 | } |
| 2056 | #endif |
| 2057 | |
| 2058 | static int |
| 2059 | get_error(struct tcb *tcp) |
| 2060 | { |
| 2061 | int u_error = 0; |
| 2062 | #ifdef LINUX |
| 2063 | int check_errno = 1; |
Denys Vlasenko | cb6f056 | 2011-08-25 01:13:43 +0200 | [diff] [blame] | 2064 | if (SCNO_IN_RANGE(tcp->scno) && |
Denys Vlasenko | a614692 | 2011-08-24 18:07:22 +0200 | [diff] [blame] | 2065 | sysent[tcp->scno].sys_flags & SYSCALL_NEVER_FAILS) { |
| 2066 | check_errno = 0; |
| 2067 | } |
| 2068 | # if defined(S390) || defined(S390X) |
| 2069 | if (check_errno && is_negated_errno(gpr2)) { |
| 2070 | tcp->u_rval = -1; |
| 2071 | u_error = -gpr2; |
| 2072 | } |
| 2073 | else { |
| 2074 | tcp->u_rval = gpr2; |
Denys Vlasenko | a614692 | 2011-08-24 18:07:22 +0200 | [diff] [blame] | 2075 | } |
| 2076 | # elif defined(I386) |
| 2077 | if (check_errno && is_negated_errno(eax)) { |
| 2078 | tcp->u_rval = -1; |
| 2079 | u_error = -eax; |
| 2080 | } |
| 2081 | else { |
| 2082 | tcp->u_rval = eax; |
Denys Vlasenko | a614692 | 2011-08-24 18:07:22 +0200 | [diff] [blame] | 2083 | } |
| 2084 | # elif defined(X86_64) |
| 2085 | if (check_errno && is_negated_errno(rax)) { |
| 2086 | tcp->u_rval = -1; |
| 2087 | u_error = -rax; |
| 2088 | } |
| 2089 | else { |
| 2090 | tcp->u_rval = rax; |
Denys Vlasenko | a614692 | 2011-08-24 18:07:22 +0200 | [diff] [blame] | 2091 | } |
| 2092 | # elif defined(IA64) |
| 2093 | if (ia32) { |
| 2094 | int err; |
| 2095 | |
| 2096 | err = (int)r8; |
| 2097 | if (check_errno && is_negated_errno(err)) { |
| 2098 | tcp->u_rval = -1; |
| 2099 | u_error = -err; |
| 2100 | } |
| 2101 | else { |
| 2102 | tcp->u_rval = err; |
Denys Vlasenko | a614692 | 2011-08-24 18:07:22 +0200 | [diff] [blame] | 2103 | } |
| 2104 | } else { |
| 2105 | if (check_errno && r10) { |
| 2106 | tcp->u_rval = -1; |
| 2107 | u_error = r8; |
| 2108 | } else { |
| 2109 | tcp->u_rval = r8; |
Denys Vlasenko | a614692 | 2011-08-24 18:07:22 +0200 | [diff] [blame] | 2110 | } |
| 2111 | } |
| 2112 | # elif defined(MIPS) |
| 2113 | if (check_errno && a3) { |
| 2114 | tcp->u_rval = -1; |
| 2115 | u_error = r2; |
| 2116 | } else { |
| 2117 | tcp->u_rval = r2; |
Denys Vlasenko | a614692 | 2011-08-24 18:07:22 +0200 | [diff] [blame] | 2118 | } |
| 2119 | # elif defined(POWERPC) |
| 2120 | if (check_errno && is_negated_errno(result)) { |
| 2121 | tcp->u_rval = -1; |
| 2122 | u_error = -result; |
| 2123 | } |
| 2124 | else { |
| 2125 | tcp->u_rval = result; |
Denys Vlasenko | a614692 | 2011-08-24 18:07:22 +0200 | [diff] [blame] | 2126 | } |
| 2127 | # elif defined(M68K) |
| 2128 | if (check_errno && is_negated_errno(d0)) { |
| 2129 | tcp->u_rval = -1; |
| 2130 | u_error = -d0; |
| 2131 | } |
| 2132 | else { |
| 2133 | tcp->u_rval = d0; |
Denys Vlasenko | a614692 | 2011-08-24 18:07:22 +0200 | [diff] [blame] | 2134 | } |
| 2135 | # elif defined(ARM) |
| 2136 | if (check_errno && is_negated_errno(regs.ARM_r0)) { |
| 2137 | tcp->u_rval = -1; |
| 2138 | u_error = -regs.ARM_r0; |
| 2139 | } |
| 2140 | else { |
| 2141 | tcp->u_rval = regs.ARM_r0; |
Denys Vlasenko | a614692 | 2011-08-24 18:07:22 +0200 | [diff] [blame] | 2142 | } |
| 2143 | # elif defined(AVR32) |
| 2144 | if (check_errno && regs.r12 && (unsigned) -regs.r12 < nerrnos) { |
| 2145 | tcp->u_rval = -1; |
| 2146 | u_error = -regs.r12; |
| 2147 | } |
| 2148 | else { |
| 2149 | tcp->u_rval = regs.r12; |
Denys Vlasenko | a614692 | 2011-08-24 18:07:22 +0200 | [diff] [blame] | 2150 | } |
| 2151 | # elif defined(BFIN) |
| 2152 | if (check_errno && is_negated_errno(r0)) { |
| 2153 | tcp->u_rval = -1; |
| 2154 | u_error = -r0; |
| 2155 | } else { |
| 2156 | tcp->u_rval = r0; |
Denys Vlasenko | a614692 | 2011-08-24 18:07:22 +0200 | [diff] [blame] | 2157 | } |
| 2158 | # elif defined(ALPHA) |
| 2159 | if (check_errno && a3) { |
| 2160 | tcp->u_rval = -1; |
| 2161 | u_error = r0; |
| 2162 | } |
| 2163 | else { |
| 2164 | tcp->u_rval = r0; |
Denys Vlasenko | a614692 | 2011-08-24 18:07:22 +0200 | [diff] [blame] | 2165 | } |
| 2166 | # elif defined(SPARC) |
| 2167 | if (check_errno && regs.psr & PSR_C) { |
| 2168 | tcp->u_rval = -1; |
| 2169 | u_error = regs.u_regs[U_REG_O0]; |
| 2170 | } |
| 2171 | else { |
| 2172 | tcp->u_rval = regs.u_regs[U_REG_O0]; |
Denys Vlasenko | a614692 | 2011-08-24 18:07:22 +0200 | [diff] [blame] | 2173 | } |
| 2174 | # elif defined(SPARC64) |
| 2175 | if (check_errno && regs.tstate & 0x1100000000UL) { |
| 2176 | tcp->u_rval = -1; |
| 2177 | u_error = regs.u_regs[U_REG_O0]; |
| 2178 | } |
| 2179 | else { |
| 2180 | tcp->u_rval = regs.u_regs[U_REG_O0]; |
Denys Vlasenko | a614692 | 2011-08-24 18:07:22 +0200 | [diff] [blame] | 2181 | } |
| 2182 | # elif defined(HPPA) |
| 2183 | if (check_errno && is_negated_errno(r28)) { |
| 2184 | tcp->u_rval = -1; |
| 2185 | u_error = -r28; |
| 2186 | } |
| 2187 | else { |
| 2188 | tcp->u_rval = r28; |
Denys Vlasenko | a614692 | 2011-08-24 18:07:22 +0200 | [diff] [blame] | 2189 | } |
| 2190 | # elif defined(SH) |
Denys Vlasenko | a614692 | 2011-08-24 18:07:22 +0200 | [diff] [blame] | 2191 | if (check_errno && is_negated_errno(r0)) { |
| 2192 | tcp->u_rval = -1; |
| 2193 | u_error = -r0; |
| 2194 | } |
| 2195 | else { |
| 2196 | tcp->u_rval = r0; |
Denys Vlasenko | a614692 | 2011-08-24 18:07:22 +0200 | [diff] [blame] | 2197 | } |
| 2198 | # elif defined(SH64) |
Denys Vlasenko | a614692 | 2011-08-24 18:07:22 +0200 | [diff] [blame] | 2199 | if (check_errno && is_negated_errno(r9)) { |
| 2200 | tcp->u_rval = -1; |
| 2201 | u_error = -r9; |
| 2202 | } |
| 2203 | else { |
| 2204 | tcp->u_rval = r9; |
Denys Vlasenko | a614692 | 2011-08-24 18:07:22 +0200 | [diff] [blame] | 2205 | } |
| 2206 | # elif defined(CRISV10) || defined(CRISV32) |
| 2207 | if (check_errno && r10 && (unsigned) -r10 < nerrnos) { |
| 2208 | tcp->u_rval = -1; |
| 2209 | u_error = -r10; |
| 2210 | } |
| 2211 | else { |
| 2212 | tcp->u_rval = r10; |
Denys Vlasenko | a614692 | 2011-08-24 18:07:22 +0200 | [diff] [blame] | 2213 | } |
| 2214 | # elif defined(TILE) |
| 2215 | long rval; |
Denys Vlasenko | a614692 | 2011-08-24 18:07:22 +0200 | [diff] [blame] | 2216 | if (upeek(tcp, PTREGS_OFFSET_REG(0), &rval) < 0) |
| 2217 | return -1; |
| 2218 | if (check_errno && rval < 0 && rval > -nerrnos) { |
| 2219 | tcp->u_rval = -1; |
| 2220 | u_error = -rval; |
| 2221 | } |
| 2222 | else { |
| 2223 | tcp->u_rval = rval; |
Denys Vlasenko | a614692 | 2011-08-24 18:07:22 +0200 | [diff] [blame] | 2224 | } |
| 2225 | # elif defined(MICROBLAZE) |
Denys Vlasenko | a614692 | 2011-08-24 18:07:22 +0200 | [diff] [blame] | 2226 | if (check_errno && is_negated_errno(r3)) { |
| 2227 | tcp->u_rval = -1; |
| 2228 | u_error = -r3; |
| 2229 | } |
| 2230 | else { |
| 2231 | tcp->u_rval = r3; |
Denys Vlasenko | a614692 | 2011-08-24 18:07:22 +0200 | [diff] [blame] | 2232 | } |
| 2233 | # endif |
| 2234 | #endif /* LINUX */ |
| 2235 | #ifdef SUNOS4 |
| 2236 | /* get error code from user struct */ |
| 2237 | if (upeek(tcp, uoff(u_error), &u_error) < 0) |
| 2238 | return -1; |
| 2239 | u_error >>= 24; /* u_error is a char */ |
| 2240 | |
| 2241 | /* get system call return value */ |
| 2242 | if (upeek(tcp, uoff(u_rval1), &tcp->u_rval) < 0) |
| 2243 | return -1; |
| 2244 | #endif /* SUNOS4 */ |
| 2245 | #ifdef SVR4 |
| 2246 | # ifdef SPARC |
| 2247 | /* Judicious guessing goes a long way. */ |
| 2248 | if (tcp->status.pr_reg[R_PSR] & 0x100000) { |
| 2249 | tcp->u_rval = -1; |
| 2250 | u_error = tcp->status.pr_reg[R_O0]; |
| 2251 | } |
| 2252 | else { |
| 2253 | tcp->u_rval = tcp->status.pr_reg[R_O0]; |
Denys Vlasenko | a614692 | 2011-08-24 18:07:22 +0200 | [diff] [blame] | 2254 | } |
| 2255 | # endif /* SPARC */ |
| 2256 | # ifdef I386 |
Denys Vlasenko | a614692 | 2011-08-24 18:07:22 +0200 | [diff] [blame] | 2257 | if (tcp->status.PR_REG[EFL] & 0x1) { |
| 2258 | tcp->u_rval = -1; |
| 2259 | u_error = tcp->status.PR_REG[EAX]; |
| 2260 | } |
| 2261 | else { |
| 2262 | tcp->u_rval = tcp->status.PR_REG[EAX]; |
| 2263 | # ifdef HAVE_LONG_LONG |
| 2264 | tcp->u_lrval = |
| 2265 | ((unsigned long long) tcp->status.PR_REG[EDX] << 32) + |
| 2266 | tcp->status.PR_REG[EAX]; |
| 2267 | # endif |
Denys Vlasenko | a614692 | 2011-08-24 18:07:22 +0200 | [diff] [blame] | 2268 | } |
| 2269 | # endif /* I386 */ |
| 2270 | # ifdef X86_64 |
Denys Vlasenko | a614692 | 2011-08-24 18:07:22 +0200 | [diff] [blame] | 2271 | if (tcp->status.PR_REG[EFLAGS] & 0x1) { |
| 2272 | tcp->u_rval = -1; |
| 2273 | u_error = tcp->status.PR_REG[RAX]; |
| 2274 | } |
| 2275 | else { |
| 2276 | tcp->u_rval = tcp->status.PR_REG[RAX]; |
Denys Vlasenko | a614692 | 2011-08-24 18:07:22 +0200 | [diff] [blame] | 2277 | } |
| 2278 | # endif /* X86_64 */ |
| 2279 | # ifdef MIPS |
| 2280 | if (tcp->status.pr_reg[CTX_A3]) { |
| 2281 | tcp->u_rval = -1; |
| 2282 | u_error = tcp->status.pr_reg[CTX_V0]; |
| 2283 | } |
| 2284 | else { |
| 2285 | tcp->u_rval = tcp->status.pr_reg[CTX_V0]; |
Denys Vlasenko | a614692 | 2011-08-24 18:07:22 +0200 | [diff] [blame] | 2286 | } |
| 2287 | # endif /* MIPS */ |
| 2288 | #endif /* SVR4 */ |
| 2289 | #ifdef FREEBSD |
| 2290 | if (regs.r_eflags & PSL_C) { |
| 2291 | tcp->u_rval = -1; |
| 2292 | u_error = regs.r_eax; |
| 2293 | } else { |
| 2294 | tcp->u_rval = regs.r_eax; |
| 2295 | tcp->u_lrval = |
Denys Vlasenko | 684fb1a | 2011-08-25 00:26:38 +0200 | [diff] [blame] | 2296 | ((unsigned long long) regs.r_edx << 32) + regs.r_eax; |
Denys Vlasenko | a614692 | 2011-08-24 18:07:22 +0200 | [diff] [blame] | 2297 | } |
| 2298 | #endif /* FREEBSD */ |
| 2299 | tcp->u_error = u_error; |
| 2300 | return 1; |
| 2301 | } |
| 2302 | |
| 2303 | static void |
| 2304 | dumpio(struct tcb *tcp) |
| 2305 | { |
| 2306 | if (syserror(tcp)) |
| 2307 | return; |
| 2308 | if (tcp->u_arg[0] < 0 || tcp->u_arg[0] >= MAX_QUALS) |
| 2309 | return; |
Denys Vlasenko | cb6f056 | 2011-08-25 01:13:43 +0200 | [diff] [blame] | 2310 | if (!SCNO_IN_RANGE(tcp->scno)) |
Denys Vlasenko | a614692 | 2011-08-24 18:07:22 +0200 | [diff] [blame] | 2311 | return; |
| 2312 | if (sysent[tcp->scno].sys_func == printargs) |
| 2313 | return; |
| 2314 | if (qual_flags[tcp->u_arg[0]] & QUAL_READ) { |
| 2315 | if (sysent[tcp->scno].sys_func == sys_read || |
| 2316 | sysent[tcp->scno].sys_func == sys_pread || |
| 2317 | sysent[tcp->scno].sys_func == sys_pread64 || |
| 2318 | sysent[tcp->scno].sys_func == sys_recv || |
| 2319 | sysent[tcp->scno].sys_func == sys_recvfrom) |
| 2320 | dumpstr(tcp, tcp->u_arg[1], tcp->u_rval); |
| 2321 | else if (sysent[tcp->scno].sys_func == sys_readv) |
| 2322 | dumpiov(tcp, tcp->u_arg[2], tcp->u_arg[1]); |
| 2323 | return; |
| 2324 | } |
| 2325 | if (qual_flags[tcp->u_arg[0]] & QUAL_WRITE) { |
| 2326 | if (sysent[tcp->scno].sys_func == sys_write || |
| 2327 | sysent[tcp->scno].sys_func == sys_pwrite || |
| 2328 | sysent[tcp->scno].sys_func == sys_pwrite64 || |
| 2329 | sysent[tcp->scno].sys_func == sys_send || |
| 2330 | sysent[tcp->scno].sys_func == sys_sendto) |
| 2331 | dumpstr(tcp, tcp->u_arg[1], tcp->u_arg[2]); |
| 2332 | else if (sysent[tcp->scno].sys_func == sys_writev) |
| 2333 | dumpiov(tcp, tcp->u_arg[2], tcp->u_arg[1]); |
| 2334 | return; |
| 2335 | } |
| 2336 | } |
| 2337 | |
Denys Vlasenko | ed4f4f0 | 2011-08-22 11:54:06 +0200 | [diff] [blame] | 2338 | static int |
Dmitry V. Levin | 7d7c963 | 2010-03-29 17:51:02 +0000 | [diff] [blame] | 2339 | trace_syscall_exiting(struct tcb *tcp) |
Pavel Machek | 4dc3b14 | 2000-02-01 17:58:41 +0000 | [diff] [blame] | 2340 | { |
| 2341 | int sys_res; |
| 2342 | struct timeval tv; |
Denys Vlasenko | 1a5b5a7 | 2011-08-25 00:29:56 +0200 | [diff] [blame] | 2343 | int res; |
Dmitry V. Levin | 7d7c963 | 2010-03-29 17:51:02 +0000 | [diff] [blame] | 2344 | long u_error; |
Pavel Machek | 4dc3b14 | 2000-02-01 17:58:41 +0000 | [diff] [blame] | 2345 | |
Dmitry V. Levin | 7d7c963 | 2010-03-29 17:51:02 +0000 | [diff] [blame] | 2346 | /* Measure the exit time as early as possible to avoid errors. */ |
| 2347 | if (dtime || cflag) |
| 2348 | gettimeofday(&tv, NULL); |
Pavel Machek | 4dc3b14 | 2000-02-01 17:58:41 +0000 | [diff] [blame] | 2349 | |
Denys Vlasenko | 1a5b5a7 | 2011-08-25 00:29:56 +0200 | [diff] [blame] | 2350 | res = get_syscall_result(tcp); |
Dmitry V. Levin | 7d7c963 | 2010-03-29 17:51:02 +0000 | [diff] [blame] | 2351 | if (res == 0) |
| 2352 | return res; |
| 2353 | if (res == 1) |
Denys Vlasenko | 20c41fd | 2011-08-25 10:23:00 +0200 | [diff] [blame] | 2354 | res = syscall_fixup_on_sysexit(tcp); |
Dmitry V. Levin | 7d7c963 | 2010-03-29 17:51:02 +0000 | [diff] [blame] | 2355 | if (res == 0) |
| 2356 | return res; |
| 2357 | if (res == 1) |
| 2358 | res = get_error(tcp); |
| 2359 | if (res == 0) |
| 2360 | return res; |
| 2361 | if (res == 1) |
| 2362 | internal_syscall(tcp); |
Denys Vlasenko | 732d1bf | 2008-12-17 19:21:59 +0000 | [diff] [blame] | 2363 | |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 2364 | if (res == 1 && filtered(tcp)) { |
Denys Vlasenko | 3b73881 | 2011-08-22 02:06:35 +0200 | [diff] [blame] | 2365 | goto ret; |
Pavel Machek | 4dc3b14 | 2000-02-01 17:58:41 +0000 | [diff] [blame] | 2366 | } |
| 2367 | |
Dmitry V. Levin | 7d7c963 | 2010-03-29 17:51:02 +0000 | [diff] [blame] | 2368 | if (tcp->flags & TCB_REPRINT) { |
| 2369 | printleader(tcp); |
Denys Vlasenko | cb6f056 | 2011-08-25 01:13:43 +0200 | [diff] [blame] | 2370 | if (!SCNO_IN_RANGE(tcp->scno)) |
Denys Vlasenko | 1a5b5a7 | 2011-08-25 00:29:56 +0200 | [diff] [blame] | 2371 | tprintf("<... syscall_%lu resumed> ", tcp->scno); |
Dmitry V. Levin | 7d7c963 | 2010-03-29 17:51:02 +0000 | [diff] [blame] | 2372 | else |
Denys Vlasenko | 1a5b5a7 | 2011-08-25 00:29:56 +0200 | [diff] [blame] | 2373 | tprintf("<... %s resumed> ", sysent[tcp->scno].sys_name); |
Dmitry V. Levin | 7d7c963 | 2010-03-29 17:51:02 +0000 | [diff] [blame] | 2374 | } |
| 2375 | |
| 2376 | if (cflag) { |
| 2377 | struct timeval t = tv; |
Denys Vlasenko | c95a88f | 2011-08-21 17:47:40 +0200 | [diff] [blame] | 2378 | count_syscall(tcp, &t); |
Denys Vlasenko | 7b609d5 | 2011-06-22 14:32:43 +0200 | [diff] [blame] | 2379 | if (cflag == CFLAG_ONLY_STATS) { |
Denys Vlasenko | 3b73881 | 2011-08-22 02:06:35 +0200 | [diff] [blame] | 2380 | goto ret; |
Dmitry V. Levin | 7d7c963 | 2010-03-29 17:51:02 +0000 | [diff] [blame] | 2381 | } |
| 2382 | } |
| 2383 | |
| 2384 | if (res != 1) { |
| 2385 | tprintf(") "); |
Denys Vlasenko | 102ec49 | 2011-08-25 01:27:59 +0200 | [diff] [blame] | 2386 | tabto(); |
Dmitry V. Levin | 7d7c963 | 2010-03-29 17:51:02 +0000 | [diff] [blame] | 2387 | tprintf("= ? <unavailable>"); |
| 2388 | printtrailer(); |
| 2389 | tcp->flags &= ~TCB_INSYSCALL; |
| 2390 | return res; |
| 2391 | } |
| 2392 | |
Denys Vlasenko | cb6f056 | 2011-08-25 01:13:43 +0200 | [diff] [blame] | 2393 | if (!SCNO_IN_RANGE(tcp->scno) |
Dmitry V. Levin | 7d7c963 | 2010-03-29 17:51:02 +0000 | [diff] [blame] | 2394 | || (qual_flags[tcp->scno] & QUAL_RAW)) |
| 2395 | sys_res = printargs(tcp); |
| 2396 | else { |
Denys Vlasenko | 3b73881 | 2011-08-22 02:06:35 +0200 | [diff] [blame] | 2397 | /* FIXME: not_failing_only (IOW, option -z) is broken: |
| 2398 | * failure of syscall is known only after syscall return. |
| 2399 | * Thus we end up with something like this on, say, ENOENT: |
| 2400 | * open("doesnt_exist", O_RDONLY <unfinished ...> |
| 2401 | * {next syscall decode} |
| 2402 | * whereas the intended result is that open(...) line |
| 2403 | * is not shown at all. |
| 2404 | */ |
Dmitry V. Levin | 7d7c963 | 2010-03-29 17:51:02 +0000 | [diff] [blame] | 2405 | if (not_failing_only && tcp->u_error) |
Denys Vlasenko | 3b73881 | 2011-08-22 02:06:35 +0200 | [diff] [blame] | 2406 | goto ret; /* ignore failed syscalls */ |
Dmitry V. Levin | 7d7c963 | 2010-03-29 17:51:02 +0000 | [diff] [blame] | 2407 | sys_res = (*sysent[tcp->scno].sys_func)(tcp); |
| 2408 | } |
| 2409 | |
Dmitry V. Levin | 7d7c963 | 2010-03-29 17:51:02 +0000 | [diff] [blame] | 2410 | tprintf(") "); |
Denys Vlasenko | 102ec49 | 2011-08-25 01:27:59 +0200 | [diff] [blame] | 2411 | tabto(); |
Denys Vlasenko | 3b73881 | 2011-08-22 02:06:35 +0200 | [diff] [blame] | 2412 | u_error = tcp->u_error; |
Denys Vlasenko | cb6f056 | 2011-08-25 01:13:43 +0200 | [diff] [blame] | 2413 | if (!SCNO_IN_RANGE(tcp->scno) || |
Dmitry V. Levin | 7d7c963 | 2010-03-29 17:51:02 +0000 | [diff] [blame] | 2414 | qual_flags[tcp->scno] & QUAL_RAW) { |
| 2415 | if (u_error) |
| 2416 | tprintf("= -1 (errno %ld)", u_error); |
| 2417 | else |
| 2418 | tprintf("= %#lx", tcp->u_rval); |
| 2419 | } |
| 2420 | else if (!(sys_res & RVAL_NONE) && u_error) { |
| 2421 | switch (u_error) { |
| 2422 | #ifdef LINUX |
| 2423 | case ERESTARTSYS: |
| 2424 | tprintf("= ? ERESTARTSYS (To be restarted)"); |
| 2425 | break; |
| 2426 | case ERESTARTNOINTR: |
| 2427 | tprintf("= ? ERESTARTNOINTR (To be restarted)"); |
| 2428 | break; |
| 2429 | case ERESTARTNOHAND: |
| 2430 | tprintf("= ? ERESTARTNOHAND (To be restarted)"); |
| 2431 | break; |
| 2432 | case ERESTART_RESTARTBLOCK: |
| 2433 | tprintf("= ? ERESTART_RESTARTBLOCK (To be restarted)"); |
| 2434 | break; |
| 2435 | #endif /* LINUX */ |
| 2436 | default: |
Dmitry V. Levin | 7d7c963 | 2010-03-29 17:51:02 +0000 | [diff] [blame] | 2437 | if (u_error < 0) |
Denys Vlasenko | a794974 | 2011-08-21 17:26:55 +0200 | [diff] [blame] | 2438 | tprintf("= -1 E??? (errno %ld)", u_error); |
Dmitry V. Levin | 7d7c963 | 2010-03-29 17:51:02 +0000 | [diff] [blame] | 2439 | else if (u_error < nerrnos) |
Denys Vlasenko | a794974 | 2011-08-21 17:26:55 +0200 | [diff] [blame] | 2440 | tprintf("= -1 %s (%s)", errnoent[u_error], |
Dmitry V. Levin | 7d7c963 | 2010-03-29 17:51:02 +0000 | [diff] [blame] | 2441 | strerror(u_error)); |
| 2442 | else |
Denys Vlasenko | a794974 | 2011-08-21 17:26:55 +0200 | [diff] [blame] | 2443 | tprintf("= -1 ERRNO_%ld (%s)", u_error, |
Dmitry V. Levin | 7d7c963 | 2010-03-29 17:51:02 +0000 | [diff] [blame] | 2444 | strerror(u_error)); |
| 2445 | break; |
| 2446 | } |
| 2447 | if ((sys_res & RVAL_STR) && tcp->auxstr) |
| 2448 | tprintf(" (%s)", tcp->auxstr); |
| 2449 | } |
| 2450 | else { |
| 2451 | if (sys_res & RVAL_NONE) |
| 2452 | tprintf("= ?"); |
| 2453 | else { |
| 2454 | switch (sys_res & RVAL_MASK) { |
| 2455 | case RVAL_HEX: |
| 2456 | tprintf("= %#lx", tcp->u_rval); |
| 2457 | break; |
| 2458 | case RVAL_OCTAL: |
| 2459 | tprintf("= %#lo", tcp->u_rval); |
| 2460 | break; |
| 2461 | case RVAL_UDECIMAL: |
| 2462 | tprintf("= %lu", tcp->u_rval); |
| 2463 | break; |
| 2464 | case RVAL_DECIMAL: |
| 2465 | tprintf("= %ld", tcp->u_rval); |
| 2466 | break; |
| 2467 | #ifdef HAVE_LONG_LONG |
| 2468 | case RVAL_LHEX: |
| 2469 | tprintf("= %#llx", tcp->u_lrval); |
| 2470 | break; |
| 2471 | case RVAL_LOCTAL: |
| 2472 | tprintf("= %#llo", tcp->u_lrval); |
| 2473 | break; |
| 2474 | case RVAL_LUDECIMAL: |
| 2475 | tprintf("= %llu", tcp->u_lrval); |
| 2476 | break; |
| 2477 | case RVAL_LDECIMAL: |
| 2478 | tprintf("= %lld", tcp->u_lrval); |
| 2479 | break; |
| 2480 | #endif |
| 2481 | default: |
| 2482 | fprintf(stderr, |
| 2483 | "invalid rval format\n"); |
| 2484 | break; |
| 2485 | } |
| 2486 | } |
| 2487 | if ((sys_res & RVAL_STR) && tcp->auxstr) |
| 2488 | tprintf(" (%s)", tcp->auxstr); |
| 2489 | } |
| 2490 | if (dtime) { |
| 2491 | tv_sub(&tv, &tv, &tcp->etime); |
| 2492 | tprintf(" <%ld.%06ld>", |
| 2493 | (long) tv.tv_sec, (long) tv.tv_usec); |
| 2494 | } |
| 2495 | printtrailer(); |
| 2496 | |
| 2497 | dumpio(tcp); |
| 2498 | if (fflush(tcp->outf) == EOF) |
| 2499 | return -1; |
Denys Vlasenko | 3b73881 | 2011-08-22 02:06:35 +0200 | [diff] [blame] | 2500 | ret: |
Dmitry V. Levin | 7d7c963 | 2010-03-29 17:51:02 +0000 | [diff] [blame] | 2501 | tcp->flags &= ~TCB_INSYSCALL; |
| 2502 | return 0; |
| 2503 | } |
| 2504 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 2505 | int |
Dmitry V. Levin | 7d7c963 | 2010-03-29 17:51:02 +0000 | [diff] [blame] | 2506 | trace_syscall(struct tcb *tcp) |
| 2507 | { |
| 2508 | return exiting(tcp) ? |
| 2509 | trace_syscall_exiting(tcp) : trace_syscall_entering(tcp); |
| 2510 | } |