blob: b98bc8a13c03bf5665b964662c0978dfef4687bf [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
Denys Vlasenkoe0bc2222012-04-28 14:26:18 +020060/*
61 * data_size limits the cumulative size of printed data.
62 * Example: recvmsg returing a short read.
63 */
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +000064void
Denys Vlasenkoe0bc2222012-04-28 14:26:18 +020065tprint_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 +000066{
Dmitry V. Levinb172a942015-09-15 02:17:32 +000067 unsigned long iov[2];
Roland McGrathaa524c82005-06-01 19:22:06 +000068 unsigned long size, cur, end, abbrev_end;
Dmitry V. Levinb172a942015-09-15 02:17:32 +000069 const unsigned long sizeof_iov = current_wordsize * 2;
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +000070
71 if (!len) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +020072 tprints("[]");
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +000073 return;
74 }
Dmitry V. Levin4ebb4e32006-12-13 17:08:08 +000075 size = len * sizeof_iov;
Roland McGrathaa524c82005-06-01 19:22:06 +000076 end = addr + size;
Dmitry V. Levin43b5a1f2015-07-20 11:06:54 +000077 if (!verbose(tcp) || (exiting(tcp) && syserror(tcp)) ||
78 !addr || size / sizeof_iov != len || end < addr) {
79 printaddr(addr);
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +000080 return;
81 }
Roland McGrathaa524c82005-06-01 19:22:06 +000082 if (abbrev(tcp)) {
Dmitry V. Levin4ebb4e32006-12-13 17:08:08 +000083 abbrev_end = addr + max_strlen * sizeof_iov;
Roland McGrathaa524c82005-06-01 19:22:06 +000084 if (abbrev_end < addr)
85 abbrev_end = end;
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +000086 } else {
Roland McGrathaa524c82005-06-01 19:22:06 +000087 abbrev_end = end;
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +000088 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +020089 tprints("[");
Dmitry V. Levin4ebb4e32006-12-13 17:08:08 +000090 for (cur = addr; cur < end; cur += sizeof_iov) {
Roland McGrathaa524c82005-06-01 19:22:06 +000091 if (cur > addr)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +020092 tprints(", ");
Roland McGrathaa524c82005-06-01 19:22:06 +000093 if (cur >= abbrev_end) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +020094 tprints("...");
Roland McGrathaa524c82005-06-01 19:22:06 +000095 break;
96 }
Dmitry V. Levinb172a942015-09-15 02:17:32 +000097 if (umove_ulong_array_or_printaddr(tcp, cur, iov,
98 ARRAY_SIZE(iov)))
Roland McGrathaa524c82005-06-01 19:22:06 +000099 break;
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200100 tprints("{");
Denys Vlasenkoe0bc2222012-04-28 14:26:18 +0200101 if (decode_iov) {
Dmitry V. Levinb172a942015-09-15 02:17:32 +0000102 unsigned long len = iov[1];
Denys Vlasenkoe0bc2222012-04-28 14:26:18 +0200103 if (len > data_size)
104 len = data_size;
105 data_size -= len;
Dmitry V. Levinb172a942015-09-15 02:17:32 +0000106 printstr(tcp, iov[0], len);
Denys Vlasenkoe0bc2222012-04-28 14:26:18 +0200107 } else
Dmitry V. Levinb172a942015-09-15 02:17:32 +0000108 printaddr(iov[0]);
109 tprintf(", %lu}", iov[1]);
Roland McGrathaa524c82005-06-01 19:22:06 +0000110 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200111 tprints("]");
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000112}
113
Denys Vlasenkoe0bc2222012-04-28 14:26:18 +0200114void
115tprint_iov(struct tcb *tcp, unsigned long len, unsigned long addr, int decode_iov)
116{
Dmitry V. Levin043b5f82012-05-01 20:30:02 +0000117 tprint_iov_upto(tcp, len, addr, decode_iov, (unsigned long) -1L);
Denys Vlasenkoe0bc2222012-04-28 14:26:18 +0200118}
119
Dmitry V. Levina0bd3742015-04-07 01:36:50 +0000120SYS_FUNC(readv)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000121{
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000122 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +0300123 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200124 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000125 } else {
Dmitry V. Levin05a0af62016-01-20 00:17:02 +0000126 tprint_iov_upto(tcp, tcp->u_arg[2], tcp->u_arg[1], 1,
127 tcp->u_rval);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000128 tprintf(", %lu", tcp->u_arg[2]);
129 }
130 return 0;
131}
132
Dmitry V. Levina0bd3742015-04-07 01:36:50 +0000133SYS_FUNC(writev)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000134{
Dmitry V. Levin1f255fd2015-07-20 11:19:30 +0000135 printfd(tcp, tcp->u_arg[0]);
136 tprints(", ");
137 tprint_iov(tcp, tcp->u_arg[2], tcp->u_arg[1], 1);
138 tprintf(", %lu", tcp->u_arg[2]);
139
140 return RVAL_DECODED;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000141}
142
Roland McGrathc0f8bbd2003-08-21 09:58:00 +0000143/* The SH4 ABI does allow long longs in odd-numbered registers, but
144 does not allow them to be split between registers and memory - and
145 there are only four argument registers for normal functions. As a
146 result pread takes an extra padding argument before the offset. This
147 was changed late in the 2.4 series (around 2.4.20). */
148#if defined(SH)
149#define PREAD_OFFSET_ARG 4
150#else
151#define PREAD_OFFSET_ARG 3
152#endif
153
Dmitry V. Levina0bd3742015-04-07 01:36:50 +0000154SYS_FUNC(pread)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000155{
156 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +0300157 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200158 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000159 } else {
160 if (syserror(tcp))
Dmitry V. Levin43b5a1f2015-07-20 11:06:54 +0000161 printaddr(tcp->u_arg[1]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000162 else
163 printstr(tcp, tcp->u_arg[1], tcp->u_rval);
Andreas Schwabb5600fc2009-11-04 17:08:34 +0100164 tprintf(", %lu, ", tcp->u_arg[2]);
Dmitry V. Levin3c49b022014-08-07 00:07:28 +0000165 printllval(tcp, "%llu", PREAD_OFFSET_ARG);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000166 }
167 return 0;
168}
169
Dmitry V. Levina0bd3742015-04-07 01:36:50 +0000170SYS_FUNC(pwrite)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000171{
Dmitry V. Levin1f255fd2015-07-20 11:19:30 +0000172 printfd(tcp, tcp->u_arg[0]);
173 tprints(", ");
174 printstr(tcp, tcp->u_arg[1], tcp->u_arg[2]);
175 tprintf(", %lu, ", tcp->u_arg[2]);
176 printllval(tcp, "%llu", PREAD_OFFSET_ARG);
177
178 return RVAL_DECODED;
Wichert Akkerman2e2553a1999-05-09 00:29:58 +0000179}
180
Dmitry V. Levin3c49b022014-08-07 00:07:28 +0000181static void
182print_llu_from_low_high_val(struct tcb *tcp, int arg)
183{
184#if SIZEOF_LONG == SIZEOF_LONG_LONG
Dmitry V. Levin5de5a7a2015-01-23 20:04:37 +0000185# if SUPPORTED_PERSONALITIES > 1
Dmitry V. Levinc6e5e2c2015-11-26 20:29:25 +0000186# ifdef X86_64
187 if (current_personality != 1)
188# else
Dmitry V. Levin5de5a7a2015-01-23 20:04:37 +0000189 if (current_wordsize == sizeof(long))
Dmitry V. Levinc6e5e2c2015-11-26 20:29:25 +0000190# endif
Dmitry V. Levin5de5a7a2015-01-23 20:04:37 +0000191# endif
192 tprintf("%lu", (unsigned long) tcp->u_arg[arg]);
193# if SUPPORTED_PERSONALITIES > 1
194 else
195 tprintf("%lu",
196 ((unsigned long) tcp->u_arg[arg + 1] << current_wordsize * 8)
197 | (unsigned long) tcp->u_arg[arg]);
198# endif
Dmitry V. Levin3c49b022014-08-07 00:07:28 +0000199#else
200# ifdef X32
201 if (current_personality == 0)
202 tprintf("%llu", (unsigned long long) tcp->ext_arg[arg]);
203 else
204# endif
205 tprintf("%llu",
Dmitry V. Levin20b84a62014-08-07 11:42:46 +0000206 ((unsigned long long) (unsigned long) tcp->u_arg[arg + 1] << sizeof(long) * 8)
207 | (unsigned long long) (unsigned long) tcp->u_arg[arg]);
Dmitry V. Levin3c49b022014-08-07 00:07:28 +0000208#endif
209}
210
Dmitry V. Levina0bd3742015-04-07 01:36:50 +0000211SYS_FUNC(preadv)
Damir Shayhutdinov3087dd62011-05-12 16:57:40 +0400212{
213 if (entering(tcp)) {
214 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200215 tprints(", ");
Damir Shayhutdinov3087dd62011-05-12 16:57:40 +0400216 } else {
Dmitry V. Levin88849682011-06-13 22:58:44 +0000217 tprint_iov(tcp, tcp->u_arg[2], tcp->u_arg[1], 1);
Damir Shayhutdinov3087dd62011-05-12 16:57:40 +0400218 tprintf(", %lu, ", tcp->u_arg[2]);
Dmitry V. Levin3c49b022014-08-07 00:07:28 +0000219 print_llu_from_low_high_val(tcp, 3);
Damir Shayhutdinov3087dd62011-05-12 16:57:40 +0400220 }
221 return 0;
222}
223
Dmitry V. Levina0bd3742015-04-07 01:36:50 +0000224SYS_FUNC(pwritev)
Damir Shayhutdinov3087dd62011-05-12 16:57:40 +0400225{
Dmitry V. Levin1f255fd2015-07-20 11:19:30 +0000226 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]);
230 print_llu_from_low_high_val(tcp, 3);
231
232 return RVAL_DECODED;
Damir Shayhutdinov3087dd62011-05-12 16:57:40 +0400233}
Damir Shayhutdinov3087dd62011-05-12 16:57:40 +0400234
Dmitry V. Levin0ed617b2014-04-25 23:30:54 +0000235#include "xlat/splice_flags.h"
Dmitry V. Levind99e48c2011-10-11 17:07:05 +0000236
Dmitry V. Levina0bd3742015-04-07 01:36:50 +0000237SYS_FUNC(tee)
Dmitry V. Levind99e48c2011-10-11 17:07:05 +0000238{
Dmitry V. Levin1f255fd2015-07-20 11:19:30 +0000239 /* 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. Levind99e48c2011-10-11 17:07:05 +0000251}
252
Dmitry V. Levina0bd3742015-04-07 01:36:50 +0000253SYS_FUNC(splice)
Dmitry V. Levind99e48c2011-10-11 17:07:05 +0000254{
Dmitry V. Levin1f255fd2015-07-20 11:19:30 +0000255 /* int fd_in */
256 printfd(tcp, tcp->u_arg[0]);
257 tprints(", ");
258 /* loff_t *off_in */
259 printnum_int64(tcp, tcp->u_arg[1], "%" PRIu64);
260 tprints(", ");
261 /* int fd_out */
262 printfd(tcp, tcp->u_arg[2]);
263 tprints(", ");
264 /* loff_t *off_out */
265 printnum_int64(tcp, tcp->u_arg[3], "%" PRIu64);
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. Levind99e48c2011-10-11 17:07:05 +0000273}
274
Dmitry V. Levina0bd3742015-04-07 01:36:50 +0000275SYS_FUNC(vmsplice)
Dmitry V. Levind99e48c2011-10-11 17:07:05 +0000276{
Dmitry V. Levin1f255fd2015-07-20 11:19:30 +0000277 /* 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. Levind99e48c2011-10-11 17:07:05 +0000287}