]> granicus.if.org Git - strace/blob - desc.c
8207ba0de7b2053a200f5f03d79e5dedd829e6ed
[strace] / desc.c
1 /*
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>
5  * Copyright (c) 1996-1999 Wichert Akkerman <wichert@cistron.nl>
6  * 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>
37 #ifdef LINUX
38 #include <inttypes.h>
39 #endif
40 #ifdef HAVE_SYS_EPOLL_H
41 #include <sys/epoll.h>
42 #endif
43 #ifdef HAVE_LIBAIO_H
44 #include <libaio.h>
45 #endif
46
47 #if HAVE_LONG_LONG_OFF_T
48 /*
49  * Hacks for systems that have a long long off_t
50  */
51 #define flock64 flock           /* Horrid hack */
52 #define printflock printflock64 /* Horrider hack */
53 #endif
54
55
56 static const struct xlat fcntlcmds[] = {
57         { F_DUPFD,      "F_DUPFD"       },
58         { F_GETFD,      "F_GETFD"       },
59         { F_SETFD,      "F_SETFD"       },
60         { F_GETFL,      "F_GETFL"       },
61         { F_SETFL,      "F_SETFL"       },
62         { F_GETLK,      "F_GETLK"       },
63         { F_SETLK,      "F_SETLK"       },
64         { F_SETLKW,     "F_SETLKW"      },
65         { F_GETOWN,     "F_GETOWN"      },
66         { F_SETOWN,     "F_SETOWN"      },
67 #ifdef F_RSETLK
68         { F_RSETLK,     "F_RSETLK"      },
69 #endif
70 #ifdef F_RSETLKW
71         { F_RSETLKW,    "F_RSETLKW"     },
72 #endif
73 #ifdef F_RGETLK
74         { F_RGETLK,     "F_RGETLK"      },
75 #endif
76 #ifdef F_CNVT
77         { F_CNVT,       "F_CNVT"        },
78 #endif
79 #ifdef F_SETSIG
80         { F_SETSIG,     "F_SETSIG"      },
81 #endif
82 #ifdef F_GETSIG
83         { F_GETSIG,     "F_GETSIG"      },
84 #endif
85 #ifdef F_CHKFL
86         { F_CHKFL,      "F_CHKFL"       },
87 #endif
88 #ifdef F_DUP2FD
89         { F_DUP2FD,     "F_DUP2FD"      },
90 #endif
91 #ifdef F_ALLOCSP
92         { F_ALLOCSP,    "F_ALLOCSP"     },
93 #endif
94 #ifdef F_ISSTREAM
95         { F_ISSTREAM,   "F_ISSTREAM"    },
96 #endif
97 #ifdef F_PRIV
98         { F_PRIV,       "F_PRIV"        },
99 #endif
100 #ifdef F_NPRIV
101         { F_NPRIV,      "F_NPRIV"       },
102 #endif
103 #ifdef F_QUOTACL
104         { F_QUOTACL,    "F_QUOTACL"     },
105 #endif
106 #ifdef F_BLOCKS
107         { F_BLOCKS,     "F_BLOCKS"      },
108 #endif
109 #ifdef F_BLKSIZE
110         { F_BLKSIZE,    "F_BLKSIZE"     },
111 #endif
112 #ifdef F_GETOWN
113         { F_GETOWN,     "F_GETOWN"      },
114 #endif
115 #ifdef F_SETOWN
116         { F_SETOWN,     "F_SETOWN"      },
117 #endif
118 #ifdef F_REVOKE
119         { F_REVOKE,     "F_REVOKE"      },
120 #endif
121 #ifdef F_SETLK
122         { F_SETLK,      "F_SETLK"       },
123 #endif
124 #ifdef F_SETLKW
125         { F_SETLKW,     "F_SETLKW"      },
126 #endif
127 #ifdef F_FREESP
128         { F_FREESP,     "F_FREESP"      },
129 #endif
130 #ifdef F_GETLK
131         { F_GETLK,      "F_GETLK"       },
132 #endif
133 #ifdef F_SETLK64
134         { F_SETLK64,    "F_SETLK64"     },
135 #endif
136 #ifdef F_SETLKW64
137         { F_SETLKW64,   "F_SETLKW64"    },
138 #endif
139 #ifdef F_FREESP64
140         { F_FREESP64,   "F_FREESP64"    },
141 #endif
142 #ifdef F_GETLK64
143         { F_GETLK64,    "F_GETLK64"     },
144 #endif
145 #ifdef F_SHARE
146         { F_SHARE,      "F_SHARE"       },
147 #endif
148 #ifdef F_UNSHARE
149         { F_UNSHARE,    "F_UNSHARE"     },
150 #endif
151 #ifdef F_SETLEASE
152         { F_SETLEASE,   "F_SETLEASE"    },
153 #endif
154 #ifdef F_GETLEASE
155         { F_GETLEASE,   "F_GETLEASE"    },
156 #endif
157 #ifdef F_NOTIFY
158         { F_NOTIFY,     "F_NOTIFY"      },
159 #endif
160 #ifdef F_DUPFD_CLOEXEC
161         { F_DUPFD_CLOEXEC,"F_DUPFD_CLOEXEC"},
162 #endif
163         { 0,            NULL            },
164 };
165
166 static const struct xlat fdflags[] = {
167 #ifdef FD_CLOEXEC
168         { FD_CLOEXEC,   "FD_CLOEXEC"    },
169 #endif
170         { 0,            NULL            },
171 };
172
173 #ifdef LOCK_SH
174
175 static const struct xlat flockcmds[] = {
176         { LOCK_SH,      "LOCK_SH"       },
177         { LOCK_EX,      "LOCK_EX"       },
178         { LOCK_NB,      "LOCK_NB"       },
179         { LOCK_UN,      "LOCK_UN"       },
180         { 0,            NULL            },
181 };
182
183 #endif /* LOCK_SH */
184
185 static const struct xlat lockfcmds[] = {
186         { F_RDLCK,      "F_RDLCK"       },
187         { F_WRLCK,      "F_WRLCK"       },
188         { F_UNLCK,      "F_UNLCK"       },
189 #ifdef F_EXLCK
190         { F_EXLCK,      "F_EXLCK"       },
191 #endif
192 #ifdef F_SHLCK
193         { F_SHLCK,      "F_SHLCK"       },
194 #endif
195         { 0,            NULL            },
196 };
197
198 #ifdef F_NOTIFY
199 static const struct xlat notifyflags[] = {
200 #ifdef DN_ACCESS
201         { DN_ACCESS,    "DN_ACCESS"     },
202 #endif
203 #ifdef DN_MODIFY
204         { DN_MODIFY,    "DN_MODIFY"     },
205 #endif
206 #ifdef DN_CREATE
207         { DN_CREATE,    "DN_CREATE"     },
208 #endif
209 #ifdef DN_DELETE
210         { DN_DELETE,    "DN_DELETE"     },
211 #endif
212 #ifdef DN_RENAME
213         { DN_RENAME,    "DN_RENAME"     },
214 #endif
215 #ifdef DN_ATTRIB
216         { DN_ATTRIB,    "DN_ATTRIB"     },
217 #endif
218 #ifdef DN_MULTISHOT
219         { DN_MULTISHOT, "DN_MULTISHOT"  },
220 #endif
221         { 0,            NULL            },
222 };
223 #endif
224
225 static const struct xlat whence[] = {
226         { SEEK_SET,     "SEEK_SET"      },
227         { SEEK_CUR,     "SEEK_CUR"      },
228         { SEEK_END,     "SEEK_END"      },
229         { 0,            NULL            },
230 };
231
232 #ifndef HAVE_LONG_LONG_OFF_T
233 /* fcntl/lockf */
234 static void
235 printflock(struct tcb *tcp, long addr, int getlk)
236 {
237         struct flock fl;
238
239 #if SUPPORTED_PERSONALITIES > 1
240         if (personality_wordsize[current_personality] != sizeof(fl.l_start)) {
241                 if (personality_wordsize[current_personality] == 4) {
242                         /* 32-bit x86 app on x86_64 and similar cases */
243                         struct {
244                                 short int l_type;
245                                 short int l_whence;
246                                 int32_t l_start; /* off_t */
247                                 int32_t l_len; /* off_t */
248                                 int32_t l_pid; /* pid_t */
249                         } fl32;
250                         if (umove(tcp, addr, &fl32) < 0) {
251                                 tprints("{...}");
252                                 return;
253                         }
254                         fl.l_type = fl32.l_type;
255                         fl.l_whence = fl32.l_whence;
256                         fl.l_start = fl32.l_start;
257                         fl.l_len = fl32.l_len;
258                         fl.l_pid = fl32.l_pid;
259                 } else {
260                         /* let people know we have a problem here */
261                         tprintf("{ <decode error: unsupported wordsize %d> }",
262                                 personality_wordsize[current_personality]);
263                         return;
264                 }
265         } else
266 #endif
267         {
268                 if (umove(tcp, addr, &fl) < 0) {
269                         tprints("{...}");
270                         return;
271                 }
272         }
273         tprints("{type=");
274         printxval(lockfcmds, fl.l_type, "F_???");
275         tprints(", whence=");
276         printxval(whence, fl.l_whence, "SEEK_???");
277         tprintf(", start=%ld, len=%ld", fl.l_start, fl.l_len);
278         if (getlk)
279                 tprintf(", pid=%lu}", (unsigned long) fl.l_pid);
280         else
281                 tprints("}");
282 }
283 #endif
284
285 #if _LFS64_LARGEFILE || HAVE_LONG_LONG_OFF_T
286 /* fcntl/lockf */
287 static void
288 printflock64(struct tcb *tcp, long addr, int getlk)
289 {
290         struct flock64 fl;
291
292         if (umove(tcp, addr, &fl) < 0) {
293                 tprints("{...}");
294                 return;
295         }
296         tprints("{type=");
297         printxval(lockfcmds, fl.l_type, "F_???");
298         tprints(", whence=");
299         printxval(whence, fl.l_whence, "SEEK_???");
300         tprintf(", start=%lld, len=%lld", (long long) fl.l_start, (long long) fl.l_len);
301         if (getlk)
302                 tprintf(", pid=%lu}", (unsigned long) fl.l_pid);
303         else
304                 tprints("}");
305 }
306 #endif
307
308 int
309 sys_fcntl(struct tcb *tcp)
310 {
311         if (entering(tcp)) {
312                 printfd(tcp, tcp->u_arg[0]);
313                 tprints(", ");
314                 printxval(fcntlcmds, tcp->u_arg[1], "F_???");
315                 switch (tcp->u_arg[1]) {
316                 case F_SETFD:
317                         tprints(", ");
318                         printflags(fdflags, tcp->u_arg[2], "FD_???");
319                         break;
320                 case F_SETOWN: case F_DUPFD:
321 #ifdef F_DUPFD_CLOEXEC
322                 case F_DUPFD_CLOEXEC:
323 #endif
324                         tprintf(", %ld", tcp->u_arg[2]);
325                         break;
326                 case F_SETFL:
327                         tprints(", ");
328                         tprint_open_modes(tcp->u_arg[2]);
329                         break;
330                 case F_SETLK: case F_SETLKW:
331 #ifdef F_FREESP
332                 case F_FREESP:
333 #endif
334                         tprints(", ");
335                         printflock(tcp, tcp->u_arg[2], 0);
336                         break;
337 #if _LFS64_LARGEFILE
338 #ifdef F_FREESP64
339                 case F_FREESP64:
340 #endif
341                 /* Linux glibc defines SETLK64 as SETLK,
342                    even though the kernel has different values - as does Solaris. */
343 #if defined(F_SETLK64) && F_SETLK64 + 0 != F_SETLK
344                 case F_SETLK64:
345 #endif
346 #if defined(F_SETLKW64) && F_SETLKW64 + 0 != F_SETLKW
347                 case F_SETLKW64:
348 #endif
349                         tprints(", ");
350                         printflock64(tcp, tcp->u_arg[2], 0);
351                         break;
352 #endif
353 #ifdef F_NOTIFY
354                 case F_NOTIFY:
355                         tprints(", ");
356                         printflags(notifyflags, tcp->u_arg[2], "DN_???");
357                         break;
358 #endif
359 #ifdef F_SETLEASE
360                 case F_SETLEASE:
361                         tprints(", ");
362                         printxval(lockfcmds, tcp->u_arg[2], "F_???");
363                         break;
364 #endif
365                 }
366         }
367         else {
368                 switch (tcp->u_arg[1]) {
369                 case F_DUPFD:
370 #ifdef F_DUPFD_CLOEXEC
371                 case F_DUPFD_CLOEXEC:
372 #endif
373                 case F_SETFD: case F_SETFL:
374                 case F_SETLK: case F_SETLKW:
375                 case F_SETOWN: case F_GETOWN:
376 #ifdef F_NOTIFY
377                 case F_NOTIFY:
378 #endif
379 #ifdef F_SETLEASE
380                 case F_SETLEASE:
381 #endif
382                         break;
383                 case F_GETFD:
384                         if (syserror(tcp) || tcp->u_rval == 0)
385                                 return 0;
386                         tcp->auxstr = sprintflags("flags ", fdflags, tcp->u_rval);
387                         return RVAL_HEX|RVAL_STR;
388                 case F_GETFL:
389                         if (syserror(tcp))
390                                 return 0;
391                         tcp->auxstr = sprint_open_modes(tcp->u_rval);
392                         return RVAL_HEX|RVAL_STR;
393                 case F_GETLK:
394                         tprints(", ");
395                         printflock(tcp, tcp->u_arg[2], 1);
396                         break;
397 #if _LFS64_LARGEFILE
398 #if defined(F_GETLK64) && F_GETLK64+0 != F_GETLK
399                 case F_GETLK64:
400 #endif
401                         tprints(", ");
402                         printflock64(tcp, tcp->u_arg[2], 1);
403                         break;
404 #endif
405 #ifdef F_GETLEASE
406                 case F_GETLEASE:
407                         if (syserror(tcp))
408                                 return 0;
409                         tcp->auxstr = xlookup(lockfcmds, tcp->u_rval);
410                         return RVAL_HEX|RVAL_STR;
411 #endif
412                 default:
413                         tprintf(", %#lx", tcp->u_arg[2]);
414                         break;
415                 }
416         }
417         return 0;
418 }
419
420 #ifdef LOCK_SH
421
422 int
423 sys_flock(struct tcb *tcp)
424 {
425         if (entering(tcp)) {
426                 printfd(tcp, tcp->u_arg[0]);
427                 tprints(", ");
428                 printflags(flockcmds, tcp->u_arg[1], "LOCK_???");
429         }
430         return 0;
431 }
432 #endif /* LOCK_SH */
433
434 int
435 sys_close(struct tcb *tcp)
436 {
437         if (entering(tcp)) {
438                 printfd(tcp, tcp->u_arg[0]);
439         }
440         return 0;
441 }
442
443 static int
444 do_dup2(struct tcb *tcp, int flags_arg)
445 {
446         if (entering(tcp)) {
447                 printfd(tcp, tcp->u_arg[0]);
448                 tprints(", ");
449                 printfd(tcp, tcp->u_arg[1]);
450                 if (flags_arg >= 0) {
451                         tprints(", ");
452                         printflags(open_mode_flags, tcp->u_arg[flags_arg], "O_???");
453                 }
454         }
455         return 0;
456 }
457
458 int
459 sys_dup2(struct tcb *tcp)
460 {
461         return do_dup2(tcp, -1);
462 }
463
464 #ifdef LINUX
465 int
466 sys_dup3(struct tcb *tcp)
467 {
468         return do_dup2(tcp, 2);
469 }
470 #endif
471
472 #if defined(ALPHA) || defined(FREEBSD) || defined(SUNOS4)
473 int
474 sys_getdtablesize(struct tcb *tcp)
475 {
476         return 0;
477 }
478 #endif /* ALPHA || FREEBSD || SUNOS4 */
479
480 static int
481 decode_select(struct tcb *tcp, long *args, enum bitness_t bitness)
482 {
483         int i, j;
484         unsigned nfds, fdsize;
485         fd_set *fds;
486         const char *sep;
487         long arg;
488
489         fdsize = args[0];
490         /* Beware of select(2^31-1, NULL, NULL, NULL) and similar... */
491         if (args[0] > 1024*1024)
492                 fdsize = 1024*1024;
493         if (args[0] < 0)
494                 fdsize = 0;
495         fdsize = (((fdsize + 7) / 8) + sizeof(long)-1) & -sizeof(long);
496
497         if (entering(tcp)) {
498                 fds = malloc(fdsize);
499                 if (!fds)
500                         die_out_of_memory();
501                 nfds = args[0];
502                 tprintf("%d", nfds);
503                 for (i = 0; i < 3; i++) {
504                         arg = args[i+1];
505                         if (arg == 0) {
506                                 tprints(", NULL");
507                                 continue;
508                         }
509                         if (!verbose(tcp)) {
510                                 tprintf(", %#lx", arg);
511                                 continue;
512                         }
513                         if (umoven(tcp, arg, fdsize, (char *) fds) < 0) {
514                                 tprints(", [?]");
515                                 continue;
516                         }
517                         tprints(", [");
518                         for (j = 0, sep = ""; j < nfds; j++) {
519                                 if (FD_ISSET(j, fds)) {
520                                         tprints(sep);
521                                         printfd(tcp, j);
522                                         sep = " ";
523                                 }
524                         }
525                         tprints("]");
526                 }
527                 free(fds);
528                 tprints(", ");
529                 printtv_bitness(tcp, args[4], bitness, 0);
530         }
531         else {
532                 static char outstr[1024];
533                 char *outptr;
534 #define end_outstr (outstr + sizeof(outstr))
535                 const char *sep;
536
537                 if (syserror(tcp))
538                         return 0;
539
540                 nfds = tcp->u_rval;
541                 if (nfds == 0) {
542                         tcp->auxstr = "Timeout";
543                         return RVAL_STR;
544                 }
545
546                 fds = malloc(fdsize);
547                 if (!fds)
548                         die_out_of_memory();
549
550                 outptr = outstr;
551                 sep = "";
552                 for (i = 0; i < 3; i++) {
553                         int first = 1;
554
555                         arg = args[i+1];
556                         if (!arg || umoven(tcp, arg, fdsize, (char *) fds) < 0)
557                                 continue;
558                         for (j = 0; j < args[0]; j++) {
559                                 if (FD_ISSET(j, fds)) {
560                                         /* +2 chars needed at the end: ']',NUL */
561                                         if (outptr < end_outstr - (sizeof(", except [") + sizeof(int)*3 + 2)) {
562                                                 if (first) {
563                                                         outptr += sprintf(outptr, "%s%s [%u",
564                                                                 sep,
565                                                                 i == 0 ? "in" : i == 1 ? "out" : "except",
566                                                                 j
567                                                         );
568                                                         first = 0;
569                                                         sep = ", ";
570                                                 }
571                                                 else {
572                                                         outptr += sprintf(outptr, " %u", j);
573                                                 }
574                                         }
575                                         nfds--;
576                                 }
577                         }
578                         if (outptr != outstr)
579                                 *outptr++ = ']';
580                         if (nfds == 0)
581                                 break;
582                 }
583                 free(fds);
584 #ifdef LINUX
585                 /* This contains no useful information on SunOS.  */
586                 if (args[4]) {
587                         if (outptr < end_outstr - (10 + TIMEVAL_TEXT_BUFSIZE)) {
588                                 outptr += sprintf(outptr, "%sleft ", sep);
589                                 outptr = sprinttv(outptr, tcp, args[4], bitness, /*special:*/ 0);
590                         }
591                 }
592 #endif /* LINUX */
593                 *outptr = '\0';
594                 tcp->auxstr = outstr;
595                 return RVAL_STR;
596 #undef end_outstr
597         }
598         return 0;
599 }
600
601 #ifdef LINUX
602
603 int
604 sys_oldselect(struct tcb *tcp)
605 {
606         long args[5];
607
608         if (umoven(tcp, tcp->u_arg[0], sizeof args, (char *) args) < 0) {
609                 tprints("[...]");
610                 return 0;
611         }
612         return decode_select(tcp, args, BITNESS_CURRENT);
613 }
614
615 #ifdef ALPHA
616 int
617 sys_osf_select(struct tcb *tcp)
618 {
619         long *args = tcp->u_arg;
620         return decode_select(tcp, args, BITNESS_32);
621 }
622 #endif
623
624 static const struct xlat epollctls[] = {
625 #ifdef EPOLL_CTL_ADD
626         { EPOLL_CTL_ADD,        "EPOLL_CTL_ADD" },
627 #endif
628 #ifdef EPOLL_CTL_MOD
629         { EPOLL_CTL_MOD,        "EPOLL_CTL_MOD" },
630 #endif
631 #ifdef EPOLL_CTL_DEL
632         { EPOLL_CTL_DEL,        "EPOLL_CTL_DEL" },
633 #endif
634         { 0,                    NULL            }
635 };
636
637 static const struct xlat epollevents[] = {
638 #ifdef EPOLLIN
639         { EPOLLIN,      "EPOLLIN"       },
640 #endif
641 #ifdef EPOLLPRI
642         { EPOLLPRI,     "EPOLLPRI"      },
643 #endif
644 #ifdef EPOLLOUT
645         { EPOLLOUT,     "EPOLLOUT"      },
646 #endif
647 #ifdef EPOLLRDNORM
648         { EPOLLRDNORM,  "EPOLLRDNORM"   },
649 #endif
650 #ifdef EPOLLRDBAND
651         { EPOLLRDBAND,  "EPOLLRDBAND"   },
652 #endif
653 #ifdef EPOLLWRNORM
654         { EPOLLWRNORM,  "EPOLLWRNORM"   },
655 #endif
656 #ifdef EPOLLWRBAND
657         { EPOLLWRBAND,  "EPOLLWRBAND"   },
658 #endif
659 #ifdef EPOLLMSG
660         { EPOLLMSG,     "EPOLLMSG"      },
661 #endif
662 #ifdef EPOLLERR
663         { EPOLLERR,     "EPOLLERR"      },
664 #endif
665 #ifdef EPOLLHUP
666         { EPOLLHUP,     "EPOLLHUP"      },
667 #endif
668 #ifdef EPOLLRDHUP
669         { EPOLLRDHUP,   "EPOLLRDHUP"    },
670 #endif
671 #ifdef EPOLLONESHOT
672         { EPOLLONESHOT, "EPOLLONESHOT"  },
673 #endif
674 #ifdef EPOLLET
675         { EPOLLET,      "EPOLLET"       },
676 #endif
677         { 0,            NULL            }
678 };
679
680 int
681 sys_epoll_create(struct tcb *tcp)
682 {
683         if (entering(tcp))
684                 tprintf("%ld", tcp->u_arg[0]);
685         return 0;
686 }
687
688 static const struct xlat epollflags[] = {
689 #ifdef EPOLL_CLOEXEC
690         { EPOLL_CLOEXEC,        "EPOLL_CLOEXEC" },
691 #endif
692 #ifdef EPOLL_NONBLOCK
693         { EPOLL_NONBLOCK,       "EPOLL_NONBLOCK"        },
694 #endif
695         { 0,            NULL            }
696 };
697
698 int
699 sys_epoll_create1(struct tcb *tcp)
700 {
701         if (entering(tcp))
702                 printflags(epollflags, tcp->u_arg[0], "EPOLL_???");
703         return 0;
704 }
705
706 #ifdef HAVE_SYS_EPOLL_H
707 static void
708 print_epoll_event(struct epoll_event *ev)
709 {
710         tprints("{");
711         printflags(epollevents, ev->events, "EPOLL???");
712         /* We cannot know what format the program uses, so print u32 and u64
713            which will cover every value.  */
714         tprintf(", {u32=%" PRIu32 ", u64=%" PRIu64 "}}",
715                 ev->data.u32, ev->data.u64);
716 }
717 #endif
718
719 int
720 sys_epoll_ctl(struct tcb *tcp)
721 {
722         if (entering(tcp)) {
723                 printfd(tcp, tcp->u_arg[0]);
724                 tprints(", ");
725                 printxval(epollctls, tcp->u_arg[1], "EPOLL_CTL_???");
726                 tprints(", ");
727                 printfd(tcp, tcp->u_arg[2]);
728                 tprints(", ");
729                 if (tcp->u_arg[3] == 0)
730                         tprints("NULL");
731                 else {
732 #ifdef HAVE_SYS_EPOLL_H
733                         struct epoll_event ev;
734                         if (umove(tcp, tcp->u_arg[3], &ev) == 0)
735                                 print_epoll_event(&ev);
736                         else
737 #endif
738                                 tprints("{...}");
739                 }
740         }
741         return 0;
742 }
743
744 static void
745 epoll_wait_common(struct tcb *tcp)
746 {
747         if (entering(tcp)) {
748                 printfd(tcp, tcp->u_arg[0]);
749                 tprints(", ");
750         } else {
751                 if (syserror(tcp))
752                         tprintf("%lx", tcp->u_arg[1]);
753                 else if (tcp->u_rval == 0)
754                         tprints("{}");
755                 else {
756 #ifdef HAVE_SYS_EPOLL_H
757                         struct epoll_event ev, *start, *cur, *end;
758                         int failed = 0;
759
760                         tprints("{");
761                         start = (struct epoll_event *) tcp->u_arg[1];
762                         end = start + tcp->u_rval;
763                         for (cur = start; cur < end; ++cur) {
764                                 if (cur > start)
765                                         tprints(", ");
766                                 if (umove(tcp, (long) cur, &ev) == 0)
767                                         print_epoll_event(&ev);
768                                 else {
769                                         tprints("?");
770                                         failed = 1;
771                                         break;
772                                 }
773                         }
774                         tprints("}");
775                         if (failed)
776                                 tprintf(" %#lx", (long) start);
777 #else
778                         tprints("{...}");
779 #endif
780                 }
781                 tprintf(", %d, %d", (int) tcp->u_arg[2], (int) tcp->u_arg[3]);
782         }
783 }
784
785 int
786 sys_epoll_wait(struct tcb *tcp)
787 {
788         epoll_wait_common(tcp);
789         return 0;
790 }
791
792 int
793 sys_epoll_pwait(struct tcb *tcp)
794 {
795         epoll_wait_common(tcp);
796         if (exiting(tcp)) {
797                 tprints(", ");
798                 print_sigset(tcp, tcp->u_arg[4], 0);
799         }
800         return 0;
801 }
802
803 int
804 sys_io_setup(struct tcb *tcp)
805 {
806         if (entering(tcp))
807                 tprintf("%ld, ", tcp->u_arg[0]);
808         else {
809                 if (syserror(tcp))
810                         tprintf("0x%0lx", tcp->u_arg[1]);
811                 else {
812                         unsigned long user_id;
813                         if (umove(tcp, tcp->u_arg[1], &user_id) == 0)
814                                 tprintf("{%lu}", user_id);
815                         else
816                                 tprints("{...}");
817                 }
818         }
819         return 0;
820 }
821
822 int
823 sys_io_destroy(struct tcb *tcp)
824 {
825         if (entering(tcp))
826                 tprintf("%lu", tcp->u_arg[0]);
827         return 0;
828 }
829
830 #ifdef HAVE_LIBAIO_H
831
832 enum iocb_sub {
833         SUB_NONE, SUB_COMMON, SUB_POLL, SUB_VECTOR
834 };
835
836 static const char *
837 iocb_cmd_lookup(unsigned cmd, enum iocb_sub *sub)
838 {
839         static char buf[sizeof("%u /* SUB_??? */") + sizeof(int)*3];
840         static const struct {
841                 const char *name;
842                 enum iocb_sub sub;
843         } cmds[] = {
844                 { "pread", SUB_COMMON },
845                 { "pwrite", SUB_COMMON },
846                 { "fsync", SUB_NONE },
847                 { "fdsync", SUB_NONE },
848                 { "op4", SUB_NONE },
849                 { "poll", SUB_POLL },
850                 { "noop", SUB_NONE },
851                 { "preadv", SUB_VECTOR },
852                 { "pwritev", SUB_VECTOR },
853         };
854
855         if (cmd < ARRAY_SIZE(cmds)) {
856                 *sub = cmds[cmd].sub;
857                 return cmds[cmd].name;
858         }
859         *sub = SUB_NONE;
860         sprintf(buf, "%u /* SUB_??? */", cmd);
861         return buf;
862 }
863
864 /* Not defined in libaio.h */
865 #ifndef IOCB_RESFD
866 # define IOCB_RESFD (1 << 0)
867 #endif
868
869 static void
870 print_common_flags(struct iocb *iocb)
871 {
872         if (iocb->u.c.flags & IOCB_RESFD)
873                 tprintf("resfd=%d, ", iocb->u.c.resfd);
874         if (iocb->u.c.flags & ~IOCB_RESFD)
875                 tprintf("flags=%x, ", iocb->u.c.flags);
876 }
877
878 #endif /* HAVE_LIBAIO_H */
879
880 int
881 sys_io_submit(struct tcb *tcp)
882 {
883         long nr;
884         if (entering(tcp)) {
885                 tprintf("%lu, %ld, ", tcp->u_arg[0], tcp->u_arg[1]);
886                 nr = tcp->u_arg[1];
887                 /* and if nr is negative? */
888                 if (nr == 0)
889                         tprints("{}");
890                 else {
891 #ifdef HAVE_LIBAIO_H
892                         long i;
893                         struct iocb *iocbp, **iocbs = (void *)tcp->u_arg[2];
894
895                         for (i = 0; i < nr; i++, iocbs++) {
896                                 enum iocb_sub sub;
897                                 struct iocb iocb;
898                                 if (i == 0)
899                                         tprints("{");
900                                 else
901                                         tprints(", ");
902
903                                 if (umove(tcp, (unsigned long)iocbs, &iocbp) ||
904                                     umove(tcp, (unsigned long)iocbp, &iocb)) {
905                                         tprints("{...}");
906                                         continue;
907                                 }
908                                 tprints("{");
909                                 if (iocb.data)
910                                         tprintf("data:%p, ", iocb.data);
911                                 if (iocb.key)
912                                         tprintf("key:%u, ", iocb.key);
913                                 tprintf("%s, ", iocb_cmd_lookup(iocb.aio_lio_opcode, &sub));
914                                 if (iocb.aio_reqprio)
915                                         tprintf("reqprio:%d, ", iocb.aio_reqprio);
916                                 tprintf("filedes:%d", iocb.aio_fildes);
917                                 switch (sub) {
918                                 case SUB_COMMON:
919                                         if (iocb.aio_lio_opcode == IO_CMD_PWRITE) {
920                                                 tprints(", str:");
921                                                 printstr(tcp, (unsigned long)iocb.u.c.buf,
922                                                          iocb.u.c.nbytes);
923                                         } else {
924                                                 tprintf(", buf:%p", iocb.u.c.buf);
925                                         }
926                                         tprintf(", nbytes:%lu, offset:%llx",
927                                                 iocb.u.c.nbytes,
928                                                 iocb.u.c.offset);
929                                         print_common_flags(&iocb);
930                                         break;
931                                 case SUB_VECTOR:
932                                         tprintf(", %llx, ", iocb.u.v.offset);
933                                         print_common_flags(&iocb);
934                                         tprint_iov(tcp, iocb.u.v.nr,
935                                                    (unsigned long)iocb.u.v.vec,
936                                                    iocb.aio_lio_opcode == IO_CMD_PWRITEV);
937                                         break;
938                                 case SUB_POLL:
939                                         tprintf(", %x", iocb.u.poll.events);
940                                         break;
941                                 case SUB_NONE:
942                                         break;
943                                 }
944                                 tprints("}");
945                         }
946                         if (i)
947                                 tprints("}");
948 #else
949 #warning "libaio-devel is not available => no io_submit decoding"
950                         tprintf("%#lx", tcp->u_arg[2]);
951 #endif
952                 }
953         }
954         return 0;
955 }
956
957 int
958 sys_io_cancel(struct tcb *tcp)
959 {
960         if (entering(tcp)) {
961 #ifdef HAVE_LIBAIO_H
962                 struct iocb iocb;
963 #endif
964                 tprintf("%lu, ", tcp->u_arg[0]);
965 #ifdef HAVE_LIBAIO_H
966                 if (umove(tcp, tcp->u_arg[1], &iocb) == 0) {
967                         tprintf("{%p, %u, %hu, %hu, %d}, ",
968                                 iocb.data, iocb.key,
969                                 iocb.aio_lio_opcode,
970                                 iocb.aio_reqprio, iocb.aio_fildes);
971                 } else
972 #endif
973                         tprints("{...}, ");
974         } else {
975                 if (tcp->u_rval < 0)
976                         tprints("{...}");
977                 else {
978 #ifdef HAVE_LIBAIO_H
979                         struct io_event event;
980                         if (umove(tcp, tcp->u_arg[2], &event) == 0)
981                                 tprintf("{%p, %p, %ld, %ld}",
982                                         event.data, event.obj,
983                                         event.res, event.res2);
984                         else
985 #endif
986                                 tprints("{...}");
987                 }
988         }
989         return 0;
990 }
991
992 int
993 sys_io_getevents(struct tcb *tcp)
994 {
995         if (entering(tcp)) {
996                 tprintf("%ld, %ld, %ld, ", tcp->u_arg[0], tcp->u_arg[1],
997                         tcp->u_arg[2]);
998         } else {
999                 if (tcp->u_rval == 0) {
1000                         tprints("{}");
1001                 } else  {
1002 #ifdef HAVE_LIBAIO_H
1003                         struct io_event *events = (void *)tcp->u_arg[3];
1004                         long i, nr = tcp->u_rval;
1005
1006                         for (i = 0; i < nr; i++, events++) {
1007                                 struct io_event event;
1008
1009                                 if (i == 0)
1010                                         tprints("{");
1011                                 else
1012                                         tprints(", ");
1013
1014                                 if (umove(tcp, (unsigned long)events, &event) != 0) {
1015                                         tprints("{...}");
1016                                         continue;
1017                                 }
1018                                 tprintf("{%p, %p, %ld, %ld}", event.data,
1019                                         event.obj, event.res, event.res2);
1020                         }
1021                         tprints("}, ");
1022 #else
1023                                 tprints("{...}");
1024 #endif
1025                 }
1026
1027                 print_timespec(tcp, tcp->u_arg[4]);
1028         }
1029         return 0;
1030 }
1031 #endif /* LINUX */
1032
1033 int
1034 sys_select(struct tcb *tcp)
1035 {
1036         return decode_select(tcp, tcp->u_arg, BITNESS_CURRENT);
1037 }
1038
1039 #ifdef LINUX
1040 int
1041 sys_pselect6(struct tcb *tcp)
1042 {
1043         int rc = decode_select(tcp, tcp->u_arg, BITNESS_CURRENT);
1044         if (entering(tcp)) {
1045                 struct {
1046                         void *ss;
1047                         unsigned long len;
1048                 } data;
1049                 if (umove(tcp, tcp->u_arg[5], &data) < 0)
1050                         tprintf(", %#lx", tcp->u_arg[5]);
1051                 else {
1052                         tprints(", {");
1053                         if (data.len < sizeof(long))
1054                                 tprintf("%#lx", (long)data.ss);
1055                         else
1056                                 print_sigset(tcp, (long)data.ss, 0);
1057                         tprintf(", %lu}", data.len);
1058                 }
1059         }
1060         return rc;
1061 }
1062
1063 static int
1064 do_eventfd(struct tcb *tcp, int flags_arg)
1065 {
1066         if (entering(tcp)) {
1067                 tprintf("%lu", tcp->u_arg[0]);
1068                 if (flags_arg >= 0) {
1069                         tprints(", ");
1070                         printflags(open_mode_flags, tcp->u_arg[flags_arg], "O_???");
1071                 }
1072         }
1073         return 0;
1074 }
1075
1076 int
1077 sys_eventfd(struct tcb *tcp)
1078 {
1079         return do_eventfd(tcp, -1);
1080 }
1081
1082 int
1083 sys_eventfd2(struct tcb *tcp)
1084 {
1085         return do_eventfd(tcp, 1);
1086 }
1087 #endif