blob: 6b3f4b70d9f8c665198dd33a8690f5b1235c78d0 [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>
John Hughes1d08dcf2001-07-10 13:48:44 +000033#if HAVE_SYS_UIO_H
Denys Vlasenkoa6d91de2012-03-16 12:02:22 +010034# include <sys/uio.h>
John Hughes1d08dcf2001-07-10 13:48:44 +000035#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000036
37int
Dmitry V. Levin31382132011-03-04 05:08:02 +030038sys_read(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000039{
40 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +030041 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +020042 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000043 } else {
44 if (syserror(tcp))
45 tprintf("%#lx", tcp->u_arg[1]);
46 else
47 printstr(tcp, tcp->u_arg[1], tcp->u_rval);
48 tprintf(", %lu", tcp->u_arg[2]);
49 }
50 return 0;
51}
52
53int
Dmitry V. Levin31382132011-03-04 05:08:02 +030054sys_write(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000055{
56 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +030057 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +020058 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000059 printstr(tcp, tcp->u_arg[1], tcp->u_arg[2]);
60 tprintf(", %lu", tcp->u_arg[2]);
61 }
62 return 0;
63}
64
John Hughes1d08dcf2001-07-10 13:48:44 +000065#if HAVE_SYS_UIO_H
Denys Vlasenkoe0bc2222012-04-28 14:26:18 +020066/*
67 * data_size limits the cumulative size of printed data.
68 * Example: recvmsg returing a short read.
69 */
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +000070void
Denys Vlasenkoe0bc2222012-04-28 14:26:18 +020071tprint_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 +000072{
Denys Vlasenko84703742012-02-25 02:38:52 +010073#if SUPPORTED_PERSONALITIES > 1
Dmitry V. Levin4ebb4e32006-12-13 17:08:08 +000074 union {
75 struct { u_int32_t base; u_int32_t len; } iov32;
76 struct { u_int64_t base; u_int64_t len; } iov64;
77 } iov;
78#define sizeof_iov \
Denys Vlasenko9fd4f962012-03-19 09:36:42 +010079 (current_wordsize == 4 ? sizeof(iov.iov32) : sizeof(iov.iov64))
Dmitry V. Levin4ebb4e32006-12-13 17:08:08 +000080#define iov_iov_base \
Denys Vlasenko9fd4f962012-03-19 09:36:42 +010081 (current_wordsize == 4 ? (uint64_t) iov.iov32.base : iov.iov64.base)
Dmitry V. Levin4ebb4e32006-12-13 17:08:08 +000082#define iov_iov_len \
Denys Vlasenko9fd4f962012-03-19 09:36:42 +010083 (current_wordsize == 4 ? (uint64_t) iov.iov32.len : iov.iov64.len)
Dmitry V. Levin4ebb4e32006-12-13 17:08:08 +000084#else
Roland McGrathaa524c82005-06-01 19:22:06 +000085 struct iovec iov;
Dmitry V. Levin4ebb4e32006-12-13 17:08:08 +000086#define sizeof_iov sizeof(iov)
87#define iov_iov_base iov.iov_base
88#define iov_iov_len iov.iov_len
89#endif
Roland McGrathaa524c82005-06-01 19:22:06 +000090 unsigned long size, cur, end, abbrev_end;
91 int failed = 0;
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +000092
93 if (!len) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +020094 tprints("[]");
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +000095 return;
96 }
Dmitry V. Levin4ebb4e32006-12-13 17:08:08 +000097 size = len * sizeof_iov;
Roland McGrathaa524c82005-06-01 19:22:06 +000098 end = addr + size;
Dmitry V. Levin4ebb4e32006-12-13 17:08:08 +000099 if (!verbose(tcp) || size / sizeof_iov != len || end < addr) {
Roland McGrathaa524c82005-06-01 19:22:06 +0000100 tprintf("%#lx", addr);
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000101 return;
102 }
Roland McGrathaa524c82005-06-01 19:22:06 +0000103 if (abbrev(tcp)) {
Dmitry V. Levin4ebb4e32006-12-13 17:08:08 +0000104 abbrev_end = addr + max_strlen * sizeof_iov;
Roland McGrathaa524c82005-06-01 19:22:06 +0000105 if (abbrev_end < addr)
106 abbrev_end = end;
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000107 } else {
Roland McGrathaa524c82005-06-01 19:22:06 +0000108 abbrev_end = end;
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000109 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200110 tprints("[");
Dmitry V. Levin4ebb4e32006-12-13 17:08:08 +0000111 for (cur = addr; cur < end; cur += sizeof_iov) {
Roland McGrathaa524c82005-06-01 19:22:06 +0000112 if (cur > addr)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200113 tprints(", ");
Roland McGrathaa524c82005-06-01 19:22:06 +0000114 if (cur >= abbrev_end) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200115 tprints("...");
Roland McGrathaa524c82005-06-01 19:22:06 +0000116 break;
117 }
Dmitry V. Levin4ebb4e32006-12-13 17:08:08 +0000118 if (umoven(tcp, cur, sizeof_iov, (char *) &iov) < 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200119 tprints("?");
Roland McGrathaa524c82005-06-01 19:22:06 +0000120 failed = 1;
121 break;
122 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200123 tprints("{");
Denys Vlasenkoe0bc2222012-04-28 14:26:18 +0200124 if (decode_iov) {
125 unsigned long len = iov_iov_len;
126 if (len > data_size)
127 len = data_size;
128 data_size -= len;
129 printstr(tcp, (long) iov_iov_base, len);
130 } else
Dmitry V. Levin88849682011-06-13 22:58:44 +0000131 tprintf("%#lx", (long) iov_iov_base);
Dmitry V. Levin4ebb4e32006-12-13 17:08:08 +0000132 tprintf(", %lu}", (unsigned long)iov_iov_len);
Roland McGrathaa524c82005-06-01 19:22:06 +0000133 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200134 tprints("]");
Roland McGrathaa524c82005-06-01 19:22:06 +0000135 if (failed)
136 tprintf(" %#lx", addr);
Dmitry V. Levin4ebb4e32006-12-13 17:08:08 +0000137#undef sizeof_iov
138#undef iov_iov_base
139#undef iov_iov_len
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000140}
141
Denys Vlasenkoe0bc2222012-04-28 14:26:18 +0200142void
143tprint_iov(struct tcb *tcp, unsigned long len, unsigned long addr, int decode_iov)
144{
Dmitry V. Levin043b5f82012-05-01 20:30:02 +0000145 tprint_iov_upto(tcp, len, addr, decode_iov, (unsigned long) -1L);
Denys Vlasenkoe0bc2222012-04-28 14:26:18 +0200146}
147
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000148int
Dmitry V. Levin31382132011-03-04 05:08:02 +0300149sys_readv(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000150{
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000151 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +0300152 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200153 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000154 } else {
155 if (syserror(tcp)) {
156 tprintf("%#lx, %lu",
157 tcp->u_arg[1], tcp->u_arg[2]);
158 return 0;
159 }
Dmitry V. Levin88849682011-06-13 22:58:44 +0000160 tprint_iov(tcp, tcp->u_arg[2], tcp->u_arg[1], 1);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000161 tprintf(", %lu", tcp->u_arg[2]);
162 }
163 return 0;
164}
165
166int
Dmitry V. Levin31382132011-03-04 05:08:02 +0300167sys_writev(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000168{
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000169 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +0300170 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200171 tprints(", ");
Dmitry V. Levin88849682011-06-13 22:58:44 +0000172 tprint_iov(tcp, tcp->u_arg[2], tcp->u_arg[1], 1);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000173 tprintf(", %lu", tcp->u_arg[2]);
174 }
175 return 0;
176}
John Hughes1d08dcf2001-07-10 13:48:44 +0000177#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000178
Roland McGrathc0f8bbd2003-08-21 09:58:00 +0000179/* The SH4 ABI does allow long longs in odd-numbered registers, but
180 does not allow them to be split between registers and memory - and
181 there are only four argument registers for normal functions. As a
182 result pread takes an extra padding argument before the offset. This
183 was changed late in the 2.4 series (around 2.4.20). */
184#if defined(SH)
185#define PREAD_OFFSET_ARG 4
186#else
187#define PREAD_OFFSET_ARG 3
188#endif
189
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000190int
Dmitry V. Levin31382132011-03-04 05:08:02 +0300191sys_pread(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000192{
193 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +0300194 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200195 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000196 } else {
197 if (syserror(tcp))
198 tprintf("%#lx", tcp->u_arg[1]);
199 else
200 printstr(tcp, tcp->u_arg[1], tcp->u_rval);
Andreas Schwabb5600fc2009-11-04 17:08:34 +0100201 tprintf(", %lu, ", tcp->u_arg[2]);
202 printllval(tcp, "%llu", PREAD_OFFSET_ARG);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000203 }
204 return 0;
205}
206
207int
Dmitry V. Levin31382132011-03-04 05:08:02 +0300208sys_pwrite(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000209{
210 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +0300211 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200212 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000213 printstr(tcp, tcp->u_arg[1], tcp->u_arg[2]);
Andreas Schwabb5600fc2009-11-04 17:08:34 +0100214 tprintf(", %lu, ", tcp->u_arg[2]);
215 printllval(tcp, "%llu", PREAD_OFFSET_ARG);
Wichert Akkerman2e2553a1999-05-09 00:29:58 +0000216 }
217 return 0;
218}
219
Damir Shayhutdinov3087dd62011-05-12 16:57:40 +0400220#if HAVE_SYS_UIO_H
221int
222sys_preadv(struct tcb *tcp)
223{
224 if (entering(tcp)) {
225 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200226 tprints(", ");
Damir Shayhutdinov3087dd62011-05-12 16:57:40 +0400227 } else {
228 if (syserror(tcp)) {
229 tprintf("%#lx, %lu", tcp->u_arg[1], tcp->u_arg[2]);
230 return 0;
231 }
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]);
234 printllval(tcp, "%llu", PREAD_OFFSET_ARG);
235 }
236 return 0;
237}
238
239int
240sys_pwritev(struct tcb *tcp)
241{
242 if (entering(tcp)) {
243 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200244 tprints(", ");
Dmitry V. Levin88849682011-06-13 22:58:44 +0000245 tprint_iov(tcp, tcp->u_arg[2], tcp->u_arg[1], 1);
Damir Shayhutdinov3087dd62011-05-12 16:57:40 +0400246 tprintf(", %lu, ", tcp->u_arg[2]);
247 printllval(tcp, "%llu", PREAD_OFFSET_ARG);
248 }
249 return 0;
250}
251#endif /* HAVE_SYS_UIO_H */
252
Wichert Akkerman2e2553a1999-05-09 00:29:58 +0000253int
Dmitry V. Levin31382132011-03-04 05:08:02 +0300254sys_sendfile(struct tcb *tcp)
Wichert Akkerman2e2553a1999-05-09 00:29:58 +0000255{
256 if (entering(tcp)) {
257 off_t offset;
258
Dmitry V. Levin31382132011-03-04 05:08:02 +0300259 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200260 tprints(", ");
Dmitry V. Levin31382132011-03-04 05:08:02 +0300261 printfd(tcp, tcp->u_arg[1]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200262 tprints(", ");
Wichert Akkerman2e2553a1999-05-09 00:29:58 +0000263 if (!tcp->u_arg[2])
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200264 tprints("NULL");
Wichert Akkerman2e2553a1999-05-09 00:29:58 +0000265 else if (umove(tcp, tcp->u_arg[2], &offset) < 0)
266 tprintf("%#lx", tcp->u_arg[2]);
267 else
H.J. Lu6ca26102012-02-03 10:12:10 -0800268#ifdef HAVE_LONG_LONG_OFF_T
269 tprintf("[%llu]", offset);
270#else
Wichert Akkerman2e2553a1999-05-09 00:29:58 +0000271 tprintf("[%lu]", offset);
H.J. Lu6ca26102012-02-03 10:12:10 -0800272#endif
Wichert Akkerman2e2553a1999-05-09 00:29:58 +0000273 tprintf(", %lu", tcp->u_arg[3]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000274 }
275 return 0;
276}
277
Mike Frysinger0cbed352012-04-04 22:22:01 -0400278void
Dmitry V. Levind99e48c2011-10-11 17:07:05 +0000279print_loff_t(struct tcb *tcp, long addr)
280{
281 loff_t offset;
282
283 if (!addr)
284 tprints("NULL");
285 else if (umove(tcp, addr, &offset) < 0)
286 tprintf("%#lx", addr);
287 else
288 tprintf("[%llu]", (unsigned long long int) offset);
289}
290
Roland McGrath186c5ac2002-12-15 23:58:23 +0000291int
Dmitry V. Levin31382132011-03-04 05:08:02 +0300292sys_sendfile64(struct tcb *tcp)
Roland McGrath186c5ac2002-12-15 23:58:23 +0000293{
294 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +0300295 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200296 tprints(", ");
Dmitry V. Levin31382132011-03-04 05:08:02 +0300297 printfd(tcp, tcp->u_arg[1]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200298 tprints(", ");
Dmitry V. Levind99e48c2011-10-11 17:07:05 +0000299 print_loff_t(tcp, tcp->u_arg[2]);
Roland McGrath186c5ac2002-12-15 23:58:23 +0000300 tprintf(", %lu", tcp->u_arg[3]);
301 }
302 return 0;
303}
304
Dmitry V. Levind99e48c2011-10-11 17:07:05 +0000305static const struct xlat splice_flags[] = {
306#ifdef SPLICE_F_MOVE
307 { SPLICE_F_MOVE, "SPLICE_F_MOVE" },
308#endif
309#ifdef SPLICE_F_NONBLOCK
310 { SPLICE_F_NONBLOCK, "SPLICE_F_NONBLOCK" },
311#endif
312#ifdef SPLICE_F_MORE
313 { SPLICE_F_MORE, "SPLICE_F_MORE" },
314#endif
315#ifdef SPLICE_F_GIFT
316 { SPLICE_F_GIFT, "SPLICE_F_GIFT" },
317#endif
318 { 0, NULL },
319};
320
321int
322sys_tee(struct tcb *tcp)
323{
324 if (entering(tcp)) {
325 /* int fd_in */
326 printfd(tcp, tcp->u_arg[0]);
327 tprints(", ");
328 /* int fd_out */
329 printfd(tcp, tcp->u_arg[1]);
330 tprints(", ");
331 /* size_t len */
332 tprintf("%lu, ", tcp->u_arg[2]);
333 /* unsigned int flags */
334 printflags(splice_flags, tcp->u_arg[3], "SPLICE_F_???");
335 }
336 return 0;
337}
338
339int
340sys_splice(struct tcb *tcp)
341{
342 if (entering(tcp)) {
343 /* int fd_in */
344 printfd(tcp, tcp->u_arg[0]);
345 tprints(", ");
346 /* loff_t *off_in */
347 print_loff_t(tcp, tcp->u_arg[1]);
348 tprints(", ");
349 /* int fd_out */
350 printfd(tcp, tcp->u_arg[2]);
351 tprints(", ");
352 /* loff_t *off_out */
353 print_loff_t(tcp, tcp->u_arg[3]);
354 tprints(", ");
355 /* size_t len */
356 tprintf("%lu, ", tcp->u_arg[4]);
357 /* unsigned int flags */
358 printflags(splice_flags, tcp->u_arg[5], "SPLICE_F_???");
359 }
360 return 0;
361}
362
363int
364sys_vmsplice(struct tcb *tcp)
365{
366 if (entering(tcp)) {
367 /* int fd */
368 printfd(tcp, tcp->u_arg[0]);
369 tprints(", ");
370 /* const struct iovec *iov, unsigned long nr_segs */
371 tprint_iov(tcp, tcp->u_arg[2], tcp->u_arg[1], 1);
Dmitry V. Levin0bfd7442012-03-10 14:03:25 +0000372 tprintf(", %lu, ", tcp->u_arg[2]);
Dmitry V. Levind99e48c2011-10-11 17:07:05 +0000373 /* unsigned int flags */
374 printflags(splice_flags, tcp->u_arg[3], "SPLICE_F_???");
375 }
376 return 0;
377}
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000378
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000379int
Dmitry V. Levin31382132011-03-04 05:08:02 +0300380sys_ioctl(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000381{
Roland McGrathee36ce12004-09-04 03:53:10 +0000382 const struct ioctlent *iop;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000383
384 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +0300385 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200386 tprints(", ");
Roland McGrath2843a4e2003-11-14 02:54:03 +0000387 iop = ioctl_lookup(tcp->u_arg[1]);
388 if (iop) {
Denys Vlasenko5940e652011-09-01 09:55:05 +0200389 tprints(iop->symbol);
Roland McGrath2843a4e2003-11-14 02:54:03 +0000390 while ((iop = ioctl_next_match(iop)))
391 tprintf(" or %s", iop->symbol);
392 } else
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000393 tprintf("%#lx", tcp->u_arg[1]);
394 ioctl_decode(tcp, tcp->u_arg[1], tcp->u_arg[2]);
395 }
396 else {
Denys Vlasenko5d645812011-08-20 12:48:18 +0200397 int ret = ioctl_decode(tcp, tcp->u_arg[1], tcp->u_arg[2]);
398 if (!ret)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000399 tprintf(", %#lx", tcp->u_arg[2]);
John Hughes38ae88d2002-05-23 11:48:58 +0000400 else
401 return ret - 1;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000402 }
403 return 0;
404}