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