blob: 1070f8e4cea7ade3fdd371061acf453a14d874f2 [file] [log] [blame]
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001/*
2 * Copyright (c) 1991, 1992 Paul Kranenburg <pk@cs.few.eur.nl>
3 * Copyright (c) 1993 Branko Lankester <branko@hacktic.nl>
4 * Copyright (c) 1993, 1994, 1995, 1996 Rick Sladkey <jrs@world.std.com>
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>
Wichert Akkerman9524bb91999-05-25 23:11:18 +000035#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
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000043
Wichert Akkerman8bc6cfd1999-04-21 15:57:38 +000044#ifdef linux
Wichert Akkermandacfb6e1999-06-03 14:21:07 +000045# ifdef LINUXSPARC
46struct 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
Wichert Akkerman5b4d1281999-07-09 00:32:54 +000069# 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
Wichert Akkermana6013701999-07-08 14:00:58 +000078# 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
Wichert Akkermandacfb6e1999-06-03 14:21:07 +000087# include <asm/stat.h>
Wichert Akkermana6013701999-07-08 14:00:58 +000088
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
Wichert Akkerman5b4d1281999-07-09 00:32:54 +000097
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
Wichert Akkermandacfb6e1999-06-03 14:21:07 +0000106# endif
Wichert Akkermand4d8e921999-04-18 23:30:29 +0000107# define stat libc_stat
108# include <sys/stat.h>
109# undef stat
Wichert Akkermand4d8e921999-04-18 23:30:29 +0000110#else
111# include <sys/stat.h>
Wichert Akkerman328c5e71999-04-16 00:21:26 +0000112#endif
Wichert Akkermand4d8e921999-04-18 23:30:29 +0000113
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000114#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 */
143struct 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
223int
224sys_open(tcp)
225struct 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
241struct 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
259int
260solaris_open(tcp)
261struct 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
278int
279sys_creat(tcp)
280struct 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
289static 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
303int
304sys_access(tcp)
305struct 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
315int
316sys_umask(tcp)
317struct tcb *tcp;
318{
319 if (entering(tcp)) {
320 tprintf("%#lo", tcp->u_arg[0]);
321 }
322 return RVAL_OCTAL;
323}
324
325static struct xlat whence[] = {
326 { SEEK_SET, "SEEK_SET" },
327 { SEEK_CUR, "SEEK_CUR" },
328 { SEEK_END, "SEEK_END" },
329 { 0, NULL },
330};
331
332int
333sys_lseek(tcp)
334struct 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
Wichert Akkerman328c5e71999-04-16 00:21:26 +0000347#ifdef linux
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000348int
349sys_llseek (tcp)
350struct tcb *tcp;
351{
352 if (entering(tcp)) {
353 if (tcp->u_arg[4] == SEEK_SET)
354 tprintf("%ld, %llu, ", tcp->u_arg[0],
Wichert Akkerman2e2553a1999-05-09 00:29:58 +0000355 (((long long int) tcp->u_arg[1]) << 32
356 | (unsigned long long) tcp->u_arg[2]));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000357 else
358 tprintf("%ld, %lld, ", tcp->u_arg[0],
359 (((long long int) tcp->u_arg[1]) << 32
Wichert Akkerman2e2553a1999-05-09 00:29:58 +0000360 | (unsigned long long) tcp->u_arg[2]));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000361 }
362 else {
Wichert Akkerman2e2553a1999-05-09 00:29:58 +0000363 long long int off;
364 if (syserror(tcp) || umove(tcp, tcp->u_arg[3], &off) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000365 tprintf("%#lx, ", tcp->u_arg[3]);
Wichert Akkerman2e2553a1999-05-09 00:29:58 +0000366 else
367 tprintf("[%llu], ", off);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000368 printxval(whence, tcp->u_arg[4], "SEEK_???");
369 }
370 return 0;
371}
372#endif
373
374int
375sys_truncate(tcp)
376struct 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
385int
386sys_ftruncate(tcp)
387struct 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
397static 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
408static char *
409sprintmode(mode)
410int 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
432static char *
433sprinttime(t)
434time_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
451typedef struct {
452 int tv_sec;
453 int tv_nsec;
454} timestruct_t;
455
456struct 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
477static void
478printstatsol(tcp, addr)
479struct tcb *tcp;
480int 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}
Wichert Akkermanb859bea1999-04-18 22:50:50 +0000529#endif /* LINUXSPARC */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000530
Wichert Akkerman328c5e71999-04-16 00:21:26 +0000531static void
532realprintstat(tcp, statbuf)
533struct tcb *tcp;
Wichert Akkerman328c5e71999-04-16 00:21:26 +0000534struct stat *statbuf;
Wichert Akkerman328c5e71999-04-16 00:21:26 +0000535{
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
Nate Sammons771a6ff1999-04-05 22:39:31 +0000580
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000581static void
582printstat(tcp, addr)
583struct tcb *tcp;
584int addr;
585{
Wichert Akkerman328c5e71999-04-16 00:21:26 +0000586 struct stat statbuf;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000587
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 }
Wichert Akkerman328c5e71999-04-16 00:21:26 +0000607
608 realprintstat(tcp, &statbuf);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000609}
610
Wichert Akkerman328c5e71999-04-16 00:21:26 +0000611#ifdef linux
612static void
613convertoldstat(oldbuf, newbuf)
Wichert Akkerman25d0c4f1999-04-18 19:35:42 +0000614const struct __old_kernel_stat *oldbuf;
615struct stat *newbuf;
Wichert Akkerman328c5e71999-04-16 00:21:26 +0000616{
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
635static void
636printoldstat(tcp, addr)
637struct tcb *tcp;
638int addr;
639{
Wichert Akkerman25d0c4f1999-04-18 19:35:42 +0000640 struct __old_kernel_stat statbuf;
641 struct stat newstatbuf;
Wichert Akkerman328c5e71999-04-16 00:21:26 +0000642
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
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000669int
670sys_stat(tcp)
671struct 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
Wichert Akkerman328c5e71999-04-16 00:21:26 +0000682#ifdef linux
683int
684sys_oldstat(tcp)
685struct 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
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000697int
698sys_fstat(tcp)
699struct 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
Wichert Akkerman328c5e71999-04-16 00:21:26 +0000709#ifdef linux
710int
711sys_oldfstat(tcp)
712struct 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
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000723int
724sys_lstat(tcp)
725struct 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
Wichert Akkerman328c5e71999-04-16 00:21:26 +0000736#ifdef linux
737int
738sys_oldlstat(tcp)
739struct 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
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000752#if defined(SVR4) || defined(LINUXSPARC)
753
754int
755sys_xstat(tcp)
756struct 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
768int
769sys_fxstat(tcp)
770struct 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
780int
781sys_lxstat(tcp)
782struct 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
794int
795sys_xmknod(tcp)
796struct 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
Wichert Akkerman8829a551999-06-11 13:18:40 +0000823#ifdef HAVE_SYS_ACL_H
824
825#include <sys/acl.h>
826
827struct xlat aclcmds[] = {
828 { SETACL, "SETACL" },
829 { GETACL, "GETACL" },
830 { GETACLCNT, "GETACLCNT" },
831 { 0, NULL },
832};
833
834int
835sys_acl(tcp)
836struct 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
856int
857sys_facl(tcp)
858struct 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
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000878#endif /* SVR4 || LINUXSPARC */
879
Wichert Akkerman328c5e71999-04-16 00:21:26 +0000880#ifdef linux
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000881
882static 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" },
Wichert Akkerman2e2553a1999-05-09 00:29:58 +0000889 { 0x2468, "MINIX2_SUPER_MAGIC" },
890 { 0x2478, "MINIX2_SUPER_MAGIC2" },
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000891 { 0x4d44, "MSDOS_SUPER_MAGIC" },
892 { 0x6969, "NFS_SUPER_MAGIC" },
893 { 0x9fa0, "PROC_SUPER_MAGIC" },
894 { 0x012fd16d, "XIAFS_SUPER_MAGIC" },
895 { 0, NULL },
896};
897
Wichert Akkerman328c5e71999-04-16 00:21:26 +0000898#endif /* linux */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000899
900#ifndef SVR4
901
902static char *
903sprintfstype(magic)
904int magic;
905{
906 static char buf[32];
Wichert Akkerman328c5e71999-04-16 00:21:26 +0000907#ifdef linux
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000908 char *s;
909
910 s = xlookup(fsmagic, magic);
911 if (s) {
912 sprintf(buf, "\"%s\"", s);
913 return buf;
914 }
Wichert Akkerman328c5e71999-04-16 00:21:26 +0000915#endif /* linux */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000916 sprintf(buf, "%#x", magic);
917 return buf;
918}
919
920static void
921printstatfs(tcp, addr)
922struct tcb *tcp;
923long 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);
Wichert Akkerman2e2553a1999-05-09 00:29:58 +0000940 tprintf("f_bavail=%u, f_files=%u, f_ffree=%u, f_namelen=%u",
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000941 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),
Nate Sammons5c74d201999-04-06 01:37:51 +0000945 (unsigned long)statbuf.f_bsize,
946 (unsigned long)statbuf.f_blocks,
947 (unsigned long)statbuf.f_bfree);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000948 tprintf("f_files=%lu, f_ffree=%lu",
Nate Sammons5c74d201999-04-06 01:37:51 +0000949 (unsigned long)statbuf.f_files,
950 (unsigned long)statbuf.f_ffree);
Wichert Akkerman328c5e71999-04-16 00:21:26 +0000951#ifdef linux
Wichert Akkerman2e2553a1999-05-09 00:29:58 +0000952 tprintf(", f_namelen=%lu", (unsigned long)statbuf.f_namelen);
Wichert Akkerman328c5e71999-04-16 00:21:26 +0000953#endif /* linux */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000954#endif /* !ALPHA */
955 tprintf("}");
956}
957
958int
959sys_statfs(tcp)
960struct 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
971int
972sys_fstatfs(tcp)
973struct 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
Wichert Akkermana0f36c61999-04-16 14:01:34 +0000983#if defined(linux) && defined(__alpha)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000984
985int
986osf_statfs(tcp)
987struct 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
999int
1000osf_fstatfs(tcp)
1001struct 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}
Wichert Akkermana0f36c61999-04-16 14:01:34 +00001011#endif /* linux && __alpha */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001012
1013#endif /* !SVR4 */
1014
1015#ifdef SUNOS4
1016
1017int
1018sys_ustat(tcp)
1019struct 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 */
1050int
1051sys_chdir(tcp)
1052struct tcb *tcp;
1053{
1054 if (entering(tcp)) {
1055 printpath(tcp, tcp->u_arg[0]);
1056 }
1057 return 0;
1058}
1059
1060int
1061sys_mkdir(tcp)
1062struct 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
1071int
1072sys_rmdir(tcp)
1073struct tcb *tcp;
1074{
1075 if (entering(tcp)) {
1076 printpath(tcp, tcp->u_arg[0]);
1077 }
1078 return 0;
1079}
1080
1081int
1082sys_fchdir(tcp)
1083struct tcb *tcp;
1084{
1085 if (entering(tcp)) {
1086 tprintf("%ld", tcp->u_arg[0]);
1087 }
1088 return 0;
1089}
1090
1091int
1092sys_chroot(tcp)
1093struct tcb *tcp;
1094{
1095 if (entering(tcp)) {
1096 printpath(tcp, tcp->u_arg[0]);
1097 }
1098 return 0;
1099}
1100
1101int
1102sys_fchroot(tcp)
1103struct tcb *tcp;
1104{
1105 if (entering(tcp)) {
1106 tprintf("%ld", tcp->u_arg[0]);
1107 }
1108 return 0;
1109}
1110
1111int
1112sys_link(tcp)
1113struct 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
1123int
1124sys_unlink(tcp)
1125struct tcb *tcp;
1126{
1127 if (entering(tcp)) {
1128 printpath(tcp, tcp->u_arg[0]);
1129 }
1130 return 0;
1131}
1132
1133int
1134sys_symlink(tcp)
1135struct 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
1145int
1146sys_readlink(tcp)
1147struct 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
1162int
1163sys_rename(tcp)
1164struct 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
1174int
1175sys_chown(tcp)
1176struct 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
1185int
1186sys_fchown(tcp)
1187struct 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
1196int
1197sys_chmod(tcp)
1198struct 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
1207int
1208sys_fchmod(tcp)
1209struct 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
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +00001217#ifdef ALPHA
1218int
1219sys_osf_utimes(tcp)
1220struct tcb *tcp;
1221{
1222 if (entering(tcp)) {
1223 printpath(tcp, tcp->u_arg[0]);
1224 tprintf(", ");
1225 printtv32(tcp, tcp->u_arg[1]);
1226 }
1227 return 0;
1228}
1229#endif
1230
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001231int
1232sys_utimes(tcp)
1233struct tcb *tcp;
1234{
1235 if (entering(tcp)) {
1236 printpath(tcp, tcp->u_arg[0]);
1237 tprintf(", ");
1238 printtv(tcp, tcp->u_arg[1]);
1239 }
1240 return 0;
1241}
1242
1243int
1244sys_utime(tcp)
1245struct tcb *tcp;
1246{
1247 long ut[2];
1248
1249 if (entering(tcp)) {
1250 printpath(tcp, tcp->u_arg[0]);
1251 tprintf(", ");
1252 if (!tcp->u_arg[1])
1253 tprintf("NULL");
1254 else if (!verbose(tcp))
1255 tprintf("%#lx", tcp->u_arg[1]);
1256 else if (umoven(tcp, tcp->u_arg[1], sizeof ut,
1257 (char *) ut) < 0)
1258 tprintf("[?, ?]");
1259 else {
1260 tprintf("[%s,", sprinttime(ut[0]));
1261 tprintf(" %s]", sprinttime(ut[1]));
1262 }
1263 }
1264 return 0;
1265}
1266
1267int
1268sys_mknod(tcp)
1269struct tcb *tcp;
1270{
1271 int mode = tcp->u_arg[1];
1272
1273 if (entering(tcp)) {
1274 printpath(tcp, tcp->u_arg[0]);
1275 tprintf(", %s", sprintmode(mode));
1276 switch (mode & S_IFMT) {
1277 case S_IFCHR: case S_IFBLK:
1278#ifdef LINUXSPARC
1279 if (current_personality == 1)
1280 tprintf(", makedev(%lu, %lu)",
1281 (unsigned long) ((tcp->u_arg[2] >> 18) & 0x3fff),
1282 (unsigned long) (tcp->u_arg[2] & 0x3ffff));
1283 else
1284#endif
1285 tprintf(", makedev(%lu, %lu)",
1286 (unsigned long) major(tcp->u_arg[2]),
1287 (unsigned long) minor(tcp->u_arg[2]));
1288 break;
1289 default:
1290 break;
1291 }
1292 }
1293 return 0;
1294}
1295
1296int
1297sys_mkfifo(tcp)
1298struct tcb *tcp;
1299{
1300 if (entering(tcp)) {
1301 printpath(tcp, tcp->u_arg[0]);
1302 tprintf(", %#lo", tcp->u_arg[1]);
1303 }
1304 return 0;
1305}
1306
1307int
1308sys_fsync(tcp)
1309struct tcb *tcp;
1310{
1311 if (entering(tcp)) {
1312 tprintf("%ld", tcp->u_arg[0]);
1313 }
1314 return 0;
1315}
1316
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001317#ifdef linux
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001318
1319static void
1320printdir(tcp, addr)
1321struct tcb *tcp;
1322long addr;
1323{
1324 struct dirent d;
1325
1326 if (!verbose(tcp)) {
1327 tprintf("%#lx", addr);
1328 return;
1329 }
1330 if (umove(tcp, addr, &d) < 0) {
1331 tprintf("{...}");
1332 return;
1333 }
1334 tprintf("{d_ino=%ld, ", (unsigned long) d.d_ino);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001335 tprintf("d_name=");
1336 printpathn(tcp, (long) ((struct dirent *) addr)->d_name, d.d_reclen);
1337 tprintf("}");
1338}
1339
1340int
1341sys_readdir(tcp)
1342struct tcb *tcp;
1343{
1344 if (entering(tcp)) {
1345 tprintf("%lu, ", tcp->u_arg[0]);
1346 } else {
1347 if (syserror(tcp) || tcp->u_rval == 0 || !verbose(tcp))
1348 tprintf("%#lx", tcp->u_arg[1]);
1349 else
1350 printdir(tcp, tcp->u_arg[1]);
1351 /* Not much point in printing this out, it is always 1. */
1352 if (tcp->u_arg[2] != 1)
1353 tprintf(", %lu", tcp->u_arg[2]);
1354 }
1355 return 0;
1356}
1357
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001358#endif /* linux */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001359
1360int
1361sys_getdents(tcp)
1362struct tcb *tcp;
1363{
1364 int i, len, dents = 0;
1365 char *buf;
1366
1367 if (entering(tcp)) {
1368 tprintf("%lu, ", tcp->u_arg[0]);
1369 return 0;
1370 }
1371 if (syserror(tcp) || !verbose(tcp)) {
1372 tprintf("%#lx, %lu", tcp->u_arg[1], tcp->u_arg[2]);
1373 return 0;
1374 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001375 len = tcp->u_rval;
1376 if ((buf = malloc(len)) == NULL) {
1377 tprintf("out of memory\n");
1378 return 0;
1379 }
1380 if (umoven(tcp, tcp->u_arg[1], len, buf) < 0) {
1381 tprintf("{...}, %lu", tcp->u_arg[2]);
1382 free(buf);
1383 return 0;
1384 }
1385 if (!abbrev(tcp))
1386 tprintf("{");
1387 for (i = 0; i < len;) {
Wichert Akkerman9524bb91999-05-25 23:11:18 +00001388 struct kernel_dirent *d = (struct kernel_dirent *) &buf[i];
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001389#ifdef linux
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001390 if (!abbrev(tcp)) {
1391 tprintf("%s{d_ino=%lu, d_off=%lu, ",
1392 i ? " " : "", d->d_ino, d->d_off);
1393 tprintf("d_reclen=%u, d_name=\"%s\"}",
1394 d->d_reclen, d->d_name);
1395 }
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001396#endif /* linux */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001397#ifdef SVR4
1398 if (!abbrev(tcp)) {
1399 tprintf("%s{d_ino=%lu, d_off=%lu, ",
1400 i ? " " : "", d->d_ino, d->d_off);
1401 tprintf("d_reclen=%u, d_name=\"%s\"}",
1402 d->d_reclen, d->d_name);
1403 }
1404#endif /* SVR4 */
1405#ifdef SUNOS4
1406 if (!abbrev(tcp)) {
1407 tprintf("%s{d_off=%lu, d_fileno=%lu, d_reclen=%u, ",
1408 i ? " " : "", d->d_off, d->d_fileno,
1409 d->d_reclen);
1410 tprintf("d_namlen=%u, d_name=\"%.*s\"}",
1411 d->d_namlen, d->d_namlen, d->d_name);
1412 }
1413#endif /* SUNOS4 */
1414 i += d->d_reclen;
1415 dents++;
1416 }
1417 if (!abbrev(tcp))
1418 tprintf("}");
1419 else
1420 tprintf("/* %u entries */", dents);
1421 tprintf(", %lu", tcp->u_arg[2]);
1422 free(buf);
1423 return 0;
1424}
1425
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001426#ifdef linux
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001427
1428int
1429sys_getcwd(tcp)
1430struct tcb *tcp;
1431{
1432 if (exiting(tcp)) {
1433 if (syserror(tcp))
1434 tprintf("%#lx", tcp->u_arg[0]);
1435 else
Wichert Akkerman2e2553a1999-05-09 00:29:58 +00001436 printpathn(tcp, tcp->u_arg[0], tcp->u_rval - 1);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001437 tprintf(", %lu", tcp->u_arg[1]);
1438 }
1439 return 0;
1440}
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001441#endif /* linux */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001442
1443#ifdef HAVE_SYS_ASYNCH_H
1444
1445int
1446sys_aioread(tcp)
1447struct tcb *tcp;
1448{
1449 struct aio_result_t res;
1450
1451 if (entering(tcp)) {
1452 tprintf("%lu, ", tcp->u_arg[0]);
1453 } else {
1454 if (syserror(tcp))
1455 tprintf("%#lx", tcp->u_arg[1]);
1456 else
1457 printstr(tcp, tcp->u_arg[1], tcp->u_arg[2]);
1458 tprintf(", %lu, %lu, ", tcp->u_arg[2], tcp->u_arg[3]);
1459 printxval(whence, tcp->u_arg[4], "L_???");
1460 if (syserror(tcp) || tcp->u_arg[5] == 0
1461 || umove(tcp, tcp->u_arg[5], &res) < 0)
1462 tprintf(", %#lx", tcp->u_arg[5]);
1463 else
1464 tprintf(", {aio_return %d aio_errno %d}",
1465 res.aio_return, res.aio_errno);
1466 }
1467 return 0;
1468}
1469
1470int
1471sys_aiowrite(tcp)
1472struct tcb *tcp;
1473{
1474 struct aio_result_t res;
1475
1476 if (entering(tcp)) {
1477 tprintf("%lu, ", tcp->u_arg[0]);
1478 printstr(tcp, tcp->u_arg[1], tcp->u_arg[2]);
1479 tprintf(", %lu, %lu, ", tcp->u_arg[2], tcp->u_arg[3]);
1480 printxval(whence, tcp->u_arg[4], "L_???");
1481 }
1482 else {
1483 if (tcp->u_arg[5] == 0)
1484 tprintf(", NULL");
1485 else if (syserror(tcp)
1486 || umove(tcp, tcp->u_arg[5], &res) < 0)
1487 tprintf(", %#lx", tcp->u_arg[5]);
1488 else
1489 tprintf(", {aio_return %d aio_errno %d}",
1490 res.aio_return, res.aio_errno);
1491 }
1492 return 0;
1493}
1494
1495int
1496sys_aiowait(tcp)
1497struct tcb *tcp;
1498{
1499 if (entering(tcp))
1500 printtv(tcp, tcp->u_arg[0]);
1501 return 0;
1502}
1503
1504int
1505sys_aiocancel(tcp)
1506struct tcb *tcp;
1507{
1508 struct aio_result_t res;
1509
1510 if (exiting(tcp)) {
1511 if (tcp->u_arg[0] == 0)
1512 tprintf("NULL");
1513 else if (syserror(tcp)
1514 || umove(tcp, tcp->u_arg[0], &res) < 0)
1515 tprintf("%#lx", tcp->u_arg[0]);
1516 else
1517 tprintf("{aio_return %d aio_errno %d}",
1518 res.aio_return, res.aio_errno);
1519 }
1520 return 0;
1521}
1522
1523#endif /* HAVE_SYS_ASYNCH_H */