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)) |
Dmitry V. Levin | 43b5a1f | 2015-07-20 11:06:54 +0000 | [diff] [blame] | 42 | printaddr(tcp->u_arg[1]); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 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 | { |
Dmitry V. Levin | 1f255fd | 2015-07-20 11:19:30 +0000 | [diff] [blame] | 52 | printfd(tcp, tcp->u_arg[0]); |
| 53 | tprints(", "); |
| 54 | printstr(tcp, tcp->u_arg[1], tcp->u_arg[2]); |
| 55 | tprintf(", %lu", tcp->u_arg[2]); |
| 56 | |
| 57 | return RVAL_DECODED; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 58 | } |
| 59 | |
Denys Vlasenko | e0bc222 | 2012-04-28 14:26:18 +0200 | [diff] [blame] | 60 | /* |
| 61 | * data_size limits the cumulative size of printed data. |
| 62 | * Example: recvmsg returing a short read. |
| 63 | */ |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 64 | void |
Denys Vlasenko | e0bc222 | 2012-04-28 14:26:18 +0200 | [diff] [blame] | 65 | 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] | 66 | { |
Dmitry V. Levin | b172a94 | 2015-09-15 02:17:32 +0000 | [diff] [blame] | 67 | unsigned long iov[2]; |
Roland McGrath | aa524c8 | 2005-06-01 19:22:06 +0000 | [diff] [blame] | 68 | unsigned long size, cur, end, abbrev_end; |
Dmitry V. Levin | b172a94 | 2015-09-15 02:17:32 +0000 | [diff] [blame] | 69 | const unsigned long sizeof_iov = current_wordsize * 2; |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 70 | |
| 71 | if (!len) { |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 72 | tprints("[]"); |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 73 | return; |
| 74 | } |
Dmitry V. Levin | 4ebb4e3 | 2006-12-13 17:08:08 +0000 | [diff] [blame] | 75 | size = len * sizeof_iov; |
Roland McGrath | aa524c8 | 2005-06-01 19:22:06 +0000 | [diff] [blame] | 76 | end = addr + size; |
Dmitry V. Levin | 43b5a1f | 2015-07-20 11:06:54 +0000 | [diff] [blame] | 77 | if (!verbose(tcp) || (exiting(tcp) && syserror(tcp)) || |
| 78 | !addr || size / sizeof_iov != len || end < addr) { |
| 79 | printaddr(addr); |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 80 | return; |
| 81 | } |
Roland McGrath | aa524c8 | 2005-06-01 19:22:06 +0000 | [diff] [blame] | 82 | if (abbrev(tcp)) { |
Dmitry V. Levin | 4ebb4e3 | 2006-12-13 17:08:08 +0000 | [diff] [blame] | 83 | abbrev_end = addr + max_strlen * sizeof_iov; |
Roland McGrath | aa524c8 | 2005-06-01 19:22:06 +0000 | [diff] [blame] | 84 | if (abbrev_end < addr) |
| 85 | abbrev_end = end; |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 86 | } else { |
Roland McGrath | aa524c8 | 2005-06-01 19:22:06 +0000 | [diff] [blame] | 87 | abbrev_end = end; |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 88 | } |
Dmitry V. Levin | 0a9d194 | 2016-03-30 02:22:58 +0000 | [diff] [blame] | 89 | if (addr >= abbrev_end) { |
| 90 | tprints("[...]"); |
| 91 | return; |
| 92 | } |
Dmitry V. Levin | 4ebb4e3 | 2006-12-13 17:08:08 +0000 | [diff] [blame] | 93 | for (cur = addr; cur < end; cur += sizeof_iov) { |
Dmitry V. Levin | 0a9d194 | 2016-03-30 02:22:58 +0000 | [diff] [blame] | 94 | if (cur > addr) { |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 95 | tprints(", "); |
Dmitry V. Levin | 0a9d194 | 2016-03-30 02:22:58 +0000 | [diff] [blame] | 96 | if (cur >= abbrev_end) { |
| 97 | tprints("..."); |
| 98 | break; |
| 99 | } |
Roland McGrath | aa524c8 | 2005-06-01 19:22:06 +0000 | [diff] [blame] | 100 | } |
Dmitry V. Levin | b172a94 | 2015-09-15 02:17:32 +0000 | [diff] [blame] | 101 | if (umove_ulong_array_or_printaddr(tcp, cur, iov, |
| 102 | ARRAY_SIZE(iov))) |
Roland McGrath | aa524c8 | 2005-06-01 19:22:06 +0000 | [diff] [blame] | 103 | break; |
Dmitry V. Levin | 0a9d194 | 2016-03-30 02:22:58 +0000 | [diff] [blame] | 104 | if (cur <= addr) |
| 105 | tprints("["); |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 106 | tprints("{"); |
Denys Vlasenko | e0bc222 | 2012-04-28 14:26:18 +0200 | [diff] [blame] | 107 | if (decode_iov) { |
Dmitry V. Levin | b172a94 | 2015-09-15 02:17:32 +0000 | [diff] [blame] | 108 | unsigned long len = iov[1]; |
Denys Vlasenko | e0bc222 | 2012-04-28 14:26:18 +0200 | [diff] [blame] | 109 | if (len > data_size) |
| 110 | len = data_size; |
| 111 | data_size -= len; |
Dmitry V. Levin | b172a94 | 2015-09-15 02:17:32 +0000 | [diff] [blame] | 112 | printstr(tcp, iov[0], len); |
Denys Vlasenko | e0bc222 | 2012-04-28 14:26:18 +0200 | [diff] [blame] | 113 | } else |
Dmitry V. Levin | b172a94 | 2015-09-15 02:17:32 +0000 | [diff] [blame] | 114 | printaddr(iov[0]); |
| 115 | tprintf(", %lu}", iov[1]); |
Roland McGrath | aa524c8 | 2005-06-01 19:22:06 +0000 | [diff] [blame] | 116 | } |
Dmitry V. Levin | 0a9d194 | 2016-03-30 02:22:58 +0000 | [diff] [blame] | 117 | if (cur > addr) |
| 118 | tprints("]"); |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 119 | } |
| 120 | |
Denys Vlasenko | e0bc222 | 2012-04-28 14:26:18 +0200 | [diff] [blame] | 121 | void |
| 122 | tprint_iov(struct tcb *tcp, unsigned long len, unsigned long addr, int decode_iov) |
| 123 | { |
Dmitry V. Levin | 043b5f8 | 2012-05-01 20:30:02 +0000 | [diff] [blame] | 124 | tprint_iov_upto(tcp, len, addr, decode_iov, (unsigned long) -1L); |
Denys Vlasenko | e0bc222 | 2012-04-28 14:26:18 +0200 | [diff] [blame] | 125 | } |
| 126 | |
Dmitry V. Levin | a0bd374 | 2015-04-07 01:36:50 +0000 | [diff] [blame] | 127 | SYS_FUNC(readv) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 128 | { |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 129 | if (entering(tcp)) { |
Dmitry V. Levin | 3138213 | 2011-03-04 05:08:02 +0300 | [diff] [blame] | 130 | printfd(tcp, tcp->u_arg[0]); |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 131 | tprints(", "); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 132 | } else { |
Dmitry V. Levin | 05a0af6 | 2016-01-20 00:17:02 +0000 | [diff] [blame] | 133 | tprint_iov_upto(tcp, tcp->u_arg[2], tcp->u_arg[1], 1, |
| 134 | tcp->u_rval); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 135 | tprintf(", %lu", tcp->u_arg[2]); |
| 136 | } |
| 137 | return 0; |
| 138 | } |
| 139 | |
Dmitry V. Levin | a0bd374 | 2015-04-07 01:36:50 +0000 | [diff] [blame] | 140 | SYS_FUNC(writev) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 141 | { |
Dmitry V. Levin | 1f255fd | 2015-07-20 11:19:30 +0000 | [diff] [blame] | 142 | printfd(tcp, tcp->u_arg[0]); |
| 143 | tprints(", "); |
| 144 | tprint_iov(tcp, tcp->u_arg[2], tcp->u_arg[1], 1); |
| 145 | tprintf(", %lu", tcp->u_arg[2]); |
| 146 | |
| 147 | return RVAL_DECODED; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 148 | } |
| 149 | |
Roland McGrath | c0f8bbd | 2003-08-21 09:58:00 +0000 | [diff] [blame] | 150 | /* The SH4 ABI does allow long longs in odd-numbered registers, but |
| 151 | does not allow them to be split between registers and memory - and |
| 152 | there are only four argument registers for normal functions. As a |
| 153 | result pread takes an extra padding argument before the offset. This |
| 154 | was changed late in the 2.4 series (around 2.4.20). */ |
| 155 | #if defined(SH) |
| 156 | #define PREAD_OFFSET_ARG 4 |
| 157 | #else |
| 158 | #define PREAD_OFFSET_ARG 3 |
| 159 | #endif |
| 160 | |
Dmitry V. Levin | a0bd374 | 2015-04-07 01:36:50 +0000 | [diff] [blame] | 161 | SYS_FUNC(pread) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 162 | { |
| 163 | if (entering(tcp)) { |
Dmitry V. Levin | 3138213 | 2011-03-04 05:08:02 +0300 | [diff] [blame] | 164 | printfd(tcp, tcp->u_arg[0]); |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 165 | tprints(", "); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 166 | } else { |
| 167 | if (syserror(tcp)) |
Dmitry V. Levin | 43b5a1f | 2015-07-20 11:06:54 +0000 | [diff] [blame] | 168 | printaddr(tcp->u_arg[1]); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 169 | else |
| 170 | printstr(tcp, tcp->u_arg[1], tcp->u_rval); |
Andreas Schwab | b5600fc | 2009-11-04 17:08:34 +0100 | [diff] [blame] | 171 | tprintf(", %lu, ", tcp->u_arg[2]); |
Dmitry V. Levin | 9f3a6af | 2016-04-02 01:08:24 +0000 | [diff] [blame] | 172 | printllval(tcp, "%lld", PREAD_OFFSET_ARG); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 173 | } |
| 174 | return 0; |
| 175 | } |
| 176 | |
Dmitry V. Levin | a0bd374 | 2015-04-07 01:36:50 +0000 | [diff] [blame] | 177 | SYS_FUNC(pwrite) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 178 | { |
Dmitry V. Levin | 1f255fd | 2015-07-20 11:19:30 +0000 | [diff] [blame] | 179 | printfd(tcp, tcp->u_arg[0]); |
| 180 | tprints(", "); |
| 181 | printstr(tcp, tcp->u_arg[1], tcp->u_arg[2]); |
| 182 | tprintf(", %lu, ", tcp->u_arg[2]); |
Dmitry V. Levin | 9f3a6af | 2016-04-02 01:08:24 +0000 | [diff] [blame] | 183 | printllval(tcp, "%lld", PREAD_OFFSET_ARG); |
Dmitry V. Levin | 1f255fd | 2015-07-20 11:19:30 +0000 | [diff] [blame] | 184 | |
| 185 | return RVAL_DECODED; |
Wichert Akkerman | 2e2553a | 1999-05-09 00:29:58 +0000 | [diff] [blame] | 186 | } |
| 187 | |
Dmitry V. Levin | 3c49b02 | 2014-08-07 00:07:28 +0000 | [diff] [blame] | 188 | static void |
Dmitry V. Levin | d461151 | 2016-03-30 03:54:21 +0000 | [diff] [blame] | 189 | print_lld_from_low_high_val(struct tcb *tcp, int arg) |
Dmitry V. Levin | 3c49b02 | 2014-08-07 00:07:28 +0000 | [diff] [blame] | 190 | { |
| 191 | #if SIZEOF_LONG == SIZEOF_LONG_LONG |
Dmitry V. Levin | 5de5a7a | 2015-01-23 20:04:37 +0000 | [diff] [blame] | 192 | # if SUPPORTED_PERSONALITIES > 1 |
Dmitry V. Levin | c6e5e2c | 2015-11-26 20:29:25 +0000 | [diff] [blame] | 193 | # ifdef X86_64 |
| 194 | if (current_personality != 1) |
| 195 | # else |
Dmitry V. Levin | 5de5a7a | 2015-01-23 20:04:37 +0000 | [diff] [blame] | 196 | if (current_wordsize == sizeof(long)) |
Dmitry V. Levin | c6e5e2c | 2015-11-26 20:29:25 +0000 | [diff] [blame] | 197 | # endif |
Dmitry V. Levin | 5de5a7a | 2015-01-23 20:04:37 +0000 | [diff] [blame] | 198 | # endif |
Dmitry V. Levin | d461151 | 2016-03-30 03:54:21 +0000 | [diff] [blame] | 199 | tprintf("%ld", tcp->u_arg[arg]); |
Dmitry V. Levin | 5de5a7a | 2015-01-23 20:04:37 +0000 | [diff] [blame] | 200 | # if SUPPORTED_PERSONALITIES > 1 |
| 201 | else |
Dmitry V. Levin | d461151 | 2016-03-30 03:54:21 +0000 | [diff] [blame] | 202 | tprintf("%ld", |
Dmitry V. Levin | 5de5a7a | 2015-01-23 20:04:37 +0000 | [diff] [blame] | 203 | ((unsigned long) tcp->u_arg[arg + 1] << current_wordsize * 8) |
| 204 | | (unsigned long) tcp->u_arg[arg]); |
| 205 | # endif |
Dmitry V. Levin | 3c49b02 | 2014-08-07 00:07:28 +0000 | [diff] [blame] | 206 | #else |
| 207 | # ifdef X32 |
| 208 | if (current_personality == 0) |
Dmitry V. Levin | d461151 | 2016-03-30 03:54:21 +0000 | [diff] [blame] | 209 | tprintf("%lld", tcp->ext_arg[arg]); |
Dmitry V. Levin | 3c49b02 | 2014-08-07 00:07:28 +0000 | [diff] [blame] | 210 | else |
| 211 | # endif |
Dmitry V. Levin | d461151 | 2016-03-30 03:54:21 +0000 | [diff] [blame] | 212 | tprintf("%lld", |
Dmitry V. Levin | 20b84a6 | 2014-08-07 11:42:46 +0000 | [diff] [blame] | 213 | ((unsigned long long) (unsigned long) tcp->u_arg[arg + 1] << sizeof(long) * 8) |
| 214 | | (unsigned long long) (unsigned long) tcp->u_arg[arg]); |
Dmitry V. Levin | 3c49b02 | 2014-08-07 00:07:28 +0000 | [diff] [blame] | 215 | #endif |
| 216 | } |
| 217 | |
Dmitry V. Levin | a0bd374 | 2015-04-07 01:36:50 +0000 | [diff] [blame] | 218 | SYS_FUNC(preadv) |
Damir Shayhutdinov | 3087dd6 | 2011-05-12 16:57:40 +0400 | [diff] [blame] | 219 | { |
| 220 | if (entering(tcp)) { |
| 221 | printfd(tcp, tcp->u_arg[0]); |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 222 | tprints(", "); |
Damir Shayhutdinov | 3087dd6 | 2011-05-12 16:57:40 +0400 | [diff] [blame] | 223 | } else { |
Dmitry V. Levin | c98ab88 | 2016-03-30 18:04:00 +0000 | [diff] [blame] | 224 | tprint_iov_upto(tcp, tcp->u_arg[2], tcp->u_arg[1], 1, |
| 225 | tcp->u_rval); |
Damir Shayhutdinov | 3087dd6 | 2011-05-12 16:57:40 +0400 | [diff] [blame] | 226 | tprintf(", %lu, ", tcp->u_arg[2]); |
Dmitry V. Levin | d461151 | 2016-03-30 03:54:21 +0000 | [diff] [blame] | 227 | print_lld_from_low_high_val(tcp, 3); |
Damir Shayhutdinov | 3087dd6 | 2011-05-12 16:57:40 +0400 | [diff] [blame] | 228 | } |
| 229 | return 0; |
| 230 | } |
| 231 | |
Dmitry V. Levin | a0bd374 | 2015-04-07 01:36:50 +0000 | [diff] [blame] | 232 | SYS_FUNC(pwritev) |
Damir Shayhutdinov | 3087dd6 | 2011-05-12 16:57:40 +0400 | [diff] [blame] | 233 | { |
Dmitry V. Levin | 1f255fd | 2015-07-20 11:19:30 +0000 | [diff] [blame] | 234 | printfd(tcp, tcp->u_arg[0]); |
| 235 | tprints(", "); |
| 236 | tprint_iov(tcp, tcp->u_arg[2], tcp->u_arg[1], 1); |
| 237 | tprintf(", %lu, ", tcp->u_arg[2]); |
Dmitry V. Levin | d461151 | 2016-03-30 03:54:21 +0000 | [diff] [blame] | 238 | print_lld_from_low_high_val(tcp, 3); |
Dmitry V. Levin | 1f255fd | 2015-07-20 11:19:30 +0000 | [diff] [blame] | 239 | |
| 240 | return RVAL_DECODED; |
Damir Shayhutdinov | 3087dd6 | 2011-05-12 16:57:40 +0400 | [diff] [blame] | 241 | } |
Damir Shayhutdinov | 3087dd6 | 2011-05-12 16:57:40 +0400 | [diff] [blame] | 242 | |
Dmitry V. Levin | 0ed617b | 2014-04-25 23:30:54 +0000 | [diff] [blame] | 243 | #include "xlat/splice_flags.h" |
Dmitry V. Levin | d99e48c | 2011-10-11 17:07:05 +0000 | [diff] [blame] | 244 | |
Dmitry V. Levin | a0bd374 | 2015-04-07 01:36:50 +0000 | [diff] [blame] | 245 | SYS_FUNC(tee) |
Dmitry V. Levin | d99e48c | 2011-10-11 17:07:05 +0000 | [diff] [blame] | 246 | { |
Dmitry V. Levin | 1f255fd | 2015-07-20 11:19:30 +0000 | [diff] [blame] | 247 | /* int fd_in */ |
| 248 | printfd(tcp, tcp->u_arg[0]); |
| 249 | tprints(", "); |
| 250 | /* int fd_out */ |
| 251 | printfd(tcp, tcp->u_arg[1]); |
| 252 | tprints(", "); |
| 253 | /* size_t len */ |
| 254 | tprintf("%lu, ", tcp->u_arg[2]); |
| 255 | /* unsigned int flags */ |
| 256 | printflags(splice_flags, tcp->u_arg[3], "SPLICE_F_???"); |
| 257 | |
| 258 | return RVAL_DECODED; |
Dmitry V. Levin | d99e48c | 2011-10-11 17:07:05 +0000 | [diff] [blame] | 259 | } |
| 260 | |
Dmitry V. Levin | a0bd374 | 2015-04-07 01:36:50 +0000 | [diff] [blame] | 261 | SYS_FUNC(splice) |
Dmitry V. Levin | d99e48c | 2011-10-11 17:07:05 +0000 | [diff] [blame] | 262 | { |
Dmitry V. Levin | 1f255fd | 2015-07-20 11:19:30 +0000 | [diff] [blame] | 263 | /* int fd_in */ |
| 264 | printfd(tcp, tcp->u_arg[0]); |
| 265 | tprints(", "); |
| 266 | /* loff_t *off_in */ |
Dmitry V. Levin | 16a52b4 | 2016-02-13 22:31:30 +0000 | [diff] [blame] | 267 | printnum_int64(tcp, tcp->u_arg[1], "%" PRId64); |
Dmitry V. Levin | 1f255fd | 2015-07-20 11:19:30 +0000 | [diff] [blame] | 268 | tprints(", "); |
| 269 | /* int fd_out */ |
| 270 | printfd(tcp, tcp->u_arg[2]); |
| 271 | tprints(", "); |
| 272 | /* loff_t *off_out */ |
Dmitry V. Levin | 16a52b4 | 2016-02-13 22:31:30 +0000 | [diff] [blame] | 273 | printnum_int64(tcp, tcp->u_arg[3], "%" PRId64); |
Dmitry V. Levin | 1f255fd | 2015-07-20 11:19:30 +0000 | [diff] [blame] | 274 | tprints(", "); |
| 275 | /* size_t len */ |
| 276 | tprintf("%lu, ", tcp->u_arg[4]); |
| 277 | /* unsigned int flags */ |
| 278 | printflags(splice_flags, tcp->u_arg[5], "SPLICE_F_???"); |
| 279 | |
| 280 | return RVAL_DECODED; |
Dmitry V. Levin | d99e48c | 2011-10-11 17:07:05 +0000 | [diff] [blame] | 281 | } |
| 282 | |
Dmitry V. Levin | a0bd374 | 2015-04-07 01:36:50 +0000 | [diff] [blame] | 283 | SYS_FUNC(vmsplice) |
Dmitry V. Levin | d99e48c | 2011-10-11 17:07:05 +0000 | [diff] [blame] | 284 | { |
Dmitry V. Levin | 1f255fd | 2015-07-20 11:19:30 +0000 | [diff] [blame] | 285 | /* int fd */ |
| 286 | printfd(tcp, tcp->u_arg[0]); |
| 287 | tprints(", "); |
| 288 | /* const struct iovec *iov, unsigned long nr_segs */ |
| 289 | tprint_iov(tcp, tcp->u_arg[2], tcp->u_arg[1], 1); |
| 290 | tprintf(", %lu, ", tcp->u_arg[2]); |
| 291 | /* unsigned int flags */ |
| 292 | printflags(splice_flags, tcp->u_arg[3], "SPLICE_F_???"); |
| 293 | |
| 294 | return RVAL_DECODED; |
Dmitry V. Levin | d99e48c | 2011-10-11 17:07:05 +0000 | [diff] [blame] | 295 | } |