blob: b5e69d5c2178bac174a3e367ee4d4448b7667f34 [file] [log] [blame]
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001/*
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 Akkerman4dc8a2a1999-12-23 14:20:14 +00005 * Copyright (c) 1996-1999 Wichert Akkerman <wichert@cistron.nl>
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00006 * 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 Akkerman76baf7c1999-02-19 00:21:36 +000029 */
30
31#include "defs.h"
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000032#include <fcntl.h>
Dmitry V. Levinb2fa2be2014-11-21 20:46:16 +000033#include <sys/uio.h>
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000034
Dmitry V. Levina0bd3742015-04-07 01:36:50 +000035SYS_FUNC(read)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000036{
37 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +030038 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +020039 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000040 } else {
41 if (syserror(tcp))
Dmitry V. Levin43b5a1f2015-07-20 11:06:54 +000042 printaddr(tcp->u_arg[1]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000043 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. Levina0bd3742015-04-07 01:36:50 +000050SYS_FUNC(write)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000051{
52 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +030053 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +020054 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000055 printstr(tcp, tcp->u_arg[1], tcp->u_arg[2]);
56 tprintf(", %lu", tcp->u_arg[2]);
57 }
58 return 0;
59}
60
Denys Vlasenkoe0bc2222012-04-28 14:26:18 +020061/*
62 * data_size limits the cumulative size of printed data.
63 * Example: recvmsg returing a short read.
64 */
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +000065void
Denys Vlasenkoe0bc2222012-04-28 14:26:18 +020066tprint_iov_upto(struct tcb *tcp, unsigned long len, unsigned long addr, int decode_iov, unsigned long data_size)
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +000067{
Denys Vlasenko84703742012-02-25 02:38:52 +010068#if SUPPORTED_PERSONALITIES > 1
Dmitry V. Levin4ebb4e32006-12-13 17:08:08 +000069 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 Vlasenko9fd4f962012-03-19 09:36:42 +010074 (current_wordsize == 4 ? sizeof(iov.iov32) : sizeof(iov.iov64))
Dmitry V. Levin4ebb4e32006-12-13 17:08:08 +000075#define iov_iov_base \
Denys Vlasenko9fd4f962012-03-19 09:36:42 +010076 (current_wordsize == 4 ? (uint64_t) iov.iov32.base : iov.iov64.base)
Dmitry V. Levin4ebb4e32006-12-13 17:08:08 +000077#define iov_iov_len \
Denys Vlasenko9fd4f962012-03-19 09:36:42 +010078 (current_wordsize == 4 ? (uint64_t) iov.iov32.len : iov.iov64.len)
Dmitry V. Levin4ebb4e32006-12-13 17:08:08 +000079#else
Roland McGrathaa524c82005-06-01 19:22:06 +000080 struct iovec iov;
Dmitry V. Levin4ebb4e32006-12-13 17:08:08 +000081#define sizeof_iov sizeof(iov)
82#define iov_iov_base iov.iov_base
83#define iov_iov_len iov.iov_len
84#endif
Roland McGrathaa524c82005-06-01 19:22:06 +000085 unsigned long size, cur, end, abbrev_end;
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +000086
87 if (!len) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +020088 tprints("[]");
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +000089 return;
90 }
Dmitry V. Levin4ebb4e32006-12-13 17:08:08 +000091 size = len * sizeof_iov;
Roland McGrathaa524c82005-06-01 19:22:06 +000092 end = addr + size;
Dmitry V. Levin43b5a1f2015-07-20 11:06:54 +000093 if (!verbose(tcp) || (exiting(tcp) && syserror(tcp)) ||
94 !addr || size / sizeof_iov != len || end < addr) {
95 printaddr(addr);
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +000096 return;
97 }
Roland McGrathaa524c82005-06-01 19:22:06 +000098 if (abbrev(tcp)) {
Dmitry V. Levin4ebb4e32006-12-13 17:08:08 +000099 abbrev_end = addr + max_strlen * sizeof_iov;
Roland McGrathaa524c82005-06-01 19:22:06 +0000100 if (abbrev_end < addr)
101 abbrev_end = end;
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000102 } else {
Roland McGrathaa524c82005-06-01 19:22:06 +0000103 abbrev_end = end;
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000104 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200105 tprints("[");
Dmitry V. Levin4ebb4e32006-12-13 17:08:08 +0000106 for (cur = addr; cur < end; cur += sizeof_iov) {
Roland McGrathaa524c82005-06-01 19:22:06 +0000107 if (cur > addr)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200108 tprints(", ");
Roland McGrathaa524c82005-06-01 19:22:06 +0000109 if (cur >= abbrev_end) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200110 tprints("...");
Roland McGrathaa524c82005-06-01 19:22:06 +0000111 break;
112 }
Dmitry V. Levin43b5a1f2015-07-20 11:06:54 +0000113 if (umoven_or_printaddr(tcp, cur, sizeof_iov, &iov))
Roland McGrathaa524c82005-06-01 19:22:06 +0000114 break;
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200115 tprints("{");
Denys Vlasenkoe0bc2222012-04-28 14:26:18 +0200116 if (decode_iov) {
117 unsigned long len = iov_iov_len;
118 if (len > data_size)
119 len = data_size;
120 data_size -= len;
121 printstr(tcp, (long) iov_iov_base, len);
122 } else
Dmitry V. Levin43b5a1f2015-07-20 11:06:54 +0000123 printaddr((long) iov_iov_base);
Dmitry V. Levin4ebb4e32006-12-13 17:08:08 +0000124 tprintf(", %lu}", (unsigned long)iov_iov_len);
Roland McGrathaa524c82005-06-01 19:22:06 +0000125 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200126 tprints("]");
Dmitry V. Levin4ebb4e32006-12-13 17:08:08 +0000127#undef sizeof_iov
128#undef iov_iov_base
129#undef iov_iov_len
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000130}
131
Denys Vlasenkoe0bc2222012-04-28 14:26:18 +0200132void
133tprint_iov(struct tcb *tcp, unsigned long len, unsigned long addr, int decode_iov)
134{
Dmitry V. Levin043b5f82012-05-01 20:30:02 +0000135 tprint_iov_upto(tcp, len, addr, decode_iov, (unsigned long) -1L);
Denys Vlasenkoe0bc2222012-04-28 14:26:18 +0200136}
137
Dmitry V. Levina0bd3742015-04-07 01:36:50 +0000138SYS_FUNC(readv)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000139{
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000140 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +0300141 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200142 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000143 } else {
Dmitry V. Levin88849682011-06-13 22:58:44 +0000144 tprint_iov(tcp, tcp->u_arg[2], tcp->u_arg[1], 1);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000145 tprintf(", %lu", tcp->u_arg[2]);
146 }
147 return 0;
148}
149
Dmitry V. Levina0bd3742015-04-07 01:36:50 +0000150SYS_FUNC(writev)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000151{
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000152 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +0300153 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200154 tprints(", ");
Dmitry V. Levin88849682011-06-13 22:58:44 +0000155 tprint_iov(tcp, tcp->u_arg[2], tcp->u_arg[1], 1);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000156 tprintf(", %lu", tcp->u_arg[2]);
157 }
158 return 0;
159}
160
Roland McGrathc0f8bbd2003-08-21 09:58:00 +0000161/* The SH4 ABI does allow long longs in odd-numbered registers, but
162 does not allow them to be split between registers and memory - and
163 there are only four argument registers for normal functions. As a
164 result pread takes an extra padding argument before the offset. This
165 was changed late in the 2.4 series (around 2.4.20). */
166#if defined(SH)
167#define PREAD_OFFSET_ARG 4
168#else
169#define PREAD_OFFSET_ARG 3
170#endif
171
Dmitry V. Levina0bd3742015-04-07 01:36:50 +0000172SYS_FUNC(pread)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000173{
174 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +0300175 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200176 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000177 } else {
178 if (syserror(tcp))
Dmitry V. Levin43b5a1f2015-07-20 11:06:54 +0000179 printaddr(tcp->u_arg[1]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000180 else
181 printstr(tcp, tcp->u_arg[1], tcp->u_rval);
Andreas Schwabb5600fc2009-11-04 17:08:34 +0100182 tprintf(", %lu, ", tcp->u_arg[2]);
Dmitry V. Levin3c49b022014-08-07 00:07:28 +0000183 printllval(tcp, "%llu", PREAD_OFFSET_ARG);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000184 }
185 return 0;
186}
187
Dmitry V. Levina0bd3742015-04-07 01:36:50 +0000188SYS_FUNC(pwrite)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000189{
190 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +0300191 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200192 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000193 printstr(tcp, tcp->u_arg[1], tcp->u_arg[2]);
Andreas Schwabb5600fc2009-11-04 17:08:34 +0100194 tprintf(", %lu, ", tcp->u_arg[2]);
Dmitry V. Levin3c49b022014-08-07 00:07:28 +0000195 printllval(tcp, "%llu", PREAD_OFFSET_ARG);
Wichert Akkerman2e2553a1999-05-09 00:29:58 +0000196 }
197 return 0;
198}
199
Dmitry V. Levin3c49b022014-08-07 00:07:28 +0000200static void
201print_llu_from_low_high_val(struct tcb *tcp, int arg)
202{
203#if SIZEOF_LONG == SIZEOF_LONG_LONG
Dmitry V. Levin5de5a7a2015-01-23 20:04:37 +0000204# if SUPPORTED_PERSONALITIES > 1
205 if (current_wordsize == sizeof(long))
206# endif
207 tprintf("%lu", (unsigned long) tcp->u_arg[arg]);
208# if SUPPORTED_PERSONALITIES > 1
209 else
210 tprintf("%lu",
211 ((unsigned long) tcp->u_arg[arg + 1] << current_wordsize * 8)
212 | (unsigned long) tcp->u_arg[arg]);
213# endif
Dmitry V. Levin3c49b022014-08-07 00:07:28 +0000214#else
215# ifdef X32
216 if (current_personality == 0)
217 tprintf("%llu", (unsigned long long) tcp->ext_arg[arg]);
218 else
219# endif
220 tprintf("%llu",
Dmitry V. Levin20b84a62014-08-07 11:42:46 +0000221 ((unsigned long long) (unsigned long) tcp->u_arg[arg + 1] << sizeof(long) * 8)
222 | (unsigned long long) (unsigned long) tcp->u_arg[arg]);
Dmitry V. Levin3c49b022014-08-07 00:07:28 +0000223#endif
224}
225
Dmitry V. Levina0bd3742015-04-07 01:36:50 +0000226SYS_FUNC(preadv)
Damir Shayhutdinov3087dd62011-05-12 16:57:40 +0400227{
228 if (entering(tcp)) {
229 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200230 tprints(", ");
Damir Shayhutdinov3087dd62011-05-12 16:57:40 +0400231 } else {
Dmitry V. Levin88849682011-06-13 22:58:44 +0000232 tprint_iov(tcp, tcp->u_arg[2], tcp->u_arg[1], 1);
Damir Shayhutdinov3087dd62011-05-12 16:57:40 +0400233 tprintf(", %lu, ", tcp->u_arg[2]);
Dmitry V. Levin3c49b022014-08-07 00:07:28 +0000234 print_llu_from_low_high_val(tcp, 3);
Damir Shayhutdinov3087dd62011-05-12 16:57:40 +0400235 }
236 return 0;
237}
238
Dmitry V. Levina0bd3742015-04-07 01:36:50 +0000239SYS_FUNC(pwritev)
Damir Shayhutdinov3087dd62011-05-12 16:57:40 +0400240{
241 if (entering(tcp)) {
242 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200243 tprints(", ");
Dmitry V. Levin88849682011-06-13 22:58:44 +0000244 tprint_iov(tcp, tcp->u_arg[2], tcp->u_arg[1], 1);
Damir Shayhutdinov3087dd62011-05-12 16:57:40 +0400245 tprintf(", %lu, ", tcp->u_arg[2]);
Dmitry V. Levin3c49b022014-08-07 00:07:28 +0000246 print_llu_from_low_high_val(tcp, 3);
Damir Shayhutdinov3087dd62011-05-12 16:57:40 +0400247 }
248 return 0;
249}
Damir Shayhutdinov3087dd62011-05-12 16:57:40 +0400250
Dmitry V. Levin2c42f322013-03-20 09:48:44 +0000251static void
252print_off_t(struct tcb *tcp, long addr)
253{
Dmitry V. Levin43b5a1f2015-07-20 11:06:54 +0000254 if (current_wordsize == sizeof(int))
255 printnum_int(tcp, addr, "%u");
Dmitry V. Levin2c42f322013-03-20 09:48:44 +0000256 else
Dmitry V. Levin43b5a1f2015-07-20 11:06:54 +0000257 printnum_long(tcp, addr, "%lu");
Dmitry V. Levin2c42f322013-03-20 09:48:44 +0000258}
259
Dmitry V. Levina0bd3742015-04-07 01:36:50 +0000260SYS_FUNC(sendfile)
Wichert Akkerman2e2553a1999-05-09 00:29:58 +0000261{
262 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +0300263 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200264 tprints(", ");
Dmitry V. Levin31382132011-03-04 05:08:02 +0300265 printfd(tcp, tcp->u_arg[1]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200266 tprints(", ");
Dmitry V. Levin2c42f322013-03-20 09:48:44 +0000267 print_off_t(tcp, tcp->u_arg[2]);
Wichert Akkerman2e2553a1999-05-09 00:29:58 +0000268 tprintf(", %lu", tcp->u_arg[3]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000269 }
270 return 0;
271}
272
Dmitry V. Levina0bd3742015-04-07 01:36:50 +0000273SYS_FUNC(sendfile64)
Roland McGrath186c5ac2002-12-15 23:58:23 +0000274{
275 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +0300276 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200277 tprints(", ");
Dmitry V. Levin31382132011-03-04 05:08:02 +0300278 printfd(tcp, tcp->u_arg[1]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200279 tprints(", ");
Dmitry V. Levindd5f0ce2015-07-20 11:14:12 +0000280 printnum_int64(tcp, tcp->u_arg[2], "%" PRIu64);
Roland McGrath186c5ac2002-12-15 23:58:23 +0000281 tprintf(", %lu", tcp->u_arg[3]);
282 }
283 return 0;
284}
285
Dmitry V. Levin0ed617b2014-04-25 23:30:54 +0000286#include "xlat/splice_flags.h"
Dmitry V. Levind99e48c2011-10-11 17:07:05 +0000287
Dmitry V. Levina0bd3742015-04-07 01:36:50 +0000288SYS_FUNC(tee)
Dmitry V. Levind99e48c2011-10-11 17:07:05 +0000289{
290 if (entering(tcp)) {
291 /* int fd_in */
292 printfd(tcp, tcp->u_arg[0]);
293 tprints(", ");
294 /* int fd_out */
295 printfd(tcp, tcp->u_arg[1]);
296 tprints(", ");
297 /* size_t len */
298 tprintf("%lu, ", tcp->u_arg[2]);
299 /* unsigned int flags */
300 printflags(splice_flags, tcp->u_arg[3], "SPLICE_F_???");
301 }
302 return 0;
303}
304
Dmitry V. Levina0bd3742015-04-07 01:36:50 +0000305SYS_FUNC(splice)
Dmitry V. Levind99e48c2011-10-11 17:07:05 +0000306{
307 if (entering(tcp)) {
308 /* int fd_in */
309 printfd(tcp, tcp->u_arg[0]);
310 tprints(", ");
311 /* loff_t *off_in */
Dmitry V. Levindd5f0ce2015-07-20 11:14:12 +0000312 printnum_int64(tcp, tcp->u_arg[1], "%" PRIu64);
Dmitry V. Levind99e48c2011-10-11 17:07:05 +0000313 tprints(", ");
314 /* int fd_out */
315 printfd(tcp, tcp->u_arg[2]);
316 tprints(", ");
317 /* loff_t *off_out */
Dmitry V. Levindd5f0ce2015-07-20 11:14:12 +0000318 printnum_int64(tcp, tcp->u_arg[3], "%" PRIu64);
Dmitry V. Levind99e48c2011-10-11 17:07:05 +0000319 tprints(", ");
320 /* size_t len */
321 tprintf("%lu, ", tcp->u_arg[4]);
322 /* unsigned int flags */
323 printflags(splice_flags, tcp->u_arg[5], "SPLICE_F_???");
324 }
325 return 0;
326}
327
Dmitry V. Levina0bd3742015-04-07 01:36:50 +0000328SYS_FUNC(vmsplice)
Dmitry V. Levind99e48c2011-10-11 17:07:05 +0000329{
330 if (entering(tcp)) {
331 /* int fd */
332 printfd(tcp, tcp->u_arg[0]);
333 tprints(", ");
334 /* const struct iovec *iov, unsigned long nr_segs */
335 tprint_iov(tcp, tcp->u_arg[2], tcp->u_arg[1], 1);
Dmitry V. Levin0bfd7442012-03-10 14:03:25 +0000336 tprintf(", %lu, ", tcp->u_arg[2]);
Dmitry V. Levind99e48c2011-10-11 17:07:05 +0000337 /* unsigned int flags */
338 printflags(splice_flags, tcp->u_arg[3], "SPLICE_F_???");
339 }
340 return 0;
341}