]> granicus.if.org Git - strace/blob - desc.c
.
[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
44 #if HAVE_LONG_LONG_OFF_T
45 /*
46  * Hacks for systems that have a long long off_t
47  */
48 #define flock64 flock           /* Horrid hack */
49 #define printflock printflock64 /* Horrider hack */
50 #endif
51
52
53 static const struct xlat fcntlcmds[] = {
54         { 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
76 #ifdef F_SETSIG
77         { F_SETSIG,     "F_SETSIG"      },
78 #endif
79 #ifdef F_GETSIG
80         { F_GETSIG,     "F_GETSIG"      },
81 #endif
82 #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
148         { 0,            NULL            },
149 };
150
151 static const struct xlat fdflags[] = {
152 #ifdef FD_CLOEXEC
153         { FD_CLOEXEC,   "FD_CLOEXEC"    },
154 #endif
155         { 0,            NULL            },
156 };
157
158 #ifdef LOCK_SH
159
160 static const struct xlat flockcmds[] = {
161         { 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
170 static const struct xlat lockfcmds[] = {
171         { 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
183 static const struct xlat whence[] = {
184         { SEEK_SET,     "SEEK_SET"      },
185         { SEEK_CUR,     "SEEK_CUR"      },
186         { SEEK_END,     "SEEK_END"      },
187         { 0,            NULL            },
188 };
189
190 #ifndef HAVE_LONG_LONG_OFF_T
191 /* fcntl/lockf */
192 static void
193 printflock(tcp, addr, getlk)
194 struct tcb *tcp;
195 long addr;
196 int 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 }
214 #endif
215
216 #if _LFS64_LARGEFILE || HAVE_LONG_LONG_OFF_T
217 /* fcntl/lockf */
218 static void
219 printflock64(tcp, addr, getlk)
220 struct tcb *tcp;
221 long addr;
222 int 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_???");
234         tprintf(", start=%lld, len=%lld", (long long) fl.l_start, (long long) fl.l_len);
235         if (getlk)
236                 tprintf(", pid=%lu}", (unsigned long) fl.l_pid);
237         else
238                 tprintf("}");
239 }
240 #endif
241
242 static char *
243 sprintflags(xlat, flags)
244 const struct xlat *xlat;
245 int 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
266 int
267 sys_fcntl(tcp)
268 struct tcb *tcp;
269 {
270         extern const struct xlat openmodes[];
271
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:
290 #ifdef F_FREESP
291                 case F_FREESP:
292 #endif
293                         tprintf(", ");
294                         printflock(tcp, tcp->u_arg[2], 0);
295                         break;
296 #if _LFS64_LARGEFILE
297 #ifdef F_FREESP64
298                 case F_FREESP64:
299 #endif
300                 /* Linux glibc defines SETLK64 as SETLK,
301                    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                 }
313         }
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;
333 #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:
342                         tprintf(", %#lx", tcp->u_arg[2]);
343                         break;
344                 }
345         }
346         return 0;
347 }
348
349 #ifdef LOCK_SH
350
351 int
352 sys_flock(tcp)
353 struct 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
364 int
365 sys_close(tcp)
366 struct tcb *tcp;
367 {
368         if (entering(tcp)) {
369                 tprintf("%ld", tcp->u_arg[0]);
370         }
371         return 0;
372 }
373
374 int
375 sys_dup(tcp)
376 struct tcb *tcp;
377 {
378         if (entering(tcp)) {
379                 tprintf("%ld", tcp->u_arg[0]);
380         }
381         return 0;
382 }
383
384 int
385 sys_dup2(tcp)
386 struct 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
394 int
395 sys_getdtablesize(tcp)
396 struct tcb *tcp;
397 {
398         return 0;
399 }
400
401 static int
402 decode_select(tcp, args, bitness)
403 struct tcb *tcp;
404 long *args;
405 int bitness;
406 {
407         int i, j, nfds;
408         unsigned int fdsize = ((((args[0] + 7) / 8) + sizeof(long) - 1)
409                                & -sizeof(long));
410         fd_set *fds;
411         struct timeval tv;
412 #ifdef ALPHA
413         struct timeval32 {
414                 unsigned tv_sec;
415                 unsigned tv_usec;
416         } *tv32;
417 #endif
418         static char outstr[1024];
419         char *sep;
420         long arg;
421
422         if (entering(tcp)) {
423                 fds = (fd_set *) malloc(fdsize);
424                 if (fds == NULL) {
425                         tprintf("out of memory\n");
426                         return 0;
427                 }
428                 nfds = args[0];
429                 tprintf("%d", nfds);
430                 for (i = 0; i < 3; i++) {
431                         arg = args[i+1];
432                         if (arg == 0) {
433                                 tprintf(", NULL");
434                                 continue;
435                         }
436                         if (!verbose(tcp)) {
437                                 tprintf(", %#lx", arg);
438                                 continue;
439                         }
440                         if (umoven(tcp, arg, fdsize, (char *) fds) < 0) {
441                                 tprintf(", [?]");
442                                 continue;
443                         }
444                         tprintf(", [");
445                         for (j = 0, sep = ""; j < nfds; j++) {
446                                 if (FD_ISSET(j, fds)) {
447                                         tprintf("%s%u", sep, j);
448                                         sep = " ";
449                                 }
450                         }
451                         tprintf("]");
452                 }
453                 free(fds);
454                 if (!args[4])
455                         tprintf(", NULL");
456                 else if (!verbose(tcp))
457                         tprintf(", %#lx", args[4]);
458                 else if (umove(tcp, args[4], &tv) < 0)
459                         tprintf(", {...}");
460                 else {
461 #ifdef ALPHA
462                         if (bitness) {
463                                 tv32=(struct timeval32*)&tv;
464                                 tprintf(", {%u, %u}", tv32->tv_sec, tv32->tv_usec);
465                         } else
466 #endif
467                                 tprintf(", {%lu, %lu}",
468                                         (long) tv.tv_sec, (long) tv.tv_usec);
469                 }
470         }
471         else
472         {
473                 unsigned int cumlen = 0;
474                 char *sep = "";
475
476                 if (syserror(tcp))
477                         return 0;
478
479                 if ((nfds = tcp->u_rval) == 0) {
480                         tcp->auxstr = "Timeout";
481                         return RVAL_STR;
482                 }
483
484                 fds = (fd_set *) malloc(fdsize);
485                 if (fds == NULL) {
486                         tprintf("out of memory\n");
487                         return 0;
488                 }
489
490                 outstr[0] = '\0';
491                 for (i = 0; i < 3; i++) {
492                         int first = 1;
493                         char str[20];
494
495                         tcp->auxstr = outstr;
496                         arg = args[i+1];
497                         if (!arg || umoven(tcp, arg, fdsize, (char *) fds) < 0)
498                                 continue;
499                         for (j = 0; j < args[0]; j++) {
500                                 if (FD_ISSET(j, fds)) {
501                                         if (first) {
502                                                 sprintf(str, "%s%s [%u", sep,
503                                                         i == 0 ? "in" :
504                                                         i == 1 ? "out" :
505                                                         "except", j);
506                                                 first = 0;
507                                                 sep = ", ";
508                                         }
509                                         else
510                                                 sprintf(str, " %u", j);
511                                         cumlen += strlen(str);
512                                         if (cumlen < sizeof(outstr))
513                                                 strcat(outstr, str);
514                                         nfds--;
515                                 }
516                         }
517                         if (cumlen)
518                                 strcat(outstr, "]");
519                         if (nfds == 0)
520                                 break;
521                 }
522                 free(fds);
523 #ifdef LINUX
524                 /* This contains no useful information on SunOS.  */
525                 if (args[4]) {
526                         char str[20];
527
528                         if (umove(tcp, args[4], &tv) >= 0) {
529 #ifdef ALPHA
530                                 if (bitness) {
531                                         tv32=(struct timeval32*)&tv;
532                                         sprintf(str, "%sleft {%u, %u}", sep,
533                                                 tv32->tv_sec, tv32->tv_usec);
534                                 } else
535 #endif
536                                         sprintf(str, "%sleft {%lu, %lu}", sep,
537                                                 (long) tv.tv_sec, (long) tv.tv_usec);
538
539                                 if ((cumlen += strlen(str)) < sizeof(outstr))
540                                         strcat(outstr, str);
541                         }
542                 }
543 #endif /* LINUX */
544                 return RVAL_STR;
545         }
546         return 0;
547 }
548
549 #ifdef LINUX
550
551 int
552 sys_oldselect(tcp)
553 struct tcb *tcp;
554 {
555         long args[5];
556
557         if (umoven(tcp, tcp->u_arg[0], sizeof args, (char *) args) < 0) {
558                 tprintf("[...]");
559                 return 0;
560         }
561         return decode_select(tcp, args, 0);
562 }
563
564 #ifdef ALPHA
565 int
566 sys_osf_select(tcp)
567 struct tcb *tcp;
568 {
569         long *args = tcp->u_arg;
570         return decode_select(tcp, args, 1);
571 }
572 #endif
573
574 static struct xlat epollctls[] = {
575 #ifdef EPOLL_CTL_ADD
576         { EPOLL_CTL_ADD,        "EPOLL_CTL_ADD" },
577 #endif
578 #ifdef EPOLL_CTL_MOD
579         { EPOLL_CTL_MOD,        "EPOLL_CTL_MOD" },
580 #endif
581 #ifdef EPOLL_CTL_DEL
582         { EPOLL_CTL_DEL,        "EPOLL_CTL_DEL" },
583 #endif
584         { 0,                    NULL            }
585 };
586
587 static struct xlat epollevents[] = {
588 #ifdef EPOLLIN
589         { EPOLLIN,      "EPOLLIN"       },
590 #endif
591 #ifdef EPOLLPRI
592         { EPOLLPRI,     "EPOLLPRI"      },
593 #endif
594 #ifdef EPOLLOUT
595         { EPOLLOUT,     "EPOLLOUT"      },
596 #endif
597 #ifdef EPOLLRDNORM
598         { EPOLLRDNORM,  "EPOLLRDNORM"   },
599 #endif
600 #ifdef EPOLLRDBAND
601         { EPOLLRDBAND,  "EPOLLRDBAND"   },
602 #endif
603 #ifdef EPOLLWRNORM
604         { EPOLLWRNORM,  "EPOLLWRNORM"   },
605 #endif
606 #ifdef EPOLLWRBAND
607         { EPOLLWRBAND,  "EPOLLWRBAND"   },
608 #endif
609 #ifdef EPOLLMSG
610         { EPOLLMSG,     "EPOLLMSG"      },
611 #endif
612 #ifdef EPOLLERR
613         { EPOLLERR,     "EPOLLERR"      },
614 #endif
615 #ifdef EPOLLHUP
616         { EPOLLHUP,     "EPOLLHUP"      },
617 #endif
618 #ifdef EPOLLONESHOT
619         { EPOLLONESHOT, "EPOLLONESHOT"  },
620 #endif
621 #ifdef EPOLLET
622         { EPOLLET,      "EPOLLET"       },
623 #endif
624         { 0,            NULL            }
625 };
626
627 int
628 sys_epoll_create(tcp)
629 struct tcb *tcp;
630 {
631         if (entering(tcp))
632                 tprintf("%ld", tcp->u_arg[0]);
633         return 0;
634 }
635
636 #ifdef HAVE_SYS_EPOLL_H
637 static void
638 print_epoll_event(ev)
639 struct epoll_event *ev;
640 {
641         tprintf("{");
642         if (printflags(epollevents, ev->events) == 0)
643                 tprintf("0");
644         /* We cannot know what format the program uses, so print u32 and u64
645            which will cover every value.  */
646         tprintf(", {u32=%" PRIu32 ", u64=%" PRIu64 "}}",
647                 ev->data.u32, ev->data.u64);
648 }
649 #endif
650
651 int
652 sys_epoll_ctl(tcp)
653 struct tcb *tcp;
654 {
655         if (entering(tcp)) {
656                 tprintf("%ld, ", tcp->u_arg[0]);
657                 printxval(epollctls, tcp->u_arg[1], "EPOLL_CTL_???");
658                 tprintf(", %ld, ", tcp->u_arg[2]);
659                 if (tcp->u_arg[3] == 0)
660                         tprintf("NULL");
661                 else {
662 #ifdef HAVE_SYS_EPOLL_H
663                         struct epoll_event ev;
664                         if (umove(tcp, tcp->u_arg[3], &ev) == 0)
665                                 print_epoll_event(&ev);
666                         else
667 #endif
668                                 tprintf("{...}");
669                 }
670         }
671         return 0;
672 }
673
674 int
675 sys_epoll_wait(tcp)
676 struct tcb *tcp;
677 {
678         if (entering(tcp))
679                 tprintf("%ld, ", tcp->u_arg[0]);
680         else {
681                 if (syserror(tcp))
682                         tprintf("%lx", tcp->u_arg[1]);
683                 else if (tcp->u_rval == 0)
684                         tprintf("{}");
685                 else {
686 #ifdef HAVE_SYS_EPOLL_H
687                         struct epoll_event evs[tcp->u_rval];
688                         if (umove(tcp, tcp->u_arg[1], evs) == 0) {
689                                 unsigned long i;
690                                 tprintf("{");
691                                 for (i = 0; i < tcp->u_rval; ++i) {
692                                         if (i > 0)
693                                                 tprintf(", ");
694                                         print_epoll_event(&evs[i]);
695                                 }
696                                 tprintf("}");
697                         }
698                         else
699 #endif
700                                 tprintf("{...}");
701                 }
702                 tprintf(", %ld, %ld", tcp->u_arg[2], tcp->u_arg[3]);
703         }
704         return 0;
705 }
706 #endif /* LINUX */
707
708 int
709 sys_select(tcp)
710 struct tcb *tcp;
711 {
712         long *args = tcp->u_arg;
713         return decode_select(tcp, args, 0);
714 }