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