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" |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 35 | #include <sys/user.h> |
| 36 | #include <sys/param.h> |
| 37 | #include <fcntl.h> |
John Hughes | 1d08dcf | 2001-07-10 13:48:44 +0000 | [diff] [blame] | 38 | #if HAVE_SYS_UIO_H |
Denys Vlasenko | 2d1e90f | 2012-02-25 02:46:14 +0100 | [diff] [blame] | 39 | # include <sys/uio.h> |
John Hughes | 1d08dcf | 2001-07-10 13:48:44 +0000 | [diff] [blame] | 40 | #endif |
Wichert Akkerman | 36915a1 | 1999-07-13 15:45:02 +0000 | [diff] [blame] | 41 | |
Denys Vlasenko | 8470374 | 2012-02-25 02:38:52 +0100 | [diff] [blame] | 42 | #if defined(IA64) |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 43 | # include <asm/ptrace_offsets.h> |
| 44 | # include <asm/rse.h> |
Wichert Akkerman | 8b1b40c | 2000-02-03 21:58:30 +0000 | [diff] [blame] | 45 | #endif |
| 46 | |
Wichert Akkerman | 36915a1 | 1999-07-13 15:45:02 +0000 | [diff] [blame] | 47 | #ifdef HAVE_SYS_REG_H |
Denys Vlasenko | 8470374 | 2012-02-25 02:38:52 +0100 | [diff] [blame] | 48 | # include <sys/reg.h> |
Wichert Akkerman | faf7222 | 2000-02-19 23:59:03 +0000 | [diff] [blame] | 49 | #elif defined(HAVE_LINUX_PTRACE_H) |
Denys Vlasenko | 8470374 | 2012-02-25 02:38:52 +0100 | [diff] [blame] | 50 | # undef PTRACE_SYSCALL |
Roland McGrath | ce9f074 | 2004-03-01 21:29:22 +0000 | [diff] [blame] | 51 | # ifdef HAVE_STRUCT_IA64_FPREG |
| 52 | # define ia64_fpreg XXX_ia64_fpreg |
| 53 | # endif |
| 54 | # ifdef HAVE_STRUCT_PT_ALL_USER_REGS |
| 55 | # define pt_all_user_regs XXX_pt_all_user_regs |
| 56 | # endif |
Ali Polatel | 0b4060f | 2013-09-24 20:04:32 +0300 | [diff] [blame] | 57 | # ifdef HAVE_STRUCT_PTRACE_PEEKSIGINFO_ARGS |
| 58 | # define ptrace_peeksiginfo_args XXX_ptrace_peeksiginfo_args |
| 59 | # endif |
Denys Vlasenko | 8470374 | 2012-02-25 02:38:52 +0100 | [diff] [blame] | 60 | # include <linux/ptrace.h> |
Ali Polatel | 0b4060f | 2013-09-24 20:04:32 +0300 | [diff] [blame] | 61 | # undef ptrace_peeksiginfo_args |
Roland McGrath | ce9f074 | 2004-03-01 21:29:22 +0000 | [diff] [blame] | 62 | # undef ia64_fpreg |
| 63 | # undef pt_all_user_regs |
Wichert Akkerman | 2e2553a | 1999-05-09 00:29:58 +0000 | [diff] [blame] | 64 | #endif |
| 65 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 66 | int |
Dmitry V. Levin | ccee169 | 2012-03-25 21:49:48 +0000 | [diff] [blame] | 67 | string_to_uint(const char *str) |
| 68 | { |
| 69 | char *error; |
| 70 | long value; |
| 71 | |
| 72 | if (!*str) |
| 73 | return -1; |
| 74 | errno = 0; |
| 75 | value = strtol(str, &error, 10); |
| 76 | if (errno || *error || value < 0 || (long)(int)value != value) |
| 77 | return -1; |
| 78 | return (int)value; |
| 79 | } |
| 80 | |
| 81 | int |
Dmitry V. Levin | 447db45 | 2014-05-29 17:59:01 +0000 | [diff] [blame] | 82 | tv_nz(const struct timeval *a) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 83 | { |
| 84 | return a->tv_sec || a->tv_usec; |
| 85 | } |
| 86 | |
| 87 | int |
Dmitry V. Levin | 447db45 | 2014-05-29 17:59:01 +0000 | [diff] [blame] | 88 | tv_cmp(const struct timeval *a, const struct timeval *b) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 89 | { |
| 90 | if (a->tv_sec < b->tv_sec |
| 91 | || (a->tv_sec == b->tv_sec && a->tv_usec < b->tv_usec)) |
| 92 | return -1; |
| 93 | if (a->tv_sec > b->tv_sec |
| 94 | || (a->tv_sec == b->tv_sec && a->tv_usec > b->tv_usec)) |
| 95 | return 1; |
| 96 | return 0; |
| 97 | } |
| 98 | |
| 99 | double |
Dmitry V. Levin | 447db45 | 2014-05-29 17:59:01 +0000 | [diff] [blame] | 100 | tv_float(const struct timeval *tv) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 101 | { |
| 102 | return tv->tv_sec + tv->tv_usec/1000000.0; |
| 103 | } |
| 104 | |
| 105 | void |
Dmitry V. Levin | 447db45 | 2014-05-29 17:59:01 +0000 | [diff] [blame] | 106 | tv_add(struct timeval *tv, const struct timeval *a, const struct timeval *b) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 107 | { |
| 108 | tv->tv_sec = a->tv_sec + b->tv_sec; |
| 109 | tv->tv_usec = a->tv_usec + b->tv_usec; |
Roland McGrath | 58372f5 | 2007-07-24 01:38:22 +0000 | [diff] [blame] | 110 | if (tv->tv_usec >= 1000000) { |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 111 | tv->tv_sec++; |
| 112 | tv->tv_usec -= 1000000; |
| 113 | } |
| 114 | } |
| 115 | |
| 116 | void |
Dmitry V. Levin | 447db45 | 2014-05-29 17:59:01 +0000 | [diff] [blame] | 117 | tv_sub(struct timeval *tv, const struct timeval *a, const struct timeval *b) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 118 | { |
| 119 | tv->tv_sec = a->tv_sec - b->tv_sec; |
| 120 | tv->tv_usec = a->tv_usec - b->tv_usec; |
| 121 | if (((long) tv->tv_usec) < 0) { |
| 122 | tv->tv_sec--; |
| 123 | tv->tv_usec += 1000000; |
| 124 | } |
| 125 | } |
| 126 | |
| 127 | void |
Dmitry V. Levin | 447db45 | 2014-05-29 17:59:01 +0000 | [diff] [blame] | 128 | tv_div(struct timeval *tv, const struct timeval *a, int n) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 129 | { |
| 130 | tv->tv_usec = (a->tv_sec % n * 1000000 + a->tv_usec + n / 2) / n; |
| 131 | tv->tv_sec = a->tv_sec / n + tv->tv_usec / 1000000; |
| 132 | tv->tv_usec %= 1000000; |
| 133 | } |
| 134 | |
| 135 | void |
Dmitry V. Levin | 447db45 | 2014-05-29 17:59:01 +0000 | [diff] [blame] | 136 | tv_mul(struct timeval *tv, const struct timeval *a, int n) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 137 | { |
| 138 | tv->tv_usec = a->tv_usec * n; |
Dmitry V. Levin | fefdd97 | 2007-06-29 21:25:56 +0000 | [diff] [blame] | 139 | tv->tv_sec = a->tv_sec * n + tv->tv_usec / 1000000; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 140 | tv->tv_usec %= 1000000; |
| 141 | } |
| 142 | |
Dmitry V. Levin | ab9008b | 2007-01-11 22:05:04 +0000 | [diff] [blame] | 143 | const char * |
Dmitry V. Levin | 3ed5d02 | 2014-09-10 13:46:04 +0000 | [diff] [blame] | 144 | xlookup(const struct xlat *xlat, const unsigned int val) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 145 | { |
| 146 | for (; xlat->str != NULL; xlat++) |
| 147 | if (xlat->val == val) |
| 148 | return xlat->str; |
| 149 | return NULL; |
| 150 | } |
| 151 | |
Dmitry V. Levin | 4176d53 | 2014-09-21 22:42:45 +0000 | [diff] [blame] | 152 | static int |
| 153 | xlat_bsearch_compare(const void *a, const void *b) |
| 154 | { |
| 155 | const unsigned int val1 = (const unsigned long) a; |
| 156 | const unsigned int val2 = ((const struct xlat *) b)->val; |
| 157 | return (val1 > val2) ? 1 : (val1 < val2) ? -1 : 0; |
| 158 | } |
| 159 | |
| 160 | const char * |
| 161 | xlat_search(const struct xlat *xlat, const size_t nmemb, const unsigned int val) |
| 162 | { |
| 163 | const struct xlat *e = |
| 164 | bsearch((const void*) (const unsigned long) val, |
| 165 | xlat, nmemb, sizeof(*xlat), xlat_bsearch_compare); |
| 166 | |
| 167 | return e ? e->str : NULL; |
| 168 | } |
| 169 | |
Denys Vlasenko | 0a295bc | 2011-09-01 16:31:48 +0200 | [diff] [blame] | 170 | #if !defined HAVE_STPCPY |
Denys Vlasenko | 5284557 | 2011-08-31 12:07:38 +0200 | [diff] [blame] | 171 | char * |
| 172 | stpcpy(char *dst, const char *src) |
| 173 | { |
| 174 | while ((*dst = *src++) != '\0') |
| 175 | dst++; |
| 176 | return dst; |
| 177 | } |
Denys Vlasenko | 0a295bc | 2011-09-01 16:31:48 +0200 | [diff] [blame] | 178 | #endif |
Denys Vlasenko | 5284557 | 2011-08-31 12:07:38 +0200 | [diff] [blame] | 179 | |
Denys Vlasenko | b338f2d | 2013-11-09 20:40:31 +0100 | [diff] [blame] | 180 | /* Find a next bit which is set. |
| 181 | * Starts testing at cur_bit. |
| 182 | * Returns -1 if no more bits are set. |
| 183 | * |
| 184 | * We never touch bytes we don't need to. |
| 185 | * On big-endian, array is assumed to consist of |
| 186 | * current_wordsize wide words: for example, is current_wordsize is 4, |
| 187 | * the bytes are walked in 3,2,1,0, 7,6,5,4, 11,10,9,8 ... sequence. |
| 188 | * On little-endian machines, word size is immaterial. |
| 189 | */ |
| 190 | int |
| 191 | next_set_bit(const void *bit_array, unsigned cur_bit, unsigned size_bits) |
| 192 | { |
| 193 | const unsigned endian = 1; |
| 194 | int little_endian = *(char*)&endian; |
| 195 | |
| 196 | const uint8_t *array = bit_array; |
| 197 | unsigned pos = cur_bit / 8; |
| 198 | unsigned pos_xor_mask = little_endian ? 0 : current_wordsize-1; |
| 199 | |
| 200 | for (;;) { |
| 201 | uint8_t bitmask; |
| 202 | uint8_t cur_byte; |
| 203 | |
| 204 | if (cur_bit >= size_bits) |
| 205 | return -1; |
| 206 | cur_byte = array[pos ^ pos_xor_mask]; |
| 207 | if (cur_byte == 0) { |
| 208 | cur_bit = (cur_bit + 8) & (-8); |
| 209 | pos++; |
| 210 | continue; |
| 211 | } |
| 212 | bitmask = 1 << (cur_bit & 7); |
| 213 | for (;;) { |
| 214 | if (cur_byte & bitmask) |
| 215 | return cur_bit; |
| 216 | cur_bit++; |
| 217 | if (cur_bit >= size_bits) |
| 218 | return -1; |
| 219 | bitmask <<= 1; |
| 220 | /* This check *can't be* optimized out: */ |
| 221 | if (bitmask == 0) |
| 222 | break; |
| 223 | } |
| 224 | pos++; |
| 225 | } |
| 226 | } |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 227 | /* |
| 228 | * Print entry in struct xlat table, if there. |
| 229 | */ |
| 230 | void |
Dmitry V. Levin | 3ed5d02 | 2014-09-10 13:46:04 +0000 | [diff] [blame] | 231 | printxval(const struct xlat *xlat, const unsigned int val, const char *dflt) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 232 | { |
Dmitry V. Levin | ab9008b | 2007-01-11 22:05:04 +0000 | [diff] [blame] | 233 | const char *str = xlookup(xlat, val); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 234 | |
| 235 | if (str) |
Denys Vlasenko | 5940e65 | 2011-09-01 09:55:05 +0200 | [diff] [blame] | 236 | tprints(str); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 237 | else |
| 238 | tprintf("%#x /* %s */", val, dflt); |
| 239 | } |
| 240 | |
Andreas Schwab | b5600fc | 2009-11-04 17:08:34 +0100 | [diff] [blame] | 241 | /* |
Chris Metcalf | 879dddd | 2013-03-01 10:41:02 +0100 | [diff] [blame] | 242 | * Print 64bit argument at position arg_no and return the index of the next |
Andreas Schwab | b5600fc | 2009-11-04 17:08:34 +0100 | [diff] [blame] | 243 | * argument. |
| 244 | */ |
| 245 | int |
Dmitry V. Levin | 3c49b02 | 2014-08-07 00:07:28 +0000 | [diff] [blame] | 246 | printllval(struct tcb *tcp, const char *format, int arg_no) |
Andreas Schwab | b5600fc | 2009-11-04 17:08:34 +0100 | [diff] [blame] | 247 | { |
Dmitry V. Levin | 7a498be | 2013-05-04 19:51:57 +0000 | [diff] [blame] | 248 | #if SIZEOF_LONG > 4 && SIZEOF_LONG == SIZEOF_LONG_LONG |
| 249 | # if SUPPORTED_PERSONALITIES > 1 |
| 250 | if (current_wordsize > 4) { |
| 251 | # endif |
Chris Metcalf | 879dddd | 2013-03-01 10:41:02 +0100 | [diff] [blame] | 252 | tprintf(format, tcp->u_arg[arg_no]); |
| 253 | arg_no++; |
Dmitry V. Levin | 7a498be | 2013-05-04 19:51:57 +0000 | [diff] [blame] | 254 | # if SUPPORTED_PERSONALITIES > 1 |
Andreas Schwab | b5600fc | 2009-11-04 17:08:34 +0100 | [diff] [blame] | 255 | } else { |
Dmitry V. Levin | 7a498be | 2013-05-04 19:51:57 +0000 | [diff] [blame] | 256 | # if defined(AARCH64) || defined(POWERPC64) |
Dmitry V. Levin | 3c49b02 | 2014-08-07 00:07:28 +0000 | [diff] [blame] | 257 | /* Align arg_no to the next even number. */ |
| 258 | arg_no = (arg_no + 1) & 0xe; |
Dmitry V. Levin | 7a498be | 2013-05-04 19:51:57 +0000 | [diff] [blame] | 259 | # endif |
Chris Metcalf | 879dddd | 2013-03-01 10:41:02 +0100 | [diff] [blame] | 260 | tprintf(format, LONG_LONG(tcp->u_arg[arg_no], tcp->u_arg[arg_no + 1])); |
| 261 | arg_no += 2; |
Andreas Schwab | b5600fc | 2009-11-04 17:08:34 +0100 | [diff] [blame] | 262 | } |
Dmitry V. Levin | 7a498be | 2013-05-04 19:51:57 +0000 | [diff] [blame] | 263 | # endif /* SUPPORTED_PERSONALITIES */ |
| 264 | #elif SIZEOF_LONG > 4 |
| 265 | # error Unsupported configuration: SIZEOF_LONG > 4 && SIZEOF_LONG_LONG > SIZEOF_LONG |
| 266 | #elif defined LINUX_MIPSN32 |
| 267 | tprintf(format, tcp->ext_arg[arg_no]); |
Chris Metcalf | 879dddd | 2013-03-01 10:41:02 +0100 | [diff] [blame] | 268 | arg_no++; |
Dmitry V. Levin | 0b46883 | 2013-05-02 08:41:27 +0000 | [diff] [blame] | 269 | #elif defined X32 |
| 270 | if (current_personality == 0) { |
| 271 | tprintf(format, tcp->ext_arg[arg_no]); |
| 272 | arg_no++; |
| 273 | } else { |
| 274 | tprintf(format, LONG_LONG(tcp->u_arg[arg_no], tcp->u_arg[arg_no + 1])); |
| 275 | arg_no += 2; |
| 276 | } |
Denys Vlasenko | c9d0fc0 | 2013-02-17 22:41:33 +0100 | [diff] [blame] | 277 | #else |
Dmitry V. Levin | 8e096c4 | 2013-05-06 18:23:01 +0000 | [diff] [blame] | 278 | # if defined __ARM_EABI__ || \ |
| 279 | defined LINUX_MIPSO32 || \ |
| 280 | defined POWERPC || \ |
| 281 | defined XTENSA |
Dmitry V. Levin | 3c49b02 | 2014-08-07 00:07:28 +0000 | [diff] [blame] | 282 | /* Align arg_no to the next even number. */ |
| 283 | arg_no = (arg_no + 1) & 0xe; |
Dmitry V. Levin | 7a498be | 2013-05-04 19:51:57 +0000 | [diff] [blame] | 284 | # endif |
Chris Metcalf | 879dddd | 2013-03-01 10:41:02 +0100 | [diff] [blame] | 285 | tprintf(format, LONG_LONG(tcp->u_arg[arg_no], tcp->u_arg[arg_no + 1])); |
| 286 | arg_no += 2; |
Denys Vlasenko | c9d0fc0 | 2013-02-17 22:41:33 +0100 | [diff] [blame] | 287 | #endif |
Dmitry V. Levin | 7a498be | 2013-05-04 19:51:57 +0000 | [diff] [blame] | 288 | |
Chris Metcalf | 879dddd | 2013-03-01 10:41:02 +0100 | [diff] [blame] | 289 | return arg_no; |
Andreas Schwab | b5600fc | 2009-11-04 17:08:34 +0100 | [diff] [blame] | 290 | } |
Andreas Schwab | b5600fc | 2009-11-04 17:08:34 +0100 | [diff] [blame] | 291 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 292 | /* |
| 293 | * Interpret `xlat' as an array of flags |
| 294 | * print the entries whose bits are on in `flags' |
| 295 | * return # of flags printed. |
| 296 | */ |
Denys Vlasenko | 4924dbd | 2011-08-19 18:06:46 +0200 | [diff] [blame] | 297 | void |
Denys Vlasenko | 1201426 | 2011-05-30 14:00:14 +0200 | [diff] [blame] | 298 | addflags(const struct xlat *xlat, int flags) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 299 | { |
Denys Vlasenko | 4924dbd | 2011-08-19 18:06:46 +0200 | [diff] [blame] | 300 | for (; xlat->str; xlat++) { |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 301 | if (xlat->val && (flags & xlat->val) == xlat->val) { |
| 302 | tprintf("|%s", xlat->str); |
| 303 | flags &= ~xlat->val; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 304 | } |
| 305 | } |
| 306 | if (flags) { |
| 307 | tprintf("|%#x", flags); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 308 | } |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 309 | } |
| 310 | |
Roland McGrath | a6c0d8c | 2007-11-01 21:46:22 +0000 | [diff] [blame] | 311 | /* |
Denys Vlasenko | 4924dbd | 2011-08-19 18:06:46 +0200 | [diff] [blame] | 312 | * Interpret `xlat' as an array of flags. |
Roland McGrath | a6c0d8c | 2007-11-01 21:46:22 +0000 | [diff] [blame] | 313 | * Print to static string the entries whose bits are on in `flags' |
| 314 | * Return static string. |
| 315 | */ |
| 316 | const char * |
| 317 | sprintflags(const char *prefix, const struct xlat *xlat, int flags) |
| 318 | { |
| 319 | static char outstr[1024]; |
Denys Vlasenko | 5284557 | 2011-08-31 12:07:38 +0200 | [diff] [blame] | 320 | char *outptr; |
Roland McGrath | a6c0d8c | 2007-11-01 21:46:22 +0000 | [diff] [blame] | 321 | int found = 0; |
| 322 | |
Denys Vlasenko | 5284557 | 2011-08-31 12:07:38 +0200 | [diff] [blame] | 323 | outptr = stpcpy(outstr, prefix); |
Roland McGrath | a6c0d8c | 2007-11-01 21:46:22 +0000 | [diff] [blame] | 324 | |
| 325 | for (; xlat->str; xlat++) { |
| 326 | if ((flags & xlat->val) == xlat->val) { |
| 327 | if (found) |
Denys Vlasenko | 5284557 | 2011-08-31 12:07:38 +0200 | [diff] [blame] | 328 | *outptr++ = '|'; |
| 329 | outptr = stpcpy(outptr, xlat->str); |
Roland McGrath | a6c0d8c | 2007-11-01 21:46:22 +0000 | [diff] [blame] | 330 | found = 1; |
Denys Vlasenko | 4f3df07 | 2012-01-29 22:38:35 +0100 | [diff] [blame] | 331 | flags &= ~xlat->val; |
| 332 | if (!flags) |
| 333 | break; |
Roland McGrath | a6c0d8c | 2007-11-01 21:46:22 +0000 | [diff] [blame] | 334 | } |
| 335 | } |
| 336 | if (flags) { |
| 337 | if (found) |
Denys Vlasenko | 5284557 | 2011-08-31 12:07:38 +0200 | [diff] [blame] | 338 | *outptr++ = '|'; |
| 339 | outptr += sprintf(outptr, "%#x", flags); |
Roland McGrath | a6c0d8c | 2007-11-01 21:46:22 +0000 | [diff] [blame] | 340 | } |
| 341 | |
| 342 | return outstr; |
| 343 | } |
| 344 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 345 | int |
Dmitry V. Levin | 30145dd | 2010-09-06 22:08:24 +0000 | [diff] [blame] | 346 | printflags(const struct xlat *xlat, int flags, const char *dflt) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 347 | { |
| 348 | int n; |
Dmitry V. Levin | 30145dd | 2010-09-06 22:08:24 +0000 | [diff] [blame] | 349 | const char *sep; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 350 | |
| 351 | if (flags == 0 && xlat->val == 0) { |
Denys Vlasenko | 5940e65 | 2011-09-01 09:55:05 +0200 | [diff] [blame] | 352 | tprints(xlat->str); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 353 | return 1; |
| 354 | } |
| 355 | |
| 356 | sep = ""; |
| 357 | for (n = 0; xlat->str; xlat++) { |
| 358 | if (xlat->val && (flags & xlat->val) == xlat->val) { |
| 359 | tprintf("%s%s", sep, xlat->str); |
| 360 | flags &= ~xlat->val; |
| 361 | sep = "|"; |
| 362 | n++; |
| 363 | } |
| 364 | } |
Roland McGrath | b2dee13 | 2005-06-01 19:02:36 +0000 | [diff] [blame] | 365 | |
| 366 | if (n) { |
| 367 | if (flags) { |
| 368 | tprintf("%s%#x", sep, flags); |
| 369 | n++; |
| 370 | } |
| 371 | } else { |
| 372 | if (flags) { |
| 373 | tprintf("%#x", flags); |
| 374 | if (dflt) |
| 375 | tprintf(" /* %s */", dflt); |
| 376 | } else { |
| 377 | if (dflt) |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 378 | tprints("0"); |
Roland McGrath | b2dee13 | 2005-06-01 19:02:36 +0000 | [diff] [blame] | 379 | } |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 380 | } |
Roland McGrath | b2dee13 | 2005-06-01 19:02:36 +0000 | [diff] [blame] | 381 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 382 | return n; |
| 383 | } |
| 384 | |
| 385 | void |
Dmitry V. Levin | 30145dd | 2010-09-06 22:08:24 +0000 | [diff] [blame] | 386 | printnum(struct tcb *tcp, long addr, const char *fmt) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 387 | { |
Roland McGrath | eb28535 | 2003-01-14 09:59:00 +0000 | [diff] [blame] | 388 | long num; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 389 | |
| 390 | if (!addr) { |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 391 | tprints("NULL"); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 392 | return; |
| 393 | } |
| 394 | if (umove(tcp, addr, &num) < 0) { |
| 395 | tprintf("%#lx", addr); |
| 396 | return; |
| 397 | } |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 398 | tprints("["); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 399 | tprintf(fmt, num); |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 400 | tprints("]"); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 401 | } |
| 402 | |
Roland McGrath | 6bc1220 | 2003-11-13 22:32:27 +0000 | [diff] [blame] | 403 | void |
Dmitry V. Levin | 30145dd | 2010-09-06 22:08:24 +0000 | [diff] [blame] | 404 | printnum_int(struct tcb *tcp, long addr, const char *fmt) |
Roland McGrath | 9814a94 | 2005-07-04 23:28:10 +0000 | [diff] [blame] | 405 | { |
| 406 | int num; |
| 407 | |
| 408 | if (!addr) { |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 409 | tprints("NULL"); |
Roland McGrath | 9814a94 | 2005-07-04 23:28:10 +0000 | [diff] [blame] | 410 | return; |
| 411 | } |
| 412 | if (umove(tcp, addr, &num) < 0) { |
| 413 | tprintf("%#lx", addr); |
| 414 | return; |
| 415 | } |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 416 | tprints("["); |
Roland McGrath | 9814a94 | 2005-07-04 23:28:10 +0000 | [diff] [blame] | 417 | tprintf(fmt, num); |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 418 | tprints("]"); |
Roland McGrath | 9814a94 | 2005-07-04 23:28:10 +0000 | [diff] [blame] | 419 | } |
| 420 | |
| 421 | void |
Dmitry V. Levin | 3138213 | 2011-03-04 05:08:02 +0300 | [diff] [blame] | 422 | printfd(struct tcb *tcp, int fd) |
| 423 | { |
Denys Vlasenko | 61ad0a4 | 2013-03-06 18:24:34 +0100 | [diff] [blame] | 424 | char path[PATH_MAX + 1]; |
Dmitry V. Levin | 2f6510c | 2014-08-21 03:17:48 +0000 | [diff] [blame] | 425 | if (show_fd_path && getfdpath(tcp, fd, path, sizeof(path)) >= 0) { |
| 426 | static const char socket_prefix[] = "socket:["; |
| 427 | const size_t socket_prefix_len = sizeof(socket_prefix) - 1; |
| 428 | size_t path_len; |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 429 | |
Dmitry V. Levin | 2f6510c | 2014-08-21 03:17:48 +0000 | [diff] [blame] | 430 | if (show_fd_path > 1 && |
| 431 | strncmp(path, socket_prefix, socket_prefix_len) == 0 && |
| 432 | path[(path_len = strlen(path)) - 1] == ']') { |
| 433 | unsigned long inodenr; |
| 434 | inodenr = strtoul(path + socket_prefix_len, NULL, 10); |
| 435 | tprintf("%d<", fd); |
| 436 | if (!print_sockaddr_by_inode(inodenr)) |
| 437 | tprints(path); |
| 438 | tprints(">"); |
| 439 | } else { |
| 440 | tprintf("%d<%s>", fd, path); |
| 441 | } |
| 442 | } else |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 443 | tprintf("%d", fd); |
Dmitry V. Levin | 3138213 | 2011-03-04 05:08:02 +0300 | [diff] [blame] | 444 | } |
| 445 | |
| 446 | void |
Denys Vlasenko | 1201426 | 2011-05-30 14:00:14 +0200 | [diff] [blame] | 447 | printuid(const char *text, unsigned long uid) |
Roland McGrath | 6bc1220 | 2003-11-13 22:32:27 +0000 | [diff] [blame] | 448 | { |
Dmitry V. Levin | 3ed5d02 | 2014-09-10 13:46:04 +0000 | [diff] [blame] | 449 | tprintf(((long) uid == -1) ? "%s%ld" : "%s%lu", text, uid); |
Roland McGrath | 6bc1220 | 2003-11-13 22:32:27 +0000 | [diff] [blame] | 450 | } |
| 451 | |
Dmitry V. Levin | a501f14 | 2008-11-10 23:19:13 +0000 | [diff] [blame] | 452 | /* |
| 453 | * Quote string `instr' of length `size' |
| 454 | * Write up to (3 + `size' * 4) bytes to `outstr' buffer. |
Denys Vlasenko | b5d43b8 | 2012-04-28 14:58:35 +0200 | [diff] [blame] | 455 | * If `len' is -1, treat `instr' as a NUL-terminated string |
Dmitry V. Levin | a501f14 | 2008-11-10 23:19:13 +0000 | [diff] [blame] | 456 | * and quote at most (`size' - 1) bytes. |
Denys Vlasenko | 6cecba5 | 2012-01-20 11:56:00 +0100 | [diff] [blame] | 457 | * |
Denys Vlasenko | b5d43b8 | 2012-04-28 14:58:35 +0200 | [diff] [blame] | 458 | * Returns 0 if len == -1 and NUL was seen, 1 otherwise. |
Denys Vlasenko | 6cecba5 | 2012-01-20 11:56:00 +0100 | [diff] [blame] | 459 | * Note that if len >= 0, always returns 1. |
Dmitry V. Levin | a501f14 | 2008-11-10 23:19:13 +0000 | [diff] [blame] | 460 | */ |
Mike Frysinger | ebee04c | 2012-04-17 22:19:31 -0400 | [diff] [blame] | 461 | int |
Denys Vlasenko | b5d43b8 | 2012-04-28 14:58:35 +0200 | [diff] [blame] | 462 | string_quote(const char *instr, char *outstr, long len, int size) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 463 | { |
Dmitry V. Levin | bea0203 | 2007-10-08 21:48:01 +0000 | [diff] [blame] | 464 | const unsigned char *ustr = (const unsigned char *) instr; |
| 465 | char *s = outstr; |
Denys Vlasenko | 8778bff | 2011-08-31 12:22:56 +0200 | [diff] [blame] | 466 | int usehex, c, i, eol; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 467 | |
Denys Vlasenko | 8778bff | 2011-08-31 12:22:56 +0200 | [diff] [blame] | 468 | eol = 0x100; /* this can never match a char */ |
Denys Vlasenko | b5d43b8 | 2012-04-28 14:58:35 +0200 | [diff] [blame] | 469 | if (len == -1) { |
Denys Vlasenko | 8778bff | 2011-08-31 12:22:56 +0200 | [diff] [blame] | 470 | size--; |
| 471 | eol = '\0'; |
| 472 | } |
| 473 | |
| 474 | usehex = 0; |
Dmitry V. Levin | bea0203 | 2007-10-08 21:48:01 +0000 | [diff] [blame] | 475 | if (xflag > 1) |
| 476 | usehex = 1; |
| 477 | else if (xflag) { |
Dmitry V. Levin | a501f14 | 2008-11-10 23:19:13 +0000 | [diff] [blame] | 478 | /* Check for presence of symbol which require |
| 479 | to hex-quote the whole string. */ |
Dmitry V. Levin | bea0203 | 2007-10-08 21:48:01 +0000 | [diff] [blame] | 480 | for (i = 0; i < size; ++i) { |
| 481 | c = ustr[i]; |
Dmitry V. Levin | a501f14 | 2008-11-10 23:19:13 +0000 | [diff] [blame] | 482 | /* Check for NUL-terminated string. */ |
Denys Vlasenko | 8778bff | 2011-08-31 12:22:56 +0200 | [diff] [blame] | 483 | if (c == eol) |
| 484 | break; |
Denys Vlasenko | 5198ed4 | 2013-03-06 23:44:23 +0100 | [diff] [blame] | 485 | |
| 486 | /* Force hex unless c is printable or whitespace */ |
| 487 | if (c > 0x7e) { |
| 488 | usehex = 1; |
| 489 | break; |
| 490 | } |
| 491 | /* In ASCII isspace is only these chars: "\t\n\v\f\r". |
| 492 | * They happen to have ASCII codes 9,10,11,12,13. |
| 493 | */ |
| 494 | if (c < ' ' && (unsigned)(c - 9) >= 5) { |
Dmitry V. Levin | bea0203 | 2007-10-08 21:48:01 +0000 | [diff] [blame] | 495 | usehex = 1; |
| 496 | break; |
| 497 | } |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 498 | } |
| 499 | } |
Dmitry V. Levin | bea0203 | 2007-10-08 21:48:01 +0000 | [diff] [blame] | 500 | |
| 501 | *s++ = '\"'; |
| 502 | |
| 503 | if (usehex) { |
Dmitry V. Levin | a501f14 | 2008-11-10 23:19:13 +0000 | [diff] [blame] | 504 | /* Hex-quote the whole string. */ |
Dmitry V. Levin | bea0203 | 2007-10-08 21:48:01 +0000 | [diff] [blame] | 505 | for (i = 0; i < size; ++i) { |
| 506 | c = ustr[i]; |
Dmitry V. Levin | a501f14 | 2008-11-10 23:19:13 +0000 | [diff] [blame] | 507 | /* Check for NUL-terminated string. */ |
Denys Vlasenko | 8778bff | 2011-08-31 12:22:56 +0200 | [diff] [blame] | 508 | if (c == eol) |
| 509 | goto asciz_ended; |
| 510 | *s++ = '\\'; |
| 511 | *s++ = 'x'; |
| 512 | *s++ = "0123456789abcdef"[c >> 4]; |
| 513 | *s++ = "0123456789abcdef"[c & 0xf]; |
Dmitry V. Levin | bea0203 | 2007-10-08 21:48:01 +0000 | [diff] [blame] | 514 | } |
| 515 | } else { |
| 516 | for (i = 0; i < size; ++i) { |
| 517 | c = ustr[i]; |
Dmitry V. Levin | a501f14 | 2008-11-10 23:19:13 +0000 | [diff] [blame] | 518 | /* Check for NUL-terminated string. */ |
Denys Vlasenko | 8778bff | 2011-08-31 12:22:56 +0200 | [diff] [blame] | 519 | if (c == eol) |
| 520 | goto asciz_ended; |
Dmitry V. Levin | bea0203 | 2007-10-08 21:48:01 +0000 | [diff] [blame] | 521 | switch (c) { |
| 522 | case '\"': case '\\': |
| 523 | *s++ = '\\'; |
| 524 | *s++ = c; |
| 525 | break; |
| 526 | case '\f': |
| 527 | *s++ = '\\'; |
| 528 | *s++ = 'f'; |
| 529 | break; |
| 530 | case '\n': |
| 531 | *s++ = '\\'; |
| 532 | *s++ = 'n'; |
| 533 | break; |
| 534 | case '\r': |
| 535 | *s++ = '\\'; |
| 536 | *s++ = 'r'; |
| 537 | break; |
| 538 | case '\t': |
| 539 | *s++ = '\\'; |
| 540 | *s++ = 't'; |
| 541 | break; |
| 542 | case '\v': |
| 543 | *s++ = '\\'; |
| 544 | *s++ = 'v'; |
| 545 | break; |
| 546 | default: |
Denys Vlasenko | 5198ed4 | 2013-03-06 23:44:23 +0100 | [diff] [blame] | 547 | if (c >= ' ' && c <= 0x7e) |
Dmitry V. Levin | bea0203 | 2007-10-08 21:48:01 +0000 | [diff] [blame] | 548 | *s++ = c; |
Denys Vlasenko | 8778bff | 2011-08-31 12:22:56 +0200 | [diff] [blame] | 549 | else { |
| 550 | /* Print \octal */ |
| 551 | *s++ = '\\'; |
| 552 | if (i + 1 < size |
| 553 | && ustr[i + 1] >= '0' |
| 554 | && ustr[i + 1] <= '9' |
| 555 | ) { |
| 556 | /* Print \ooo */ |
| 557 | *s++ = '0' + (c >> 6); |
| 558 | *s++ = '0' + ((c >> 3) & 0x7); |
| 559 | } else { |
| 560 | /* Print \[[o]o]o */ |
| 561 | if ((c >> 3) != 0) { |
| 562 | if ((c >> 6) != 0) |
| 563 | *s++ = '0' + (c >> 6); |
| 564 | *s++ = '0' + ((c >> 3) & 0x7); |
| 565 | } |
| 566 | } |
| 567 | *s++ = '0' + (c & 0x7); |
Dmitry V. Levin | bea0203 | 2007-10-08 21:48:01 +0000 | [diff] [blame] | 568 | } |
| 569 | break; |
| 570 | } |
| 571 | } |
| 572 | } |
| 573 | |
| 574 | *s++ = '\"'; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 575 | *s = '\0'; |
Roland McGrath | 6d97032 | 2007-11-01 23:53:59 +0000 | [diff] [blame] | 576 | |
Denys Vlasenko | 8778bff | 2011-08-31 12:22:56 +0200 | [diff] [blame] | 577 | /* Return zero if we printed entire ASCIZ string (didn't truncate it) */ |
Denys Vlasenko | b5d43b8 | 2012-04-28 14:58:35 +0200 | [diff] [blame] | 578 | if (len == -1 && ustr[i] == '\0') { |
Denys Vlasenko | 8778bff | 2011-08-31 12:22:56 +0200 | [diff] [blame] | 579 | /* We didn't see NUL yet (otherwise we'd jump to 'asciz_ended') |
| 580 | * but next char is NUL. |
| 581 | */ |
| 582 | return 0; |
| 583 | } |
| 584 | |
| 585 | return 1; |
| 586 | |
| 587 | asciz_ended: |
| 588 | *s++ = '\"'; |
| 589 | *s = '\0'; |
| 590 | /* Return zero: we printed entire ASCIZ string (didn't truncate it) */ |
| 591 | return 0; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 592 | } |
| 593 | |
Dmitry V. Levin | a501f14 | 2008-11-10 23:19:13 +0000 | [diff] [blame] | 594 | /* |
| 595 | * Print path string specified by address `addr' and length `n'. |
| 596 | * If path length exceeds `n', append `...' to the output. |
| 597 | */ |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 598 | void |
Dmitry V. Levin | 3ed5d02 | 2014-09-10 13:46:04 +0000 | [diff] [blame] | 599 | printpathn(struct tcb *tcp, long addr, unsigned int n) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 600 | { |
Denys Vlasenko | b3c52cf | 2012-01-19 17:20:23 +0100 | [diff] [blame] | 601 | char path[MAXPATHLEN + 1]; |
Denys Vlasenko | 6cecba5 | 2012-01-20 11:56:00 +0100 | [diff] [blame] | 602 | int nul_seen; |
Denys Vlasenko | b3c52cf | 2012-01-19 17:20:23 +0100 | [diff] [blame] | 603 | |
Dmitry V. Levin | a501f14 | 2008-11-10 23:19:13 +0000 | [diff] [blame] | 604 | if (!addr) { |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 605 | tprints("NULL"); |
Dmitry V. Levin | bea0203 | 2007-10-08 21:48:01 +0000 | [diff] [blame] | 606 | return; |
| 607 | } |
| 608 | |
Denys Vlasenko | 6cecba5 | 2012-01-20 11:56:00 +0100 | [diff] [blame] | 609 | /* Cap path length to the path buffer size */ |
Dmitry V. Levin | a501f14 | 2008-11-10 23:19:13 +0000 | [diff] [blame] | 610 | if (n > sizeof path - 1) |
| 611 | n = sizeof path - 1; |
Dmitry V. Levin | a501f14 | 2008-11-10 23:19:13 +0000 | [diff] [blame] | 612 | |
| 613 | /* Fetch one byte more to find out whether path length > n. */ |
Denys Vlasenko | 6cecba5 | 2012-01-20 11:56:00 +0100 | [diff] [blame] | 614 | nul_seen = umovestr(tcp, addr, n + 1, path); |
| 615 | if (nul_seen < 0) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 616 | tprintf("%#lx", addr); |
| 617 | else { |
Denys Vlasenko | b3c52cf | 2012-01-19 17:20:23 +0100 | [diff] [blame] | 618 | char *outstr; |
Dmitry V. Levin | bea0203 | 2007-10-08 21:48:01 +0000 | [diff] [blame] | 619 | |
Denys Vlasenko | 6cecba5 | 2012-01-20 11:56:00 +0100 | [diff] [blame] | 620 | path[n] = '\0'; |
Denys Vlasenko | b3c52cf | 2012-01-19 17:20:23 +0100 | [diff] [blame] | 621 | n++; |
Denys Vlasenko | 6cecba5 | 2012-01-20 11:56:00 +0100 | [diff] [blame] | 622 | outstr = alloca(4 * n); /* 4*(n-1) + 3 for quotes and NUL */ |
Denys Vlasenko | b3c52cf | 2012-01-19 17:20:23 +0100 | [diff] [blame] | 623 | string_quote(path, outstr, -1, n); |
| 624 | tprints(outstr); |
Denys Vlasenko | 6cecba5 | 2012-01-20 11:56:00 +0100 | [diff] [blame] | 625 | if (!nul_seen) |
Denys Vlasenko | b3c52cf | 2012-01-19 17:20:23 +0100 | [diff] [blame] | 626 | tprints("..."); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 627 | } |
| 628 | } |
| 629 | |
| 630 | void |
Dmitry V. Levin | bea0203 | 2007-10-08 21:48:01 +0000 | [diff] [blame] | 631 | printpath(struct tcb *tcp, long addr) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 632 | { |
Denys Vlasenko | b3c52cf | 2012-01-19 17:20:23 +0100 | [diff] [blame] | 633 | /* Size must correspond to char path[] size in printpathn */ |
| 634 | printpathn(tcp, addr, MAXPATHLEN); |
Dmitry V. Levin | bea0203 | 2007-10-08 21:48:01 +0000 | [diff] [blame] | 635 | } |
| 636 | |
Dmitry V. Levin | a501f14 | 2008-11-10 23:19:13 +0000 | [diff] [blame] | 637 | /* |
| 638 | * Print string specified by address `addr' and length `len'. |
| 639 | * If `len' < 0, treat the string as a NUL-terminated string. |
| 640 | * If string length exceeds `max_strlen', append `...' to the output. |
| 641 | */ |
Dmitry V. Levin | bea0203 | 2007-10-08 21:48:01 +0000 | [diff] [blame] | 642 | void |
Denys Vlasenko | b5d43b8 | 2012-04-28 14:58:35 +0200 | [diff] [blame] | 643 | printstr(struct tcb *tcp, long addr, long len) |
Dmitry V. Levin | bea0203 | 2007-10-08 21:48:01 +0000 | [diff] [blame] | 644 | { |
| 645 | static char *str = NULL; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 646 | static char *outstr; |
Dmitry V. Levin | 3ed5d02 | 2014-09-10 13:46:04 +0000 | [diff] [blame] | 647 | unsigned int size; |
Denys Vlasenko | b3c52cf | 2012-01-19 17:20:23 +0100 | [diff] [blame] | 648 | int ellipsis; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 649 | |
| 650 | if (!addr) { |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 651 | tprints("NULL"); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 652 | return; |
| 653 | } |
Dmitry V. Levin | a501f14 | 2008-11-10 23:19:13 +0000 | [diff] [blame] | 654 | /* Allocate static buffers if they are not allocated yet. */ |
Denys Vlasenko | 1d46ba5 | 2011-08-31 14:00:02 +0200 | [diff] [blame] | 655 | if (!str) { |
Dmitry V. Levin | 378f9c5 | 2012-03-25 22:56:53 +0000 | [diff] [blame] | 656 | unsigned int outstr_size = 4 * max_strlen + /*for quotes and NUL:*/ 3; |
| 657 | |
| 658 | if (outstr_size / 4 != max_strlen) |
| 659 | die_out_of_memory(); |
Dmitry V. Levin | a501f14 | 2008-11-10 23:19:13 +0000 | [diff] [blame] | 660 | str = malloc(max_strlen + 1); |
Denys Vlasenko | 1d46ba5 | 2011-08-31 14:00:02 +0200 | [diff] [blame] | 661 | if (!str) |
| 662 | die_out_of_memory(); |
Dmitry V. Levin | 378f9c5 | 2012-03-25 22:56:53 +0000 | [diff] [blame] | 663 | outstr = malloc(outstr_size); |
Denys Vlasenko | 1d46ba5 | 2011-08-31 14:00:02 +0200 | [diff] [blame] | 664 | if (!outstr) |
| 665 | die_out_of_memory(); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 666 | } |
Dmitry V. Levin | bea0203 | 2007-10-08 21:48:01 +0000 | [diff] [blame] | 667 | |
Denys Vlasenko | b5d43b8 | 2012-04-28 14:58:35 +0200 | [diff] [blame] | 668 | if (len == -1) { |
Dmitry V. Levin | a501f14 | 2008-11-10 23:19:13 +0000 | [diff] [blame] | 669 | /* |
| 670 | * Treat as a NUL-terminated string: fetch one byte more |
| 671 | * because string_quote() quotes one byte less. |
| 672 | */ |
Dmitry V. Levin | bea0203 | 2007-10-08 21:48:01 +0000 | [diff] [blame] | 673 | size = max_strlen + 1; |
| 674 | if (umovestr(tcp, addr, size, str) < 0) { |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 675 | tprintf("%#lx", addr); |
| 676 | return; |
| 677 | } |
| 678 | } |
| 679 | else { |
Denys Vlasenko | b5d43b8 | 2012-04-28 14:58:35 +0200 | [diff] [blame] | 680 | size = max_strlen; |
| 681 | if (size > (unsigned long)len) |
| 682 | size = (unsigned long)len; |
Dmitry V. Levin | bea0203 | 2007-10-08 21:48:01 +0000 | [diff] [blame] | 683 | if (umoven(tcp, addr, size, str) < 0) { |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 684 | tprintf("%#lx", addr); |
| 685 | return; |
| 686 | } |
| 687 | } |
| 688 | |
Denys Vlasenko | 6cecba5 | 2012-01-20 11:56:00 +0100 | [diff] [blame] | 689 | /* If string_quote didn't see NUL and (it was supposed to be ASCIZ str |
| 690 | * or we were requested to print more than -s NUM chars)... |
| 691 | */ |
Denys Vlasenko | b3c52cf | 2012-01-19 17:20:23 +0100 | [diff] [blame] | 692 | ellipsis = (string_quote(str, outstr, len, size) && |
Dmitry V. Levin | 3ed5d02 | 2014-09-10 13:46:04 +0000 | [diff] [blame] | 693 | (len < 0 || (unsigned long) len > max_strlen)); |
Roland McGrath | a503dcf | 2007-08-02 02:06:26 +0000 | [diff] [blame] | 694 | |
Denys Vlasenko | b3c52cf | 2012-01-19 17:20:23 +0100 | [diff] [blame] | 695 | tprints(outstr); |
| 696 | if (ellipsis) |
| 697 | tprints("..."); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 698 | } |
| 699 | |
John Hughes | 1d08dcf | 2001-07-10 13:48:44 +0000 | [diff] [blame] | 700 | #if HAVE_SYS_UIO_H |
| 701 | void |
Denys Vlasenko | 1201426 | 2011-05-30 14:00:14 +0200 | [diff] [blame] | 702 | dumpiov(struct tcb *tcp, int len, long addr) |
John Hughes | 1d08dcf | 2001-07-10 13:48:44 +0000 | [diff] [blame] | 703 | { |
Denys Vlasenko | 8470374 | 2012-02-25 02:38:52 +0100 | [diff] [blame] | 704 | #if SUPPORTED_PERSONALITIES > 1 |
Dmitry V. Levin | 4ebb4e3 | 2006-12-13 17:08:08 +0000 | [diff] [blame] | 705 | union { |
| 706 | struct { u_int32_t base; u_int32_t len; } *iov32; |
| 707 | struct { u_int64_t base; u_int64_t len; } *iov64; |
| 708 | } iovu; |
| 709 | #define iov iovu.iov64 |
| 710 | #define sizeof_iov \ |
Denys Vlasenko | 9fd4f96 | 2012-03-19 09:36:42 +0100 | [diff] [blame] | 711 | (current_wordsize == 4 ? sizeof(*iovu.iov32) : sizeof(*iovu.iov64)) |
Dmitry V. Levin | 4ebb4e3 | 2006-12-13 17:08:08 +0000 | [diff] [blame] | 712 | #define iov_iov_base(i) \ |
Denys Vlasenko | 9fd4f96 | 2012-03-19 09:36:42 +0100 | [diff] [blame] | 713 | (current_wordsize == 4 ? (uint64_t) iovu.iov32[i].base : iovu.iov64[i].base) |
Dmitry V. Levin | 4ebb4e3 | 2006-12-13 17:08:08 +0000 | [diff] [blame] | 714 | #define iov_iov_len(i) \ |
Denys Vlasenko | 9fd4f96 | 2012-03-19 09:36:42 +0100 | [diff] [blame] | 715 | (current_wordsize == 4 ? (uint64_t) iovu.iov32[i].len : iovu.iov64[i].len) |
Dmitry V. Levin | 4ebb4e3 | 2006-12-13 17:08:08 +0000 | [diff] [blame] | 716 | #else |
John Hughes | 1d08dcf | 2001-07-10 13:48:44 +0000 | [diff] [blame] | 717 | struct iovec *iov; |
Dmitry V. Levin | 4ebb4e3 | 2006-12-13 17:08:08 +0000 | [diff] [blame] | 718 | #define sizeof_iov sizeof(*iov) |
| 719 | #define iov_iov_base(i) iov[i].iov_base |
| 720 | #define iov_iov_len(i) iov[i].iov_len |
| 721 | #endif |
John Hughes | 1d08dcf | 2001-07-10 13:48:44 +0000 | [diff] [blame] | 722 | int i; |
Denys Vlasenko | 79a79ea | 2011-09-01 16:35:44 +0200 | [diff] [blame] | 723 | unsigned size; |
John Hughes | 1d08dcf | 2001-07-10 13:48:44 +0000 | [diff] [blame] | 724 | |
Denys Vlasenko | 79a79ea | 2011-09-01 16:35:44 +0200 | [diff] [blame] | 725 | size = sizeof_iov * len; |
| 726 | /* Assuming no sane program has millions of iovs */ |
| 727 | if ((unsigned)len > 1024*1024 /* insane or negative size? */ |
Dmitry V. Levin | 4ebb4e3 | 2006-12-13 17:08:08 +0000 | [diff] [blame] | 728 | || (iov = malloc(size)) == NULL) { |
Denys Vlasenko | 79a79ea | 2011-09-01 16:35:44 +0200 | [diff] [blame] | 729 | fprintf(stderr, "Out of memory\n"); |
| 730 | return; |
John Hughes | 1d08dcf | 2001-07-10 13:48:44 +0000 | [diff] [blame] | 731 | } |
Roland McGrath | aa524c8 | 2005-06-01 19:22:06 +0000 | [diff] [blame] | 732 | if (umoven(tcp, addr, size, (char *) iov) >= 0) { |
John Hughes | 1d08dcf | 2001-07-10 13:48:44 +0000 | [diff] [blame] | 733 | for (i = 0; i < len; i++) { |
Denys Vlasenko | adedb51 | 2008-12-30 18:47:55 +0000 | [diff] [blame] | 734 | /* include the buffer number to make it easy to |
| 735 | * match up the trace with the source */ |
| 736 | tprintf(" * %lu bytes in buffer %d\n", |
| 737 | (unsigned long)iov_iov_len(i), i); |
| 738 | dumpstr(tcp, (long) iov_iov_base(i), |
| 739 | iov_iov_len(i)); |
| 740 | } |
John Hughes | 1d08dcf | 2001-07-10 13:48:44 +0000 | [diff] [blame] | 741 | } |
Denys Vlasenko | 79a79ea | 2011-09-01 16:35:44 +0200 | [diff] [blame] | 742 | free(iov); |
Dmitry V. Levin | 4ebb4e3 | 2006-12-13 17:08:08 +0000 | [diff] [blame] | 743 | #undef sizeof_iov |
| 744 | #undef iov_iov_base |
| 745 | #undef iov_iov_len |
| 746 | #undef iov |
John Hughes | 1d08dcf | 2001-07-10 13:48:44 +0000 | [diff] [blame] | 747 | } |
| 748 | #endif |
| 749 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 750 | void |
Denys Vlasenko | 1201426 | 2011-05-30 14:00:14 +0200 | [diff] [blame] | 751 | dumpstr(struct tcb *tcp, long addr, int len) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 752 | { |
| 753 | static int strsize = -1; |
| 754 | static unsigned char *str; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 755 | |
Denys Vlasenko | 7632580 | 2013-02-22 14:47:39 +0100 | [diff] [blame] | 756 | char outbuf[ |
| 757 | ( |
| 758 | (sizeof( |
| 759 | "xx xx xx xx xx xx xx xx xx xx xx xx xx xx xx xx " |
| 760 | "1234567890123456") + /*in case I'm off by few:*/ 4) |
| 761 | /*align to 8 to make memset easier:*/ + 7) & -8 |
| 762 | ]; |
| 763 | const unsigned char *src; |
| 764 | int i; |
| 765 | |
| 766 | memset(outbuf, ' ', sizeof(outbuf)); |
| 767 | |
| 768 | if (strsize < len + 16) { |
Denys Vlasenko | 5d64581 | 2011-08-20 12:48:18 +0200 | [diff] [blame] | 769 | free(str); |
Denys Vlasenko | 7632580 | 2013-02-22 14:47:39 +0100 | [diff] [blame] | 770 | str = malloc(len + 16); |
Denys Vlasenko | 79a79ea | 2011-09-01 16:35:44 +0200 | [diff] [blame] | 771 | if (!str) { |
| 772 | strsize = -1; |
| 773 | fprintf(stderr, "Out of memory\n"); |
| 774 | return; |
| 775 | } |
Denys Vlasenko | 7632580 | 2013-02-22 14:47:39 +0100 | [diff] [blame] | 776 | strsize = len + 16; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 777 | } |
| 778 | |
| 779 | if (umoven(tcp, addr, len, (char *) str) < 0) |
| 780 | return; |
| 781 | |
Denys Vlasenko | 7632580 | 2013-02-22 14:47:39 +0100 | [diff] [blame] | 782 | /* Space-pad to 16 bytes */ |
| 783 | i = len; |
| 784 | while (i & 0xf) |
| 785 | str[i++] = ' '; |
Denys Vlasenko | 1d46ba5 | 2011-08-31 14:00:02 +0200 | [diff] [blame] | 786 | |
Denys Vlasenko | 7632580 | 2013-02-22 14:47:39 +0100 | [diff] [blame] | 787 | i = 0; |
| 788 | src = str; |
| 789 | while (i < len) { |
| 790 | char *dst = outbuf; |
| 791 | /* Hex dump */ |
| 792 | do { |
| 793 | if (i < len) { |
| 794 | *dst++ = "0123456789abcdef"[*src >> 4]; |
| 795 | *dst++ = "0123456789abcdef"[*src & 0xf]; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 796 | } |
| 797 | else { |
Denys Vlasenko | 7632580 | 2013-02-22 14:47:39 +0100 | [diff] [blame] | 798 | *dst++ = ' '; |
| 799 | *dst++ = ' '; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 800 | } |
Denys Vlasenko | 7632580 | 2013-02-22 14:47:39 +0100 | [diff] [blame] | 801 | dst++; /* space is there by memset */ |
| 802 | i++; |
| 803 | if ((i & 7) == 0) |
| 804 | dst++; /* space is there by memset */ |
| 805 | src++; |
| 806 | } while (i & 0xf); |
| 807 | /* ASCII dump */ |
| 808 | i -= 16; |
| 809 | src -= 16; |
| 810 | do { |
| 811 | if (*src >= ' ' && *src < 0x7f) |
| 812 | *dst++ = *src; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 813 | else |
Denys Vlasenko | 7632580 | 2013-02-22 14:47:39 +0100 | [diff] [blame] | 814 | *dst++ = '.'; |
| 815 | src++; |
| 816 | } while (++i & 0xf); |
| 817 | *dst = '\0'; |
Denys Vlasenko | f90979b | 2013-02-22 15:00:11 +0100 | [diff] [blame] | 818 | tprintf(" | %05x %s |\n", i - 16, outbuf); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 819 | } |
| 820 | } |
| 821 | |
Mike Frysinger | 612659e | 2012-02-14 14:38:28 +0100 | [diff] [blame] | 822 | #ifdef HAVE_PROCESS_VM_READV |
| 823 | /* C library supports this, but the kernel might not. */ |
| 824 | static bool process_vm_readv_not_supported = 0; |
| 825 | #else |
| 826 | |
Denys Vlasenko | 3af224c | 2012-01-28 01:46:33 +0100 | [diff] [blame] | 827 | /* Need to do this since process_vm_readv() is not yet available in libc. |
| 828 | * When libc is be updated, only "static bool process_vm_readv_not_supported" |
| 829 | * line should remain. |
| 830 | */ |
| 831 | #if !defined(__NR_process_vm_readv) |
| 832 | # if defined(I386) |
| 833 | # define __NR_process_vm_readv 347 |
| 834 | # elif defined(X86_64) |
| 835 | # define __NR_process_vm_readv 310 |
| 836 | # elif defined(POWERPC) |
| 837 | # define __NR_process_vm_readv 351 |
| 838 | # endif |
| 839 | #endif |
| 840 | |
| 841 | #if defined(__NR_process_vm_readv) |
| 842 | static bool process_vm_readv_not_supported = 0; |
Mike Frysinger | 24ee60b | 2012-05-04 19:37:29 -0400 | [diff] [blame] | 843 | /* Have to avoid duplicating with the C library headers. */ |
| 844 | static ssize_t strace_process_vm_readv(pid_t pid, |
Denys Vlasenko | 3af224c | 2012-01-28 01:46:33 +0100 | [diff] [blame] | 845 | const struct iovec *lvec, |
| 846 | unsigned long liovcnt, |
| 847 | const struct iovec *rvec, |
| 848 | unsigned long riovcnt, |
| 849 | unsigned long flags) |
| 850 | { |
| 851 | return syscall(__NR_process_vm_readv, (long)pid, lvec, liovcnt, rvec, riovcnt, flags); |
| 852 | } |
Mike Frysinger | 24ee60b | 2012-05-04 19:37:29 -0400 | [diff] [blame] | 853 | #define process_vm_readv strace_process_vm_readv |
Denys Vlasenko | 3af224c | 2012-01-28 01:46:33 +0100 | [diff] [blame] | 854 | #else |
| 855 | static bool process_vm_readv_not_supported = 1; |
| 856 | # define process_vm_readv(...) (errno = ENOSYS, -1) |
| 857 | #endif |
Mike Frysinger | 612659e | 2012-02-14 14:38:28 +0100 | [diff] [blame] | 858 | |
| 859 | #endif /* end of hack */ |
Denys Vlasenko | 3af224c | 2012-01-28 01:46:33 +0100 | [diff] [blame] | 860 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 861 | #define PAGMASK (~(PAGSIZ - 1)) |
| 862 | /* |
| 863 | * move `len' bytes of data from process `pid' |
| 864 | * at address `addr' to our space at `laddr' |
| 865 | */ |
| 866 | int |
Denys Vlasenko | ef2fbf8 | 2009-01-06 21:45:06 +0000 | [diff] [blame] | 867 | umoven(struct tcb *tcp, long addr, int len, char *laddr) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 868 | { |
Roland McGrath | eb9e2e8 | 2009-06-02 16:49:22 -0700 | [diff] [blame] | 869 | int pid = tcp->pid; |
Dmitry V. Levin | 9700592 | 2013-02-26 21:16:22 +0000 | [diff] [blame] | 870 | int n, m, nread; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 871 | union { |
| 872 | long val; |
| 873 | char x[sizeof(long)]; |
| 874 | } u; |
| 875 | |
Denys Vlasenko | 2544f98 | 2013-02-19 17:39:56 +0100 | [diff] [blame] | 876 | #if SUPPORTED_PERSONALITIES > 1 && SIZEOF_LONG > 4 |
Denys Vlasenko | 9fd4f96 | 2012-03-19 09:36:42 +0100 | [diff] [blame] | 877 | if (current_wordsize < sizeof(addr)) |
| 878 | addr &= (1ul << 8 * current_wordsize) - 1; |
Denys Vlasenko | d2a660f | 2012-02-25 00:43:22 +0100 | [diff] [blame] | 879 | #endif |
| 880 | |
Denys Vlasenko | 3af224c | 2012-01-28 01:46:33 +0100 | [diff] [blame] | 881 | if (!process_vm_readv_not_supported) { |
| 882 | struct iovec local[1], remote[1]; |
| 883 | int r; |
| 884 | |
| 885 | local[0].iov_base = laddr; |
| 886 | remote[0].iov_base = (void*)addr; |
| 887 | local[0].iov_len = remote[0].iov_len = len; |
Dmitry V. Levin | 9700592 | 2013-02-26 21:16:22 +0000 | [diff] [blame] | 888 | r = process_vm_readv(pid, local, 1, remote, 1, 0); |
Ben Noordhuis | 1d58fe9 | 2013-02-26 12:24:25 +0100 | [diff] [blame] | 889 | if (r == len) |
| 890 | return 0; |
Dmitry V. Levin | 9700592 | 2013-02-26 21:16:22 +0000 | [diff] [blame] | 891 | if (r >= 0) { |
| 892 | error_msg("umoven: short read (%d < %d) @0x%lx", |
| 893 | r, len, addr); |
| 894 | return -1; |
| 895 | } |
| 896 | switch (errno) { |
| 897 | case ENOSYS: |
Denys Vlasenko | 3af224c | 2012-01-28 01:46:33 +0100 | [diff] [blame] | 898 | process_vm_readv_not_supported = 1; |
Dmitry V. Levin | 9700592 | 2013-02-26 21:16:22 +0000 | [diff] [blame] | 899 | break; |
| 900 | case ESRCH: |
| 901 | /* the process is gone */ |
| 902 | return -1; |
| 903 | case EFAULT: case EIO: case EPERM: |
| 904 | /* address space is inaccessible */ |
| 905 | return -1; |
| 906 | default: |
| 907 | /* all the rest is strange and should be reported */ |
Denys Vlasenko | 905e8e0 | 2013-02-26 12:30:09 +0100 | [diff] [blame] | 908 | perror_msg("process_vm_readv"); |
Dmitry V. Levin | 9700592 | 2013-02-26 21:16:22 +0000 | [diff] [blame] | 909 | return -1; |
Denys Vlasenko | 3af224c | 2012-01-28 01:46:33 +0100 | [diff] [blame] | 910 | } |
Denys Vlasenko | 3af224c | 2012-01-28 01:46:33 +0100 | [diff] [blame] | 911 | } |
Denys Vlasenko | 3af224c | 2012-01-28 01:46:33 +0100 | [diff] [blame] | 912 | |
Dmitry V. Levin | 9700592 | 2013-02-26 21:16:22 +0000 | [diff] [blame] | 913 | nread = 0; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 914 | if (addr & (sizeof(long) - 1)) { |
| 915 | /* addr not a multiple of sizeof(long) */ |
| 916 | n = addr - (addr & -sizeof(long)); /* residue */ |
| 917 | addr &= -sizeof(long); /* residue */ |
Roland McGrath | eb9e2e8 | 2009-06-02 16:49:22 -0700 | [diff] [blame] | 918 | errno = 0; |
| 919 | u.val = ptrace(PTRACE_PEEKDATA, pid, (char *) addr, 0); |
Dmitry V. Levin | 9700592 | 2013-02-26 21:16:22 +0000 | [diff] [blame] | 920 | switch (errno) { |
| 921 | case 0: |
| 922 | break; |
| 923 | case ESRCH: case EINVAL: |
| 924 | /* these could be seen if the process is gone */ |
| 925 | return -1; |
| 926 | case EFAULT: case EIO: case EPERM: |
| 927 | /* address space is inaccessible */ |
| 928 | return -1; |
| 929 | default: |
| 930 | /* all the rest is strange and should be reported */ |
| 931 | perror_msg("umoven: PTRACE_PEEKDATA pid:%d @0x%lx", |
| 932 | pid, addr); |
| 933 | return -1; |
Roland McGrath | eb9e2e8 | 2009-06-02 16:49:22 -0700 | [diff] [blame] | 934 | } |
Denys Vlasenko | a47e6b9 | 2012-01-21 04:01:56 +0100 | [diff] [blame] | 935 | m = MIN(sizeof(long) - n, len); |
| 936 | memcpy(laddr, &u.x[n], m); |
Denys Vlasenko | 1694092 | 2013-03-01 18:52:59 +0100 | [diff] [blame] | 937 | addr += sizeof(long); |
| 938 | laddr += m; |
| 939 | nread += m; |
| 940 | len -= m; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 941 | } |
| 942 | while (len) { |
Roland McGrath | eb9e2e8 | 2009-06-02 16:49:22 -0700 | [diff] [blame] | 943 | errno = 0; |
| 944 | u.val = ptrace(PTRACE_PEEKDATA, pid, (char *) addr, 0); |
Dmitry V. Levin | 9700592 | 2013-02-26 21:16:22 +0000 | [diff] [blame] | 945 | switch (errno) { |
| 946 | case 0: |
| 947 | break; |
| 948 | case ESRCH: case EINVAL: |
| 949 | /* these could be seen if the process is gone */ |
| 950 | return -1; |
| 951 | case EFAULT: case EIO: case EPERM: |
| 952 | /* address space is inaccessible */ |
| 953 | if (nread) { |
| 954 | perror_msg("umoven: short read (%d < %d) @0x%lx", |
| 955 | nread, nread + len, addr - nread); |
| 956 | } |
| 957 | return -1; |
| 958 | default: |
| 959 | /* all the rest is strange and should be reported */ |
| 960 | perror_msg("umoven: PTRACE_PEEKDATA pid:%d @0x%lx", |
| 961 | pid, addr); |
| 962 | return -1; |
Roland McGrath | eb9e2e8 | 2009-06-02 16:49:22 -0700 | [diff] [blame] | 963 | } |
Denys Vlasenko | a47e6b9 | 2012-01-21 04:01:56 +0100 | [diff] [blame] | 964 | m = MIN(sizeof(long), len); |
| 965 | memcpy(laddr, u.x, m); |
Denys Vlasenko | 1694092 | 2013-03-01 18:52:59 +0100 | [diff] [blame] | 966 | addr += sizeof(long); |
| 967 | laddr += m; |
| 968 | nread += m; |
| 969 | len -= m; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 970 | } |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 971 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 972 | return 0; |
| 973 | } |
| 974 | |
| 975 | /* |
Denys Vlasenko | 6cecba5 | 2012-01-20 11:56:00 +0100 | [diff] [blame] | 976 | * Like `umove' but make the additional effort of looking |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 977 | * for a terminating zero byte. |
Denys Vlasenko | 6cecba5 | 2012-01-20 11:56:00 +0100 | [diff] [blame] | 978 | * |
| 979 | * Returns < 0 on error, > 0 if NUL was seen, |
| 980 | * (TODO if useful: return count of bytes including NUL), |
| 981 | * else 0 if len bytes were read but no NUL byte seen. |
| 982 | * |
| 983 | * Note: there is no guarantee we won't overwrite some bytes |
| 984 | * in laddr[] _after_ terminating NUL (but, of course, |
| 985 | * we never write past laddr[len-1]). |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 986 | */ |
| 987 | int |
Denys Vlasenko | ef2fbf8 | 2009-01-06 21:45:06 +0000 | [diff] [blame] | 988 | umovestr(struct tcb *tcp, long addr, int len, char *laddr) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 989 | { |
Denys Vlasenko | 1694092 | 2013-03-01 18:52:59 +0100 | [diff] [blame] | 990 | #if SIZEOF_LONG == 4 |
| 991 | const unsigned long x01010101 = 0x01010101ul; |
| 992 | const unsigned long x80808080 = 0x80808080ul; |
| 993 | #elif SIZEOF_LONG == 8 |
| 994 | const unsigned long x01010101 = 0x0101010101010101ul; |
| 995 | const unsigned long x80808080 = 0x8080808080808080ul; |
| 996 | #else |
| 997 | # error SIZEOF_LONG > 8 |
| 998 | #endif |
| 999 | |
Roland McGrath | eb9e2e8 | 2009-06-02 16:49:22 -0700 | [diff] [blame] | 1000 | int pid = tcp->pid; |
Denys Vlasenko | 1694092 | 2013-03-01 18:52:59 +0100 | [diff] [blame] | 1001 | int n, m, nread; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1002 | union { |
Denys Vlasenko | 1694092 | 2013-03-01 18:52:59 +0100 | [diff] [blame] | 1003 | unsigned long val; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1004 | char x[sizeof(long)]; |
| 1005 | } u; |
| 1006 | |
Denys Vlasenko | 2544f98 | 2013-02-19 17:39:56 +0100 | [diff] [blame] | 1007 | #if SUPPORTED_PERSONALITIES > 1 && SIZEOF_LONG > 4 |
Denys Vlasenko | 9fd4f96 | 2012-03-19 09:36:42 +0100 | [diff] [blame] | 1008 | if (current_wordsize < sizeof(addr)) |
| 1009 | addr &= (1ul << 8 * current_wordsize) - 1; |
Dmitry V. Levin | 856c7ed | 2011-12-26 20:12:02 +0000 | [diff] [blame] | 1010 | #endif |
| 1011 | |
Dmitry V. Levin | 9700592 | 2013-02-26 21:16:22 +0000 | [diff] [blame] | 1012 | nread = 0; |
Denys Vlasenko | 3af224c | 2012-01-28 01:46:33 +0100 | [diff] [blame] | 1013 | if (!process_vm_readv_not_supported) { |
| 1014 | struct iovec local[1], remote[1]; |
| 1015 | |
| 1016 | local[0].iov_base = laddr; |
| 1017 | remote[0].iov_base = (void*)addr; |
| 1018 | |
| 1019 | while (len > 0) { |
| 1020 | int end_in_page; |
| 1021 | int r; |
| 1022 | int chunk_len; |
| 1023 | |
| 1024 | /* Don't read kilobytes: most strings are short */ |
| 1025 | chunk_len = len; |
| 1026 | if (chunk_len > 256) |
| 1027 | chunk_len = 256; |
| 1028 | /* Don't cross pages. I guess otherwise we can get EFAULT |
| 1029 | * and fail to notice that terminating NUL lies |
| 1030 | * in the existing (first) page. |
| 1031 | * (I hope there aren't arches with pages < 4K) |
| 1032 | */ |
| 1033 | end_in_page = ((addr + chunk_len) & 4095); |
| 1034 | r = chunk_len - end_in_page; |
| 1035 | if (r > 0) /* if chunk_len > end_in_page */ |
| 1036 | chunk_len = r; /* chunk_len -= end_in_page */ |
| 1037 | |
| 1038 | local[0].iov_len = remote[0].iov_len = chunk_len; |
Dmitry V. Levin | 9700592 | 2013-02-26 21:16:22 +0000 | [diff] [blame] | 1039 | r = process_vm_readv(pid, local, 1, remote, 1, 0); |
| 1040 | if (r > 0) { |
| 1041 | if (memchr(local[0].iov_base, '\0', r)) |
| 1042 | return 1; |
| 1043 | local[0].iov_base += r; |
| 1044 | remote[0].iov_base += r; |
| 1045 | len -= r; |
| 1046 | nread += r; |
| 1047 | continue; |
Denys Vlasenko | 3af224c | 2012-01-28 01:46:33 +0100 | [diff] [blame] | 1048 | } |
Dmitry V. Levin | 9700592 | 2013-02-26 21:16:22 +0000 | [diff] [blame] | 1049 | switch (errno) { |
| 1050 | case ENOSYS: |
| 1051 | process_vm_readv_not_supported = 1; |
| 1052 | goto vm_readv_didnt_work; |
| 1053 | case ESRCH: |
| 1054 | /* the process is gone */ |
| 1055 | return -1; |
| 1056 | case EFAULT: case EIO: case EPERM: |
| 1057 | /* address space is inaccessible */ |
| 1058 | if (nread) { |
| 1059 | perror_msg("umovestr: short read (%d < %d) @0x%lx", |
| 1060 | nread, nread + len, addr); |
| 1061 | } |
| 1062 | return -1; |
| 1063 | default: |
| 1064 | /* all the rest is strange and should be reported */ |
| 1065 | perror_msg("process_vm_readv"); |
| 1066 | return -1; |
| 1067 | } |
Denys Vlasenko | 3af224c | 2012-01-28 01:46:33 +0100 | [diff] [blame] | 1068 | } |
| 1069 | return 0; |
| 1070 | } |
| 1071 | vm_readv_didnt_work: |
| 1072 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1073 | if (addr & (sizeof(long) - 1)) { |
| 1074 | /* addr not a multiple of sizeof(long) */ |
| 1075 | n = addr - (addr & -sizeof(long)); /* residue */ |
| 1076 | addr &= -sizeof(long); /* residue */ |
Roland McGrath | eb9e2e8 | 2009-06-02 16:49:22 -0700 | [diff] [blame] | 1077 | errno = 0; |
| 1078 | u.val = ptrace(PTRACE_PEEKDATA, pid, (char *)addr, 0); |
Dmitry V. Levin | 9700592 | 2013-02-26 21:16:22 +0000 | [diff] [blame] | 1079 | switch (errno) { |
| 1080 | case 0: |
| 1081 | break; |
| 1082 | case ESRCH: case EINVAL: |
| 1083 | /* these could be seen if the process is gone */ |
| 1084 | return -1; |
| 1085 | case EFAULT: case EIO: case EPERM: |
| 1086 | /* address space is inaccessible */ |
| 1087 | return -1; |
| 1088 | default: |
| 1089 | /* all the rest is strange and should be reported */ |
| 1090 | perror_msg("umovestr: PTRACE_PEEKDATA pid:%d @0x%lx", |
| 1091 | pid, addr); |
| 1092 | return -1; |
Roland McGrath | eb9e2e8 | 2009-06-02 16:49:22 -0700 | [diff] [blame] | 1093 | } |
Denys Vlasenko | a47e6b9 | 2012-01-21 04:01:56 +0100 | [diff] [blame] | 1094 | m = MIN(sizeof(long) - n, len); |
| 1095 | memcpy(laddr, &u.x[n], m); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1096 | while (n & (sizeof(long) - 1)) |
| 1097 | if (u.x[n++] == '\0') |
Denys Vlasenko | 6cecba5 | 2012-01-20 11:56:00 +0100 | [diff] [blame] | 1098 | return 1; |
Denys Vlasenko | 1694092 | 2013-03-01 18:52:59 +0100 | [diff] [blame] | 1099 | addr += sizeof(long); |
| 1100 | laddr += m; |
| 1101 | nread += m; |
| 1102 | len -= m; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1103 | } |
Denys Vlasenko | 1694092 | 2013-03-01 18:52:59 +0100 | [diff] [blame] | 1104 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1105 | while (len) { |
Roland McGrath | eb9e2e8 | 2009-06-02 16:49:22 -0700 | [diff] [blame] | 1106 | errno = 0; |
| 1107 | u.val = ptrace(PTRACE_PEEKDATA, pid, (char *)addr, 0); |
Dmitry V. Levin | 9700592 | 2013-02-26 21:16:22 +0000 | [diff] [blame] | 1108 | switch (errno) { |
| 1109 | case 0: |
| 1110 | break; |
| 1111 | case ESRCH: case EINVAL: |
| 1112 | /* these could be seen if the process is gone */ |
| 1113 | return -1; |
| 1114 | case EFAULT: case EIO: case EPERM: |
| 1115 | /* address space is inaccessible */ |
| 1116 | if (nread) { |
| 1117 | perror_msg("umovestr: short read (%d < %d) @0x%lx", |
| 1118 | nread, nread + len, addr - nread); |
| 1119 | } |
| 1120 | return -1; |
| 1121 | default: |
| 1122 | /* all the rest is strange and should be reported */ |
| 1123 | perror_msg("umovestr: PTRACE_PEEKDATA pid:%d @0x%lx", |
| 1124 | pid, addr); |
| 1125 | return -1; |
Roland McGrath | eb9e2e8 | 2009-06-02 16:49:22 -0700 | [diff] [blame] | 1126 | } |
Denys Vlasenko | a47e6b9 | 2012-01-21 04:01:56 +0100 | [diff] [blame] | 1127 | m = MIN(sizeof(long), len); |
| 1128 | memcpy(laddr, u.x, m); |
Denys Vlasenko | 1694092 | 2013-03-01 18:52:59 +0100 | [diff] [blame] | 1129 | /* "If a NUL char exists in this word" */ |
| 1130 | if ((u.val - x01010101) & ~u.val & x80808080) |
| 1131 | return 1; |
| 1132 | addr += sizeof(long); |
| 1133 | laddr += m; |
| 1134 | nread += m; |
| 1135 | len -= m; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1136 | } |
John Hughes | aa09c6b | 2001-05-15 14:53:43 +0000 | [diff] [blame] | 1137 | return 0; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1138 | } |
| 1139 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1140 | int |
Denys Vlasenko | 752e5a0 | 2013-06-28 14:35:47 +0200 | [diff] [blame] | 1141 | upeek(int pid, long off, long *res) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1142 | { |
| 1143 | long val; |
| 1144 | |
Roland McGrath | eb9e2e8 | 2009-06-02 16:49:22 -0700 | [diff] [blame] | 1145 | errno = 0; |
Denys Vlasenko | 752e5a0 | 2013-06-28 14:35:47 +0200 | [diff] [blame] | 1146 | val = ptrace(PTRACE_PEEKUSER, (pid_t)pid, (char *) off, 0); |
Roland McGrath | eb9e2e8 | 2009-06-02 16:49:22 -0700 | [diff] [blame] | 1147 | if (val == -1 && errno) { |
| 1148 | if (errno != ESRCH) { |
Denys Vlasenko | 752e5a0 | 2013-06-28 14:35:47 +0200 | [diff] [blame] | 1149 | perror_msg("upeek: PTRACE_PEEKUSER pid:%d @0x%lx)", pid, off); |
Roland McGrath | eb9e2e8 | 2009-06-02 16:49:22 -0700 | [diff] [blame] | 1150 | } |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1151 | return -1; |
Roland McGrath | eb9e2e8 | 2009-06-02 16:49:22 -0700 | [diff] [blame] | 1152 | } |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1153 | *res = val; |
| 1154 | return 0; |
| 1155 | } |
| 1156 | |
Denys Vlasenko | d27809c | 2013-02-12 12:50:10 +0100 | [diff] [blame] | 1157 | /* Note! On new kernels (about 2.5.46+), we use PTRACE_O_TRACECLONE |
| 1158 | * and PTRACE_O_TRACE[V]FORK for tracing children. |
| 1159 | * If you are adding a new arch which is only supported by newer kernels, |
| 1160 | * you most likely don't need to add any code below |
| 1161 | * beside a dummy "return 0" block in change_syscall(). |
| 1162 | */ |
| 1163 | |
Denys Vlasenko | 3bb7cd6 | 2009-02-09 18:55:59 +0000 | [diff] [blame] | 1164 | /* |
| 1165 | * These #if's are huge, please indent them correctly. |
| 1166 | * It's easy to get confused otherwise. |
| 1167 | */ |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1168 | |
Denys Vlasenko | 2d1e90f | 2012-02-25 02:46:14 +0100 | [diff] [blame] | 1169 | #include "syscall.h" |
Roland McGrath | 3291ef2 | 2008-05-20 00:34:34 +0000 | [diff] [blame] | 1170 | |
Denys Vlasenko | 2d1e90f | 2012-02-25 02:46:14 +0100 | [diff] [blame] | 1171 | #ifndef CLONE_PTRACE |
| 1172 | # define CLONE_PTRACE 0x00002000 |
| 1173 | #endif |
| 1174 | #ifndef CLONE_VFORK |
| 1175 | # define CLONE_VFORK 0x00004000 |
| 1176 | #endif |
| 1177 | #ifndef CLONE_VM |
| 1178 | # define CLONE_VM 0x00000100 |
| 1179 | #endif |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1180 | |
Denys Vlasenko | 2d1e90f | 2012-02-25 02:46:14 +0100 | [diff] [blame] | 1181 | #ifdef IA64 |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1182 | |
| 1183 | typedef unsigned long *arg_setup_state; |
| 1184 | |
| 1185 | static int |
| 1186 | arg_setup(struct tcb *tcp, arg_setup_state *state) |
| 1187 | { |
Jan Kratochvil | 1f94271 | 2008-08-06 21:38:52 +0000 | [diff] [blame] | 1188 | unsigned long cfm, sof, sol; |
| 1189 | long bsp; |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1190 | |
Denys Vlasenko | c09646a | 2013-07-01 12:28:17 +0200 | [diff] [blame] | 1191 | if (ia64_ia32mode) { |
Jan Kratochvil | 1f94271 | 2008-08-06 21:38:52 +0000 | [diff] [blame] | 1192 | /* Satisfy a false GCC warning. */ |
| 1193 | *state = NULL; |
Roland McGrath | 08267b8 | 2004-02-20 22:56:43 +0000 | [diff] [blame] | 1194 | return 0; |
Jan Kratochvil | 1f94271 | 2008-08-06 21:38:52 +0000 | [diff] [blame] | 1195 | } |
Roland McGrath | 08267b8 | 2004-02-20 22:56:43 +0000 | [diff] [blame] | 1196 | |
Denys Vlasenko | 752e5a0 | 2013-06-28 14:35:47 +0200 | [diff] [blame] | 1197 | if (upeek(tcp->pid, PT_AR_BSP, &bsp) < 0) |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1198 | return -1; |
Denys Vlasenko | 752e5a0 | 2013-06-28 14:35:47 +0200 | [diff] [blame] | 1199 | if (upeek(tcp->pid, PT_CFM, (long *) &cfm) < 0) |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1200 | return -1; |
| 1201 | |
| 1202 | sof = (cfm >> 0) & 0x7f; |
| 1203 | sol = (cfm >> 7) & 0x7f; |
Jan Kratochvil | 1f94271 | 2008-08-06 21:38:52 +0000 | [diff] [blame] | 1204 | bsp = (long) ia64_rse_skip_regs((unsigned long *) bsp, -sof + sol); |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1205 | |
Jan Kratochvil | 1f94271 | 2008-08-06 21:38:52 +0000 | [diff] [blame] | 1206 | *state = (unsigned long *) bsp; |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1207 | return 0; |
| 1208 | } |
| 1209 | |
Denys Vlasenko | 2d1e90f | 2012-02-25 02:46:14 +0100 | [diff] [blame] | 1210 | # define arg_finish_change(tcp, state) 0 |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1211 | |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1212 | static int |
Denys Vlasenko | 1201426 | 2011-05-30 14:00:14 +0200 | [diff] [blame] | 1213 | get_arg0(struct tcb *tcp, arg_setup_state *state, long *valp) |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1214 | { |
Roland McGrath | 08267b8 | 2004-02-20 22:56:43 +0000 | [diff] [blame] | 1215 | int ret; |
| 1216 | |
Denys Vlasenko | c09646a | 2013-07-01 12:28:17 +0200 | [diff] [blame] | 1217 | if (ia64_ia32mode) |
Denys Vlasenko | 752e5a0 | 2013-06-28 14:35:47 +0200 | [diff] [blame] | 1218 | ret = upeek(tcp->pid, PT_R11, valp); |
Roland McGrath | 08267b8 | 2004-02-20 22:56:43 +0000 | [diff] [blame] | 1219 | else |
Denys Vlasenko | b63256e | 2011-06-07 12:13:24 +0200 | [diff] [blame] | 1220 | ret = umoven(tcp, |
Roland McGrath | 08267b8 | 2004-02-20 22:56:43 +0000 | [diff] [blame] | 1221 | (unsigned long) ia64_rse_skip_regs(*state, 0), |
| 1222 | sizeof(long), (void *) valp); |
| 1223 | return ret; |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1224 | } |
| 1225 | |
| 1226 | static int |
Denys Vlasenko | 1201426 | 2011-05-30 14:00:14 +0200 | [diff] [blame] | 1227 | get_arg1(struct tcb *tcp, arg_setup_state *state, long *valp) |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1228 | { |
Roland McGrath | 08267b8 | 2004-02-20 22:56:43 +0000 | [diff] [blame] | 1229 | int ret; |
| 1230 | |
Denys Vlasenko | c09646a | 2013-07-01 12:28:17 +0200 | [diff] [blame] | 1231 | if (ia64_ia32mode) |
Denys Vlasenko | 752e5a0 | 2013-06-28 14:35:47 +0200 | [diff] [blame] | 1232 | ret = upeek(tcp->pid, PT_R9, valp); |
Roland McGrath | 08267b8 | 2004-02-20 22:56:43 +0000 | [diff] [blame] | 1233 | else |
Denys Vlasenko | b63256e | 2011-06-07 12:13:24 +0200 | [diff] [blame] | 1234 | ret = umoven(tcp, |
Roland McGrath | 08267b8 | 2004-02-20 22:56:43 +0000 | [diff] [blame] | 1235 | (unsigned long) ia64_rse_skip_regs(*state, 1), |
| 1236 | sizeof(long), (void *) valp); |
| 1237 | return ret; |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1238 | } |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1239 | |
| 1240 | static int |
Denys Vlasenko | 1201426 | 2011-05-30 14:00:14 +0200 | [diff] [blame] | 1241 | set_arg0(struct tcb *tcp, arg_setup_state *state, long val) |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1242 | { |
Roland McGrath | 08267b8 | 2004-02-20 22:56:43 +0000 | [diff] [blame] | 1243 | int req = PTRACE_POKEDATA; |
| 1244 | void *ap; |
| 1245 | |
Denys Vlasenko | c09646a | 2013-07-01 12:28:17 +0200 | [diff] [blame] | 1246 | if (ia64_ia32mode) { |
Roland McGrath | 08267b8 | 2004-02-20 22:56:43 +0000 | [diff] [blame] | 1247 | ap = (void *) (intptr_t) PT_R11; /* r11 == EBX */ |
| 1248 | req = PTRACE_POKEUSER; |
| 1249 | } else |
| 1250 | ap = ia64_rse_skip_regs(*state, 0); |
Roland McGrath | eb9e2e8 | 2009-06-02 16:49:22 -0700 | [diff] [blame] | 1251 | errno = 0; |
| 1252 | ptrace(req, tcp->pid, ap, val); |
| 1253 | return errno ? -1 : 0; |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1254 | } |
| 1255 | |
| 1256 | static int |
Denys Vlasenko | 1201426 | 2011-05-30 14:00:14 +0200 | [diff] [blame] | 1257 | set_arg1(struct tcb *tcp, arg_setup_state *state, long val) |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1258 | { |
Roland McGrath | 08267b8 | 2004-02-20 22:56:43 +0000 | [diff] [blame] | 1259 | int req = PTRACE_POKEDATA; |
| 1260 | void *ap; |
| 1261 | |
Denys Vlasenko | c09646a | 2013-07-01 12:28:17 +0200 | [diff] [blame] | 1262 | if (ia64_ia32mode) { |
Roland McGrath | 08267b8 | 2004-02-20 22:56:43 +0000 | [diff] [blame] | 1263 | ap = (void *) (intptr_t) PT_R9; /* r9 == ECX */ |
| 1264 | req = PTRACE_POKEUSER; |
| 1265 | } else |
| 1266 | ap = ia64_rse_skip_regs(*state, 1); |
Roland McGrath | eb9e2e8 | 2009-06-02 16:49:22 -0700 | [diff] [blame] | 1267 | errno = 0; |
| 1268 | ptrace(req, tcp->pid, ap, val); |
| 1269 | return errno ? -1 : 0; |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1270 | } |
| 1271 | |
Roland McGrath | b659f87 | 2008-07-18 01:19:36 +0000 | [diff] [blame] | 1272 | /* ia64 does not return the input arguments from functions (and syscalls) |
| 1273 | according to ia64 RSE (Register Stack Engine) behavior. */ |
| 1274 | |
Denys Vlasenko | 2d1e90f | 2012-02-25 02:46:14 +0100 | [diff] [blame] | 1275 | # define restore_arg0(tcp, state, val) ((void) (state), 0) |
| 1276 | # define restore_arg1(tcp, state, val) ((void) (state), 0) |
Roland McGrath | b659f87 | 2008-07-18 01:19:36 +0000 | [diff] [blame] | 1277 | |
Denys Vlasenko | 2d1e90f | 2012-02-25 02:46:14 +0100 | [diff] [blame] | 1278 | #elif defined(SPARC) || defined(SPARC64) |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1279 | |
Denys Vlasenko | ce7d953 | 2013-02-05 16:36:13 +0100 | [diff] [blame] | 1280 | # if defined(SPARC64) |
| 1281 | # undef PTRACE_GETREGS |
| 1282 | # define PTRACE_GETREGS PTRACE_GETREGS64 |
| 1283 | # undef PTRACE_SETREGS |
| 1284 | # define PTRACE_SETREGS PTRACE_SETREGS64 |
| 1285 | # endif |
| 1286 | |
Mike Frysinger | 8566c50 | 2009-10-12 11:05:14 -0400 | [diff] [blame] | 1287 | typedef struct pt_regs arg_setup_state; |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1288 | |
Denys Vlasenko | 2d1e90f | 2012-02-25 02:46:14 +0100 | [diff] [blame] | 1289 | # define arg_setup(tcp, state) \ |
| 1290 | (ptrace(PTRACE_GETREGS, (tcp)->pid, (char *) (state), 0)) |
| 1291 | # define arg_finish_change(tcp, state) \ |
| 1292 | (ptrace(PTRACE_SETREGS, (tcp)->pid, (char *) (state), 0)) |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1293 | |
Denys Vlasenko | 2d1e90f | 2012-02-25 02:46:14 +0100 | [diff] [blame] | 1294 | # define get_arg0(tcp, state, valp) (*(valp) = (state)->u_regs[U_REG_O0], 0) |
| 1295 | # define get_arg1(tcp, state, valp) (*(valp) = (state)->u_regs[U_REG_O1], 0) |
| 1296 | # define set_arg0(tcp, state, val) ((state)->u_regs[U_REG_O0] = (val), 0) |
| 1297 | # define set_arg1(tcp, state, val) ((state)->u_regs[U_REG_O1] = (val), 0) |
| 1298 | # define restore_arg0(tcp, state, val) 0 |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1299 | |
Denys Vlasenko | 2d1e90f | 2012-02-25 02:46:14 +0100 | [diff] [blame] | 1300 | #else /* other architectures */ |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1301 | |
Denys Vlasenko | 2d1e90f | 2012-02-25 02:46:14 +0100 | [diff] [blame] | 1302 | # if defined S390 || defined S390X |
Roland McGrath | 7b30822 | 2003-01-20 09:04:36 +0000 | [diff] [blame] | 1303 | /* Note: this is only true for the `clone' system call, which handles |
| 1304 | arguments specially. We could as well say that its first two arguments |
| 1305 | are swapped relative to other architectures, but that would just be |
| 1306 | another #ifdef in the calls. */ |
Denys Vlasenko | 2d1e90f | 2012-02-25 02:46:14 +0100 | [diff] [blame] | 1307 | # define arg0_offset PT_GPR3 |
| 1308 | # define arg1_offset PT_ORIGGPR2 |
| 1309 | # define restore_arg0(tcp, state, val) ((void) (state), 0) |
| 1310 | # define restore_arg1(tcp, state, val) ((void) (state), 0) |
| 1311 | # define arg0_index 1 |
| 1312 | # define arg1_index 0 |
| 1313 | # elif defined(ALPHA) || defined(MIPS) |
| 1314 | # define arg0_offset REG_A0 |
| 1315 | # define arg1_offset (REG_A0+1) |
Denys Vlasenko | 2d1e90f | 2012-02-25 02:46:14 +0100 | [diff] [blame] | 1316 | # elif defined(POWERPC) |
| 1317 | # define arg0_offset (sizeof(unsigned long)*PT_R3) |
| 1318 | # define arg1_offset (sizeof(unsigned long)*PT_R4) |
| 1319 | # define restore_arg0(tcp, state, val) ((void) (state), 0) |
| 1320 | # elif defined(HPPA) |
| 1321 | # define arg0_offset PT_GR26 |
| 1322 | # define arg1_offset (PT_GR26-4) |
H.J. Lu | 35be581 | 2012-04-16 13:00:01 +0200 | [diff] [blame] | 1323 | # elif defined(X86_64) || defined(X32) |
Denys Vlasenko | 2d1e90f | 2012-02-25 02:46:14 +0100 | [diff] [blame] | 1324 | # define arg0_offset ((long)(8*(current_personality ? RBX : RDI))) |
| 1325 | # define arg1_offset ((long)(8*(current_personality ? RCX : RSI))) |
| 1326 | # elif defined(SH) |
| 1327 | # define arg0_offset (4*(REG_REG0+4)) |
| 1328 | # define arg1_offset (4*(REG_REG0+5)) |
| 1329 | # elif defined(SH64) |
| 1330 | /* ABI defines arg0 & 1 in r2 & r3 */ |
| 1331 | # define arg0_offset (REG_OFFSET+16) |
| 1332 | # define arg1_offset (REG_OFFSET+24) |
| 1333 | # define restore_arg0(tcp, state, val) 0 |
| 1334 | # elif defined CRISV10 || defined CRISV32 |
| 1335 | # define arg0_offset (4*PT_R11) |
| 1336 | # define arg1_offset (4*PT_ORIG_R10) |
| 1337 | # define restore_arg0(tcp, state, val) 0 |
| 1338 | # define restore_arg1(tcp, state, val) 0 |
| 1339 | # define arg0_index 1 |
| 1340 | # define arg1_index 0 |
| 1341 | # else |
| 1342 | # define arg0_offset 0 |
| 1343 | # define arg1_offset 4 |
| 1344 | # if defined ARM |
| 1345 | # define restore_arg0(tcp, state, val) 0 |
| 1346 | # endif |
| 1347 | # endif |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1348 | |
| 1349 | typedef int arg_setup_state; |
| 1350 | |
Denys Vlasenko | 2d1e90f | 2012-02-25 02:46:14 +0100 | [diff] [blame] | 1351 | # define arg_setup(tcp, state) (0) |
| 1352 | # define arg_finish_change(tcp, state) 0 |
Denys Vlasenko | 752e5a0 | 2013-06-28 14:35:47 +0200 | [diff] [blame] | 1353 | # define get_arg0(tcp, cookie, valp) (upeek((tcp)->pid, arg0_offset, (valp))) |
| 1354 | # define get_arg1(tcp, cookie, valp) (upeek((tcp)->pid, arg1_offset, (valp))) |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1355 | |
| 1356 | static int |
Denys Vlasenko | 1201426 | 2011-05-30 14:00:14 +0200 | [diff] [blame] | 1357 | set_arg0(struct tcb *tcp, void *cookie, long val) |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1358 | { |
Denys Vlasenko | b63256e | 2011-06-07 12:13:24 +0200 | [diff] [blame] | 1359 | return ptrace(PTRACE_POKEUSER, tcp->pid, (char*)arg0_offset, val); |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1360 | } |
| 1361 | |
| 1362 | static int |
Denys Vlasenko | 1201426 | 2011-05-30 14:00:14 +0200 | [diff] [blame] | 1363 | set_arg1(struct tcb *tcp, void *cookie, long val) |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1364 | { |
Denys Vlasenko | b63256e | 2011-06-07 12:13:24 +0200 | [diff] [blame] | 1365 | return ptrace(PTRACE_POKEUSER, tcp->pid, (char*)arg1_offset, val); |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1366 | } |
| 1367 | |
Denys Vlasenko | 2d1e90f | 2012-02-25 02:46:14 +0100 | [diff] [blame] | 1368 | #endif /* architectures */ |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1369 | |
Denys Vlasenko | 2d1e90f | 2012-02-25 02:46:14 +0100 | [diff] [blame] | 1370 | #ifndef restore_arg0 |
| 1371 | # define restore_arg0(tcp, state, val) set_arg0((tcp), (state), (val)) |
| 1372 | #endif |
| 1373 | #ifndef restore_arg1 |
| 1374 | # define restore_arg1(tcp, state, val) set_arg1((tcp), (state), (val)) |
| 1375 | #endif |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1376 | |
Denys Vlasenko | 2d1e90f | 2012-02-25 02:46:14 +0100 | [diff] [blame] | 1377 | #ifndef arg0_index |
| 1378 | # define arg0_index 0 |
| 1379 | # define arg1_index 1 |
| 1380 | #endif |
Roland McGrath | 90d0afd | 2004-03-01 21:05:16 +0000 | [diff] [blame] | 1381 | |
James Hogan | 05eb905 | 2012-11-29 17:37:37 +0000 | [diff] [blame] | 1382 | static int |
| 1383 | change_syscall(struct tcb *tcp, arg_setup_state *state, int new) |
| 1384 | { |
| 1385 | #if defined(I386) |
| 1386 | if (ptrace(PTRACE_POKEUSER, tcp->pid, (char*)(ORIG_EAX * 4), new) < 0) |
| 1387 | return -1; |
| 1388 | return 0; |
Denys Vlasenko | bf357fc | 2013-02-12 13:06:51 +0100 | [diff] [blame] | 1389 | #elif defined(X86_64) |
James Hogan | 05eb905 | 2012-11-29 17:37:37 +0000 | [diff] [blame] | 1390 | if (ptrace(PTRACE_POKEUSER, tcp->pid, (char*)(ORIG_RAX * 8), new) < 0) |
| 1391 | return -1; |
| 1392 | return 0; |
Denys Vlasenko | bf357fc | 2013-02-12 13:06:51 +0100 | [diff] [blame] | 1393 | #elif defined(X32) |
| 1394 | /* setbpt/clearbpt never used: */ |
| 1395 | /* X32 is only supported since about linux-3.0.30 */ |
James Hogan | 05eb905 | 2012-11-29 17:37:37 +0000 | [diff] [blame] | 1396 | #elif defined(POWERPC) |
| 1397 | if (ptrace(PTRACE_POKEUSER, tcp->pid, |
| 1398 | (char*)(sizeof(unsigned long)*PT_R0), new) < 0) |
| 1399 | return -1; |
| 1400 | return 0; |
| 1401 | #elif defined(S390) || defined(S390X) |
| 1402 | /* s390 linux after 2.4.7 has a hook in entry.S to allow this */ |
| 1403 | if (ptrace(PTRACE_POKEUSER, tcp->pid, (char*)(PT_GPR2), new) < 0) |
| 1404 | return -1; |
| 1405 | return 0; |
| 1406 | #elif defined(M68K) |
| 1407 | if (ptrace(PTRACE_POKEUSER, tcp->pid, (char*)(4*PT_ORIG_D0), new) < 0) |
| 1408 | return -1; |
| 1409 | return 0; |
| 1410 | #elif defined(SPARC) || defined(SPARC64) |
| 1411 | state->u_regs[U_REG_G1] = new; |
| 1412 | return 0; |
| 1413 | #elif defined(MIPS) |
| 1414 | if (ptrace(PTRACE_POKEUSER, tcp->pid, (char*)(REG_V0), new) < 0) |
| 1415 | return -1; |
| 1416 | return 0; |
| 1417 | #elif defined(ALPHA) |
| 1418 | if (ptrace(PTRACE_POKEUSER, tcp->pid, (char*)(REG_A3), new) < 0) |
| 1419 | return -1; |
| 1420 | return 0; |
| 1421 | #elif defined(AVR32) |
Denys Vlasenko | d27809c | 2013-02-12 12:50:10 +0100 | [diff] [blame] | 1422 | /* setbpt/clearbpt never used: */ |
| 1423 | /* AVR32 is only supported since about linux-2.6.19 */ |
James Hogan | 05eb905 | 2012-11-29 17:37:37 +0000 | [diff] [blame] | 1424 | #elif defined(BFIN) |
Denys Vlasenko | d27809c | 2013-02-12 12:50:10 +0100 | [diff] [blame] | 1425 | /* setbpt/clearbpt never used: */ |
| 1426 | /* Blackfin is only supported since about linux-2.6.23 */ |
James Hogan | 05eb905 | 2012-11-29 17:37:37 +0000 | [diff] [blame] | 1427 | #elif defined(IA64) |
Denys Vlasenko | c09646a | 2013-07-01 12:28:17 +0200 | [diff] [blame] | 1428 | if (ia64_ia32mode) { |
James Hogan | 05eb905 | 2012-11-29 17:37:37 +0000 | [diff] [blame] | 1429 | switch (new) { |
| 1430 | case 2: |
| 1431 | break; /* x86 SYS_fork */ |
| 1432 | case SYS_clone: |
| 1433 | new = 120; |
| 1434 | break; |
| 1435 | default: |
| 1436 | fprintf(stderr, "%s: unexpected syscall %d\n", |
| 1437 | __FUNCTION__, new); |
| 1438 | return -1; |
| 1439 | } |
| 1440 | if (ptrace(PTRACE_POKEUSER, tcp->pid, (char*)(PT_R1), new) < 0) |
| 1441 | return -1; |
| 1442 | } else if (ptrace(PTRACE_POKEUSER, tcp->pid, (char*)(PT_R15), new) < 0) |
| 1443 | return -1; |
| 1444 | return 0; |
| 1445 | #elif defined(HPPA) |
| 1446 | if (ptrace(PTRACE_POKEUSER, tcp->pid, (char*)(PT_GR20), new) < 0) |
| 1447 | return -1; |
| 1448 | return 0; |
| 1449 | #elif defined(SH) |
| 1450 | if (ptrace(PTRACE_POKEUSER, tcp->pid, (char*)(4*(REG_REG0+3)), new) < 0) |
| 1451 | return -1; |
| 1452 | return 0; |
| 1453 | #elif defined(SH64) |
| 1454 | /* Top half of reg encodes the no. of args n as 0x1n. |
| 1455 | Assume 0 args as kernel never actually checks... */ |
| 1456 | if (ptrace(PTRACE_POKEUSER, tcp->pid, (char*)(REG_SYSCALL), |
| 1457 | 0x100000 | new) < 0) |
| 1458 | return -1; |
| 1459 | return 0; |
| 1460 | #elif defined(CRISV10) || defined(CRISV32) |
| 1461 | if (ptrace(PTRACE_POKEUSER, tcp->pid, (char*)(4*PT_R9), new) < 0) |
| 1462 | return -1; |
| 1463 | return 0; |
| 1464 | #elif defined(ARM) |
| 1465 | /* Some kernels support this, some (pre-2.6.16 or so) don't. */ |
| 1466 | # ifndef PTRACE_SET_SYSCALL |
| 1467 | # define PTRACE_SET_SYSCALL 23 |
| 1468 | # endif |
| 1469 | if (ptrace(PTRACE_SET_SYSCALL, tcp->pid, 0, new & 0xffff) != 0) |
| 1470 | return -1; |
| 1471 | return 0; |
Denys Vlasenko | bf357fc | 2013-02-12 13:06:51 +0100 | [diff] [blame] | 1472 | #elif defined(AARCH64) |
| 1473 | /* setbpt/clearbpt never used: */ |
| 1474 | /* AARCH64 is only supported since about linux-3.0.31 */ |
James Hogan | 05eb905 | 2012-11-29 17:37:37 +0000 | [diff] [blame] | 1475 | #elif defined(TILE) |
Denys Vlasenko | d27809c | 2013-02-12 12:50:10 +0100 | [diff] [blame] | 1476 | /* setbpt/clearbpt never used: */ |
| 1477 | /* Tilera CPUs are only supported since about linux-2.6.34 */ |
James Hogan | 05eb905 | 2012-11-29 17:37:37 +0000 | [diff] [blame] | 1478 | #elif defined(MICROBLAZE) |
Denys Vlasenko | a86696b | 2013-02-12 16:07:54 +0100 | [diff] [blame] | 1479 | /* setbpt/clearbpt never used: */ |
| 1480 | /* microblaze is only supported since about linux-2.6.30 */ |
Christian Svensson | 492f81f | 2013-02-14 13:26:27 +0100 | [diff] [blame] | 1481 | #elif defined(OR1K) |
| 1482 | /* never reached; OR1K is only supported by kernels since 3.1.0. */ |
James Hogan | 5f999a8 | 2013-02-22 14:44:10 +0000 | [diff] [blame] | 1483 | #elif defined(METAG) |
| 1484 | /* setbpt/clearbpt never used: */ |
| 1485 | /* Meta is only supported since linux-3.7 */ |
Chris Zankel | 8f636ed | 2013-03-25 10:22:07 -0700 | [diff] [blame] | 1486 | #elif defined(XTENSA) |
| 1487 | /* setbpt/clearbpt never used: */ |
| 1488 | /* Xtensa is only supported since linux 2.6.13 */ |
Vineet Gupta | 7daacbb | 2013-08-16 12:47:06 +0530 | [diff] [blame] | 1489 | #elif defined(ARC) |
| 1490 | /* setbpt/clearbpt never used: */ |
| 1491 | /* ARC only supported since 3.9 */ |
James Hogan | 05eb905 | 2012-11-29 17:37:37 +0000 | [diff] [blame] | 1492 | #else |
| 1493 | #warning Do not know how to handle change_syscall for this architecture |
| 1494 | #endif /* architecture */ |
| 1495 | return -1; |
| 1496 | } |
| 1497 | |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1498 | int |
Denys Vlasenko | 418d66a | 2009-01-17 01:52:54 +0000 | [diff] [blame] | 1499 | setbpt(struct tcb *tcp) |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1500 | { |
Roland McGrath | 3291ef2 | 2008-05-20 00:34:34 +0000 | [diff] [blame] | 1501 | static int clone_scno[SUPPORTED_PERSONALITIES] = { SYS_clone }; |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1502 | arg_setup_state state; |
| 1503 | |
| 1504 | if (tcp->flags & TCB_BPTSET) { |
| 1505 | fprintf(stderr, "PANIC: TCB already set in pid %u\n", tcp->pid); |
| 1506 | return -1; |
| 1507 | } |
| 1508 | |
Roland McGrath | 3291ef2 | 2008-05-20 00:34:34 +0000 | [diff] [blame] | 1509 | /* |
| 1510 | * It's a silly kludge to initialize this with a search at runtime. |
| 1511 | * But it's better than maintaining another magic thing in the |
| 1512 | * godforsaken tables. |
| 1513 | */ |
| 1514 | if (clone_scno[current_personality] == 0) { |
Dmitry V. Levin | 3ed5d02 | 2014-09-10 13:46:04 +0000 | [diff] [blame] | 1515 | unsigned int i; |
Roland McGrath | 3291ef2 | 2008-05-20 00:34:34 +0000 | [diff] [blame] | 1516 | for (i = 0; i < nsyscalls; ++i) |
| 1517 | if (sysent[i].sys_func == sys_clone) { |
| 1518 | clone_scno[current_personality] = i; |
| 1519 | break; |
| 1520 | } |
| 1521 | } |
| 1522 | |
Dmitry V. Levin | 6556315 | 2014-05-12 13:43:10 +0000 | [diff] [blame] | 1523 | if (tcp->s_ent->sys_func == sys_fork) { |
Denys Vlasenko | b63256e | 2011-06-07 12:13:24 +0200 | [diff] [blame] | 1524 | if (arg_setup(tcp, &state) < 0 |
| 1525 | || get_arg0(tcp, &state, &tcp->inst[0]) < 0 |
| 1526 | || get_arg1(tcp, &state, &tcp->inst[1]) < 0 |
James Hogan | 05eb905 | 2012-11-29 17:37:37 +0000 | [diff] [blame] | 1527 | || change_syscall(tcp, &state, |
| 1528 | clone_scno[current_personality]) < 0 |
Denys Vlasenko | b63256e | 2011-06-07 12:13:24 +0200 | [diff] [blame] | 1529 | || set_arg0(tcp, &state, CLONE_PTRACE|SIGCHLD) < 0 |
| 1530 | || set_arg1(tcp, &state, 0) < 0 |
| 1531 | || arg_finish_change(tcp, &state) < 0) |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1532 | return -1; |
Roland McGrath | c9dc3c1 | 2004-03-01 20:57:09 +0000 | [diff] [blame] | 1533 | tcp->u_arg[arg0_index] = CLONE_PTRACE|SIGCHLD; |
| 1534 | tcp->u_arg[arg1_index] = 0; |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1535 | tcp->flags |= TCB_BPTSET; |
| 1536 | return 0; |
Dmitry V. Levin | 0c66151 | 2012-02-20 21:17:58 +0000 | [diff] [blame] | 1537 | } |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1538 | |
Denys Vlasenko | 74ec14f | 2013-02-21 16:13:47 +0100 | [diff] [blame] | 1539 | if (tcp->s_ent->sys_func == sys_clone) { |
Jan Kratochvil | 8fc9575 | 2008-08-06 21:43:35 +0000 | [diff] [blame] | 1540 | /* ia64 calls directly `clone (CLONE_VFORK | CLONE_VM)' |
Dmitry V. Levin | 0c66151 | 2012-02-20 21:17:58 +0000 | [diff] [blame] | 1541 | contrary to x86 vfork above. Even on x86 we turn the |
Jan Kratochvil | 8fc9575 | 2008-08-06 21:43:35 +0000 | [diff] [blame] | 1542 | vfork semantics into plain fork - each application must not |
| 1543 | depend on the vfork specifics according to POSIX. We would |
| 1544 | hang waiting for the parent resume otherwise. We need to |
| 1545 | clear also CLONE_VM but only in the CLONE_VFORK case as |
| 1546 | otherwise we would break pthread_create. */ |
| 1547 | |
Denys Vlasenko | c133bf0 | 2011-06-23 21:57:54 +0200 | [diff] [blame] | 1548 | long new_arg0 = (tcp->u_arg[arg0_index] | CLONE_PTRACE); |
| 1549 | if (new_arg0 & CLONE_VFORK) |
| 1550 | new_arg0 &= ~(unsigned long)(CLONE_VFORK | CLONE_VM); |
| 1551 | if (arg_setup(tcp, &state) < 0 |
| 1552 | || set_arg0(tcp, &state, new_arg0) < 0 |
| 1553 | || arg_finish_change(tcp, &state) < 0) |
Denys Vlasenko | 5ae2b7c | 2009-02-27 20:32:52 +0000 | [diff] [blame] | 1554 | return -1; |
Roland McGrath | c9dc3c1 | 2004-03-01 20:57:09 +0000 | [diff] [blame] | 1555 | tcp->inst[0] = tcp->u_arg[arg0_index]; |
| 1556 | tcp->inst[1] = tcp->u_arg[arg1_index]; |
Denys Vlasenko | 55980f5 | 2012-05-14 16:40:28 +0200 | [diff] [blame] | 1557 | tcp->flags |= TCB_BPTSET; |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1558 | return 0; |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1559 | } |
| 1560 | |
Dmitry V. Levin | 0c66151 | 2012-02-20 21:17:58 +0000 | [diff] [blame] | 1561 | fprintf(stderr, "PANIC: setbpt for syscall %ld on %u???\n", |
| 1562 | tcp->scno, tcp->pid); |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1563 | return -1; |
| 1564 | } |
| 1565 | |
| 1566 | int |
Denys Vlasenko | 1201426 | 2011-05-30 14:00:14 +0200 | [diff] [blame] | 1567 | clearbpt(struct tcb *tcp) |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1568 | { |
| 1569 | arg_setup_state state; |
Denys Vlasenko | b63256e | 2011-06-07 12:13:24 +0200 | [diff] [blame] | 1570 | if (arg_setup(tcp, &state) < 0 |
James Hogan | 05eb905 | 2012-11-29 17:37:37 +0000 | [diff] [blame] | 1571 | || change_syscall(tcp, &state, tcp->scno) < 0 |
Denys Vlasenko | b63256e | 2011-06-07 12:13:24 +0200 | [diff] [blame] | 1572 | || restore_arg0(tcp, &state, tcp->inst[0]) < 0 |
| 1573 | || restore_arg1(tcp, &state, tcp->inst[1]) < 0 |
| 1574 | || arg_finish_change(tcp, &state)) |
Denys Vlasenko | c133bf0 | 2011-06-23 21:57:54 +0200 | [diff] [blame] | 1575 | if (errno != ESRCH) |
| 1576 | return -1; |
Roland McGrath | d81f1d9 | 2003-01-09 06:53:34 +0000 | [diff] [blame] | 1577 | tcp->flags &= ~TCB_BPTSET; |
| 1578 | return 0; |
| 1579 | } |