blob: da8b9d25fe8c83cfeb763b87b447afb897b70785 [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{
Dmitry V. Levin1f255fd2015-07-20 11:19:30 +000052 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 Akkerman76baf7c1999-02-19 00:21:36 +000058}
59
Dmitry V. Levin4ce30542016-05-07 22:54:04 +000060struct print_iovec_config {
Fabien Siron2a54d8b2016-06-22 13:27:03 +000061 enum iov_decode decode_iov;
Dmitry V. Levin4ce30542016-05-07 22:54:04 +000062 unsigned long data_size;
63};
64
65static bool
66print_iovec(struct tcb *tcp, void *elem_buf, size_t elem_size, void *data)
67{
68 const unsigned long *iov;
Fabien Siron2a54d8b2016-06-22 13:27:03 +000069 unsigned long iov_buf[2], len;
Dmitry V. Levin4ce30542016-05-07 22:54:04 +000070 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
Fabien Siron2a54d8b2016-06-22 13:27:03 +000082 len = iov[1];
83
84 switch (c->decode_iov) {
85 case IOV_DECODE_STR:
86 if (len > c->data_size)
87 len = c->data_size;
88 c->data_size -= len;
89 printstr(tcp, iov[0], len);
90 break;
91 default:
92 printaddr(iov[0]);
93 break;
Dmitry V. Levin4ce30542016-05-07 22:54:04 +000094 }
95
96 tprintf(", %lu}", iov[1]);
97
98 return true;
99}
100
Denys Vlasenkoe0bc2222012-04-28 14:26:18 +0200101/*
102 * data_size limits the cumulative size of printed data.
103 * Example: recvmsg returing a short read.
104 */
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000105void
Dmitry V. Levin4ce30542016-05-07 22:54:04 +0000106tprint_iov_upto(struct tcb *tcp, unsigned long len, unsigned long addr,
Fabien Siron2a54d8b2016-06-22 13:27:03 +0000107 enum iov_decode decode_iov, unsigned long data_size)
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000108{
Dmitry V. Levinb172a942015-09-15 02:17:32 +0000109 unsigned long iov[2];
Dmitry V. Levin4ce30542016-05-07 22:54:04 +0000110 struct print_iovec_config config =
111 { .decode_iov = decode_iov, .data_size = data_size };
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000112
Dmitry V. Levin4ce30542016-05-07 22:54:04 +0000113 print_array(tcp, addr, len, iov, current_wordsize * 2,
114 umoven_or_printaddr, print_iovec, &config);
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000115}
116
Denys Vlasenkoe0bc2222012-04-28 14:26:18 +0200117void
Fabien Siron2a54d8b2016-06-22 13:27:03 +0000118tprint_iov(struct tcb *tcp, unsigned long len, unsigned long addr,
119 enum iov_decode decode_iov)
Denys Vlasenkoe0bc2222012-04-28 14:26:18 +0200120{
Dmitry V. Levin043b5f82012-05-01 20:30:02 +0000121 tprint_iov_upto(tcp, len, addr, decode_iov, (unsigned long) -1L);
Denys Vlasenkoe0bc2222012-04-28 14:26:18 +0200122}
123
Dmitry V. Levina0bd3742015-04-07 01:36:50 +0000124SYS_FUNC(readv)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000125{
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000126 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +0300127 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200128 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000129 } else {
Fabien Siron2a54d8b2016-06-22 13:27:03 +0000130 tprint_iov_upto(tcp, tcp->u_arg[2], tcp->u_arg[1],
131 IOV_DECODE_STR, tcp->u_rval);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000132 tprintf(", %lu", tcp->u_arg[2]);
133 }
134 return 0;
135}
136
Dmitry V. Levina0bd3742015-04-07 01:36:50 +0000137SYS_FUNC(writev)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000138{
Dmitry V. Levin1f255fd2015-07-20 11:19:30 +0000139 printfd(tcp, tcp->u_arg[0]);
140 tprints(", ");
Fabien Siron2a54d8b2016-06-22 13:27:03 +0000141 tprint_iov(tcp, tcp->u_arg[2], tcp->u_arg[1], IOV_DECODE_STR);
Dmitry V. Levin1f255fd2015-07-20 11:19:30 +0000142 tprintf(", %lu", tcp->u_arg[2]);
143
144 return RVAL_DECODED;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000145}
146
Roland McGrathc0f8bbd2003-08-21 09:58:00 +0000147/* The SH4 ABI does allow long longs in odd-numbered registers, but
148 does not allow them to be split between registers and memory - and
149 there are only four argument registers for normal functions. As a
150 result pread takes an extra padding argument before the offset. This
151 was changed late in the 2.4 series (around 2.4.20). */
152#if defined(SH)
153#define PREAD_OFFSET_ARG 4
154#else
155#define PREAD_OFFSET_ARG 3
156#endif
157
Dmitry V. Levina0bd3742015-04-07 01:36:50 +0000158SYS_FUNC(pread)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000159{
160 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +0300161 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200162 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000163 } else {
164 if (syserror(tcp))
Dmitry V. Levin43b5a1f2015-07-20 11:06:54 +0000165 printaddr(tcp->u_arg[1]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000166 else
167 printstr(tcp, tcp->u_arg[1], tcp->u_rval);
Andreas Schwabb5600fc2009-11-04 17:08:34 +0100168 tprintf(", %lu, ", tcp->u_arg[2]);
Dmitry V. Levin9f3a6af2016-04-02 01:08:24 +0000169 printllval(tcp, "%lld", PREAD_OFFSET_ARG);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000170 }
171 return 0;
172}
173
Dmitry V. Levina0bd3742015-04-07 01:36:50 +0000174SYS_FUNC(pwrite)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000175{
Dmitry V. Levin1f255fd2015-07-20 11:19:30 +0000176 printfd(tcp, tcp->u_arg[0]);
177 tprints(", ");
178 printstr(tcp, tcp->u_arg[1], tcp->u_arg[2]);
179 tprintf(", %lu, ", tcp->u_arg[2]);
Dmitry V. Levin9f3a6af2016-04-02 01:08:24 +0000180 printllval(tcp, "%lld", PREAD_OFFSET_ARG);
Dmitry V. Levin1f255fd2015-07-20 11:19:30 +0000181
182 return RVAL_DECODED;
Wichert Akkerman2e2553a1999-05-09 00:29:58 +0000183}
184
Dmitry V. Levin3c49b022014-08-07 00:07:28 +0000185static void
Dmitry V. Levind4611512016-03-30 03:54:21 +0000186print_lld_from_low_high_val(struct tcb *tcp, int arg)
Dmitry V. Levin3c49b022014-08-07 00:07:28 +0000187{
Dmitry V. Levinb0c51132016-06-17 16:12:13 +0000188#if SIZEOF_LONG > 4 && SIZEOF_LONG == SIZEOF_LONG_LONG
Dmitry V. Levin5de5a7a2015-01-23 20:04:37 +0000189# if SUPPORTED_PERSONALITIES > 1
Dmitry V. Levinc6e5e2c2015-11-26 20:29:25 +0000190# ifdef X86_64
191 if (current_personality != 1)
192# else
Dmitry V. Levin5de5a7a2015-01-23 20:04:37 +0000193 if (current_wordsize == sizeof(long))
Dmitry V. Levinc6e5e2c2015-11-26 20:29:25 +0000194# endif
Dmitry V. Levin5de5a7a2015-01-23 20:04:37 +0000195# endif
Dmitry V. Levind4611512016-03-30 03:54:21 +0000196 tprintf("%ld", tcp->u_arg[arg]);
Dmitry V. Levin5de5a7a2015-01-23 20:04:37 +0000197# if SUPPORTED_PERSONALITIES > 1
198 else
Dmitry V. Levind4611512016-03-30 03:54:21 +0000199 tprintf("%ld",
Dmitry V. Levin5de5a7a2015-01-23 20:04:37 +0000200 ((unsigned long) tcp->u_arg[arg + 1] << current_wordsize * 8)
201 | (unsigned long) tcp->u_arg[arg]);
202# endif
Dmitry V. Levinb0c51132016-06-17 16:12:13 +0000203#elif SIZEOF_LONG > 4
204# error Unsupported configuration: SIZEOF_LONG > 4 && SIZEOF_LONG_LONG > SIZEOF_LONG
205#elif HAVE_STRUCT_TCB_EXT_ARG
206# if SUPPORTED_PERSONALITIES > 1
207 if (current_personality == 1) {
208 tprintf("%lld",
209 (widen_to_ull(tcp->u_arg[arg + 1]) << sizeof(long) * 8)
210 | widen_to_ull(tcp->u_arg[arg]));
211 } else
Dmitry V. Levin3c49b022014-08-07 00:07:28 +0000212# endif
Dmitry V. Levinb0c51132016-06-17 16:12:13 +0000213 {
214 tprintf("%lld", tcp->ext_arg[arg]);
215 }
216#else /* SIZEOF_LONG_LONG > SIZEOF_LONG && !HAVE_STRUCT_TCB_EXT_ARG */
Dmitry V. Levind4611512016-03-30 03:54:21 +0000217 tprintf("%lld",
Dmitry V. Levin84a979c2016-05-26 10:12:17 +0000218 (widen_to_ull(tcp->u_arg[arg + 1]) << sizeof(long) * 8)
219 | widen_to_ull(tcp->u_arg[arg]));
Dmitry V. Levin3c49b022014-08-07 00:07:28 +0000220#endif
221}
222
Dmitry V. Levina6dd0942016-05-11 00:42:10 +0000223#include "xlat/rwf_flags.h"
224
225static int
226do_preadv(struct tcb *tcp, const int flags_arg)
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 {
Fabien Siron2a54d8b2016-06-22 13:27:03 +0000232 tprint_iov_upto(tcp, tcp->u_arg[2], tcp->u_arg[1], IOV_DECODE_STR,
Dmitry V. Levinc98ab882016-03-30 18:04:00 +0000233 tcp->u_rval);
Damir Shayhutdinov3087dd62011-05-12 16:57:40 +0400234 tprintf(", %lu, ", tcp->u_arg[2]);
Dmitry V. Levind4611512016-03-30 03:54:21 +0000235 print_lld_from_low_high_val(tcp, 3);
Dmitry V. Levina6dd0942016-05-11 00:42:10 +0000236 if (flags_arg >= 0) {
237 tprints(", ");
238 printflags(rwf_flags, tcp->u_arg[flags_arg], "RWF_???");
239 }
Damir Shayhutdinov3087dd62011-05-12 16:57:40 +0400240 }
241 return 0;
242}
243
Dmitry V. Levina6dd0942016-05-11 00:42:10 +0000244SYS_FUNC(preadv)
245{
246 return do_preadv(tcp, -1);
247}
248
249SYS_FUNC(preadv2)
250{
251 return do_preadv(tcp, 5);
252}
253
254static int
255do_pwritev(struct tcb *tcp, const int flags_arg)
Damir Shayhutdinov3087dd62011-05-12 16:57:40 +0400256{
Dmitry V. Levin1f255fd2015-07-20 11:19:30 +0000257 printfd(tcp, tcp->u_arg[0]);
258 tprints(", ");
Fabien Siron2a54d8b2016-06-22 13:27:03 +0000259 tprint_iov(tcp, tcp->u_arg[2], tcp->u_arg[1], IOV_DECODE_STR);
Dmitry V. Levin1f255fd2015-07-20 11:19:30 +0000260 tprintf(", %lu, ", tcp->u_arg[2]);
Dmitry V. Levind4611512016-03-30 03:54:21 +0000261 print_lld_from_low_high_val(tcp, 3);
Dmitry V. Levina6dd0942016-05-11 00:42:10 +0000262 if (flags_arg >= 0) {
263 tprints(", ");
264 printflags(rwf_flags, tcp->u_arg[flags_arg], "RWF_???");
265 }
Dmitry V. Levin1f255fd2015-07-20 11:19:30 +0000266
267 return RVAL_DECODED;
Damir Shayhutdinov3087dd62011-05-12 16:57:40 +0400268}
Damir Shayhutdinov3087dd62011-05-12 16:57:40 +0400269
Dmitry V. Levina6dd0942016-05-11 00:42:10 +0000270SYS_FUNC(pwritev)
271{
272 return do_pwritev(tcp, -1);
273}
274
275SYS_FUNC(pwritev2)
276{
277 return do_pwritev(tcp, 5);
278}
279
Dmitry V. Levin0ed617b2014-04-25 23:30:54 +0000280#include "xlat/splice_flags.h"
Dmitry V. Levind99e48c2011-10-11 17:07:05 +0000281
Dmitry V. Levina0bd3742015-04-07 01:36:50 +0000282SYS_FUNC(tee)
Dmitry V. Levind99e48c2011-10-11 17:07:05 +0000283{
Dmitry V. Levin1f255fd2015-07-20 11:19:30 +0000284 /* int fd_in */
285 printfd(tcp, tcp->u_arg[0]);
286 tprints(", ");
287 /* int fd_out */
288 printfd(tcp, tcp->u_arg[1]);
289 tprints(", ");
290 /* size_t len */
291 tprintf("%lu, ", tcp->u_arg[2]);
292 /* unsigned int flags */
293 printflags(splice_flags, tcp->u_arg[3], "SPLICE_F_???");
294
295 return RVAL_DECODED;
Dmitry V. Levind99e48c2011-10-11 17:07:05 +0000296}
297
Dmitry V. Levina0bd3742015-04-07 01:36:50 +0000298SYS_FUNC(splice)
Dmitry V. Levind99e48c2011-10-11 17:07:05 +0000299{
Dmitry V. Levin1f255fd2015-07-20 11:19:30 +0000300 /* int fd_in */
301 printfd(tcp, tcp->u_arg[0]);
302 tprints(", ");
303 /* loff_t *off_in */
Dmitry V. Levin16a52b42016-02-13 22:31:30 +0000304 printnum_int64(tcp, tcp->u_arg[1], "%" PRId64);
Dmitry V. Levin1f255fd2015-07-20 11:19:30 +0000305 tprints(", ");
306 /* int fd_out */
307 printfd(tcp, tcp->u_arg[2]);
308 tprints(", ");
309 /* loff_t *off_out */
Dmitry V. Levin16a52b42016-02-13 22:31:30 +0000310 printnum_int64(tcp, tcp->u_arg[3], "%" PRId64);
Dmitry V. Levin1f255fd2015-07-20 11:19:30 +0000311 tprints(", ");
312 /* size_t len */
313 tprintf("%lu, ", tcp->u_arg[4]);
314 /* unsigned int flags */
315 printflags(splice_flags, tcp->u_arg[5], "SPLICE_F_???");
316
317 return RVAL_DECODED;
Dmitry V. Levind99e48c2011-10-11 17:07:05 +0000318}
319
Dmitry V. Levina0bd3742015-04-07 01:36:50 +0000320SYS_FUNC(vmsplice)
Dmitry V. Levind99e48c2011-10-11 17:07:05 +0000321{
Dmitry V. Levin1f255fd2015-07-20 11:19:30 +0000322 /* int fd */
323 printfd(tcp, tcp->u_arg[0]);
324 tprints(", ");
325 /* const struct iovec *iov, unsigned long nr_segs */
Fabien Siron2a54d8b2016-06-22 13:27:03 +0000326 tprint_iov(tcp, tcp->u_arg[2], tcp->u_arg[1], IOV_DECODE_STR);
Dmitry V. Levin1f255fd2015-07-20 11:19:30 +0000327 tprintf(", %lu, ", tcp->u_arg[2]);
328 /* unsigned int flags */
329 printflags(splice_flags, tcp->u_arg[3], "SPLICE_F_???");
330
331 return RVAL_DECODED;
Dmitry V. Levind99e48c2011-10-11 17:07:05 +0000332}