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 | |
Dmitry V. Levin | a0bd374 | 2015-04-07 01:36:50 +0000 | [diff] [blame] | 35 | SYS_FUNC(read) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 36 | { |
| 37 | if (entering(tcp)) { |
Dmitry V. Levin | 3138213 | 2011-03-04 05:08:02 +0300 | [diff] [blame] | 38 | printfd(tcp, tcp->u_arg[0]); |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 39 | tprints(", "); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 40 | } else { |
| 41 | if (syserror(tcp)) |
| 42 | tprintf("%#lx", tcp->u_arg[1]); |
| 43 | else |
| 44 | printstr(tcp, tcp->u_arg[1], tcp->u_rval); |
| 45 | tprintf(", %lu", tcp->u_arg[2]); |
| 46 | } |
| 47 | return 0; |
| 48 | } |
| 49 | |
Dmitry V. Levin | a0bd374 | 2015-04-07 01:36:50 +0000 | [diff] [blame] | 50 | SYS_FUNC(write) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 51 | { |
| 52 | if (entering(tcp)) { |
Dmitry V. Levin | 3138213 | 2011-03-04 05:08:02 +0300 | [diff] [blame] | 53 | printfd(tcp, tcp->u_arg[0]); |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 54 | tprints(", "); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 55 | printstr(tcp, tcp->u_arg[1], tcp->u_arg[2]); |
| 56 | tprintf(", %lu", tcp->u_arg[2]); |
| 57 | } |
| 58 | return 0; |
| 59 | } |
| 60 | |
Denys Vlasenko | e0bc222 | 2012-04-28 14:26:18 +0200 | [diff] [blame] | 61 | /* |
| 62 | * data_size limits the cumulative size of printed data. |
| 63 | * Example: recvmsg returing a short read. |
| 64 | */ |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 65 | void |
Denys Vlasenko | e0bc222 | 2012-04-28 14:26:18 +0200 | [diff] [blame] | 66 | 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] | 67 | { |
Denys Vlasenko | 8470374 | 2012-02-25 02:38:52 +0100 | [diff] [blame] | 68 | #if SUPPORTED_PERSONALITIES > 1 |
Dmitry V. Levin | 4ebb4e3 | 2006-12-13 17:08:08 +0000 | [diff] [blame] | 69 | union { |
| 70 | struct { u_int32_t base; u_int32_t len; } iov32; |
| 71 | struct { u_int64_t base; u_int64_t len; } iov64; |
| 72 | } iov; |
| 73 | #define sizeof_iov \ |
Denys Vlasenko | 9fd4f96 | 2012-03-19 09:36:42 +0100 | [diff] [blame] | 74 | (current_wordsize == 4 ? sizeof(iov.iov32) : sizeof(iov.iov64)) |
Dmitry V. Levin | 4ebb4e3 | 2006-12-13 17:08:08 +0000 | [diff] [blame] | 75 | #define iov_iov_base \ |
Denys Vlasenko | 9fd4f96 | 2012-03-19 09:36:42 +0100 | [diff] [blame] | 76 | (current_wordsize == 4 ? (uint64_t) iov.iov32.base : iov.iov64.base) |
Dmitry V. Levin | 4ebb4e3 | 2006-12-13 17:08:08 +0000 | [diff] [blame] | 77 | #define iov_iov_len \ |
Denys Vlasenko | 9fd4f96 | 2012-03-19 09:36:42 +0100 | [diff] [blame] | 78 | (current_wordsize == 4 ? (uint64_t) iov.iov32.len : iov.iov64.len) |
Dmitry V. Levin | 4ebb4e3 | 2006-12-13 17:08:08 +0000 | [diff] [blame] | 79 | #else |
Roland McGrath | aa524c8 | 2005-06-01 19:22:06 +0000 | [diff] [blame] | 80 | struct iovec iov; |
Dmitry V. Levin | 4ebb4e3 | 2006-12-13 17:08:08 +0000 | [diff] [blame] | 81 | #define sizeof_iov sizeof(iov) |
| 82 | #define iov_iov_base iov.iov_base |
| 83 | #define iov_iov_len iov.iov_len |
| 84 | #endif |
Roland McGrath | aa524c8 | 2005-06-01 19:22:06 +0000 | [diff] [blame] | 85 | unsigned long size, cur, end, abbrev_end; |
| 86 | int failed = 0; |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 87 | |
| 88 | if (!len) { |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 89 | tprints("[]"); |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 90 | return; |
| 91 | } |
Dmitry V. Levin | 4ebb4e3 | 2006-12-13 17:08:08 +0000 | [diff] [blame] | 92 | size = len * sizeof_iov; |
Roland McGrath | aa524c8 | 2005-06-01 19:22:06 +0000 | [diff] [blame] | 93 | end = addr + size; |
Dmitry V. Levin | 4ebb4e3 | 2006-12-13 17:08:08 +0000 | [diff] [blame] | 94 | if (!verbose(tcp) || size / sizeof_iov != len || end < addr) { |
Roland McGrath | aa524c8 | 2005-06-01 19:22:06 +0000 | [diff] [blame] | 95 | tprintf("%#lx", addr); |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 96 | return; |
| 97 | } |
Roland McGrath | aa524c8 | 2005-06-01 19:22:06 +0000 | [diff] [blame] | 98 | if (abbrev(tcp)) { |
Dmitry V. Levin | 4ebb4e3 | 2006-12-13 17:08:08 +0000 | [diff] [blame] | 99 | abbrev_end = addr + max_strlen * sizeof_iov; |
Roland McGrath | aa524c8 | 2005-06-01 19:22:06 +0000 | [diff] [blame] | 100 | if (abbrev_end < addr) |
| 101 | abbrev_end = end; |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 102 | } else { |
Roland McGrath | aa524c8 | 2005-06-01 19:22:06 +0000 | [diff] [blame] | 103 | abbrev_end = end; |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 104 | } |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 105 | tprints("["); |
Dmitry V. Levin | 4ebb4e3 | 2006-12-13 17:08:08 +0000 | [diff] [blame] | 106 | for (cur = addr; cur < end; cur += sizeof_iov) { |
Roland McGrath | aa524c8 | 2005-06-01 19:22:06 +0000 | [diff] [blame] | 107 | if (cur > addr) |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 108 | tprints(", "); |
Roland McGrath | aa524c8 | 2005-06-01 19:22:06 +0000 | [diff] [blame] | 109 | if (cur >= abbrev_end) { |
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 | break; |
| 112 | } |
Denys Vlasenko | 7e69ed9 | 2015-03-21 19:50:53 +0100 | [diff] [blame] | 113 | if (umoven(tcp, cur, sizeof_iov, &iov) < 0) { |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 114 | tprints("?"); |
Roland McGrath | aa524c8 | 2005-06-01 19:22:06 +0000 | [diff] [blame] | 115 | failed = 1; |
| 116 | break; |
| 117 | } |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 118 | tprints("{"); |
Denys Vlasenko | e0bc222 | 2012-04-28 14:26:18 +0200 | [diff] [blame] | 119 | if (decode_iov) { |
| 120 | unsigned long len = iov_iov_len; |
| 121 | if (len > data_size) |
| 122 | len = data_size; |
| 123 | data_size -= len; |
| 124 | printstr(tcp, (long) iov_iov_base, len); |
| 125 | } else |
Dmitry V. Levin | 8884968 | 2011-06-13 22:58:44 +0000 | [diff] [blame] | 126 | tprintf("%#lx", (long) iov_iov_base); |
Dmitry V. Levin | 4ebb4e3 | 2006-12-13 17:08:08 +0000 | [diff] [blame] | 127 | tprintf(", %lu}", (unsigned long)iov_iov_len); |
Roland McGrath | aa524c8 | 2005-06-01 19:22:06 +0000 | [diff] [blame] | 128 | } |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 129 | tprints("]"); |
Roland McGrath | aa524c8 | 2005-06-01 19:22:06 +0000 | [diff] [blame] | 130 | if (failed) |
| 131 | tprintf(" %#lx", addr); |
Dmitry V. Levin | 4ebb4e3 | 2006-12-13 17:08:08 +0000 | [diff] [blame] | 132 | #undef sizeof_iov |
| 133 | #undef iov_iov_base |
| 134 | #undef iov_iov_len |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 135 | } |
| 136 | |
Denys Vlasenko | e0bc222 | 2012-04-28 14:26:18 +0200 | [diff] [blame] | 137 | void |
| 138 | tprint_iov(struct tcb *tcp, unsigned long len, unsigned long addr, int decode_iov) |
| 139 | { |
Dmitry V. Levin | 043b5f8 | 2012-05-01 20:30:02 +0000 | [diff] [blame] | 140 | tprint_iov_upto(tcp, len, addr, decode_iov, (unsigned long) -1L); |
Denys Vlasenko | e0bc222 | 2012-04-28 14:26:18 +0200 | [diff] [blame] | 141 | } |
| 142 | |
Dmitry V. Levin | a0bd374 | 2015-04-07 01:36:50 +0000 | [diff] [blame] | 143 | SYS_FUNC(readv) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 144 | { |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 145 | if (entering(tcp)) { |
Dmitry V. Levin | 3138213 | 2011-03-04 05:08:02 +0300 | [diff] [blame] | 146 | printfd(tcp, tcp->u_arg[0]); |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 147 | tprints(", "); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 148 | } else { |
| 149 | if (syserror(tcp)) { |
| 150 | tprintf("%#lx, %lu", |
| 151 | tcp->u_arg[1], tcp->u_arg[2]); |
| 152 | return 0; |
| 153 | } |
Dmitry V. Levin | 8884968 | 2011-06-13 22:58:44 +0000 | [diff] [blame] | 154 | tprint_iov(tcp, tcp->u_arg[2], tcp->u_arg[1], 1); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 155 | tprintf(", %lu", tcp->u_arg[2]); |
| 156 | } |
| 157 | return 0; |
| 158 | } |
| 159 | |
Dmitry V. Levin | a0bd374 | 2015-04-07 01:36:50 +0000 | [diff] [blame] | 160 | SYS_FUNC(writev) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 161 | { |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 162 | if (entering(tcp)) { |
Dmitry V. Levin | 3138213 | 2011-03-04 05:08:02 +0300 | [diff] [blame] | 163 | printfd(tcp, tcp->u_arg[0]); |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 164 | tprints(", "); |
Dmitry V. Levin | 8884968 | 2011-06-13 22:58:44 +0000 | [diff] [blame] | 165 | tprint_iov(tcp, tcp->u_arg[2], tcp->u_arg[1], 1); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 166 | tprintf(", %lu", tcp->u_arg[2]); |
| 167 | } |
| 168 | return 0; |
| 169 | } |
| 170 | |
Roland McGrath | c0f8bbd | 2003-08-21 09:58:00 +0000 | [diff] [blame] | 171 | /* The SH4 ABI does allow long longs in odd-numbered registers, but |
| 172 | does not allow them to be split between registers and memory - and |
| 173 | there are only four argument registers for normal functions. As a |
| 174 | result pread takes an extra padding argument before the offset. This |
| 175 | was changed late in the 2.4 series (around 2.4.20). */ |
| 176 | #if defined(SH) |
| 177 | #define PREAD_OFFSET_ARG 4 |
| 178 | #else |
| 179 | #define PREAD_OFFSET_ARG 3 |
| 180 | #endif |
| 181 | |
Dmitry V. Levin | a0bd374 | 2015-04-07 01:36:50 +0000 | [diff] [blame] | 182 | SYS_FUNC(pread) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 183 | { |
| 184 | if (entering(tcp)) { |
Dmitry V. Levin | 3138213 | 2011-03-04 05:08:02 +0300 | [diff] [blame] | 185 | printfd(tcp, tcp->u_arg[0]); |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 186 | tprints(", "); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 187 | } else { |
| 188 | if (syserror(tcp)) |
| 189 | tprintf("%#lx", tcp->u_arg[1]); |
| 190 | else |
| 191 | printstr(tcp, tcp->u_arg[1], tcp->u_rval); |
Andreas Schwab | b5600fc | 2009-11-04 17:08:34 +0100 | [diff] [blame] | 192 | tprintf(", %lu, ", tcp->u_arg[2]); |
Dmitry V. Levin | 3c49b02 | 2014-08-07 00:07:28 +0000 | [diff] [blame] | 193 | printllval(tcp, "%llu", PREAD_OFFSET_ARG); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 194 | } |
| 195 | return 0; |
| 196 | } |
| 197 | |
Dmitry V. Levin | a0bd374 | 2015-04-07 01:36:50 +0000 | [diff] [blame] | 198 | SYS_FUNC(pwrite) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 199 | { |
| 200 | if (entering(tcp)) { |
Dmitry V. Levin | 3138213 | 2011-03-04 05:08:02 +0300 | [diff] [blame] | 201 | printfd(tcp, tcp->u_arg[0]); |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 202 | tprints(", "); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 203 | printstr(tcp, tcp->u_arg[1], tcp->u_arg[2]); |
Andreas Schwab | b5600fc | 2009-11-04 17:08:34 +0100 | [diff] [blame] | 204 | tprintf(", %lu, ", tcp->u_arg[2]); |
Dmitry V. Levin | 3c49b02 | 2014-08-07 00:07:28 +0000 | [diff] [blame] | 205 | printllval(tcp, "%llu", PREAD_OFFSET_ARG); |
Wichert Akkerman | 2e2553a | 1999-05-09 00:29:58 +0000 | [diff] [blame] | 206 | } |
| 207 | return 0; |
| 208 | } |
| 209 | |
Dmitry V. Levin | 3c49b02 | 2014-08-07 00:07:28 +0000 | [diff] [blame] | 210 | static void |
| 211 | print_llu_from_low_high_val(struct tcb *tcp, int arg) |
| 212 | { |
| 213 | #if SIZEOF_LONG == SIZEOF_LONG_LONG |
Dmitry V. Levin | 5de5a7a | 2015-01-23 20:04:37 +0000 | [diff] [blame] | 214 | # if SUPPORTED_PERSONALITIES > 1 |
| 215 | if (current_wordsize == sizeof(long)) |
| 216 | # endif |
| 217 | tprintf("%lu", (unsigned long) tcp->u_arg[arg]); |
| 218 | # if SUPPORTED_PERSONALITIES > 1 |
| 219 | else |
| 220 | tprintf("%lu", |
| 221 | ((unsigned long) tcp->u_arg[arg + 1] << current_wordsize * 8) |
| 222 | | (unsigned long) tcp->u_arg[arg]); |
| 223 | # endif |
Dmitry V. Levin | 3c49b02 | 2014-08-07 00:07:28 +0000 | [diff] [blame] | 224 | #else |
| 225 | # ifdef X32 |
| 226 | if (current_personality == 0) |
| 227 | tprintf("%llu", (unsigned long long) tcp->ext_arg[arg]); |
| 228 | else |
| 229 | # endif |
| 230 | tprintf("%llu", |
Dmitry V. Levin | 20b84a6 | 2014-08-07 11:42:46 +0000 | [diff] [blame] | 231 | ((unsigned long long) (unsigned long) tcp->u_arg[arg + 1] << sizeof(long) * 8) |
| 232 | | (unsigned long long) (unsigned long) tcp->u_arg[arg]); |
Dmitry V. Levin | 3c49b02 | 2014-08-07 00:07:28 +0000 | [diff] [blame] | 233 | #endif |
| 234 | } |
| 235 | |
Dmitry V. Levin | a0bd374 | 2015-04-07 01:36:50 +0000 | [diff] [blame] | 236 | SYS_FUNC(preadv) |
Damir Shayhutdinov | 3087dd6 | 2011-05-12 16:57:40 +0400 | [diff] [blame] | 237 | { |
| 238 | if (entering(tcp)) { |
| 239 | printfd(tcp, tcp->u_arg[0]); |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 240 | tprints(", "); |
Damir Shayhutdinov | 3087dd6 | 2011-05-12 16:57:40 +0400 | [diff] [blame] | 241 | } else { |
| 242 | if (syserror(tcp)) { |
| 243 | tprintf("%#lx, %lu", tcp->u_arg[1], tcp->u_arg[2]); |
| 244 | return 0; |
| 245 | } |
Dmitry V. Levin | 8884968 | 2011-06-13 22:58:44 +0000 | [diff] [blame] | 246 | tprint_iov(tcp, tcp->u_arg[2], tcp->u_arg[1], 1); |
Damir Shayhutdinov | 3087dd6 | 2011-05-12 16:57:40 +0400 | [diff] [blame] | 247 | tprintf(", %lu, ", tcp->u_arg[2]); |
Dmitry V. Levin | 3c49b02 | 2014-08-07 00:07:28 +0000 | [diff] [blame] | 248 | print_llu_from_low_high_val(tcp, 3); |
Damir Shayhutdinov | 3087dd6 | 2011-05-12 16:57:40 +0400 | [diff] [blame] | 249 | } |
| 250 | return 0; |
| 251 | } |
| 252 | |
Dmitry V. Levin | a0bd374 | 2015-04-07 01:36:50 +0000 | [diff] [blame] | 253 | SYS_FUNC(pwritev) |
Damir Shayhutdinov | 3087dd6 | 2011-05-12 16:57:40 +0400 | [diff] [blame] | 254 | { |
| 255 | if (entering(tcp)) { |
| 256 | printfd(tcp, tcp->u_arg[0]); |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 257 | tprints(", "); |
Dmitry V. Levin | 8884968 | 2011-06-13 22:58:44 +0000 | [diff] [blame] | 258 | tprint_iov(tcp, tcp->u_arg[2], tcp->u_arg[1], 1); |
Damir Shayhutdinov | 3087dd6 | 2011-05-12 16:57:40 +0400 | [diff] [blame] | 259 | tprintf(", %lu, ", tcp->u_arg[2]); |
Dmitry V. Levin | 3c49b02 | 2014-08-07 00:07:28 +0000 | [diff] [blame] | 260 | print_llu_from_low_high_val(tcp, 3); |
Damir Shayhutdinov | 3087dd6 | 2011-05-12 16:57:40 +0400 | [diff] [blame] | 261 | } |
| 262 | return 0; |
| 263 | } |
Damir Shayhutdinov | 3087dd6 | 2011-05-12 16:57:40 +0400 | [diff] [blame] | 264 | |
Dmitry V. Levin | 2c42f32 | 2013-03-20 09:48:44 +0000 | [diff] [blame] | 265 | static void |
| 266 | print_off_t(struct tcb *tcp, long addr) |
| 267 | { |
| 268 | unsigned long offset; |
| 269 | |
| 270 | if (!addr) { |
| 271 | tprints("NULL"); |
| 272 | return; |
| 273 | } |
| 274 | |
| 275 | #if SUPPORTED_PERSONALITIES > 1 && SIZEOF_LONG > 4 |
| 276 | if (current_wordsize == 4) { |
| 277 | uint32_t off; |
| 278 | |
| 279 | if (umove(tcp, addr, &off) < 0) |
| 280 | tprintf("%#lx", addr); |
| 281 | else |
| 282 | tprintf("[%u]", off); |
| 283 | } else |
| 284 | #endif |
| 285 | if (umove(tcp, addr, &offset) < 0) |
| 286 | tprintf("%#lx", addr); |
| 287 | else |
| 288 | tprintf("[%lu]", offset); |
| 289 | } |
| 290 | |
Dmitry V. Levin | a0bd374 | 2015-04-07 01:36:50 +0000 | [diff] [blame] | 291 | SYS_FUNC(sendfile) |
Wichert Akkerman | 2e2553a | 1999-05-09 00:29:58 +0000 | [diff] [blame] | 292 | { |
| 293 | if (entering(tcp)) { |
Dmitry V. Levin | 3138213 | 2011-03-04 05:08:02 +0300 | [diff] [blame] | 294 | printfd(tcp, tcp->u_arg[0]); |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 295 | tprints(", "); |
Dmitry V. Levin | 3138213 | 2011-03-04 05:08:02 +0300 | [diff] [blame] | 296 | printfd(tcp, tcp->u_arg[1]); |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 297 | tprints(", "); |
Dmitry V. Levin | 2c42f32 | 2013-03-20 09:48:44 +0000 | [diff] [blame] | 298 | print_off_t(tcp, tcp->u_arg[2]); |
Wichert Akkerman | 2e2553a | 1999-05-09 00:29:58 +0000 | [diff] [blame] | 299 | tprintf(", %lu", tcp->u_arg[3]); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 300 | } |
| 301 | return 0; |
| 302 | } |
| 303 | |
Mike Frysinger | 0cbed35 | 2012-04-04 22:22:01 -0400 | [diff] [blame] | 304 | void |
Dmitry V. Levin | d99e48c | 2011-10-11 17:07:05 +0000 | [diff] [blame] | 305 | print_loff_t(struct tcb *tcp, long addr) |
| 306 | { |
| 307 | loff_t offset; |
| 308 | |
| 309 | if (!addr) |
| 310 | tprints("NULL"); |
| 311 | else if (umove(tcp, addr, &offset) < 0) |
| 312 | tprintf("%#lx", addr); |
| 313 | else |
| 314 | tprintf("[%llu]", (unsigned long long int) offset); |
| 315 | } |
| 316 | |
Dmitry V. Levin | a0bd374 | 2015-04-07 01:36:50 +0000 | [diff] [blame] | 317 | SYS_FUNC(sendfile64) |
Roland McGrath | 186c5ac | 2002-12-15 23:58:23 +0000 | [diff] [blame] | 318 | { |
| 319 | if (entering(tcp)) { |
Dmitry V. Levin | 3138213 | 2011-03-04 05:08:02 +0300 | [diff] [blame] | 320 | printfd(tcp, tcp->u_arg[0]); |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 321 | tprints(", "); |
Dmitry V. Levin | 3138213 | 2011-03-04 05:08:02 +0300 | [diff] [blame] | 322 | printfd(tcp, tcp->u_arg[1]); |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 323 | tprints(", "); |
Dmitry V. Levin | d99e48c | 2011-10-11 17:07:05 +0000 | [diff] [blame] | 324 | print_loff_t(tcp, tcp->u_arg[2]); |
Roland McGrath | 186c5ac | 2002-12-15 23:58:23 +0000 | [diff] [blame] | 325 | tprintf(", %lu", tcp->u_arg[3]); |
| 326 | } |
| 327 | return 0; |
| 328 | } |
| 329 | |
Dmitry V. Levin | 0ed617b | 2014-04-25 23:30:54 +0000 | [diff] [blame] | 330 | #include "xlat/splice_flags.h" |
Dmitry V. Levin | d99e48c | 2011-10-11 17:07:05 +0000 | [diff] [blame] | 331 | |
Dmitry V. Levin | a0bd374 | 2015-04-07 01:36:50 +0000 | [diff] [blame] | 332 | SYS_FUNC(tee) |
Dmitry V. Levin | d99e48c | 2011-10-11 17:07:05 +0000 | [diff] [blame] | 333 | { |
| 334 | if (entering(tcp)) { |
| 335 | /* int fd_in */ |
| 336 | printfd(tcp, tcp->u_arg[0]); |
| 337 | tprints(", "); |
| 338 | /* int fd_out */ |
| 339 | printfd(tcp, tcp->u_arg[1]); |
| 340 | tprints(", "); |
| 341 | /* size_t len */ |
| 342 | tprintf("%lu, ", tcp->u_arg[2]); |
| 343 | /* unsigned int flags */ |
| 344 | printflags(splice_flags, tcp->u_arg[3], "SPLICE_F_???"); |
| 345 | } |
| 346 | return 0; |
| 347 | } |
| 348 | |
Dmitry V. Levin | a0bd374 | 2015-04-07 01:36:50 +0000 | [diff] [blame] | 349 | SYS_FUNC(splice) |
Dmitry V. Levin | d99e48c | 2011-10-11 17:07:05 +0000 | [diff] [blame] | 350 | { |
| 351 | if (entering(tcp)) { |
| 352 | /* int fd_in */ |
| 353 | printfd(tcp, tcp->u_arg[0]); |
| 354 | tprints(", "); |
| 355 | /* loff_t *off_in */ |
| 356 | print_loff_t(tcp, tcp->u_arg[1]); |
| 357 | tprints(", "); |
| 358 | /* int fd_out */ |
| 359 | printfd(tcp, tcp->u_arg[2]); |
| 360 | tprints(", "); |
| 361 | /* loff_t *off_out */ |
| 362 | print_loff_t(tcp, tcp->u_arg[3]); |
| 363 | tprints(", "); |
| 364 | /* size_t len */ |
| 365 | tprintf("%lu, ", tcp->u_arg[4]); |
| 366 | /* unsigned int flags */ |
| 367 | printflags(splice_flags, tcp->u_arg[5], "SPLICE_F_???"); |
| 368 | } |
| 369 | return 0; |
| 370 | } |
| 371 | |
Dmitry V. Levin | a0bd374 | 2015-04-07 01:36:50 +0000 | [diff] [blame] | 372 | SYS_FUNC(vmsplice) |
Dmitry V. Levin | d99e48c | 2011-10-11 17:07:05 +0000 | [diff] [blame] | 373 | { |
| 374 | if (entering(tcp)) { |
| 375 | /* int fd */ |
| 376 | printfd(tcp, tcp->u_arg[0]); |
| 377 | tprints(", "); |
| 378 | /* const struct iovec *iov, unsigned long nr_segs */ |
| 379 | 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] | 380 | tprintf(", %lu, ", tcp->u_arg[2]); |
Dmitry V. Levin | d99e48c | 2011-10-11 17:07:05 +0000 | [diff] [blame] | 381 | /* unsigned int flags */ |
| 382 | printflags(splice_flags, tcp->u_arg[3], "SPLICE_F_???"); |
| 383 | } |
| 384 | return 0; |
| 385 | } |