blob: 932c66f2a3a10770ad35b82fad64736ee08cb86b [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.
29 *
30 * $Id$
31 */
32
33#include "defs.h"
34
35#include <fcntl.h>
36#include <sys/file.h>
Roland McGrath93817bf2004-10-06 22:23:31 +000037#include <inttypes.h>
Roland McGrath63d6e542004-10-20 02:17:41 +000038#ifdef HAVE_SYS_EPOLL_H
Roland McGrath93817bf2004-10-06 22:23:31 +000039#include <sys/epoll.h>
40#endif
Roland McGrath37b9f842005-05-09 08:02:00 +000041#ifdef HAVE_LIBAIO_H
42#include <libaio.h>
43#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000044
John Hughes70623be2001-03-08 13:59:00 +000045#if HAVE_LONG_LONG_OFF_T
46/*
47 * Hacks for systems that have a long long off_t
48 */
John Hughesb8c9f772001-03-07 16:53:07 +000049#define flock64 flock /* Horrid hack */
50#define printflock printflock64 /* Horrider hack */
51#endif
52
Roland McGrathd9f816f2004-09-04 03:39:20 +000053static const struct xlat fcntlcmds[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000054 { F_DUPFD, "F_DUPFD" },
55 { F_GETFD, "F_GETFD" },
56 { F_SETFD, "F_SETFD" },
57 { F_GETFL, "F_GETFL" },
58 { F_SETFL, "F_SETFL" },
59 { F_GETLK, "F_GETLK" },
60 { F_SETLK, "F_SETLK" },
61 { F_SETLKW, "F_SETLKW" },
62 { F_GETOWN, "F_GETOWN" },
63 { F_SETOWN, "F_SETOWN" },
64#ifdef F_RSETLK
65 { F_RSETLK, "F_RSETLK" },
66#endif
67#ifdef F_RSETLKW
68 { F_RSETLKW, "F_RSETLKW" },
69#endif
70#ifdef F_RGETLK
71 { F_RGETLK, "F_RGETLK" },
72#endif
73#ifdef F_CNVT
74 { F_CNVT, "F_CNVT" },
75#endif
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +000076#ifdef F_SETSIG
77 { F_SETSIG, "F_SETSIG" },
78#endif
79#ifdef F_GETSIG
80 { F_GETSIG, "F_GETSIG" },
81#endif
John Hughesbdf48f52001-03-06 15:08:09 +000082#ifdef F_CHKFL
83 { F_CHKFL, "F_CHKFL" },
84#endif
85#ifdef F_DUP2FD
86 { F_DUP2FD, "F_DUP2FD" },
87#endif
88#ifdef F_ALLOCSP
89 { F_ALLOCSP, "F_ALLOCSP" },
90#endif
91#ifdef F_ISSTREAM
92 { F_ISSTREAM, "F_ISSTREAM" },
93#endif
94#ifdef F_PRIV
95 { F_PRIV, "F_PRIV" },
96#endif
97#ifdef F_NPRIV
98 { F_NPRIV, "F_NPRIV" },
99#endif
100#ifdef F_QUOTACL
101 { F_QUOTACL, "F_QUOTACL" },
102#endif
103#ifdef F_BLOCKS
104 { F_BLOCKS, "F_BLOCKS" },
105#endif
106#ifdef F_BLKSIZE
107 { F_BLKSIZE, "F_BLKSIZE" },
108#endif
109#ifdef F_GETOWN
110 { F_GETOWN, "F_GETOWN" },
111#endif
112#ifdef F_SETOWN
113 { F_SETOWN, "F_SETOWN" },
114#endif
115#ifdef F_REVOKE
116 { F_REVOKE, "F_REVOKE" },
117#endif
118#ifdef F_SETLK
119 { F_SETLK, "F_SETLK" },
120#endif
121#ifdef F_SETLKW
122 { F_SETLKW, "F_SETLKW" },
123#endif
124#ifdef F_FREESP
125 { F_FREESP, "F_FREESP" },
126#endif
127#ifdef F_GETLK
128 { F_GETLK, "F_GETLK" },
129#endif
130#ifdef F_SETLK64
131 { F_SETLK64, "F_SETLK64" },
132#endif
133#ifdef F_SETLKW64
134 { F_SETLKW64, "F_SETLKW64" },
135#endif
136#ifdef F_FREESP64
137 { F_FREESP64, "F_FREESP64" },
138#endif
139#ifdef F_GETLK64
140 { F_GETLK64, "F_GETLK64" },
141#endif
142#ifdef F_SHARE
143 { F_SHARE, "F_SHARE" },
144#endif
145#ifdef F_UNSHARE
146 { F_UNSHARE, "F_UNSHARE" },
147#endif
Denys Vlasenkoeedaac72009-03-10 20:41:58 +0000148#ifdef F_SETLEASE
149 { F_SETLEASE, "F_SETLEASE" },
150#endif
151#ifdef F_GETLEASE
152 { F_GETLEASE, "F_GETLEASE" },
153#endif
154#ifdef F_NOTIFY
155 { F_NOTIFY, "F_NOTIFY" },
156#endif
157#ifdef F_DUPFD_CLOEXEC
158 { F_DUPFD_CLOEXEC,"F_DUPFD_CLOEXEC"},
159#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000160 { 0, NULL },
161};
162
Roland McGrathd9f816f2004-09-04 03:39:20 +0000163static const struct xlat fdflags[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000164#ifdef FD_CLOEXEC
165 { FD_CLOEXEC, "FD_CLOEXEC" },
166#endif
167 { 0, NULL },
168};
169
170#ifdef LOCK_SH
171
Roland McGrathd9f816f2004-09-04 03:39:20 +0000172static const struct xlat flockcmds[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000173 { LOCK_SH, "LOCK_SH" },
174 { LOCK_EX, "LOCK_EX" },
175 { LOCK_NB, "LOCK_NB" },
176 { LOCK_UN, "LOCK_UN" },
177 { 0, NULL },
178};
179
180#endif /* LOCK_SH */
181
Roland McGrathd9f816f2004-09-04 03:39:20 +0000182static const struct xlat lockfcmds[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000183 { F_RDLCK, "F_RDLCK" },
184 { F_WRLCK, "F_WRLCK" },
185 { F_UNLCK, "F_UNLCK" },
186#ifdef F_EXLCK
187 { F_EXLCK, "F_EXLCK" },
188#endif
189#ifdef F_SHLCK
190 { F_SHLCK, "F_SHLCK" },
191#endif
192 { 0, NULL },
193};
194
Denys Vlasenkoeedaac72009-03-10 20:41:58 +0000195#ifdef F_NOTIFY
196static const struct xlat notifyflags[] = {
197#ifdef DN_ACCESS
198 { DN_ACCESS, "DN_ACCESS" },
199#endif
200#ifdef DN_MODIFY
201 { DN_MODIFY, "DN_MODIFY" },
202#endif
203#ifdef DN_CREATE
204 { DN_CREATE, "DN_CREATE" },
205#endif
206#ifdef DN_DELETE
207 { DN_DELETE, "DN_DELETE" },
208#endif
209#ifdef DN_RENAME
210 { DN_RENAME, "DN_RENAME" },
211#endif
212#ifdef DN_ATTRIB
213 { DN_ATTRIB, "DN_ATTRIB" },
214#endif
215#ifdef DN_MULTISHOT
216 { DN_MULTISHOT, "DN_MULTISHOT" },
217#endif
218 { 0, NULL },
219};
220#endif
221
Roland McGrathd9f816f2004-09-04 03:39:20 +0000222static const struct xlat whence[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000223 { SEEK_SET, "SEEK_SET" },
224 { SEEK_CUR, "SEEK_CUR" },
225 { SEEK_END, "SEEK_END" },
226 { 0, NULL },
227};
228
John Hughes70623be2001-03-08 13:59:00 +0000229#ifndef HAVE_LONG_LONG_OFF_T
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000230/* fcntl/lockf */
231static void
Denys Vlasenko30b5e5a2009-01-06 15:12:52 +0000232printflock(struct tcb *tcp, long addr, int getlk)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000233{
234 struct flock fl;
235
Denys Vlasenko7a862d72009-04-15 13:22:59 +0000236#if SUPPORTED_PERSONALITIES > 1
237 if (personality_wordsize[current_personality] != sizeof(fl.l_start)) {
238 if (personality_wordsize[current_personality] == 4) {
239 /* 32-bit x86 app on x86_64 and similar cases */
240 struct {
241 short int l_type;
242 short int l_whence;
243 int32_t l_start; /* off_t */
244 int32_t l_len; /* off_t */
245 int32_t l_pid; /* pid_t */
246 } fl32;
247 if (umove(tcp, addr, &fl32) < 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200248 tprints("{...}");
Denys Vlasenko7a862d72009-04-15 13:22:59 +0000249 return;
250 }
251 fl.l_type = fl32.l_type;
252 fl.l_whence = fl32.l_whence;
253 fl.l_start = fl32.l_start;
254 fl.l_len = fl32.l_len;
255 fl.l_pid = fl32.l_pid;
256 } else {
257 /* let people know we have a problem here */
258 tprintf("{ <decode error: unsupported wordsize %d> }",
259 personality_wordsize[current_personality]);
260 return;
261 }
262 } else
263#endif
264 {
Denys Vlasenko30b5e5a2009-01-06 15:12:52 +0000265 if (umove(tcp, addr, &fl) < 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200266 tprints("{...}");
Denys Vlasenko30b5e5a2009-01-06 15:12:52 +0000267 return;
268 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000269 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200270 tprints("{type=");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000271 printxval(lockfcmds, fl.l_type, "F_???");
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200272 tprints(", whence=");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000273 printxval(whence, fl.l_whence, "SEEK_???");
274 tprintf(", start=%ld, len=%ld", fl.l_start, fl.l_len);
275 if (getlk)
276 tprintf(", pid=%lu}", (unsigned long) fl.l_pid);
277 else
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200278 tprints("}");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000279}
John Hughesb8c9f772001-03-07 16:53:07 +0000280#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000281
John Hughes70623be2001-03-08 13:59:00 +0000282#if _LFS64_LARGEFILE || HAVE_LONG_LONG_OFF_T
John Hughesbdf48f52001-03-06 15:08:09 +0000283/* fcntl/lockf */
284static void
Denys Vlasenko30b5e5a2009-01-06 15:12:52 +0000285printflock64(struct tcb *tcp, long addr, int getlk)
John Hughesbdf48f52001-03-06 15:08:09 +0000286{
287 struct flock64 fl;
288
289 if (umove(tcp, addr, &fl) < 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200290 tprints("{...}");
John Hughesbdf48f52001-03-06 15:08:09 +0000291 return;
292 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200293 tprints("{type=");
John Hughesbdf48f52001-03-06 15:08:09 +0000294 printxval(lockfcmds, fl.l_type, "F_???");
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200295 tprints(", whence=");
John Hughesbdf48f52001-03-06 15:08:09 +0000296 printxval(whence, fl.l_whence, "SEEK_???");
Wichert Akkerman7b3346b2001-10-09 23:47:38 +0000297 tprintf(", start=%lld, len=%lld", (long long) fl.l_start, (long long) fl.l_len);
John Hughesbdf48f52001-03-06 15:08:09 +0000298 if (getlk)
299 tprintf(", pid=%lu}", (unsigned long) fl.l_pid);
300 else
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200301 tprints("}");
John Hughesbdf48f52001-03-06 15:08:09 +0000302}
303#endif
304
Dmitry V. Levin9b5b67e2007-01-11 23:19:55 +0000305int
306sys_fcntl(struct tcb *tcp)
307{
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000308 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +0300309 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200310 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000311 printxval(fcntlcmds, tcp->u_arg[1], "F_???");
312 switch (tcp->u_arg[1]) {
313 case F_SETFD:
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200314 tprints(", ");
Roland McGrathb2dee132005-06-01 19:02:36 +0000315 printflags(fdflags, tcp->u_arg[2], "FD_???");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000316 break;
317 case F_SETOWN: case F_DUPFD:
Denys Vlasenkoeedaac72009-03-10 20:41:58 +0000318#ifdef F_DUPFD_CLOEXEC
319 case F_DUPFD_CLOEXEC:
320#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000321 tprintf(", %ld", tcp->u_arg[2]);
322 break;
323 case F_SETFL:
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200324 tprints(", ");
Denys Vlasenkoeedaac72009-03-10 20:41:58 +0000325 tprint_open_modes(tcp->u_arg[2]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000326 break;
327 case F_SETLK: case F_SETLKW:
John Hughesbdf48f52001-03-06 15:08:09 +0000328#ifdef F_FREESP
329 case F_FREESP:
330#endif
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200331 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000332 printflock(tcp, tcp->u_arg[2], 0);
333 break;
John Hughesbdf48f52001-03-06 15:08:09 +0000334#if _LFS64_LARGEFILE
335#ifdef F_FREESP64
336 case F_FREESP64:
337#endif
Roland McGrathe948faf2002-12-15 23:58:18 +0000338 /* Linux glibc defines SETLK64 as SETLK,
John Hughesbdf48f52001-03-06 15:08:09 +0000339 even though the kernel has different values - as does Solaris. */
Denys Vlasenkoeedaac72009-03-10 20:41:58 +0000340#if defined(F_SETLK64) && F_SETLK64 + 0 != F_SETLK
John Hughesbdf48f52001-03-06 15:08:09 +0000341 case F_SETLK64:
342#endif
Denys Vlasenkoeedaac72009-03-10 20:41:58 +0000343#if defined(F_SETLKW64) && F_SETLKW64 + 0 != F_SETLKW
John Hughesbdf48f52001-03-06 15:08:09 +0000344 case F_SETLKW64:
345#endif
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200346 tprints(", ");
John Hughesbdf48f52001-03-06 15:08:09 +0000347 printflock64(tcp, tcp->u_arg[2], 0);
348 break;
349#endif
Denys Vlasenkoeedaac72009-03-10 20:41:58 +0000350#ifdef F_NOTIFY
351 case F_NOTIFY:
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200352 tprints(", ");
Denys Vlasenkoeedaac72009-03-10 20:41:58 +0000353 printflags(notifyflags, tcp->u_arg[2], "DN_???");
354 break;
355#endif
356#ifdef F_SETLEASE
357 case F_SETLEASE:
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200358 tprints(", ");
Denys Vlasenkoeedaac72009-03-10 20:41:58 +0000359 printxval(lockfcmds, tcp->u_arg[2], "F_???");
360 break;
361#endif
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +0000362 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000363 }
364 else {
365 switch (tcp->u_arg[1]) {
366 case F_DUPFD:
Denys Vlasenkoeedaac72009-03-10 20:41:58 +0000367#ifdef F_DUPFD_CLOEXEC
368 case F_DUPFD_CLOEXEC:
369#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000370 case F_SETFD: case F_SETFL:
371 case F_SETLK: case F_SETLKW:
372 case F_SETOWN: case F_GETOWN:
Denys Vlasenkoeedaac72009-03-10 20:41:58 +0000373#ifdef F_NOTIFY
374 case F_NOTIFY:
375#endif
376#ifdef F_SETLEASE
377 case F_SETLEASE:
378#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000379 break;
380 case F_GETFD:
Dmitry V. Levin21a75342008-09-03 01:22:18 +0000381 if (syserror(tcp) || tcp->u_rval == 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000382 return 0;
Denys Vlasenkoeedaac72009-03-10 20:41:58 +0000383 tcp->auxstr = sprintflags("flags ", fdflags, tcp->u_rval);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000384 return RVAL_HEX|RVAL_STR;
385 case F_GETFL:
Dmitry V. Levin21a75342008-09-03 01:22:18 +0000386 if (syserror(tcp))
387 return 0;
Dmitry V. Levin9b5b67e2007-01-11 23:19:55 +0000388 tcp->auxstr = sprint_open_modes(tcp->u_rval);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000389 return RVAL_HEX|RVAL_STR;
390 case F_GETLK:
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200391 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000392 printflock(tcp, tcp->u_arg[2], 1);
393 break;
John Hughesbdf48f52001-03-06 15:08:09 +0000394#if _LFS64_LARGEFILE
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200395#if defined(F_GETLK64) && F_GETLK64+0 != F_GETLK
John Hughesbdf48f52001-03-06 15:08:09 +0000396 case F_GETLK64:
397#endif
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200398 tprints(", ");
John Hughesbdf48f52001-03-06 15:08:09 +0000399 printflock64(tcp, tcp->u_arg[2], 1);
400 break;
401#endif
Denys Vlasenkoeedaac72009-03-10 20:41:58 +0000402#ifdef F_GETLEASE
403 case F_GETLEASE:
404 if (syserror(tcp))
405 return 0;
406 tcp->auxstr = xlookup(lockfcmds, tcp->u_rval);
407 return RVAL_HEX|RVAL_STR;
408#endif
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +0000409 default:
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000410 tprintf(", %#lx", tcp->u_arg[2]);
411 break;
412 }
413 }
414 return 0;
415}
416
417#ifdef LOCK_SH
418
419int
Denys Vlasenko30b5e5a2009-01-06 15:12:52 +0000420sys_flock(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000421{
422 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +0300423 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200424 tprints(", ");
Roland McGrathb2dee132005-06-01 19:02:36 +0000425 printflags(flockcmds, tcp->u_arg[1], "LOCK_???");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000426 }
427 return 0;
428}
429#endif /* LOCK_SH */
430
431int
Denys Vlasenko30b5e5a2009-01-06 15:12:52 +0000432sys_close(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000433{
434 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +0300435 printfd(tcp, tcp->u_arg[0]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000436 }
437 return 0;
438}
439
Dmitry V. Levin4371b102008-11-10 22:53:02 +0000440static int
441do_dup2(struct tcb *tcp, int flags_arg)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000442{
443 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +0300444 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200445 tprints(", ");
Dmitry V. Levin31382132011-03-04 05:08:02 +0300446 printfd(tcp, tcp->u_arg[1]);
Dmitry V. Levin4371b102008-11-10 22:53:02 +0000447 if (flags_arg >= 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200448 tprints(", ");
Dmitry V. Levin4371b102008-11-10 22:53:02 +0000449 printflags(open_mode_flags, tcp->u_arg[flags_arg], "O_???");
450 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000451 }
452 return 0;
453}
454
Dmitry V. Levin4371b102008-11-10 22:53:02 +0000455int
456sys_dup2(struct tcb *tcp)
457{
458 return do_dup2(tcp, -1);
459}
460
Dmitry V. Levin4371b102008-11-10 22:53:02 +0000461int
462sys_dup3(struct tcb *tcp)
463{
464 return do_dup2(tcp, 2);
465}
Dmitry V. Levin4371b102008-11-10 22:53:02 +0000466
Denys Vlasenko84703742012-02-25 02:38:52 +0100467#if defined(ALPHA)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000468int
Denys Vlasenko30b5e5a2009-01-06 15:12:52 +0000469sys_getdtablesize(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000470{
471 return 0;
472}
Denys Vlasenko84703742012-02-25 02:38:52 +0100473#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000474
475static int
Dmitry V. Levina7945a32006-12-13 17:10:11 +0000476decode_select(struct tcb *tcp, long *args, enum bitness_t bitness)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000477{
Denys Vlasenkoad5155a2011-09-01 18:18:04 +0200478 int i, j;
Denys Vlasenko79a79ea2011-09-01 16:35:44 +0200479 unsigned nfds, fdsize;
Roland McGrathe85aaa42005-02-06 01:55:12 +0000480 fd_set *fds;
Dmitry V. Levin30145dd2010-09-06 22:08:24 +0000481 const char *sep;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000482 long arg;
483
Denys Vlasenko79a79ea2011-09-01 16:35:44 +0200484 fdsize = args[0];
485 /* Beware of select(2^31-1, NULL, NULL, NULL) and similar... */
486 if (args[0] > 1024*1024)
487 fdsize = 1024*1024;
488 if (args[0] < 0)
489 fdsize = 0;
490 fdsize = (((fdsize + 7) / 8) + sizeof(long)-1) & -sizeof(long);
491
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000492 if (entering(tcp)) {
Denys Vlasenko1d46ba52011-08-31 14:00:02 +0200493 fds = malloc(fdsize);
494 if (!fds)
495 die_out_of_memory();
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000496 nfds = args[0];
497 tprintf("%d", nfds);
498 for (i = 0; i < 3; i++) {
499 arg = args[i+1];
500 if (arg == 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200501 tprints(", NULL");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000502 continue;
503 }
Denys Vlasenko1d46ba52011-08-31 14:00:02 +0200504 if (!verbose(tcp)) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000505 tprintf(", %#lx", arg);
506 continue;
507 }
Roland McGrathe85aaa42005-02-06 01:55:12 +0000508 if (umoven(tcp, arg, fdsize, (char *) fds) < 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200509 tprints(", [?]");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000510 continue;
511 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200512 tprints(", [");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000513 for (j = 0, sep = ""; j < nfds; j++) {
Roland McGrathe85aaa42005-02-06 01:55:12 +0000514 if (FD_ISSET(j, fds)) {
Denys Vlasenko5940e652011-09-01 09:55:05 +0200515 tprints(sep);
Dmitry V. Levin31382132011-03-04 05:08:02 +0300516 printfd(tcp, j);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000517 sep = " ";
518 }
519 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200520 tprints("]");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000521 }
Roland McGrathe85aaa42005-02-06 01:55:12 +0000522 free(fds);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200523 tprints(", ");
Roland McGrath6afc5652007-07-24 01:57:11 +0000524 printtv_bitness(tcp, args[4], bitness, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000525 }
Denys Vlasenko7b609d52011-06-22 14:32:43 +0200526 else {
Denys Vlasenko2fb4db32011-08-31 12:26:03 +0200527 static char outstr[1024];
528 char *outptr;
529#define end_outstr (outstr + sizeof(outstr))
530 const char *sep;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000531
532 if (syserror(tcp))
533 return 0;
534
Denys Vlasenko5d645812011-08-20 12:48:18 +0200535 nfds = tcp->u_rval;
536 if (nfds == 0) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000537 tcp->auxstr = "Timeout";
538 return RVAL_STR;
539 }
Roland McGrathe85aaa42005-02-06 01:55:12 +0000540
Denys Vlasenko2fb4db32011-08-31 12:26:03 +0200541 fds = malloc(fdsize);
Denys Vlasenko1d46ba52011-08-31 14:00:02 +0200542 if (!fds)
543 die_out_of_memory();
Roland McGrathe85aaa42005-02-06 01:55:12 +0000544
Denys Vlasenko2fb4db32011-08-31 12:26:03 +0200545 outptr = outstr;
546 sep = "";
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000547 for (i = 0; i < 3; i++) {
548 int first = 1;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000549
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000550 arg = args[i+1];
Denys Vlasenko1d46ba52011-08-31 14:00:02 +0200551 if (!arg || umoven(tcp, arg, fdsize, (char *) fds) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000552 continue;
553 for (j = 0; j < args[0]; j++) {
Roland McGrathe85aaa42005-02-06 01:55:12 +0000554 if (FD_ISSET(j, fds)) {
Denys Vlasenko2fb4db32011-08-31 12:26:03 +0200555 /* +2 chars needed at the end: ']',NUL */
556 if (outptr < end_outstr - (sizeof(", except [") + sizeof(int)*3 + 2)) {
557 if (first) {
558 outptr += sprintf(outptr, "%s%s [%u",
559 sep,
560 i == 0 ? "in" : i == 1 ? "out" : "except",
561 j
562 );
563 first = 0;
564 sep = ", ";
565 }
566 else {
567 outptr += sprintf(outptr, " %u", j);
568 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000569 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000570 nfds--;
571 }
572 }
Denys Vlasenko2fb4db32011-08-31 12:26:03 +0200573 if (outptr != outstr)
574 *outptr++ = ']';
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000575 if (nfds == 0)
576 break;
577 }
Roland McGrathe85aaa42005-02-06 01:55:12 +0000578 free(fds);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000579 /* This contains no useful information on SunOS. */
580 if (args[4]) {
Denys Vlasenkoa1d541e2012-01-20 11:04:04 +0100581 if (outptr < end_outstr - (10 + TIMEVAL_TEXT_BUFSIZE)) {
Denys Vlasenko2fb4db32011-08-31 12:26:03 +0200582 outptr += sprintf(outptr, "%sleft ", sep);
Denys Vlasenkoa1d541e2012-01-20 11:04:04 +0100583 outptr = sprinttv(outptr, tcp, args[4], bitness, /*special:*/ 0);
Denys Vlasenko2fb4db32011-08-31 12:26:03 +0200584 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000585 }
Denys Vlasenko2fb4db32011-08-31 12:26:03 +0200586 *outptr = '\0';
Denys Vlasenko11617252011-09-01 11:27:37 +0200587 tcp->auxstr = outstr;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000588 return RVAL_STR;
Denys Vlasenko2fb4db32011-08-31 12:26:03 +0200589#undef end_outstr
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000590 }
591 return 0;
592}
593
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000594int
Denys Vlasenko30b5e5a2009-01-06 15:12:52 +0000595sys_oldselect(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000596{
597 long args[5];
598
599 if (umoven(tcp, tcp->u_arg[0], sizeof args, (char *) args) < 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200600 tprints("[...]");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000601 return 0;
602 }
Dmitry V. Levina7945a32006-12-13 17:10:11 +0000603 return decode_select(tcp, args, BITNESS_CURRENT);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000604}
605
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +0000606#ifdef ALPHA
Roland McGrathe948faf2002-12-15 23:58:18 +0000607int
Denys Vlasenko30b5e5a2009-01-06 15:12:52 +0000608sys_osf_select(struct tcb *tcp)
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +0000609{
610 long *args = tcp->u_arg;
Dmitry V. Levina7945a32006-12-13 17:10:11 +0000611 return decode_select(tcp, args, BITNESS_32);
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +0000612}
613#endif
614
Denys Vlasenko30b5e5a2009-01-06 15:12:52 +0000615static const struct xlat epollctls[] = {
Roland McGrath63d6e542004-10-20 02:17:41 +0000616#ifdef EPOLL_CTL_ADD
Roland McGrath93817bf2004-10-06 22:23:31 +0000617 { EPOLL_CTL_ADD, "EPOLL_CTL_ADD" },
Roland McGrath63d6e542004-10-20 02:17:41 +0000618#endif
619#ifdef EPOLL_CTL_MOD
Roland McGrath93817bf2004-10-06 22:23:31 +0000620 { EPOLL_CTL_MOD, "EPOLL_CTL_MOD" },
Roland McGrath63d6e542004-10-20 02:17:41 +0000621#endif
622#ifdef EPOLL_CTL_DEL
Roland McGrath93817bf2004-10-06 22:23:31 +0000623 { EPOLL_CTL_DEL, "EPOLL_CTL_DEL" },
Roland McGrath63d6e542004-10-20 02:17:41 +0000624#endif
Roland McGrath93817bf2004-10-06 22:23:31 +0000625 { 0, NULL }
626};
627
Denys Vlasenko30b5e5a2009-01-06 15:12:52 +0000628static const struct xlat epollevents[] = {
Roland McGrath63d6e542004-10-20 02:17:41 +0000629#ifdef EPOLLIN
Roland McGrath93817bf2004-10-06 22:23:31 +0000630 { EPOLLIN, "EPOLLIN" },
Roland McGrath63d6e542004-10-20 02:17:41 +0000631#endif
632#ifdef EPOLLPRI
Roland McGrath93817bf2004-10-06 22:23:31 +0000633 { EPOLLPRI, "EPOLLPRI" },
Roland McGrath63d6e542004-10-20 02:17:41 +0000634#endif
635#ifdef EPOLLOUT
Roland McGrath93817bf2004-10-06 22:23:31 +0000636 { EPOLLOUT, "EPOLLOUT" },
Roland McGrath63d6e542004-10-20 02:17:41 +0000637#endif
638#ifdef EPOLLRDNORM
Roland McGrath93817bf2004-10-06 22:23:31 +0000639 { EPOLLRDNORM, "EPOLLRDNORM" },
Roland McGrath63d6e542004-10-20 02:17:41 +0000640#endif
641#ifdef EPOLLRDBAND
Roland McGrath93817bf2004-10-06 22:23:31 +0000642 { EPOLLRDBAND, "EPOLLRDBAND" },
Roland McGrath63d6e542004-10-20 02:17:41 +0000643#endif
644#ifdef EPOLLWRNORM
Roland McGrath93817bf2004-10-06 22:23:31 +0000645 { EPOLLWRNORM, "EPOLLWRNORM" },
Roland McGrath63d6e542004-10-20 02:17:41 +0000646#endif
647#ifdef EPOLLWRBAND
Roland McGrath93817bf2004-10-06 22:23:31 +0000648 { EPOLLWRBAND, "EPOLLWRBAND" },
Roland McGrath63d6e542004-10-20 02:17:41 +0000649#endif
650#ifdef EPOLLMSG
Roland McGrath93817bf2004-10-06 22:23:31 +0000651 { EPOLLMSG, "EPOLLMSG" },
Roland McGrath63d6e542004-10-20 02:17:41 +0000652#endif
653#ifdef EPOLLERR
Roland McGrath93817bf2004-10-06 22:23:31 +0000654 { EPOLLERR, "EPOLLERR" },
Roland McGrath63d6e542004-10-20 02:17:41 +0000655#endif
656#ifdef EPOLLHUP
Roland McGrath93817bf2004-10-06 22:23:31 +0000657 { EPOLLHUP, "EPOLLHUP" },
Roland McGrath63d6e542004-10-20 02:17:41 +0000658#endif
Dmitry V. Levin5967c1a2011-10-11 15:55:40 +0000659#ifdef EPOLLRDHUP
660 { EPOLLRDHUP, "EPOLLRDHUP" },
661#endif
Roland McGrath63d6e542004-10-20 02:17:41 +0000662#ifdef EPOLLONESHOT
Roland McGrath93817bf2004-10-06 22:23:31 +0000663 { EPOLLONESHOT, "EPOLLONESHOT" },
Roland McGrath63d6e542004-10-20 02:17:41 +0000664#endif
665#ifdef EPOLLET
Roland McGrath93817bf2004-10-06 22:23:31 +0000666 { EPOLLET, "EPOLLET" },
Roland McGrath63d6e542004-10-20 02:17:41 +0000667#endif
Roland McGrath93817bf2004-10-06 22:23:31 +0000668 { 0, NULL }
669};
670
Denys Vlasenko72879c62012-02-27 14:18:02 +0100671/* Not aliased to printargs_ld: we want it to have a distinct address */
Roland McGrath93817bf2004-10-06 22:23:31 +0000672int
Dmitry V. Levin4371b102008-11-10 22:53:02 +0000673sys_epoll_create(struct tcb *tcp)
Roland McGrath93817bf2004-10-06 22:23:31 +0000674{
Denys Vlasenko72879c62012-02-27 14:18:02 +0100675 return printargs_ld(tcp);
Roland McGrath93817bf2004-10-06 22:23:31 +0000676}
677
Mike Frysingeraed334c2011-10-13 22:33:45 -0400678static const struct xlat epollflags[] = {
679#ifdef EPOLL_CLOEXEC
680 { EPOLL_CLOEXEC, "EPOLL_CLOEXEC" },
681#endif
682#ifdef EPOLL_NONBLOCK
683 { EPOLL_NONBLOCK, "EPOLL_NONBLOCK" },
684#endif
685 { 0, NULL }
686};
687
Dmitry V. Levin4371b102008-11-10 22:53:02 +0000688int
689sys_epoll_create1(struct tcb *tcp)
690{
691 if (entering(tcp))
Mike Frysingeraed334c2011-10-13 22:33:45 -0400692 printflags(epollflags, tcp->u_arg[0], "EPOLL_???");
Dmitry V. Levin4371b102008-11-10 22:53:02 +0000693 return 0;
694}
695
Roland McGrath63d6e542004-10-20 02:17:41 +0000696#ifdef HAVE_SYS_EPOLL_H
Roland McGrath93817bf2004-10-06 22:23:31 +0000697static void
Denys Vlasenko30b5e5a2009-01-06 15:12:52 +0000698print_epoll_event(struct epoll_event *ev)
Roland McGrath93817bf2004-10-06 22:23:31 +0000699{
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200700 tprints("{");
Roland McGrathb2dee132005-06-01 19:02:36 +0000701 printflags(epollevents, ev->events, "EPOLL???");
Roland McGrath93817bf2004-10-06 22:23:31 +0000702 /* We cannot know what format the program uses, so print u32 and u64
703 which will cover every value. */
704 tprintf(", {u32=%" PRIu32 ", u64=%" PRIu64 "}}",
705 ev->data.u32, ev->data.u64);
706}
Roland McGrath63d6e542004-10-20 02:17:41 +0000707#endif
Roland McGrath93817bf2004-10-06 22:23:31 +0000708
709int
Denys Vlasenko30b5e5a2009-01-06 15:12:52 +0000710sys_epoll_ctl(struct tcb *tcp)
Roland McGrath93817bf2004-10-06 22:23:31 +0000711{
712 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +0300713 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200714 tprints(", ");
Denys Vlasenkoadedb512008-12-30 18:47:55 +0000715 printxval(epollctls, tcp->u_arg[1], "EPOLL_CTL_???");
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200716 tprints(", ");
Dmitry V. Levin31382132011-03-04 05:08:02 +0300717 printfd(tcp, tcp->u_arg[2]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200718 tprints(", ");
Roland McGrath93817bf2004-10-06 22:23:31 +0000719 if (tcp->u_arg[3] == 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200720 tprints("NULL");
Roland McGrath63d6e542004-10-20 02:17:41 +0000721 else {
722#ifdef HAVE_SYS_EPOLL_H
723 struct epoll_event ev;
Roland McGrath6e52d232004-10-20 02:17:41 +0000724 if (umove(tcp, tcp->u_arg[3], &ev) == 0)
Roland McGrath63d6e542004-10-20 02:17:41 +0000725 print_epoll_event(&ev);
726 else
727#endif
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200728 tprints("{...}");
Roland McGrath63d6e542004-10-20 02:17:41 +0000729 }
Roland McGrath93817bf2004-10-06 22:23:31 +0000730 }
731 return 0;
732}
733
Roland McGrathf2400052007-08-02 01:13:26 +0000734static void
Denys Vlasenko30b5e5a2009-01-06 15:12:52 +0000735epoll_wait_common(struct tcb *tcp)
Roland McGrath93817bf2004-10-06 22:23:31 +0000736{
Dmitry V. Levin31382132011-03-04 05:08:02 +0300737 if (entering(tcp)) {
738 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200739 tprints(", ");
Dmitry V. Levin31382132011-03-04 05:08:02 +0300740 } else {
Roland McGrath93817bf2004-10-06 22:23:31 +0000741 if (syserror(tcp))
742 tprintf("%lx", tcp->u_arg[1]);
743 else if (tcp->u_rval == 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200744 tprints("{}");
Roland McGrath93817bf2004-10-06 22:23:31 +0000745 else {
Roland McGrath63d6e542004-10-20 02:17:41 +0000746#ifdef HAVE_SYS_EPOLL_H
Roland McGrathaa524c82005-06-01 19:22:06 +0000747 struct epoll_event ev, *start, *cur, *end;
748 int failed = 0;
749
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200750 tprints("{");
Roland McGrathaa524c82005-06-01 19:22:06 +0000751 start = (struct epoll_event *) tcp->u_arg[1];
752 end = start + tcp->u_rval;
753 for (cur = start; cur < end; ++cur) {
754 if (cur > start)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200755 tprints(", ");
Roland McGrathaa524c82005-06-01 19:22:06 +0000756 if (umove(tcp, (long) cur, &ev) == 0)
757 print_epoll_event(&ev);
758 else {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200759 tprints("?");
Roland McGrathaa524c82005-06-01 19:22:06 +0000760 failed = 1;
761 break;
Roland McGrath93817bf2004-10-06 22:23:31 +0000762 }
Roland McGrath93817bf2004-10-06 22:23:31 +0000763 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200764 tprints("}");
Roland McGrathaa524c82005-06-01 19:22:06 +0000765 if (failed)
766 tprintf(" %#lx", (long) start);
767#else
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200768 tprints("{...}");
Roland McGrath63d6e542004-10-20 02:17:41 +0000769#endif
Roland McGrath93817bf2004-10-06 22:23:31 +0000770 }
Dmitry V. Levinc327d712011-10-11 16:05:57 +0000771 tprintf(", %d, %d", (int) tcp->u_arg[2], (int) tcp->u_arg[3]);
Roland McGrath93817bf2004-10-06 22:23:31 +0000772 }
Roland McGrathf2400052007-08-02 01:13:26 +0000773}
774
775int
Denys Vlasenko30b5e5a2009-01-06 15:12:52 +0000776sys_epoll_wait(struct tcb *tcp)
Roland McGrathf2400052007-08-02 01:13:26 +0000777{
778 epoll_wait_common(tcp);
779 return 0;
780}
781
782int
Denys Vlasenko30b5e5a2009-01-06 15:12:52 +0000783sys_epoll_pwait(struct tcb *tcp)
Roland McGrathf2400052007-08-02 01:13:26 +0000784{
785 epoll_wait_common(tcp);
Dmitry V. Levin96764992010-04-06 23:54:18 +0000786 if (exiting(tcp)) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200787 tprints(", ");
Roland McGrathf2400052007-08-02 01:13:26 +0000788 print_sigset(tcp, tcp->u_arg[4], 0);
Dmitry V. Levin96764992010-04-06 23:54:18 +0000789 }
Roland McGrath93817bf2004-10-06 22:23:31 +0000790 return 0;
791}
Roland McGrath37b9f842005-05-09 08:02:00 +0000792
793int
Denys Vlasenko30b5e5a2009-01-06 15:12:52 +0000794sys_io_setup(struct tcb *tcp)
Roland McGrath37b9f842005-05-09 08:02:00 +0000795{
796 if (entering(tcp))
797 tprintf("%ld, ", tcp->u_arg[0]);
798 else {
799 if (syserror(tcp))
800 tprintf("0x%0lx", tcp->u_arg[1]);
801 else {
802 unsigned long user_id;
803 if (umove(tcp, tcp->u_arg[1], &user_id) == 0)
804 tprintf("{%lu}", user_id);
805 else
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200806 tprints("{...}");
Roland McGrath37b9f842005-05-09 08:02:00 +0000807 }
808 }
809 return 0;
810}
811
812int
Denys Vlasenko30b5e5a2009-01-06 15:12:52 +0000813sys_io_destroy(struct tcb *tcp)
Roland McGrath37b9f842005-05-09 08:02:00 +0000814{
815 if (entering(tcp))
816 tprintf("%lu", tcp->u_arg[0]);
817 return 0;
818}
819
Dmitry V. Levin081e72f2011-06-21 15:11:57 +0000820#ifdef HAVE_LIBAIO_H
821
Andi Kleendfcd7412011-06-13 22:05:44 +0000822enum iocb_sub {
823 SUB_NONE, SUB_COMMON, SUB_POLL, SUB_VECTOR
824};
825
826static const char *
827iocb_cmd_lookup(unsigned cmd, enum iocb_sub *sub)
828{
Denys Vlasenko79992622011-08-19 19:44:17 +0200829 static char buf[sizeof("%u /* SUB_??? */") + sizeof(int)*3];
830 static const struct {
Andi Kleendfcd7412011-06-13 22:05:44 +0000831 const char *name;
832 enum iocb_sub sub;
833 } cmds[] = {
834 { "pread", SUB_COMMON },
835 { "pwrite", SUB_COMMON },
836 { "fsync", SUB_NONE },
837 { "fdsync", SUB_NONE },
838 { "op4", SUB_NONE },
839 { "poll", SUB_POLL },
840 { "noop", SUB_NONE },
841 { "preadv", SUB_VECTOR },
842 { "pwritev", SUB_VECTOR },
843 };
844
845 if (cmd < ARRAY_SIZE(cmds)) {
846 *sub = cmds[cmd].sub;
847 return cmds[cmd].name;
848 }
849 *sub = SUB_NONE;
Denys Vlasenko79992622011-08-19 19:44:17 +0200850 sprintf(buf, "%u /* SUB_??? */", cmd);
Andi Kleendfcd7412011-06-13 22:05:44 +0000851 return buf;
852}
853
854/* Not defined in libaio.h */
855#ifndef IOCB_RESFD
856# define IOCB_RESFD (1 << 0)
857#endif
858
859static void
860print_common_flags(struct iocb *iocb)
861{
862 if (iocb->u.c.flags & IOCB_RESFD)
863 tprintf("resfd=%d, ", iocb->u.c.resfd);
864 if (iocb->u.c.flags & ~IOCB_RESFD)
865 tprintf("flags=%x, ", iocb->u.c.flags);
866}
Dmitry V. Levin081e72f2011-06-21 15:11:57 +0000867
868#endif /* HAVE_LIBAIO_H */
869
Roland McGrath37b9f842005-05-09 08:02:00 +0000870int
Denys Vlasenko30b5e5a2009-01-06 15:12:52 +0000871sys_io_submit(struct tcb *tcp)
Roland McGrath37b9f842005-05-09 08:02:00 +0000872{
873 long nr;
874 if (entering(tcp)) {
875 tprintf("%lu, %ld, ", tcp->u_arg[0], tcp->u_arg[1]);
876 nr = tcp->u_arg[1];
877 /* and if nr is negative? */
878 if (nr == 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200879 tprints("{}");
Roland McGrath37b9f842005-05-09 08:02:00 +0000880 else {
881#ifdef HAVE_LIBAIO_H
882 long i;
883 struct iocb *iocbp, **iocbs = (void *)tcp->u_arg[2];
884
885 for (i = 0; i < nr; i++, iocbs++) {
Andi Kleendfcd7412011-06-13 22:05:44 +0000886 enum iocb_sub sub;
Roland McGrath37b9f842005-05-09 08:02:00 +0000887 struct iocb iocb;
888 if (i == 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200889 tprints("{");
Roland McGrath37b9f842005-05-09 08:02:00 +0000890 else
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200891 tprints(", ");
Roland McGrath37b9f842005-05-09 08:02:00 +0000892
893 if (umove(tcp, (unsigned long)iocbs, &iocbp) ||
894 umove(tcp, (unsigned long)iocbp, &iocb)) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200895 tprints("{...}");
Roland McGrath37b9f842005-05-09 08:02:00 +0000896 continue;
897 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200898 tprints("{");
Andi Kleendfcd7412011-06-13 22:05:44 +0000899 if (iocb.data)
900 tprintf("data:%p, ", iocb.data);
901 if (iocb.key)
902 tprintf("key:%u, ", iocb.key);
903 tprintf("%s, ", iocb_cmd_lookup(iocb.aio_lio_opcode, &sub));
904 if (iocb.aio_reqprio)
905 tprintf("reqprio:%d, ", iocb.aio_reqprio);
906 tprintf("filedes:%d", iocb.aio_fildes);
907 switch (sub) {
908 case SUB_COMMON:
909 if (iocb.aio_lio_opcode == IO_CMD_PWRITE) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200910 tprints(", str:");
Andi Kleendfcd7412011-06-13 22:05:44 +0000911 printstr(tcp, (unsigned long)iocb.u.c.buf,
912 iocb.u.c.nbytes);
913 } else {
914 tprintf(", buf:%p", iocb.u.c.buf);
915 }
916 tprintf(", nbytes:%lu, offset:%llx",
917 iocb.u.c.nbytes,
918 iocb.u.c.offset);
919 print_common_flags(&iocb);
920 break;
921 case SUB_VECTOR:
922 tprintf(", %llx, ", iocb.u.v.offset);
923 print_common_flags(&iocb);
924 tprint_iov(tcp, iocb.u.v.nr,
925 (unsigned long)iocb.u.v.vec,
926 iocb.aio_lio_opcode == IO_CMD_PWRITEV);
927 break;
928 case SUB_POLL:
929 tprintf(", %x", iocb.u.poll.events);
930 break;
931 case SUB_NONE:
932 break;
933 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200934 tprints("}");
Roland McGrath37b9f842005-05-09 08:02:00 +0000935 }
936 if (i)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200937 tprints("}");
Roland McGrath37b9f842005-05-09 08:02:00 +0000938#else
Andi Kleendfcd7412011-06-13 22:05:44 +0000939#warning "libaio-devel is not available => no io_submit decoding"
940 tprintf("%#lx", tcp->u_arg[2]);
Roland McGrath37b9f842005-05-09 08:02:00 +0000941#endif
942 }
943 }
944 return 0;
945}
946
947int
Denys Vlasenko30b5e5a2009-01-06 15:12:52 +0000948sys_io_cancel(struct tcb *tcp)
Roland McGrath37b9f842005-05-09 08:02:00 +0000949{
950 if (entering(tcp)) {
951#ifdef HAVE_LIBAIO_H
952 struct iocb iocb;
953#endif
954 tprintf("%lu, ", tcp->u_arg[0]);
955#ifdef HAVE_LIBAIO_H
956 if (umove(tcp, tcp->u_arg[1], &iocb) == 0) {
957 tprintf("{%p, %u, %hu, %hu, %d}, ",
958 iocb.data, iocb.key,
959 iocb.aio_lio_opcode,
960 iocb.aio_reqprio, iocb.aio_fildes);
961 } else
962#endif
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200963 tprints("{...}, ");
Roland McGrath37b9f842005-05-09 08:02:00 +0000964 } else {
965 if (tcp->u_rval < 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200966 tprints("{...}");
Roland McGrath37b9f842005-05-09 08:02:00 +0000967 else {
968#ifdef HAVE_LIBAIO_H
969 struct io_event event;
970 if (umove(tcp, tcp->u_arg[2], &event) == 0)
971 tprintf("{%p, %p, %ld, %ld}",
972 event.data, event.obj,
973 event.res, event.res2);
Dmitry V. Levin414fe7d2009-07-08 11:21:17 +0000974 else
Roland McGrath37b9f842005-05-09 08:02:00 +0000975#endif
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200976 tprints("{...}");
Roland McGrath37b9f842005-05-09 08:02:00 +0000977 }
978 }
979 return 0;
980}
981
982int
Denys Vlasenko30b5e5a2009-01-06 15:12:52 +0000983sys_io_getevents(struct tcb *tcp)
Roland McGrath37b9f842005-05-09 08:02:00 +0000984{
985 if (entering(tcp)) {
986 tprintf("%ld, %ld, %ld, ", tcp->u_arg[0], tcp->u_arg[1],
987 tcp->u_arg[2]);
988 } else {
989 if (tcp->u_rval == 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200990 tprints("{}");
Roland McGrath37b9f842005-05-09 08:02:00 +0000991 } else {
992#ifdef HAVE_LIBAIO_H
993 struct io_event *events = (void *)tcp->u_arg[3];
994 long i, nr = tcp->u_rval;
995
996 for (i = 0; i < nr; i++, events++) {
997 struct io_event event;
998
999 if (i == 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001000 tprints("{");
Roland McGrath37b9f842005-05-09 08:02:00 +00001001 else
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001002 tprints(", ");
Roland McGrath37b9f842005-05-09 08:02:00 +00001003
1004 if (umove(tcp, (unsigned long)events, &event) != 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001005 tprints("{...}");
Roland McGrath37b9f842005-05-09 08:02:00 +00001006 continue;
1007 }
1008 tprintf("{%p, %p, %ld, %ld}", event.data,
1009 event.obj, event.res, event.res2);
1010 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001011 tprints("}, ");
Roland McGrath37b9f842005-05-09 08:02:00 +00001012#else
Denys Vlasenkob237b1b2012-02-27 13:56:59 +01001013 tprints("{...}");
Roland McGrath37b9f842005-05-09 08:02:00 +00001014#endif
1015 }
1016
Roland McGrath6bc09da2007-11-01 21:50:54 +00001017 print_timespec(tcp, tcp->u_arg[4]);
Roland McGrath37b9f842005-05-09 08:02:00 +00001018 }
1019 return 0;
1020}
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001021
1022int
Denys Vlasenko30b5e5a2009-01-06 15:12:52 +00001023sys_select(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001024{
Dmitry V. Levina7945a32006-12-13 17:10:11 +00001025 return decode_select(tcp, tcp->u_arg, BITNESS_CURRENT);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001026}
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001027
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001028int
1029sys_pselect6(struct tcb *tcp)
1030{
Dmitry V. Levina7945a32006-12-13 17:10:11 +00001031 int rc = decode_select(tcp, tcp->u_arg, BITNESS_CURRENT);
Roland McGrathfe10aa72007-11-01 21:52:20 +00001032 if (entering(tcp)) {
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001033 struct {
1034 void *ss;
1035 unsigned long len;
1036 } data;
1037 if (umove(tcp, tcp->u_arg[5], &data) < 0)
1038 tprintf(", %#lx", tcp->u_arg[5]);
1039 else {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001040 tprints(", {");
Roland McGrathfe10aa72007-11-01 21:52:20 +00001041 if (data.len < sizeof(long))
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001042 tprintf("%#lx", (long)data.ss);
1043 else
1044 print_sigset(tcp, (long)data.ss, 0);
1045 tprintf(", %lu}", data.len);
1046 }
1047 }
1048 return rc;
1049}
Roland McGrathe7c39672007-08-02 01:32:17 +00001050
Dmitry V. Levin4371b102008-11-10 22:53:02 +00001051static int
1052do_eventfd(struct tcb *tcp, int flags_arg)
Roland McGrathe7c39672007-08-02 01:32:17 +00001053{
Dmitry V. Levin4371b102008-11-10 22:53:02 +00001054 if (entering(tcp)) {
Roland McGrathe7c39672007-08-02 01:32:17 +00001055 tprintf("%lu", tcp->u_arg[0]);
Dmitry V. Levin4371b102008-11-10 22:53:02 +00001056 if (flags_arg >= 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001057 tprints(", ");
Dmitry V. Levin4371b102008-11-10 22:53:02 +00001058 printflags(open_mode_flags, tcp->u_arg[flags_arg], "O_???");
1059 }
1060 }
Roland McGrathe7c39672007-08-02 01:32:17 +00001061 return 0;
1062}
Dmitry V. Levin4371b102008-11-10 22:53:02 +00001063
1064int
1065sys_eventfd(struct tcb *tcp)
1066{
1067 return do_eventfd(tcp, -1);
1068}
1069
1070int
1071sys_eventfd2(struct tcb *tcp)
1072{
1073 return do_eventfd(tcp, 1);
1074}