]> granicus.if.org Git - strace/blob - file.c
Update sys_createmodule and sys_initmodule
[strace] / file.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  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  * 3. The name of the author may not be used to endorse or promote products
16  *    derived from this software without specific prior written permission.
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28  *
29  *      $Id$
30  */
31
32 #include "defs.h"
33
34 #include <dirent.h>
35 #ifdef linux
36 #define dirent kernel_dirent
37 #include <linux/types.h>
38 #include <linux/dirent.h>
39 #undef dirent
40 #else
41 #define kernel_dirent dirent
42 #endif
43
44 #ifdef linux
45 #  ifdef LINUXSPARC
46 struct stat {
47         unsigned short  st_dev;
48         unsigned int    st_ino;
49         unsigned short  st_mode;
50         short           st_nlink;
51         unsigned short  st_uid;
52         unsigned short  st_gid;
53         unsigned short  st_rdev;
54         unsigned int    st_size;
55         int             st_atime;
56         unsigned int    __unused1;
57         int             st_mtime;
58         unsigned int    __unused2;
59         int             st_ctime;
60         unsigned int    __unused3;
61         int             st_blksize;
62         int             st_blocks;
63         unsigned int    __unused4[2];
64 };
65 #    define stat kernel_stat
66 #    include <asm/stat.h>
67 #    undef stat
68 #  else
69 #    undef dev_t
70 #    undef ino_t
71 #    undef mode_t
72 #    undef nlink_t
73 #    undef uid_t
74 #    undef gid_t
75 #    undef off_t
76 #    undef loff_t
77
78 #    define dev_t __kernel_dev_t
79 #    define ino_t __kernel_ino_t
80 #    define mode_t __kernel_mode_t
81 #    define nlink_t __kernel_nlink_t
82 #    define uid_t __kernel_uid_t
83 #    define gid_t __kernel_gid_t
84 #    define off_t __kernel_off_t
85 #    define loff_t __kernel_loff_t
86
87 #    include <asm/stat.h>
88
89 #    undef dev_t
90 #    undef ino_t
91 #    undef mode_t
92 #    undef nlink_t
93 #    undef uid_t
94 #    undef gid_t
95 #    undef off_t
96 #    undef loff_t
97
98 #    define dev_t dev_t
99 #    define ino_t ino_t
100 #    define mode_t mode_t
101 #    define nlink_t nlink_t
102 #    define uid_t uid_t
103 #    define gid_t gid_t
104 #    define off_t off_t
105 #    define loff_t loff_t
106 #  endif
107 #  define stat libc_stat
108 #  include <sys/stat.h>
109 #  undef stat
110 #else
111 #  include <sys/stat.h>
112 #endif
113
114 #include <fcntl.h>
115
116 #ifdef SVR4
117 #  include <sys/cred.h>
118 #endif /* SVR4 */
119
120 #include <sys/vfs.h>
121
122 #ifdef MAJOR_IN_SYSMACROS
123 #include <sys/sysmacros.h>
124 #endif
125
126 #ifdef MAJOR_IN_MKDEV
127 #include <sys/mkdev.h>
128 #endif
129
130 #ifdef HAVE_SYS_ASYNCH_H
131 #include <sys/asynch.h>
132 #endif
133
134 #ifdef SUNOS4
135 #include <ustat.h>
136 #endif
137
138 /*
139  * This is a really dirty trick but it should always work.  Traditional
140  * Unix says r/w/rw are 0/1/2, so we make them true flags 1/2/3 by
141  * adding 1.  Just remember to add 1 to any arg decoded with openmodes.
142  */
143 struct xlat openmodes[] = {
144         { O_RDWR+1,     "O_RDWR"        },
145         { O_RDONLY+1,   "O_RDONLY"      },
146         { O_WRONLY+1,   "O_WRONLY"      },
147         { O_NONBLOCK,   "O_NONBLOCK"    },
148         { O_APPEND,     "O_APPEND"      },
149         { O_CREAT,      "O_CREAT"       },
150         { O_TRUNC,      "O_TRUNC"       },
151         { O_EXCL,       "O_EXCL"        },
152         { O_NOCTTY,     "O_NOCTTY"      },
153 #ifdef O_SYNC
154         { O_SYNC,       "O_SYNC"        },
155 #endif
156 #ifdef O_ASYNC
157         { O_ASYNC,      "O_ASYNC"       },
158 #endif
159 #ifdef O_DSYNC
160         { O_DSYNC,      "O_DSYNC"       },
161 #endif
162 #ifdef O_RSYNC
163         { O_RSYNC,      "O_RSYNC"       },
164 #endif
165 #ifdef O_NDELAY
166         { O_NDELAY,     "O_NDELAY"      },
167 #endif
168 #ifdef O_PRIV
169         { O_PRIV,       "O_PRIV"        },
170 #endif
171 #ifdef O_DIRECT
172    { O_DIRECT, "O_DIRECT"  },
173 #endif
174 #ifdef O_LARGEFILE
175    { O_LARGEFILE,  "O_LARGEFILE"   },
176 #endif
177 #ifdef O_DIRECTORY
178    { O_DIRECTORY,  "O_DIRECTORY"   },
179 #endif
180
181 #ifdef FNDELAY
182         { FNDELAY,      "FNDELAY"       },
183 #endif
184 #ifdef FAPPEND
185         { FAPPEND,      "FAPPEND"       },
186 #endif
187 #ifdef FMARK
188         { FMARK,        "FMARK"         },
189 #endif
190 #ifdef FDEFER
191         { FDEFER,       "FDEFER"        },
192 #endif
193 #ifdef FASYNC
194         { FASYNC,       "FASYNC"        },
195 #endif
196 #ifdef FSHLOCK
197         { FSHLOCK,      "FSHLOCK"       },
198 #endif
199 #ifdef FEXLOCK
200         { FEXLOCK,      "FEXLOCK"       },
201 #endif
202 #ifdef FCREAT
203         { FCREAT,       "FCREAT"        },
204 #endif
205 #ifdef FTRUNC
206         { FTRUNC,       "FTRUNC"        },
207 #endif
208 #ifdef FEXCL
209         { FEXCL,        "FEXCL"         },
210 #endif
211 #ifdef FNBIO
212         { FNBIO,        "FNBIO"         },
213 #endif
214 #ifdef FSYNC
215         { FSYNC,        "FSYNC"         },
216 #endif
217 #ifdef FNOCTTY
218         { FNOCTTY,      "FNOCTTY"       },
219 #endif
220         { 0,            NULL            },
221 };
222
223 int
224 sys_open(tcp)
225 struct tcb *tcp;
226 {
227         if (entering(tcp)) {
228                 printpath(tcp, tcp->u_arg[0]);
229                 tprintf(", ");
230                 /* flags */
231                 printflags(openmodes, tcp->u_arg[1] + 1);
232                 if (tcp->u_arg[1] & O_CREAT) {
233                         /* mode */
234                         tprintf(", %#lo", tcp->u_arg[2]);
235                 }
236         }
237         return 0;
238 }
239
240 #ifdef LINUXSPARC
241 struct xlat openmodessol[] = {
242         { 0,            "O_RDWR"        },
243         { 1,            "O_RDONLY"      },
244         { 2,            "O_WRONLY"      },
245         { 0x80,         "O_NONBLOCK"    },
246         { 8,            "O_APPEND"      },
247         { 0x100,        "O_CREAT"       },
248         { 0x200,        "O_TRUNC"       },
249         { 0x400,        "O_EXCL"        },
250         { 0x800,        "O_NOCTTY"      },
251         { 0x10,         "O_SYNC"        },
252         { 0x40,         "O_DSYNC"       },
253         { 0x8000,       "O_RSYNC"       },
254         { 4,            "O_NDELAY"      },
255         { 0x1000,       "O_PRIV"        },
256         { 0,            NULL            },
257 };
258
259 int
260 solaris_open(tcp)
261 struct tcb *tcp;
262 {
263         if (entering(tcp)) {
264                 printpath(tcp, tcp->u_arg[0]);
265                 tprintf(", ");
266                 /* flags */
267                 printflags(openmodessol, tcp->u_arg[1] + 1);
268                 if (tcp->u_arg[1] & 0x100) {
269                         /* mode */
270                         tprintf(", %#lo", tcp->u_arg[2]);
271                 }
272         }
273         return 0;
274 }
275
276 #endif
277
278 int
279 sys_creat(tcp)
280 struct tcb *tcp;
281 {
282         if (entering(tcp)) {
283                 printpath(tcp, tcp->u_arg[0]);
284                 tprintf(", %#lo", tcp->u_arg[1]);
285         }
286         return 0;
287 }
288
289 static struct xlat access_flags[] = {
290         { F_OK,         "F_OK",         },
291         { R_OK,         "R_OK"          },
292         { W_OK,         "W_OK"          },
293         { X_OK,         "X_OK"          },
294 #ifdef EFF_ONLY_OK
295         { EFF_ONLY_OK,  "EFF_ONLY_OK"   },
296 #endif
297 #ifdef EX_OK
298         { EX_OK,        "EX_OK"         },
299 #endif
300         { 0,            NULL            },
301 };
302
303 int
304 sys_access(tcp)
305 struct tcb *tcp;
306 {
307         if (entering(tcp)) {
308                 printpath(tcp, tcp->u_arg[0]);
309                 tprintf(", ");
310                 printflags(access_flags, tcp->u_arg[1]);
311         }
312         return 0;
313 }
314
315 int
316 sys_umask(tcp)
317 struct tcb *tcp;
318 {
319         if (entering(tcp)) {
320                 tprintf("%#lo", tcp->u_arg[0]);
321         }
322         return RVAL_OCTAL;
323 }
324
325 static struct xlat whence[] = {
326         { SEEK_SET,     "SEEK_SET"      },
327         { SEEK_CUR,     "SEEK_CUR"      },
328         { SEEK_END,     "SEEK_END"      },
329         { 0,            NULL            },
330 };
331
332 int
333 sys_lseek(tcp)
334 struct tcb *tcp;
335 {
336         if (entering(tcp)) {
337                 tprintf("%ld, ", tcp->u_arg[0]);
338                 if (tcp->u_arg[2] == SEEK_SET)
339                         tprintf("%lu, ", tcp->u_arg[1]);
340                 else
341                         tprintf("%ld, ", tcp->u_arg[1]);
342                 printxval(whence, tcp->u_arg[2], "SEEK_???");
343         }
344         return RVAL_UDECIMAL;
345 }
346
347 #ifdef linux
348 int
349 sys_llseek (tcp)
350 struct tcb *tcp;
351 {
352     if (entering(tcp)) {
353         if (tcp->u_arg[4] == SEEK_SET)
354             tprintf("%ld, %llu, ", tcp->u_arg[0],
355                     (((long long int) tcp->u_arg[1]) << 32
356                      | (unsigned long long) tcp->u_arg[2]));
357         else
358             tprintf("%ld, %lld, ", tcp->u_arg[0],
359                     (((long long int) tcp->u_arg[1]) << 32
360                      | (unsigned long long) tcp->u_arg[2]));
361     }
362     else {
363         long long int off;
364         if (syserror(tcp) || umove(tcp, tcp->u_arg[3], &off) < 0)
365             tprintf("%#lx, ", tcp->u_arg[3]);
366         else
367             tprintf("[%llu], ", off);
368         printxval(whence, tcp->u_arg[4], "SEEK_???");
369     }
370     return 0;
371 }
372 #endif
373
374 int
375 sys_truncate(tcp)
376 struct tcb *tcp;
377 {
378         if (entering(tcp)) {
379                 printpath(tcp, tcp->u_arg[0]);
380                 tprintf(", %lu", tcp->u_arg[1]);
381         }
382         return 0;
383 }
384
385 int
386 sys_ftruncate(tcp)
387 struct tcb *tcp;
388 {
389         if (entering(tcp)) {
390                 tprintf("%ld, %lu", tcp->u_arg[0], tcp->u_arg[1]);
391         }
392         return 0;
393 }
394
395 /* several stats */
396
397 static struct xlat modetypes[] = {
398         { S_IFREG,      "S_IFREG"       },
399         { S_IFSOCK,     "S_IFSOCK"      },
400         { S_IFIFO,      "S_IFIFO"       },
401         { S_IFLNK,      "S_IFLNK"       },
402         { S_IFDIR,      "S_IFDIR"       },
403         { S_IFBLK,      "S_IFBLK"       },
404         { S_IFCHR,      "S_IFCHR"       },
405         { 0,            NULL            },
406 };
407
408 static char *
409 sprintmode(mode)
410 int mode;
411 {
412         static char buf[64];
413         char *s;
414
415         if ((mode & S_IFMT) == 0)
416                 s = "";
417         else if ((s = xlookup(modetypes, mode & S_IFMT)) == NULL) {
418                 sprintf(buf, "%#o", mode);
419                 return buf;
420         }
421         sprintf(buf, "%s%s%s%s", s,
422                 (mode & S_ISUID) ? "|S_ISUID" : "",
423                 (mode & S_ISGID) ? "|S_ISGID" : "",
424                 (mode & S_ISVTX) ? "|S_ISVTX" : "");
425         mode &= ~(S_IFMT|S_ISUID|S_ISGID|S_ISVTX);
426         if (mode)
427                 sprintf(buf + strlen(buf), "|%#o", mode);
428         s = (*buf == '|') ? buf + 1 : buf;
429         return *s ? s : "0";
430 }
431
432 static char *
433 sprinttime(t)
434 time_t t;
435 {
436         struct tm *tmp;
437         static char buf[32];
438
439         if (t == 0) {
440                 sprintf(buf, "0");
441                 return buf;
442         }
443         tmp = localtime(&t);
444         sprintf(buf, "%02d/%02d/%02d-%02d:%02d:%02d",
445                 tmp->tm_year, tmp->tm_mon + 1, tmp->tm_mday,
446                 tmp->tm_hour, tmp->tm_min, tmp->tm_sec);
447         return buf;
448 }
449
450 #ifdef LINUXSPARC
451 typedef struct {
452         int     tv_sec;
453         int     tv_nsec;
454 } timestruct_t;
455
456 struct solstat {
457         unsigned        st_dev;
458         int             st_pad1[3];     /* network id */
459         unsigned        st_ino;
460         unsigned        st_mode;
461         unsigned        st_nlink;
462         unsigned        st_uid;
463         unsigned        st_gid;
464         unsigned        st_rdev;
465         int             st_pad2[2];
466         int             st_size;
467         int             st_pad3;        /* st_size, off_t expansion */
468         timestruct_t    st_atime;
469         timestruct_t    st_mtime;
470         timestruct_t    st_ctime;
471         int             st_blksize;
472         int             st_blocks;
473         char            st_fstype[16];
474         int             st_pad4[8];     /* expansion area */
475 };
476
477 static void
478 printstatsol(tcp, addr)
479 struct tcb *tcp;
480 int addr;
481 {
482         struct solstat statbuf;
483
484         if (!addr) {
485                 tprintf("NULL");
486                 return;
487         }
488         if (syserror(tcp) || !verbose(tcp)) {
489                 tprintf("%#x", addr);
490                 return;
491         }
492         if (umove(tcp, addr, &statbuf) < 0) {
493                 tprintf("{...}");
494                 return;
495         }
496         if (!abbrev(tcp)) {
497                 tprintf("{st_dev=makedev(%lu, %lu), st_ino=%lu, st_mode=%s, ",
498                         (unsigned long) ((statbuf.st_dev >> 18) & 0x3fff),
499                         (unsigned long) (statbuf.st_dev & 0x3ffff),
500                         (unsigned long) statbuf.st_ino,
501                         sprintmode(statbuf.st_mode));
502                 tprintf("st_nlink=%lu, st_uid=%lu, st_gid=%lu, ",
503                         (unsigned long) statbuf.st_nlink,
504                         (unsigned long) statbuf.st_uid,
505                         (unsigned long) statbuf.st_gid);
506                 tprintf("st_blksize=%lu, ", (unsigned long) statbuf.st_blksize);
507                 tprintf("st_blocks=%lu, ", (unsigned long) statbuf.st_blocks);
508         }
509         else
510                 tprintf("{st_mode=%s, ", sprintmode(statbuf.st_mode));
511         switch (statbuf.st_mode & S_IFMT) {
512         case S_IFCHR: case S_IFBLK:
513                 tprintf("st_rdev=makedev(%lu, %lu), ",
514                         (unsigned long) ((statbuf.st_rdev >> 18) & 0x3fff),
515                         (unsigned long) (statbuf.st_rdev & 0x3ffff));
516                 break;
517         default:
518                 tprintf("st_size=%u, ", statbuf.st_size);
519                 break;
520         }
521         if (!abbrev(tcp)) {
522                 tprintf("st_atime=%s, ", sprinttime(statbuf.st_atime));
523                 tprintf("st_mtime=%s, ", sprinttime(statbuf.st_mtime));
524                 tprintf("st_ctime=%s}", sprinttime(statbuf.st_ctime));
525         }
526         else
527                 tprintf("...}");
528 }
529 #endif /* LINUXSPARC */
530
531 static void
532 realprintstat(tcp, statbuf)
533 struct tcb *tcp;
534 struct stat *statbuf;
535 {
536     if (!abbrev(tcp)) {
537             tprintf("{st_dev=makedev(%lu, %lu), st_ino=%lu, st_mode=%s, ",
538                     (unsigned long) major(statbuf->st_dev),
539                     (unsigned long) minor(statbuf->st_dev),
540                     (unsigned long) statbuf->st_ino,
541                     sprintmode(statbuf->st_mode));
542             tprintf("st_nlink=%lu, st_uid=%lu, st_gid=%lu, ",
543                     (unsigned long) statbuf->st_nlink,
544                     (unsigned long) statbuf->st_uid,
545                     (unsigned long) statbuf->st_gid);
546 #ifdef HAVE_ST_BLKSIZE
547             tprintf("st_blksize=%lu, ", (unsigned long) statbuf->st_blksize);
548 #endif /* HAVE_ST_BLKSIZE */
549 #ifdef HAVE_ST_BLOCKS
550             tprintf("st_blocks=%lu, ", (unsigned long) statbuf->st_blocks);
551 #endif /* HAVE_ST_BLOCKS */
552     }
553     else
554             tprintf("{st_mode=%s, ", sprintmode(statbuf->st_mode));
555     switch (statbuf->st_mode & S_IFMT) {
556     case S_IFCHR: case S_IFBLK:
557 #ifdef HAVE_ST_RDEV
558             tprintf("st_rdev=makedev(%lu, %lu), ",
559                     (unsigned long) major(statbuf->st_rdev),
560                     (unsigned long) minor(statbuf->st_rdev));
561 #else /* !HAVE_ST_RDEV */
562             tprintf("st_size=makedev(%lu, %lu), ",
563                     (unsigned long) major(statbuf->st_size),
564                     (unsigned long) minor(statbuf->st_size));
565 #endif /* !HAVE_ST_RDEV */
566             break;
567     default:
568             tprintf("st_size=%lu, ", statbuf->st_size);
569             break;
570     }
571     if (!abbrev(tcp)) {
572             tprintf("st_atime=%s, ", sprinttime(statbuf->st_atime));
573             tprintf("st_mtime=%s, ", sprinttime(statbuf->st_mtime));
574             tprintf("st_ctime=%s}", sprinttime(statbuf->st_ctime));
575     }
576     else
577             tprintf("...}");
578 }
579
580
581 static void
582 printstat(tcp, addr)
583 struct tcb *tcp;
584 int addr;
585 {
586         struct stat statbuf;
587
588 #ifdef LINUXSPARC
589         if (current_personality == 1) {
590                 printstatsol(tcp, addr);
591                 return;
592         }
593 #endif /* LINUXSPARC */
594
595         if (!addr) {
596                 tprintf("NULL");
597                 return;
598         }
599         if (syserror(tcp) || !verbose(tcp)) {
600                 tprintf("%#x", addr);
601                 return;
602         }
603         if (umove(tcp, addr, &statbuf) < 0) {
604                 tprintf("{...}");
605                 return;
606         }
607
608         realprintstat(tcp, &statbuf);
609 }
610
611 #ifdef linux
612 static void
613 convertoldstat(oldbuf, newbuf)
614 const struct __old_kernel_stat *oldbuf;
615 struct stat *newbuf;
616 {
617     newbuf->st_dev=oldbuf->st_dev;
618     newbuf->st_ino=oldbuf->st_ino;
619     newbuf->st_mode=oldbuf->st_mode;
620     newbuf->st_nlink=oldbuf->st_nlink;
621     newbuf->st_uid=oldbuf->st_uid;
622     newbuf->st_gid=oldbuf->st_gid;
623     newbuf->st_rdev=oldbuf->st_rdev;
624     newbuf->st_size=oldbuf->st_size;
625     newbuf->st_atime=oldbuf->st_atime;
626     newbuf->st_mtime=oldbuf->st_mtime;
627     newbuf->st_ctime=oldbuf->st_ctime;
628     newbuf->st_blksize=0;       /* not supported in old_stat */
629     newbuf->st_blocks=0;                /* not supported in old_stat */
630 }
631 #endif
632
633
634 #ifdef linux
635 static void
636 printoldstat(tcp, addr)
637 struct tcb *tcp;
638 int addr;
639 {
640         struct __old_kernel_stat statbuf;
641         struct stat newstatbuf;
642
643 #ifdef LINUXSPARC
644         if (current_personality == 1) {
645                 printstatsol(tcp, addr);
646                 return;
647         }
648 #endif /* LINUXSPARC */
649
650         if (!addr) {
651                 tprintf("NULL");
652                 return;
653         }
654         if (syserror(tcp) || !verbose(tcp)) {
655                 tprintf("%#x", addr);
656                 return;
657         }
658         if (umove(tcp, addr, &statbuf) < 0) {
659                 tprintf("{...}");
660                 return;
661         }
662
663         convertoldstat(&statbuf, &newstatbuf);
664         realprintstat(tcp, &newstatbuf);
665 }
666 #endif
667
668
669 int
670 sys_stat(tcp)
671 struct tcb *tcp;
672 {
673         if (entering(tcp)) {
674                 printpath(tcp, tcp->u_arg[0]);
675                 tprintf(", ");
676         } else {
677                 printstat(tcp, tcp->u_arg[1]);
678         }
679         return 0;
680 }
681
682 #ifdef linux
683 int
684 sys_oldstat(tcp)
685 struct tcb *tcp;
686 {
687         if (entering(tcp)) {
688                 printpath(tcp, tcp->u_arg[0]);
689                 tprintf(", ");
690         } else {
691                 printoldstat(tcp, tcp->u_arg[1]);
692         }
693         return 0;
694 }
695 #endif
696
697 int
698 sys_fstat(tcp)
699 struct tcb *tcp;
700 {
701         if (entering(tcp))
702                 tprintf("%ld, ", tcp->u_arg[0]);
703         else {
704                 printstat(tcp, tcp->u_arg[1]);
705         }
706         return 0;
707 }
708
709 #ifdef linux
710 int
711 sys_oldfstat(tcp)
712 struct tcb *tcp;
713 {
714         if (entering(tcp))
715                 tprintf("%ld, ", tcp->u_arg[0]);
716         else {
717                 printoldstat(tcp, tcp->u_arg[1]);
718         }
719         return 0;
720 }
721 #endif
722
723 int
724 sys_lstat(tcp)
725 struct tcb *tcp;
726 {
727         if (entering(tcp)) {
728                 printpath(tcp, tcp->u_arg[0]);
729                 tprintf(", ");
730         } else {
731                 printstat(tcp, tcp->u_arg[1]);
732         }
733         return 0;
734 }
735
736 #ifdef linux
737 int
738 sys_oldlstat(tcp)
739 struct tcb *tcp;
740 {
741         if (entering(tcp)) {
742                 printpath(tcp, tcp->u_arg[0]);
743                 tprintf(", ");
744         } else {
745                 printoldstat(tcp, tcp->u_arg[1]);
746         }
747         return 0;
748 }
749 #endif
750
751
752 #if defined(SVR4) || defined(LINUXSPARC)
753
754 int
755 sys_xstat(tcp)
756 struct tcb *tcp;
757 {
758         if (entering(tcp)) {
759                 tprintf("%ld, ", tcp->u_arg[0]);
760                 printpath(tcp, tcp->u_arg[1]);
761                 tprintf(", ");
762         } else {
763                 printstat(tcp, tcp->u_arg[2]);
764         }
765         return 0;
766 }
767
768 int
769 sys_fxstat(tcp)
770 struct tcb *tcp;
771 {
772         if (entering(tcp))
773                 tprintf("%ld, %ld, ", tcp->u_arg[0], tcp->u_arg[1]);
774         else {
775                 printstat(tcp, tcp->u_arg[2]);
776         }
777         return 0;
778 }
779
780 int
781 sys_lxstat(tcp)
782 struct tcb *tcp;
783 {
784         if (entering(tcp)) {
785                 tprintf("%ld, ", tcp->u_arg[0]);
786                 printpath(tcp, tcp->u_arg[1]);
787                 tprintf(", ");
788         } else {
789                 printstat(tcp, tcp->u_arg[2]);
790         }
791         return 0;
792 }
793
794 int
795 sys_xmknod(tcp)
796 struct tcb *tcp;
797 {
798         int mode = tcp->u_arg[2];
799
800         if (entering(tcp)) {
801                 tprintf("%ld, ", tcp->u_arg[0]);
802                 printpath(tcp, tcp->u_arg[1]);
803                 tprintf(", %s", sprintmode(mode));
804                 switch (mode & S_IFMT) {
805                 case S_IFCHR: case S_IFBLK:
806 #ifdef LINUXSPARC
807                         tprintf(", makedev(%lu, %lu)",
808                                 (unsigned long) ((tcp->u_arg[3] >> 18) & 0x3fff),
809                                 (unsigned long) (tcp->u_arg[3] & 0x3ffff));
810 #else           
811                         tprintf(", makedev(%lu, %lu)",
812                                 (unsigned long) major(tcp->u_arg[3]),
813                                 (unsigned long) minor(tcp->u_arg[3]));
814 #endif                          
815                         break;
816                 default:
817                         break;
818                 }
819         }
820         return 0;
821 }
822
823 #ifdef HAVE_SYS_ACL_H
824
825 #include <sys/acl.h>
826
827 struct xlat aclcmds[] = {
828         { SETACL,       "SETACL"        },
829         { GETACL,       "GETACL"        },
830         { GETACLCNT,    "GETACLCNT"     },
831         { 0,            NULL            },
832 };
833
834 int
835 sys_acl(tcp)
836 struct tcb *tcp;
837 {
838         if (entering(tcp)) {
839                 printpath(tcp, tcp->u_arg[0]);
840                 tprintf(", ");
841                 printxval(aclcmds, tcp->u_arg[1], "???ACL???");
842                 tprintf(", %ld", tcp->u_arg[2]);
843                 /*
844                  * FIXME - dump out the list of aclent_t's pointed to
845                  * by "tcp->u_arg[3]" if it's not NULL.
846                  */
847                 if (tcp->u_arg[3])
848                         tprintf(", %#lx", tcp->u_arg[3]);
849                 else
850                         tprintf(", NULL");
851         }
852         return 0;
853 }
854
855
856 int
857 sys_facl(tcp)
858 struct tcb *tcp;
859 {
860         if (entering(tcp)) {
861                 tprintf("%ld, ", tcp->u_arg[0]);
862                 printxval(aclcmds, tcp->u_arg[1], "???ACL???");
863                 tprintf(", %ld", tcp->u_arg[2]);
864                 /*
865                  * FIXME - dump out the list of aclent_t's pointed to
866                  * by "tcp->u_arg[3]" if it's not NULL.
867                  */
868                 if (tcp->u_arg[3])
869                         tprintf(", %#lx", tcp->u_arg[3]);
870                 else
871                         tprintf(", NULL");
872         }
873         return 0;
874 }
875
876 #endif /* HAVE_SYS_ACL_H */
877
878 #endif /* SVR4 || LINUXSPARC */
879
880 #ifdef linux
881
882 static struct xlat fsmagic[] = {
883         { 0xef51,       "EXT2_OLD_SUPER_MAGIC"  },
884         { 0xef53,       "EXT2_SUPER_MAGIC"      },
885         { 0x137d,       "EXT_SUPER_MAGIC"       },
886         { 0x9660,       "ISOFS_SUPER_MAGIC"     },
887         { 0x137f,       "MINIX_SUPER_MAGIC"     },
888         { 0x138f,       "MINIX_SUPER_MAGIC2"    },
889         { 0x2468,       "MINIX2_SUPER_MAGIC"    },
890         { 0x2478,       "MINIX2_SUPER_MAGIC2"   },
891         { 0x4d44,       "MSDOS_SUPER_MAGIC"     },
892         { 0x6969,       "NFS_SUPER_MAGIC"       },
893         { 0x9fa0,       "PROC_SUPER_MAGIC"      },
894         { 0x012fd16d,   "XIAFS_SUPER_MAGIC"     },
895         { 0,            NULL                    },
896 };
897
898 #endif /* linux */
899
900 #ifndef SVR4
901
902 static char *
903 sprintfstype(magic)
904 int magic;
905 {
906         static char buf[32];
907 #ifdef linux
908         char *s;
909
910         s = xlookup(fsmagic, magic);
911         if (s) {
912                 sprintf(buf, "\"%s\"", s);
913                 return buf;
914         }
915 #endif /* linux */
916         sprintf(buf, "%#x", magic);
917         return buf;
918 }
919
920 static void
921 printstatfs(tcp, addr)
922 struct tcb *tcp;
923 long addr;
924 {
925         struct statfs statbuf;
926
927         if (syserror(tcp) || !verbose(tcp)) {
928                 tprintf("%#lx", addr);
929                 return;
930         }
931         if (umove(tcp, addr, &statbuf) < 0) {
932                 tprintf("{...}");
933                 return;
934         }
935 #ifdef ALPHA
936
937         tprintf("{f_type=%s, f_fbsize=%u, f_blocks=%u, f_bfree=%u, ",
938                 sprintfstype(statbuf.f_type),
939                 statbuf.f_bsize, statbuf.f_blocks, statbuf.f_bfree);
940         tprintf("f_bavail=%u, f_files=%u, f_ffree=%u, f_namelen=%u",
941                 statbuf.f_bavail,statbuf.f_files, statbuf.f_ffree, statbuf.f_namelen);
942 #else /* !ALPHA */
943         tprintf("{f_type=%s, f_bsize=%lu, f_blocks=%lu, f_bfree=%lu, ",
944                 sprintfstype(statbuf.f_type),
945                 (unsigned long)statbuf.f_bsize,
946                 (unsigned long)statbuf.f_blocks,
947                 (unsigned long)statbuf.f_bfree);
948         tprintf("f_files=%lu, f_ffree=%lu",
949                 (unsigned long)statbuf.f_files,
950                 (unsigned long)statbuf.f_ffree);
951 #ifdef linux
952         tprintf(", f_namelen=%lu", (unsigned long)statbuf.f_namelen);
953 #endif /* linux */
954 #endif /* !ALPHA */
955         tprintf("}");
956 }
957
958 int
959 sys_statfs(tcp)
960 struct tcb *tcp;
961 {
962         if (entering(tcp)) {
963                 printpath(tcp, tcp->u_arg[0]);
964                 tprintf(", ");
965         } else {
966                 printstatfs(tcp, tcp->u_arg[1]);
967         }
968         return 0;
969 }
970
971 int
972 sys_fstatfs(tcp)
973 struct tcb *tcp;
974 {
975         if (entering(tcp)) {
976                 tprintf("%lu, ", tcp->u_arg[0]);
977         } else {
978                 printstatfs(tcp, tcp->u_arg[1]);
979         }
980         return 0;
981 }
982
983 #if defined(linux) && defined(__alpha)
984
985 int
986 osf_statfs(tcp)
987 struct tcb *tcp;
988 {
989         if (entering(tcp)) {
990                 printpath(tcp, tcp->u_arg[0]);
991                 tprintf(", ");
992         } else {
993                 printstatfs(tcp, tcp->u_arg[1]);
994                 tprintf(", %lu", tcp->u_arg[2]);
995         }
996         return 0;
997 }
998
999 int
1000 osf_fstatfs(tcp)
1001 struct tcb *tcp;
1002 {
1003         if (entering(tcp)) {
1004                 tprintf("%lu, ", tcp->u_arg[0]);
1005         } else {
1006                 printstatfs(tcp, tcp->u_arg[1]);
1007                 tprintf(", %lu", tcp->u_arg[2]);
1008         }
1009         return 0;
1010 }
1011 #endif /* linux && __alpha */
1012
1013 #endif /* !SVR4 */
1014
1015 #ifdef SUNOS4
1016
1017 int
1018 sys_ustat(tcp)
1019 struct tcb *tcp;
1020 {
1021         struct ustat statbuf;
1022
1023         if (entering(tcp)) {
1024                 tprintf("makedev(%lu, %lu), ",
1025                                 (long) major(tcp->u_arg[0]),
1026                                 (long) minor(tcp->u_arg[0]));
1027         }
1028         else {
1029                 if (syserror(tcp) || !verbose(tcp))
1030                         tprintf("%#lx", tcp->u_arg[1]);
1031                 else if (umove(tcp, tcp->u_arg[1], &statbuf) < 0)
1032                         tprintf("{...}");
1033                 else {
1034                         tprintf("{f_tfree=%lu, f_tinode=%lu, ",
1035                                 statbuf.f_tfree, statbuf.f_tinode);
1036                         tprintf("f_fname=\"%.*s\", ",
1037                                 (int) sizeof(statbuf.f_fname),
1038                                 statbuf.f_fname);
1039                         tprintf("f_fpack=\"%.*s\"}",
1040                                 (int) sizeof(statbuf.f_fpack),
1041                                 statbuf.f_fpack);
1042                 }
1043         }
1044         return 0;
1045 }
1046
1047 #endif /* SUNOS4 */
1048
1049 /* directory */
1050 int
1051 sys_chdir(tcp)
1052 struct tcb *tcp;
1053 {
1054         if (entering(tcp)) {
1055                 printpath(tcp, tcp->u_arg[0]);
1056         }
1057         return 0;
1058 }
1059
1060 int
1061 sys_mkdir(tcp)
1062 struct tcb *tcp;
1063 {
1064         if (entering(tcp)) {
1065                 printpath(tcp, tcp->u_arg[0]);
1066                 tprintf(", %#lo", tcp->u_arg[1]);
1067         }
1068         return 0;
1069 }
1070
1071 int
1072 sys_rmdir(tcp)
1073 struct tcb *tcp;
1074 {
1075         if (entering(tcp)) {
1076                 printpath(tcp, tcp->u_arg[0]);
1077         }
1078         return 0;
1079 }
1080
1081 int
1082 sys_fchdir(tcp)
1083 struct tcb *tcp;
1084 {
1085         if (entering(tcp)) {
1086                 tprintf("%ld", tcp->u_arg[0]);
1087         }
1088         return 0;
1089 }
1090
1091 int
1092 sys_chroot(tcp)
1093 struct tcb *tcp;
1094 {
1095         if (entering(tcp)) {
1096                 printpath(tcp, tcp->u_arg[0]);
1097         }
1098         return 0;
1099 }
1100
1101 int
1102 sys_fchroot(tcp)
1103 struct tcb *tcp;
1104 {
1105         if (entering(tcp)) {
1106                 tprintf("%ld", tcp->u_arg[0]);
1107         }
1108         return 0;
1109 }
1110
1111 int
1112 sys_link(tcp)
1113 struct tcb *tcp;
1114 {
1115         if (entering(tcp)) {
1116                 printpath(tcp, tcp->u_arg[0]);
1117                 tprintf(", ");
1118                 printpath(tcp, tcp->u_arg[1]);
1119         }
1120         return 0;
1121 }
1122
1123 int
1124 sys_unlink(tcp)
1125 struct tcb *tcp;
1126 {
1127         if (entering(tcp)) {
1128                 printpath(tcp, tcp->u_arg[0]);
1129         }
1130         return 0;
1131 }
1132
1133 int
1134 sys_symlink(tcp)
1135 struct tcb *tcp;
1136 {
1137         if (entering(tcp)) {
1138                 printpath(tcp, tcp->u_arg[0]);
1139                 tprintf(", ");
1140                 printpath(tcp, tcp->u_arg[1]);
1141         }
1142         return 0;
1143 }
1144
1145 int
1146 sys_readlink(tcp)
1147 struct tcb *tcp;
1148 {
1149         if (entering(tcp)) {
1150                 printpath(tcp, tcp->u_arg[0]);
1151                 tprintf(", ");
1152         } else {
1153                 if (syserror(tcp))
1154                         tprintf("%#lx", tcp->u_arg[1]);
1155                 else
1156                         printpathn(tcp, tcp->u_arg[1], tcp->u_rval);
1157                 tprintf(", %lu", tcp->u_arg[2]);
1158         }
1159         return 0;
1160 }
1161
1162 int
1163 sys_rename(tcp)
1164 struct tcb *tcp;
1165 {
1166         if (entering(tcp)) {
1167                 printpath(tcp, tcp->u_arg[0]);
1168                 tprintf(", ");
1169                 printpath(tcp, tcp->u_arg[1]);
1170         }
1171         return 0;
1172 }
1173
1174 int
1175 sys_chown(tcp)
1176 struct tcb *tcp;
1177 {
1178         if (entering(tcp)) {
1179                 printpath(tcp, tcp->u_arg[0]);
1180                 tprintf(", %lu, %lu", tcp->u_arg[1], tcp->u_arg[2]);
1181         }
1182         return 0;
1183 }
1184
1185 int
1186 sys_fchown(tcp)
1187 struct tcb *tcp;
1188 {
1189         if (entering(tcp)) {
1190                 tprintf("%ld, %lu, %lu",
1191                         tcp->u_arg[0], tcp->u_arg[1], tcp->u_arg[2]);
1192         }
1193         return 0;
1194 }
1195
1196 int
1197 sys_chmod(tcp)
1198 struct tcb *tcp;
1199 {
1200         if (entering(tcp)) {
1201                 printpath(tcp, tcp->u_arg[0]);
1202                 tprintf(", %#lo", tcp->u_arg[1]);
1203         }
1204         return 0;
1205 }
1206
1207 int
1208 sys_fchmod(tcp)
1209 struct tcb *tcp;
1210 {
1211         if (entering(tcp)) {
1212                 tprintf("%ld, %#lo", tcp->u_arg[0], tcp->u_arg[1]);
1213         }
1214         return 0;
1215 }
1216
1217 int
1218 sys_utimes(tcp)
1219 struct tcb *tcp;
1220 {
1221         if (entering(tcp)) {
1222                 printpath(tcp, tcp->u_arg[0]);
1223                 tprintf(", ");
1224                 printtv(tcp, tcp->u_arg[1]);
1225         }
1226         return 0;
1227 }
1228
1229 int
1230 sys_utime(tcp)
1231 struct tcb *tcp;
1232 {
1233         long ut[2];
1234
1235         if (entering(tcp)) {
1236                 printpath(tcp, tcp->u_arg[0]);
1237                 tprintf(", ");
1238                 if (!tcp->u_arg[1])
1239                         tprintf("NULL");
1240                 else if (!verbose(tcp))
1241                         tprintf("%#lx", tcp->u_arg[1]);
1242                 else if (umoven(tcp, tcp->u_arg[1], sizeof ut,
1243                     (char *) ut) < 0)
1244                         tprintf("[?, ?]");
1245                 else {
1246                         tprintf("[%s,", sprinttime(ut[0]));
1247                         tprintf(" %s]", sprinttime(ut[1]));
1248                 }
1249         }
1250         return 0;
1251 }
1252
1253 int
1254 sys_mknod(tcp)
1255 struct tcb *tcp;
1256 {
1257         int mode = tcp->u_arg[1];
1258
1259         if (entering(tcp)) {
1260                 printpath(tcp, tcp->u_arg[0]);
1261                 tprintf(", %s", sprintmode(mode));
1262                 switch (mode & S_IFMT) {
1263                 case S_IFCHR: case S_IFBLK:
1264 #ifdef LINUXSPARC
1265                         if (current_personality == 1)
1266                         tprintf(", makedev(%lu, %lu)",
1267                                 (unsigned long) ((tcp->u_arg[2] >> 18) & 0x3fff),
1268                                 (unsigned long) (tcp->u_arg[2] & 0x3ffff));
1269                         else
1270 #endif  
1271                         tprintf(", makedev(%lu, %lu)",
1272                                 (unsigned long) major(tcp->u_arg[2]),
1273                                 (unsigned long) minor(tcp->u_arg[2]));
1274                         break;
1275                 default:
1276                         break;
1277                 }
1278         }
1279         return 0;
1280 }
1281
1282 int
1283 sys_mkfifo(tcp)
1284 struct tcb *tcp;
1285 {
1286         if (entering(tcp)) {
1287                 printpath(tcp, tcp->u_arg[0]);
1288                 tprintf(", %#lo", tcp->u_arg[1]);
1289         }
1290         return 0;
1291 }
1292
1293 int
1294 sys_fsync(tcp)
1295 struct tcb *tcp;
1296 {
1297         if (entering(tcp)) {
1298                 tprintf("%ld", tcp->u_arg[0]);
1299         }
1300         return 0;
1301 }
1302
1303 #ifdef linux
1304
1305 static void
1306 printdir(tcp, addr)
1307 struct tcb *tcp;
1308 long addr;
1309 {
1310         struct dirent d;
1311
1312         if (!verbose(tcp)) {
1313                 tprintf("%#lx", addr);
1314                 return;
1315         }
1316         if (umove(tcp, addr, &d) < 0) {
1317                 tprintf("{...}");
1318                 return;
1319         }
1320         tprintf("{d_ino=%ld, ", (unsigned long) d.d_ino);
1321         tprintf("d_name=");
1322         printpathn(tcp, (long) ((struct dirent *) addr)->d_name, d.d_reclen);
1323         tprintf("}");
1324 }
1325
1326 int
1327 sys_readdir(tcp)
1328 struct tcb *tcp;
1329 {
1330         if (entering(tcp)) {
1331                 tprintf("%lu, ", tcp->u_arg[0]);
1332         } else {
1333                 if (syserror(tcp) || tcp->u_rval == 0 || !verbose(tcp))
1334                         tprintf("%#lx", tcp->u_arg[1]);
1335                 else
1336                         printdir(tcp, tcp->u_arg[1]);
1337                 /* Not much point in printing this out, it is always 1. */
1338                 if (tcp->u_arg[2] != 1)
1339                         tprintf(", %lu", tcp->u_arg[2]);
1340         }
1341         return 0;
1342 }
1343
1344 #endif /* linux */
1345
1346 int
1347 sys_getdents(tcp)
1348 struct tcb *tcp;
1349 {
1350         int i, len, dents = 0;
1351         char *buf;
1352
1353         if (entering(tcp)) {
1354                 tprintf("%lu, ", tcp->u_arg[0]);
1355                 return 0;
1356         }
1357         if (syserror(tcp) || !verbose(tcp)) {
1358                 tprintf("%#lx, %lu", tcp->u_arg[1], tcp->u_arg[2]);
1359                 return 0;
1360         }
1361         len = tcp->u_rval;
1362         if ((buf = malloc(len)) == NULL) {
1363                 tprintf("out of memory\n");
1364                 return 0;
1365         }
1366         if (umoven(tcp, tcp->u_arg[1], len, buf) < 0) {
1367                 tprintf("{...}, %lu", tcp->u_arg[2]);
1368                 free(buf);
1369                 return 0;
1370         }
1371         if (!abbrev(tcp))
1372                 tprintf("{");
1373         for (i = 0; i < len;) {
1374                 struct kernel_dirent *d = (struct kernel_dirent *) &buf[i];
1375 #ifdef linux
1376                 if (!abbrev(tcp)) {
1377                         tprintf("%s{d_ino=%lu, d_off=%lu, ",
1378                                 i ? " " : "", d->d_ino, d->d_off);
1379                         tprintf("d_reclen=%u, d_name=\"%s\"}",
1380                                 d->d_reclen, d->d_name);
1381                 }
1382 #endif /* linux */
1383 #ifdef SVR4
1384                 if (!abbrev(tcp)) {
1385                         tprintf("%s{d_ino=%lu, d_off=%lu, ",
1386                                 i ? " " : "", d->d_ino, d->d_off);
1387                         tprintf("d_reclen=%u, d_name=\"%s\"}",
1388                                 d->d_reclen, d->d_name);
1389                 }
1390 #endif /* SVR4 */
1391 #ifdef SUNOS4
1392                 if (!abbrev(tcp)) {
1393                         tprintf("%s{d_off=%lu, d_fileno=%lu, d_reclen=%u, ",
1394                                 i ? " " : "", d->d_off, d->d_fileno,
1395                                 d->d_reclen);
1396                         tprintf("d_namlen=%u, d_name=\"%.*s\"}",
1397                                 d->d_namlen, d->d_namlen, d->d_name);
1398                 }
1399 #endif /* SUNOS4 */
1400                 i += d->d_reclen;
1401                 dents++;
1402         }
1403         if (!abbrev(tcp))
1404                 tprintf("}");
1405         else
1406                 tprintf("/* %u entries */", dents);
1407         tprintf(", %lu", tcp->u_arg[2]);
1408         free(buf);
1409         return 0;
1410 }
1411
1412 #ifdef linux
1413
1414 int
1415 sys_getcwd(tcp)
1416 struct tcb *tcp;
1417 {
1418     if (exiting(tcp)) {
1419         if (syserror(tcp))
1420             tprintf("%#lx", tcp->u_arg[0]);
1421         else
1422             printpathn(tcp, tcp->u_arg[0], tcp->u_rval - 1);
1423         tprintf(", %lu", tcp->u_arg[1]);
1424     }
1425     return 0;
1426 }
1427 #endif /* linux */
1428
1429 #ifdef HAVE_SYS_ASYNCH_H
1430
1431 int
1432 sys_aioread(tcp)
1433 struct tcb *tcp;
1434 {
1435         struct aio_result_t res;
1436
1437         if (entering(tcp)) {
1438                 tprintf("%lu, ", tcp->u_arg[0]);
1439         } else {
1440                 if (syserror(tcp))
1441                         tprintf("%#lx", tcp->u_arg[1]);
1442                 else
1443                         printstr(tcp, tcp->u_arg[1], tcp->u_arg[2]);
1444                 tprintf(", %lu, %lu, ", tcp->u_arg[2], tcp->u_arg[3]);
1445                 printxval(whence, tcp->u_arg[4], "L_???");
1446                 if (syserror(tcp) || tcp->u_arg[5] == 0
1447                     || umove(tcp, tcp->u_arg[5], &res) < 0)
1448                         tprintf(", %#lx", tcp->u_arg[5]);
1449                 else
1450                         tprintf(", {aio_return %d aio_errno %d}",
1451                                 res.aio_return, res.aio_errno);
1452         }
1453         return 0;
1454 }
1455
1456 int
1457 sys_aiowrite(tcp)
1458 struct tcb *tcp;
1459 {
1460         struct aio_result_t res;
1461
1462         if (entering(tcp)) {
1463                 tprintf("%lu, ", tcp->u_arg[0]);
1464                 printstr(tcp, tcp->u_arg[1], tcp->u_arg[2]);
1465                 tprintf(", %lu, %lu, ", tcp->u_arg[2], tcp->u_arg[3]);
1466                 printxval(whence, tcp->u_arg[4], "L_???");
1467         }
1468         else {
1469                 if (tcp->u_arg[5] == 0)
1470                         tprintf(", NULL");
1471                 else if (syserror(tcp)
1472                     || umove(tcp, tcp->u_arg[5], &res) < 0)
1473                         tprintf(", %#lx", tcp->u_arg[5]);
1474                 else
1475                         tprintf(", {aio_return %d aio_errno %d}",
1476                                 res.aio_return, res.aio_errno);
1477         }
1478         return 0;
1479 }
1480
1481 int
1482 sys_aiowait(tcp)
1483 struct tcb *tcp;
1484 {
1485         if (entering(tcp))
1486                 printtv(tcp, tcp->u_arg[0]);
1487         return 0;
1488 }
1489
1490 int
1491 sys_aiocancel(tcp)
1492 struct tcb *tcp;
1493 {
1494         struct aio_result_t res;
1495
1496         if (exiting(tcp)) {
1497                 if (tcp->u_arg[0] == 0)
1498                         tprintf("NULL");
1499                 else if (syserror(tcp)
1500                     || umove(tcp, tcp->u_arg[0], &res) < 0)
1501                         tprintf("%#lx", tcp->u_arg[0]);
1502                 else
1503                         tprintf("{aio_return %d aio_errno %d}",
1504                                 res.aio_return, res.aio_errno);
1505         }
1506         return 0;
1507 }
1508
1509 #endif /* HAVE_SYS_ASYNCH_H */