blob: 907f9d24718cc27c86fa55cd765053518337d488 [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
Dmitry V. Levin4ddbfcf2016-07-13 22:54:55 +000080 tprints("{iov_base=");
Dmitry V. Levin4ce30542016-05-07 22:54:04 +000081
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;
Fabien Siron2850f742016-07-06 15:49:22 +000091 case IOV_DECODE_NETLINK:
92 if (len > c->data_size)
93 len = c->data_size;
94 c->data_size -= len;
95 decode_netlink(tcp, iov[0], iov[1]);
96 break;
Fabien Siron2a54d8b2016-06-22 13:27:03 +000097 default:
98 printaddr(iov[0]);
99 break;
Dmitry V. Levin4ce30542016-05-07 22:54:04 +0000100 }
101
Dmitry V. Levin4ddbfcf2016-07-13 22:54:55 +0000102 tprintf(", iov_len=%lu}", iov[1]);
Dmitry V. Levin4ce30542016-05-07 22:54:04 +0000103
104 return true;
105}
106
Denys Vlasenkoe0bc2222012-04-28 14:26:18 +0200107/*
108 * data_size limits the cumulative size of printed data.
109 * Example: recvmsg returing a short read.
110 */
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000111void
Dmitry V. Levin4ce30542016-05-07 22:54:04 +0000112tprint_iov_upto(struct tcb *tcp, unsigned long len, unsigned long addr,
Fabien Siron2a54d8b2016-06-22 13:27:03 +0000113 enum iov_decode decode_iov, unsigned long data_size)
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000114{
Dmitry V. Levinb172a942015-09-15 02:17:32 +0000115 unsigned long iov[2];
Dmitry V. Levin4ce30542016-05-07 22:54:04 +0000116 struct print_iovec_config config =
117 { .decode_iov = decode_iov, .data_size = data_size };
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000118
Dmitry V. Levin4ce30542016-05-07 22:54:04 +0000119 print_array(tcp, addr, len, iov, current_wordsize * 2,
120 umoven_or_printaddr, print_iovec, &config);
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000121}
122
Denys Vlasenkoe0bc2222012-04-28 14:26:18 +0200123void
Fabien Siron2a54d8b2016-06-22 13:27:03 +0000124tprint_iov(struct tcb *tcp, unsigned long len, unsigned long addr,
125 enum iov_decode decode_iov)
Denys Vlasenkoe0bc2222012-04-28 14:26:18 +0200126{
Dmitry V. Levin043b5f82012-05-01 20:30:02 +0000127 tprint_iov_upto(tcp, len, addr, decode_iov, (unsigned long) -1L);
Denys Vlasenkoe0bc2222012-04-28 14:26:18 +0200128}
129
Dmitry V. Levina0bd3742015-04-07 01:36:50 +0000130SYS_FUNC(readv)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000131{
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000132 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +0300133 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200134 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000135 } else {
Fabien Siron2a54d8b2016-06-22 13:27:03 +0000136 tprint_iov_upto(tcp, tcp->u_arg[2], tcp->u_arg[1],
137 IOV_DECODE_STR, tcp->u_rval);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000138 tprintf(", %lu", tcp->u_arg[2]);
139 }
140 return 0;
141}
142
Dmitry V. Levina0bd3742015-04-07 01:36:50 +0000143SYS_FUNC(writev)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000144{
Dmitry V. Levin1f255fd2015-07-20 11:19:30 +0000145 printfd(tcp, tcp->u_arg[0]);
146 tprints(", ");
Fabien Siron2a54d8b2016-06-22 13:27:03 +0000147 tprint_iov(tcp, tcp->u_arg[2], tcp->u_arg[1], IOV_DECODE_STR);
Dmitry V. Levin1f255fd2015-07-20 11:19:30 +0000148 tprintf(", %lu", tcp->u_arg[2]);
149
150 return RVAL_DECODED;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000151}
152
Dmitry V. Levina0bd3742015-04-07 01:36:50 +0000153SYS_FUNC(pread)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000154{
155 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +0300156 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200157 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000158 } else {
159 if (syserror(tcp))
Dmitry V. Levin43b5a1f2015-07-20 11:06:54 +0000160 printaddr(tcp->u_arg[1]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000161 else
162 printstr(tcp, tcp->u_arg[1], tcp->u_rval);
Andreas Schwabb5600fc2009-11-04 17:08:34 +0100163 tprintf(", %lu, ", tcp->u_arg[2]);
Eugene Syromyatnikov714a1622016-08-20 17:02:55 +0300164 printllval(tcp, "%lld", 3);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000165 }
166 return 0;
167}
168
Dmitry V. Levina0bd3742015-04-07 01:36:50 +0000169SYS_FUNC(pwrite)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000170{
Dmitry V. Levin1f255fd2015-07-20 11:19:30 +0000171 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]);
Eugene Syromyatnikov714a1622016-08-20 17:02:55 +0300175 printllval(tcp, "%lld", 3);
Dmitry V. Levin1f255fd2015-07-20 11:19:30 +0000176
177 return RVAL_DECODED;
Wichert Akkerman2e2553a1999-05-09 00:29:58 +0000178}
179
Dmitry V. Levin3c49b022014-08-07 00:07:28 +0000180static void
Dmitry V. Levind4611512016-03-30 03:54:21 +0000181print_lld_from_low_high_val(struct tcb *tcp, int arg)
Dmitry V. Levin3c49b022014-08-07 00:07:28 +0000182{
Dmitry V. Levinb0c51132016-06-17 16:12:13 +0000183#if SIZEOF_LONG > 4 && SIZEOF_LONG == SIZEOF_LONG_LONG
Dmitry V. Levin5de5a7a2015-01-23 20:04:37 +0000184# if SUPPORTED_PERSONALITIES > 1
Dmitry V. Levinc6e5e2c2015-11-26 20:29:25 +0000185# ifdef X86_64
186 if (current_personality != 1)
187# else
Dmitry V. Levin5de5a7a2015-01-23 20:04:37 +0000188 if (current_wordsize == sizeof(long))
Dmitry V. Levinc6e5e2c2015-11-26 20:29:25 +0000189# endif
Dmitry V. Levin5de5a7a2015-01-23 20:04:37 +0000190# endif
Dmitry V. Levind4611512016-03-30 03:54:21 +0000191 tprintf("%ld", tcp->u_arg[arg]);
Dmitry V. Levin5de5a7a2015-01-23 20:04:37 +0000192# if SUPPORTED_PERSONALITIES > 1
193 else
Dmitry V. Levind4611512016-03-30 03:54:21 +0000194 tprintf("%ld",
Dmitry V. Levin5de5a7a2015-01-23 20:04:37 +0000195 ((unsigned long) tcp->u_arg[arg + 1] << current_wordsize * 8)
196 | (unsigned long) tcp->u_arg[arg]);
197# endif
Dmitry V. Levinb0c51132016-06-17 16:12:13 +0000198#elif SIZEOF_LONG > 4
199# error Unsupported configuration: SIZEOF_LONG > 4 && SIZEOF_LONG_LONG > SIZEOF_LONG
200#elif HAVE_STRUCT_TCB_EXT_ARG
201# if SUPPORTED_PERSONALITIES > 1
202 if (current_personality == 1) {
203 tprintf("%lld",
Dmitry V. Levin031fc802016-08-23 00:24:10 +0000204 (zero_extend_signed_to_ull(tcp->u_arg[arg + 1]) << sizeof(long) * 8)
205 | zero_extend_signed_to_ull(tcp->u_arg[arg]));
Dmitry V. Levinb0c51132016-06-17 16:12:13 +0000206 } else
Dmitry V. Levin3c49b022014-08-07 00:07:28 +0000207# endif
Dmitry V. Levinb0c51132016-06-17 16:12:13 +0000208 {
209 tprintf("%lld", tcp->ext_arg[arg]);
210 }
211#else /* SIZEOF_LONG_LONG > SIZEOF_LONG && !HAVE_STRUCT_TCB_EXT_ARG */
Dmitry V. Levind4611512016-03-30 03:54:21 +0000212 tprintf("%lld",
Dmitry V. Levin031fc802016-08-23 00:24:10 +0000213 (zero_extend_signed_to_ull(tcp->u_arg[arg + 1]) << sizeof(long) * 8)
214 | zero_extend_signed_to_ull(tcp->u_arg[arg]));
Dmitry V. Levin3c49b022014-08-07 00:07:28 +0000215#endif
216}
217
Dmitry V. Levina6dd0942016-05-11 00:42:10 +0000218#include "xlat/rwf_flags.h"
219
220static int
221do_preadv(struct tcb *tcp, const int flags_arg)
Damir Shayhutdinov3087dd62011-05-12 16:57:40 +0400222{
223 if (entering(tcp)) {
224 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200225 tprints(", ");
Damir Shayhutdinov3087dd62011-05-12 16:57:40 +0400226 } else {
Fabien Siron2a54d8b2016-06-22 13:27:03 +0000227 tprint_iov_upto(tcp, tcp->u_arg[2], tcp->u_arg[1], IOV_DECODE_STR,
Dmitry V. Levinc98ab882016-03-30 18:04:00 +0000228 tcp->u_rval);
Damir Shayhutdinov3087dd62011-05-12 16:57:40 +0400229 tprintf(", %lu, ", tcp->u_arg[2]);
Dmitry V. Levind4611512016-03-30 03:54:21 +0000230 print_lld_from_low_high_val(tcp, 3);
Dmitry V. Levina6dd0942016-05-11 00:42:10 +0000231 if (flags_arg >= 0) {
232 tprints(", ");
233 printflags(rwf_flags, tcp->u_arg[flags_arg], "RWF_???");
234 }
Damir Shayhutdinov3087dd62011-05-12 16:57:40 +0400235 }
236 return 0;
237}
238
Dmitry V. Levina6dd0942016-05-11 00:42:10 +0000239SYS_FUNC(preadv)
240{
241 return do_preadv(tcp, -1);
242}
243
244SYS_FUNC(preadv2)
245{
246 return do_preadv(tcp, 5);
247}
248
249static int
250do_pwritev(struct tcb *tcp, const int flags_arg)
Damir Shayhutdinov3087dd62011-05-12 16:57:40 +0400251{
Dmitry V. Levin1f255fd2015-07-20 11:19:30 +0000252 printfd(tcp, tcp->u_arg[0]);
253 tprints(", ");
Fabien Siron2a54d8b2016-06-22 13:27:03 +0000254 tprint_iov(tcp, tcp->u_arg[2], tcp->u_arg[1], IOV_DECODE_STR);
Dmitry V. Levin1f255fd2015-07-20 11:19:30 +0000255 tprintf(", %lu, ", tcp->u_arg[2]);
Dmitry V. Levind4611512016-03-30 03:54:21 +0000256 print_lld_from_low_high_val(tcp, 3);
Dmitry V. Levina6dd0942016-05-11 00:42:10 +0000257 if (flags_arg >= 0) {
258 tprints(", ");
259 printflags(rwf_flags, tcp->u_arg[flags_arg], "RWF_???");
260 }
Dmitry V. Levin1f255fd2015-07-20 11:19:30 +0000261
262 return RVAL_DECODED;
Damir Shayhutdinov3087dd62011-05-12 16:57:40 +0400263}
Damir Shayhutdinov3087dd62011-05-12 16:57:40 +0400264
Dmitry V. Levina6dd0942016-05-11 00:42:10 +0000265SYS_FUNC(pwritev)
266{
267 return do_pwritev(tcp, -1);
268}
269
270SYS_FUNC(pwritev2)
271{
272 return do_pwritev(tcp, 5);
273}
274
Dmitry V. Levin0ed617b2014-04-25 23:30:54 +0000275#include "xlat/splice_flags.h"
Dmitry V. Levind99e48c2011-10-11 17:07:05 +0000276
Dmitry V. Levina0bd3742015-04-07 01:36:50 +0000277SYS_FUNC(tee)
Dmitry V. Levind99e48c2011-10-11 17:07:05 +0000278{
Dmitry V. Levin1f255fd2015-07-20 11:19:30 +0000279 /* int fd_in */
280 printfd(tcp, tcp->u_arg[0]);
281 tprints(", ");
282 /* int fd_out */
283 printfd(tcp, tcp->u_arg[1]);
284 tprints(", ");
285 /* size_t len */
286 tprintf("%lu, ", tcp->u_arg[2]);
287 /* unsigned int flags */
288 printflags(splice_flags, tcp->u_arg[3], "SPLICE_F_???");
289
290 return RVAL_DECODED;
Dmitry V. Levind99e48c2011-10-11 17:07:05 +0000291}
292
Dmitry V. Levina0bd3742015-04-07 01:36:50 +0000293SYS_FUNC(splice)
Dmitry V. Levind99e48c2011-10-11 17:07:05 +0000294{
Dmitry V. Levin1f255fd2015-07-20 11:19:30 +0000295 /* int fd_in */
296 printfd(tcp, tcp->u_arg[0]);
297 tprints(", ");
298 /* loff_t *off_in */
Dmitry V. Levin16a52b42016-02-13 22:31:30 +0000299 printnum_int64(tcp, tcp->u_arg[1], "%" PRId64);
Dmitry V. Levin1f255fd2015-07-20 11:19:30 +0000300 tprints(", ");
301 /* int fd_out */
302 printfd(tcp, tcp->u_arg[2]);
303 tprints(", ");
304 /* loff_t *off_out */
Dmitry V. Levin16a52b42016-02-13 22:31:30 +0000305 printnum_int64(tcp, tcp->u_arg[3], "%" PRId64);
Dmitry V. Levin1f255fd2015-07-20 11:19:30 +0000306 tprints(", ");
307 /* size_t len */
308 tprintf("%lu, ", tcp->u_arg[4]);
309 /* unsigned int flags */
310 printflags(splice_flags, tcp->u_arg[5], "SPLICE_F_???");
311
312 return RVAL_DECODED;
Dmitry V. Levind99e48c2011-10-11 17:07:05 +0000313}
314
Dmitry V. Levina0bd3742015-04-07 01:36:50 +0000315SYS_FUNC(vmsplice)
Dmitry V. Levind99e48c2011-10-11 17:07:05 +0000316{
Dmitry V. Levin1f255fd2015-07-20 11:19:30 +0000317 /* int fd */
318 printfd(tcp, tcp->u_arg[0]);
319 tprints(", ");
320 /* const struct iovec *iov, unsigned long nr_segs */
Fabien Siron2a54d8b2016-06-22 13:27:03 +0000321 tprint_iov(tcp, tcp->u_arg[2], tcp->u_arg[1], IOV_DECODE_STR);
Dmitry V. Levin1f255fd2015-07-20 11:19:30 +0000322 tprintf(", %lu, ", tcp->u_arg[2]);
323 /* unsigned int flags */
324 printflags(splice_flags, tcp->u_arg[3], "SPLICE_F_???");
325
326 return RVAL_DECODED;
Dmitry V. Levind99e48c2011-10-11 17:07:05 +0000327}