blob: 346f1e70558d3cbc0f27898ffbdb72f522a404b7 [file] [log] [blame]
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001/*
2 * Copyright (c) 1991, 1992 Paul Kranenburg <pk@cs.few.eur.nl>
3 * Copyright (c) 1993 Branko Lankester <branko@hacktic.nl>
4 * Copyright (c) 1993, 1994, 1995, 1996 Rick Sladkey <jrs@world.std.com>
Wichert Akkerman4dc8a2a1999-12-23 14:20:14 +00005 * Copyright (c) 1996-1999 Wichert Akkerman <wichert@cistron.nl>
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00006 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. The name of the author may not be used to endorse or promote products
17 * derived from this software without specific prior written permission.
18 *
19 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
20 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
21 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
22 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
23 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
24 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
28 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 *
30 * $Id$
31 */
32
33#include "defs.h"
34
35#include <dirent.h>
Roland McGrathc531e572008-08-01 01:13:10 +000036
Michal Ludvig53b320f2002-09-23 13:30:09 +000037#ifdef LINUX
Roland McGrathc531e572008-08-01 01:13:10 +000038struct kernel_dirent {
39 unsigned long d_ino;
40 unsigned long d_off;
41 unsigned short d_reclen;
42 char d_name[1];
43};
Wichert Akkerman9524bb91999-05-25 23:11:18 +000044#else
Roland McGrathc531e572008-08-01 01:13:10 +000045# define kernel_dirent dirent
Wichert Akkerman9524bb91999-05-25 23:11:18 +000046#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000047
Michal Ludvig53b320f2002-09-23 13:30:09 +000048#ifdef LINUX
Wichert Akkermandacfb6e1999-06-03 14:21:07 +000049# ifdef LINUXSPARC
50struct stat {
51 unsigned short st_dev;
52 unsigned int st_ino;
53 unsigned short st_mode;
54 short st_nlink;
55 unsigned short st_uid;
56 unsigned short st_gid;
57 unsigned short st_rdev;
58 unsigned int st_size;
59 int st_atime;
60 unsigned int __unused1;
61 int st_mtime;
62 unsigned int __unused2;
63 int st_ctime;
64 unsigned int __unused3;
65 int st_blksize;
66 int st_blocks;
67 unsigned int __unused4[2];
68};
Roland McGrath6d1a65c2004-07-12 07:44:08 +000069#if defined(SPARC64)
70struct stat_sparc64 {
71 unsigned int st_dev;
72 unsigned long st_ino;
73 unsigned int st_mode;
74 unsigned int st_nlink;
75 unsigned int st_uid;
76 unsigned int st_gid;
77 unsigned int st_rdev;
78 long st_size;
79 long st_atime;
80 long st_mtime;
81 long st_ctime;
82 long st_blksize;
83 long st_blocks;
84 unsigned long __unused4[2];
85};
86#endif /* SPARC64 */
Wichert Akkermandacfb6e1999-06-03 14:21:07 +000087# define stat kernel_stat
88# include <asm/stat.h>
89# undef stat
90# else
Wichert Akkerman5b4d1281999-07-09 00:32:54 +000091# undef dev_t
92# undef ino_t
93# undef mode_t
94# undef nlink_t
95# undef uid_t
96# undef gid_t
97# undef off_t
98# undef loff_t
99
Wichert Akkermana6013701999-07-08 14:00:58 +0000100# define dev_t __kernel_dev_t
101# define ino_t __kernel_ino_t
102# define mode_t __kernel_mode_t
103# define nlink_t __kernel_nlink_t
104# define uid_t __kernel_uid_t
105# define gid_t __kernel_gid_t
106# define off_t __kernel_off_t
107# define loff_t __kernel_loff_t
108
Wichert Akkermandacfb6e1999-06-03 14:21:07 +0000109# include <asm/stat.h>
Wichert Akkermana6013701999-07-08 14:00:58 +0000110
111# undef dev_t
112# undef ino_t
113# undef mode_t
114# undef nlink_t
115# undef uid_t
116# undef gid_t
117# undef off_t
118# undef loff_t
Wichert Akkerman5b4d1281999-07-09 00:32:54 +0000119
120# define dev_t dev_t
121# define ino_t ino_t
122# define mode_t mode_t
123# define nlink_t nlink_t
124# define uid_t uid_t
125# define gid_t gid_t
126# define off_t off_t
127# define loff_t loff_t
Wichert Akkermandacfb6e1999-06-03 14:21:07 +0000128# endif
Wichert Akkermanc1652e22001-03-27 12:17:16 +0000129# ifdef HPPA /* asm-parisc/stat.h defines stat64 */
130# undef stat64
131# endif
Wichert Akkermand4d8e921999-04-18 23:30:29 +0000132# define stat libc_stat
Ulrich Drepper0fa01d71999-12-24 07:18:28 +0000133# define stat64 libc_stat64
Wichert Akkermand4d8e921999-04-18 23:30:29 +0000134# include <sys/stat.h>
135# undef stat
Ulrich Drepper0fa01d71999-12-24 07:18:28 +0000136# undef stat64
Roland McGrathca16a402003-01-09 06:53:22 +0000137 /* These might be macros. */
138# undef st_atime
139# undef st_mtime
140# undef st_ctime
Wichert Akkermanc1652e22001-03-27 12:17:16 +0000141# ifdef HPPA
142# define stat64 hpux_stat64
143# endif
Wichert Akkermand4d8e921999-04-18 23:30:29 +0000144#else
145# include <sys/stat.h>
Wichert Akkerman328c5e71999-04-16 00:21:26 +0000146#endif
Wichert Akkermand4d8e921999-04-18 23:30:29 +0000147
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000148#include <fcntl.h>
149
150#ifdef SVR4
151# include <sys/cred.h>
152#endif /* SVR4 */
153
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000154#ifdef HAVE_SYS_VFS_H
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000155#include <sys/vfs.h>
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000156#endif
157
Roland McGrath186c5ac2002-12-15 23:58:23 +0000158#ifdef HAVE_LINUX_XATTR_H
159#include <linux/xattr.h>
160#elif defined linux
161#define XATTR_CREATE 1
162#define XATTR_REPLACE 2
163#endif
164
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000165#ifdef FREEBSD
166#include <sys/param.h>
167#include <sys/mount.h>
168#include <sys/stat.h>
John Hughes70623be2001-03-08 13:59:00 +0000169#endif
170
Dmitry V. Levin1f336e52006-10-14 20:20:46 +0000171#if _LFS64_LARGEFILE && (defined(LINUX) || defined(SVR4))
172# ifdef HAVE_INTTYPES_H
173# include <inttypes.h>
174# else
175# define PRId64 "lld"
176# define PRIu64 "llu"
177# endif
178#endif
179
John Hughes70623be2001-03-08 13:59:00 +0000180#if HAVE_LONG_LONG_OFF_T
181/*
182 * Ugly hacks for systems that have typedef long long off_t
183 */
John Hughesb8c9f772001-03-07 16:53:07 +0000184
185#define stat64 stat
186#define HAVE_STAT64 1 /* Ugly hack */
John Hughes70623be2001-03-08 13:59:00 +0000187
188#define sys_stat64 sys_stat
189#define sys_fstat64 sys_fstat
190#define sys_lstat64 sys_lstat
191#define sys_lseek64 sys_lseek
192#define sys_truncate64 sys_truncate
193#define sys_ftruncate64 sys_ftruncate
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000194#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000195
196#ifdef MAJOR_IN_SYSMACROS
197#include <sys/sysmacros.h>
198#endif
199
200#ifdef MAJOR_IN_MKDEV
201#include <sys/mkdev.h>
202#endif
203
204#ifdef HAVE_SYS_ASYNCH_H
205#include <sys/asynch.h>
206#endif
207
208#ifdef SUNOS4
209#include <ustat.h>
210#endif
211
Dmitry V. Levin9b5b67e2007-01-11 23:19:55 +0000212const struct xlat open_access_modes[] = {
213 { O_RDONLY, "O_RDONLY" },
214 { O_WRONLY, "O_WRONLY" },
215 { O_RDWR, "O_RDWR" },
216#ifdef O_ACCMODE
217 { O_ACCMODE, "O_ACCMODE" },
218#endif
219 { 0, NULL },
220};
221
222const struct xlat open_mode_flags[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000223 { O_CREAT, "O_CREAT" },
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000224 { O_EXCL, "O_EXCL" },
225 { O_NOCTTY, "O_NOCTTY" },
Dmitry V. Levin9b5b67e2007-01-11 23:19:55 +0000226 { O_TRUNC, "O_TRUNC" },
227 { O_APPEND, "O_APPEND" },
228 { O_NONBLOCK, "O_NONBLOCK" },
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000229#ifdef O_SYNC
230 { O_SYNC, "O_SYNC" },
231#endif
232#ifdef O_ASYNC
233 { O_ASYNC, "O_ASYNC" },
234#endif
235#ifdef O_DSYNC
236 { O_DSYNC, "O_DSYNC" },
237#endif
238#ifdef O_RSYNC
239 { O_RSYNC, "O_RSYNC" },
240#endif
Denys Vlasenkoeedaac72009-03-10 20:41:58 +0000241#if defined(O_NDELAY) && (O_NDELAY != O_NONBLOCK)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000242 { O_NDELAY, "O_NDELAY" },
243#endif
244#ifdef O_PRIV
245 { O_PRIV, "O_PRIV" },
246#endif
247#ifdef O_DIRECT
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +0000248 { O_DIRECT, "O_DIRECT" },
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000249#endif
250#ifdef O_LARGEFILE
Roland McGrathfee836e2005-02-02 22:11:32 +0000251# if O_LARGEFILE == 0 /* biarch platforms in 64-bit mode */
252# undef O_LARGEFILE
253# ifdef SPARC64
254# define O_LARGEFILE 0x40000
255# elif defined X86_64 || defined S390X
256# define O_LARGEFILE 0100000
257# endif
258# endif
Roland McGrath663a8a02005-02-04 09:49:56 +0000259# ifdef O_LARGEFILE
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +0000260 { O_LARGEFILE, "O_LARGEFILE" },
Roland McGrath663a8a02005-02-04 09:49:56 +0000261# endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000262#endif
263#ifdef O_DIRECTORY
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +0000264 { O_DIRECTORY, "O_DIRECTORY" },
265#endif
266#ifdef O_NOFOLLOW
267 { O_NOFOLLOW, "O_NOFOLLOW" },
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000268#endif
Roland McGrath1025c3e2005-05-09 07:40:35 +0000269#ifdef O_NOATIME
270 { O_NOATIME, "O_NOATIME" },
271#endif
Roland McGrath71d3d662007-08-07 01:00:26 +0000272#ifdef O_CLOEXEC
273 { O_CLOEXEC, "O_CLOEXEC" },
274#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000275
276#ifdef FNDELAY
277 { FNDELAY, "FNDELAY" },
278#endif
279#ifdef FAPPEND
280 { FAPPEND, "FAPPEND" },
281#endif
282#ifdef FMARK
283 { FMARK, "FMARK" },
284#endif
285#ifdef FDEFER
286 { FDEFER, "FDEFER" },
287#endif
288#ifdef FASYNC
289 { FASYNC, "FASYNC" },
290#endif
291#ifdef FSHLOCK
292 { FSHLOCK, "FSHLOCK" },
293#endif
294#ifdef FEXLOCK
295 { FEXLOCK, "FEXLOCK" },
296#endif
297#ifdef FCREAT
298 { FCREAT, "FCREAT" },
299#endif
300#ifdef FTRUNC
301 { FTRUNC, "FTRUNC" },
302#endif
303#ifdef FEXCL
304 { FEXCL, "FEXCL" },
305#endif
306#ifdef FNBIO
307 { FNBIO, "FNBIO" },
308#endif
309#ifdef FSYNC
310 { FSYNC, "FSYNC" },
311#endif
312#ifdef FNOCTTY
313 { FNOCTTY, "FNOCTTY" },
Roland McGrath186c5ac2002-12-15 23:58:23 +0000314#endif
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000315#ifdef O_SHLOCK
316 { O_SHLOCK, "O_SHLOCK" },
317#endif
318#ifdef O_EXLOCK
319 { O_EXLOCK, "O_EXLOCK" },
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000320#endif
321 { 0, NULL },
322};
323
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000324#ifdef LINUX
325
326#ifndef AT_FDCWD
327# define AT_FDCWD -100
328#endif
329
Denys Vlasenkoe740fd32009-04-16 12:06:16 +0000330/* The fd is an "int", so when decoding x86 on x86_64, we need to force sign
331 * extension to get the right value. We do this by declaring fd as int here.
332 */
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000333static void
Dmitry V. Levin31382132011-03-04 05:08:02 +0300334print_dirfd(struct tcb *tcp, int fd)
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000335{
336 if (fd == AT_FDCWD)
337 tprintf("AT_FDCWD, ");
338 else
Dmitry V. Levin31382132011-03-04 05:08:02 +0300339 {
340 printfd(tcp, fd);
341 tprintf(", ");
342 }
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000343}
344#endif
345
Dmitry V. Levin9b5b67e2007-01-11 23:19:55 +0000346/*
Denys Vlasenkoeedaac72009-03-10 20:41:58 +0000347 * Pity stpcpy() is not standardized...
348 */
349static char *
350str_append(char *dst, const char *src)
351{
352 while ((*dst = *src++) != '\0')
353 dst++;
354 return dst;
355}
356
357/*
Dmitry V. Levin9b5b67e2007-01-11 23:19:55 +0000358 * low bits of the open(2) flags define access mode,
359 * other bits are real flags.
360 */
Denys Vlasenkoeedaac72009-03-10 20:41:58 +0000361const char *
362sprint_open_modes(mode_t flags)
Dmitry V. Levin9b5b67e2007-01-11 23:19:55 +0000363{
Denys Vlasenkoeedaac72009-03-10 20:41:58 +0000364 static char outstr[1024];
365 char *p;
366 char sep = 0;
367 const char *str;
368 const struct xlat *x;
Dmitry V. Levin9b5b67e2007-01-11 23:19:55 +0000369
Denys Vlasenkoeedaac72009-03-10 20:41:58 +0000370 p = str_append(outstr, "flags ");
371 str = xlookup(open_access_modes, flags & 3);
372 if (str) {
373 p = str_append(p, str);
Dmitry V. Levin9b5b67e2007-01-11 23:19:55 +0000374 flags &= ~3;
375 if (!flags)
Denys Vlasenkoeedaac72009-03-10 20:41:58 +0000376 return outstr;
377 sep = '|';
Dmitry V. Levin9b5b67e2007-01-11 23:19:55 +0000378 }
Denys Vlasenkoeedaac72009-03-10 20:41:58 +0000379
380 for (x = open_mode_flags; x->str; x++) {
381 if ((flags & x->val) == x->val) {
382 if (sep)
383 *p++ = sep;
384 p = str_append(p, x->str);
385 flags &= ~x->val;
386 if (!flags)
387 return outstr;
388 sep = '|';
389 }
390 }
391 /* flags is still nonzero */
392 if (sep)
393 *p++ = sep;
394 sprintf(p, "%#x", flags);
395 return outstr;
396}
397
398void
399tprint_open_modes(mode_t flags)
400{
Dmitry V. Levin4bcd5ef2009-06-01 10:32:27 +0000401 tprintf("%s", sprint_open_modes(flags) + sizeof("flags"));
Dmitry V. Levin9b5b67e2007-01-11 23:19:55 +0000402}
403
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000404static int
405decode_open(struct tcb *tcp, int offset)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000406{
407 if (entering(tcp)) {
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000408 printpath(tcp, tcp->u_arg[offset]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000409 tprintf(", ");
410 /* flags */
Denys Vlasenkoeedaac72009-03-10 20:41:58 +0000411 tprint_open_modes(tcp->u_arg[offset + 1]);
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000412 if (tcp->u_arg[offset + 1] & O_CREAT) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000413 /* mode */
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000414 tprintf(", %#lo", tcp->u_arg[offset + 2]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000415 }
416 }
417 return 0;
418}
419
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000420int
421sys_open(struct tcb *tcp)
422{
423 return decode_open(tcp, 0);
424}
425
426#ifdef LINUX
427int
428sys_openat(struct tcb *tcp)
429{
430 if (entering(tcp))
Dmitry V. Levin31382132011-03-04 05:08:02 +0300431 print_dirfd(tcp, tcp->u_arg[0]);
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000432 return decode_open(tcp, 1);
433}
434#endif
435
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000436#ifdef LINUXSPARC
Roland McGratha4d48532005-06-08 20:45:28 +0000437static const struct xlat openmodessol[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000438 { 0, "O_RDWR" },
439 { 1, "O_RDONLY" },
440 { 2, "O_WRONLY" },
441 { 0x80, "O_NONBLOCK" },
442 { 8, "O_APPEND" },
443 { 0x100, "O_CREAT" },
444 { 0x200, "O_TRUNC" },
445 { 0x400, "O_EXCL" },
446 { 0x800, "O_NOCTTY" },
447 { 0x10, "O_SYNC" },
448 { 0x40, "O_DSYNC" },
449 { 0x8000, "O_RSYNC" },
450 { 4, "O_NDELAY" },
451 { 0x1000, "O_PRIV" },
452 { 0, NULL },
453};
454
455int
Denys Vlasenko1d632462009-04-14 12:51:00 +0000456solaris_open(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000457{
458 if (entering(tcp)) {
459 printpath(tcp, tcp->u_arg[0]);
460 tprintf(", ");
461 /* flags */
Roland McGrathb2dee132005-06-01 19:02:36 +0000462 printflags(openmodessol, tcp->u_arg[1] + 1, "O_???");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000463 if (tcp->u_arg[1] & 0x100) {
464 /* mode */
465 tprintf(", %#lo", tcp->u_arg[2]);
466 }
467 }
468 return 0;
469}
470
471#endif
472
473int
Denys Vlasenko1d632462009-04-14 12:51:00 +0000474sys_creat(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000475{
476 if (entering(tcp)) {
477 printpath(tcp, tcp->u_arg[0]);
478 tprintf(", %#lo", tcp->u_arg[1]);
479 }
480 return 0;
481}
482
Roland McGrathd9f816f2004-09-04 03:39:20 +0000483static const struct xlat access_flags[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000484 { F_OK, "F_OK", },
485 { R_OK, "R_OK" },
486 { W_OK, "W_OK" },
487 { X_OK, "X_OK" },
488#ifdef EFF_ONLY_OK
489 { EFF_ONLY_OK, "EFF_ONLY_OK" },
490#endif
491#ifdef EX_OK
492 { EX_OK, "EX_OK" },
493#endif
494 { 0, NULL },
495};
496
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000497static int
498decode_access(struct tcb *tcp, int offset)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000499{
500 if (entering(tcp)) {
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000501 printpath(tcp, tcp->u_arg[offset]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000502 tprintf(", ");
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000503 printflags(access_flags, tcp->u_arg[offset + 1], "?_OK");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000504 }
505 return 0;
506}
507
508int
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000509sys_access(struct tcb *tcp)
510{
511 return decode_access(tcp, 0);
512}
513
514#ifdef LINUX
515int
516sys_faccessat(struct tcb *tcp)
517{
518 if (entering(tcp))
Dmitry V. Levin31382132011-03-04 05:08:02 +0300519 print_dirfd(tcp, tcp->u_arg[0]);
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000520 return decode_access(tcp, 1);
521}
522#endif
523
524int
Denys Vlasenko1d632462009-04-14 12:51:00 +0000525sys_umask(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000526{
527 if (entering(tcp)) {
528 tprintf("%#lo", tcp->u_arg[0]);
529 }
530 return RVAL_OCTAL;
531}
532
Roland McGrathd9f816f2004-09-04 03:39:20 +0000533static const struct xlat whence[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000534 { SEEK_SET, "SEEK_SET" },
535 { SEEK_CUR, "SEEK_CUR" },
536 { SEEK_END, "SEEK_END" },
537 { 0, NULL },
538};
539
John Hughes70623be2001-03-08 13:59:00 +0000540#ifndef HAVE_LONG_LONG_OFF_T
Roland McGrath542c2c62008-05-20 01:11:56 +0000541#if defined (LINUX_MIPSN32)
542int
Denys Vlasenko1d632462009-04-14 12:51:00 +0000543sys_lseek(struct tcb *tcp)
Roland McGrath542c2c62008-05-20 01:11:56 +0000544{
545 long long offset;
546 int _whence;
547
548 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +0300549 printfd(tcp, tcp->u_arg[0]);
550 tprintf(", ");
Roland McGrath542c2c62008-05-20 01:11:56 +0000551 offset = tcp->ext_arg[1];
552 _whence = tcp->u_arg[2];
553 if (_whence == SEEK_SET)
554 tprintf("%llu, ", offset);
555 else
556 tprintf("%lld, ", offset);
557 printxval(whence, _whence, "SEEK_???");
558 }
559 return RVAL_UDECIMAL;
560}
561#else /* !LINUX_MIPSN32 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000562int
Denys Vlasenko1d632462009-04-14 12:51:00 +0000563sys_lseek(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000564{
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000565 off_t offset;
566 int _whence;
567
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000568 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +0300569 printfd(tcp, tcp->u_arg[0]);
570 tprintf(", ");
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000571 offset = tcp->u_arg[1];
572 _whence = tcp->u_arg[2];
573 if (_whence == SEEK_SET)
574 tprintf("%lu, ", offset);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000575 else
Roland McGrath186c5ac2002-12-15 23:58:23 +0000576 tprintf("%ld, ", offset);
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000577 printxval(whence, _whence, "SEEK_???");
Roland McGrath186c5ac2002-12-15 23:58:23 +0000578 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000579 return RVAL_UDECIMAL;
580}
Roland McGrath542c2c62008-05-20 01:11:56 +0000581#endif /* LINUX_MIPSN32 */
John Hughes5a826b82001-03-07 13:21:24 +0000582#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000583
Michal Ludvig53b320f2002-09-23 13:30:09 +0000584#ifdef LINUX
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000585int
Denys Vlasenko1d632462009-04-14 12:51:00 +0000586sys_llseek(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000587{
Denys Vlasenko1d632462009-04-14 12:51:00 +0000588 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +0300589 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko1d632462009-04-14 12:51:00 +0000590 /*
591 * This one call takes explicitly two 32-bit arguments hi, lo,
592 * rather than one 64-bit argument for which LONG_LONG works
593 * appropriate for the native byte order.
594 */
595 if (tcp->u_arg[4] == SEEK_SET)
Dmitry V. Levin31382132011-03-04 05:08:02 +0300596 tprintf(", %llu, ",
597 ((long long int) tcp->u_arg[1]) << 32 |
598 (unsigned long long) (unsigned) tcp->u_arg[2]);
Denys Vlasenko1d632462009-04-14 12:51:00 +0000599 else
Dmitry V. Levin31382132011-03-04 05:08:02 +0300600 tprintf(", %lld, ",
601 ((long long int) tcp->u_arg[1]) << 32 |
602 (unsigned long long) (unsigned) tcp->u_arg[2]);
Denys Vlasenko1d632462009-04-14 12:51:00 +0000603 }
604 else {
605 long long int off;
606 if (syserror(tcp) || umove(tcp, tcp->u_arg[3], &off) < 0)
607 tprintf("%#lx, ", tcp->u_arg[3]);
608 else
609 tprintf("[%llu], ", off);
610 printxval(whence, tcp->u_arg[4], "SEEK_???");
611 }
612 return 0;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000613}
Roland McGrath186c5ac2002-12-15 23:58:23 +0000614
615int
Denys Vlasenko1d632462009-04-14 12:51:00 +0000616sys_readahead(struct tcb *tcp)
Roland McGrath186c5ac2002-12-15 23:58:23 +0000617{
Denys Vlasenko1d632462009-04-14 12:51:00 +0000618 if (entering(tcp)) {
Andreas Schwabb5600fc2009-11-04 17:08:34 +0100619 int argn;
Dmitry V. Levin31382132011-03-04 05:08:02 +0300620 printfd(tcp, tcp->u_arg[0]);
621 tprintf(", ");
Andreas Schwabb5600fc2009-11-04 17:08:34 +0100622 argn = printllval(tcp, "%lld", 1);
623 tprintf(", %ld", tcp->u_arg[argn]);
Denys Vlasenko1d632462009-04-14 12:51:00 +0000624 }
625 return 0;
Roland McGrath186c5ac2002-12-15 23:58:23 +0000626}
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000627#endif
628
John Hughes70623be2001-03-08 13:59:00 +0000629#if _LFS64_LARGEFILE || HAVE_LONG_LONG_OFF_T
John Hughesbdf48f52001-03-06 15:08:09 +0000630int
Denys Vlasenko1d632462009-04-14 12:51:00 +0000631sys_lseek64(struct tcb *tcp)
John Hughesbdf48f52001-03-06 15:08:09 +0000632{
633 if (entering(tcp)) {
Andreas Schwabb5600fc2009-11-04 17:08:34 +0100634 int argn;
Dmitry V. Levin31382132011-03-04 05:08:02 +0300635 printfd(tcp, tcp->u_arg[0]);
636 tprintf(", ");
John Hughesbdf48f52001-03-06 15:08:09 +0000637 if (tcp->u_arg[3] == SEEK_SET)
Andreas Schwabb5600fc2009-11-04 17:08:34 +0100638 argn = printllval(tcp, "%llu, ", 1);
John Hughesbdf48f52001-03-06 15:08:09 +0000639 else
Andreas Schwabb5600fc2009-11-04 17:08:34 +0100640 argn = printllval(tcp, "%lld, ", 1);
641 printxval(whence, tcp->u_arg[argn], "SEEK_???");
John Hughesbdf48f52001-03-06 15:08:09 +0000642 }
643 return RVAL_LUDECIMAL;
644}
645#endif
646
John Hughes70623be2001-03-08 13:59:00 +0000647#ifndef HAVE_LONG_LONG_OFF_T
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000648int
Denys Vlasenko1d632462009-04-14 12:51:00 +0000649sys_truncate(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000650{
651 if (entering(tcp)) {
652 printpath(tcp, tcp->u_arg[0]);
653 tprintf(", %lu", tcp->u_arg[1]);
654 }
655 return 0;
656}
John Hughes5a826b82001-03-07 13:21:24 +0000657#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000658
John Hughes70623be2001-03-08 13:59:00 +0000659#if _LFS64_LARGEFILE || HAVE_LONG_LONG_OFF_T
John Hughes96f51472001-03-06 16:50:41 +0000660int
Denys Vlasenko1d632462009-04-14 12:51:00 +0000661sys_truncate64(struct tcb *tcp)
John Hughes96f51472001-03-06 16:50:41 +0000662{
663 if (entering(tcp)) {
664 printpath(tcp, tcp->u_arg[0]);
Andreas Schwabb5600fc2009-11-04 17:08:34 +0100665 printllval(tcp, ", %llu", 1);
John Hughes96f51472001-03-06 16:50:41 +0000666 }
667 return 0;
668}
669#endif
670
John Hughes70623be2001-03-08 13:59:00 +0000671#ifndef HAVE_LONG_LONG_OFF_T
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000672int
Denys Vlasenko1d632462009-04-14 12:51:00 +0000673sys_ftruncate(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000674{
675 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +0300676 printfd(tcp, tcp->u_arg[0]);
677 tprintf(", %lu", tcp->u_arg[1]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000678 }
679 return 0;
680}
John Hughes5a826b82001-03-07 13:21:24 +0000681#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000682
John Hughes70623be2001-03-08 13:59:00 +0000683#if _LFS64_LARGEFILE || HAVE_LONG_LONG_OFF_T
John Hughes96f51472001-03-06 16:50:41 +0000684int
Denys Vlasenko1d632462009-04-14 12:51:00 +0000685sys_ftruncate64(struct tcb *tcp)
John Hughes96f51472001-03-06 16:50:41 +0000686{
687 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +0300688 printfd(tcp, tcp->u_arg[0]);
689 tprintf(", ");
Andreas Schwabb5600fc2009-11-04 17:08:34 +0100690 printllval(tcp, "%llu", 1);
John Hughes96f51472001-03-06 16:50:41 +0000691 }
692 return 0;
693}
694#endif
695
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000696/* several stats */
697
Roland McGrathd9f816f2004-09-04 03:39:20 +0000698static const struct xlat modetypes[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000699 { S_IFREG, "S_IFREG" },
700 { S_IFSOCK, "S_IFSOCK" },
701 { S_IFIFO, "S_IFIFO" },
702 { S_IFLNK, "S_IFLNK" },
703 { S_IFDIR, "S_IFDIR" },
704 { S_IFBLK, "S_IFBLK" },
705 { S_IFCHR, "S_IFCHR" },
706 { 0, NULL },
707};
708
Roland McGrathf9c49b22004-10-06 22:11:54 +0000709static const char *
Denys Vlasenko1d632462009-04-14 12:51:00 +0000710sprintmode(int mode)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000711{
712 static char buf[64];
Roland McGrathf9c49b22004-10-06 22:11:54 +0000713 const char *s;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000714
715 if ((mode & S_IFMT) == 0)
716 s = "";
717 else if ((s = xlookup(modetypes, mode & S_IFMT)) == NULL) {
718 sprintf(buf, "%#o", mode);
719 return buf;
720 }
721 sprintf(buf, "%s%s%s%s", s,
722 (mode & S_ISUID) ? "|S_ISUID" : "",
723 (mode & S_ISGID) ? "|S_ISGID" : "",
724 (mode & S_ISVTX) ? "|S_ISVTX" : "");
725 mode &= ~(S_IFMT|S_ISUID|S_ISGID|S_ISVTX);
726 if (mode)
727 sprintf(buf + strlen(buf), "|%#o", mode);
728 s = (*buf == '|') ? buf + 1 : buf;
729 return *s ? s : "0";
730}
731
732static char *
Dmitry V. Levindc7715b2008-04-19 23:45:09 +0000733sprinttime(time_t t)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000734{
735 struct tm *tmp;
736 static char buf[32];
737
738 if (t == 0) {
Dmitry V. Levindc7715b2008-04-19 23:45:09 +0000739 strcpy(buf, "0");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000740 return buf;
741 }
Dmitry V. Levindc7715b2008-04-19 23:45:09 +0000742 if ((tmp = localtime(&t)))
743 snprintf(buf, sizeof buf, "%02d/%02d/%02d-%02d:%02d:%02d",
744 tmp->tm_year + 1900, tmp->tm_mon + 1, tmp->tm_mday,
745 tmp->tm_hour, tmp->tm_min, tmp->tm_sec);
746 else
747 snprintf(buf, sizeof buf, "%lu", (unsigned long) t);
748
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000749 return buf;
750}
751
752#ifdef LINUXSPARC
753typedef struct {
Denys Vlasenkoadedb512008-12-30 18:47:55 +0000754 int tv_sec;
755 int tv_nsec;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000756} timestruct_t;
757
758struct solstat {
Denys Vlasenkoadedb512008-12-30 18:47:55 +0000759 unsigned st_dev;
760 int st_pad1[3]; /* network id */
761 unsigned st_ino;
762 unsigned st_mode;
763 unsigned st_nlink;
764 unsigned st_uid;
765 unsigned st_gid;
766 unsigned st_rdev;
767 int st_pad2[2];
768 int st_size;
769 int st_pad3; /* st_size, off_t expansion */
770 timestruct_t st_atime;
771 timestruct_t st_mtime;
772 timestruct_t st_ctime;
773 int st_blksize;
774 int st_blocks;
775 char st_fstype[16];
776 int st_pad4[8]; /* expansion area */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000777};
778
779static void
Dmitry V. Levinb838b1e2008-04-19 23:47:47 +0000780printstatsol(struct tcb *tcp, long addr)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000781{
782 struct solstat statbuf;
783
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000784 if (umove(tcp, addr, &statbuf) < 0) {
785 tprintf("{...}");
786 return;
787 }
788 if (!abbrev(tcp)) {
789 tprintf("{st_dev=makedev(%lu, %lu), st_ino=%lu, st_mode=%s, ",
790 (unsigned long) ((statbuf.st_dev >> 18) & 0x3fff),
791 (unsigned long) (statbuf.st_dev & 0x3ffff),
792 (unsigned long) statbuf.st_ino,
793 sprintmode(statbuf.st_mode));
794 tprintf("st_nlink=%lu, st_uid=%lu, st_gid=%lu, ",
795 (unsigned long) statbuf.st_nlink,
796 (unsigned long) statbuf.st_uid,
797 (unsigned long) statbuf.st_gid);
798 tprintf("st_blksize=%lu, ", (unsigned long) statbuf.st_blksize);
799 tprintf("st_blocks=%lu, ", (unsigned long) statbuf.st_blocks);
800 }
801 else
802 tprintf("{st_mode=%s, ", sprintmode(statbuf.st_mode));
803 switch (statbuf.st_mode & S_IFMT) {
804 case S_IFCHR: case S_IFBLK:
805 tprintf("st_rdev=makedev(%lu, %lu), ",
806 (unsigned long) ((statbuf.st_rdev >> 18) & 0x3fff),
807 (unsigned long) (statbuf.st_rdev & 0x3ffff));
808 break;
809 default:
810 tprintf("st_size=%u, ", statbuf.st_size);
811 break;
812 }
813 if (!abbrev(tcp)) {
Dmitry V. Levinb838b1e2008-04-19 23:47:47 +0000814 tprintf("st_atime=%s, ", sprinttime(statbuf.st_atime.tv_sec));
815 tprintf("st_mtime=%s, ", sprinttime(statbuf.st_mtime.tv_sec));
816 tprintf("st_ctime=%s}", sprinttime(statbuf.st_ctime.tv_sec));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000817 }
818 else
819 tprintf("...}");
820}
Roland McGrath6d1a65c2004-07-12 07:44:08 +0000821
822#if defined (SPARC64)
823static void
Denys Vlasenko1d632462009-04-14 12:51:00 +0000824printstat_sparc64(struct tcb *tcp, long addr)
Roland McGrath6d1a65c2004-07-12 07:44:08 +0000825{
826 struct stat_sparc64 statbuf;
827
Roland McGrath6d1a65c2004-07-12 07:44:08 +0000828 if (umove(tcp, addr, &statbuf) < 0) {
829 tprintf("{...}");
830 return;
831 }
832
833 if (!abbrev(tcp)) {
834 tprintf("{st_dev=makedev(%lu, %lu), st_ino=%lu, st_mode=%s, ",
835 (unsigned long) major(statbuf.st_dev),
836 (unsigned long) minor(statbuf.st_dev),
837 (unsigned long) statbuf.st_ino,
838 sprintmode(statbuf.st_mode));
839 tprintf("st_nlink=%lu, st_uid=%lu, st_gid=%lu, ",
840 (unsigned long) statbuf.st_nlink,
841 (unsigned long) statbuf.st_uid,
842 (unsigned long) statbuf.st_gid);
843 tprintf("st_blksize=%lu, ",
844 (unsigned long) statbuf.st_blksize);
845 tprintf("st_blocks=%lu, ",
846 (unsigned long) statbuf.st_blocks);
847 }
848 else
849 tprintf("{st_mode=%s, ", sprintmode(statbuf.st_mode));
850 switch (statbuf.st_mode & S_IFMT) {
851 case S_IFCHR: case S_IFBLK:
852 tprintf("st_rdev=makedev(%lu, %lu), ",
853 (unsigned long) major(statbuf.st_rdev),
854 (unsigned long) minor(statbuf.st_rdev));
855 break;
856 default:
857 tprintf("st_size=%lu, ", statbuf.st_size);
858 break;
859 }
860 if (!abbrev(tcp)) {
861 tprintf("st_atime=%s, ", sprinttime(statbuf.st_atime));
862 tprintf("st_mtime=%s, ", sprinttime(statbuf.st_mtime));
863 tprintf("st_ctime=%s", sprinttime(statbuf.st_ctime));
864 tprintf("}");
865 }
866 else
867 tprintf("...}");
868}
869#endif /* SPARC64 */
Wichert Akkermanb859bea1999-04-18 22:50:50 +0000870#endif /* LINUXSPARC */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000871
Andreas Schwabd69fa492010-07-12 21:39:57 +0200872#if defined LINUX && defined POWERPC64
873struct stat_powerpc32 {
874 unsigned int st_dev;
875 unsigned int st_ino;
876 unsigned int st_mode;
877 unsigned short st_nlink;
878 unsigned int st_uid;
879 unsigned int st_gid;
880 unsigned int st_rdev;
881 unsigned int st_size;
882 unsigned int st_blksize;
883 unsigned int st_blocks;
884 unsigned int st_atime;
885 unsigned int st_atime_nsec;
886 unsigned int st_mtime;
887 unsigned int st_mtime_nsec;
888 unsigned int st_ctime;
889 unsigned int st_ctime_nsec;
890 unsigned int __unused4;
891 unsigned int __unused5;
892};
893
894static void
895printstat_powerpc32(struct tcb *tcp, long addr)
896{
897 struct stat_powerpc32 statbuf;
898
899 if (umove(tcp, addr, &statbuf) < 0) {
900 tprintf("{...}");
901 return;
902 }
903
904 if (!abbrev(tcp)) {
905 tprintf("{st_dev=makedev(%u, %u), st_ino=%u, st_mode=%s, ",
906 major(statbuf.st_dev), minor(statbuf.st_dev),
907 statbuf.st_ino,
908 sprintmode(statbuf.st_mode));
909 tprintf("st_nlink=%u, st_uid=%u, st_gid=%u, ",
910 statbuf.st_nlink, statbuf.st_uid, statbuf.st_gid);
911 tprintf("st_blksize=%u, ", statbuf.st_blksize);
912 tprintf("st_blocks=%u, ", statbuf.st_blocks);
913 }
914 else
915 tprintf("{st_mode=%s, ", sprintmode(statbuf.st_mode));
916 switch (statbuf.st_mode & S_IFMT) {
917 case S_IFCHR: case S_IFBLK:
918 tprintf("st_rdev=makedev(%lu, %lu), ",
919 (unsigned long) major(statbuf.st_rdev),
920 (unsigned long) minor(statbuf.st_rdev));
921 break;
922 default:
923 tprintf("st_size=%u, ", statbuf.st_size);
924 break;
925 }
926 if (!abbrev(tcp)) {
927 tprintf("st_atime=%s, ", sprinttime(statbuf.st_atime));
928 tprintf("st_mtime=%s, ", sprinttime(statbuf.st_mtime));
929 tprintf("st_ctime=%s", sprinttime(statbuf.st_ctime));
930 tprintf("}");
931 }
932 else
933 tprintf("...}");
934}
935#endif /* LINUX && POWERPC64 */
936
Roland McGratha4d48532005-06-08 20:45:28 +0000937static const struct xlat fileflags[] = {
John Hughesc0fc3fd2001-03-08 16:10:40 +0000938#ifdef FREEBSD
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000939 { UF_NODUMP, "UF_NODUMP" },
940 { UF_IMMUTABLE, "UF_IMMUTABLE" },
941 { UF_APPEND, "UF_APPEND" },
942 { UF_OPAQUE, "UF_OPAQUE" },
943 { UF_NOUNLINK, "UF_NOUNLINK" },
944 { SF_ARCHIVED, "SF_ARCHIVED" },
945 { SF_IMMUTABLE, "SF_IMMUTABLE" },
946 { SF_APPEND, "SF_APPEND" },
947 { SF_NOUNLINK, "SF_NOUNLINK" },
John Hughesc0fc3fd2001-03-08 16:10:40 +0000948#elif UNIXWARE >= 2
949#ifdef _S_ISMLD
950 { _S_ISMLD, "_S_ISMLD" },
951#endif
952#ifdef _S_ISMOUNTED
953 { _S_ISMOUNTED, "_S_ISMOUNTED" },
954#endif
955#endif
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000956 { 0, NULL },
957};
958
John Hughesc0fc3fd2001-03-08 16:10:40 +0000959#ifdef FREEBSD
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000960int
Denys Vlasenko1d632462009-04-14 12:51:00 +0000961sys_chflags(struct tcb *tcp)
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000962{
963 if (entering(tcp)) {
964 printpath(tcp, tcp->u_arg[0]);
965 tprintf(", ");
Roland McGrathb2dee132005-06-01 19:02:36 +0000966 printflags(fileflags, tcp->u_arg[1], "UF_???");
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000967 }
968 return 0;
969}
970
971int
Denys Vlasenko1d632462009-04-14 12:51:00 +0000972sys_fchflags(struct tcb *tcp)
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000973{
974 if (entering(tcp)) {
975 tprintf("%ld, ", tcp->u_arg[0]);
Roland McGrathb2dee132005-06-01 19:02:36 +0000976 printflags(fileflags, tcp->u_arg[1], "UF_???");
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000977 }
978 return 0;
979}
980#endif
981
John Hughes70623be2001-03-08 13:59:00 +0000982#ifndef HAVE_LONG_LONG_OFF_T
Wichert Akkerman328c5e71999-04-16 00:21:26 +0000983static void
Denys Vlasenko1d632462009-04-14 12:51:00 +0000984realprintstat(struct tcb *tcp, struct stat *statbuf)
Wichert Akkerman328c5e71999-04-16 00:21:26 +0000985{
Denys Vlasenko1d632462009-04-14 12:51:00 +0000986 if (!abbrev(tcp)) {
987 tprintf("{st_dev=makedev(%lu, %lu), st_ino=%lu, st_mode=%s, ",
988 (unsigned long) major(statbuf->st_dev),
989 (unsigned long) minor(statbuf->st_dev),
990 (unsigned long) statbuf->st_ino,
991 sprintmode(statbuf->st_mode));
992 tprintf("st_nlink=%lu, st_uid=%lu, st_gid=%lu, ",
993 (unsigned long) statbuf->st_nlink,
994 (unsigned long) statbuf->st_uid,
995 (unsigned long) statbuf->st_gid);
Roland McGrath6d2b3492002-12-30 00:51:30 +0000996#ifdef HAVE_STRUCT_STAT_ST_BLKSIZE
Denys Vlasenko1d632462009-04-14 12:51:00 +0000997 tprintf("st_blksize=%lu, ", (unsigned long) statbuf->st_blksize);
998#endif
Roland McGrath6d2b3492002-12-30 00:51:30 +0000999#ifdef HAVE_STRUCT_STAT_ST_BLOCKS
Denys Vlasenko1d632462009-04-14 12:51:00 +00001000 tprintf("st_blocks=%lu, ", (unsigned long) statbuf->st_blocks);
1001#endif
1002 }
1003 else
1004 tprintf("{st_mode=%s, ", sprintmode(statbuf->st_mode));
1005 switch (statbuf->st_mode & S_IFMT) {
1006 case S_IFCHR: case S_IFBLK:
Roland McGrath6d2b3492002-12-30 00:51:30 +00001007#ifdef HAVE_STRUCT_STAT_ST_RDEV
Denys Vlasenko1d632462009-04-14 12:51:00 +00001008 tprintf("st_rdev=makedev(%lu, %lu), ",
1009 (unsigned long) major(statbuf->st_rdev),
1010 (unsigned long) minor(statbuf->st_rdev));
Roland McGrath6d2b3492002-12-30 00:51:30 +00001011#else /* !HAVE_STRUCT_STAT_ST_RDEV */
Denys Vlasenko1d632462009-04-14 12:51:00 +00001012 tprintf("st_size=makedev(%lu, %lu), ",
1013 (unsigned long) major(statbuf->st_size),
1014 (unsigned long) minor(statbuf->st_size));
Roland McGrath6d2b3492002-12-30 00:51:30 +00001015#endif /* !HAVE_STRUCT_STAT_ST_RDEV */
Denys Vlasenko1d632462009-04-14 12:51:00 +00001016 break;
1017 default:
Dmitry V. Levine9a06b72011-02-23 16:16:50 +00001018 tprintf("st_size=%lu, ", (unsigned long) statbuf->st_size);
Denys Vlasenko1d632462009-04-14 12:51:00 +00001019 break;
1020 }
1021 if (!abbrev(tcp)) {
1022 tprintf("st_atime=%s, ", sprinttime(statbuf->st_atime));
1023 tprintf("st_mtime=%s, ", sprinttime(statbuf->st_mtime));
1024 tprintf("st_ctime=%s", sprinttime(statbuf->st_ctime));
Roland McGrath6d2b3492002-12-30 00:51:30 +00001025#if HAVE_STRUCT_STAT_ST_FLAGS
John Hughesc0fc3fd2001-03-08 16:10:40 +00001026 tprintf(", st_flags=");
Roland McGrathb2dee132005-06-01 19:02:36 +00001027 printflags(fileflags, statbuf->st_flags, "UF_???");
John Hughesc0fc3fd2001-03-08 16:10:40 +00001028#endif
Roland McGrath6d2b3492002-12-30 00:51:30 +00001029#if HAVE_STRUCT_STAT_ST_ACLCNT
John Hughesc0fc3fd2001-03-08 16:10:40 +00001030 tprintf(", st_aclcnt=%d", statbuf->st_aclcnt);
1031#endif
Roland McGrath6d2b3492002-12-30 00:51:30 +00001032#if HAVE_STRUCT_STAT_ST_LEVEL
John Hughesc0fc3fd2001-03-08 16:10:40 +00001033 tprintf(", st_level=%ld", statbuf->st_level);
1034#endif
Roland McGrath6d2b3492002-12-30 00:51:30 +00001035#if HAVE_STRUCT_STAT_ST_FSTYPE
John Hughesc0fc3fd2001-03-08 16:10:40 +00001036 tprintf(", st_fstype=%.*s",
1037 (int) sizeof statbuf->st_fstype, statbuf->st_fstype);
1038#endif
Roland McGrath6d2b3492002-12-30 00:51:30 +00001039#if HAVE_STRUCT_STAT_ST_GEN
John Hughesc0fc3fd2001-03-08 16:10:40 +00001040 tprintf(", st_gen=%u", statbuf->st_gen);
1041#endif
1042 tprintf("}");
Denys Vlasenko1d632462009-04-14 12:51:00 +00001043 }
1044 else
1045 tprintf("...}");
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001046}
1047
Nate Sammons771a6ff1999-04-05 22:39:31 +00001048
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001049static void
Denys Vlasenko1d632462009-04-14 12:51:00 +00001050printstat(struct tcb *tcp, long addr)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001051{
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001052 struct stat statbuf;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001053
Denys Vlasenko4e718b52009-04-20 18:30:13 +00001054 if (!addr) {
1055 tprintf("NULL");
1056 return;
1057 }
1058 if (syserror(tcp) || !verbose(tcp)) {
1059 tprintf("%#lx", addr);
1060 return;
1061 }
1062
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001063#ifdef LINUXSPARC
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +00001064 if (current_personality == 1) {
1065 printstatsol(tcp, addr);
1066 return;
1067 }
Roland McGrath6d1a65c2004-07-12 07:44:08 +00001068#ifdef SPARC64
1069 else if (current_personality == 2) {
1070 printstat_sparc64(tcp, addr);
1071 return;
1072 }
1073#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001074#endif /* LINUXSPARC */
1075
Andreas Schwabd69fa492010-07-12 21:39:57 +02001076#if defined LINUX && defined POWERPC64
1077 if (current_personality == 1) {
1078 printstat_powerpc32(tcp, addr);
1079 return;
1080 }
1081#endif
1082
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001083 if (umove(tcp, addr, &statbuf) < 0) {
1084 tprintf("{...}");
1085 return;
1086 }
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001087
1088 realprintstat(tcp, &statbuf);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001089}
John Hughes70623be2001-03-08 13:59:00 +00001090#endif /* !HAVE_LONG_LONG_OFF_T */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001091
Roland McGrathe6d0f712007-08-07 01:22:49 +00001092#if !defined HAVE_STAT64 && defined LINUX && defined X86_64
1093/*
1094 * Linux x86_64 has unified `struct stat' but its i386 biarch needs
1095 * `struct stat64'. Its <asm-i386/stat.h> definition expects 32-bit `long'.
1096 * <linux/include/asm-x86_64/ia32.h> is not in the public includes set.
1097 * __GNUC__ is needed for the required __attribute__ below.
1098 */
1099struct stat64 {
1100 unsigned long long st_dev;
1101 unsigned char __pad0[4];
1102 unsigned int __st_ino;
1103 unsigned int st_mode;
1104 unsigned int st_nlink;
1105 unsigned int st_uid;
1106 unsigned int st_gid;
1107 unsigned long long st_rdev;
1108 unsigned char __pad3[4];
1109 long long st_size;
1110 unsigned int st_blksize;
1111 unsigned long long st_blocks;
1112 unsigned int st_atime;
1113 unsigned int st_atime_nsec;
1114 unsigned int st_mtime;
1115 unsigned int st_mtime_nsec;
1116 unsigned int st_ctime;
1117 unsigned int st_ctime_nsec;
1118 unsigned long long st_ino;
1119} __attribute__((packed));
1120# define HAVE_STAT64 1
1121# define STAT64_SIZE 96
1122#endif
1123
Wichert Akkermanc7926982000-04-10 22:22:31 +00001124#ifdef HAVE_STAT64
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001125static void
Denys Vlasenko1d632462009-04-14 12:51:00 +00001126printstat64(struct tcb *tcp, long addr)
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001127{
1128 struct stat64 statbuf;
1129
Denys Vlasenko4e718b52009-04-20 18:30:13 +00001130#ifdef STAT64_SIZE
Roland McGrathe6d0f712007-08-07 01:22:49 +00001131 (void) sizeof(char[sizeof statbuf == STAT64_SIZE ? 1 : -1]);
1132#endif
1133
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001134 if (!addr) {
1135 tprintf("NULL");
1136 return;
1137 }
1138 if (syserror(tcp) || !verbose(tcp)) {
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +00001139 tprintf("%#lx", addr);
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001140 return;
1141 }
Denys Vlasenko4e718b52009-04-20 18:30:13 +00001142
1143#ifdef LINUXSPARC
1144 if (current_personality == 1) {
1145 printstatsol(tcp, addr);
1146 return;
1147 }
1148# ifdef SPARC64
1149 else if (current_personality == 2) {
1150 printstat_sparc64(tcp, addr);
1151 return;
1152 }
1153# endif
1154#endif /* LINUXSPARC */
1155
Andreas Schwab61b74352009-10-16 11:37:13 +02001156#if defined LINUX && defined X86_64
1157 if (current_personality == 0) {
1158 printstat(tcp, addr);
1159 return;
1160 }
1161#endif
Dmitry V. Levinff896f72009-10-21 13:43:57 +00001162
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001163 if (umove(tcp, addr, &statbuf) < 0) {
1164 tprintf("{...}");
1165 return;
1166 }
1167
1168 if (!abbrev(tcp)) {
Wichert Akkermand077c452000-08-10 18:16:15 +00001169#ifdef HAVE_LONG_LONG
1170 tprintf("{st_dev=makedev(%lu, %lu), st_ino=%llu, st_mode=%s, ",
1171#else
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001172 tprintf("{st_dev=makedev(%lu, %lu), st_ino=%lu, st_mode=%s, ",
Wichert Akkermand077c452000-08-10 18:16:15 +00001173#endif
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001174 (unsigned long) major(statbuf.st_dev),
1175 (unsigned long) minor(statbuf.st_dev),
Wichert Akkermand077c452000-08-10 18:16:15 +00001176#ifdef HAVE_LONG_LONG
1177 (unsigned long long) statbuf.st_ino,
1178#else
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001179 (unsigned long) statbuf.st_ino,
Wichert Akkermand077c452000-08-10 18:16:15 +00001180#endif
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001181 sprintmode(statbuf.st_mode));
1182 tprintf("st_nlink=%lu, st_uid=%lu, st_gid=%lu, ",
1183 (unsigned long) statbuf.st_nlink,
1184 (unsigned long) statbuf.st_uid,
1185 (unsigned long) statbuf.st_gid);
Roland McGrath6d2b3492002-12-30 00:51:30 +00001186#ifdef HAVE_STRUCT_STAT_ST_BLKSIZE
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001187 tprintf("st_blksize=%lu, ",
1188 (unsigned long) statbuf.st_blksize);
Roland McGrath6d2b3492002-12-30 00:51:30 +00001189#endif /* HAVE_STRUCT_STAT_ST_BLKSIZE */
1190#ifdef HAVE_STRUCT_STAT_ST_BLOCKS
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001191 tprintf("st_blocks=%lu, ", (unsigned long) statbuf.st_blocks);
Roland McGrath6d2b3492002-12-30 00:51:30 +00001192#endif /* HAVE_STRUCT_STAT_ST_BLOCKS */
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001193 }
1194 else
1195 tprintf("{st_mode=%s, ", sprintmode(statbuf.st_mode));
1196 switch (statbuf.st_mode & S_IFMT) {
1197 case S_IFCHR: case S_IFBLK:
Roland McGrath6d2b3492002-12-30 00:51:30 +00001198#ifdef HAVE_STRUCT_STAT_ST_RDEV
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001199 tprintf("st_rdev=makedev(%lu, %lu), ",
1200 (unsigned long) major(statbuf.st_rdev),
1201 (unsigned long) minor(statbuf.st_rdev));
Roland McGrath6d2b3492002-12-30 00:51:30 +00001202#else /* !HAVE_STRUCT_STAT_ST_RDEV */
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001203 tprintf("st_size=makedev(%lu, %lu), ",
1204 (unsigned long) major(statbuf.st_size),
1205 (unsigned long) minor(statbuf.st_size));
Roland McGrath6d2b3492002-12-30 00:51:30 +00001206#endif /* !HAVE_STRUCT_STAT_ST_RDEV */
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001207 break;
1208 default:
Roland McGrathc7bd4d32007-08-07 01:05:19 +00001209#ifdef HAVE_LONG_LONG
1210 tprintf("st_size=%llu, ", (unsigned long long) statbuf.st_size);
1211#else
1212 tprintf("st_size=%lu, ", (unsigned long) statbuf.st_size);
1213#endif
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001214 break;
1215 }
1216 if (!abbrev(tcp)) {
1217 tprintf("st_atime=%s, ", sprinttime(statbuf.st_atime));
1218 tprintf("st_mtime=%s, ", sprinttime(statbuf.st_mtime));
John Hughesc0fc3fd2001-03-08 16:10:40 +00001219 tprintf("st_ctime=%s", sprinttime(statbuf.st_ctime));
Roland McGrath6d2b3492002-12-30 00:51:30 +00001220#if HAVE_STRUCT_STAT_ST_FLAGS
John Hughesc0fc3fd2001-03-08 16:10:40 +00001221 tprintf(", st_flags=");
Roland McGrathb2dee132005-06-01 19:02:36 +00001222 printflags(fileflags, statbuf.st_flags, "UF_???");
John Hughesc0fc3fd2001-03-08 16:10:40 +00001223#endif
Roland McGrath6d2b3492002-12-30 00:51:30 +00001224#if HAVE_STRUCT_STAT_ST_ACLCNT
John Hughesc0fc3fd2001-03-08 16:10:40 +00001225 tprintf(", st_aclcnt=%d", statbuf.st_aclcnt);
1226#endif
Roland McGrath6d2b3492002-12-30 00:51:30 +00001227#if HAVE_STRUCT_STAT_ST_LEVEL
John Hughesc0fc3fd2001-03-08 16:10:40 +00001228 tprintf(", st_level=%ld", statbuf.st_level);
1229#endif
Roland McGrath6d2b3492002-12-30 00:51:30 +00001230#if HAVE_STRUCT_STAT_ST_FSTYPE
John Hughesc0fc3fd2001-03-08 16:10:40 +00001231 tprintf(", st_fstype=%.*s",
1232 (int) sizeof statbuf.st_fstype, statbuf.st_fstype);
1233#endif
Roland McGrath6d2b3492002-12-30 00:51:30 +00001234#if HAVE_STRUCT_STAT_ST_GEN
John Hughesc0fc3fd2001-03-08 16:10:40 +00001235 tprintf(", st_gen=%u", statbuf.st_gen);
1236#endif
1237 tprintf("}");
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001238 }
1239 else
1240 tprintf("...}");
1241}
Wichert Akkermanc7926982000-04-10 22:22:31 +00001242#endif /* HAVE_STAT64 */
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001243
Roland McGrath79db8af2003-06-27 21:20:09 +00001244#if defined(LINUX) && defined(HAVE_STRUCT___OLD_KERNEL_STAT)
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001245static void
Denys Vlasenko1d632462009-04-14 12:51:00 +00001246convertoldstat(const struct __old_kernel_stat *oldbuf, struct stat *newbuf)
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001247{
Denys Vlasenko1d632462009-04-14 12:51:00 +00001248 newbuf->st_dev = oldbuf->st_dev;
1249 newbuf->st_ino = oldbuf->st_ino;
1250 newbuf->st_mode = oldbuf->st_mode;
1251 newbuf->st_nlink = oldbuf->st_nlink;
1252 newbuf->st_uid = oldbuf->st_uid;
1253 newbuf->st_gid = oldbuf->st_gid;
1254 newbuf->st_rdev = oldbuf->st_rdev;
1255 newbuf->st_size = oldbuf->st_size;
1256 newbuf->st_atime = oldbuf->st_atime;
1257 newbuf->st_mtime = oldbuf->st_mtime;
1258 newbuf->st_ctime = oldbuf->st_ctime;
1259 newbuf->st_blksize = 0; /* not supported in old_stat */
1260 newbuf->st_blocks = 0; /* not supported in old_stat */
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001261}
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001262
1263
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001264static void
Denys Vlasenko1d632462009-04-14 12:51:00 +00001265printoldstat(struct tcb *tcp, long addr)
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001266{
Wichert Akkerman25d0c4f1999-04-18 19:35:42 +00001267 struct __old_kernel_stat statbuf;
1268 struct stat newstatbuf;
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001269
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001270 if (!addr) {
1271 tprintf("NULL");
1272 return;
1273 }
1274 if (syserror(tcp) || !verbose(tcp)) {
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +00001275 tprintf("%#lx", addr);
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001276 return;
1277 }
Denys Vlasenko4e718b52009-04-20 18:30:13 +00001278
1279#ifdef LINUXSPARC
1280 if (current_personality == 1) {
1281 printstatsol(tcp, addr);
1282 return;
1283 }
1284#endif /* LINUXSPARC */
1285
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001286 if (umove(tcp, addr, &statbuf) < 0) {
1287 tprintf("{...}");
1288 return;
1289 }
1290
1291 convertoldstat(&statbuf, &newstatbuf);
1292 realprintstat(tcp, &newstatbuf);
1293}
Michal Ludvig10a88d02002-10-07 14:31:00 +00001294#endif /* LINUX && !IA64 && !HPPA && !X86_64 && !S390 && !S390X */
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001295
John Hughes70623be2001-03-08 13:59:00 +00001296#ifndef HAVE_LONG_LONG_OFF_T
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001297int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001298sys_stat(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001299{
1300 if (entering(tcp)) {
1301 printpath(tcp, tcp->u_arg[0]);
1302 tprintf(", ");
1303 } else {
1304 printstat(tcp, tcp->u_arg[1]);
1305 }
1306 return 0;
1307}
John Hughesb8c9f772001-03-07 16:53:07 +00001308#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001309
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001310int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001311sys_stat64(struct tcb *tcp)
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001312{
1313#ifdef HAVE_STAT64
1314 if (entering(tcp)) {
1315 printpath(tcp, tcp->u_arg[0]);
1316 tprintf(", ");
1317 } else {
1318 printstat64(tcp, tcp->u_arg[1]);
1319 }
1320 return 0;
1321#else
1322 return printargs(tcp);
1323#endif
1324}
1325
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001326#ifdef LINUX
1327static const struct xlat fstatatflags[] = {
1328#ifndef AT_SYMLINK_NOFOLLOW
1329# define AT_SYMLINK_NOFOLLOW 0x100
1330#endif
1331 { AT_SYMLINK_NOFOLLOW, "AT_SYMLINK_NOFOLLOW" },
1332 { 0, NULL },
1333};
Roland McGrath6afc5652007-07-24 01:57:11 +00001334#define utimensatflags fstatatflags
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001335
1336int
1337sys_newfstatat(struct tcb *tcp)
1338{
1339 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +03001340 print_dirfd(tcp, tcp->u_arg[0]);
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001341 printpath(tcp, tcp->u_arg[1]);
1342 tprintf(", ");
1343 } else {
Andreas Schwabd69fa492010-07-12 21:39:57 +02001344#ifdef POWERPC64
1345 if (current_personality == 0)
1346 printstat(tcp, tcp->u_arg[2]);
1347 else
1348 printstat64(tcp, tcp->u_arg[2]);
1349#elif defined HAVE_STAT64
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001350 printstat64(tcp, tcp->u_arg[2]);
1351#else
1352 printstat(tcp, tcp->u_arg[2]);
1353#endif
1354 tprintf(", ");
1355 printflags(fstatatflags, tcp->u_arg[3], "AT_???");
1356 }
1357 return 0;
1358}
1359#endif
1360
Roland McGrath79db8af2003-06-27 21:20:09 +00001361#if defined(LINUX) && defined(HAVE_STRUCT___OLD_KERNEL_STAT)
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001362int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001363sys_oldstat(struct tcb *tcp)
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001364{
1365 if (entering(tcp)) {
1366 printpath(tcp, tcp->u_arg[0]);
1367 tprintf(", ");
1368 } else {
1369 printoldstat(tcp, tcp->u_arg[1]);
1370 }
1371 return 0;
1372}
Roland McGrath79db8af2003-06-27 21:20:09 +00001373#endif /* LINUX && HAVE_STRUCT___OLD_KERNEL_STAT */
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001374
John Hughes70623be2001-03-08 13:59:00 +00001375#ifndef HAVE_LONG_LONG_OFF_T
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001376int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001377sys_fstat(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001378{
Dmitry V. Levin31382132011-03-04 05:08:02 +03001379 if (entering(tcp)) {
1380 printfd(tcp, tcp->u_arg[0]);
1381 tprintf(", ");
1382 } else {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001383 printstat(tcp, tcp->u_arg[1]);
1384 }
1385 return 0;
1386}
John Hughesb8c9f772001-03-07 16:53:07 +00001387#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001388
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001389int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001390sys_fstat64(struct tcb *tcp)
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001391{
1392#ifdef HAVE_STAT64
Dmitry V. Levin31382132011-03-04 05:08:02 +03001393 if (entering(tcp)) {
1394 printfd(tcp, tcp->u_arg[0]);
1395 tprintf(", ");
1396 } else {
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001397 printstat64(tcp, tcp->u_arg[1]);
1398 }
1399 return 0;
1400#else
1401 return printargs(tcp);
1402#endif
1403}
1404
Roland McGrath79db8af2003-06-27 21:20:09 +00001405#if defined(LINUX) && defined(HAVE_STRUCT___OLD_KERNEL_STAT)
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001406int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001407sys_oldfstat(struct tcb *tcp)
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001408{
Dmitry V. Levin31382132011-03-04 05:08:02 +03001409 if (entering(tcp)) {
1410 printfd(tcp, tcp->u_arg[0]);
1411 tprintf(", ");
1412 } else {
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001413 printoldstat(tcp, tcp->u_arg[1]);
1414 }
1415 return 0;
1416}
Roland McGrath79db8af2003-06-27 21:20:09 +00001417#endif /* LINUX && HAVE_STRUCT___OLD_KERNEL_STAT */
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001418
John Hughes70623be2001-03-08 13:59:00 +00001419#ifndef HAVE_LONG_LONG_OFF_T
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001420int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001421sys_lstat(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001422{
1423 if (entering(tcp)) {
1424 printpath(tcp, tcp->u_arg[0]);
1425 tprintf(", ");
1426 } else {
1427 printstat(tcp, tcp->u_arg[1]);
1428 }
1429 return 0;
1430}
John Hughesb8c9f772001-03-07 16:53:07 +00001431#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001432
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001433int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001434sys_lstat64(struct tcb *tcp)
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001435{
1436#ifdef HAVE_STAT64
1437 if (entering(tcp)) {
1438 printpath(tcp, tcp->u_arg[0]);
1439 tprintf(", ");
1440 } else {
1441 printstat64(tcp, tcp->u_arg[1]);
1442 }
1443 return 0;
1444#else
1445 return printargs(tcp);
1446#endif
1447}
1448
Roland McGrath79db8af2003-06-27 21:20:09 +00001449#if defined(LINUX) && defined(HAVE_STRUCT___OLD_KERNEL_STAT)
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001450int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001451sys_oldlstat(struct tcb *tcp)
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001452{
1453 if (entering(tcp)) {
1454 printpath(tcp, tcp->u_arg[0]);
1455 tprintf(", ");
1456 } else {
1457 printoldstat(tcp, tcp->u_arg[1]);
1458 }
1459 return 0;
1460}
Roland McGrath79db8af2003-06-27 21:20:09 +00001461#endif /* LINUX && HAVE_STRUCT___OLD_KERNEL_STAT */
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001462
1463
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001464#if defined(SVR4) || defined(LINUXSPARC)
1465
1466int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001467sys_xstat(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001468{
1469 if (entering(tcp)) {
1470 tprintf("%ld, ", tcp->u_arg[0]);
1471 printpath(tcp, tcp->u_arg[1]);
1472 tprintf(", ");
1473 } else {
John Hughes8fe2c982001-03-06 09:45:18 +00001474#ifdef _STAT64_VER
1475 if (tcp->u_arg[0] == _STAT64_VER)
1476 printstat64 (tcp, tcp->u_arg[2]);
1477 else
1478#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001479 printstat(tcp, tcp->u_arg[2]);
1480 }
1481 return 0;
1482}
1483
1484int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001485sys_fxstat(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001486{
1487 if (entering(tcp))
1488 tprintf("%ld, %ld, ", tcp->u_arg[0], tcp->u_arg[1]);
1489 else {
John Hughes8fe2c982001-03-06 09:45:18 +00001490#ifdef _STAT64_VER
1491 if (tcp->u_arg[0] == _STAT64_VER)
1492 printstat64 (tcp, tcp->u_arg[2]);
1493 else
1494#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001495 printstat(tcp, tcp->u_arg[2]);
1496 }
1497 return 0;
1498}
1499
1500int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001501sys_lxstat(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001502{
1503 if (entering(tcp)) {
1504 tprintf("%ld, ", tcp->u_arg[0]);
1505 printpath(tcp, tcp->u_arg[1]);
1506 tprintf(", ");
1507 } else {
John Hughes8fe2c982001-03-06 09:45:18 +00001508#ifdef _STAT64_VER
1509 if (tcp->u_arg[0] == _STAT64_VER)
1510 printstat64 (tcp, tcp->u_arg[2]);
1511 else
1512#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001513 printstat(tcp, tcp->u_arg[2]);
1514 }
1515 return 0;
1516}
1517
1518int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001519sys_xmknod(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001520{
1521 int mode = tcp->u_arg[2];
1522
1523 if (entering(tcp)) {
1524 tprintf("%ld, ", tcp->u_arg[0]);
1525 printpath(tcp, tcp->u_arg[1]);
1526 tprintf(", %s", sprintmode(mode));
1527 switch (mode & S_IFMT) {
1528 case S_IFCHR: case S_IFBLK:
1529#ifdef LINUXSPARC
1530 tprintf(", makedev(%lu, %lu)",
1531 (unsigned long) ((tcp->u_arg[3] >> 18) & 0x3fff),
1532 (unsigned long) (tcp->u_arg[3] & 0x3ffff));
Roland McGrath186c5ac2002-12-15 23:58:23 +00001533#else
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001534 tprintf(", makedev(%lu, %lu)",
1535 (unsigned long) major(tcp->u_arg[3]),
1536 (unsigned long) minor(tcp->u_arg[3]));
Roland McGrath186c5ac2002-12-15 23:58:23 +00001537#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001538 break;
1539 default:
1540 break;
1541 }
1542 }
1543 return 0;
1544}
1545
Wichert Akkerman8829a551999-06-11 13:18:40 +00001546#ifdef HAVE_SYS_ACL_H
1547
1548#include <sys/acl.h>
1549
Roland McGratha4d48532005-06-08 20:45:28 +00001550static const struct xlat aclcmds[] = {
Wichert Akkermane4aafd41999-11-26 09:54:08 +00001551#ifdef SETACL
Wichert Akkerman8829a551999-06-11 13:18:40 +00001552 { SETACL, "SETACL" },
Wichert Akkermane4aafd41999-11-26 09:54:08 +00001553#endif
1554#ifdef GETACL
Wichert Akkerman8829a551999-06-11 13:18:40 +00001555 { GETACL, "GETACL" },
Wichert Akkermane4aafd41999-11-26 09:54:08 +00001556#endif
1557#ifdef GETACLCNT
Wichert Akkerman8829a551999-06-11 13:18:40 +00001558 { GETACLCNT, "GETACLCNT" },
Wichert Akkermane4aafd41999-11-26 09:54:08 +00001559#endif
1560#ifdef ACL_GET
1561 { ACL_GET, "ACL_GET" },
Roland McGrath186c5ac2002-12-15 23:58:23 +00001562#endif
Wichert Akkermane4aafd41999-11-26 09:54:08 +00001563#ifdef ACL_SET
1564 { ACL_SET, "ACL_SET" },
Roland McGrath186c5ac2002-12-15 23:58:23 +00001565#endif
Wichert Akkermane4aafd41999-11-26 09:54:08 +00001566#ifdef ACL_CNT
1567 { ACL_CNT, "ACL_CNT" },
Roland McGrath186c5ac2002-12-15 23:58:23 +00001568#endif
Wichert Akkerman8829a551999-06-11 13:18:40 +00001569 { 0, NULL },
1570};
1571
1572int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001573sys_acl(struct tcb *tcp)
Wichert Akkerman8829a551999-06-11 13:18:40 +00001574{
1575 if (entering(tcp)) {
1576 printpath(tcp, tcp->u_arg[0]);
1577 tprintf(", ");
1578 printxval(aclcmds, tcp->u_arg[1], "???ACL???");
1579 tprintf(", %ld", tcp->u_arg[2]);
1580 /*
1581 * FIXME - dump out the list of aclent_t's pointed to
1582 * by "tcp->u_arg[3]" if it's not NULL.
1583 */
1584 if (tcp->u_arg[3])
1585 tprintf(", %#lx", tcp->u_arg[3]);
1586 else
1587 tprintf(", NULL");
1588 }
1589 return 0;
1590}
1591
1592
1593int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001594sys_facl(struct tcb *tcp)
Wichert Akkerman8829a551999-06-11 13:18:40 +00001595{
1596 if (entering(tcp)) {
1597 tprintf("%ld, ", tcp->u_arg[0]);
1598 printxval(aclcmds, tcp->u_arg[1], "???ACL???");
1599 tprintf(", %ld", tcp->u_arg[2]);
1600 /*
1601 * FIXME - dump out the list of aclent_t's pointed to
1602 * by "tcp->u_arg[3]" if it's not NULL.
1603 */
1604 if (tcp->u_arg[3])
1605 tprintf(", %#lx", tcp->u_arg[3]);
1606 else
1607 tprintf(", NULL");
1608 }
1609 return 0;
1610}
1611
Wichert Akkermane4aafd41999-11-26 09:54:08 +00001612
Roland McGratha4d48532005-06-08 20:45:28 +00001613static const struct xlat aclipc[] = {
Wichert Akkermane4aafd41999-11-26 09:54:08 +00001614#ifdef IPC_SHM
1615 { IPC_SHM, "IPC_SHM" },
Roland McGrath186c5ac2002-12-15 23:58:23 +00001616#endif
Wichert Akkermane4aafd41999-11-26 09:54:08 +00001617#ifdef IPC_SEM
1618 { IPC_SEM, "IPC_SEM" },
Roland McGrath186c5ac2002-12-15 23:58:23 +00001619#endif
Wichert Akkermane4aafd41999-11-26 09:54:08 +00001620#ifdef IPC_MSG
1621 { IPC_MSG, "IPC_MSG" },
Roland McGrath186c5ac2002-12-15 23:58:23 +00001622#endif
Wichert Akkermane4aafd41999-11-26 09:54:08 +00001623 { 0, NULL },
1624};
1625
1626
1627int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001628sys_aclipc(struct tcb *tcp)
Wichert Akkermane4aafd41999-11-26 09:54:08 +00001629{
1630 if (entering(tcp)) {
1631 printxval(aclipc, tcp->u_arg[0], "???IPC???");
1632 tprintf(", %#lx, ", tcp->u_arg[1]);
1633 printxval(aclcmds, tcp->u_arg[2], "???ACL???");
1634 tprintf(", %ld", tcp->u_arg[3]);
1635 /*
1636 * FIXME - dump out the list of aclent_t's pointed to
1637 * by "tcp->u_arg[4]" if it's not NULL.
1638 */
1639 if (tcp->u_arg[4])
1640 tprintf(", %#lx", tcp->u_arg[4]);
1641 else
1642 tprintf(", NULL");
1643 }
1644 return 0;
1645}
1646
Wichert Akkerman8829a551999-06-11 13:18:40 +00001647#endif /* HAVE_SYS_ACL_H */
1648
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001649#endif /* SVR4 || LINUXSPARC */
1650
Michal Ludvig53b320f2002-09-23 13:30:09 +00001651#ifdef LINUX
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001652
Roland McGrathd9f816f2004-09-04 03:39:20 +00001653static const struct xlat fsmagic[] = {
Wichert Akkerman43a74822000-06-27 17:33:32 +00001654 { 0x73757245, "CODA_SUPER_MAGIC" },
1655 { 0x012ff7b7, "COH_SUPER_MAGIC" },
1656 { 0x1373, "DEVFS_SUPER_MAGIC" },
1657 { 0x1cd1, "DEVPTS_SUPER_MAGIC" },
1658 { 0x414A53, "EFS_SUPER_MAGIC" },
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001659 { 0xef51, "EXT2_OLD_SUPER_MAGIC" },
1660 { 0xef53, "EXT2_SUPER_MAGIC" },
1661 { 0x137d, "EXT_SUPER_MAGIC" },
Wichert Akkerman43a74822000-06-27 17:33:32 +00001662 { 0xf995e849, "HPFS_SUPER_MAGIC" },
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001663 { 0x9660, "ISOFS_SUPER_MAGIC" },
1664 { 0x137f, "MINIX_SUPER_MAGIC" },
1665 { 0x138f, "MINIX_SUPER_MAGIC2" },
Wichert Akkerman2e2553a1999-05-09 00:29:58 +00001666 { 0x2468, "MINIX2_SUPER_MAGIC" },
1667 { 0x2478, "MINIX2_SUPER_MAGIC2" },
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001668 { 0x4d44, "MSDOS_SUPER_MAGIC" },
Wichert Akkerman43a74822000-06-27 17:33:32 +00001669 { 0x564c, "NCP_SUPER_MAGIC" },
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001670 { 0x6969, "NFS_SUPER_MAGIC" },
1671 { 0x9fa0, "PROC_SUPER_MAGIC" },
Wichert Akkerman43a74822000-06-27 17:33:32 +00001672 { 0x002f, "QNX4_SUPER_MAGIC" },
1673 { 0x52654973, "REISERFS_SUPER_MAGIC" },
1674 { 0x02011994, "SHMFS_SUPER_MAGIC" },
1675 { 0x517b, "SMB_SUPER_MAGIC" },
1676 { 0x012ff7b6, "SYSV2_SUPER_MAGIC" },
1677 { 0x012ff7b5, "SYSV4_SUPER_MAGIC" },
1678 { 0x00011954, "UFS_MAGIC" },
1679 { 0x54190100, "UFS_CIGAM" },
1680 { 0x012ff7b4, "XENIX_SUPER_MAGIC" },
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001681 { 0x012fd16d, "XIAFS_SUPER_MAGIC" },
Roland McGrathc767ad82004-01-13 10:13:45 +00001682 { 0x62656572, "SYSFS_MAGIC" },
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001683 { 0, NULL },
1684};
1685
Michal Ludvig53b320f2002-09-23 13:30:09 +00001686#endif /* LINUX */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001687
1688#ifndef SVR4
1689
Roland McGrathf9c49b22004-10-06 22:11:54 +00001690static const char *
Denys Vlasenko1d632462009-04-14 12:51:00 +00001691sprintfstype(int magic)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001692{
1693 static char buf[32];
Michal Ludvig53b320f2002-09-23 13:30:09 +00001694#ifdef LINUX
Roland McGrathf9c49b22004-10-06 22:11:54 +00001695 const char *s;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001696
1697 s = xlookup(fsmagic, magic);
1698 if (s) {
1699 sprintf(buf, "\"%s\"", s);
1700 return buf;
1701 }
Michal Ludvig53b320f2002-09-23 13:30:09 +00001702#endif /* LINUX */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001703 sprintf(buf, "%#x", magic);
1704 return buf;
1705}
1706
1707static void
Denys Vlasenko1d632462009-04-14 12:51:00 +00001708printstatfs(struct tcb *tcp, long addr)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001709{
1710 struct statfs statbuf;
1711
1712 if (syserror(tcp) || !verbose(tcp)) {
1713 tprintf("%#lx", addr);
1714 return;
1715 }
1716 if (umove(tcp, addr, &statbuf) < 0) {
1717 tprintf("{...}");
1718 return;
1719 }
1720#ifdef ALPHA
1721
1722 tprintf("{f_type=%s, f_fbsize=%u, f_blocks=%u, f_bfree=%u, ",
1723 sprintfstype(statbuf.f_type),
1724 statbuf.f_bsize, statbuf.f_blocks, statbuf.f_bfree);
Roland McGrathab147c52003-07-17 09:03:02 +00001725 tprintf("f_bavail=%u, f_files=%u, f_ffree=%u, f_fsid={%d, %d}, f_namelen=%u",
1726 statbuf.f_bavail,statbuf.f_files, statbuf.f_ffree,
1727 statbuf.f_fsid.__val[0], statbuf.f_fsid.__val[1],
1728 statbuf.f_namelen);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001729#else /* !ALPHA */
1730 tprintf("{f_type=%s, f_bsize=%lu, f_blocks=%lu, f_bfree=%lu, ",
1731 sprintfstype(statbuf.f_type),
Nate Sammons5c74d201999-04-06 01:37:51 +00001732 (unsigned long)statbuf.f_bsize,
1733 (unsigned long)statbuf.f_blocks,
1734 (unsigned long)statbuf.f_bfree);
Roland McGrathab147c52003-07-17 09:03:02 +00001735 tprintf("f_bavail=%lu, f_files=%lu, f_ffree=%lu, f_fsid={%d, %d}",
1736 (unsigned long)statbuf.f_bavail,
Nate Sammons5c74d201999-04-06 01:37:51 +00001737 (unsigned long)statbuf.f_files,
Roland McGrathab147c52003-07-17 09:03:02 +00001738 (unsigned long)statbuf.f_ffree,
1739 statbuf.f_fsid.__val[0], statbuf.f_fsid.__val[1]);
Michal Ludvig53b320f2002-09-23 13:30:09 +00001740#ifdef LINUX
Wichert Akkerman2e2553a1999-05-09 00:29:58 +00001741 tprintf(", f_namelen=%lu", (unsigned long)statbuf.f_namelen);
Michal Ludvig53b320f2002-09-23 13:30:09 +00001742#endif /* LINUX */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001743#endif /* !ALPHA */
Roland McGrathab147c52003-07-17 09:03:02 +00001744#ifdef _STATFS_F_FRSIZE
1745 tprintf(", f_frsize=%lu", (unsigned long)statbuf.f_frsize);
1746#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001747 tprintf("}");
1748}
1749
1750int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001751sys_statfs(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001752{
1753 if (entering(tcp)) {
1754 printpath(tcp, tcp->u_arg[0]);
1755 tprintf(", ");
1756 } else {
1757 printstatfs(tcp, tcp->u_arg[1]);
1758 }
1759 return 0;
1760}
1761
1762int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001763sys_fstatfs(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001764{
1765 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +03001766 printfd(tcp, tcp->u_arg[0]);
1767 tprintf(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001768 } else {
1769 printstatfs(tcp, tcp->u_arg[1]);
1770 }
1771 return 0;
1772}
1773
Bernhard Reutner-Fischer9906e6d2009-10-14 16:33:58 +02001774#if defined LINUX && defined HAVE_STATFS64
Roland McGrathab147c52003-07-17 09:03:02 +00001775static void
Denys Vlasenko1d632462009-04-14 12:51:00 +00001776printstatfs64(struct tcb *tcp, long addr)
Roland McGrathab147c52003-07-17 09:03:02 +00001777{
1778 struct statfs64 statbuf;
1779
1780 if (syserror(tcp) || !verbose(tcp)) {
1781 tprintf("%#lx", addr);
1782 return;
1783 }
1784 if (umove(tcp, addr, &statbuf) < 0) {
1785 tprintf("{...}");
1786 return;
1787 }
Roland McGrath08738432005-06-03 02:40:39 +00001788 tprintf("{f_type=%s, f_bsize=%llu, f_blocks=%llu, f_bfree=%llu, ",
Roland McGrathab147c52003-07-17 09:03:02 +00001789 sprintfstype(statbuf.f_type),
Roland McGrath08738432005-06-03 02:40:39 +00001790 (unsigned long long)statbuf.f_bsize,
1791 (unsigned long long)statbuf.f_blocks,
1792 (unsigned long long)statbuf.f_bfree);
1793 tprintf("f_bavail=%llu, f_files=%llu, f_ffree=%llu, f_fsid={%d, %d}",
1794 (unsigned long long)statbuf.f_bavail,
1795 (unsigned long long)statbuf.f_files,
1796 (unsigned long long)statbuf.f_ffree,
Roland McGrathab147c52003-07-17 09:03:02 +00001797 statbuf.f_fsid.__val[0], statbuf.f_fsid.__val[1]);
1798 tprintf(", f_namelen=%lu", (unsigned long)statbuf.f_namelen);
Roland McGrathab147c52003-07-17 09:03:02 +00001799#ifdef _STATFS_F_FRSIZE
Roland McGrath08738432005-06-03 02:40:39 +00001800 tprintf(", f_frsize=%llu", (unsigned long long)statbuf.f_frsize);
Roland McGrathab147c52003-07-17 09:03:02 +00001801#endif
1802 tprintf("}");
1803}
1804
1805int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001806sys_statfs64(struct tcb *tcp)
Roland McGrathab147c52003-07-17 09:03:02 +00001807{
1808 if (entering(tcp)) {
1809 printpath(tcp, tcp->u_arg[0]);
1810 tprintf(", %lu, ", tcp->u_arg[1]);
1811 } else {
1812 if (tcp->u_arg[1] == sizeof (struct statfs64))
1813 printstatfs64(tcp, tcp->u_arg[2]);
1814 else
1815 tprintf("{???}");
1816 }
1817 return 0;
1818}
1819
1820int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001821sys_fstatfs64(struct tcb *tcp)
Roland McGrathab147c52003-07-17 09:03:02 +00001822{
1823 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +03001824 printfd(tcp, tcp->u_arg[0]);
1825 tprintf(", %lu, ", tcp->u_arg[1]);
Roland McGrathab147c52003-07-17 09:03:02 +00001826 } else {
1827 if (tcp->u_arg[1] == sizeof (struct statfs64))
1828 printstatfs64(tcp, tcp->u_arg[2]);
1829 else
1830 tprintf("{???}");
1831 }
1832 return 0;
1833}
1834#endif
1835
Michal Ludvig53b320f2002-09-23 13:30:09 +00001836#if defined(LINUX) && defined(__alpha)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001837
1838int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001839osf_statfs(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001840{
1841 if (entering(tcp)) {
1842 printpath(tcp, tcp->u_arg[0]);
1843 tprintf(", ");
1844 } else {
1845 printstatfs(tcp, tcp->u_arg[1]);
1846 tprintf(", %lu", tcp->u_arg[2]);
1847 }
1848 return 0;
1849}
1850
1851int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001852osf_fstatfs(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001853{
1854 if (entering(tcp)) {
1855 tprintf("%lu, ", tcp->u_arg[0]);
1856 } else {
1857 printstatfs(tcp, tcp->u_arg[1]);
1858 tprintf(", %lu", tcp->u_arg[2]);
1859 }
1860 return 0;
1861}
Michal Ludvig53b320f2002-09-23 13:30:09 +00001862#endif /* LINUX && __alpha */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001863
1864#endif /* !SVR4 */
1865
1866#ifdef SUNOS4
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001867int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001868sys_ustat(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001869{
1870 struct ustat statbuf;
1871
1872 if (entering(tcp)) {
1873 tprintf("makedev(%lu, %lu), ",
1874 (long) major(tcp->u_arg[0]),
1875 (long) minor(tcp->u_arg[0]));
1876 }
1877 else {
1878 if (syserror(tcp) || !verbose(tcp))
1879 tprintf("%#lx", tcp->u_arg[1]);
1880 else if (umove(tcp, tcp->u_arg[1], &statbuf) < 0)
1881 tprintf("{...}");
1882 else {
1883 tprintf("{f_tfree=%lu, f_tinode=%lu, ",
1884 statbuf.f_tfree, statbuf.f_tinode);
1885 tprintf("f_fname=\"%.*s\", ",
1886 (int) sizeof(statbuf.f_fname),
1887 statbuf.f_fname);
1888 tprintf("f_fpack=\"%.*s\"}",
1889 (int) sizeof(statbuf.f_fpack),
1890 statbuf.f_fpack);
1891 }
1892 }
1893 return 0;
1894}
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001895#endif /* SUNOS4 */
1896
Wichert Akkermanc7926982000-04-10 22:22:31 +00001897int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001898sys_pivotroot(struct tcb *tcp)
Wichert Akkermanc7926982000-04-10 22:22:31 +00001899{
1900 if (entering(tcp)) {
1901 printpath(tcp, tcp->u_arg[0]);
1902 tprintf(", ");
1903 printpath(tcp, tcp->u_arg[1]);
1904 }
1905 return 0;
1906}
1907
1908
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001909/* directory */
1910int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001911sys_chdir(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001912{
1913 if (entering(tcp)) {
1914 printpath(tcp, tcp->u_arg[0]);
1915 }
1916 return 0;
1917}
1918
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001919static int
1920decode_mkdir(struct tcb *tcp, int offset)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001921{
1922 if (entering(tcp)) {
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001923 printpath(tcp, tcp->u_arg[offset]);
1924 tprintf(", %#lo", tcp->u_arg[offset + 1]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001925 }
1926 return 0;
1927}
1928
1929int
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001930sys_mkdir(struct tcb *tcp)
1931{
1932 return decode_mkdir(tcp, 0);
1933}
1934
1935#ifdef LINUX
1936int
1937sys_mkdirat(struct tcb *tcp)
1938{
1939 if (entering(tcp))
Dmitry V. Levin31382132011-03-04 05:08:02 +03001940 print_dirfd(tcp, tcp->u_arg[0]);
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001941 return decode_mkdir(tcp, 1);
1942}
1943#endif
1944
1945int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001946sys_rmdir(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001947{
1948 if (entering(tcp)) {
1949 printpath(tcp, tcp->u_arg[0]);
1950 }
1951 return 0;
1952}
1953
1954int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001955sys_fchdir(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001956{
1957 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +03001958 printfd(tcp, tcp->u_arg[0]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001959 }
1960 return 0;
1961}
1962
1963int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001964sys_chroot(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001965{
1966 if (entering(tcp)) {
1967 printpath(tcp, tcp->u_arg[0]);
1968 }
1969 return 0;
1970}
1971
Dmitry V. Levinb9fe0112006-12-13 16:59:44 +00001972#if defined(SUNOS4) || defined(SVR4)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001973int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001974sys_fchroot(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001975{
1976 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +03001977 printfd(tcp, tcp->u_arg[0]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001978 }
1979 return 0;
1980}
Dmitry V. Levinb9fe0112006-12-13 16:59:44 +00001981#endif /* SUNOS4 || SVR4 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001982
1983int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001984sys_link(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001985{
1986 if (entering(tcp)) {
1987 printpath(tcp, tcp->u_arg[0]);
1988 tprintf(", ");
1989 printpath(tcp, tcp->u_arg[1]);
1990 }
1991 return 0;
1992}
1993
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001994#ifdef LINUX
1995int
1996sys_linkat(struct tcb *tcp)
1997{
1998 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +03001999 print_dirfd(tcp, tcp->u_arg[0]);
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002000 printpath(tcp, tcp->u_arg[1]);
2001 tprintf(", ");
Dmitry V. Levin31382132011-03-04 05:08:02 +03002002 print_dirfd(tcp, tcp->u_arg[2]);
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002003 printpath(tcp, tcp->u_arg[3]);
Dmitry V. Levin31382132011-03-04 05:08:02 +03002004 tprintf(", ");
2005 printfd(tcp, tcp->u_arg[4]);
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002006 }
2007 return 0;
2008}
2009#endif
2010
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002011int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002012sys_unlink(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002013{
2014 if (entering(tcp)) {
2015 printpath(tcp, tcp->u_arg[0]);
2016 }
2017 return 0;
2018}
2019
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002020#ifdef LINUX
2021static const struct xlat unlinkatflags[] = {
2022#ifndef AT_REMOVEDIR
2023# define AT_REMOVEDIR 0x200
2024#endif
2025 { AT_REMOVEDIR, "AT_REMOVEDIR" },
2026 { 0, NULL },
2027};
2028
2029int
2030sys_unlinkat(struct tcb *tcp)
2031{
2032 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +03002033 print_dirfd(tcp, tcp->u_arg[0]);
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002034 printpath(tcp, tcp->u_arg[1]);
2035 tprintf(", ");
2036 printflags(unlinkatflags, tcp->u_arg[2], "AT_???");
2037 }
2038 return 0;
2039}
2040#endif
2041
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002042int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002043sys_symlink(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002044{
2045 if (entering(tcp)) {
2046 printpath(tcp, tcp->u_arg[0]);
2047 tprintf(", ");
2048 printpath(tcp, tcp->u_arg[1]);
2049 }
2050 return 0;
2051}
2052
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002053#ifdef LINUX
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002054int
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002055sys_symlinkat(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002056{
2057 if (entering(tcp)) {
2058 printpath(tcp, tcp->u_arg[0]);
2059 tprintf(", ");
Dmitry V. Levin31382132011-03-04 05:08:02 +03002060 print_dirfd(tcp, tcp->u_arg[1]);
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002061 printpath(tcp, tcp->u_arg[2]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002062 }
2063 return 0;
2064}
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002065#endif
2066
2067static int
2068decode_readlink(struct tcb *tcp, int offset)
2069{
2070 if (entering(tcp)) {
2071 printpath(tcp, tcp->u_arg[offset]);
2072 tprintf(", ");
2073 } else {
2074 if (syserror(tcp))
2075 tprintf("%#lx", tcp->u_arg[offset + 1]);
2076 else
2077 printpathn(tcp, tcp->u_arg[offset + 1], tcp->u_rval);
2078 tprintf(", %lu", tcp->u_arg[offset + 2]);
2079 }
2080 return 0;
2081}
2082
2083int
2084sys_readlink(struct tcb *tcp)
2085{
2086 return decode_readlink(tcp, 0);
2087}
2088
2089#ifdef LINUX
2090int
2091sys_readlinkat(struct tcb *tcp)
2092{
2093 if (entering(tcp))
Dmitry V. Levin31382132011-03-04 05:08:02 +03002094 print_dirfd(tcp, tcp->u_arg[0]);
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002095 return decode_readlink(tcp, 1);
2096}
2097#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002098
2099int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002100sys_rename(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002101{
2102 if (entering(tcp)) {
2103 printpath(tcp, tcp->u_arg[0]);
2104 tprintf(", ");
2105 printpath(tcp, tcp->u_arg[1]);
2106 }
2107 return 0;
2108}
2109
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002110#ifdef LINUX
2111int
2112sys_renameat(struct tcb *tcp)
2113{
2114 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +03002115 print_dirfd(tcp, tcp->u_arg[0]);
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002116 printpath(tcp, tcp->u_arg[1]);
2117 tprintf(", ");
Dmitry V. Levin31382132011-03-04 05:08:02 +03002118 print_dirfd(tcp, tcp->u_arg[2]);
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002119 printpath(tcp, tcp->u_arg[3]);
2120 }
2121 return 0;
2122}
2123#endif
2124
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002125int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002126sys_chown(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002127{
2128 if (entering(tcp)) {
2129 printpath(tcp, tcp->u_arg[0]);
Roland McGrath6bc12202003-11-13 22:32:27 +00002130 printuid(", ", tcp->u_arg[1]);
2131 printuid(", ", tcp->u_arg[2]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002132 }
2133 return 0;
2134}
2135
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002136#ifdef LINUX
2137int
2138sys_fchownat(struct tcb *tcp)
2139{
2140 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +03002141 print_dirfd(tcp, tcp->u_arg[0]);
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002142 printpath(tcp, tcp->u_arg[1]);
2143 printuid(", ", tcp->u_arg[2]);
2144 printuid(", ", tcp->u_arg[3]);
2145 tprintf(", ");
2146 printflags(fstatatflags, tcp->u_arg[4], "AT_???");
2147 }
2148 return 0;
2149}
2150#endif
2151
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002152int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002153sys_fchown(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002154{
2155 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +03002156 printfd(tcp, tcp->u_arg[0]);
Roland McGrath6bc12202003-11-13 22:32:27 +00002157 printuid(", ", tcp->u_arg[1]);
2158 printuid(", ", tcp->u_arg[2]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002159 }
2160 return 0;
2161}
2162
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002163static int
2164decode_chmod(struct tcb *tcp, int offset)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002165{
2166 if (entering(tcp)) {
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002167 printpath(tcp, tcp->u_arg[offset]);
2168 tprintf(", %#lo", tcp->u_arg[offset + 1]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002169 }
2170 return 0;
2171}
2172
2173int
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002174sys_chmod(struct tcb *tcp)
2175{
2176 return decode_chmod(tcp, 0);
2177}
2178
2179#ifdef LINUX
2180int
2181sys_fchmodat(struct tcb *tcp)
2182{
2183 if (entering(tcp))
Dmitry V. Levin31382132011-03-04 05:08:02 +03002184 print_dirfd(tcp, tcp->u_arg[0]);
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002185 return decode_chmod(tcp, 1);
2186}
2187#endif
2188
2189int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002190sys_fchmod(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002191{
2192 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +03002193 printfd(tcp, tcp->u_arg[0]);
2194 tprintf(", %#lo", tcp->u_arg[1]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002195 }
2196 return 0;
2197}
2198
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +00002199#ifdef ALPHA
2200int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002201sys_osf_utimes(struct tcb *tcp)
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +00002202{
Denys Vlasenko1d632462009-04-14 12:51:00 +00002203 if (entering(tcp)) {
2204 printpath(tcp, tcp->u_arg[0]);
2205 tprintf(", ");
2206 printtv_bitness(tcp, tcp->u_arg[1], BITNESS_32, 0);
2207 }
2208 return 0;
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +00002209}
2210#endif
2211
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002212static int
Roland McGrath6afc5652007-07-24 01:57:11 +00002213decode_utimes(struct tcb *tcp, int offset, int special)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002214{
2215 if (entering(tcp)) {
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002216 printpath(tcp, tcp->u_arg[offset]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002217 tprintf(", ");
Roland McGrath6afc5652007-07-24 01:57:11 +00002218 if (tcp->u_arg[offset + 1] == 0)
2219 tprintf("NULL");
2220 else {
2221 tprintf("{");
2222 printtv_bitness(tcp, tcp->u_arg[offset + 1],
2223 BITNESS_CURRENT, special);
2224 tprintf(", ");
Roland McGrathe6d0f712007-08-07 01:22:49 +00002225 printtv_bitness(tcp, tcp->u_arg[offset + 1]
Roland McGrath6afc5652007-07-24 01:57:11 +00002226 + sizeof (struct timeval),
2227 BITNESS_CURRENT, special);
2228 tprintf("}");
2229 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002230 }
2231 return 0;
2232}
2233
2234int
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002235sys_utimes(struct tcb *tcp)
2236{
Roland McGrath6afc5652007-07-24 01:57:11 +00002237 return decode_utimes(tcp, 0, 0);
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002238}
2239
2240#ifdef LINUX
2241int
2242sys_futimesat(struct tcb *tcp)
2243{
2244 if (entering(tcp))
Dmitry V. Levin31382132011-03-04 05:08:02 +03002245 print_dirfd(tcp, tcp->u_arg[0]);
Roland McGrath6afc5652007-07-24 01:57:11 +00002246 return decode_utimes(tcp, 1, 0);
2247}
2248
2249int
2250sys_utimensat(struct tcb *tcp)
2251{
2252 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +03002253 print_dirfd(tcp, tcp->u_arg[0]);
Roland McGrath6afc5652007-07-24 01:57:11 +00002254 decode_utimes(tcp, 1, 1);
2255 tprintf(", ");
2256 printflags(utimensatflags, tcp->u_arg[3], "AT_???");
2257 }
2258 return 0;
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002259}
2260#endif
2261
2262int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002263sys_utime(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002264{
Roland McGrath7e9817c2007-07-05 20:31:58 +00002265 union {
2266 long utl[2];
2267 int uti[2];
2268 } u;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002269
2270 if (entering(tcp)) {
2271 printpath(tcp, tcp->u_arg[0]);
2272 tprintf(", ");
2273 if (!tcp->u_arg[1])
2274 tprintf("NULL");
2275 else if (!verbose(tcp))
2276 tprintf("%#lx", tcp->u_arg[1]);
Roland McGrath7e9817c2007-07-05 20:31:58 +00002277 else if (umoven(tcp, tcp->u_arg[1],
2278 2 * personality_wordsize[current_personality],
2279 (char *) &u) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002280 tprintf("[?, ?]");
Roland McGrath7e9817c2007-07-05 20:31:58 +00002281 else if (personality_wordsize[current_personality]
2282 == sizeof u.utl[0]) {
2283 tprintf("[%s,", sprinttime(u.utl[0]));
2284 tprintf(" %s]", sprinttime(u.utl[1]));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002285 }
Roland McGrath7e9817c2007-07-05 20:31:58 +00002286 else if (personality_wordsize[current_personality]
2287 == sizeof u.uti[0]) {
2288 tprintf("[%s,", sprinttime(u.uti[0]));
2289 tprintf(" %s]", sprinttime(u.uti[1]));
2290 }
2291 else
2292 abort();
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002293 }
2294 return 0;
2295}
2296
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002297static int
2298decode_mknod(struct tcb *tcp, int offset)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002299{
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002300 int mode = tcp->u_arg[offset + 1];
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002301
2302 if (entering(tcp)) {
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002303 printpath(tcp, tcp->u_arg[offset]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002304 tprintf(", %s", sprintmode(mode));
2305 switch (mode & S_IFMT) {
2306 case S_IFCHR: case S_IFBLK:
2307#ifdef LINUXSPARC
2308 if (current_personality == 1)
2309 tprintf(", makedev(%lu, %lu)",
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002310 (unsigned long) ((tcp->u_arg[offset + 2] >> 18) & 0x3fff),
2311 (unsigned long) (tcp->u_arg[offset + 2] & 0x3ffff));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002312 else
Roland McGrath186c5ac2002-12-15 23:58:23 +00002313#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002314 tprintf(", makedev(%lu, %lu)",
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002315 (unsigned long) major(tcp->u_arg[offset + 2]),
2316 (unsigned long) minor(tcp->u_arg[offset + 2]));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002317 break;
2318 default:
2319 break;
2320 }
2321 }
2322 return 0;
2323}
2324
2325int
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002326sys_mknod(struct tcb *tcp)
2327{
2328 return decode_mknod(tcp, 0);
2329}
2330
2331#ifdef LINUX
2332int
2333sys_mknodat(struct tcb *tcp)
2334{
2335 if (entering(tcp))
Dmitry V. Levin31382132011-03-04 05:08:02 +03002336 print_dirfd(tcp, tcp->u_arg[0]);
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002337 return decode_mknod(tcp, 1);
2338}
2339#endif
2340
Dmitry V. Levinb9fe0112006-12-13 16:59:44 +00002341#ifdef FREEBSD
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002342int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002343sys_mkfifo(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002344{
2345 if (entering(tcp)) {
2346 printpath(tcp, tcp->u_arg[0]);
2347 tprintf(", %#lo", tcp->u_arg[1]);
2348 }
2349 return 0;
2350}
Dmitry V. Levinb9fe0112006-12-13 16:59:44 +00002351#endif /* FREEBSD */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002352
2353int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002354sys_fsync(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002355{
2356 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +03002357 printfd(tcp, tcp->u_arg[0]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002358 }
2359 return 0;
2360}
2361
Michal Ludvig53b320f2002-09-23 13:30:09 +00002362#ifdef LINUX
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002363
2364static void
Denys Vlasenko1d632462009-04-14 12:51:00 +00002365printdir(struct tcb *tcp, long addr)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002366{
2367 struct dirent d;
2368
2369 if (!verbose(tcp)) {
2370 tprintf("%#lx", addr);
2371 return;
2372 }
2373 if (umove(tcp, addr, &d) < 0) {
2374 tprintf("{...}");
2375 return;
2376 }
2377 tprintf("{d_ino=%ld, ", (unsigned long) d.d_ino);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002378 tprintf("d_name=");
2379 printpathn(tcp, (long) ((struct dirent *) addr)->d_name, d.d_reclen);
2380 tprintf("}");
2381}
2382
2383int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002384sys_readdir(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002385{
2386 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +03002387 printfd(tcp, tcp->u_arg[0]);
2388 tprintf(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002389 } else {
2390 if (syserror(tcp) || tcp->u_rval == 0 || !verbose(tcp))
2391 tprintf("%#lx", tcp->u_arg[1]);
2392 else
2393 printdir(tcp, tcp->u_arg[1]);
2394 /* Not much point in printing this out, it is always 1. */
2395 if (tcp->u_arg[2] != 1)
2396 tprintf(", %lu", tcp->u_arg[2]);
2397 }
2398 return 0;
2399}
2400
Michal Ludvig53b320f2002-09-23 13:30:09 +00002401#endif /* LINUX */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002402
Roland McGrath40542842004-01-13 09:47:49 +00002403#if defined FREEBSD || defined LINUX
Roland McGratha4d48532005-06-08 20:45:28 +00002404static const struct xlat direnttypes[] = {
Roland McGrath40542842004-01-13 09:47:49 +00002405 { DT_UNKNOWN, "DT_UNKNOWN" },
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00002406 { DT_FIFO, "DT_FIFO" },
2407 { DT_CHR, "DT_CHR" },
2408 { DT_DIR, "DT_DIR" },
2409 { DT_BLK, "DT_BLK" },
2410 { DT_REG, "DT_REG" },
2411 { DT_LNK, "DT_LNK" },
2412 { DT_SOCK, "DT_SOCK" },
2413 { DT_WHT, "DT_WHT" },
2414 { 0, NULL },
2415};
2416
2417#endif
2418
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002419int
Dmitry V. Levin153fbd62008-04-19 23:49:58 +00002420sys_getdents(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002421{
2422 int i, len, dents = 0;
2423 char *buf;
2424
2425 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +03002426 printfd(tcp, tcp->u_arg[0]);
2427 tprintf(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002428 return 0;
2429 }
2430 if (syserror(tcp) || !verbose(tcp)) {
2431 tprintf("%#lx, %lu", tcp->u_arg[1], tcp->u_arg[2]);
2432 return 0;
2433 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002434 len = tcp->u_rval;
Mike Frysinger229738c2009-10-07 20:41:56 -04002435 buf = len ? malloc(len) : NULL;
2436 if (len && !buf) {
Roland McGrath46100d02005-06-01 18:55:42 +00002437 tprintf("%#lx, %lu", tcp->u_arg[1], tcp->u_arg[2]);
2438 fprintf(stderr, "out of memory\n");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002439 return 0;
2440 }
2441 if (umoven(tcp, tcp->u_arg[1], len, buf) < 0) {
Roland McGrath46100d02005-06-01 18:55:42 +00002442 tprintf("%#lx, %lu", tcp->u_arg[1], tcp->u_arg[2]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002443 free(buf);
2444 return 0;
2445 }
2446 if (!abbrev(tcp))
2447 tprintf("{");
2448 for (i = 0; i < len;) {
Wichert Akkerman9524bb91999-05-25 23:11:18 +00002449 struct kernel_dirent *d = (struct kernel_dirent *) &buf[i];
Michal Ludvig53b320f2002-09-23 13:30:09 +00002450#ifdef LINUX
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002451 if (!abbrev(tcp)) {
2452 tprintf("%s{d_ino=%lu, d_off=%lu, ",
2453 i ? " " : "", d->d_ino, d->d_off);
2454 tprintf("d_reclen=%u, d_name=\"%s\"}",
2455 d->d_reclen, d->d_name);
2456 }
Michal Ludvig53b320f2002-09-23 13:30:09 +00002457#endif /* LINUX */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002458#ifdef SVR4
2459 if (!abbrev(tcp)) {
2460 tprintf("%s{d_ino=%lu, d_off=%lu, ",
Roland McGrath186c5ac2002-12-15 23:58:23 +00002461 i ? " " : "",
2462 (unsigned long) d->d_ino,
2463 (unsigned long) d->d_off);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002464 tprintf("d_reclen=%u, d_name=\"%s\"}",
2465 d->d_reclen, d->d_name);
2466 }
2467#endif /* SVR4 */
2468#ifdef SUNOS4
2469 if (!abbrev(tcp)) {
2470 tprintf("%s{d_off=%lu, d_fileno=%lu, d_reclen=%u, ",
2471 i ? " " : "", d->d_off, d->d_fileno,
2472 d->d_reclen);
2473 tprintf("d_namlen=%u, d_name=\"%.*s\"}",
2474 d->d_namlen, d->d_namlen, d->d_name);
2475 }
2476#endif /* SUNOS4 */
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00002477#ifdef FREEBSD
2478 if (!abbrev(tcp)) {
2479 tprintf("%s{d_fileno=%u, d_reclen=%u, d_type=",
2480 i ? " " : "", d->d_fileno, d->d_reclen);
2481 printxval(direnttypes, d->d_type, "DT_???");
2482 tprintf(", d_namlen=%u, d_name=\"%.*s\"}",
2483 d->d_namlen, d->d_namlen, d->d_name);
2484 }
Roland McGrath186c5ac2002-12-15 23:58:23 +00002485#endif /* FREEBSD */
Pavel Machek9a9f10b2000-02-01 16:22:52 +00002486 if (!d->d_reclen) {
2487 tprintf("/* d_reclen == 0, problem here */");
2488 break;
2489 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002490 i += d->d_reclen;
2491 dents++;
2492 }
2493 if (!abbrev(tcp))
2494 tprintf("}");
2495 else
2496 tprintf("/* %u entries */", dents);
2497 tprintf(", %lu", tcp->u_arg[2]);
2498 free(buf);
2499 return 0;
2500}
2501
John Hughesbdf48f52001-03-06 15:08:09 +00002502
2503#if _LFS64_LARGEFILE
2504int
Dmitry V. Levin153fbd62008-04-19 23:49:58 +00002505sys_getdents64(struct tcb *tcp)
John Hughesbdf48f52001-03-06 15:08:09 +00002506{
2507 int i, len, dents = 0;
2508 char *buf;
2509
2510 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +03002511 printfd(tcp, tcp->u_arg[0]);
2512 tprintf(", ");
John Hughesbdf48f52001-03-06 15:08:09 +00002513 return 0;
2514 }
2515 if (syserror(tcp) || !verbose(tcp)) {
2516 tprintf("%#lx, %lu", tcp->u_arg[1], tcp->u_arg[2]);
2517 return 0;
2518 }
2519 len = tcp->u_rval;
Mike Frysinger229738c2009-10-07 20:41:56 -04002520 buf = len ? malloc(len) : NULL;
2521 if (len && !buf) {
Roland McGrath46100d02005-06-01 18:55:42 +00002522 tprintf("%#lx, %lu", tcp->u_arg[1], tcp->u_arg[2]);
2523 fprintf(stderr, "out of memory\n");
John Hughesbdf48f52001-03-06 15:08:09 +00002524 return 0;
2525 }
2526 if (umoven(tcp, tcp->u_arg[1], len, buf) < 0) {
Roland McGrath46100d02005-06-01 18:55:42 +00002527 tprintf("%#lx, %lu", tcp->u_arg[1], tcp->u_arg[2]);
John Hughesbdf48f52001-03-06 15:08:09 +00002528 free(buf);
2529 return 0;
2530 }
2531 if (!abbrev(tcp))
2532 tprintf("{");
2533 for (i = 0; i < len;) {
2534 struct dirent64 *d = (struct dirent64 *) &buf[i];
Michal Ludvig53b320f2002-09-23 13:30:09 +00002535#if defined(LINUX) || defined(SVR4)
John Hughesbdf48f52001-03-06 15:08:09 +00002536 if (!abbrev(tcp)) {
Dmitry V. Levin1f336e52006-10-14 20:20:46 +00002537 tprintf("%s{d_ino=%" PRIu64 ", d_off=%" PRId64 ", ",
Roland McGrath186c5ac2002-12-15 23:58:23 +00002538 i ? " " : "",
Roland McGrath92053242004-01-13 10:16:47 +00002539 d->d_ino,
2540 d->d_off);
Roland McGrath40542842004-01-13 09:47:49 +00002541#ifdef LINUX
2542 tprintf("d_type=");
2543 printxval(direnttypes, d->d_type, "DT_???");
2544 tprintf(", ");
2545#endif
John Hughesbdf48f52001-03-06 15:08:09 +00002546 tprintf("d_reclen=%u, d_name=\"%s\"}",
2547 d->d_reclen, d->d_name);
2548 }
Michal Ludvig53b320f2002-09-23 13:30:09 +00002549#endif /* LINUX || SVR4 */
John Hughesbdf48f52001-03-06 15:08:09 +00002550#ifdef SUNOS4
2551 if (!abbrev(tcp)) {
2552 tprintf("%s{d_off=%lu, d_fileno=%lu, d_reclen=%u, ",
2553 i ? " " : "", d->d_off, d->d_fileno,
2554 d->d_reclen);
2555 tprintf("d_namlen=%u, d_name=\"%.*s\"}",
2556 d->d_namlen, d->d_namlen, d->d_name);
2557 }
2558#endif /* SUNOS4 */
Dmitry V. Levin153fbd62008-04-19 23:49:58 +00002559 if (!d->d_reclen) {
2560 tprintf("/* d_reclen == 0, problem here */");
2561 break;
2562 }
John Hughesbdf48f52001-03-06 15:08:09 +00002563 i += d->d_reclen;
2564 dents++;
2565 }
2566 if (!abbrev(tcp))
2567 tprintf("}");
2568 else
2569 tprintf("/* %u entries */", dents);
2570 tprintf(", %lu", tcp->u_arg[2]);
2571 free(buf);
2572 return 0;
2573}
2574#endif
Roland McGrath186c5ac2002-12-15 23:58:23 +00002575
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00002576#ifdef FREEBSD
2577int
Dmitry V. Levin153fbd62008-04-19 23:49:58 +00002578sys_getdirentries(struct tcb *tcp)
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00002579{
2580 int i, len, dents = 0;
2581 long basep;
2582 char *buf;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002583
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00002584 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +03002585 printfd(tcp, tcp->u_arg[0]);
2586 tprintf(", ");
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00002587 return 0;
2588 }
2589 if (syserror(tcp) || !verbose(tcp)) {
2590 tprintf("%#lx, %lu, %#lx", tcp->u_arg[1], tcp->u_arg[2], tcp->u_arg[3]);
2591 return 0;
2592 }
2593 len = tcp->u_rval;
2594 if ((buf = malloc(len)) == NULL) {
Roland McGrath46100d02005-06-01 18:55:42 +00002595 tprintf("%#lx, %lu, %#lx", tcp->u_arg[1], tcp->u_arg[2], tcp->u_arg[3]);
2596 fprintf(stderr, "out of memory\n");
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00002597 return 0;
2598 }
2599 if (umoven(tcp, tcp->u_arg[1], len, buf) < 0) {
Roland McGrath46100d02005-06-01 18:55:42 +00002600 tprintf("%#lx, %lu, %#lx", tcp->u_arg[1], tcp->u_arg[2], tcp->u_arg[3]);
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00002601 free(buf);
2602 return 0;
2603 }
2604 if (!abbrev(tcp))
2605 tprintf("{");
2606 for (i = 0; i < len;) {
2607 struct kernel_dirent *d = (struct kernel_dirent *) &buf[i];
2608 if (!abbrev(tcp)) {
2609 tprintf("%s{d_fileno=%u, d_reclen=%u, d_type=",
2610 i ? " " : "", d->d_fileno, d->d_reclen);
2611 printxval(direnttypes, d->d_type, "DT_???");
2612 tprintf(", d_namlen=%u, d_name=\"%.*s\"}",
2613 d->d_namlen, d->d_namlen, d->d_name);
2614 }
Dmitry V. Levin153fbd62008-04-19 23:49:58 +00002615 if (!d->d_reclen) {
2616 tprintf("/* d_reclen == 0, problem here */");
2617 break;
2618 }
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00002619 i += d->d_reclen;
2620 dents++;
2621 }
2622 if (!abbrev(tcp))
2623 tprintf("}");
2624 else
2625 tprintf("/* %u entries */", dents);
2626 free(buf);
2627 tprintf(", %lu", tcp->u_arg[2]);
2628 if (umove(tcp, tcp->u_arg[3], &basep) < 0)
2629 tprintf(", %#lx", tcp->u_arg[3]);
2630 else
2631 tprintf(", [%lu]", basep);
2632 return 0;
2633}
2634#endif
2635
Michal Ludvig53b320f2002-09-23 13:30:09 +00002636#ifdef LINUX
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002637int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002638sys_getcwd(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002639{
Denys Vlasenko1d632462009-04-14 12:51:00 +00002640 if (exiting(tcp)) {
2641 if (syserror(tcp))
2642 tprintf("%#lx", tcp->u_arg[0]);
2643 else
2644 printpathn(tcp, tcp->u_arg[0], tcp->u_rval - 1);
2645 tprintf(", %lu", tcp->u_arg[1]);
2646 }
2647 return 0;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002648}
Michal Ludvig53b320f2002-09-23 13:30:09 +00002649#endif /* LINUX */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002650
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00002651#ifdef FREEBSD
2652int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002653sys___getcwd(struct tcb *tcp)
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00002654{
Denys Vlasenko1d632462009-04-14 12:51:00 +00002655 if (exiting(tcp)) {
2656 if (syserror(tcp))
2657 tprintf("%#lx", tcp->u_arg[0]);
2658 else
2659 printpathn(tcp, tcp->u_arg[0], tcp->u_arg[1]);
2660 tprintf(", %lu", tcp->u_arg[1]);
2661 }
2662 return 0;
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00002663}
2664#endif
2665
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002666#ifdef HAVE_SYS_ASYNCH_H
2667
2668int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002669sys_aioread(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002670{
2671 struct aio_result_t res;
2672
2673 if (entering(tcp)) {
2674 tprintf("%lu, ", tcp->u_arg[0]);
2675 } else {
2676 if (syserror(tcp))
2677 tprintf("%#lx", tcp->u_arg[1]);
2678 else
2679 printstr(tcp, tcp->u_arg[1], tcp->u_arg[2]);
2680 tprintf(", %lu, %lu, ", tcp->u_arg[2], tcp->u_arg[3]);
2681 printxval(whence, tcp->u_arg[4], "L_???");
2682 if (syserror(tcp) || tcp->u_arg[5] == 0
2683 || umove(tcp, tcp->u_arg[5], &res) < 0)
2684 tprintf(", %#lx", tcp->u_arg[5]);
2685 else
2686 tprintf(", {aio_return %d aio_errno %d}",
2687 res.aio_return, res.aio_errno);
2688 }
2689 return 0;
2690}
2691
2692int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002693sys_aiowrite(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002694{
2695 struct aio_result_t res;
2696
2697 if (entering(tcp)) {
2698 tprintf("%lu, ", tcp->u_arg[0]);
2699 printstr(tcp, tcp->u_arg[1], tcp->u_arg[2]);
2700 tprintf(", %lu, %lu, ", tcp->u_arg[2], tcp->u_arg[3]);
2701 printxval(whence, tcp->u_arg[4], "L_???");
2702 }
2703 else {
2704 if (tcp->u_arg[5] == 0)
2705 tprintf(", NULL");
2706 else if (syserror(tcp)
2707 || umove(tcp, tcp->u_arg[5], &res) < 0)
2708 tprintf(", %#lx", tcp->u_arg[5]);
2709 else
2710 tprintf(", {aio_return %d aio_errno %d}",
2711 res.aio_return, res.aio_errno);
2712 }
2713 return 0;
2714}
2715
2716int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002717sys_aiowait(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002718{
2719 if (entering(tcp))
2720 printtv(tcp, tcp->u_arg[0]);
2721 return 0;
2722}
2723
2724int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002725sys_aiocancel(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002726{
2727 struct aio_result_t res;
2728
2729 if (exiting(tcp)) {
2730 if (tcp->u_arg[0] == 0)
2731 tprintf("NULL");
2732 else if (syserror(tcp)
2733 || umove(tcp, tcp->u_arg[0], &res) < 0)
2734 tprintf("%#lx", tcp->u_arg[0]);
2735 else
2736 tprintf("{aio_return %d aio_errno %d}",
2737 res.aio_return, res.aio_errno);
2738 }
2739 return 0;
2740}
2741
2742#endif /* HAVE_SYS_ASYNCH_H */
Roland McGrath186c5ac2002-12-15 23:58:23 +00002743
Roland McGratha4d48532005-06-08 20:45:28 +00002744static const struct xlat xattrflags[] = {
Roland McGrath561c7992003-04-02 01:10:44 +00002745#ifdef XATTR_CREATE
Roland McGrath186c5ac2002-12-15 23:58:23 +00002746 { XATTR_CREATE, "XATTR_CREATE" },
2747 { XATTR_REPLACE, "XATTR_REPLACE" },
Roland McGrath561c7992003-04-02 01:10:44 +00002748#endif
Roland McGrath186c5ac2002-12-15 23:58:23 +00002749 { 0, NULL }
2750};
2751
Roland McGrath3292e222004-08-31 06:30:48 +00002752static void
Denys Vlasenko1d632462009-04-14 12:51:00 +00002753print_xattr_val(struct tcb *tcp, int failed,
2754 unsigned long arg,
2755 unsigned long insize,
2756 unsigned long size)
Roland McGrath3292e222004-08-31 06:30:48 +00002757{
Denys Vlasenko1d632462009-04-14 12:51:00 +00002758 if (!failed) {
2759 unsigned long capacity = 4 * size + 1;
2760 unsigned char *buf = (capacity < size) ? NULL : malloc(capacity);
2761 if (buf == NULL || /* probably a bogus size argument */
2762 umoven(tcp, arg, size, (char *) &buf[3 * size]) < 0) {
2763 failed = 1;
Roland McGrath883567c2005-02-02 03:38:32 +00002764 }
Denys Vlasenko1d632462009-04-14 12:51:00 +00002765 else {
2766 unsigned char *out = buf;
2767 unsigned char *in = &buf[3 * size];
2768 size_t i;
2769 for (i = 0; i < size; ++i) {
2770 if (isprint(in[i]))
2771 *out++ = in[i];
2772 else {
2773#define tohex(n) "0123456789abcdef"[n]
2774 *out++ = '\\';
2775 *out++ = 'x';
2776 *out++ = tohex(in[i] / 16);
2777 *out++ = tohex(in[i] % 16);
2778 }
2779 }
2780 /* Don't print terminating NUL if there is one. */
2781 if (i > 0 && in[i - 1] == '\0')
2782 out -= 4;
2783 *out = '\0';
2784 tprintf(", \"%s\", %ld", buf, insize);
2785 }
2786 free(buf);
Roland McGrath883567c2005-02-02 03:38:32 +00002787 }
Denys Vlasenko1d632462009-04-14 12:51:00 +00002788 if (failed)
2789 tprintf(", 0x%lx, %ld", arg, insize);
Roland McGrath3292e222004-08-31 06:30:48 +00002790}
2791
Roland McGrath186c5ac2002-12-15 23:58:23 +00002792int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002793sys_setxattr(struct tcb *tcp)
Roland McGrath186c5ac2002-12-15 23:58:23 +00002794{
Denys Vlasenko1d632462009-04-14 12:51:00 +00002795 if (entering(tcp)) {
2796 printpath(tcp, tcp->u_arg[0]);
2797 tprintf(", ");
2798 printstr(tcp, tcp->u_arg[1], -1);
2799 print_xattr_val(tcp, 0, tcp->u_arg[2], tcp->u_arg[3], tcp->u_arg[3]);
2800 tprintf(", ");
2801 printflags(xattrflags, tcp->u_arg[4], "XATTR_???");
2802 }
2803 return 0;
Roland McGrath186c5ac2002-12-15 23:58:23 +00002804}
2805
2806int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002807sys_fsetxattr(struct tcb *tcp)
Roland McGrath186c5ac2002-12-15 23:58:23 +00002808{
Denys Vlasenko1d632462009-04-14 12:51:00 +00002809 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +03002810 printfd(tcp, tcp->u_arg[0]);
2811 tprintf(", ");
Denys Vlasenko1d632462009-04-14 12:51:00 +00002812 printstr(tcp, tcp->u_arg[1], -1);
2813 print_xattr_val(tcp, 0, tcp->u_arg[2], tcp->u_arg[3], tcp->u_arg[3]);
2814 tprintf(", ");
2815 printflags(xattrflags, tcp->u_arg[4], "XATTR_???");
2816 }
2817 return 0;
Roland McGrath186c5ac2002-12-15 23:58:23 +00002818}
2819
2820int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002821sys_getxattr(struct tcb *tcp)
Roland McGrath186c5ac2002-12-15 23:58:23 +00002822{
Denys Vlasenko1d632462009-04-14 12:51:00 +00002823 if (entering(tcp)) {
2824 printpath(tcp, tcp->u_arg[0]);
2825 tprintf(", ");
2826 printstr(tcp, tcp->u_arg[1], -1);
2827 } else {
2828 print_xattr_val(tcp, syserror(tcp), tcp->u_arg[2], tcp->u_arg[3],
2829 tcp->u_rval);
2830 }
2831 return 0;
Roland McGrath186c5ac2002-12-15 23:58:23 +00002832}
2833
2834int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002835sys_fgetxattr(struct tcb *tcp)
Roland McGrath186c5ac2002-12-15 23:58:23 +00002836{
Denys Vlasenko1d632462009-04-14 12:51:00 +00002837 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +03002838 printfd(tcp, tcp->u_arg[0]);
2839 tprintf(", ");
Denys Vlasenko1d632462009-04-14 12:51:00 +00002840 printstr(tcp, tcp->u_arg[1], -1);
2841 } else {
2842 print_xattr_val(tcp, syserror(tcp), tcp->u_arg[2], tcp->u_arg[3],
2843 tcp->u_rval);
2844 }
2845 return 0;
Roland McGrath186c5ac2002-12-15 23:58:23 +00002846}
2847
2848int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002849sys_listxattr(struct tcb *tcp)
Roland McGrath186c5ac2002-12-15 23:58:23 +00002850{
Denys Vlasenko1d632462009-04-14 12:51:00 +00002851 if (entering(tcp)) {
2852 printpath(tcp, tcp->u_arg[0]);
2853 } else {
2854 /* XXX Print value in format */
2855 tprintf(", %p, %lu", (void *) tcp->u_arg[1], tcp->u_arg[2]);
2856 }
2857 return 0;
Roland McGrath186c5ac2002-12-15 23:58:23 +00002858}
2859
2860int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002861sys_flistxattr(struct tcb *tcp)
Roland McGrath186c5ac2002-12-15 23:58:23 +00002862{
Denys Vlasenko1d632462009-04-14 12:51:00 +00002863 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +03002864 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko1d632462009-04-14 12:51:00 +00002865 } else {
2866 /* XXX Print value in format */
2867 tprintf(", %p, %lu", (void *) tcp->u_arg[1], tcp->u_arg[2]);
2868 }
2869 return 0;
Roland McGrath186c5ac2002-12-15 23:58:23 +00002870}
2871
2872int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002873sys_removexattr(struct tcb *tcp)
Roland McGrath186c5ac2002-12-15 23:58:23 +00002874{
Denys Vlasenko1d632462009-04-14 12:51:00 +00002875 if (entering(tcp)) {
2876 printpath(tcp, tcp->u_arg[0]);
2877 tprintf(", ");
2878 printstr(tcp, tcp->u_arg[1], -1);
2879 }
2880 return 0;
Roland McGrath186c5ac2002-12-15 23:58:23 +00002881}
2882
2883int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002884sys_fremovexattr(struct tcb *tcp)
Roland McGrath186c5ac2002-12-15 23:58:23 +00002885{
Denys Vlasenko1d632462009-04-14 12:51:00 +00002886 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +03002887 printfd(tcp, tcp->u_arg[0]);
2888 tprintf(", ");
Denys Vlasenko1d632462009-04-14 12:51:00 +00002889 printstr(tcp, tcp->u_arg[1], -1);
2890 }
2891 return 0;
Roland McGrath186c5ac2002-12-15 23:58:23 +00002892}
Roland McGrathdf13e8f2004-10-07 18:51:19 +00002893
2894
2895static const struct xlat advise[] = {
2896 { POSIX_FADV_NORMAL, "POSIX_FADV_NORMAL" },
2897 { POSIX_FADV_RANDOM, "POSIX_FADV_RANDOM" },
2898 { POSIX_FADV_SEQUENTIAL, "POSIX_FADV_SEQUENTIAL" },
2899 { POSIX_FADV_WILLNEED, "POSIX_FADV_WILLNEED" },
2900 { POSIX_FADV_DONTNEED, "POSIX_FADV_DONTNEED" },
2901 { POSIX_FADV_NOREUSE, "POSIX_FADV_NOREUSE" },
2902 { 0, NULL }
2903};
2904
2905
Roland McGrathe27ed342004-10-20 02:24:19 +00002906#ifdef LINUX
Roland McGrathdf13e8f2004-10-07 18:51:19 +00002907int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002908sys_fadvise64(struct tcb *tcp)
Roland McGrathdf13e8f2004-10-07 18:51:19 +00002909{
Denys Vlasenko1d632462009-04-14 12:51:00 +00002910 if (entering(tcp)) {
Andreas Schwabb5600fc2009-11-04 17:08:34 +01002911 int argn;
Dmitry V. Levin31382132011-03-04 05:08:02 +03002912 printfd(tcp, tcp->u_arg[0]);
2913 tprintf(", ");
Andreas Schwabb5600fc2009-11-04 17:08:34 +01002914 argn = printllval(tcp, "%lld", 1);
2915 tprintf(", %ld, ", tcp->u_arg[argn++]);
2916 printxval(advise, tcp->u_arg[argn], "POSIX_FADV_???");
Denys Vlasenko1d632462009-04-14 12:51:00 +00002917 }
2918 return 0;
Roland McGrathdf13e8f2004-10-07 18:51:19 +00002919}
2920#endif
2921
2922
2923int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002924sys_fadvise64_64(struct tcb *tcp)
Roland McGrathdf13e8f2004-10-07 18:51:19 +00002925{
Denys Vlasenko1d632462009-04-14 12:51:00 +00002926 if (entering(tcp)) {
Andreas Schwabb5600fc2009-11-04 17:08:34 +01002927 int argn;
Dmitry V. Levin31382132011-03-04 05:08:02 +03002928 printfd(tcp, tcp->u_arg[0]);
2929 tprintf(", ");
Andreas Schwabb5600fc2009-11-04 17:08:34 +01002930#if defined ARM || defined POWERPC
2931 argn = printllval(tcp, "%lld, ", 2);
2932#else
2933 argn = printllval(tcp, "%lld, ", 1);
2934#endif
2935 argn = printllval(tcp, "%lld, ", argn);
2936#if defined ARM || defined POWERPC
Kirill A. Shutemov896db212009-09-19 03:21:33 +03002937 printxval(advise, tcp->u_arg[1], "POSIX_FADV_???");
Roland McGrathdf13e8f2004-10-07 18:51:19 +00002938#else
Andreas Schwabb5600fc2009-11-04 17:08:34 +01002939 printxval(advise, tcp->u_arg[argn], "POSIX_FADV_???");
Roland McGrathdf13e8f2004-10-07 18:51:19 +00002940#endif
Denys Vlasenko1d632462009-04-14 12:51:00 +00002941 }
2942 return 0;
Roland McGrathdf13e8f2004-10-07 18:51:19 +00002943}
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002944
2945#ifdef LINUX
2946static const struct xlat inotify_modes[] = {
Dmitry V. Levind475c062011-03-03 01:02:41 +00002947 { 0x00000001, "IN_ACCESS" },
2948 { 0x00000002, "IN_MODIFY" },
2949 { 0x00000004, "IN_ATTRIB" },
2950 { 0x00000008, "IN_CLOSE_WRITE"},
2951 { 0x00000010, "IN_CLOSE_NOWRITE"},
2952 { 0x00000020, "IN_OPEN" },
2953 { 0x00000040, "IN_MOVED_FROM" },
2954 { 0x00000080, "IN_MOVED_TO" },
2955 { 0x00000100, "IN_CREATE" },
2956 { 0x00000200, "IN_DELETE" },
2957 { 0x00000400, "IN_DELETE_SELF"},
2958 { 0x00000800, "IN_MOVE_SELF" },
2959 { 0x00002000, "IN_UNMOUNT" },
2960 { 0x00004000, "IN_Q_OVERFLOW" },
2961 { 0x00008000, "IN_IGNORED" },
2962 { 0x01000000, "IN_ONLYDIR" },
2963 { 0x02000000, "IN_DONT_FOLLOW"},
2964 { 0x20000000, "IN_MASK_ADD" },
2965 { 0x40000000, "IN_ISDIR" },
2966 { 0x80000000, "IN_ONESHOT" },
2967 { 0, NULL }
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002968};
2969
Sebastian Pipping1e1405a2011-03-03 00:50:55 +01002970static const struct xlat inotify_init_flags[] = {
2971 { 0x00000800, "IN_NONBLOCK" },
2972 { 0x00080000, "IN_CLOEXEC" },
2973 { 0, NULL }
2974};
2975
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002976int
2977sys_inotify_add_watch(struct tcb *tcp)
2978{
2979 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +03002980 printfd(tcp, tcp->u_arg[0]);
2981 tprintf(", ");
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002982 printpath(tcp, tcp->u_arg[1]);
2983 tprintf(", ");
2984 printflags(inotify_modes, tcp->u_arg[2], "IN_???");
2985 }
2986 return 0;
2987}
2988
2989int
2990sys_inotify_rm_watch(struct tcb *tcp)
2991{
2992 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +03002993 printfd(tcp, tcp->u_arg[0]);
2994 tprintf(", %ld", tcp->u_arg[1]);
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002995 }
2996 return 0;
2997}
Roland McGrath96a96612008-05-20 04:56:18 +00002998
2999int
Mark Wielaardbab89402010-03-21 14:41:26 +01003000sys_inotify_init1(struct tcb *tcp)
3001{
3002 if (entering(tcp))
Sebastian Pipping1e1405a2011-03-03 00:50:55 +01003003 printflags(inotify_init_flags, tcp->u_arg[0], "IN_???");
Mark Wielaardbab89402010-03-21 14:41:26 +01003004 return 0;
3005}
3006
3007int
Roland McGrath96a96612008-05-20 04:56:18 +00003008sys_fallocate(struct tcb *tcp)
3009{
3010 if (entering(tcp)) {
Andreas Schwabb5600fc2009-11-04 17:08:34 +01003011 int argn;
Dmitry V. Levin31382132011-03-04 05:08:02 +03003012 printfd(tcp, tcp->u_arg[0]); /* fd */
3013 tprintf(", ");
Roland McGrath96a96612008-05-20 04:56:18 +00003014 tprintf("%#lo, ", tcp->u_arg[1]); /* mode */
Andreas Schwabb5600fc2009-11-04 17:08:34 +01003015 argn = printllval(tcp, "%llu, ", 2); /* offset */
3016 printllval(tcp, "%llu", argn); /* len */
Roland McGrath96a96612008-05-20 04:56:18 +00003017 }
3018 return 0;
3019}
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00003020#endif