blob: 30ed5781a71cc56bd1ddafe5de039ae86a117203 [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))
42 tprintf("%#lx", tcp->u_arg[1]);
43 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;
86 int failed = 0;
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +000087
88 if (!len) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +020089 tprints("[]");
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +000090 return;
91 }
Dmitry V. Levin4ebb4e32006-12-13 17:08:08 +000092 size = len * sizeof_iov;
Roland McGrathaa524c82005-06-01 19:22:06 +000093 end = addr + size;
Dmitry V. Levin4ebb4e32006-12-13 17:08:08 +000094 if (!verbose(tcp) || size / sizeof_iov != len || end < addr) {
Roland McGrathaa524c82005-06-01 19:22:06 +000095 tprintf("%#lx", 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 }
Denys Vlasenko7e69ed92015-03-21 19:50:53 +0100113 if (umoven(tcp, cur, sizeof_iov, &iov) < 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200114 tprints("?");
Roland McGrathaa524c82005-06-01 19:22:06 +0000115 failed = 1;
116 break;
117 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200118 tprints("{");
Denys Vlasenkoe0bc2222012-04-28 14:26:18 +0200119 if (decode_iov) {
120 unsigned long len = iov_iov_len;
121 if (len > data_size)
122 len = data_size;
123 data_size -= len;
124 printstr(tcp, (long) iov_iov_base, len);
125 } else
Dmitry V. Levin88849682011-06-13 22:58:44 +0000126 tprintf("%#lx", (long) iov_iov_base);
Dmitry V. Levin4ebb4e32006-12-13 17:08:08 +0000127 tprintf(", %lu}", (unsigned long)iov_iov_len);
Roland McGrathaa524c82005-06-01 19:22:06 +0000128 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200129 tprints("]");
Roland McGrathaa524c82005-06-01 19:22:06 +0000130 if (failed)
131 tprintf(" %#lx", addr);
Dmitry V. Levin4ebb4e32006-12-13 17:08:08 +0000132#undef sizeof_iov
133#undef iov_iov_base
134#undef iov_iov_len
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000135}
136
Denys Vlasenkoe0bc2222012-04-28 14:26:18 +0200137void
138tprint_iov(struct tcb *tcp, unsigned long len, unsigned long addr, int decode_iov)
139{
Dmitry V. Levin043b5f82012-05-01 20:30:02 +0000140 tprint_iov_upto(tcp, len, addr, decode_iov, (unsigned long) -1L);
Denys Vlasenkoe0bc2222012-04-28 14:26:18 +0200141}
142
Dmitry V. Levina0bd3742015-04-07 01:36:50 +0000143SYS_FUNC(readv)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000144{
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000145 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +0300146 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200147 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000148 } else {
149 if (syserror(tcp)) {
150 tprintf("%#lx, %lu",
151 tcp->u_arg[1], tcp->u_arg[2]);
152 return 0;
153 }
Dmitry V. Levin88849682011-06-13 22:58:44 +0000154 tprint_iov(tcp, tcp->u_arg[2], tcp->u_arg[1], 1);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000155 tprintf(", %lu", tcp->u_arg[2]);
156 }
157 return 0;
158}
159
Dmitry V. Levina0bd3742015-04-07 01:36:50 +0000160SYS_FUNC(writev)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000161{
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000162 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +0300163 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200164 tprints(", ");
Dmitry V. Levin88849682011-06-13 22:58:44 +0000165 tprint_iov(tcp, tcp->u_arg[2], tcp->u_arg[1], 1);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000166 tprintf(", %lu", tcp->u_arg[2]);
167 }
168 return 0;
169}
170
Roland McGrathc0f8bbd2003-08-21 09:58:00 +0000171/* The SH4 ABI does allow long longs in odd-numbered registers, but
172 does not allow them to be split between registers and memory - and
173 there are only four argument registers for normal functions. As a
174 result pread takes an extra padding argument before the offset. This
175 was changed late in the 2.4 series (around 2.4.20). */
176#if defined(SH)
177#define PREAD_OFFSET_ARG 4
178#else
179#define PREAD_OFFSET_ARG 3
180#endif
181
Dmitry V. Levina0bd3742015-04-07 01:36:50 +0000182SYS_FUNC(pread)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000183{
184 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +0300185 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200186 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000187 } else {
188 if (syserror(tcp))
189 tprintf("%#lx", tcp->u_arg[1]);
190 else
191 printstr(tcp, tcp->u_arg[1], tcp->u_rval);
Andreas Schwabb5600fc2009-11-04 17:08:34 +0100192 tprintf(", %lu, ", tcp->u_arg[2]);
Dmitry V. Levin3c49b022014-08-07 00:07:28 +0000193 printllval(tcp, "%llu", PREAD_OFFSET_ARG);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000194 }
195 return 0;
196}
197
Dmitry V. Levina0bd3742015-04-07 01:36:50 +0000198SYS_FUNC(pwrite)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000199{
200 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +0300201 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200202 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000203 printstr(tcp, tcp->u_arg[1], tcp->u_arg[2]);
Andreas Schwabb5600fc2009-11-04 17:08:34 +0100204 tprintf(", %lu, ", tcp->u_arg[2]);
Dmitry V. Levin3c49b022014-08-07 00:07:28 +0000205 printllval(tcp, "%llu", PREAD_OFFSET_ARG);
Wichert Akkerman2e2553a1999-05-09 00:29:58 +0000206 }
207 return 0;
208}
209
Dmitry V. Levin3c49b022014-08-07 00:07:28 +0000210static void
211print_llu_from_low_high_val(struct tcb *tcp, int arg)
212{
213#if SIZEOF_LONG == SIZEOF_LONG_LONG
Dmitry V. Levin5de5a7a2015-01-23 20:04:37 +0000214# if SUPPORTED_PERSONALITIES > 1
215 if (current_wordsize == sizeof(long))
216# endif
217 tprintf("%lu", (unsigned long) tcp->u_arg[arg]);
218# if SUPPORTED_PERSONALITIES > 1
219 else
220 tprintf("%lu",
221 ((unsigned long) tcp->u_arg[arg + 1] << current_wordsize * 8)
222 | (unsigned long) tcp->u_arg[arg]);
223# endif
Dmitry V. Levin3c49b022014-08-07 00:07:28 +0000224#else
225# ifdef X32
226 if (current_personality == 0)
227 tprintf("%llu", (unsigned long long) tcp->ext_arg[arg]);
228 else
229# endif
230 tprintf("%llu",
Dmitry V. Levin20b84a62014-08-07 11:42:46 +0000231 ((unsigned long long) (unsigned long) tcp->u_arg[arg + 1] << sizeof(long) * 8)
232 | (unsigned long long) (unsigned long) tcp->u_arg[arg]);
Dmitry V. Levin3c49b022014-08-07 00:07:28 +0000233#endif
234}
235
Dmitry V. Levina0bd3742015-04-07 01:36:50 +0000236SYS_FUNC(preadv)
Damir Shayhutdinov3087dd62011-05-12 16:57:40 +0400237{
238 if (entering(tcp)) {
239 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200240 tprints(", ");
Damir Shayhutdinov3087dd62011-05-12 16:57:40 +0400241 } else {
242 if (syserror(tcp)) {
243 tprintf("%#lx, %lu", tcp->u_arg[1], tcp->u_arg[2]);
244 return 0;
245 }
Dmitry V. Levin88849682011-06-13 22:58:44 +0000246 tprint_iov(tcp, tcp->u_arg[2], tcp->u_arg[1], 1);
Damir Shayhutdinov3087dd62011-05-12 16:57:40 +0400247 tprintf(", %lu, ", tcp->u_arg[2]);
Dmitry V. Levin3c49b022014-08-07 00:07:28 +0000248 print_llu_from_low_high_val(tcp, 3);
Damir Shayhutdinov3087dd62011-05-12 16:57:40 +0400249 }
250 return 0;
251}
252
Dmitry V. Levina0bd3742015-04-07 01:36:50 +0000253SYS_FUNC(pwritev)
Damir Shayhutdinov3087dd62011-05-12 16:57:40 +0400254{
255 if (entering(tcp)) {
256 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200257 tprints(", ");
Dmitry V. Levin88849682011-06-13 22:58:44 +0000258 tprint_iov(tcp, tcp->u_arg[2], tcp->u_arg[1], 1);
Damir Shayhutdinov3087dd62011-05-12 16:57:40 +0400259 tprintf(", %lu, ", tcp->u_arg[2]);
Dmitry V. Levin3c49b022014-08-07 00:07:28 +0000260 print_llu_from_low_high_val(tcp, 3);
Damir Shayhutdinov3087dd62011-05-12 16:57:40 +0400261 }
262 return 0;
263}
Damir Shayhutdinov3087dd62011-05-12 16:57:40 +0400264
Dmitry V. Levin2c42f322013-03-20 09:48:44 +0000265static void
266print_off_t(struct tcb *tcp, long addr)
267{
268 unsigned long offset;
269
270 if (!addr) {
271 tprints("NULL");
272 return;
273 }
274
275#if SUPPORTED_PERSONALITIES > 1 && SIZEOF_LONG > 4
276 if (current_wordsize == 4) {
277 uint32_t off;
278
279 if (umove(tcp, addr, &off) < 0)
280 tprintf("%#lx", addr);
281 else
282 tprintf("[%u]", off);
283 } else
284#endif
285 if (umove(tcp, addr, &offset) < 0)
286 tprintf("%#lx", addr);
287 else
288 tprintf("[%lu]", offset);
289}
290
Dmitry V. Levina0bd3742015-04-07 01:36:50 +0000291SYS_FUNC(sendfile)
Wichert Akkerman2e2553a1999-05-09 00:29:58 +0000292{
293 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +0300294 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200295 tprints(", ");
Dmitry V. Levin31382132011-03-04 05:08:02 +0300296 printfd(tcp, tcp->u_arg[1]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200297 tprints(", ");
Dmitry V. Levin2c42f322013-03-20 09:48:44 +0000298 print_off_t(tcp, tcp->u_arg[2]);
Wichert Akkerman2e2553a1999-05-09 00:29:58 +0000299 tprintf(", %lu", tcp->u_arg[3]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000300 }
301 return 0;
302}
303
Mike Frysinger0cbed352012-04-04 22:22:01 -0400304void
Dmitry V. Levind99e48c2011-10-11 17:07:05 +0000305print_loff_t(struct tcb *tcp, long addr)
306{
307 loff_t offset;
308
309 if (!addr)
310 tprints("NULL");
311 else if (umove(tcp, addr, &offset) < 0)
312 tprintf("%#lx", addr);
313 else
314 tprintf("[%llu]", (unsigned long long int) offset);
315}
316
Dmitry V. Levina0bd3742015-04-07 01:36:50 +0000317SYS_FUNC(sendfile64)
Roland McGrath186c5ac2002-12-15 23:58:23 +0000318{
319 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +0300320 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200321 tprints(", ");
Dmitry V. Levin31382132011-03-04 05:08:02 +0300322 printfd(tcp, tcp->u_arg[1]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200323 tprints(", ");
Dmitry V. Levind99e48c2011-10-11 17:07:05 +0000324 print_loff_t(tcp, tcp->u_arg[2]);
Roland McGrath186c5ac2002-12-15 23:58:23 +0000325 tprintf(", %lu", tcp->u_arg[3]);
326 }
327 return 0;
328}
329
Dmitry V. Levin0ed617b2014-04-25 23:30:54 +0000330#include "xlat/splice_flags.h"
Dmitry V. Levind99e48c2011-10-11 17:07:05 +0000331
Dmitry V. Levina0bd3742015-04-07 01:36:50 +0000332SYS_FUNC(tee)
Dmitry V. Levind99e48c2011-10-11 17:07:05 +0000333{
334 if (entering(tcp)) {
335 /* int fd_in */
336 printfd(tcp, tcp->u_arg[0]);
337 tprints(", ");
338 /* int fd_out */
339 printfd(tcp, tcp->u_arg[1]);
340 tprints(", ");
341 /* size_t len */
342 tprintf("%lu, ", tcp->u_arg[2]);
343 /* unsigned int flags */
344 printflags(splice_flags, tcp->u_arg[3], "SPLICE_F_???");
345 }
346 return 0;
347}
348
Dmitry V. Levina0bd3742015-04-07 01:36:50 +0000349SYS_FUNC(splice)
Dmitry V. Levind99e48c2011-10-11 17:07:05 +0000350{
351 if (entering(tcp)) {
352 /* int fd_in */
353 printfd(tcp, tcp->u_arg[0]);
354 tprints(", ");
355 /* loff_t *off_in */
356 print_loff_t(tcp, tcp->u_arg[1]);
357 tprints(", ");
358 /* int fd_out */
359 printfd(tcp, tcp->u_arg[2]);
360 tprints(", ");
361 /* loff_t *off_out */
362 print_loff_t(tcp, tcp->u_arg[3]);
363 tprints(", ");
364 /* size_t len */
365 tprintf("%lu, ", tcp->u_arg[4]);
366 /* unsigned int flags */
367 printflags(splice_flags, tcp->u_arg[5], "SPLICE_F_???");
368 }
369 return 0;
370}
371
Dmitry V. Levina0bd3742015-04-07 01:36:50 +0000372SYS_FUNC(vmsplice)
Dmitry V. Levind99e48c2011-10-11 17:07:05 +0000373{
374 if (entering(tcp)) {
375 /* int fd */
376 printfd(tcp, tcp->u_arg[0]);
377 tprints(", ");
378 /* const struct iovec *iov, unsigned long nr_segs */
379 tprint_iov(tcp, tcp->u_arg[2], tcp->u_arg[1], 1);
Dmitry V. Levin0bfd7442012-03-10 14:03:25 +0000380 tprintf(", %lu, ", tcp->u_arg[2]);
Dmitry V. Levind99e48c2011-10-11 17:07:05 +0000381 /* unsigned int flags */
382 printflags(splice_flags, tcp->u_arg[3], "SPLICE_F_???");
383 }
384 return 0;
385}
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000386
Dmitry V. Levina0bd3742015-04-07 01:36:50 +0000387SYS_FUNC(ioctl)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000388{
Denys Vlasenkoa9fe13c2013-02-22 13:26:10 +0100389 const struct_ioctlent *iop;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000390
391 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +0300392 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200393 tprints(", ");
Gabriel Laskar6f9a01c2015-01-21 23:35:27 +0100394 if (!ioctl_decode_command_number(tcp->u_arg[1])) {
395 iop = ioctl_lookup(tcp->u_arg[1]);
396 if (iop) {
397 tprints(iop->symbol);
398 while ((iop = ioctl_next_match(iop)))
399 tprintf(" or %s", iop->symbol);
400 } else {
401 ioctl_print_code(tcp->u_arg[1]);
402 }
403 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000404 ioctl_decode(tcp, tcp->u_arg[1], tcp->u_arg[2]);
405 }
406 else {
Denys Vlasenko5d645812011-08-20 12:48:18 +0200407 int ret = ioctl_decode(tcp, tcp->u_arg[1], tcp->u_arg[2]);
408 if (!ret)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000409 tprintf(", %#lx", tcp->u_arg[2]);
John Hughes38ae88d2002-05-23 11:48:58 +0000410 else
411 return ret - 1;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000412 }
413 return 0;
414}