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. |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 32 | */ |
| 33 | |
| 34 | #include "defs.h" |
Dmitry V. Levin | e2fb0bb | 2015-09-15 21:51:15 +0000 | [diff] [blame] | 35 | #include "native_defs.h" |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 36 | #include <sys/param.h> |
Dmitry V. Levin | 2a6ac94 | 2016-01-12 00:04:30 +0000 | [diff] [blame] | 37 | #include <signal.h> |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 38 | |
Dmitry V. Levin | 5503dd2 | 2015-02-13 02:12:14 +0000 | [diff] [blame] | 39 | /* for struct iovec */ |
| 40 | #include <sys/uio.h> |
Maarten ter Huurne | 40c174b | 2014-10-20 01:02:48 +0200 | [diff] [blame] | 41 | |
Dmitry V. Levin | 7211dbc | 2015-02-28 12:20:21 +0000 | [diff] [blame] | 42 | #include "regs.h" |
Dmitry V. Levin | fadf379 | 2015-02-13 00:26:38 +0000 | [diff] [blame] | 43 | #include "ptrace.h" |
Wichert Akkerman | 15dea97 | 1999-10-06 13:06:34 +0000 | [diff] [blame] | 44 | |
Denys Vlasenko | 8470374 | 2012-02-25 02:38:52 +0100 | [diff] [blame] | 45 | #if defined(SPARC64) |
Roland McGrath | 6d1a65c | 2004-07-12 07:44:08 +0000 | [diff] [blame] | 46 | # undef PTRACE_GETREGS |
| 47 | # define PTRACE_GETREGS PTRACE_GETREGS64 |
| 48 | # undef PTRACE_SETREGS |
| 49 | # define PTRACE_SETREGS PTRACE_SETREGS64 |
Denys Vlasenko | 8470374 | 2012-02-25 02:38:52 +0100 | [diff] [blame] | 50 | #endif |
Roland McGrath | 6d1a65c | 2004-07-12 07:44:08 +0000 | [diff] [blame] | 51 | |
Dmitry V. Levin | 5503dd2 | 2015-02-13 02:12:14 +0000 | [diff] [blame] | 52 | #if defined SPARC64 |
| 53 | # include <asm/psrcompat.h> |
| 54 | #elif defined SPARC |
| 55 | # include <asm/psr.h> |
Denys Vlasenko | eec8d5d | 2013-02-14 03:29:48 +0100 | [diff] [blame] | 56 | #endif |
| 57 | |
Dmitry V. Levin | 48f0890 | 2015-03-05 23:30:02 +0000 | [diff] [blame] | 58 | #ifdef IA64 |
| 59 | # include <asm/rse.h> |
| 60 | #endif |
| 61 | |
Dmitry V. Levin | 4c3f2ae | 2015-02-13 22:53:00 +0000 | [diff] [blame] | 62 | #ifndef NT_PRSTATUS |
| 63 | # define NT_PRSTATUS 1 |
| 64 | #endif |
| 65 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 66 | #ifndef NSIG |
Denys Vlasenko | 523635f | 2012-02-25 02:44:25 +0100 | [diff] [blame] | 67 | # warning: NSIG is not defined, using 32 |
| 68 | # define NSIG 32 |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 69 | #endif |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 70 | |
| 71 | #include "syscall.h" |
| 72 | |
| 73 | /* Define these shorthand notations to simplify the syscallent files. */ |
Roland McGrath | 2fe7b13 | 2005-07-05 03:25:35 +0000 | [diff] [blame] | 74 | #define TD TRACE_DESC |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 75 | #define TF TRACE_FILE |
| 76 | #define TI TRACE_IPC |
| 77 | #define TN TRACE_NETWORK |
| 78 | #define TP TRACE_PROCESS |
| 79 | #define TS TRACE_SIGNAL |
Namhyung Kim | 9679296 | 2012-10-24 11:41:57 +0900 | [diff] [blame] | 80 | #define TM TRACE_MEMORY |
Dmitry V. Levin | 50a218d | 2011-01-18 17:36:20 +0000 | [diff] [blame] | 81 | #define NF SYSCALL_NEVER_FAILS |
Denys Vlasenko | ac1ce77 | 2011-08-23 13:24:17 +0200 | [diff] [blame] | 82 | #define MA MAX_ARGS |
Masatake YAMATO | 1d78d22 | 2014-04-16 15:33:11 +0900 | [diff] [blame] | 83 | #define SI STACKTRACE_INVALIDATE_CACHE |
| 84 | #define SE STACKTRACE_CAPTURE_ON_ENTER |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 85 | |
Szabolcs Nagy | 34683e3 | 2015-12-15 18:32:17 +0000 | [diff] [blame] | 86 | #define SEN(syscall_name) SEN_ ## syscall_name, SYS_FUNC_NAME(sys_ ## syscall_name) |
Elvira Khabirova | 140ecf8 | 2015-07-10 22:24:48 +0300 | [diff] [blame] | 87 | |
Denys Vlasenko | 9cbc15b | 2013-02-22 13:37:36 +0100 | [diff] [blame] | 88 | const struct_sysent sysent0[] = { |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 89 | #include "syscallent.h" |
| 90 | }; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 91 | |
Denys Vlasenko | a9fe13c | 2013-02-22 13:26:10 +0100 | [diff] [blame] | 92 | #if SUPPORTED_PERSONALITIES > 1 |
Elvira Khabirova | 0929422 | 2015-08-04 01:47:02 +0300 | [diff] [blame] | 93 | # include PERSONALITY1_INCLUDE_FUNCS |
Denys Vlasenko | a9fe13c | 2013-02-22 13:26:10 +0100 | [diff] [blame] | 94 | static const struct_sysent sysent1[] = { |
Denys Vlasenko | 523635f | 2012-02-25 02:44:25 +0100 | [diff] [blame] | 95 | # include "syscallent1.h" |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 96 | }; |
Denys Vlasenko | 39fca62 | 2011-08-20 02:12:33 +0200 | [diff] [blame] | 97 | #endif |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 98 | |
Denys Vlasenko | a9fe13c | 2013-02-22 13:26:10 +0100 | [diff] [blame] | 99 | #if SUPPORTED_PERSONALITIES > 2 |
Elvira Khabirova | 0929422 | 2015-08-04 01:47:02 +0300 | [diff] [blame] | 100 | # include PERSONALITY2_INCLUDE_FUNCS |
Denys Vlasenko | a9fe13c | 2013-02-22 13:26:10 +0100 | [diff] [blame] | 101 | static const struct_sysent sysent2[] = { |
Denys Vlasenko | 523635f | 2012-02-25 02:44:25 +0100 | [diff] [blame] | 102 | # include "syscallent2.h" |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 103 | }; |
Denys Vlasenko | 39fca62 | 2011-08-20 02:12:33 +0200 | [diff] [blame] | 104 | #endif |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 105 | |
| 106 | /* Now undef them since short defines cause wicked namespace pollution. */ |
Elvira Khabirova | 140ecf8 | 2015-07-10 22:24:48 +0300 | [diff] [blame] | 107 | #undef SEN |
Roland McGrath | 2fe7b13 | 2005-07-05 03:25:35 +0000 | [diff] [blame] | 108 | #undef TD |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 109 | #undef TF |
| 110 | #undef TI |
| 111 | #undef TN |
| 112 | #undef TP |
| 113 | #undef TS |
Namhyung Kim | 9679296 | 2012-10-24 11:41:57 +0900 | [diff] [blame] | 114 | #undef TM |
Dmitry V. Levin | 50a218d | 2011-01-18 17:36:20 +0000 | [diff] [blame] | 115 | #undef NF |
Denys Vlasenko | ac1ce77 | 2011-08-23 13:24:17 +0200 | [diff] [blame] | 116 | #undef MA |
Masatake YAMATO | 1d78d22 | 2014-04-16 15:33:11 +0900 | [diff] [blame] | 117 | #undef SI |
| 118 | #undef SE |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 119 | |
Denys Vlasenko | 39fca62 | 2011-08-20 02:12:33 +0200 | [diff] [blame] | 120 | /* |
Dmitry V. Levin | df7aa2b | 2015-01-19 17:02:16 +0000 | [diff] [blame] | 121 | * `ioctlent[012].h' files are automatically generated by the auxiliary |
Denys Vlasenko | 39fca62 | 2011-08-20 02:12:33 +0200 | [diff] [blame] | 122 | * program `ioctlsort', such that the list is sorted by the `code' field. |
| 123 | * This has the side-effect of resolving the _IO.. macros into |
| 124 | * plain integers, eliminating the need to include here everything |
| 125 | * in "/usr/include". |
| 126 | */ |
| 127 | |
Denys Vlasenko | 9cbc15b | 2013-02-22 13:37:36 +0100 | [diff] [blame] | 128 | const char *const errnoent0[] = { |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 129 | #include "errnoent.h" |
| 130 | }; |
Denys Vlasenko | 9cbc15b | 2013-02-22 13:37:36 +0100 | [diff] [blame] | 131 | const char *const signalent0[] = { |
Denys Vlasenko | 39fca62 | 2011-08-20 02:12:33 +0200 | [diff] [blame] | 132 | #include "signalent.h" |
| 133 | }; |
Denys Vlasenko | 9cbc15b | 2013-02-22 13:37:36 +0100 | [diff] [blame] | 134 | const struct_ioctlent ioctlent0[] = { |
Dmitry V. Levin | df7aa2b | 2015-01-19 17:02:16 +0000 | [diff] [blame] | 135 | #include "ioctlent0.h" |
Denys Vlasenko | 39fca62 | 2011-08-20 02:12:33 +0200 | [diff] [blame] | 136 | }; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 137 | |
Denys Vlasenko | a9fe13c | 2013-02-22 13:26:10 +0100 | [diff] [blame] | 138 | #if SUPPORTED_PERSONALITIES > 1 |
Roland McGrath | ee36ce1 | 2004-09-04 03:53:10 +0000 | [diff] [blame] | 139 | static const char *const errnoent1[] = { |
Denys Vlasenko | 523635f | 2012-02-25 02:44:25 +0100 | [diff] [blame] | 140 | # include "errnoent1.h" |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 141 | }; |
Denys Vlasenko | 39fca62 | 2011-08-20 02:12:33 +0200 | [diff] [blame] | 142 | static const char *const signalent1[] = { |
Denys Vlasenko | 523635f | 2012-02-25 02:44:25 +0100 | [diff] [blame] | 143 | # include "signalent1.h" |
Denys Vlasenko | 39fca62 | 2011-08-20 02:12:33 +0200 | [diff] [blame] | 144 | }; |
Denys Vlasenko | a9fe13c | 2013-02-22 13:26:10 +0100 | [diff] [blame] | 145 | static const struct_ioctlent ioctlent1[] = { |
Denys Vlasenko | 523635f | 2012-02-25 02:44:25 +0100 | [diff] [blame] | 146 | # include "ioctlent1.h" |
Denys Vlasenko | 39fca62 | 2011-08-20 02:12:33 +0200 | [diff] [blame] | 147 | }; |
Elvira Khabirova | 0929422 | 2015-08-04 01:47:02 +0300 | [diff] [blame] | 148 | # include PERSONALITY0_INCLUDE_PRINTERS_DECLS |
| 149 | static const struct_printers printers0 = { |
| 150 | # include PERSONALITY0_INCLUDE_PRINTERS_DEFS |
| 151 | }; |
| 152 | # include PERSONALITY1_INCLUDE_PRINTERS_DECLS |
| 153 | static const struct_printers printers1 = { |
| 154 | # include PERSONALITY1_INCLUDE_PRINTERS_DEFS |
| 155 | }; |
Denys Vlasenko | 39fca62 | 2011-08-20 02:12:33 +0200 | [diff] [blame] | 156 | #endif |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 157 | |
Denys Vlasenko | a9fe13c | 2013-02-22 13:26:10 +0100 | [diff] [blame] | 158 | #if SUPPORTED_PERSONALITIES > 2 |
Roland McGrath | ee36ce1 | 2004-09-04 03:53:10 +0000 | [diff] [blame] | 159 | static const char *const errnoent2[] = { |
Denys Vlasenko | 523635f | 2012-02-25 02:44:25 +0100 | [diff] [blame] | 160 | # include "errnoent2.h" |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 161 | }; |
Denys Vlasenko | 39fca62 | 2011-08-20 02:12:33 +0200 | [diff] [blame] | 162 | static const char *const signalent2[] = { |
Denys Vlasenko | 523635f | 2012-02-25 02:44:25 +0100 | [diff] [blame] | 163 | # include "signalent2.h" |
Denys Vlasenko | 39fca62 | 2011-08-20 02:12:33 +0200 | [diff] [blame] | 164 | }; |
Denys Vlasenko | a9fe13c | 2013-02-22 13:26:10 +0100 | [diff] [blame] | 165 | static const struct_ioctlent ioctlent2[] = { |
Denys Vlasenko | 523635f | 2012-02-25 02:44:25 +0100 | [diff] [blame] | 166 | # include "ioctlent2.h" |
Denys Vlasenko | 39fca62 | 2011-08-20 02:12:33 +0200 | [diff] [blame] | 167 | }; |
Elvira Khabirova | 0929422 | 2015-08-04 01:47:02 +0300 | [diff] [blame] | 168 | # include PERSONALITY2_INCLUDE_PRINTERS_DECLS |
| 169 | static const struct_printers printers2 = { |
| 170 | # include PERSONALITY2_INCLUDE_PRINTERS_DEFS |
| 171 | }; |
Denys Vlasenko | 39fca62 | 2011-08-20 02:12:33 +0200 | [diff] [blame] | 172 | #endif |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 173 | |
Dmitry V. Levin | e6f5524 | 2013-02-26 22:02:30 +0000 | [diff] [blame] | 174 | enum { |
| 175 | nsyscalls0 = ARRAY_SIZE(sysent0) |
| 176 | #if SUPPORTED_PERSONALITIES > 1 |
| 177 | , nsyscalls1 = ARRAY_SIZE(sysent1) |
| 178 | # if SUPPORTED_PERSONALITIES > 2 |
| 179 | , nsyscalls2 = ARRAY_SIZE(sysent2) |
| 180 | # endif |
| 181 | #endif |
| 182 | }; |
| 183 | |
| 184 | enum { |
| 185 | nerrnos0 = ARRAY_SIZE(errnoent0) |
| 186 | #if SUPPORTED_PERSONALITIES > 1 |
| 187 | , nerrnos1 = ARRAY_SIZE(errnoent1) |
| 188 | # if SUPPORTED_PERSONALITIES > 2 |
| 189 | , nerrnos2 = ARRAY_SIZE(errnoent2) |
| 190 | # endif |
| 191 | #endif |
| 192 | }; |
| 193 | |
| 194 | enum { |
| 195 | nsignals0 = ARRAY_SIZE(signalent0) |
| 196 | #if SUPPORTED_PERSONALITIES > 1 |
| 197 | , nsignals1 = ARRAY_SIZE(signalent1) |
| 198 | # if SUPPORTED_PERSONALITIES > 2 |
| 199 | , nsignals2 = ARRAY_SIZE(signalent2) |
| 200 | # endif |
| 201 | #endif |
| 202 | }; |
| 203 | |
| 204 | enum { |
| 205 | nioctlents0 = ARRAY_SIZE(ioctlent0) |
| 206 | #if SUPPORTED_PERSONALITIES > 1 |
| 207 | , nioctlents1 = ARRAY_SIZE(ioctlent1) |
| 208 | # if SUPPORTED_PERSONALITIES > 2 |
| 209 | , nioctlents2 = ARRAY_SIZE(ioctlent2) |
| 210 | # endif |
| 211 | #endif |
| 212 | }; |
| 213 | |
Denys Vlasenko | 9cbc15b | 2013-02-22 13:37:36 +0100 | [diff] [blame] | 214 | #if SUPPORTED_PERSONALITIES > 1 |
Denys Vlasenko | a9fe13c | 2013-02-22 13:26:10 +0100 | [diff] [blame] | 215 | const struct_sysent *sysent = sysent0; |
Denys Vlasenko | 9fd4f96 | 2012-03-19 09:36:42 +0100 | [diff] [blame] | 216 | const char *const *errnoent = errnoent0; |
| 217 | const char *const *signalent = signalent0; |
Denys Vlasenko | a9fe13c | 2013-02-22 13:26:10 +0100 | [diff] [blame] | 218 | const struct_ioctlent *ioctlent = ioctlent0; |
Elvira Khabirova | 0929422 | 2015-08-04 01:47:02 +0300 | [diff] [blame] | 219 | const struct_printers *printers = &printers0; |
Denys Vlasenko | 9cbc15b | 2013-02-22 13:37:36 +0100 | [diff] [blame] | 220 | #endif |
Elvira Khabirova | 0929422 | 2015-08-04 01:47:02 +0300 | [diff] [blame] | 221 | |
Denys Vlasenko | 9fd4f96 | 2012-03-19 09:36:42 +0100 | [diff] [blame] | 222 | unsigned nsyscalls = nsyscalls0; |
| 223 | unsigned nerrnos = nerrnos0; |
| 224 | unsigned nsignals = nsignals0; |
| 225 | unsigned nioctlents = nioctlents0; |
Denys Vlasenko | 9cbc15b | 2013-02-22 13:37:36 +0100 | [diff] [blame] | 226 | |
| 227 | unsigned num_quals; |
| 228 | qualbits_t *qual_vec[SUPPORTED_PERSONALITIES]; |
| 229 | |
| 230 | static const unsigned nsyscall_vec[SUPPORTED_PERSONALITIES] = { |
| 231 | nsyscalls0, |
| 232 | #if SUPPORTED_PERSONALITIES > 1 |
| 233 | nsyscalls1, |
| 234 | #endif |
| 235 | #if SUPPORTED_PERSONALITIES > 2 |
| 236 | nsyscalls2, |
| 237 | #endif |
| 238 | }; |
| 239 | static const struct_sysent *const sysent_vec[SUPPORTED_PERSONALITIES] = { |
| 240 | sysent0, |
| 241 | #if SUPPORTED_PERSONALITIES > 1 |
| 242 | sysent1, |
| 243 | #endif |
| 244 | #if SUPPORTED_PERSONALITIES > 2 |
| 245 | sysent2, |
| 246 | #endif |
| 247 | }; |
| 248 | |
| 249 | enum { |
| 250 | MAX_NSYSCALLS1 = (nsyscalls0 |
| 251 | #if SUPPORTED_PERSONALITIES > 1 |
| 252 | > nsyscalls1 ? nsyscalls0 : nsyscalls1 |
| 253 | #endif |
| 254 | ), |
| 255 | MAX_NSYSCALLS2 = (MAX_NSYSCALLS1 |
| 256 | #if SUPPORTED_PERSONALITIES > 2 |
| 257 | > nsyscalls2 ? MAX_NSYSCALLS1 : nsyscalls2 |
| 258 | #endif |
| 259 | ), |
| 260 | MAX_NSYSCALLS = MAX_NSYSCALLS2, |
| 261 | /* We are ready for arches with up to 255 signals, |
| 262 | * even though the largest known signo is on MIPS and it is 128. |
| 263 | * The number of existing syscalls on all arches is |
| 264 | * larger that 255 anyway, so it is just a pedantic matter. |
| 265 | */ |
| 266 | MIN_QUALS = MAX_NSYSCALLS > 255 ? MAX_NSYSCALLS : 255 |
| 267 | }; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 268 | |
Denys Vlasenko | 9fd4f96 | 2012-03-19 09:36:42 +0100 | [diff] [blame] | 269 | #if SUPPORTED_PERSONALITIES > 1 |
Denys Vlasenko | ae8643e | 2013-02-15 14:55:14 +0100 | [diff] [blame] | 270 | unsigned current_personality; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 271 | |
Denys Vlasenko | ae8643e | 2013-02-15 14:55:14 +0100 | [diff] [blame] | 272 | # ifndef current_wordsize |
| 273 | unsigned current_wordsize; |
| 274 | static const int personality_wordsize[SUPPORTED_PERSONALITIES] = { |
Roland McGrath | 4b2dcca | 2006-01-12 10:18:53 +0000 | [diff] [blame] | 275 | PERSONALITY0_WORDSIZE, |
Roland McGrath | 4b2dcca | 2006-01-12 10:18:53 +0000 | [diff] [blame] | 276 | PERSONALITY1_WORDSIZE, |
Denys Vlasenko | 9fd4f96 | 2012-03-19 09:36:42 +0100 | [diff] [blame] | 277 | # if SUPPORTED_PERSONALITIES > 2 |
Roland McGrath | 4b2dcca | 2006-01-12 10:18:53 +0000 | [diff] [blame] | 278 | PERSONALITY2_WORDSIZE, |
Denys Vlasenko | 9fd4f96 | 2012-03-19 09:36:42 +0100 | [diff] [blame] | 279 | # endif |
Denys Vlasenko | 5c774b2 | 2011-08-20 01:50:09 +0200 | [diff] [blame] | 280 | }; |
Denys Vlasenko | ae8643e | 2013-02-15 14:55:14 +0100 | [diff] [blame] | 281 | # endif |
Roland McGrath | 4b2dcca | 2006-01-12 10:18:53 +0000 | [diff] [blame] | 282 | |
Denys Vlasenko | 5c774b2 | 2011-08-20 01:50:09 +0200 | [diff] [blame] | 283 | void |
Dmitry V. Levin | 3abe8b2 | 2006-12-20 22:37:21 +0000 | [diff] [blame] | 284 | set_personality(int personality) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 285 | { |
Denys Vlasenko | 9cbc15b | 2013-02-22 13:37:36 +0100 | [diff] [blame] | 286 | nsyscalls = nsyscall_vec[personality]; |
| 287 | sysent = sysent_vec[personality]; |
| 288 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 289 | switch (personality) { |
| 290 | case 0: |
| 291 | errnoent = errnoent0; |
| 292 | nerrnos = nerrnos0; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 293 | ioctlent = ioctlent0; |
| 294 | nioctlents = nioctlents0; |
| 295 | signalent = signalent0; |
| 296 | nsignals = nsignals0; |
Elvira Khabirova | 0929422 | 2015-08-04 01:47:02 +0300 | [diff] [blame] | 297 | printers = &printers0; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 298 | break; |
| 299 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 300 | case 1: |
| 301 | errnoent = errnoent1; |
| 302 | nerrnos = nerrnos1; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 303 | ioctlent = ioctlent1; |
| 304 | nioctlents = nioctlents1; |
| 305 | signalent = signalent1; |
| 306 | nsignals = nsignals1; |
Elvira Khabirova | 0929422 | 2015-08-04 01:47:02 +0300 | [diff] [blame] | 307 | printers = &printers1; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 308 | break; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 309 | |
Denys Vlasenko | a9fe13c | 2013-02-22 13:26:10 +0100 | [diff] [blame] | 310 | # if SUPPORTED_PERSONALITIES > 2 |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 311 | case 2: |
| 312 | errnoent = errnoent2; |
| 313 | nerrnos = nerrnos2; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 314 | ioctlent = ioctlent2; |
| 315 | nioctlents = nioctlents2; |
| 316 | signalent = signalent2; |
| 317 | nsignals = nsignals2; |
Elvira Khabirova | 0929422 | 2015-08-04 01:47:02 +0300 | [diff] [blame] | 318 | printers = &printers2; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 319 | break; |
Denys Vlasenko | 9fd4f96 | 2012-03-19 09:36:42 +0100 | [diff] [blame] | 320 | # endif |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 321 | } |
| 322 | |
| 323 | current_personality = personality; |
Denys Vlasenko | ae8643e | 2013-02-15 14:55:14 +0100 | [diff] [blame] | 324 | # ifndef current_wordsize |
| 325 | current_wordsize = personality_wordsize[personality]; |
| 326 | # endif |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 327 | } |
| 328 | |
Dmitry V. Levin | a5a839a | 2011-12-23 00:50:49 +0000 | [diff] [blame] | 329 | static void |
Dmitry V. Levin | 3ed5d02 | 2014-09-10 13:46:04 +0000 | [diff] [blame] | 330 | update_personality(struct tcb *tcp, unsigned int personality) |
Dmitry V. Levin | a5a839a | 2011-12-23 00:50:49 +0000 | [diff] [blame] | 331 | { |
| 332 | if (personality == current_personality) |
| 333 | return; |
| 334 | set_personality(personality); |
| 335 | |
| 336 | if (personality == tcp->currpers) |
| 337 | return; |
| 338 | tcp->currpers = personality; |
| 339 | |
Dmitry V. Levin | 6c8ef05 | 2015-05-25 22:51:19 +0000 | [diff] [blame] | 340 | # undef PERSONALITY_NAMES |
| 341 | # if defined POWERPC64 |
| 342 | # define PERSONALITY_NAMES {"64 bit", "32 bit"} |
| 343 | # elif defined X86_64 |
| 344 | # define PERSONALITY_NAMES {"64 bit", "32 bit", "x32"} |
| 345 | # elif defined X32 |
| 346 | # define PERSONALITY_NAMES {"x32", "32 bit"} |
| 347 | # elif defined AARCH64 |
Dmitry V. Levin | c37173f | 2015-12-09 00:43:39 +0000 | [diff] [blame] | 348 | # define PERSONALITY_NAMES {"64 bit", "32 bit"} |
Dmitry V. Levin | 6c8ef05 | 2015-05-25 22:51:19 +0000 | [diff] [blame] | 349 | # elif defined TILE |
| 350 | # define PERSONALITY_NAMES {"64-bit", "32-bit"} |
| 351 | # endif |
| 352 | # ifdef PERSONALITY_NAMES |
Dmitry V. Levin | a5a839a | 2011-12-23 00:50:49 +0000 | [diff] [blame] | 353 | if (!qflag) { |
Dmitry V. Levin | 6c8ef05 | 2015-05-25 22:51:19 +0000 | [diff] [blame] | 354 | static const char *const names[] = PERSONALITY_NAMES; |
| 355 | error_msg("[ Process PID=%d runs in %s mode. ]", |
| 356 | tcp->pid, names[personality]); |
Chris Metcalf | 0b99a8a | 2013-02-05 17:48:33 +0100 | [diff] [blame] | 357 | } |
Denys Vlasenko | 523635f | 2012-02-25 02:44:25 +0100 | [diff] [blame] | 358 | # endif |
Dmitry V. Levin | a5a839a | 2011-12-23 00:50:49 +0000 | [diff] [blame] | 359 | } |
| 360 | #endif |
Roland McGrath | e10e62a | 2004-09-04 04:20:43 +0000 | [diff] [blame] | 361 | |
Denys Vlasenko | c1540fe | 2013-02-21 16:17:08 +0100 | [diff] [blame] | 362 | static int qual_syscall(), qual_signal(), qual_desc(); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 363 | |
Roland McGrath | e10e62a | 2004-09-04 04:20:43 +0000 | [diff] [blame] | 364 | static const struct qual_options { |
Dmitry V. Levin | 3ed5d02 | 2014-09-10 13:46:04 +0000 | [diff] [blame] | 365 | unsigned int bitflag; |
Dmitry V. Levin | 30145dd | 2010-09-06 22:08:24 +0000 | [diff] [blame] | 366 | const char *option_name; |
Dmitry V. Levin | 35d0572 | 2010-09-15 16:18:20 +0000 | [diff] [blame] | 367 | int (*qualify)(const char *, int, int); |
Dmitry V. Levin | 30145dd | 2010-09-06 22:08:24 +0000 | [diff] [blame] | 368 | const char *argument_name; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 369 | } qual_options[] = { |
Roland McGrath | 9797ceb | 2002-12-30 10:23:00 +0000 | [diff] [blame] | 370 | { QUAL_TRACE, "trace", qual_syscall, "system call" }, |
| 371 | { QUAL_TRACE, "t", qual_syscall, "system call" }, |
| 372 | { QUAL_ABBREV, "abbrev", qual_syscall, "system call" }, |
| 373 | { QUAL_ABBREV, "a", qual_syscall, "system call" }, |
| 374 | { QUAL_VERBOSE, "verbose", qual_syscall, "system call" }, |
| 375 | { QUAL_VERBOSE, "v", qual_syscall, "system call" }, |
| 376 | { QUAL_RAW, "raw", qual_syscall, "system call" }, |
| 377 | { QUAL_RAW, "x", qual_syscall, "system call" }, |
| 378 | { QUAL_SIGNAL, "signal", qual_signal, "signal" }, |
| 379 | { QUAL_SIGNAL, "signals", qual_signal, "signal" }, |
| 380 | { QUAL_SIGNAL, "s", qual_signal, "signal" }, |
Roland McGrath | 9797ceb | 2002-12-30 10:23:00 +0000 | [diff] [blame] | 381 | { QUAL_READ, "read", qual_desc, "descriptor" }, |
| 382 | { QUAL_READ, "reads", qual_desc, "descriptor" }, |
| 383 | { QUAL_READ, "r", qual_desc, "descriptor" }, |
| 384 | { QUAL_WRITE, "write", qual_desc, "descriptor" }, |
| 385 | { QUAL_WRITE, "writes", qual_desc, "descriptor" }, |
| 386 | { QUAL_WRITE, "w", qual_desc, "descriptor" }, |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 387 | { 0, NULL, NULL, NULL }, |
| 388 | }; |
| 389 | |
Roland McGrath | 9797ceb | 2002-12-30 10:23:00 +0000 | [diff] [blame] | 390 | static void |
Dmitry V. Levin | 3ed5d02 | 2014-09-10 13:46:04 +0000 | [diff] [blame] | 391 | reallocate_qual(const unsigned int n) |
Denys Vlasenko | 9cbc15b | 2013-02-22 13:37:36 +0100 | [diff] [blame] | 392 | { |
| 393 | unsigned p; |
| 394 | qualbits_t *qp; |
| 395 | for (p = 0; p < SUPPORTED_PERSONALITIES; p++) { |
Dmitry V. Levin | 3e9d71f | 2015-05-25 20:41:02 +0000 | [diff] [blame] | 396 | qp = qual_vec[p] = xreallocarray(qual_vec[p], n, |
| 397 | sizeof(qualbits_t)); |
Denys Vlasenko | 9cbc15b | 2013-02-22 13:37:36 +0100 | [diff] [blame] | 398 | memset(&qp[num_quals], 0, (n - num_quals) * sizeof(qualbits_t)); |
| 399 | } |
| 400 | num_quals = n; |
| 401 | } |
| 402 | |
| 403 | static void |
Dmitry V. Levin | 3ed5d02 | 2014-09-10 13:46:04 +0000 | [diff] [blame] | 404 | qualify_one(const unsigned int n, unsigned int bitflag, const int not, const int pers) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 405 | { |
Dmitry V. Levin | 3ed5d02 | 2014-09-10 13:46:04 +0000 | [diff] [blame] | 406 | int p; |
Roland McGrath | 138c6a3 | 2006-01-12 09:50:49 +0000 | [diff] [blame] | 407 | |
Denys Vlasenko | 9cbc15b | 2013-02-22 13:37:36 +0100 | [diff] [blame] | 408 | if (num_quals <= n) |
| 409 | reallocate_qual(n + 1); |
Roland McGrath | 138c6a3 | 2006-01-12 09:50:49 +0000 | [diff] [blame] | 410 | |
Denys Vlasenko | 9cbc15b | 2013-02-22 13:37:36 +0100 | [diff] [blame] | 411 | for (p = 0; p < SUPPORTED_PERSONALITIES; p++) { |
| 412 | if (pers == p || pers < 0) { |
| 413 | if (not) |
| 414 | qual_vec[p][n] &= ~bitflag; |
| 415 | else |
| 416 | qual_vec[p][n] |= bitflag; |
| 417 | } |
Roland McGrath | 138c6a3 | 2006-01-12 09:50:49 +0000 | [diff] [blame] | 418 | } |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 419 | } |
| 420 | |
| 421 | static int |
Dmitry V. Levin | 3ed5d02 | 2014-09-10 13:46:04 +0000 | [diff] [blame] | 422 | qual_syscall(const char *s, const unsigned int bitflag, const int not) |
Roland McGrath | 9797ceb | 2002-12-30 10:23:00 +0000 | [diff] [blame] | 423 | { |
Dmitry V. Levin | 3ed5d02 | 2014-09-10 13:46:04 +0000 | [diff] [blame] | 424 | int p; |
| 425 | unsigned int i; |
Roland McGrath | fe6b352 | 2005-02-02 04:40:11 +0000 | [diff] [blame] | 426 | int rc = -1; |
Roland McGrath | 9797ceb | 2002-12-30 10:23:00 +0000 | [diff] [blame] | 427 | |
Denys Vlasenko | e4cc7c5 | 2012-03-23 11:29:01 +0100 | [diff] [blame] | 428 | if (*s >= '0' && *s <= '9') { |
Denys Vlasenko | 9cbc15b | 2013-02-22 13:37:36 +0100 | [diff] [blame] | 429 | i = string_to_uint(s); |
Denys Vlasenko | b43dacd | 2013-02-23 18:19:28 +0100 | [diff] [blame] | 430 | if (i >= MAX_NSYSCALLS) |
Denys Vlasenko | 5ae2b7c | 2009-02-27 20:32:52 +0000 | [diff] [blame] | 431 | return -1; |
Dmitry V. Levin | 35d0572 | 2010-09-15 16:18:20 +0000 | [diff] [blame] | 432 | qualify_one(i, bitflag, not, -1); |
Denys Vlasenko | 5ae2b7c | 2009-02-27 20:32:52 +0000 | [diff] [blame] | 433 | return 0; |
Roland McGrath | 48a035f | 2006-01-12 09:45:56 +0000 | [diff] [blame] | 434 | } |
Roland McGrath | 138c6a3 | 2006-01-12 09:50:49 +0000 | [diff] [blame] | 435 | |
Denys Vlasenko | 9cbc15b | 2013-02-22 13:37:36 +0100 | [diff] [blame] | 436 | for (p = 0; p < SUPPORTED_PERSONALITIES; p++) { |
| 437 | for (i = 0; i < nsyscall_vec[p]; i++) { |
| 438 | if (sysent_vec[p][i].sys_name |
| 439 | && strcmp(s, sysent_vec[p][i].sys_name) == 0 |
| 440 | ) { |
Dmitry V. Levin | 7b9e45e | 2013-03-01 15:50:22 +0000 | [diff] [blame] | 441 | qualify_one(i, bitflag, not, p); |
Denys Vlasenko | 9cbc15b | 2013-02-22 13:37:36 +0100 | [diff] [blame] | 442 | rc = 0; |
| 443 | } |
Roland McGrath | 138c6a3 | 2006-01-12 09:50:49 +0000 | [diff] [blame] | 444 | } |
Denys Vlasenko | 9cbc15b | 2013-02-22 13:37:36 +0100 | [diff] [blame] | 445 | } |
Dmitry V. Levin | c18c703 | 2007-08-22 21:43:30 +0000 | [diff] [blame] | 446 | |
Roland McGrath | fe6b352 | 2005-02-02 04:40:11 +0000 | [diff] [blame] | 447 | return rc; |
Roland McGrath | 9797ceb | 2002-12-30 10:23:00 +0000 | [diff] [blame] | 448 | } |
| 449 | |
| 450 | static int |
Dmitry V. Levin | 3ed5d02 | 2014-09-10 13:46:04 +0000 | [diff] [blame] | 451 | qual_signal(const char *s, const unsigned int bitflag, const int not) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 452 | { |
Dmitry V. Levin | 3ed5d02 | 2014-09-10 13:46:04 +0000 | [diff] [blame] | 453 | unsigned int i; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 454 | |
Denys Vlasenko | e4cc7c5 | 2012-03-23 11:29:01 +0100 | [diff] [blame] | 455 | if (*s >= '0' && *s <= '9') { |
Dmitry V. Levin | ccee169 | 2012-03-25 21:49:48 +0000 | [diff] [blame] | 456 | int signo = string_to_uint(s); |
Denys Vlasenko | 9cbc15b | 2013-02-22 13:37:36 +0100 | [diff] [blame] | 457 | if (signo < 0 || signo > 255) |
Denys Vlasenko | 5ae2b7c | 2009-02-27 20:32:52 +0000 | [diff] [blame] | 458 | return -1; |
Dmitry V. Levin | 35d0572 | 2010-09-15 16:18:20 +0000 | [diff] [blame] | 459 | qualify_one(signo, bitflag, not, -1); |
Denys Vlasenko | 5ae2b7c | 2009-02-27 20:32:52 +0000 | [diff] [blame] | 460 | return 0; |
Roland McGrath | 9797ceb | 2002-12-30 10:23:00 +0000 | [diff] [blame] | 461 | } |
Dmitry V. Levin | 30145dd | 2010-09-06 22:08:24 +0000 | [diff] [blame] | 462 | if (strncasecmp(s, "SIG", 3) == 0) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 463 | s += 3; |
Denys Vlasenko | e4cc7c5 | 2012-03-23 11:29:01 +0100 | [diff] [blame] | 464 | for (i = 0; i <= NSIG; i++) { |
Dmitry V. Levin | 30145dd | 2010-09-06 22:08:24 +0000 | [diff] [blame] | 465 | if (strcasecmp(s, signame(i) + 3) == 0) { |
Dmitry V. Levin | 35d0572 | 2010-09-15 16:18:20 +0000 | [diff] [blame] | 466 | qualify_one(i, bitflag, not, -1); |
Roland McGrath | 76421df | 2005-02-02 03:51:18 +0000 | [diff] [blame] | 467 | return 0; |
Roland McGrath | 9797ceb | 2002-12-30 10:23:00 +0000 | [diff] [blame] | 468 | } |
Denys Vlasenko | e4cc7c5 | 2012-03-23 11:29:01 +0100 | [diff] [blame] | 469 | } |
Roland McGrath | 76421df | 2005-02-02 03:51:18 +0000 | [diff] [blame] | 470 | return -1; |
Roland McGrath | 9797ceb | 2002-12-30 10:23:00 +0000 | [diff] [blame] | 471 | } |
| 472 | |
| 473 | static int |
Dmitry V. Levin | 3ed5d02 | 2014-09-10 13:46:04 +0000 | [diff] [blame] | 474 | qual_desc(const char *s, const unsigned int bitflag, const int not) |
Roland McGrath | 9797ceb | 2002-12-30 10:23:00 +0000 | [diff] [blame] | 475 | { |
Denys Vlasenko | e4cc7c5 | 2012-03-23 11:29:01 +0100 | [diff] [blame] | 476 | if (*s >= '0' && *s <= '9') { |
Dmitry V. Levin | ccee169 | 2012-03-25 21:49:48 +0000 | [diff] [blame] | 477 | int desc = string_to_uint(s); |
Denys Vlasenko | 9cbc15b | 2013-02-22 13:37:36 +0100 | [diff] [blame] | 478 | if (desc < 0 || desc > 0x7fff) /* paranoia */ |
Roland McGrath | fe6b352 | 2005-02-02 04:40:11 +0000 | [diff] [blame] | 479 | return -1; |
Dmitry V. Levin | 35d0572 | 2010-09-15 16:18:20 +0000 | [diff] [blame] | 480 | qualify_one(desc, bitflag, not, -1); |
Roland McGrath | 2b61902 | 2003-04-10 18:58:20 +0000 | [diff] [blame] | 481 | return 0; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 482 | } |
| 483 | return -1; |
| 484 | } |
| 485 | |
| 486 | static int |
Dmitry V. Levin | 30145dd | 2010-09-06 22:08:24 +0000 | [diff] [blame] | 487 | lookup_class(const char *s) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 488 | { |
| 489 | if (strcmp(s, "file") == 0) |
| 490 | return TRACE_FILE; |
| 491 | if (strcmp(s, "ipc") == 0) |
| 492 | return TRACE_IPC; |
| 493 | if (strcmp(s, "network") == 0) |
| 494 | return TRACE_NETWORK; |
| 495 | if (strcmp(s, "process") == 0) |
| 496 | return TRACE_PROCESS; |
| 497 | if (strcmp(s, "signal") == 0) |
| 498 | return TRACE_SIGNAL; |
Roland McGrath | 2fe7b13 | 2005-07-05 03:25:35 +0000 | [diff] [blame] | 499 | if (strcmp(s, "desc") == 0) |
| 500 | return TRACE_DESC; |
Namhyung Kim | 9679296 | 2012-10-24 11:41:57 +0900 | [diff] [blame] | 501 | if (strcmp(s, "memory") == 0) |
| 502 | return TRACE_MEMORY; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 503 | return -1; |
| 504 | } |
| 505 | |
| 506 | void |
Dmitry V. Levin | 30145dd | 2010-09-06 22:08:24 +0000 | [diff] [blame] | 507 | qualify(const char *s) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 508 | { |
Roland McGrath | e10e62a | 2004-09-04 04:20:43 +0000 | [diff] [blame] | 509 | const struct qual_options *opt; |
Dmitry V. Levin | 30145dd | 2010-09-06 22:08:24 +0000 | [diff] [blame] | 510 | char *copy; |
| 511 | const char *p; |
Dmitry V. Levin | 3ed5d02 | 2014-09-10 13:46:04 +0000 | [diff] [blame] | 512 | int not; |
| 513 | unsigned int i; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 514 | |
Denys Vlasenko | 9cbc15b | 2013-02-22 13:37:36 +0100 | [diff] [blame] | 515 | if (num_quals == 0) |
| 516 | reallocate_qual(MIN_QUALS); |
| 517 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 518 | opt = &qual_options[0]; |
| 519 | for (i = 0; (p = qual_options[i].option_name); i++) { |
Dmitry V. Levin | 3ed5d02 | 2014-09-10 13:46:04 +0000 | [diff] [blame] | 520 | unsigned int len = strlen(p); |
| 521 | if (strncmp(s, p, len) == 0 && s[len] == '=') { |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 522 | opt = &qual_options[i]; |
Dmitry V. Levin | 3ed5d02 | 2014-09-10 13:46:04 +0000 | [diff] [blame] | 523 | s += len + 1; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 524 | break; |
| 525 | } |
| 526 | } |
| 527 | not = 0; |
| 528 | if (*s == '!') { |
| 529 | not = 1; |
| 530 | s++; |
| 531 | } |
| 532 | if (strcmp(s, "none") == 0) { |
| 533 | not = 1 - not; |
| 534 | s = "all"; |
| 535 | } |
| 536 | if (strcmp(s, "all") == 0) { |
Denys Vlasenko | 9cbc15b | 2013-02-22 13:37:36 +0100 | [diff] [blame] | 537 | for (i = 0; i < num_quals; i++) { |
Dmitry V. Levin | 35d0572 | 2010-09-15 16:18:20 +0000 | [diff] [blame] | 538 | qualify_one(i, opt->bitflag, not, -1); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 539 | } |
| 540 | return; |
| 541 | } |
Denys Vlasenko | 9cbc15b | 2013-02-22 13:37:36 +0100 | [diff] [blame] | 542 | for (i = 0; i < num_quals; i++) { |
Dmitry V. Levin | 35d0572 | 2010-09-15 16:18:20 +0000 | [diff] [blame] | 543 | qualify_one(i, opt->bitflag, !not, -1); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 544 | } |
Dmitry V. Levin | 3e9d71f | 2015-05-25 20:41:02 +0000 | [diff] [blame] | 545 | copy = xstrdup(s); |
Dmitry V. Levin | 30145dd | 2010-09-06 22:08:24 +0000 | [diff] [blame] | 546 | for (p = strtok(copy, ","); p; p = strtok(NULL, ",")) { |
Dmitry V. Levin | 3ed5d02 | 2014-09-10 13:46:04 +0000 | [diff] [blame] | 547 | int n; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 548 | if (opt->bitflag == QUAL_TRACE && (n = lookup_class(p)) > 0) { |
Denys Vlasenko | 9cbc15b | 2013-02-22 13:37:36 +0100 | [diff] [blame] | 549 | unsigned pers; |
| 550 | for (pers = 0; pers < SUPPORTED_PERSONALITIES; pers++) { |
| 551 | for (i = 0; i < nsyscall_vec[pers]; i++) |
| 552 | if (sysent_vec[pers][i].sys_flags & n) |
Dmitry V. Levin | 7b9e45e | 2013-03-01 15:50:22 +0000 | [diff] [blame] | 553 | qualify_one(i, opt->bitflag, not, pers); |
Denys Vlasenko | 9cbc15b | 2013-02-22 13:37:36 +0100 | [diff] [blame] | 554 | } |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 555 | continue; |
| 556 | } |
Dmitry V. Levin | 35d0572 | 2010-09-15 16:18:20 +0000 | [diff] [blame] | 557 | if (opt->qualify(p, opt->bitflag, not)) { |
Denys Vlasenko | 4c65c44 | 2012-03-08 11:54:10 +0100 | [diff] [blame] | 558 | error_msg_and_die("invalid %s '%s'", |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 559 | opt->argument_name, p); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 560 | } |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 561 | } |
Dmitry V. Levin | 30145dd | 2010-09-06 22:08:24 +0000 | [diff] [blame] | 562 | free(copy); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 563 | return; |
| 564 | } |
| 565 | |
Dmitry V. Levin | 648c22c | 2012-03-15 22:08:55 +0000 | [diff] [blame] | 566 | #ifdef SYS_socket_subcall |
Roland McGrath | a4d4853 | 2005-06-08 20:45:28 +0000 | [diff] [blame] | 567 | static void |
Dmitry V. Levin | 648c22c | 2012-03-15 22:08:55 +0000 | [diff] [blame] | 568 | decode_socket_subcall(struct tcb *tcp) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 569 | { |
Dmitry V. Levin | 648c22c | 2012-03-15 22:08:55 +0000 | [diff] [blame] | 570 | unsigned long addr; |
Dmitry V. Levin | c215569 | 2015-03-22 15:52:40 +0000 | [diff] [blame] | 571 | unsigned int n; |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 572 | |
Dmitry V. Levin | 648c22c | 2012-03-15 22:08:55 +0000 | [diff] [blame] | 573 | if (tcp->u_arg[0] < 0 || tcp->u_arg[0] >= SYS_socket_nsubcalls) |
| 574 | return; |
| 575 | |
| 576 | tcp->scno = SYS_socket_subcall + tcp->u_arg[0]; |
Denys Vlasenko | 74ec14f | 2013-02-21 16:13:47 +0100 | [diff] [blame] | 577 | tcp->qual_flg = qual_flags[tcp->scno]; |
| 578 | tcp->s_ent = &sysent[tcp->scno]; |
Dmitry V. Levin | 648c22c | 2012-03-15 22:08:55 +0000 | [diff] [blame] | 579 | addr = tcp->u_arg[1]; |
Denys Vlasenko | 74ec14f | 2013-02-21 16:13:47 +0100 | [diff] [blame] | 580 | n = tcp->s_ent->nargs; |
Dmitry V. Levin | c215569 | 2015-03-22 15:52:40 +0000 | [diff] [blame] | 581 | if (sizeof(tcp->u_arg[0]) == current_wordsize) { |
| 582 | memset(tcp->u_arg, 0, n * sizeof(tcp->u_arg[0])); |
| 583 | (void) umoven(tcp, addr, n * sizeof(tcp->u_arg[0]), tcp->u_arg); |
| 584 | } else { |
| 585 | unsigned int args[n]; |
| 586 | unsigned int i; |
| 587 | |
| 588 | memset(args, 0, sizeof(args)); |
| 589 | (void) umove(tcp, addr, &args); |
| 590 | for (i = 0; i < n; ++i) |
| 591 | tcp->u_arg[i] = args[i]; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 592 | } |
| 593 | } |
Dmitry V. Levin | 648c22c | 2012-03-15 22:08:55 +0000 | [diff] [blame] | 594 | #endif |
Mike Frysinger | 3362e89 | 2012-03-15 01:09:19 -0400 | [diff] [blame] | 595 | |
Dmitry V. Levin | 648c22c | 2012-03-15 22:08:55 +0000 | [diff] [blame] | 596 | #ifdef SYS_ipc_subcall |
| 597 | static void |
| 598 | decode_ipc_subcall(struct tcb *tcp) |
| 599 | { |
Denys Vlasenko | 74ec14f | 2013-02-21 16:13:47 +0100 | [diff] [blame] | 600 | unsigned int i, n; |
Dmitry V. Levin | 648c22c | 2012-03-15 22:08:55 +0000 | [diff] [blame] | 601 | |
| 602 | if (tcp->u_arg[0] < 0 || tcp->u_arg[0] >= SYS_ipc_nsubcalls) |
| 603 | return; |
| 604 | |
| 605 | tcp->scno = SYS_ipc_subcall + tcp->u_arg[0]; |
Denys Vlasenko | 74ec14f | 2013-02-21 16:13:47 +0100 | [diff] [blame] | 606 | tcp->qual_flg = qual_flags[tcp->scno]; |
| 607 | tcp->s_ent = &sysent[tcp->scno]; |
| 608 | n = tcp->s_ent->nargs; |
| 609 | for (i = 0; i < n; i++) |
Dmitry V. Levin | 648c22c | 2012-03-15 22:08:55 +0000 | [diff] [blame] | 610 | tcp->u_arg[i] = tcp->u_arg[i + 1]; |
| 611 | } |
| 612 | #endif |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 613 | |
Dmitry V. Levin | f34b97f | 2015-04-17 09:14:19 +0000 | [diff] [blame] | 614 | #ifdef LINUX_MIPSO32 |
| 615 | static void |
| 616 | decode_mips_subcall(struct tcb *tcp) |
| 617 | { |
| 618 | if (!SCNO_IS_VALID(tcp->u_arg[0])) |
| 619 | return; |
| 620 | tcp->scno = tcp->u_arg[0]; |
| 621 | tcp->qual_flg = qual_flags[tcp->scno]; |
| 622 | tcp->s_ent = &sysent[tcp->scno]; |
| 623 | memmove(&tcp->u_arg[0], &tcp->u_arg[1], |
| 624 | sizeof(tcp->u_arg) - sizeof(tcp->u_arg[0])); |
| 625 | /* |
| 626 | * Fetching the last arg of 7-arg syscalls (fadvise64_64 |
| 627 | * and sync_file_range) would require additional code, |
| 628 | * see linux/mips/get_syscall_args.c |
| 629 | */ |
| 630 | } |
Dmitry V. Levin | f34b97f | 2015-04-17 09:14:19 +0000 | [diff] [blame] | 631 | #endif |
| 632 | |
Denys Vlasenko | a614692 | 2011-08-24 18:07:22 +0200 | [diff] [blame] | 633 | int |
| 634 | printargs(struct tcb *tcp) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 635 | { |
Denys Vlasenko | a614692 | 2011-08-24 18:07:22 +0200 | [diff] [blame] | 636 | if (entering(tcp)) { |
| 637 | int i; |
Denys Vlasenko | 74ec14f | 2013-02-21 16:13:47 +0100 | [diff] [blame] | 638 | int n = tcp->s_ent->nargs; |
| 639 | for (i = 0; i < n; i++) |
Denys Vlasenko | a614692 | 2011-08-24 18:07:22 +0200 | [diff] [blame] | 640 | tprintf("%s%#lx", i ? ", " : "", tcp->u_arg[i]); |
| 641 | } |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 642 | return 0; |
| 643 | } |
| 644 | |
Denys Vlasenko | 72879c6 | 2012-02-27 14:18:02 +0100 | [diff] [blame] | 645 | int |
Dmitry V. Levin | 1ab6e25 | 2016-02-14 16:26:37 +0000 | [diff] [blame] | 646 | printargs_u(struct tcb *tcp) |
Denys Vlasenko | 72879c6 | 2012-02-27 14:18:02 +0100 | [diff] [blame] | 647 | { |
Dmitry V. Levin | 835127d | 2016-02-14 15:53:05 +0000 | [diff] [blame] | 648 | const int n = tcp->s_ent->nargs; |
| 649 | int i; |
| 650 | for (i = 0; i < n; ++i) |
Dmitry V. Levin | 1ab6e25 | 2016-02-14 16:26:37 +0000 | [diff] [blame] | 651 | tprintf("%s%u", i ? ", " : "", |
| 652 | (unsigned int) tcp->u_arg[i]); |
Dmitry V. Levin | 835127d | 2016-02-14 15:53:05 +0000 | [diff] [blame] | 653 | return RVAL_DECODED; |
Denys Vlasenko | 72879c6 | 2012-02-27 14:18:02 +0100 | [diff] [blame] | 654 | } |
| 655 | |
| 656 | int |
Dmitry V. Levin | 1ab6e25 | 2016-02-14 16:26:37 +0000 | [diff] [blame] | 657 | printargs_d(struct tcb *tcp) |
Denys Vlasenko | 72879c6 | 2012-02-27 14:18:02 +0100 | [diff] [blame] | 658 | { |
Dmitry V. Levin | 835127d | 2016-02-14 15:53:05 +0000 | [diff] [blame] | 659 | const int n = tcp->s_ent->nargs; |
| 660 | int i; |
| 661 | for (i = 0; i < n; ++i) |
Dmitry V. Levin | 1ab6e25 | 2016-02-14 16:26:37 +0000 | [diff] [blame] | 662 | tprintf("%s%d", i ? ", " : "", |
| 663 | (int) tcp->u_arg[i]); |
Dmitry V. Levin | 835127d | 2016-02-14 15:53:05 +0000 | [diff] [blame] | 664 | return RVAL_DECODED; |
Denys Vlasenko | 72879c6 | 2012-02-27 14:18:02 +0100 | [diff] [blame] | 665 | } |
| 666 | |
Dmitry V. Levin | 1b78607 | 2015-03-22 18:09:55 +0000 | [diff] [blame] | 667 | static void |
| 668 | dumpio(struct tcb *tcp) |
| 669 | { |
Elvira Khabirova | 483c15f | 2015-07-10 22:24:58 +0300 | [diff] [blame] | 670 | int sen; |
Dmitry V. Levin | 1b78607 | 2015-03-22 18:09:55 +0000 | [diff] [blame] | 671 | |
| 672 | if (syserror(tcp)) |
| 673 | return; |
| 674 | if ((unsigned long) tcp->u_arg[0] >= num_quals) |
| 675 | return; |
Elvira Khabirova | 483c15f | 2015-07-10 22:24:58 +0300 | [diff] [blame] | 676 | sen = tcp->s_ent->sen; |
| 677 | if (SEN_printargs == sen) |
Dmitry V. Levin | 1b78607 | 2015-03-22 18:09:55 +0000 | [diff] [blame] | 678 | return; |
| 679 | if (qual_flags[tcp->u_arg[0]] & QUAL_READ) { |
Elvira Khabirova | 483c15f | 2015-07-10 22:24:58 +0300 | [diff] [blame] | 680 | switch (sen) { |
| 681 | case SEN_read: |
| 682 | case SEN_pread: |
| 683 | case SEN_recv: |
| 684 | case SEN_recvfrom: |
Dmitry V. Levin | 1b78607 | 2015-03-22 18:09:55 +0000 | [diff] [blame] | 685 | dumpstr(tcp, tcp->u_arg[1], tcp->u_rval); |
| 686 | return; |
Elvira Khabirova | 483c15f | 2015-07-10 22:24:58 +0300 | [diff] [blame] | 687 | case SEN_readv: |
Dmitry V. Levin | 3f6ebce | 2016-03-31 00:01:58 +0000 | [diff] [blame] | 688 | case SEN_preadv: |
Dmitry V. Levin | a6dd094 | 2016-05-11 00:42:10 +0000 | [diff] [blame] | 689 | case SEN_preadv2: |
Dmitry V. Levin | 05a0af6 | 2016-01-20 00:17:02 +0000 | [diff] [blame] | 690 | dumpiov_upto(tcp, tcp->u_arg[2], tcp->u_arg[1], |
| 691 | tcp->u_rval); |
Dmitry V. Levin | 1b78607 | 2015-03-22 18:09:55 +0000 | [diff] [blame] | 692 | return; |
Elvira Khabirova | 483c15f | 2015-07-10 22:24:58 +0300 | [diff] [blame] | 693 | case SEN_recvmsg: |
Dmitry V. Levin | 93c9d1c | 2016-01-20 03:26:37 +0000 | [diff] [blame] | 694 | dumpiov_in_msghdr(tcp, tcp->u_arg[1], tcp->u_rval); |
Dmitry V. Levin | 1b78607 | 2015-03-22 18:09:55 +0000 | [diff] [blame] | 695 | return; |
Elvira Khabirova | 483c15f | 2015-07-10 22:24:58 +0300 | [diff] [blame] | 696 | case SEN_recvmmsg: |
Dmitry V. Levin | 1b78607 | 2015-03-22 18:09:55 +0000 | [diff] [blame] | 697 | dumpiov_in_mmsghdr(tcp, tcp->u_arg[1]); |
| 698 | return; |
Dmitry V. Levin | 1b78607 | 2015-03-22 18:09:55 +0000 | [diff] [blame] | 699 | } |
| 700 | } |
| 701 | if (qual_flags[tcp->u_arg[0]] & QUAL_WRITE) { |
Elvira Khabirova | 483c15f | 2015-07-10 22:24:58 +0300 | [diff] [blame] | 702 | switch (sen) { |
| 703 | case SEN_write: |
| 704 | case SEN_pwrite: |
| 705 | case SEN_send: |
| 706 | case SEN_sendto: |
Dmitry V. Levin | 1b78607 | 2015-03-22 18:09:55 +0000 | [diff] [blame] | 707 | dumpstr(tcp, tcp->u_arg[1], tcp->u_arg[2]); |
Elvira Khabirova | 483c15f | 2015-07-10 22:24:58 +0300 | [diff] [blame] | 708 | break; |
| 709 | case SEN_writev: |
Dmitry V. Levin | 3f6ebce | 2016-03-31 00:01:58 +0000 | [diff] [blame] | 710 | case SEN_pwritev: |
Dmitry V. Levin | a6dd094 | 2016-05-11 00:42:10 +0000 | [diff] [blame] | 711 | case SEN_pwritev2: |
Dmitry V. Levin | 13870c5 | 2016-02-13 23:18:15 +0000 | [diff] [blame] | 712 | case SEN_vmsplice: |
Dmitry V. Levin | 1b78607 | 2015-03-22 18:09:55 +0000 | [diff] [blame] | 713 | dumpiov(tcp, tcp->u_arg[2], tcp->u_arg[1]); |
Elvira Khabirova | 483c15f | 2015-07-10 22:24:58 +0300 | [diff] [blame] | 714 | break; |
Elvira Khabirova | 483c15f | 2015-07-10 22:24:58 +0300 | [diff] [blame] | 715 | case SEN_sendmsg: |
Dmitry V. Levin | 93c9d1c | 2016-01-20 03:26:37 +0000 | [diff] [blame] | 716 | dumpiov_in_msghdr(tcp, tcp->u_arg[1], |
| 717 | (unsigned long) -1L); |
Elvira Khabirova | 483c15f | 2015-07-10 22:24:58 +0300 | [diff] [blame] | 718 | break; |
| 719 | case SEN_sendmmsg: |
Dmitry V. Levin | 1b78607 | 2015-03-22 18:09:55 +0000 | [diff] [blame] | 720 | dumpiov_in_mmsghdr(tcp, tcp->u_arg[1]); |
Elvira Khabirova | 483c15f | 2015-07-10 22:24:58 +0300 | [diff] [blame] | 721 | break; |
Elvira Khabirova | 483c15f | 2015-07-10 22:24:58 +0300 | [diff] [blame] | 722 | } |
Dmitry V. Levin | 1b78607 | 2015-03-22 18:09:55 +0000 | [diff] [blame] | 723 | } |
| 724 | } |
| 725 | |
| 726 | /* |
| 727 | * Shuffle syscall numbers so that we don't have huge gaps in syscall table. |
| 728 | * The shuffling should be an involution: shuffle_scno(shuffle_scno(n)) == n. |
| 729 | */ |
| 730 | #if defined(ARM) || defined(AARCH64) /* So far only 32-bit ARM needs this */ |
| 731 | static long |
| 732 | shuffle_scno(unsigned long scno) |
| 733 | { |
| 734 | if (scno < ARM_FIRST_SHUFFLED_SYSCALL) |
| 735 | return scno; |
| 736 | |
| 737 | /* __ARM_NR_cmpxchg? Swap with LAST_ORDINARY+1 */ |
| 738 | if (scno == ARM_FIRST_SHUFFLED_SYSCALL) |
| 739 | return 0x000ffff0; |
| 740 | if (scno == 0x000ffff0) |
| 741 | return ARM_FIRST_SHUFFLED_SYSCALL; |
| 742 | |
| 743 | #define ARM_SECOND_SHUFFLED_SYSCALL (ARM_FIRST_SHUFFLED_SYSCALL + 1) |
| 744 | /* |
| 745 | * Is it ARM specific syscall? |
| 746 | * Swap [0x000f0000, 0x000f0000 + LAST_SPECIAL] range |
| 747 | * with [SECOND_SHUFFLED, SECOND_SHUFFLED + LAST_SPECIAL] range. |
| 748 | */ |
| 749 | if (scno >= 0x000f0000 && |
| 750 | scno <= 0x000f0000 + ARM_LAST_SPECIAL_SYSCALL) { |
| 751 | return scno - 0x000f0000 + ARM_SECOND_SHUFFLED_SYSCALL; |
| 752 | } |
| 753 | if (scno <= ARM_SECOND_SHUFFLED_SYSCALL + ARM_LAST_SPECIAL_SYSCALL) { |
| 754 | return scno + 0x000f0000 - ARM_SECOND_SHUFFLED_SYSCALL; |
| 755 | } |
| 756 | |
| 757 | return scno; |
| 758 | } |
| 759 | #else |
| 760 | # define shuffle_scno(scno) ((long)(scno)) |
| 761 | #endif |
| 762 | |
Mike Frysinger | d2eaf67 | 2015-08-18 03:24:59 -0400 | [diff] [blame] | 763 | const char * |
| 764 | syscall_name(long scno) |
Dmitry V. Levin | 1b78607 | 2015-03-22 18:09:55 +0000 | [diff] [blame] | 765 | { |
| 766 | static char buf[sizeof("syscall_%lu") + sizeof(long)*3]; |
| 767 | |
Mike Frysinger | d2eaf67 | 2015-08-18 03:24:59 -0400 | [diff] [blame] | 768 | if (SCNO_IS_VALID(scno)) |
| 769 | return sysent[scno].sys_name; |
| 770 | else { |
| 771 | sprintf(buf, "syscall_%lu", shuffle_scno(scno)); |
| 772 | return buf; |
| 773 | } |
Dmitry V. Levin | 1b78607 | 2015-03-22 18:09:55 +0000 | [diff] [blame] | 774 | } |
| 775 | |
| 776 | static long get_regs_error; |
| 777 | |
| 778 | void |
| 779 | clear_regs(void) |
| 780 | { |
| 781 | get_regs_error = -1; |
| 782 | } |
| 783 | |
| 784 | static int get_syscall_args(struct tcb *); |
| 785 | static int get_syscall_result(struct tcb *); |
Dmitry V. Levin | 7386ca7 | 2015-11-30 13:57:51 +0000 | [diff] [blame] | 786 | static int arch_get_scno(struct tcb *tcp); |
| 787 | static void get_error(struct tcb *, const bool); |
| 788 | #if defined X86_64 || defined POWERPC |
| 789 | static int getregs_old(pid_t); |
| 790 | #endif |
Dmitry V. Levin | 1b78607 | 2015-03-22 18:09:55 +0000 | [diff] [blame] | 791 | |
| 792 | static int |
| 793 | trace_syscall_entering(struct tcb *tcp) |
| 794 | { |
| 795 | int res, scno_good; |
| 796 | |
| 797 | scno_good = res = get_scno(tcp); |
| 798 | if (res == 0) |
| 799 | return res; |
| 800 | if (res == 1) |
| 801 | res = get_syscall_args(tcp); |
| 802 | |
| 803 | if (res != 1) { |
| 804 | printleader(tcp); |
| 805 | if (scno_good != 1) |
| 806 | tprints("????" /* anti-trigraph gap */ "("); |
| 807 | else if (tcp->qual_flg & UNDEFINED_SCNO) |
Mike Frysinger | d2eaf67 | 2015-08-18 03:24:59 -0400 | [diff] [blame] | 808 | tprintf("%s(", syscall_name(tcp->scno)); |
Dmitry V. Levin | 1b78607 | 2015-03-22 18:09:55 +0000 | [diff] [blame] | 809 | else |
| 810 | tprintf("%s(", tcp->s_ent->sys_name); |
| 811 | /* |
| 812 | * " <unavailable>" will be added later by the code which |
| 813 | * detects ptrace errors. |
| 814 | */ |
| 815 | goto ret; |
| 816 | } |
| 817 | |
Dmitry V. Levin | f34b97f | 2015-04-17 09:14:19 +0000 | [diff] [blame] | 818 | #ifdef LINUX_MIPSO32 |
Elvira Khabirova | 483c15f | 2015-07-10 22:24:58 +0300 | [diff] [blame] | 819 | if (SEN_syscall == tcp->s_ent->sen) |
Dmitry V. Levin | f34b97f | 2015-04-17 09:14:19 +0000 | [diff] [blame] | 820 | decode_mips_subcall(tcp); |
| 821 | #endif |
| 822 | |
Elvira Khabirova | 483c15f | 2015-07-10 22:24:58 +0300 | [diff] [blame] | 823 | if ( SEN_execve == tcp->s_ent->sen |
Dmitry V. Levin | 1b78607 | 2015-03-22 18:09:55 +0000 | [diff] [blame] | 824 | # if defined(SPARC) || defined(SPARC64) |
Elvira Khabirova | 483c15f | 2015-07-10 22:24:58 +0300 | [diff] [blame] | 825 | || SEN_execv == tcp->s_ent->sen |
Dmitry V. Levin | 1b78607 | 2015-03-22 18:09:55 +0000 | [diff] [blame] | 826 | # endif |
| 827 | ) { |
| 828 | hide_log_until_execve = 0; |
| 829 | } |
| 830 | |
| 831 | #if defined(SYS_socket_subcall) || defined(SYS_ipc_subcall) |
Elvira Khabirova | 483c15f | 2015-07-10 22:24:58 +0300 | [diff] [blame] | 832 | switch (tcp->s_ent->sen) { |
Dmitry V. Levin | 1b78607 | 2015-03-22 18:09:55 +0000 | [diff] [blame] | 833 | # ifdef SYS_socket_subcall |
Elvira Khabirova | 483c15f | 2015-07-10 22:24:58 +0300 | [diff] [blame] | 834 | case SEN_socketcall: |
Dmitry V. Levin | 1b78607 | 2015-03-22 18:09:55 +0000 | [diff] [blame] | 835 | decode_socket_subcall(tcp); |
| 836 | break; |
Dmitry V. Levin | 1b78607 | 2015-03-22 18:09:55 +0000 | [diff] [blame] | 837 | # endif |
| 838 | # ifdef SYS_ipc_subcall |
Elvira Khabirova | 483c15f | 2015-07-10 22:24:58 +0300 | [diff] [blame] | 839 | case SEN_ipc: |
Dmitry V. Levin | 1b78607 | 2015-03-22 18:09:55 +0000 | [diff] [blame] | 840 | decode_ipc_subcall(tcp); |
| 841 | break; |
Dmitry V. Levin | 1b78607 | 2015-03-22 18:09:55 +0000 | [diff] [blame] | 842 | # endif |
Dmitry V. Levin | 1b78607 | 2015-03-22 18:09:55 +0000 | [diff] [blame] | 843 | } |
| 844 | #endif |
| 845 | |
| 846 | if (!(tcp->qual_flg & QUAL_TRACE) |
| 847 | || (tracing_paths && !pathtrace_match(tcp)) |
| 848 | ) { |
| 849 | tcp->flags |= TCB_INSYSCALL | TCB_FILTERED; |
Dmitry V. Levin | 204c2bc | 2015-07-08 14:10:56 +0000 | [diff] [blame] | 850 | tcp->sys_func_rval = 0; |
Dmitry V. Levin | 1b78607 | 2015-03-22 18:09:55 +0000 | [diff] [blame] | 851 | return 0; |
| 852 | } |
| 853 | |
| 854 | tcp->flags &= ~TCB_FILTERED; |
| 855 | |
| 856 | if (cflag == CFLAG_ONLY_STATS || hide_log_until_execve) { |
| 857 | res = 0; |
| 858 | goto ret; |
| 859 | } |
| 860 | |
| 861 | #ifdef USE_LIBUNWIND |
| 862 | if (stack_trace_enabled) { |
| 863 | if (tcp->s_ent->sys_flags & STACKTRACE_CAPTURE_ON_ENTER) |
| 864 | unwind_capture_stacktrace(tcp); |
| 865 | } |
| 866 | #endif |
| 867 | |
| 868 | printleader(tcp); |
| 869 | if (tcp->qual_flg & UNDEFINED_SCNO) |
Mike Frysinger | d2eaf67 | 2015-08-18 03:24:59 -0400 | [diff] [blame] | 870 | tprintf("%s(", syscall_name(tcp->scno)); |
Dmitry V. Levin | 1b78607 | 2015-03-22 18:09:55 +0000 | [diff] [blame] | 871 | else |
| 872 | tprintf("%s(", tcp->s_ent->sys_name); |
Elvira Khabirova | 483c15f | 2015-07-10 22:24:58 +0300 | [diff] [blame] | 873 | if ((tcp->qual_flg & QUAL_RAW) && SEN_exit != tcp->s_ent->sen) |
Dmitry V. Levin | 1b78607 | 2015-03-22 18:09:55 +0000 | [diff] [blame] | 874 | res = printargs(tcp); |
| 875 | else |
| 876 | res = tcp->s_ent->sys_func(tcp); |
| 877 | |
| 878 | fflush(tcp->outf); |
| 879 | ret: |
| 880 | tcp->flags |= TCB_INSYSCALL; |
Dmitry V. Levin | 204c2bc | 2015-07-08 14:10:56 +0000 | [diff] [blame] | 881 | tcp->sys_func_rval = res; |
Dmitry V. Levin | 1b78607 | 2015-03-22 18:09:55 +0000 | [diff] [blame] | 882 | /* Measure the entrance time as late as possible to avoid errors. */ |
| 883 | if (Tflag || cflag) |
| 884 | gettimeofday(&tcp->etime, NULL); |
| 885 | return res; |
| 886 | } |
| 887 | |
| 888 | static int |
| 889 | trace_syscall_exiting(struct tcb *tcp) |
| 890 | { |
| 891 | int sys_res; |
| 892 | struct timeval tv; |
| 893 | int res; |
| 894 | long u_error; |
| 895 | |
| 896 | /* Measure the exit time as early as possible to avoid errors. */ |
| 897 | if (Tflag || cflag) |
| 898 | gettimeofday(&tv, NULL); |
| 899 | |
| 900 | #ifdef USE_LIBUNWIND |
| 901 | if (stack_trace_enabled) { |
| 902 | if (tcp->s_ent->sys_flags & STACKTRACE_INVALIDATE_CACHE) |
| 903 | unwind_cache_invalidate(tcp); |
| 904 | } |
| 905 | #endif |
| 906 | |
| 907 | #if SUPPORTED_PERSONALITIES > 1 |
| 908 | update_personality(tcp, tcp->currpers); |
| 909 | #endif |
| 910 | res = (get_regs_error ? -1 : get_syscall_result(tcp)); |
Dmitry V. Levin | 4b80f34 | 2015-06-29 11:57:44 +0000 | [diff] [blame] | 911 | if (filtered(tcp) || hide_log_until_execve) |
| 912 | goto ret; |
Dmitry V. Levin | 1b78607 | 2015-03-22 18:09:55 +0000 | [diff] [blame] | 913 | |
| 914 | if (cflag) { |
| 915 | count_syscall(tcp, &tv); |
| 916 | if (cflag == CFLAG_ONLY_STATS) { |
| 917 | goto ret; |
| 918 | } |
| 919 | } |
| 920 | |
| 921 | /* If not in -ff mode, and printing_tcp != tcp, |
| 922 | * then the log currently does not end with output |
| 923 | * of _our syscall entry_, but with something else. |
| 924 | * We need to say which syscall's return is this. |
| 925 | * |
| 926 | * Forced reprinting via TCB_REPRINT is used only by |
| 927 | * "strace -ff -oLOG test/threaded_execve" corner case. |
| 928 | * It's the only case when -ff mode needs reprinting. |
| 929 | */ |
| 930 | if ((followfork < 2 && printing_tcp != tcp) || (tcp->flags & TCB_REPRINT)) { |
| 931 | tcp->flags &= ~TCB_REPRINT; |
| 932 | printleader(tcp); |
| 933 | if (tcp->qual_flg & UNDEFINED_SCNO) |
Mike Frysinger | d2eaf67 | 2015-08-18 03:24:59 -0400 | [diff] [blame] | 934 | tprintf("<... %s resumed> ", syscall_name(tcp->scno)); |
Dmitry V. Levin | 1b78607 | 2015-03-22 18:09:55 +0000 | [diff] [blame] | 935 | else |
| 936 | tprintf("<... %s resumed> ", tcp->s_ent->sys_name); |
| 937 | } |
| 938 | printing_tcp = tcp; |
| 939 | |
| 940 | tcp->s_prev_ent = NULL; |
| 941 | if (res != 1) { |
| 942 | /* There was error in one of prior ptrace ops */ |
| 943 | tprints(") "); |
| 944 | tabto(); |
| 945 | tprints("= ? <unavailable>\n"); |
| 946 | line_ended(); |
| 947 | tcp->flags &= ~TCB_INSYSCALL; |
Dmitry V. Levin | 204c2bc | 2015-07-08 14:10:56 +0000 | [diff] [blame] | 948 | tcp->sys_func_rval = 0; |
Dmitry V. Levin | 1b78607 | 2015-03-22 18:09:55 +0000 | [diff] [blame] | 949 | return res; |
| 950 | } |
| 951 | tcp->s_prev_ent = tcp->s_ent; |
| 952 | |
| 953 | sys_res = 0; |
| 954 | if (tcp->qual_flg & QUAL_RAW) { |
| 955 | /* sys_res = printargs(tcp); - but it's nop on sysexit */ |
| 956 | } else { |
| 957 | /* FIXME: not_failing_only (IOW, option -z) is broken: |
| 958 | * failure of syscall is known only after syscall return. |
| 959 | * Thus we end up with something like this on, say, ENOENT: |
| 960 | * open("doesnt_exist", O_RDONLY <unfinished ...> |
| 961 | * {next syscall decode} |
| 962 | * whereas the intended result is that open(...) line |
| 963 | * is not shown at all. |
| 964 | */ |
| 965 | if (not_failing_only && tcp->u_error) |
| 966 | goto ret; /* ignore failed syscalls */ |
Dmitry V. Levin | 204c2bc | 2015-07-08 14:10:56 +0000 | [diff] [blame] | 967 | if (tcp->sys_func_rval & RVAL_DECODED) |
| 968 | sys_res = tcp->sys_func_rval; |
| 969 | else |
| 970 | sys_res = tcp->s_ent->sys_func(tcp); |
Dmitry V. Levin | 1b78607 | 2015-03-22 18:09:55 +0000 | [diff] [blame] | 971 | } |
| 972 | |
| 973 | tprints(") "); |
| 974 | tabto(); |
| 975 | u_error = tcp->u_error; |
| 976 | if (tcp->qual_flg & QUAL_RAW) { |
| 977 | if (u_error) |
| 978 | tprintf("= -1 (errno %ld)", u_error); |
| 979 | else |
| 980 | tprintf("= %#lx", tcp->u_rval); |
| 981 | } |
| 982 | else if (!(sys_res & RVAL_NONE) && u_error) { |
| 983 | switch (u_error) { |
| 984 | /* Blocked signals do not interrupt any syscalls. |
| 985 | * In this case syscalls don't return ERESTARTfoo codes. |
| 986 | * |
| 987 | * Deadly signals set to SIG_DFL interrupt syscalls |
| 988 | * and kill the process regardless of which of the codes below |
| 989 | * is returned by the interrupted syscall. |
| 990 | * In some cases, kernel forces a kernel-generated deadly |
| 991 | * signal to be unblocked and set to SIG_DFL (and thus cause |
| 992 | * death) if it is blocked or SIG_IGNed: for example, SIGSEGV |
| 993 | * or SIGILL. (The alternative is to leave process spinning |
| 994 | * forever on the faulty instruction - not useful). |
| 995 | * |
| 996 | * SIG_IGNed signals and non-deadly signals set to SIG_DFL |
| 997 | * (for example, SIGCHLD, SIGWINCH) interrupt syscalls, |
| 998 | * but kernel will always restart them. |
| 999 | */ |
| 1000 | case ERESTARTSYS: |
| 1001 | /* Most common type of signal-interrupted syscall exit code. |
| 1002 | * The system call will be restarted with the same arguments |
| 1003 | * if SA_RESTART is set; otherwise, it will fail with EINTR. |
| 1004 | */ |
| 1005 | tprints("= ? ERESTARTSYS (To be restarted if SA_RESTART is set)"); |
| 1006 | break; |
| 1007 | case ERESTARTNOINTR: |
| 1008 | /* Rare. For example, fork() returns this if interrupted. |
| 1009 | * SA_RESTART is ignored (assumed set): the restart is unconditional. |
| 1010 | */ |
| 1011 | tprints("= ? ERESTARTNOINTR (To be restarted)"); |
| 1012 | break; |
| 1013 | case ERESTARTNOHAND: |
| 1014 | /* pause(), rt_sigsuspend() etc use this code. |
| 1015 | * SA_RESTART is ignored (assumed not set): |
| 1016 | * syscall won't restart (will return EINTR instead) |
| 1017 | * even after signal with SA_RESTART set. However, |
| 1018 | * after SIG_IGN or SIG_DFL signal it will restart |
| 1019 | * (thus the name "restart only if has no handler"). |
| 1020 | */ |
| 1021 | tprints("= ? ERESTARTNOHAND (To be restarted if no handler)"); |
| 1022 | break; |
| 1023 | case ERESTART_RESTARTBLOCK: |
| 1024 | /* Syscalls like nanosleep(), poll() which can't be |
| 1025 | * restarted with their original arguments use this |
| 1026 | * code. Kernel will execute restart_syscall() instead, |
| 1027 | * which changes arguments before restarting syscall. |
| 1028 | * SA_RESTART is ignored (assumed not set) similarly |
| 1029 | * to ERESTARTNOHAND. (Kernel can't honor SA_RESTART |
| 1030 | * since restart data is saved in "restart block" |
| 1031 | * in task struct, and if signal handler uses a syscall |
| 1032 | * which in turn saves another such restart block, |
| 1033 | * old data is lost and restart becomes impossible) |
| 1034 | */ |
| 1035 | tprints("= ? ERESTART_RESTARTBLOCK (Interrupted by signal)"); |
| 1036 | break; |
| 1037 | default: |
| 1038 | if ((unsigned long) u_error < nerrnos |
| 1039 | && errnoent[u_error]) |
| 1040 | tprintf("= -1 %s (%s)", errnoent[u_error], |
| 1041 | strerror(u_error)); |
| 1042 | else |
| 1043 | tprintf("= -1 ERRNO_%lu (%s)", u_error, |
| 1044 | strerror(u_error)); |
| 1045 | break; |
| 1046 | } |
| 1047 | if ((sys_res & RVAL_STR) && tcp->auxstr) |
| 1048 | tprintf(" (%s)", tcp->auxstr); |
| 1049 | } |
| 1050 | else { |
| 1051 | if (sys_res & RVAL_NONE) |
| 1052 | tprints("= ?"); |
| 1053 | else { |
| 1054 | switch (sys_res & RVAL_MASK) { |
| 1055 | case RVAL_HEX: |
| 1056 | #if SUPPORTED_PERSONALITIES > 1 |
| 1057 | if (current_wordsize < sizeof(long)) |
| 1058 | tprintf("= %#x", |
| 1059 | (unsigned int) tcp->u_rval); |
| 1060 | else |
| 1061 | #endif |
| 1062 | tprintf("= %#lx", tcp->u_rval); |
| 1063 | break; |
| 1064 | case RVAL_OCTAL: |
| 1065 | tprintf("= %#lo", tcp->u_rval); |
| 1066 | break; |
| 1067 | case RVAL_UDECIMAL: |
Dmitry V. Levin | be1cb92 | 2016-01-07 14:20:17 +0000 | [diff] [blame] | 1068 | #if SUPPORTED_PERSONALITIES > 1 |
| 1069 | if (current_wordsize < sizeof(long)) |
| 1070 | tprintf("= %u", |
| 1071 | (unsigned int) tcp->u_rval); |
| 1072 | else |
| 1073 | #endif |
| 1074 | tprintf("= %lu", tcp->u_rval); |
Dmitry V. Levin | 1b78607 | 2015-03-22 18:09:55 +0000 | [diff] [blame] | 1075 | break; |
| 1076 | case RVAL_DECIMAL: |
| 1077 | tprintf("= %ld", tcp->u_rval); |
| 1078 | break; |
| 1079 | case RVAL_FD: |
| 1080 | if (show_fd_path) { |
| 1081 | tprints("= "); |
| 1082 | printfd(tcp, tcp->u_rval); |
| 1083 | } |
| 1084 | else |
| 1085 | tprintf("= %ld", tcp->u_rval); |
| 1086 | break; |
| 1087 | #if defined(LINUX_MIPSN32) || defined(X32) |
| 1088 | /* |
| 1089 | case RVAL_LHEX: |
| 1090 | tprintf("= %#llx", tcp->u_lrval); |
| 1091 | break; |
| 1092 | case RVAL_LOCTAL: |
| 1093 | tprintf("= %#llo", tcp->u_lrval); |
| 1094 | break; |
| 1095 | */ |
| 1096 | case RVAL_LUDECIMAL: |
| 1097 | tprintf("= %llu", tcp->u_lrval); |
| 1098 | break; |
| 1099 | /* |
| 1100 | case RVAL_LDECIMAL: |
| 1101 | tprintf("= %lld", tcp->u_lrval); |
| 1102 | break; |
| 1103 | */ |
| 1104 | #endif |
| 1105 | default: |
Dmitry V. Levin | 6c8ef05 | 2015-05-25 22:51:19 +0000 | [diff] [blame] | 1106 | error_msg("invalid rval format"); |
Dmitry V. Levin | 1b78607 | 2015-03-22 18:09:55 +0000 | [diff] [blame] | 1107 | break; |
| 1108 | } |
| 1109 | } |
| 1110 | if ((sys_res & RVAL_STR) && tcp->auxstr) |
| 1111 | tprintf(" (%s)", tcp->auxstr); |
| 1112 | } |
| 1113 | if (Tflag) { |
| 1114 | tv_sub(&tv, &tv, &tcp->etime); |
| 1115 | tprintf(" <%ld.%06ld>", |
| 1116 | (long) tv.tv_sec, (long) tv.tv_usec); |
| 1117 | } |
| 1118 | tprints("\n"); |
| 1119 | dumpio(tcp); |
| 1120 | line_ended(); |
| 1121 | |
| 1122 | #ifdef USE_LIBUNWIND |
| 1123 | if (stack_trace_enabled) |
| 1124 | unwind_print_stacktrace(tcp); |
| 1125 | #endif |
| 1126 | |
| 1127 | ret: |
| 1128 | tcp->flags &= ~TCB_INSYSCALL; |
Dmitry V. Levin | 204c2bc | 2015-07-08 14:10:56 +0000 | [diff] [blame] | 1129 | tcp->sys_func_rval = 0; |
Dmitry V. Levin | 1b78607 | 2015-03-22 18:09:55 +0000 | [diff] [blame] | 1130 | return 0; |
| 1131 | } |
| 1132 | |
| 1133 | int |
| 1134 | trace_syscall(struct tcb *tcp) |
| 1135 | { |
| 1136 | return exiting(tcp) ? |
| 1137 | trace_syscall_exiting(tcp) : trace_syscall_entering(tcp); |
| 1138 | } |
| 1139 | |
Dmitry V. Levin | 9af94a2 | 2015-09-18 01:54:59 +0000 | [diff] [blame] | 1140 | bool |
| 1141 | is_erestart(struct tcb *tcp) |
| 1142 | { |
| 1143 | switch (tcp->u_error) { |
| 1144 | case ERESTARTSYS: |
| 1145 | case ERESTARTNOINTR: |
| 1146 | case ERESTARTNOHAND: |
| 1147 | case ERESTART_RESTARTBLOCK: |
| 1148 | return true; |
| 1149 | default: |
| 1150 | return false; |
| 1151 | } |
| 1152 | } |
| 1153 | |
Dmitry V. Levin | 3858b93 | 2015-09-18 01:54:59 +0000 | [diff] [blame] | 1154 | static int saved_u_error; |
| 1155 | |
| 1156 | void |
| 1157 | temporarily_clear_syserror(struct tcb *tcp) |
| 1158 | { |
| 1159 | saved_u_error = tcp->u_error; |
| 1160 | tcp->u_error = 0; |
| 1161 | } |
| 1162 | |
| 1163 | void |
| 1164 | restore_cleared_syserror(struct tcb *tcp) |
| 1165 | { |
| 1166 | tcp->u_error = saved_u_error; |
| 1167 | } |
| 1168 | |
Dmitry V. Levin | bdb07e3 | 2015-11-27 01:51:22 +0000 | [diff] [blame] | 1169 | #include "kernel_types.h" |
Dmitry V. Levin | 1b78607 | 2015-03-22 18:09:55 +0000 | [diff] [blame] | 1170 | |
| 1171 | /* |
| 1172 | * Check the syscall return value register value for whether it is |
| 1173 | * a negated errno code indicating an error, or a success return value. |
| 1174 | */ |
| 1175 | static inline bool |
| 1176 | is_negated_errno(kernel_ulong_t val) |
| 1177 | { |
| 1178 | /* Linux kernel defines MAX_ERRNO to 4095. */ |
| 1179 | kernel_ulong_t max = -(kernel_long_t) 4095; |
| 1180 | |
| 1181 | #if SUPPORTED_PERSONALITIES > 1 && SIZEOF_LONG > 4 |
| 1182 | if (current_wordsize < sizeof(val)) { |
| 1183 | val = (uint32_t) val; |
| 1184 | max = (uint32_t) max; |
| 1185 | } |
| 1186 | #elif defined X32 |
| 1187 | /* |
| 1188 | * current_wordsize is 4 even in personality 0 (native X32) |
| 1189 | * but truncation _must not_ be done in it. |
| 1190 | * can't check current_wordsize here! |
| 1191 | */ |
| 1192 | if (current_personality != 0) { |
| 1193 | val = (uint32_t) val; |
| 1194 | max = (uint32_t) max; |
| 1195 | } |
| 1196 | #endif |
| 1197 | |
| 1198 | return val >= max; |
| 1199 | } |
| 1200 | |
Dmitry V. Levin | d70d1c4 | 2015-03-22 22:13:55 +0000 | [diff] [blame] | 1201 | #include "arch_regs.c" |
Wichert Akkerman | c792698 | 2000-04-10 22:22:31 +0000 | [diff] [blame] | 1202 | |
Dmitry V. Levin | 78ed3f3 | 2015-03-23 00:04:27 +0000 | [diff] [blame] | 1203 | #ifdef HAVE_GETRVAL2 |
Dmitry V. Levin | d70d1c4 | 2015-03-22 22:13:55 +0000 | [diff] [blame] | 1204 | # include "arch_getrval2.c" |
Dmitry V. Levin | 48f0890 | 2015-03-05 23:30:02 +0000 | [diff] [blame] | 1205 | #endif |
| 1206 | |
Denys Vlasenko | ce7d953 | 2013-02-05 16:36:13 +0100 | [diff] [blame] | 1207 | void |
Denys Vlasenko | 5a2483b | 2013-07-01 12:49:14 +0200 | [diff] [blame] | 1208 | print_pc(struct tcb *tcp) |
Denys Vlasenko | ce7d953 | 2013-02-05 16:36:13 +0100 | [diff] [blame] | 1209 | { |
Dmitry V. Levin | 5105d4a | 2015-11-30 03:30:51 +0000 | [diff] [blame] | 1210 | #if defined ARCH_PC_REG |
| 1211 | # define ARCH_GET_PC 0 |
| 1212 | #elif defined ARCH_PC_PEEK_ADDR |
| 1213 | long pc; |
| 1214 | # define ARCH_PC_REG pc |
| 1215 | # define ARCH_GET_PC upeek(tcp->pid, ARCH_PC_PEEK_ADDR, &pc) |
Dmitry V. Levin | b2d9ff2 | 2015-02-23 13:43:20 +0000 | [diff] [blame] | 1216 | #else |
Dmitry V. Levin | 5105d4a | 2015-11-30 03:30:51 +0000 | [diff] [blame] | 1217 | # error Neither ARCH_PC_REG nor ARCH_PC_PEEK_ADDR is defined |
Dmitry V. Levin | e96cb62 | 2015-02-15 15:52:02 +0000 | [diff] [blame] | 1218 | #endif |
Dmitry V. Levin | 5105d4a | 2015-11-30 03:30:51 +0000 | [diff] [blame] | 1219 | if (get_regs_error || ARCH_GET_PC) |
| 1220 | tprints(current_wordsize == 4 ? "[????????] " |
| 1221 | : "[????????????????] "); |
| 1222 | else |
| 1223 | tprintf(current_wordsize == 4 ? "[%08lx] " : "[%016lx] ", |
| 1224 | (unsigned long) ARCH_PC_REG); |
Denys Vlasenko | ce7d953 | 2013-02-05 16:36:13 +0100 | [diff] [blame] | 1225 | } |
| 1226 | |
Dmitry V. Levin | d6db1db | 2015-02-13 23:41:04 +0000 | [diff] [blame] | 1227 | #if defined ARCH_REGS_FOR_GETREGSET |
| 1228 | static long |
| 1229 | get_regset(pid_t pid) |
Dmitry V. Levin | faa177e | 2013-03-17 23:48:45 +0000 | [diff] [blame] | 1230 | { |
Dmitry V. Levin | d6db1db | 2015-02-13 23:41:04 +0000 | [diff] [blame] | 1231 | # ifdef ARCH_IOVEC_FOR_GETREGSET |
| 1232 | /* variable iovec */ |
| 1233 | ARCH_IOVEC_FOR_GETREGSET.iov_len = sizeof(ARCH_REGS_FOR_GETREGSET); |
| 1234 | return ptrace(PTRACE_GETREGSET, pid, NT_PRSTATUS, |
| 1235 | &ARCH_IOVEC_FOR_GETREGSET); |
| 1236 | # else |
| 1237 | /* constant iovec */ |
Dmitry V. Levin | b787b10 | 2013-03-18 10:17:14 +0000 | [diff] [blame] | 1238 | static struct iovec io = { |
| 1239 | .iov_base = &ARCH_REGS_FOR_GETREGSET, |
| 1240 | .iov_len = sizeof(ARCH_REGS_FOR_GETREGSET) |
Dmitry V. Levin | faa177e | 2013-03-17 23:48:45 +0000 | [diff] [blame] | 1241 | }; |
Dmitry V. Levin | d6db1db | 2015-02-13 23:41:04 +0000 | [diff] [blame] | 1242 | return ptrace(PTRACE_GETREGSET, pid, NT_PRSTATUS, &io); |
Dmitry V. Levin | b787b10 | 2013-03-18 10:17:14 +0000 | [diff] [blame] | 1243 | |
Dmitry V. Levin | faa177e | 2013-03-17 23:48:45 +0000 | [diff] [blame] | 1244 | # endif |
Dmitry V. Levin | b787b10 | 2013-03-18 10:17:14 +0000 | [diff] [blame] | 1245 | } |
Dmitry V. Levin | d6db1db | 2015-02-13 23:41:04 +0000 | [diff] [blame] | 1246 | #endif /* ARCH_REGS_FOR_GETREGSET */ |
Dmitry V. Levin | b787b10 | 2013-03-18 10:17:14 +0000 | [diff] [blame] | 1247 | |
Denys Vlasenko | 48e4c1b | 2013-02-16 08:23:40 +0100 | [diff] [blame] | 1248 | void |
| 1249 | get_regs(pid_t pid) |
Denys Vlasenko | ce7d953 | 2013-02-05 16:36:13 +0100 | [diff] [blame] | 1250 | { |
Dmitry V. Levin | f51aec6 | 2015-11-30 00:01:01 +0000 | [diff] [blame] | 1251 | #undef USE_GET_SYSCALL_RESULT_REGS |
Dmitry V. Levin | 7abf2e8 | 2015-02-13 23:56:54 +0000 | [diff] [blame] | 1252 | #ifdef ARCH_REGS_FOR_GETREGSET |
| 1253 | # ifdef X86_64 |
| 1254 | /* Try PTRACE_GETREGSET first, fallback to PTRACE_GETREGS. */ |
Dmitry V. Levin | 27e3ae9 | 2013-03-17 23:18:35 +0000 | [diff] [blame] | 1255 | static int getregset_support; |
| 1256 | |
| 1257 | if (getregset_support >= 0) { |
Dmitry V. Levin | d6db1db | 2015-02-13 23:41:04 +0000 | [diff] [blame] | 1258 | get_regs_error = get_regset(pid); |
Dmitry V. Levin | 27e3ae9 | 2013-03-17 23:18:35 +0000 | [diff] [blame] | 1259 | if (getregset_support > 0) |
| 1260 | return; |
| 1261 | if (get_regs_error >= 0) { |
| 1262 | getregset_support = 1; |
| 1263 | return; |
Denys Vlasenko | eec8d5d | 2013-02-14 03:29:48 +0100 | [diff] [blame] | 1264 | } |
Dmitry V. Levin | 27e3ae9 | 2013-03-17 23:18:35 +0000 | [diff] [blame] | 1265 | if (errno == EPERM || errno == ESRCH) |
| 1266 | return; |
| 1267 | getregset_support = -1; |
| 1268 | } |
Dmitry V. Levin | f3e9e61 | 2015-11-30 15:30:05 +0000 | [diff] [blame] | 1269 | get_regs_error = getregs_old(pid); |
Dmitry V. Levin | 7abf2e8 | 2015-02-13 23:56:54 +0000 | [diff] [blame] | 1270 | # else /* !X86_64 */ |
| 1271 | /* Assume that PTRACE_GETREGSET works. */ |
| 1272 | get_regs_error = get_regset(pid); |
Denys Vlasenko | ce7d953 | 2013-02-05 16:36:13 +0100 | [diff] [blame] | 1273 | # endif |
Dmitry V. Levin | 7abf2e8 | 2015-02-13 23:56:54 +0000 | [diff] [blame] | 1274 | #elif defined ARCH_REGS_FOR_GETREGS |
| 1275 | # if defined SPARC || defined SPARC64 |
| 1276 | /* SPARC systems have the meaning of data and addr reversed */ |
| 1277 | get_regs_error = ptrace(PTRACE_GETREGS, pid, (char *)&ARCH_REGS_FOR_GETREGS, 0); |
| 1278 | # elif defined POWERPC |
| 1279 | static bool old_kernel = 0; |
| 1280 | if (old_kernel) |
| 1281 | goto old; |
| 1282 | get_regs_error = ptrace(PTRACE_GETREGS, pid, NULL, &ARCH_REGS_FOR_GETREGS); |
| 1283 | if (get_regs_error && errno == EIO) { |
| 1284 | old_kernel = 1; |
| 1285 | old: |
Dmitry V. Levin | d70d1c4 | 2015-03-22 22:13:55 +0000 | [diff] [blame] | 1286 | get_regs_error = getregs_old(pid); |
Dmitry V. Levin | 7abf2e8 | 2015-02-13 23:56:54 +0000 | [diff] [blame] | 1287 | } |
| 1288 | # else |
| 1289 | /* Assume that PTRACE_GETREGS works. */ |
| 1290 | get_regs_error = ptrace(PTRACE_GETREGS, pid, NULL, &ARCH_REGS_FOR_GETREGS); |
| 1291 | # endif |
| 1292 | |
| 1293 | #else /* !ARCH_REGS_FOR_GETREGSET && !ARCH_REGS_FOR_GETREGS */ |
Dmitry V. Levin | f51aec6 | 2015-11-30 00:01:01 +0000 | [diff] [blame] | 1294 | # define USE_GET_SYSCALL_RESULT_REGS 1 |
| 1295 | # warning get_regs is not implemented for this architecture yet |
Dmitry V. Levin | 7abf2e8 | 2015-02-13 23:56:54 +0000 | [diff] [blame] | 1296 | get_regs_error = 0; |
| 1297 | #endif |
Denys Vlasenko | ce7d953 | 2013-02-05 16:36:13 +0100 | [diff] [blame] | 1298 | } |
Denys Vlasenko | ce7d953 | 2013-02-05 16:36:13 +0100 | [diff] [blame] | 1299 | |
Dmitry V. Levin | 1651051 | 2015-11-30 01:46:52 +0000 | [diff] [blame] | 1300 | /* |
| 1301 | * Returns: |
Denys Vlasenko | 907735a | 2012-03-21 00:23:16 +0100 | [diff] [blame] | 1302 | * 0: "ignore this ptrace stop", bail out of trace_syscall_entering() silently. |
| 1303 | * 1: ok, continue in trace_syscall_entering(). |
| 1304 | * other: error, trace_syscall_entering() should print error indicator |
Denys Vlasenko | b88f961 | 2011-08-21 18:03:23 +0200 | [diff] [blame] | 1305 | * ("????" etc) and bail out. |
| 1306 | */ |
Denys Vlasenko | 8497b62 | 2015-03-21 17:51:52 +0100 | [diff] [blame] | 1307 | int |
Denys Vlasenko | 06602d9 | 2011-08-24 17:53:52 +0200 | [diff] [blame] | 1308 | get_scno(struct tcb *tcp) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1309 | { |
Dmitry V. Levin | 144cda2 | 2015-03-23 18:48:32 +0000 | [diff] [blame] | 1310 | if (get_regs_error) |
| 1311 | return -1; |
| 1312 | |
Dmitry V. Levin | 1651051 | 2015-11-30 01:46:52 +0000 | [diff] [blame] | 1313 | int rc = arch_get_scno(tcp); |
| 1314 | if (rc != 1) |
| 1315 | return rc; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1316 | |
Denys Vlasenko | 74ec14f | 2013-02-21 16:13:47 +0100 | [diff] [blame] | 1317 | if (SCNO_IS_VALID(tcp->scno)) { |
Dmitry V. Levin | 1651051 | 2015-11-30 01:46:52 +0000 | [diff] [blame] | 1318 | tcp->s_ent = &sysent[tcp->scno]; |
| 1319 | tcp->qual_flg = qual_flags[tcp->scno]; |
Denys Vlasenko | 74ec14f | 2013-02-21 16:13:47 +0100 | [diff] [blame] | 1320 | } else { |
Denys Vlasenko | a9fe13c | 2013-02-22 13:26:10 +0100 | [diff] [blame] | 1321 | static const struct_sysent unknown = { |
Denys Vlasenko | 74ec14f | 2013-02-21 16:13:47 +0100 | [diff] [blame] | 1322 | .nargs = MAX_ARGS, |
| 1323 | .sys_flags = 0, |
| 1324 | .sys_func = printargs, |
Denys Vlasenko | cc59f14 | 2015-04-07 12:46:59 +0200 | [diff] [blame] | 1325 | .sys_name = "system call", |
Denys Vlasenko | 74ec14f | 2013-02-21 16:13:47 +0100 | [diff] [blame] | 1326 | }; |
| 1327 | tcp->s_ent = &unknown; |
| 1328 | tcp->qual_flg = UNDEFINED_SCNO | QUAL_RAW | DEFAULT_QUAL_FLAGS; |
Dmitry V. Levin | ea00900 | 2015-03-24 01:59:07 +0000 | [diff] [blame] | 1329 | if (debug_flag) |
Dmitry V. Levin | 1651051 | 2015-11-30 01:46:52 +0000 | [diff] [blame] | 1330 | error_msg("pid %d invalid syscall %ld", tcp->pid, tcp->scno); |
Denys Vlasenko | 74ec14f | 2013-02-21 16:13:47 +0100 | [diff] [blame] | 1331 | } |
Pavel Machek | 4dc3b14 | 2000-02-01 17:58:41 +0000 | [diff] [blame] | 1332 | return 1; |
| 1333 | } |
| 1334 | |
Dmitry V. Levin | f51aec6 | 2015-11-30 00:01:01 +0000 | [diff] [blame] | 1335 | #ifdef USE_GET_SYSCALL_RESULT_REGS |
Dmitry V. Levin | 7386ca7 | 2015-11-30 13:57:51 +0000 | [diff] [blame] | 1336 | static int get_syscall_result_regs(struct tcb *); |
Dmitry V. Levin | f51aec6 | 2015-11-30 00:01:01 +0000 | [diff] [blame] | 1337 | #endif |
Denys Vlasenko | a614692 | 2011-08-24 18:07:22 +0200 | [diff] [blame] | 1338 | |
Dmitry V. Levin | 1b78607 | 2015-03-22 18:09:55 +0000 | [diff] [blame] | 1339 | /* Returns: |
| 1340 | * 1: ok, continue in trace_syscall_exiting(). |
| 1341 | * -1: error, trace_syscall_exiting() should print error indicator |
| 1342 | * ("????" etc) and bail out. |
| 1343 | */ |
Denys Vlasenko | ed4f4f0 | 2011-08-22 11:54:06 +0200 | [diff] [blame] | 1344 | static int |
Dmitry V. Levin | 1b78607 | 2015-03-22 18:09:55 +0000 | [diff] [blame] | 1345 | get_syscall_result(struct tcb *tcp) |
Pavel Machek | 4dc3b14 | 2000-02-01 17:58:41 +0000 | [diff] [blame] | 1346 | { |
Dmitry V. Levin | f51aec6 | 2015-11-30 00:01:01 +0000 | [diff] [blame] | 1347 | #ifdef USE_GET_SYSCALL_RESULT_REGS |
| 1348 | if (get_syscall_result_regs(tcp)) |
| 1349 | return -1; |
Masatake YAMATO | ed69fc2 | 2014-04-16 15:33:35 +0900 | [diff] [blame] | 1350 | #endif |
Dmitry V. Levin | 0c8c5c9 | 2015-11-29 00:06:45 +0000 | [diff] [blame] | 1351 | tcp->u_error = 0; |
| 1352 | get_error(tcp, !(tcp->s_ent->sys_flags & SYSCALL_NEVER_FAILS)); |
| 1353 | |
Dmitry V. Levin | 1b78607 | 2015-03-22 18:09:55 +0000 | [diff] [blame] | 1354 | return 1; |
Dmitry V. Levin | 7d7c963 | 2010-03-29 17:51:02 +0000 | [diff] [blame] | 1355 | } |
Dmitry V. Levin | 7386ca7 | 2015-11-30 13:57:51 +0000 | [diff] [blame] | 1356 | |
| 1357 | #include "get_scno.c" |
| 1358 | #include "get_syscall_args.c" |
| 1359 | #ifdef USE_GET_SYSCALL_RESULT_REGS |
| 1360 | # include "get_syscall_result.c" |
| 1361 | #endif |
| 1362 | #include "get_error.c" |
| 1363 | #if defined X86_64 || defined POWERPC |
| 1364 | # include "getregs_old.c" |
| 1365 | #endif |