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> |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 6 | * All rights reserved. |
| 7 | * |
| 8 | * Redistribution and use in source and binary forms, with or without |
| 9 | * modification, are permitted provided that the following conditions |
| 10 | * are met: |
| 11 | * 1. Redistributions of source code must retain the above copyright |
| 12 | * notice, this list of conditions and the following disclaimer. |
| 13 | * 2. Redistributions in binary form must reproduce the above copyright |
| 14 | * notice, this list of conditions and the following disclaimer in the |
| 15 | * documentation and/or other materials provided with the distribution. |
| 16 | * 3. The name of the author may not be used to endorse or promote products |
| 17 | * derived from this software without specific prior written permission. |
| 18 | * |
| 19 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 20 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 21 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 22 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 23 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 24 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 25 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 26 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 27 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 28 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 29 | */ |
| 30 | |
| 31 | #include "defs.h" |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 32 | #include <fcntl.h> |
Dmitry V. Levin | b2fa2be | 2014-11-21 20:46:16 +0000 | [diff] [blame] | 33 | #include <sys/uio.h> |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 34 | |
| 35 | int |
Dmitry V. Levin | 3138213 | 2011-03-04 05:08:02 +0300 | [diff] [blame] | 36 | sys_read(struct tcb *tcp) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 37 | { |
| 38 | if (entering(tcp)) { |
Dmitry V. Levin | 3138213 | 2011-03-04 05:08:02 +0300 | [diff] [blame] | 39 | printfd(tcp, tcp->u_arg[0]); |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 40 | tprints(", "); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 41 | } else { |
| 42 | if (syserror(tcp)) |
| 43 | tprintf("%#lx", tcp->u_arg[1]); |
| 44 | else |
| 45 | printstr(tcp, tcp->u_arg[1], tcp->u_rval); |
| 46 | tprintf(", %lu", tcp->u_arg[2]); |
| 47 | } |
| 48 | return 0; |
| 49 | } |
| 50 | |
| 51 | int |
Dmitry V. Levin | 3138213 | 2011-03-04 05:08:02 +0300 | [diff] [blame] | 52 | sys_write(struct tcb *tcp) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 53 | { |
| 54 | if (entering(tcp)) { |
Dmitry V. Levin | 3138213 | 2011-03-04 05:08:02 +0300 | [diff] [blame] | 55 | printfd(tcp, tcp->u_arg[0]); |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 56 | tprints(", "); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 57 | printstr(tcp, tcp->u_arg[1], tcp->u_arg[2]); |
| 58 | tprintf(", %lu", tcp->u_arg[2]); |
| 59 | } |
| 60 | return 0; |
| 61 | } |
| 62 | |
Denys Vlasenko | e0bc222 | 2012-04-28 14:26:18 +0200 | [diff] [blame] | 63 | /* |
| 64 | * data_size limits the cumulative size of printed data. |
| 65 | * Example: recvmsg returing a short read. |
| 66 | */ |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 67 | void |
Denys Vlasenko | e0bc222 | 2012-04-28 14:26:18 +0200 | [diff] [blame] | 68 | tprint_iov_upto(struct tcb *tcp, unsigned long len, unsigned long addr, int decode_iov, unsigned long data_size) |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 69 | { |
Denys Vlasenko | 8470374 | 2012-02-25 02:38:52 +0100 | [diff] [blame] | 70 | #if SUPPORTED_PERSONALITIES > 1 |
Dmitry V. Levin | 4ebb4e3 | 2006-12-13 17:08:08 +0000 | [diff] [blame] | 71 | union { |
| 72 | struct { u_int32_t base; u_int32_t len; } iov32; |
| 73 | struct { u_int64_t base; u_int64_t len; } iov64; |
| 74 | } iov; |
| 75 | #define sizeof_iov \ |
Denys Vlasenko | 9fd4f96 | 2012-03-19 09:36:42 +0100 | [diff] [blame] | 76 | (current_wordsize == 4 ? sizeof(iov.iov32) : sizeof(iov.iov64)) |
Dmitry V. Levin | 4ebb4e3 | 2006-12-13 17:08:08 +0000 | [diff] [blame] | 77 | #define iov_iov_base \ |
Denys Vlasenko | 9fd4f96 | 2012-03-19 09:36:42 +0100 | [diff] [blame] | 78 | (current_wordsize == 4 ? (uint64_t) iov.iov32.base : iov.iov64.base) |
Dmitry V. Levin | 4ebb4e3 | 2006-12-13 17:08:08 +0000 | [diff] [blame] | 79 | #define iov_iov_len \ |
Denys Vlasenko | 9fd4f96 | 2012-03-19 09:36:42 +0100 | [diff] [blame] | 80 | (current_wordsize == 4 ? (uint64_t) iov.iov32.len : iov.iov64.len) |
Dmitry V. Levin | 4ebb4e3 | 2006-12-13 17:08:08 +0000 | [diff] [blame] | 81 | #else |
Roland McGrath | aa524c8 | 2005-06-01 19:22:06 +0000 | [diff] [blame] | 82 | struct iovec iov; |
Dmitry V. Levin | 4ebb4e3 | 2006-12-13 17:08:08 +0000 | [diff] [blame] | 83 | #define sizeof_iov sizeof(iov) |
| 84 | #define iov_iov_base iov.iov_base |
| 85 | #define iov_iov_len iov.iov_len |
| 86 | #endif |
Roland McGrath | aa524c8 | 2005-06-01 19:22:06 +0000 | [diff] [blame] | 87 | unsigned long size, cur, end, abbrev_end; |
| 88 | int failed = 0; |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 89 | |
| 90 | if (!len) { |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 91 | tprints("[]"); |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 92 | return; |
| 93 | } |
Dmitry V. Levin | 4ebb4e3 | 2006-12-13 17:08:08 +0000 | [diff] [blame] | 94 | size = len * sizeof_iov; |
Roland McGrath | aa524c8 | 2005-06-01 19:22:06 +0000 | [diff] [blame] | 95 | end = addr + size; |
Dmitry V. Levin | 4ebb4e3 | 2006-12-13 17:08:08 +0000 | [diff] [blame] | 96 | if (!verbose(tcp) || size / sizeof_iov != len || end < addr) { |
Roland McGrath | aa524c8 | 2005-06-01 19:22:06 +0000 | [diff] [blame] | 97 | tprintf("%#lx", addr); |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 98 | return; |
| 99 | } |
Roland McGrath | aa524c8 | 2005-06-01 19:22:06 +0000 | [diff] [blame] | 100 | if (abbrev(tcp)) { |
Dmitry V. Levin | 4ebb4e3 | 2006-12-13 17:08:08 +0000 | [diff] [blame] | 101 | abbrev_end = addr + max_strlen * sizeof_iov; |
Roland McGrath | aa524c8 | 2005-06-01 19:22:06 +0000 | [diff] [blame] | 102 | if (abbrev_end < addr) |
| 103 | abbrev_end = end; |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 104 | } else { |
Roland McGrath | aa524c8 | 2005-06-01 19:22:06 +0000 | [diff] [blame] | 105 | abbrev_end = end; |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 106 | } |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 107 | tprints("["); |
Dmitry V. Levin | 4ebb4e3 | 2006-12-13 17:08:08 +0000 | [diff] [blame] | 108 | for (cur = addr; cur < end; cur += sizeof_iov) { |
Roland McGrath | aa524c8 | 2005-06-01 19:22:06 +0000 | [diff] [blame] | 109 | if (cur > addr) |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 110 | tprints(", "); |
Roland McGrath | aa524c8 | 2005-06-01 19:22:06 +0000 | [diff] [blame] | 111 | if (cur >= abbrev_end) { |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 112 | tprints("..."); |
Roland McGrath | aa524c8 | 2005-06-01 19:22:06 +0000 | [diff] [blame] | 113 | break; |
| 114 | } |
Dmitry V. Levin | 4ebb4e3 | 2006-12-13 17:08:08 +0000 | [diff] [blame] | 115 | if (umoven(tcp, cur, sizeof_iov, (char *) &iov) < 0) { |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 116 | tprints("?"); |
Roland McGrath | aa524c8 | 2005-06-01 19:22:06 +0000 | [diff] [blame] | 117 | failed = 1; |
| 118 | break; |
| 119 | } |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 120 | tprints("{"); |
Denys Vlasenko | e0bc222 | 2012-04-28 14:26:18 +0200 | [diff] [blame] | 121 | if (decode_iov) { |
| 122 | unsigned long len = iov_iov_len; |
| 123 | if (len > data_size) |
| 124 | len = data_size; |
| 125 | data_size -= len; |
| 126 | printstr(tcp, (long) iov_iov_base, len); |
| 127 | } else |
Dmitry V. Levin | 8884968 | 2011-06-13 22:58:44 +0000 | [diff] [blame] | 128 | tprintf("%#lx", (long) iov_iov_base); |
Dmitry V. Levin | 4ebb4e3 | 2006-12-13 17:08:08 +0000 | [diff] [blame] | 129 | tprintf(", %lu}", (unsigned long)iov_iov_len); |
Roland McGrath | aa524c8 | 2005-06-01 19:22:06 +0000 | [diff] [blame] | 130 | } |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 131 | tprints("]"); |
Roland McGrath | aa524c8 | 2005-06-01 19:22:06 +0000 | [diff] [blame] | 132 | if (failed) |
| 133 | tprintf(" %#lx", addr); |
Dmitry V. Levin | 4ebb4e3 | 2006-12-13 17:08:08 +0000 | [diff] [blame] | 134 | #undef sizeof_iov |
| 135 | #undef iov_iov_base |
| 136 | #undef iov_iov_len |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 137 | } |
| 138 | |
Denys Vlasenko | e0bc222 | 2012-04-28 14:26:18 +0200 | [diff] [blame] | 139 | void |
| 140 | tprint_iov(struct tcb *tcp, unsigned long len, unsigned long addr, int decode_iov) |
| 141 | { |
Dmitry V. Levin | 043b5f8 | 2012-05-01 20:30:02 +0000 | [diff] [blame] | 142 | tprint_iov_upto(tcp, len, addr, decode_iov, (unsigned long) -1L); |
Denys Vlasenko | e0bc222 | 2012-04-28 14:26:18 +0200 | [diff] [blame] | 143 | } |
| 144 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 145 | int |
Dmitry V. Levin | 3138213 | 2011-03-04 05:08:02 +0300 | [diff] [blame] | 146 | sys_readv(struct tcb *tcp) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 147 | { |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 148 | if (entering(tcp)) { |
Dmitry V. Levin | 3138213 | 2011-03-04 05:08:02 +0300 | [diff] [blame] | 149 | printfd(tcp, tcp->u_arg[0]); |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 150 | tprints(", "); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 151 | } else { |
| 152 | if (syserror(tcp)) { |
| 153 | tprintf("%#lx, %lu", |
| 154 | tcp->u_arg[1], tcp->u_arg[2]); |
| 155 | return 0; |
| 156 | } |
Dmitry V. Levin | 8884968 | 2011-06-13 22:58:44 +0000 | [diff] [blame] | 157 | tprint_iov(tcp, tcp->u_arg[2], tcp->u_arg[1], 1); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 158 | tprintf(", %lu", tcp->u_arg[2]); |
| 159 | } |
| 160 | return 0; |
| 161 | } |
| 162 | |
| 163 | int |
Dmitry V. Levin | 3138213 | 2011-03-04 05:08:02 +0300 | [diff] [blame] | 164 | sys_writev(struct tcb *tcp) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 165 | { |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 166 | if (entering(tcp)) { |
Dmitry V. Levin | 3138213 | 2011-03-04 05:08:02 +0300 | [diff] [blame] | 167 | printfd(tcp, tcp->u_arg[0]); |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 168 | tprints(", "); |
Dmitry V. Levin | 8884968 | 2011-06-13 22:58:44 +0000 | [diff] [blame] | 169 | tprint_iov(tcp, tcp->u_arg[2], tcp->u_arg[1], 1); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 170 | tprintf(", %lu", tcp->u_arg[2]); |
| 171 | } |
| 172 | return 0; |
| 173 | } |
| 174 | |
Roland McGrath | c0f8bbd | 2003-08-21 09:58:00 +0000 | [diff] [blame] | 175 | /* The SH4 ABI does allow long longs in odd-numbered registers, but |
| 176 | does not allow them to be split between registers and memory - and |
| 177 | there are only four argument registers for normal functions. As a |
| 178 | result pread takes an extra padding argument before the offset. This |
| 179 | was changed late in the 2.4 series (around 2.4.20). */ |
| 180 | #if defined(SH) |
| 181 | #define PREAD_OFFSET_ARG 4 |
| 182 | #else |
| 183 | #define PREAD_OFFSET_ARG 3 |
| 184 | #endif |
| 185 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 186 | int |
Dmitry V. Levin | 3138213 | 2011-03-04 05:08:02 +0300 | [diff] [blame] | 187 | sys_pread(struct tcb *tcp) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 188 | { |
| 189 | if (entering(tcp)) { |
Dmitry V. Levin | 3138213 | 2011-03-04 05:08:02 +0300 | [diff] [blame] | 190 | printfd(tcp, tcp->u_arg[0]); |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 191 | tprints(", "); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 192 | } else { |
| 193 | if (syserror(tcp)) |
| 194 | tprintf("%#lx", tcp->u_arg[1]); |
| 195 | else |
| 196 | printstr(tcp, tcp->u_arg[1], tcp->u_rval); |
Andreas Schwab | b5600fc | 2009-11-04 17:08:34 +0100 | [diff] [blame] | 197 | tprintf(", %lu, ", tcp->u_arg[2]); |
Dmitry V. Levin | 3c49b02 | 2014-08-07 00:07:28 +0000 | [diff] [blame] | 198 | printllval(tcp, "%llu", PREAD_OFFSET_ARG); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 199 | } |
| 200 | return 0; |
| 201 | } |
| 202 | |
| 203 | int |
Dmitry V. Levin | 3138213 | 2011-03-04 05:08:02 +0300 | [diff] [blame] | 204 | sys_pwrite(struct tcb *tcp) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 205 | { |
| 206 | if (entering(tcp)) { |
Dmitry V. Levin | 3138213 | 2011-03-04 05:08:02 +0300 | [diff] [blame] | 207 | printfd(tcp, tcp->u_arg[0]); |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 208 | tprints(", "); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 209 | printstr(tcp, tcp->u_arg[1], tcp->u_arg[2]); |
Andreas Schwab | b5600fc | 2009-11-04 17:08:34 +0100 | [diff] [blame] | 210 | tprintf(", %lu, ", tcp->u_arg[2]); |
Dmitry V. Levin | 3c49b02 | 2014-08-07 00:07:28 +0000 | [diff] [blame] | 211 | printllval(tcp, "%llu", PREAD_OFFSET_ARG); |
Wichert Akkerman | 2e2553a | 1999-05-09 00:29:58 +0000 | [diff] [blame] | 212 | } |
| 213 | return 0; |
| 214 | } |
| 215 | |
Dmitry V. Levin | 3c49b02 | 2014-08-07 00:07:28 +0000 | [diff] [blame] | 216 | static void |
| 217 | print_llu_from_low_high_val(struct tcb *tcp, int arg) |
| 218 | { |
| 219 | #if SIZEOF_LONG == SIZEOF_LONG_LONG |
Dmitry V. Levin | 5de5a7a | 2015-01-23 20:04:37 +0000 | [diff] [blame] | 220 | # if SUPPORTED_PERSONALITIES > 1 |
| 221 | if (current_wordsize == sizeof(long)) |
| 222 | # endif |
| 223 | tprintf("%lu", (unsigned long) tcp->u_arg[arg]); |
| 224 | # if SUPPORTED_PERSONALITIES > 1 |
| 225 | else |
| 226 | tprintf("%lu", |
| 227 | ((unsigned long) tcp->u_arg[arg + 1] << current_wordsize * 8) |
| 228 | | (unsigned long) tcp->u_arg[arg]); |
| 229 | # endif |
Dmitry V. Levin | 3c49b02 | 2014-08-07 00:07:28 +0000 | [diff] [blame] | 230 | #elif defined(LINUX_MIPSN32) |
| 231 | tprintf("%llu", (unsigned long long) tcp->ext_arg[arg]); |
| 232 | #else |
| 233 | # ifdef X32 |
| 234 | if (current_personality == 0) |
| 235 | tprintf("%llu", (unsigned long long) tcp->ext_arg[arg]); |
| 236 | else |
| 237 | # endif |
| 238 | tprintf("%llu", |
Dmitry V. Levin | 20b84a6 | 2014-08-07 11:42:46 +0000 | [diff] [blame] | 239 | ((unsigned long long) (unsigned long) tcp->u_arg[arg + 1] << sizeof(long) * 8) |
| 240 | | (unsigned long long) (unsigned long) tcp->u_arg[arg]); |
Dmitry V. Levin | 3c49b02 | 2014-08-07 00:07:28 +0000 | [diff] [blame] | 241 | #endif |
| 242 | } |
| 243 | |
Damir Shayhutdinov | 3087dd6 | 2011-05-12 16:57:40 +0400 | [diff] [blame] | 244 | int |
| 245 | sys_preadv(struct tcb *tcp) |
| 246 | { |
| 247 | if (entering(tcp)) { |
| 248 | printfd(tcp, tcp->u_arg[0]); |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 249 | tprints(", "); |
Damir Shayhutdinov | 3087dd6 | 2011-05-12 16:57:40 +0400 | [diff] [blame] | 250 | } else { |
| 251 | if (syserror(tcp)) { |
| 252 | tprintf("%#lx, %lu", tcp->u_arg[1], tcp->u_arg[2]); |
| 253 | return 0; |
| 254 | } |
Dmitry V. Levin | 8884968 | 2011-06-13 22:58:44 +0000 | [diff] [blame] | 255 | tprint_iov(tcp, tcp->u_arg[2], tcp->u_arg[1], 1); |
Damir Shayhutdinov | 3087dd6 | 2011-05-12 16:57:40 +0400 | [diff] [blame] | 256 | tprintf(", %lu, ", tcp->u_arg[2]); |
Dmitry V. Levin | 3c49b02 | 2014-08-07 00:07:28 +0000 | [diff] [blame] | 257 | print_llu_from_low_high_val(tcp, 3); |
Damir Shayhutdinov | 3087dd6 | 2011-05-12 16:57:40 +0400 | [diff] [blame] | 258 | } |
| 259 | return 0; |
| 260 | } |
| 261 | |
| 262 | int |
| 263 | sys_pwritev(struct tcb *tcp) |
| 264 | { |
| 265 | if (entering(tcp)) { |
| 266 | printfd(tcp, tcp->u_arg[0]); |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 267 | tprints(", "); |
Dmitry V. Levin | 8884968 | 2011-06-13 22:58:44 +0000 | [diff] [blame] | 268 | tprint_iov(tcp, tcp->u_arg[2], tcp->u_arg[1], 1); |
Damir Shayhutdinov | 3087dd6 | 2011-05-12 16:57:40 +0400 | [diff] [blame] | 269 | tprintf(", %lu, ", tcp->u_arg[2]); |
Dmitry V. Levin | 3c49b02 | 2014-08-07 00:07:28 +0000 | [diff] [blame] | 270 | print_llu_from_low_high_val(tcp, 3); |
Damir Shayhutdinov | 3087dd6 | 2011-05-12 16:57:40 +0400 | [diff] [blame] | 271 | } |
| 272 | return 0; |
| 273 | } |
Damir Shayhutdinov | 3087dd6 | 2011-05-12 16:57:40 +0400 | [diff] [blame] | 274 | |
Dmitry V. Levin | 2c42f32 | 2013-03-20 09:48:44 +0000 | [diff] [blame] | 275 | static void |
| 276 | print_off_t(struct tcb *tcp, long addr) |
| 277 | { |
| 278 | unsigned long offset; |
| 279 | |
| 280 | if (!addr) { |
| 281 | tprints("NULL"); |
| 282 | return; |
| 283 | } |
| 284 | |
| 285 | #if SUPPORTED_PERSONALITIES > 1 && SIZEOF_LONG > 4 |
| 286 | if (current_wordsize == 4) { |
| 287 | uint32_t off; |
| 288 | |
| 289 | if (umove(tcp, addr, &off) < 0) |
| 290 | tprintf("%#lx", addr); |
| 291 | else |
| 292 | tprintf("[%u]", off); |
| 293 | } else |
| 294 | #endif |
| 295 | if (umove(tcp, addr, &offset) < 0) |
| 296 | tprintf("%#lx", addr); |
| 297 | else |
| 298 | tprintf("[%lu]", offset); |
| 299 | } |
| 300 | |
Wichert Akkerman | 2e2553a | 1999-05-09 00:29:58 +0000 | [diff] [blame] | 301 | int |
Dmitry V. Levin | 3138213 | 2011-03-04 05:08:02 +0300 | [diff] [blame] | 302 | sys_sendfile(struct tcb *tcp) |
Wichert Akkerman | 2e2553a | 1999-05-09 00:29:58 +0000 | [diff] [blame] | 303 | { |
| 304 | if (entering(tcp)) { |
Dmitry V. Levin | 3138213 | 2011-03-04 05:08:02 +0300 | [diff] [blame] | 305 | printfd(tcp, tcp->u_arg[0]); |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 306 | tprints(", "); |
Dmitry V. Levin | 3138213 | 2011-03-04 05:08:02 +0300 | [diff] [blame] | 307 | printfd(tcp, tcp->u_arg[1]); |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 308 | tprints(", "); |
Dmitry V. Levin | 2c42f32 | 2013-03-20 09:48:44 +0000 | [diff] [blame] | 309 | print_off_t(tcp, tcp->u_arg[2]); |
Wichert Akkerman | 2e2553a | 1999-05-09 00:29:58 +0000 | [diff] [blame] | 310 | tprintf(", %lu", tcp->u_arg[3]); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 311 | } |
| 312 | return 0; |
| 313 | } |
| 314 | |
Mike Frysinger | 0cbed35 | 2012-04-04 22:22:01 -0400 | [diff] [blame] | 315 | void |
Dmitry V. Levin | d99e48c | 2011-10-11 17:07:05 +0000 | [diff] [blame] | 316 | print_loff_t(struct tcb *tcp, long addr) |
| 317 | { |
| 318 | loff_t offset; |
| 319 | |
| 320 | if (!addr) |
| 321 | tprints("NULL"); |
| 322 | else if (umove(tcp, addr, &offset) < 0) |
| 323 | tprintf("%#lx", addr); |
| 324 | else |
| 325 | tprintf("[%llu]", (unsigned long long int) offset); |
| 326 | } |
| 327 | |
Roland McGrath | 186c5ac | 2002-12-15 23:58:23 +0000 | [diff] [blame] | 328 | int |
Dmitry V. Levin | 3138213 | 2011-03-04 05:08:02 +0300 | [diff] [blame] | 329 | sys_sendfile64(struct tcb *tcp) |
Roland McGrath | 186c5ac | 2002-12-15 23:58:23 +0000 | [diff] [blame] | 330 | { |
| 331 | if (entering(tcp)) { |
Dmitry V. Levin | 3138213 | 2011-03-04 05:08:02 +0300 | [diff] [blame] | 332 | printfd(tcp, tcp->u_arg[0]); |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 333 | tprints(", "); |
Dmitry V. Levin | 3138213 | 2011-03-04 05:08:02 +0300 | [diff] [blame] | 334 | printfd(tcp, tcp->u_arg[1]); |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 335 | tprints(", "); |
Dmitry V. Levin | d99e48c | 2011-10-11 17:07:05 +0000 | [diff] [blame] | 336 | print_loff_t(tcp, tcp->u_arg[2]); |
Roland McGrath | 186c5ac | 2002-12-15 23:58:23 +0000 | [diff] [blame] | 337 | tprintf(", %lu", tcp->u_arg[3]); |
| 338 | } |
| 339 | return 0; |
| 340 | } |
| 341 | |
Dmitry V. Levin | 0ed617b | 2014-04-25 23:30:54 +0000 | [diff] [blame] | 342 | #include "xlat/splice_flags.h" |
Dmitry V. Levin | d99e48c | 2011-10-11 17:07:05 +0000 | [diff] [blame] | 343 | |
| 344 | int |
| 345 | sys_tee(struct tcb *tcp) |
| 346 | { |
| 347 | if (entering(tcp)) { |
| 348 | /* int fd_in */ |
| 349 | printfd(tcp, tcp->u_arg[0]); |
| 350 | tprints(", "); |
| 351 | /* int fd_out */ |
| 352 | printfd(tcp, tcp->u_arg[1]); |
| 353 | tprints(", "); |
| 354 | /* size_t len */ |
| 355 | tprintf("%lu, ", tcp->u_arg[2]); |
| 356 | /* unsigned int flags */ |
| 357 | printflags(splice_flags, tcp->u_arg[3], "SPLICE_F_???"); |
| 358 | } |
| 359 | return 0; |
| 360 | } |
| 361 | |
| 362 | int |
| 363 | sys_splice(struct tcb *tcp) |
| 364 | { |
| 365 | if (entering(tcp)) { |
| 366 | /* int fd_in */ |
| 367 | printfd(tcp, tcp->u_arg[0]); |
| 368 | tprints(", "); |
| 369 | /* loff_t *off_in */ |
| 370 | print_loff_t(tcp, tcp->u_arg[1]); |
| 371 | tprints(", "); |
| 372 | /* int fd_out */ |
| 373 | printfd(tcp, tcp->u_arg[2]); |
| 374 | tprints(", "); |
| 375 | /* loff_t *off_out */ |
| 376 | print_loff_t(tcp, tcp->u_arg[3]); |
| 377 | tprints(", "); |
| 378 | /* size_t len */ |
| 379 | tprintf("%lu, ", tcp->u_arg[4]); |
| 380 | /* unsigned int flags */ |
| 381 | printflags(splice_flags, tcp->u_arg[5], "SPLICE_F_???"); |
| 382 | } |
| 383 | return 0; |
| 384 | } |
| 385 | |
| 386 | int |
| 387 | sys_vmsplice(struct tcb *tcp) |
| 388 | { |
| 389 | if (entering(tcp)) { |
| 390 | /* int fd */ |
| 391 | printfd(tcp, tcp->u_arg[0]); |
| 392 | tprints(", "); |
| 393 | /* const struct iovec *iov, unsigned long nr_segs */ |
| 394 | tprint_iov(tcp, tcp->u_arg[2], tcp->u_arg[1], 1); |
Dmitry V. Levin | 0bfd744 | 2012-03-10 14:03:25 +0000 | [diff] [blame] | 395 | tprintf(", %lu, ", tcp->u_arg[2]); |
Dmitry V. Levin | d99e48c | 2011-10-11 17:07:05 +0000 | [diff] [blame] | 396 | /* unsigned int flags */ |
| 397 | printflags(splice_flags, tcp->u_arg[3], "SPLICE_F_???"); |
| 398 | } |
| 399 | return 0; |
| 400 | } |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 401 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 402 | int |
Dmitry V. Levin | 3138213 | 2011-03-04 05:08:02 +0300 | [diff] [blame] | 403 | sys_ioctl(struct tcb *tcp) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 404 | { |
Denys Vlasenko | a9fe13c | 2013-02-22 13:26:10 +0100 | [diff] [blame] | 405 | const struct_ioctlent *iop; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 406 | |
| 407 | if (entering(tcp)) { |
Dmitry V. Levin | 3138213 | 2011-03-04 05:08:02 +0300 | [diff] [blame] | 408 | printfd(tcp, tcp->u_arg[0]); |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 409 | tprints(", "); |
Gabriel Laskar | 6f9a01c | 2015-01-21 23:35:27 +0100 | [diff] [blame] | 410 | if (!ioctl_decode_command_number(tcp->u_arg[1])) { |
| 411 | iop = ioctl_lookup(tcp->u_arg[1]); |
| 412 | if (iop) { |
| 413 | tprints(iop->symbol); |
| 414 | while ((iop = ioctl_next_match(iop))) |
| 415 | tprintf(" or %s", iop->symbol); |
| 416 | } else { |
| 417 | ioctl_print_code(tcp->u_arg[1]); |
| 418 | } |
| 419 | } |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 420 | ioctl_decode(tcp, tcp->u_arg[1], tcp->u_arg[2]); |
| 421 | } |
| 422 | else { |
Denys Vlasenko | 5d64581 | 2011-08-20 12:48:18 +0200 | [diff] [blame] | 423 | int ret = ioctl_decode(tcp, tcp->u_arg[1], tcp->u_arg[2]); |
| 424 | if (!ret) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 425 | tprintf(", %#lx", tcp->u_arg[2]); |
John Hughes | 38ae88d | 2002-05-23 11:48:58 +0000 | [diff] [blame] | 426 | else |
| 427 | return ret - 1; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 428 | } |
| 429 | return 0; |
| 430 | } |