blob: eaff3e04b72743f609720e40ef2838bb7cd5edbf [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#ifdef LINUX
38#include <inttypes.h>
Roland McGrath63d6e542004-10-20 02:17:41 +000039#endif
40#ifdef HAVE_SYS_EPOLL_H
Roland McGrath93817bf2004-10-06 22:23:31 +000041#include <sys/epoll.h>
42#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000043
John Hughes70623be2001-03-08 13:59:00 +000044#if HAVE_LONG_LONG_OFF_T
45/*
46 * Hacks for systems that have a long long off_t
47 */
John Hughesb8c9f772001-03-07 16:53:07 +000048#define flock64 flock /* Horrid hack */
49#define printflock printflock64 /* Horrider hack */
50#endif
51
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
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000148 { 0, NULL },
149};
150
Roland McGrathd9f816f2004-09-04 03:39:20 +0000151static const struct xlat fdflags[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000152#ifdef FD_CLOEXEC
153 { FD_CLOEXEC, "FD_CLOEXEC" },
154#endif
155 { 0, NULL },
156};
157
158#ifdef LOCK_SH
159
Roland McGrathd9f816f2004-09-04 03:39:20 +0000160static const struct xlat flockcmds[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000161 { LOCK_SH, "LOCK_SH" },
162 { LOCK_EX, "LOCK_EX" },
163 { LOCK_NB, "LOCK_NB" },
164 { LOCK_UN, "LOCK_UN" },
165 { 0, NULL },
166};
167
168#endif /* LOCK_SH */
169
Roland McGrathd9f816f2004-09-04 03:39:20 +0000170static const struct xlat lockfcmds[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000171 { F_RDLCK, "F_RDLCK" },
172 { F_WRLCK, "F_WRLCK" },
173 { F_UNLCK, "F_UNLCK" },
174#ifdef F_EXLCK
175 { F_EXLCK, "F_EXLCK" },
176#endif
177#ifdef F_SHLCK
178 { F_SHLCK, "F_SHLCK" },
179#endif
180 { 0, NULL },
181};
182
Roland McGrathd9f816f2004-09-04 03:39:20 +0000183static const struct xlat whence[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000184 { SEEK_SET, "SEEK_SET" },
185 { SEEK_CUR, "SEEK_CUR" },
186 { SEEK_END, "SEEK_END" },
187 { 0, NULL },
188};
189
John Hughes70623be2001-03-08 13:59:00 +0000190#ifndef HAVE_LONG_LONG_OFF_T
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000191/* fcntl/lockf */
192static void
193printflock(tcp, addr, getlk)
194struct tcb *tcp;
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +0000195long addr;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000196int getlk;
197{
198 struct flock fl;
199
200 if (umove(tcp, addr, &fl) < 0) {
201 tprintf("{...}");
202 return;
203 }
204 tprintf("{type=");
205 printxval(lockfcmds, fl.l_type, "F_???");
206 tprintf(", whence=");
207 printxval(whence, fl.l_whence, "SEEK_???");
208 tprintf(", start=%ld, len=%ld", fl.l_start, fl.l_len);
209 if (getlk)
210 tprintf(", pid=%lu}", (unsigned long) fl.l_pid);
211 else
212 tprintf("}");
213}
John Hughesb8c9f772001-03-07 16:53:07 +0000214#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000215
John Hughes70623be2001-03-08 13:59:00 +0000216#if _LFS64_LARGEFILE || HAVE_LONG_LONG_OFF_T
John Hughesbdf48f52001-03-06 15:08:09 +0000217/* fcntl/lockf */
218static void
219printflock64(tcp, addr, getlk)
220struct tcb *tcp;
Roland McGrath81634e42003-01-14 07:53:31 +0000221long addr;
John Hughesbdf48f52001-03-06 15:08:09 +0000222int getlk;
223{
224 struct flock64 fl;
225
226 if (umove(tcp, addr, &fl) < 0) {
227 tprintf("{...}");
228 return;
229 }
230 tprintf("{type=");
231 printxval(lockfcmds, fl.l_type, "F_???");
232 tprintf(", whence=");
233 printxval(whence, fl.l_whence, "SEEK_???");
Wichert Akkerman7b3346b2001-10-09 23:47:38 +0000234 tprintf(", start=%lld, len=%lld", (long long) fl.l_start, (long long) fl.l_len);
John Hughesbdf48f52001-03-06 15:08:09 +0000235 if (getlk)
236 tprintf(", pid=%lu}", (unsigned long) fl.l_pid);
237 else
238 tprintf("}");
239}
240#endif
241
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000242static char *
243sprintflags(xlat, flags)
Roland McGrathd9f816f2004-09-04 03:39:20 +0000244const struct xlat *xlat;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000245int flags;
246{
247 static char outstr[1024];
248 char *sep;
249
250 strcpy(outstr, "flags ");
251 sep = "";
252 for (; xlat->str; xlat++) {
253 if ((flags & xlat->val) == xlat->val) {
254 sprintf(outstr + strlen(outstr),
255 "%s%s", sep, xlat->str);
256 sep = "|";
257 flags &= ~xlat->val;
258 }
259 }
260 if (flags)
261 sprintf(outstr + strlen(outstr),
262 "%s%#x", sep, flags);
263 return outstr;
264}
265
266int
267sys_fcntl(tcp)
268struct tcb *tcp;
269{
Roland McGrathd9f816f2004-09-04 03:39:20 +0000270 extern const struct xlat openmodes[];
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000271
272 if (entering(tcp)) {
273 tprintf("%ld, ", tcp->u_arg[0]);
274 printxval(fcntlcmds, tcp->u_arg[1], "F_???");
275 switch (tcp->u_arg[1]) {
276 case F_SETFD:
277 tprintf(", ");
278 if (printflags(fdflags, tcp->u_arg[2]) == 0)
279 tprintf("0");
280 break;
281 case F_SETOWN: case F_DUPFD:
282 tprintf(", %ld", tcp->u_arg[2]);
283 break;
284 case F_SETFL:
285 tprintf(", ");
286 if (printflags(openmodes, tcp->u_arg[2] + 1) == 0)
287 tprintf("0");
288 break;
289 case F_SETLK: case F_SETLKW:
John Hughesbdf48f52001-03-06 15:08:09 +0000290#ifdef F_FREESP
291 case F_FREESP:
292#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000293 tprintf(", ");
294 printflock(tcp, tcp->u_arg[2], 0);
295 break;
John Hughesbdf48f52001-03-06 15:08:09 +0000296#if _LFS64_LARGEFILE
297#ifdef F_FREESP64
298 case F_FREESP64:
299#endif
Roland McGrathe948faf2002-12-15 23:58:18 +0000300 /* Linux glibc defines SETLK64 as SETLK,
John Hughesbdf48f52001-03-06 15:08:09 +0000301 even though the kernel has different values - as does Solaris. */
302#if defined(F_SETLK64) && F_SETLK64+0!=F_SETLK
303 case F_SETLK64:
304#endif
305#if defined(F_SETLKW64) && F_SETLKW64+0!=F_SETLKW
306 case F_SETLKW64:
307#endif
308 tprintf(", ");
309 printflock64(tcp, tcp->u_arg[2], 0);
310 break;
311#endif
312 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000313 }
314 else {
315 switch (tcp->u_arg[1]) {
316 case F_DUPFD:
317 case F_SETFD: case F_SETFL:
318 case F_SETLK: case F_SETLKW:
319 case F_SETOWN: case F_GETOWN:
320 break;
321 case F_GETFD:
322 if (tcp->u_rval == 0)
323 return 0;
324 tcp->auxstr = sprintflags(fdflags, tcp->u_rval);
325 return RVAL_HEX|RVAL_STR;
326 case F_GETFL:
327 tcp->auxstr = sprintflags(openmodes, tcp->u_rval + 1);
328 return RVAL_HEX|RVAL_STR;
329 case F_GETLK:
330 tprintf(", ");
331 printflock(tcp, tcp->u_arg[2], 1);
332 break;
John Hughesbdf48f52001-03-06 15:08:09 +0000333#if _LFS64_LARGEFILE
334#if defined(F_GETLK64) && F_GETLK64+0!=F_GETLK
335 case F_GETLK64:
336#endif
337 tprintf(", ");
338 printflock64(tcp, tcp->u_arg[2], 1);
339 break;
340#endif
341 default:
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000342 tprintf(", %#lx", tcp->u_arg[2]);
343 break;
344 }
345 }
346 return 0;
347}
348
349#ifdef LOCK_SH
350
351int
352sys_flock(tcp)
353struct tcb *tcp;
354{
355 if (entering(tcp)) {
356 tprintf("%ld, ", tcp->u_arg[0]);
357 if (!printflags(flockcmds, tcp->u_arg[1]))
358 tprintf("LOCK_???");
359 }
360 return 0;
361}
362#endif /* LOCK_SH */
363
364int
365sys_close(tcp)
366struct tcb *tcp;
367{
368 if (entering(tcp)) {
369 tprintf("%ld", tcp->u_arg[0]);
370 }
371 return 0;
372}
373
374int
375sys_dup(tcp)
376struct tcb *tcp;
377{
378 if (entering(tcp)) {
379 tprintf("%ld", tcp->u_arg[0]);
380 }
381 return 0;
382}
383
384int
385sys_dup2(tcp)
386struct tcb *tcp;
387{
388 if (entering(tcp)) {
389 tprintf("%ld, %ld", tcp->u_arg[0], tcp->u_arg[1]);
390 }
391 return 0;
392}
393
394int
395sys_getdtablesize(tcp)
396struct tcb *tcp;
397{
398 return 0;
399}
400
401static int
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +0000402decode_select(tcp, args, bitness)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000403struct tcb *tcp;
404long *args;
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +0000405int bitness;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000406{
407 int i, j, nfds;
408 fd_set fds;
409 struct timeval tv;
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +0000410#ifdef ALPHA
411 struct timeval32 {
412 unsigned tv_sec;
413 unsigned tv_usec;
414 } *tv32;
415#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000416 static char outstr[1024];
417 char *sep;
418 long arg;
419
420 if (entering(tcp)) {
421 nfds = args[0];
422 tprintf("%d", nfds);
423 for (i = 0; i < 3; i++) {
424 arg = args[i+1];
425 if (arg == 0) {
426 tprintf(", NULL");
427 continue;
428 }
429 if (!verbose(tcp)) {
430 tprintf(", %#lx", arg);
431 continue;
432 }
433 if (umove(tcp, arg, &fds) < 0) {
434 tprintf(", [?]");
435 continue;
436 }
437 tprintf(", [");
438 for (j = 0, sep = ""; j < nfds; j++) {
439 if (FD_ISSET(j, &fds)) {
440 tprintf("%s%u", sep, j);
441 sep = " ";
442 }
443 }
444 tprintf("]");
445 }
446 if (!args[4])
447 tprintf(", NULL");
448 else if (!verbose(tcp))
449 tprintf(", %#lx", args[4]);
450 else if (umove(tcp, args[4], &tv) < 0)
451 tprintf(", {...}");
452 else {
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +0000453#ifdef ALPHA
454 if (bitness) {
455 tv32=(struct timeval32*)&tv;
Wichert Akkerman221f54f1999-11-18 17:26:45 +0000456 tprintf(", {%u, %u}", tv32->tv_sec, tv32->tv_usec);
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +0000457 } else
458#endif
459 tprintf(", {%lu, %lu}",
460 (long) tv.tv_sec, (long) tv.tv_usec);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000461 }
462 }
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +0000463 else
464 {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000465 unsigned int cumlen = 0;
466 char *sep = "";
467
468 if (syserror(tcp))
469 return 0;
470
471 if ((nfds = tcp->u_rval) == 0) {
472 tcp->auxstr = "Timeout";
473 return RVAL_STR;
474 }
475 outstr[0] = '\0';
476 for (i = 0; i < 3; i++) {
477 int first = 1;
478 char str[20];
479
480 tcp->auxstr = outstr;
481 arg = args[i+1];
482 if (!arg || umove(tcp, arg, &fds) < 0)
483 continue;
484 for (j = 0; j < args[0]; j++) {
485 if (FD_ISSET(j, &fds)) {
486 if (first) {
487 sprintf(str, "%s%s [%u", sep,
488 i == 0 ? "in" :
489 i == 1 ? "out" :
490 "except", j);
491 first = 0;
492 sep = ", ";
493 }
494 else
495 sprintf(str, " %u", j);
496 cumlen += strlen(str);
497 if (cumlen < sizeof(outstr))
498 strcat(outstr, str);
499 nfds--;
500 }
501 }
502 if (cumlen)
503 strcat(outstr, "]");
504 if (nfds == 0)
505 break;
506 }
507#ifdef LINUX
508 /* This contains no useful information on SunOS. */
509 if (args[4]) {
510 char str[20];
511
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +0000512 if (umove(tcp, args[4], &tv) >= 0) {
513#ifdef ALPHA
514 if (bitness) {
515 tv32=(struct timeval32*)&tv;
516 sprintf(str, "%sleft {%u, %u}", sep,
517 tv32->tv_sec, tv32->tv_usec);
518 } else
519#endif
520 sprintf(str, "%sleft {%lu, %lu}", sep,
521 (long) tv.tv_sec, (long) tv.tv_usec);
522
523 if ((cumlen += strlen(str)) < sizeof(outstr))
524 strcat(outstr, str);
525 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000526 }
527#endif /* LINUX */
528 return RVAL_STR;
529 }
530 return 0;
531}
532
533#ifdef LINUX
534
535int
536sys_oldselect(tcp)
537struct tcb *tcp;
538{
539 long args[5];
540
541 if (umoven(tcp, tcp->u_arg[0], sizeof args, (char *) args) < 0) {
542 tprintf("[...]");
543 return 0;
544 }
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +0000545 return decode_select(tcp, args, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000546}
547
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +0000548#ifdef ALPHA
Roland McGrathe948faf2002-12-15 23:58:18 +0000549int
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +0000550sys_osf_select(tcp)
551struct tcb *tcp;
552{
553 long *args = tcp->u_arg;
554 return decode_select(tcp, args, 1);
555}
556#endif
557
Roland McGrath93817bf2004-10-06 22:23:31 +0000558static struct xlat epollctls[] = {
Roland McGrath63d6e542004-10-20 02:17:41 +0000559#ifdef EPOLL_CTL_ADD
Roland McGrath93817bf2004-10-06 22:23:31 +0000560 { EPOLL_CTL_ADD, "EPOLL_CTL_ADD" },
Roland McGrath63d6e542004-10-20 02:17:41 +0000561#endif
562#ifdef EPOLL_CTL_MOD
Roland McGrath93817bf2004-10-06 22:23:31 +0000563 { EPOLL_CTL_MOD, "EPOLL_CTL_MOD" },
Roland McGrath63d6e542004-10-20 02:17:41 +0000564#endif
565#ifdef EPOLL_CTL_DEL
Roland McGrath93817bf2004-10-06 22:23:31 +0000566 { EPOLL_CTL_DEL, "EPOLL_CTL_DEL" },
Roland McGrath63d6e542004-10-20 02:17:41 +0000567#endif
Roland McGrath93817bf2004-10-06 22:23:31 +0000568 { 0, NULL }
569};
570
571static struct xlat epollevents[] = {
Roland McGrath63d6e542004-10-20 02:17:41 +0000572#ifdef EPOLLIN
Roland McGrath93817bf2004-10-06 22:23:31 +0000573 { EPOLLIN, "EPOLLIN" },
Roland McGrath63d6e542004-10-20 02:17:41 +0000574#endif
575#ifdef EPOLLPRI
Roland McGrath93817bf2004-10-06 22:23:31 +0000576 { EPOLLPRI, "EPOLLPRI" },
Roland McGrath63d6e542004-10-20 02:17:41 +0000577#endif
578#ifdef EPOLLOUT
Roland McGrath93817bf2004-10-06 22:23:31 +0000579 { EPOLLOUT, "EPOLLOUT" },
Roland McGrath63d6e542004-10-20 02:17:41 +0000580#endif
581#ifdef EPOLLRDNORM
Roland McGrath93817bf2004-10-06 22:23:31 +0000582 { EPOLLRDNORM, "EPOLLRDNORM" },
Roland McGrath63d6e542004-10-20 02:17:41 +0000583#endif
584#ifdef EPOLLRDBAND
Roland McGrath93817bf2004-10-06 22:23:31 +0000585 { EPOLLRDBAND, "EPOLLRDBAND" },
Roland McGrath63d6e542004-10-20 02:17:41 +0000586#endif
587#ifdef EPOLLWRNORM
Roland McGrath93817bf2004-10-06 22:23:31 +0000588 { EPOLLWRNORM, "EPOLLWRNORM" },
Roland McGrath63d6e542004-10-20 02:17:41 +0000589#endif
590#ifdef EPOLLWRBAND
Roland McGrath93817bf2004-10-06 22:23:31 +0000591 { EPOLLWRBAND, "EPOLLWRBAND" },
Roland McGrath63d6e542004-10-20 02:17:41 +0000592#endif
593#ifdef EPOLLMSG
Roland McGrath93817bf2004-10-06 22:23:31 +0000594 { EPOLLMSG, "EPOLLMSG" },
Roland McGrath63d6e542004-10-20 02:17:41 +0000595#endif
596#ifdef EPOLLERR
Roland McGrath93817bf2004-10-06 22:23:31 +0000597 { EPOLLERR, "EPOLLERR" },
Roland McGrath63d6e542004-10-20 02:17:41 +0000598#endif
599#ifdef EPOLLHUP
Roland McGrath93817bf2004-10-06 22:23:31 +0000600 { EPOLLHUP, "EPOLLHUP" },
Roland McGrath63d6e542004-10-20 02:17:41 +0000601#endif
602#ifdef EPOLLONESHOT
Roland McGrath93817bf2004-10-06 22:23:31 +0000603 { EPOLLONESHOT, "EPOLLONESHOT" },
Roland McGrath63d6e542004-10-20 02:17:41 +0000604#endif
605#ifdef EPOLLET
Roland McGrath93817bf2004-10-06 22:23:31 +0000606 { EPOLLET, "EPOLLET" },
Roland McGrath63d6e542004-10-20 02:17:41 +0000607#endif
Roland McGrath93817bf2004-10-06 22:23:31 +0000608 { 0, NULL }
609};
610
611int
612sys_epoll_create(tcp)
613struct tcb *tcp;
614{
615 if (entering(tcp))
616 tprintf("%ld", tcp->u_arg[0]);
617 return 0;
618}
619
Roland McGrath63d6e542004-10-20 02:17:41 +0000620#ifdef HAVE_SYS_EPOLL_H
Roland McGrath93817bf2004-10-06 22:23:31 +0000621static void
622print_epoll_event(ev)
623struct epoll_event *ev;
624{
625 tprintf("{");
626 if (printflags(epollevents, ev->events) == 0)
627 tprintf("0");
628 /* We cannot know what format the program uses, so print u32 and u64
629 which will cover every value. */
630 tprintf(", {u32=%" PRIu32 ", u64=%" PRIu64 "}}",
631 ev->data.u32, ev->data.u64);
632}
Roland McGrath63d6e542004-10-20 02:17:41 +0000633#endif
Roland McGrath93817bf2004-10-06 22:23:31 +0000634
635int
636sys_epoll_ctl(tcp)
637struct tcb *tcp;
638{
639 if (entering(tcp)) {
Roland McGrath93817bf2004-10-06 22:23:31 +0000640 tprintf("%ld, ", tcp->u_arg[0]);
641 printxval(epollctls, tcp->u_arg[1], "EPOLL_CTL_???");
642 tprintf(", %ld, ", tcp->u_arg[2]);
643 if (tcp->u_arg[3] == 0)
644 tprintf("NULL");
Roland McGrath63d6e542004-10-20 02:17:41 +0000645 else {
646#ifdef HAVE_SYS_EPOLL_H
647 struct epoll_event ev;
Roland McGrath6e52d232004-10-20 02:17:41 +0000648 if (umove(tcp, tcp->u_arg[3], &ev) == 0)
Roland McGrath63d6e542004-10-20 02:17:41 +0000649 print_epoll_event(&ev);
650 else
651#endif
652 tprintf("{...}");
653 }
Roland McGrath93817bf2004-10-06 22:23:31 +0000654 }
655 return 0;
656}
657
658int
659sys_epoll_wait(tcp)
660struct tcb *tcp;
661{
662 if (entering(tcp))
663 tprintf("%ld, ", tcp->u_arg[0]);
664 else {
665 if (syserror(tcp))
666 tprintf("%lx", tcp->u_arg[1]);
667 else if (tcp->u_rval == 0)
668 tprintf("{}");
669 else {
Roland McGrath63d6e542004-10-20 02:17:41 +0000670#ifdef HAVE_SYS_EPOLL_H
Roland McGrath93817bf2004-10-06 22:23:31 +0000671 struct epoll_event evs[tcp->u_rval];
Roland McGrath63d6e542004-10-20 02:17:41 +0000672 if (umove(tcp, tcp->u_arg[1], evs) == 0) {
Roland McGrath93817bf2004-10-06 22:23:31 +0000673 unsigned long i;
674 tprintf("{");
675 for (i = 0; i < tcp->u_rval; ++i) {
676 if (i > 0)
677 tprintf(", ");
678 print_epoll_event(&evs[i]);
679 }
680 tprintf("}");
681 }
Roland McGrath63d6e542004-10-20 02:17:41 +0000682 else
683#endif
684 tprintf("{...}");
Roland McGrath93817bf2004-10-06 22:23:31 +0000685 }
686 tprintf(", %ld, %ld", tcp->u_arg[2], tcp->u_arg[3]);
687 }
688 return 0;
689}
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000690#endif /* LINUX */
691
692int
693sys_select(tcp)
694struct tcb *tcp;
695{
696 long *args = tcp->u_arg;
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +0000697 return decode_select(tcp, args, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000698}