blob: 3626c77633e87abd3b00ef8ffb2bf69125d9e794 [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
35int
Dmitry V. Levin31382132011-03-04 05:08:02 +030036sys_read(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000037{
38 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +030039 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +020040 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000041 } else {
42 if (syserror(tcp))
43 tprintf("%#lx", tcp->u_arg[1]);
44 else
45 printstr(tcp, tcp->u_arg[1], tcp->u_rval);
46 tprintf(", %lu", tcp->u_arg[2]);
47 }
48 return 0;
49}
50
51int
Dmitry V. Levin31382132011-03-04 05:08:02 +030052sys_write(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000053{
54 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +030055 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +020056 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000057 printstr(tcp, tcp->u_arg[1], tcp->u_arg[2]);
58 tprintf(", %lu", tcp->u_arg[2]);
59 }
60 return 0;
61}
62
Denys Vlasenkoe0bc2222012-04-28 14:26:18 +020063/*
64 * data_size limits the cumulative size of printed data.
65 * Example: recvmsg returing a short read.
66 */
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +000067void
Denys Vlasenkoe0bc2222012-04-28 14:26:18 +020068tprint_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 +000069{
Denys Vlasenko84703742012-02-25 02:38:52 +010070#if SUPPORTED_PERSONALITIES > 1
Dmitry V. Levin4ebb4e32006-12-13 17:08:08 +000071 union {
72 struct { u_int32_t base; u_int32_t len; } iov32;
73 struct { u_int64_t base; u_int64_t len; } iov64;
74 } iov;
75#define sizeof_iov \
Denys Vlasenko9fd4f962012-03-19 09:36:42 +010076 (current_wordsize == 4 ? sizeof(iov.iov32) : sizeof(iov.iov64))
Dmitry V. Levin4ebb4e32006-12-13 17:08:08 +000077#define iov_iov_base \
Denys Vlasenko9fd4f962012-03-19 09:36:42 +010078 (current_wordsize == 4 ? (uint64_t) iov.iov32.base : iov.iov64.base)
Dmitry V. Levin4ebb4e32006-12-13 17:08:08 +000079#define iov_iov_len \
Denys Vlasenko9fd4f962012-03-19 09:36:42 +010080 (current_wordsize == 4 ? (uint64_t) iov.iov32.len : iov.iov64.len)
Dmitry V. Levin4ebb4e32006-12-13 17:08:08 +000081#else
Roland McGrathaa524c82005-06-01 19:22:06 +000082 struct iovec iov;
Dmitry V. Levin4ebb4e32006-12-13 17:08:08 +000083#define sizeof_iov sizeof(iov)
84#define iov_iov_base iov.iov_base
85#define iov_iov_len iov.iov_len
86#endif
Roland McGrathaa524c82005-06-01 19:22:06 +000087 unsigned long size, cur, end, abbrev_end;
88 int failed = 0;
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +000089
90 if (!len) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +020091 tprints("[]");
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +000092 return;
93 }
Dmitry V. Levin4ebb4e32006-12-13 17:08:08 +000094 size = len * sizeof_iov;
Roland McGrathaa524c82005-06-01 19:22:06 +000095 end = addr + size;
Dmitry V. Levin4ebb4e32006-12-13 17:08:08 +000096 if (!verbose(tcp) || size / sizeof_iov != len || end < addr) {
Roland McGrathaa524c82005-06-01 19:22:06 +000097 tprintf("%#lx", addr);
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +000098 return;
99 }
Roland McGrathaa524c82005-06-01 19:22:06 +0000100 if (abbrev(tcp)) {
Dmitry V. Levin4ebb4e32006-12-13 17:08:08 +0000101 abbrev_end = addr + max_strlen * sizeof_iov;
Roland McGrathaa524c82005-06-01 19:22:06 +0000102 if (abbrev_end < addr)
103 abbrev_end = end;
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000104 } else {
Roland McGrathaa524c82005-06-01 19:22:06 +0000105 abbrev_end = end;
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000106 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200107 tprints("[");
Dmitry V. Levin4ebb4e32006-12-13 17:08:08 +0000108 for (cur = addr; cur < end; cur += sizeof_iov) {
Roland McGrathaa524c82005-06-01 19:22:06 +0000109 if (cur > addr)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200110 tprints(", ");
Roland McGrathaa524c82005-06-01 19:22:06 +0000111 if (cur >= abbrev_end) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200112 tprints("...");
Roland McGrathaa524c82005-06-01 19:22:06 +0000113 break;
114 }
Dmitry V. Levin4ebb4e32006-12-13 17:08:08 +0000115 if (umoven(tcp, cur, sizeof_iov, (char *) &iov) < 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200116 tprints("?");
Roland McGrathaa524c82005-06-01 19:22:06 +0000117 failed = 1;
118 break;
119 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200120 tprints("{");
Denys Vlasenkoe0bc2222012-04-28 14:26:18 +0200121 if (decode_iov) {
122 unsigned long len = iov_iov_len;
123 if (len > data_size)
124 len = data_size;
125 data_size -= len;
126 printstr(tcp, (long) iov_iov_base, len);
127 } else
Dmitry V. Levin88849682011-06-13 22:58:44 +0000128 tprintf("%#lx", (long) iov_iov_base);
Dmitry V. Levin4ebb4e32006-12-13 17:08:08 +0000129 tprintf(", %lu}", (unsigned long)iov_iov_len);
Roland McGrathaa524c82005-06-01 19:22:06 +0000130 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200131 tprints("]");
Roland McGrathaa524c82005-06-01 19:22:06 +0000132 if (failed)
133 tprintf(" %#lx", addr);
Dmitry V. Levin4ebb4e32006-12-13 17:08:08 +0000134#undef sizeof_iov
135#undef iov_iov_base
136#undef iov_iov_len
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000137}
138
Denys Vlasenkoe0bc2222012-04-28 14:26:18 +0200139void
140tprint_iov(struct tcb *tcp, unsigned long len, unsigned long addr, int decode_iov)
141{
Dmitry V. Levin043b5f82012-05-01 20:30:02 +0000142 tprint_iov_upto(tcp, len, addr, decode_iov, (unsigned long) -1L);
Denys Vlasenkoe0bc2222012-04-28 14:26:18 +0200143}
144
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000145int
Dmitry V. Levin31382132011-03-04 05:08:02 +0300146sys_readv(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000147{
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000148 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +0300149 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200150 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000151 } else {
152 if (syserror(tcp)) {
153 tprintf("%#lx, %lu",
154 tcp->u_arg[1], tcp->u_arg[2]);
155 return 0;
156 }
Dmitry V. Levin88849682011-06-13 22:58:44 +0000157 tprint_iov(tcp, tcp->u_arg[2], tcp->u_arg[1], 1);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000158 tprintf(", %lu", tcp->u_arg[2]);
159 }
160 return 0;
161}
162
163int
Dmitry V. Levin31382132011-03-04 05:08:02 +0300164sys_writev(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000165{
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000166 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +0300167 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200168 tprints(", ");
Dmitry V. Levin88849682011-06-13 22:58:44 +0000169 tprint_iov(tcp, tcp->u_arg[2], tcp->u_arg[1], 1);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000170 tprintf(", %lu", tcp->u_arg[2]);
171 }
172 return 0;
173}
174
Roland McGrathc0f8bbd2003-08-21 09:58:00 +0000175/* The SH4 ABI does allow long longs in odd-numbered registers, but
176 does not allow them to be split between registers and memory - and
177 there are only four argument registers for normal functions. As a
178 result pread takes an extra padding argument before the offset. This
179 was changed late in the 2.4 series (around 2.4.20). */
180#if defined(SH)
181#define PREAD_OFFSET_ARG 4
182#else
183#define PREAD_OFFSET_ARG 3
184#endif
185
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000186int
Dmitry V. Levin31382132011-03-04 05:08:02 +0300187sys_pread(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000188{
189 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +0300190 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200191 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000192 } else {
193 if (syserror(tcp))
194 tprintf("%#lx", tcp->u_arg[1]);
195 else
196 printstr(tcp, tcp->u_arg[1], tcp->u_rval);
Andreas Schwabb5600fc2009-11-04 17:08:34 +0100197 tprintf(", %lu, ", tcp->u_arg[2]);
Dmitry V. Levin3c49b022014-08-07 00:07:28 +0000198 printllval(tcp, "%llu", PREAD_OFFSET_ARG);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000199 }
200 return 0;
201}
202
203int
Dmitry V. Levin31382132011-03-04 05:08:02 +0300204sys_pwrite(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000205{
206 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +0300207 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200208 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000209 printstr(tcp, tcp->u_arg[1], tcp->u_arg[2]);
Andreas Schwabb5600fc2009-11-04 17:08:34 +0100210 tprintf(", %lu, ", tcp->u_arg[2]);
Dmitry V. Levin3c49b022014-08-07 00:07:28 +0000211 printllval(tcp, "%llu", PREAD_OFFSET_ARG);
Wichert Akkerman2e2553a1999-05-09 00:29:58 +0000212 }
213 return 0;
214}
215
Dmitry V. Levin3c49b022014-08-07 00:07:28 +0000216static void
217print_llu_from_low_high_val(struct tcb *tcp, int arg)
218{
219#if SIZEOF_LONG == SIZEOF_LONG_LONG
Dmitry V. Levin5de5a7a2015-01-23 20:04:37 +0000220# if SUPPORTED_PERSONALITIES > 1
221 if (current_wordsize == sizeof(long))
222# endif
223 tprintf("%lu", (unsigned long) tcp->u_arg[arg]);
224# if SUPPORTED_PERSONALITIES > 1
225 else
226 tprintf("%lu",
227 ((unsigned long) tcp->u_arg[arg + 1] << current_wordsize * 8)
228 | (unsigned long) tcp->u_arg[arg]);
229# endif
Dmitry V. Levin3c49b022014-08-07 00:07:28 +0000230#else
231# ifdef X32
232 if (current_personality == 0)
233 tprintf("%llu", (unsigned long long) tcp->ext_arg[arg]);
234 else
235# endif
236 tprintf("%llu",
Dmitry V. Levin20b84a62014-08-07 11:42:46 +0000237 ((unsigned long long) (unsigned long) tcp->u_arg[arg + 1] << sizeof(long) * 8)
238 | (unsigned long long) (unsigned long) tcp->u_arg[arg]);
Dmitry V. Levin3c49b022014-08-07 00:07:28 +0000239#endif
240}
241
Damir Shayhutdinov3087dd62011-05-12 16:57:40 +0400242int
243sys_preadv(struct tcb *tcp)
244{
245 if (entering(tcp)) {
246 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200247 tprints(", ");
Damir Shayhutdinov3087dd62011-05-12 16:57:40 +0400248 } else {
249 if (syserror(tcp)) {
250 tprintf("%#lx, %lu", tcp->u_arg[1], tcp->u_arg[2]);
251 return 0;
252 }
Dmitry V. Levin88849682011-06-13 22:58:44 +0000253 tprint_iov(tcp, tcp->u_arg[2], tcp->u_arg[1], 1);
Damir Shayhutdinov3087dd62011-05-12 16:57:40 +0400254 tprintf(", %lu, ", tcp->u_arg[2]);
Dmitry V. Levin3c49b022014-08-07 00:07:28 +0000255 print_llu_from_low_high_val(tcp, 3);
Damir Shayhutdinov3087dd62011-05-12 16:57:40 +0400256 }
257 return 0;
258}
259
260int
261sys_pwritev(struct tcb *tcp)
262{
263 if (entering(tcp)) {
264 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200265 tprints(", ");
Dmitry V. Levin88849682011-06-13 22:58:44 +0000266 tprint_iov(tcp, tcp->u_arg[2], tcp->u_arg[1], 1);
Damir Shayhutdinov3087dd62011-05-12 16:57:40 +0400267 tprintf(", %lu, ", tcp->u_arg[2]);
Dmitry V. Levin3c49b022014-08-07 00:07:28 +0000268 print_llu_from_low_high_val(tcp, 3);
Damir Shayhutdinov3087dd62011-05-12 16:57:40 +0400269 }
270 return 0;
271}
Damir Shayhutdinov3087dd62011-05-12 16:57:40 +0400272
Dmitry V. Levin2c42f322013-03-20 09:48:44 +0000273static void
274print_off_t(struct tcb *tcp, long addr)
275{
276 unsigned long offset;
277
278 if (!addr) {
279 tprints("NULL");
280 return;
281 }
282
283#if SUPPORTED_PERSONALITIES > 1 && SIZEOF_LONG > 4
284 if (current_wordsize == 4) {
285 uint32_t off;
286
287 if (umove(tcp, addr, &off) < 0)
288 tprintf("%#lx", addr);
289 else
290 tprintf("[%u]", off);
291 } else
292#endif
293 if (umove(tcp, addr, &offset) < 0)
294 tprintf("%#lx", addr);
295 else
296 tprintf("[%lu]", offset);
297}
298
Wichert Akkerman2e2553a1999-05-09 00:29:58 +0000299int
Dmitry V. Levin31382132011-03-04 05:08:02 +0300300sys_sendfile(struct tcb *tcp)
Wichert Akkerman2e2553a1999-05-09 00:29:58 +0000301{
302 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +0300303 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200304 tprints(", ");
Dmitry V. Levin31382132011-03-04 05:08:02 +0300305 printfd(tcp, tcp->u_arg[1]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200306 tprints(", ");
Dmitry V. Levin2c42f322013-03-20 09:48:44 +0000307 print_off_t(tcp, tcp->u_arg[2]);
Wichert Akkerman2e2553a1999-05-09 00:29:58 +0000308 tprintf(", %lu", tcp->u_arg[3]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000309 }
310 return 0;
311}
312
Mike Frysinger0cbed352012-04-04 22:22:01 -0400313void
Dmitry V. Levind99e48c2011-10-11 17:07:05 +0000314print_loff_t(struct tcb *tcp, long addr)
315{
316 loff_t offset;
317
318 if (!addr)
319 tprints("NULL");
320 else if (umove(tcp, addr, &offset) < 0)
321 tprintf("%#lx", addr);
322 else
323 tprintf("[%llu]", (unsigned long long int) offset);
324}
325
Roland McGrath186c5ac2002-12-15 23:58:23 +0000326int
Dmitry V. Levin31382132011-03-04 05:08:02 +0300327sys_sendfile64(struct tcb *tcp)
Roland McGrath186c5ac2002-12-15 23:58:23 +0000328{
329 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +0300330 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200331 tprints(", ");
Dmitry V. Levin31382132011-03-04 05:08:02 +0300332 printfd(tcp, tcp->u_arg[1]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200333 tprints(", ");
Dmitry V. Levind99e48c2011-10-11 17:07:05 +0000334 print_loff_t(tcp, tcp->u_arg[2]);
Roland McGrath186c5ac2002-12-15 23:58:23 +0000335 tprintf(", %lu", tcp->u_arg[3]);
336 }
337 return 0;
338}
339
Dmitry V. Levin0ed617b2014-04-25 23:30:54 +0000340#include "xlat/splice_flags.h"
Dmitry V. Levind99e48c2011-10-11 17:07:05 +0000341
342int
343sys_tee(struct tcb *tcp)
344{
345 if (entering(tcp)) {
346 /* int fd_in */
347 printfd(tcp, tcp->u_arg[0]);
348 tprints(", ");
349 /* int fd_out */
350 printfd(tcp, tcp->u_arg[1]);
351 tprints(", ");
352 /* size_t len */
353 tprintf("%lu, ", tcp->u_arg[2]);
354 /* unsigned int flags */
355 printflags(splice_flags, tcp->u_arg[3], "SPLICE_F_???");
356 }
357 return 0;
358}
359
360int
361sys_splice(struct tcb *tcp)
362{
363 if (entering(tcp)) {
364 /* int fd_in */
365 printfd(tcp, tcp->u_arg[0]);
366 tprints(", ");
367 /* loff_t *off_in */
368 print_loff_t(tcp, tcp->u_arg[1]);
369 tprints(", ");
370 /* int fd_out */
371 printfd(tcp, tcp->u_arg[2]);
372 tprints(", ");
373 /* loff_t *off_out */
374 print_loff_t(tcp, tcp->u_arg[3]);
375 tprints(", ");
376 /* size_t len */
377 tprintf("%lu, ", tcp->u_arg[4]);
378 /* unsigned int flags */
379 printflags(splice_flags, tcp->u_arg[5], "SPLICE_F_???");
380 }
381 return 0;
382}
383
384int
385sys_vmsplice(struct tcb *tcp)
386{
387 if (entering(tcp)) {
388 /* int fd */
389 printfd(tcp, tcp->u_arg[0]);
390 tprints(", ");
391 /* const struct iovec *iov, unsigned long nr_segs */
392 tprint_iov(tcp, tcp->u_arg[2], tcp->u_arg[1], 1);
Dmitry V. Levin0bfd7442012-03-10 14:03:25 +0000393 tprintf(", %lu, ", tcp->u_arg[2]);
Dmitry V. Levind99e48c2011-10-11 17:07:05 +0000394 /* unsigned int flags */
395 printflags(splice_flags, tcp->u_arg[3], "SPLICE_F_???");
396 }
397 return 0;
398}
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000399
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000400int
Dmitry V. Levin31382132011-03-04 05:08:02 +0300401sys_ioctl(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000402{
Denys Vlasenkoa9fe13c2013-02-22 13:26:10 +0100403 const struct_ioctlent *iop;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000404
405 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +0300406 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200407 tprints(", ");
Gabriel Laskar6f9a01c2015-01-21 23:35:27 +0100408 if (!ioctl_decode_command_number(tcp->u_arg[1])) {
409 iop = ioctl_lookup(tcp->u_arg[1]);
410 if (iop) {
411 tprints(iop->symbol);
412 while ((iop = ioctl_next_match(iop)))
413 tprintf(" or %s", iop->symbol);
414 } else {
415 ioctl_print_code(tcp->u_arg[1]);
416 }
417 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000418 ioctl_decode(tcp, tcp->u_arg[1], tcp->u_arg[2]);
419 }
420 else {
Denys Vlasenko5d645812011-08-20 12:48:18 +0200421 int ret = ioctl_decode(tcp, tcp->u_arg[1], tcp->u_arg[2]);
422 if (!ret)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000423 tprintf(", %#lx", tcp->u_arg[2]);
John Hughes38ae88d2002-05-23 11:48:58 +0000424 else
425 return ret - 1;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000426 }
427 return 0;
428}