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