blob: 5d5a0feb1935a46d1eabd33c0577431982d9e2ab [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
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200260 { 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
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200264 { O_DIRECTORY, "O_DIRECTORY" },
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +0000265#endif
266#ifdef O_NOFOLLOW
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200267 { O_NOFOLLOW, "O_NOFOLLOW" },
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000268#endif
Roland McGrath1025c3e2005-05-09 07:40:35 +0000269#ifdef O_NOATIME
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200270 { O_NOATIME, "O_NOATIME" },
Roland McGrath1025c3e2005-05-09 07:40:35 +0000271#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, ");
Denys Vlasenko7b609d52011-06-22 14:32:43 +0200338 else {
Dmitry V. Levin31382132011-03-04 05:08:02 +0300339 printfd(tcp, fd);
340 tprintf(", ");
341 }
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000342}
343#endif
344
Dmitry V. Levin9b5b67e2007-01-11 23:19:55 +0000345/*
Denys Vlasenkoeedaac72009-03-10 20:41:58 +0000346 * Pity stpcpy() is not standardized...
347 */
348static char *
349str_append(char *dst, const char *src)
350{
351 while ((*dst = *src++) != '\0')
352 dst++;
353 return dst;
354}
355
356/*
Dmitry V. Levin9b5b67e2007-01-11 23:19:55 +0000357 * low bits of the open(2) flags define access mode,
358 * other bits are real flags.
359 */
Denys Vlasenkoeedaac72009-03-10 20:41:58 +0000360const char *
361sprint_open_modes(mode_t flags)
Dmitry V. Levin9b5b67e2007-01-11 23:19:55 +0000362{
Denys Vlasenkoeedaac72009-03-10 20:41:58 +0000363 static char outstr[1024];
364 char *p;
365 char sep = 0;
366 const char *str;
367 const struct xlat *x;
Dmitry V. Levin9b5b67e2007-01-11 23:19:55 +0000368
Denys Vlasenkoeedaac72009-03-10 20:41:58 +0000369 p = str_append(outstr, "flags ");
370 str = xlookup(open_access_modes, flags & 3);
371 if (str) {
372 p = str_append(p, str);
Dmitry V. Levin9b5b67e2007-01-11 23:19:55 +0000373 flags &= ~3;
374 if (!flags)
Denys Vlasenkoeedaac72009-03-10 20:41:58 +0000375 return outstr;
376 sep = '|';
Dmitry V. Levin9b5b67e2007-01-11 23:19:55 +0000377 }
Denys Vlasenkoeedaac72009-03-10 20:41:58 +0000378
379 for (x = open_mode_flags; x->str; x++) {
380 if ((flags & x->val) == x->val) {
381 if (sep)
382 *p++ = sep;
383 p = str_append(p, x->str);
384 flags &= ~x->val;
385 if (!flags)
386 return outstr;
387 sep = '|';
388 }
389 }
390 /* flags is still nonzero */
391 if (sep)
392 *p++ = sep;
393 sprintf(p, "%#x", flags);
394 return outstr;
395}
396
397void
398tprint_open_modes(mode_t flags)
399{
Dmitry V. Levin4bcd5ef2009-06-01 10:32:27 +0000400 tprintf("%s", sprint_open_modes(flags) + sizeof("flags"));
Dmitry V. Levin9b5b67e2007-01-11 23:19:55 +0000401}
402
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000403static int
404decode_open(struct tcb *tcp, int offset)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000405{
406 if (entering(tcp)) {
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000407 printpath(tcp, tcp->u_arg[offset]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000408 tprintf(", ");
409 /* flags */
Denys Vlasenkoeedaac72009-03-10 20:41:58 +0000410 tprint_open_modes(tcp->u_arg[offset + 1]);
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000411 if (tcp->u_arg[offset + 1] & O_CREAT) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000412 /* mode */
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000413 tprintf(", %#lo", tcp->u_arg[offset + 2]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000414 }
415 }
416 return 0;
417}
418
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000419int
420sys_open(struct tcb *tcp)
421{
422 return decode_open(tcp, 0);
423}
424
425#ifdef LINUX
426int
427sys_openat(struct tcb *tcp)
428{
429 if (entering(tcp))
Dmitry V. Levin31382132011-03-04 05:08:02 +0300430 print_dirfd(tcp, tcp->u_arg[0]);
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000431 return decode_open(tcp, 1);
432}
433#endif
434
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000435#ifdef LINUXSPARC
Roland McGratha4d48532005-06-08 20:45:28 +0000436static const struct xlat openmodessol[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000437 { 0, "O_RDWR" },
438 { 1, "O_RDONLY" },
439 { 2, "O_WRONLY" },
440 { 0x80, "O_NONBLOCK" },
441 { 8, "O_APPEND" },
442 { 0x100, "O_CREAT" },
443 { 0x200, "O_TRUNC" },
444 { 0x400, "O_EXCL" },
445 { 0x800, "O_NOCTTY" },
446 { 0x10, "O_SYNC" },
447 { 0x40, "O_DSYNC" },
448 { 0x8000, "O_RSYNC" },
449 { 4, "O_NDELAY" },
450 { 0x1000, "O_PRIV" },
451 { 0, NULL },
452};
453
454int
Denys Vlasenko1d632462009-04-14 12:51:00 +0000455solaris_open(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000456{
457 if (entering(tcp)) {
458 printpath(tcp, tcp->u_arg[0]);
459 tprintf(", ");
460 /* flags */
Roland McGrathb2dee132005-06-01 19:02:36 +0000461 printflags(openmodessol, tcp->u_arg[1] + 1, "O_???");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000462 if (tcp->u_arg[1] & 0x100) {
463 /* mode */
464 tprintf(", %#lo", tcp->u_arg[2]);
465 }
466 }
467 return 0;
468}
469
470#endif
471
472int
Denys Vlasenko1d632462009-04-14 12:51:00 +0000473sys_creat(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000474{
475 if (entering(tcp)) {
476 printpath(tcp, tcp->u_arg[0]);
477 tprintf(", %#lo", tcp->u_arg[1]);
478 }
479 return 0;
480}
481
Roland McGrathd9f816f2004-09-04 03:39:20 +0000482static const struct xlat access_flags[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000483 { F_OK, "F_OK", },
484 { R_OK, "R_OK" },
485 { W_OK, "W_OK" },
486 { X_OK, "X_OK" },
487#ifdef EFF_ONLY_OK
488 { EFF_ONLY_OK, "EFF_ONLY_OK" },
489#endif
490#ifdef EX_OK
491 { EX_OK, "EX_OK" },
492#endif
493 { 0, NULL },
494};
495
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000496static int
497decode_access(struct tcb *tcp, int offset)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000498{
499 if (entering(tcp)) {
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000500 printpath(tcp, tcp->u_arg[offset]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000501 tprintf(", ");
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000502 printflags(access_flags, tcp->u_arg[offset + 1], "?_OK");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000503 }
504 return 0;
505}
506
507int
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000508sys_access(struct tcb *tcp)
509{
510 return decode_access(tcp, 0);
511}
512
513#ifdef LINUX
514int
515sys_faccessat(struct tcb *tcp)
516{
517 if (entering(tcp))
Dmitry V. Levin31382132011-03-04 05:08:02 +0300518 print_dirfd(tcp, tcp->u_arg[0]);
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000519 return decode_access(tcp, 1);
520}
521#endif
522
523int
Denys Vlasenko1d632462009-04-14 12:51:00 +0000524sys_umask(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000525{
526 if (entering(tcp)) {
527 tprintf("%#lo", tcp->u_arg[0]);
528 }
529 return RVAL_OCTAL;
530}
531
Roland McGrathd9f816f2004-09-04 03:39:20 +0000532static const struct xlat whence[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000533 { SEEK_SET, "SEEK_SET" },
534 { SEEK_CUR, "SEEK_CUR" },
535 { SEEK_END, "SEEK_END" },
536 { 0, NULL },
537};
538
John Hughes70623be2001-03-08 13:59:00 +0000539#ifndef HAVE_LONG_LONG_OFF_T
Roland McGrath542c2c62008-05-20 01:11:56 +0000540#if defined (LINUX_MIPSN32)
541int
Denys Vlasenko1d632462009-04-14 12:51:00 +0000542sys_lseek(struct tcb *tcp)
Roland McGrath542c2c62008-05-20 01:11:56 +0000543{
544 long long offset;
545 int _whence;
546
547 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +0300548 printfd(tcp, tcp->u_arg[0]);
549 tprintf(", ");
Roland McGrath542c2c62008-05-20 01:11:56 +0000550 offset = tcp->ext_arg[1];
551 _whence = tcp->u_arg[2];
552 if (_whence == SEEK_SET)
553 tprintf("%llu, ", offset);
554 else
555 tprintf("%lld, ", offset);
556 printxval(whence, _whence, "SEEK_???");
557 }
558 return RVAL_UDECIMAL;
559}
560#else /* !LINUX_MIPSN32 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000561int
Denys Vlasenko1d632462009-04-14 12:51:00 +0000562sys_lseek(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000563{
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000564 off_t offset;
565 int _whence;
566
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000567 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +0300568 printfd(tcp, tcp->u_arg[0]);
569 tprintf(", ");
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000570 offset = tcp->u_arg[1];
571 _whence = tcp->u_arg[2];
572 if (_whence == SEEK_SET)
573 tprintf("%lu, ", offset);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000574 else
Roland McGrath186c5ac2002-12-15 23:58:23 +0000575 tprintf("%ld, ", offset);
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000576 printxval(whence, _whence, "SEEK_???");
Roland McGrath186c5ac2002-12-15 23:58:23 +0000577 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000578 return RVAL_UDECIMAL;
579}
Roland McGrath542c2c62008-05-20 01:11:56 +0000580#endif /* LINUX_MIPSN32 */
John Hughes5a826b82001-03-07 13:21:24 +0000581#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000582
Michal Ludvig53b320f2002-09-23 13:30:09 +0000583#ifdef LINUX
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000584int
Denys Vlasenko1d632462009-04-14 12:51:00 +0000585sys_llseek(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000586{
Denys Vlasenko1d632462009-04-14 12:51:00 +0000587 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +0300588 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko1d632462009-04-14 12:51:00 +0000589 /*
590 * This one call takes explicitly two 32-bit arguments hi, lo,
591 * rather than one 64-bit argument for which LONG_LONG works
592 * appropriate for the native byte order.
593 */
594 if (tcp->u_arg[4] == SEEK_SET)
Dmitry V. Levin31382132011-03-04 05:08:02 +0300595 tprintf(", %llu, ",
596 ((long long int) tcp->u_arg[1]) << 32 |
597 (unsigned long long) (unsigned) tcp->u_arg[2]);
Denys Vlasenko1d632462009-04-14 12:51:00 +0000598 else
Dmitry V. Levin31382132011-03-04 05:08:02 +0300599 tprintf(", %lld, ",
600 ((long long int) tcp->u_arg[1]) << 32 |
601 (unsigned long long) (unsigned) tcp->u_arg[2]);
Denys Vlasenko1d632462009-04-14 12:51:00 +0000602 }
603 else {
604 long long int off;
605 if (syserror(tcp) || umove(tcp, tcp->u_arg[3], &off) < 0)
606 tprintf("%#lx, ", tcp->u_arg[3]);
607 else
608 tprintf("[%llu], ", off);
609 printxval(whence, tcp->u_arg[4], "SEEK_???");
610 }
611 return 0;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000612}
Roland McGrath186c5ac2002-12-15 23:58:23 +0000613
614int
Denys Vlasenko1d632462009-04-14 12:51:00 +0000615sys_readahead(struct tcb *tcp)
Roland McGrath186c5ac2002-12-15 23:58:23 +0000616{
Denys Vlasenko1d632462009-04-14 12:51:00 +0000617 if (entering(tcp)) {
Andreas Schwabb5600fc2009-11-04 17:08:34 +0100618 int argn;
Dmitry V. Levin31382132011-03-04 05:08:02 +0300619 printfd(tcp, tcp->u_arg[0]);
620 tprintf(", ");
Andreas Schwabb5600fc2009-11-04 17:08:34 +0100621 argn = printllval(tcp, "%lld", 1);
622 tprintf(", %ld", tcp->u_arg[argn]);
Denys Vlasenko1d632462009-04-14 12:51:00 +0000623 }
624 return 0;
Roland McGrath186c5ac2002-12-15 23:58:23 +0000625}
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000626#endif
627
John Hughes70623be2001-03-08 13:59:00 +0000628#if _LFS64_LARGEFILE || HAVE_LONG_LONG_OFF_T
John Hughesbdf48f52001-03-06 15:08:09 +0000629int
Denys Vlasenko1d632462009-04-14 12:51:00 +0000630sys_lseek64(struct tcb *tcp)
John Hughesbdf48f52001-03-06 15:08:09 +0000631{
632 if (entering(tcp)) {
Andreas Schwabb5600fc2009-11-04 17:08:34 +0100633 int argn;
Dmitry V. Levin31382132011-03-04 05:08:02 +0300634 printfd(tcp, tcp->u_arg[0]);
635 tprintf(", ");
John Hughesbdf48f52001-03-06 15:08:09 +0000636 if (tcp->u_arg[3] == SEEK_SET)
Andreas Schwabb5600fc2009-11-04 17:08:34 +0100637 argn = printllval(tcp, "%llu, ", 1);
John Hughesbdf48f52001-03-06 15:08:09 +0000638 else
Andreas Schwabb5600fc2009-11-04 17:08:34 +0100639 argn = printllval(tcp, "%lld, ", 1);
640 printxval(whence, tcp->u_arg[argn], "SEEK_???");
John Hughesbdf48f52001-03-06 15:08:09 +0000641 }
642 return RVAL_LUDECIMAL;
643}
644#endif
645
John Hughes70623be2001-03-08 13:59:00 +0000646#ifndef HAVE_LONG_LONG_OFF_T
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000647int
Denys Vlasenko1d632462009-04-14 12:51:00 +0000648sys_truncate(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000649{
650 if (entering(tcp)) {
651 printpath(tcp, tcp->u_arg[0]);
652 tprintf(", %lu", tcp->u_arg[1]);
653 }
654 return 0;
655}
John Hughes5a826b82001-03-07 13:21:24 +0000656#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000657
John Hughes70623be2001-03-08 13:59:00 +0000658#if _LFS64_LARGEFILE || HAVE_LONG_LONG_OFF_T
John Hughes96f51472001-03-06 16:50:41 +0000659int
Denys Vlasenko1d632462009-04-14 12:51:00 +0000660sys_truncate64(struct tcb *tcp)
John Hughes96f51472001-03-06 16:50:41 +0000661{
662 if (entering(tcp)) {
663 printpath(tcp, tcp->u_arg[0]);
Andreas Schwabb5600fc2009-11-04 17:08:34 +0100664 printllval(tcp, ", %llu", 1);
John Hughes96f51472001-03-06 16:50:41 +0000665 }
666 return 0;
667}
668#endif
669
John Hughes70623be2001-03-08 13:59:00 +0000670#ifndef HAVE_LONG_LONG_OFF_T
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000671int
Denys Vlasenko1d632462009-04-14 12:51:00 +0000672sys_ftruncate(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000673{
674 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +0300675 printfd(tcp, tcp->u_arg[0]);
676 tprintf(", %lu", tcp->u_arg[1]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000677 }
678 return 0;
679}
John Hughes5a826b82001-03-07 13:21:24 +0000680#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000681
John Hughes70623be2001-03-08 13:59:00 +0000682#if _LFS64_LARGEFILE || HAVE_LONG_LONG_OFF_T
John Hughes96f51472001-03-06 16:50:41 +0000683int
Denys Vlasenko1d632462009-04-14 12:51:00 +0000684sys_ftruncate64(struct tcb *tcp)
John Hughes96f51472001-03-06 16:50:41 +0000685{
686 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +0300687 printfd(tcp, tcp->u_arg[0]);
688 tprintf(", ");
Andreas Schwabb5600fc2009-11-04 17:08:34 +0100689 printllval(tcp, "%llu", 1);
John Hughes96f51472001-03-06 16:50:41 +0000690 }
691 return 0;
692}
693#endif
694
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000695/* several stats */
696
Roland McGrathd9f816f2004-09-04 03:39:20 +0000697static const struct xlat modetypes[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000698 { S_IFREG, "S_IFREG" },
699 { S_IFSOCK, "S_IFSOCK" },
700 { S_IFIFO, "S_IFIFO" },
701 { S_IFLNK, "S_IFLNK" },
702 { S_IFDIR, "S_IFDIR" },
703 { S_IFBLK, "S_IFBLK" },
704 { S_IFCHR, "S_IFCHR" },
705 { 0, NULL },
706};
707
Roland McGrathf9c49b22004-10-06 22:11:54 +0000708static const char *
Denys Vlasenko1d632462009-04-14 12:51:00 +0000709sprintmode(int mode)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000710{
711 static char buf[64];
Roland McGrathf9c49b22004-10-06 22:11:54 +0000712 const char *s;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000713
714 if ((mode & S_IFMT) == 0)
715 s = "";
716 else if ((s = xlookup(modetypes, mode & S_IFMT)) == NULL) {
717 sprintf(buf, "%#o", mode);
718 return buf;
719 }
720 sprintf(buf, "%s%s%s%s", s,
721 (mode & S_ISUID) ? "|S_ISUID" : "",
722 (mode & S_ISGID) ? "|S_ISGID" : "",
723 (mode & S_ISVTX) ? "|S_ISVTX" : "");
724 mode &= ~(S_IFMT|S_ISUID|S_ISGID|S_ISVTX);
725 if (mode)
726 sprintf(buf + strlen(buf), "|%#o", mode);
727 s = (*buf == '|') ? buf + 1 : buf;
728 return *s ? s : "0";
729}
730
731static char *
Dmitry V. Levindc7715b2008-04-19 23:45:09 +0000732sprinttime(time_t t)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000733{
734 struct tm *tmp;
735 static char buf[32];
736
737 if (t == 0) {
Dmitry V. Levindc7715b2008-04-19 23:45:09 +0000738 strcpy(buf, "0");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000739 return buf;
740 }
Denys Vlasenko5d645812011-08-20 12:48:18 +0200741 tmp = localtime(&t);
742 if (tmp)
Dmitry V. Levindc7715b2008-04-19 23:45:09 +0000743 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
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200949#ifdef _S_ISMLD
950 { _S_ISMLD, "_S_ISMLD" },
John Hughesc0fc3fd2001-03-08 16:10:40 +0000951#endif
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200952#ifdef _S_ISMOUNTED
953 { _S_ISMOUNTED, "_S_ISMOUNTED" },
John Hughesc0fc3fd2001-03-08 16:10:40 +0000954#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",
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001726 statbuf.f_bavail, statbuf.f_files, statbuf.f_ffree,
Roland McGrathab147c52003-07-17 09:03:02 +00001727 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 {
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001812 if (tcp->u_arg[1] == sizeof(struct statfs64))
Roland McGrathab147c52003-07-17 09:03:02 +00001813 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 {
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001827 if (tcp->u_arg[1] == sizeof(struct statfs64))
Roland McGrathab147c52003-07-17 09:03:02 +00001828 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]
Denys Vlasenkob63256e2011-06-07 12:13:24 +02002226 + sizeof(struct timeval),
Roland McGrath6afc5652007-07-24 01:57:11 +00002227 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[] = {
Denys Vlasenkob63256e2011-06-07 12:13:24 +02002405 { DT_UNKNOWN, "DT_UNKNOWN" },
2406 { 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" },
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00002414 { 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;
Denys Vlasenko5d645812011-08-20 12:48:18 +02002594 buf = malloc(len);
2595 if (buf == NULL) {
Roland McGrath46100d02005-06-01 18:55:42 +00002596 tprintf("%#lx, %lu, %#lx", tcp->u_arg[1], tcp->u_arg[2], tcp->u_arg[3]);
2597 fprintf(stderr, "out of memory\n");
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00002598 return 0;
2599 }
2600 if (umoven(tcp, tcp->u_arg[1], len, buf) < 0) {
Roland McGrath46100d02005-06-01 18:55:42 +00002601 tprintf("%#lx, %lu, %#lx", tcp->u_arg[1], tcp->u_arg[2], tcp->u_arg[3]);
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00002602 free(buf);
2603 return 0;
2604 }
2605 if (!abbrev(tcp))
2606 tprintf("{");
2607 for (i = 0; i < len;) {
2608 struct kernel_dirent *d = (struct kernel_dirent *) &buf[i];
2609 if (!abbrev(tcp)) {
2610 tprintf("%s{d_fileno=%u, d_reclen=%u, d_type=",
2611 i ? " " : "", d->d_fileno, d->d_reclen);
2612 printxval(direnttypes, d->d_type, "DT_???");
2613 tprintf(", d_namlen=%u, d_name=\"%.*s\"}",
2614 d->d_namlen, d->d_namlen, d->d_name);
2615 }
Dmitry V. Levin153fbd62008-04-19 23:49:58 +00002616 if (!d->d_reclen) {
2617 tprintf("/* d_reclen == 0, problem here */");
2618 break;
2619 }
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00002620 i += d->d_reclen;
2621 dents++;
2622 }
2623 if (!abbrev(tcp))
2624 tprintf("}");
2625 else
2626 tprintf("/* %u entries */", dents);
2627 free(buf);
2628 tprintf(", %lu", tcp->u_arg[2]);
2629 if (umove(tcp, tcp->u_arg[3], &basep) < 0)
2630 tprintf(", %#lx", tcp->u_arg[3]);
2631 else
2632 tprintf(", [%lu]", basep);
2633 return 0;
2634}
2635#endif
2636
Michal Ludvig53b320f2002-09-23 13:30:09 +00002637#ifdef LINUX
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002638int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002639sys_getcwd(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002640{
Denys Vlasenko1d632462009-04-14 12:51:00 +00002641 if (exiting(tcp)) {
2642 if (syserror(tcp))
2643 tprintf("%#lx", tcp->u_arg[0]);
2644 else
2645 printpathn(tcp, tcp->u_arg[0], tcp->u_rval - 1);
2646 tprintf(", %lu", tcp->u_arg[1]);
2647 }
2648 return 0;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002649}
Michal Ludvig53b320f2002-09-23 13:30:09 +00002650#endif /* LINUX */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002651
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00002652#ifdef FREEBSD
2653int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002654sys___getcwd(struct tcb *tcp)
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00002655{
Denys Vlasenko1d632462009-04-14 12:51:00 +00002656 if (exiting(tcp)) {
2657 if (syserror(tcp))
2658 tprintf("%#lx", tcp->u_arg[0]);
2659 else
2660 printpathn(tcp, tcp->u_arg[0], tcp->u_arg[1]);
2661 tprintf(", %lu", tcp->u_arg[1]);
2662 }
2663 return 0;
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00002664}
2665#endif
2666
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002667#ifdef HAVE_SYS_ASYNCH_H
2668
2669int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002670sys_aioread(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002671{
2672 struct aio_result_t res;
2673
2674 if (entering(tcp)) {
2675 tprintf("%lu, ", tcp->u_arg[0]);
2676 } else {
2677 if (syserror(tcp))
2678 tprintf("%#lx", tcp->u_arg[1]);
2679 else
2680 printstr(tcp, tcp->u_arg[1], tcp->u_arg[2]);
2681 tprintf(", %lu, %lu, ", tcp->u_arg[2], tcp->u_arg[3]);
2682 printxval(whence, tcp->u_arg[4], "L_???");
2683 if (syserror(tcp) || tcp->u_arg[5] == 0
2684 || umove(tcp, tcp->u_arg[5], &res) < 0)
2685 tprintf(", %#lx", tcp->u_arg[5]);
2686 else
2687 tprintf(", {aio_return %d aio_errno %d}",
2688 res.aio_return, res.aio_errno);
2689 }
2690 return 0;
2691}
2692
2693int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002694sys_aiowrite(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002695{
2696 struct aio_result_t res;
2697
2698 if (entering(tcp)) {
2699 tprintf("%lu, ", tcp->u_arg[0]);
2700 printstr(tcp, tcp->u_arg[1], tcp->u_arg[2]);
2701 tprintf(", %lu, %lu, ", tcp->u_arg[2], tcp->u_arg[3]);
2702 printxval(whence, tcp->u_arg[4], "L_???");
2703 }
2704 else {
2705 if (tcp->u_arg[5] == 0)
2706 tprintf(", NULL");
2707 else if (syserror(tcp)
2708 || umove(tcp, tcp->u_arg[5], &res) < 0)
2709 tprintf(", %#lx", tcp->u_arg[5]);
2710 else
2711 tprintf(", {aio_return %d aio_errno %d}",
2712 res.aio_return, res.aio_errno);
2713 }
2714 return 0;
2715}
2716
2717int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002718sys_aiowait(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002719{
2720 if (entering(tcp))
2721 printtv(tcp, tcp->u_arg[0]);
2722 return 0;
2723}
2724
2725int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002726sys_aiocancel(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002727{
2728 struct aio_result_t res;
2729
2730 if (exiting(tcp)) {
2731 if (tcp->u_arg[0] == 0)
2732 tprintf("NULL");
2733 else if (syserror(tcp)
2734 || umove(tcp, tcp->u_arg[0], &res) < 0)
2735 tprintf("%#lx", tcp->u_arg[0]);
2736 else
2737 tprintf("{aio_return %d aio_errno %d}",
2738 res.aio_return, res.aio_errno);
2739 }
2740 return 0;
2741}
2742
2743#endif /* HAVE_SYS_ASYNCH_H */
Roland McGrath186c5ac2002-12-15 23:58:23 +00002744
Roland McGratha4d48532005-06-08 20:45:28 +00002745static const struct xlat xattrflags[] = {
Roland McGrath561c7992003-04-02 01:10:44 +00002746#ifdef XATTR_CREATE
Roland McGrath186c5ac2002-12-15 23:58:23 +00002747 { XATTR_CREATE, "XATTR_CREATE" },
2748 { XATTR_REPLACE, "XATTR_REPLACE" },
Roland McGrath561c7992003-04-02 01:10:44 +00002749#endif
Roland McGrath186c5ac2002-12-15 23:58:23 +00002750 { 0, NULL }
2751};
2752
Roland McGrath3292e222004-08-31 06:30:48 +00002753static void
Denys Vlasenko1d632462009-04-14 12:51:00 +00002754print_xattr_val(struct tcb *tcp, int failed,
2755 unsigned long arg,
2756 unsigned long insize,
2757 unsigned long size)
Roland McGrath3292e222004-08-31 06:30:48 +00002758{
Denys Vlasenko1d632462009-04-14 12:51:00 +00002759 if (!failed) {
2760 unsigned long capacity = 4 * size + 1;
2761 unsigned char *buf = (capacity < size) ? NULL : malloc(capacity);
2762 if (buf == NULL || /* probably a bogus size argument */
2763 umoven(tcp, arg, size, (char *) &buf[3 * size]) < 0) {
2764 failed = 1;
Roland McGrath883567c2005-02-02 03:38:32 +00002765 }
Denys Vlasenko1d632462009-04-14 12:51:00 +00002766 else {
2767 unsigned char *out = buf;
2768 unsigned char *in = &buf[3 * size];
2769 size_t i;
2770 for (i = 0; i < size; ++i) {
2771 if (isprint(in[i]))
2772 *out++ = in[i];
2773 else {
2774#define tohex(n) "0123456789abcdef"[n]
2775 *out++ = '\\';
2776 *out++ = 'x';
2777 *out++ = tohex(in[i] / 16);
2778 *out++ = tohex(in[i] % 16);
2779 }
2780 }
2781 /* Don't print terminating NUL if there is one. */
2782 if (i > 0 && in[i - 1] == '\0')
2783 out -= 4;
2784 *out = '\0';
2785 tprintf(", \"%s\", %ld", buf, insize);
2786 }
2787 free(buf);
Roland McGrath883567c2005-02-02 03:38:32 +00002788 }
Denys Vlasenko1d632462009-04-14 12:51:00 +00002789 if (failed)
2790 tprintf(", 0x%lx, %ld", arg, insize);
Roland McGrath3292e222004-08-31 06:30:48 +00002791}
2792
Roland McGrath186c5ac2002-12-15 23:58:23 +00002793int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002794sys_setxattr(struct tcb *tcp)
Roland McGrath186c5ac2002-12-15 23:58:23 +00002795{
Denys Vlasenko1d632462009-04-14 12:51:00 +00002796 if (entering(tcp)) {
2797 printpath(tcp, tcp->u_arg[0]);
2798 tprintf(", ");
2799 printstr(tcp, tcp->u_arg[1], -1);
2800 print_xattr_val(tcp, 0, tcp->u_arg[2], tcp->u_arg[3], tcp->u_arg[3]);
2801 tprintf(", ");
2802 printflags(xattrflags, tcp->u_arg[4], "XATTR_???");
2803 }
2804 return 0;
Roland McGrath186c5ac2002-12-15 23:58:23 +00002805}
2806
2807int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002808sys_fsetxattr(struct tcb *tcp)
Roland McGrath186c5ac2002-12-15 23:58:23 +00002809{
Denys Vlasenko1d632462009-04-14 12:51:00 +00002810 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +03002811 printfd(tcp, tcp->u_arg[0]);
2812 tprintf(", ");
Denys Vlasenko1d632462009-04-14 12:51:00 +00002813 printstr(tcp, tcp->u_arg[1], -1);
2814 print_xattr_val(tcp, 0, tcp->u_arg[2], tcp->u_arg[3], tcp->u_arg[3]);
2815 tprintf(", ");
2816 printflags(xattrflags, tcp->u_arg[4], "XATTR_???");
2817 }
2818 return 0;
Roland McGrath186c5ac2002-12-15 23:58:23 +00002819}
2820
2821int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002822sys_getxattr(struct tcb *tcp)
Roland McGrath186c5ac2002-12-15 23:58:23 +00002823{
Denys Vlasenko1d632462009-04-14 12:51:00 +00002824 if (entering(tcp)) {
2825 printpath(tcp, tcp->u_arg[0]);
2826 tprintf(", ");
2827 printstr(tcp, tcp->u_arg[1], -1);
2828 } else {
2829 print_xattr_val(tcp, syserror(tcp), tcp->u_arg[2], tcp->u_arg[3],
2830 tcp->u_rval);
2831 }
2832 return 0;
Roland McGrath186c5ac2002-12-15 23:58:23 +00002833}
2834
2835int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002836sys_fgetxattr(struct tcb *tcp)
Roland McGrath186c5ac2002-12-15 23:58:23 +00002837{
Denys Vlasenko1d632462009-04-14 12:51:00 +00002838 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +03002839 printfd(tcp, tcp->u_arg[0]);
2840 tprintf(", ");
Denys Vlasenko1d632462009-04-14 12:51:00 +00002841 printstr(tcp, tcp->u_arg[1], -1);
2842 } else {
2843 print_xattr_val(tcp, syserror(tcp), tcp->u_arg[2], tcp->u_arg[3],
2844 tcp->u_rval);
2845 }
2846 return 0;
Roland McGrath186c5ac2002-12-15 23:58:23 +00002847}
2848
2849int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002850sys_listxattr(struct tcb *tcp)
Roland McGrath186c5ac2002-12-15 23:58:23 +00002851{
Denys Vlasenko1d632462009-04-14 12:51:00 +00002852 if (entering(tcp)) {
2853 printpath(tcp, tcp->u_arg[0]);
2854 } else {
2855 /* XXX Print value in format */
2856 tprintf(", %p, %lu", (void *) tcp->u_arg[1], tcp->u_arg[2]);
2857 }
2858 return 0;
Roland McGrath186c5ac2002-12-15 23:58:23 +00002859}
2860
2861int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002862sys_flistxattr(struct tcb *tcp)
Roland McGrath186c5ac2002-12-15 23:58:23 +00002863{
Denys Vlasenko1d632462009-04-14 12:51:00 +00002864 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +03002865 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko1d632462009-04-14 12:51:00 +00002866 } else {
2867 /* XXX Print value in format */
2868 tprintf(", %p, %lu", (void *) tcp->u_arg[1], tcp->u_arg[2]);
2869 }
2870 return 0;
Roland McGrath186c5ac2002-12-15 23:58:23 +00002871}
2872
2873int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002874sys_removexattr(struct tcb *tcp)
Roland McGrath186c5ac2002-12-15 23:58:23 +00002875{
Denys Vlasenko1d632462009-04-14 12:51:00 +00002876 if (entering(tcp)) {
2877 printpath(tcp, tcp->u_arg[0]);
2878 tprintf(", ");
2879 printstr(tcp, tcp->u_arg[1], -1);
2880 }
2881 return 0;
Roland McGrath186c5ac2002-12-15 23:58:23 +00002882}
2883
2884int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002885sys_fremovexattr(struct tcb *tcp)
Roland McGrath186c5ac2002-12-15 23:58:23 +00002886{
Denys Vlasenko1d632462009-04-14 12:51:00 +00002887 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +03002888 printfd(tcp, tcp->u_arg[0]);
2889 tprintf(", ");
Denys Vlasenko1d632462009-04-14 12:51:00 +00002890 printstr(tcp, tcp->u_arg[1], -1);
2891 }
2892 return 0;
Roland McGrath186c5ac2002-12-15 23:58:23 +00002893}
Roland McGrathdf13e8f2004-10-07 18:51:19 +00002894
2895
2896static const struct xlat advise[] = {
2897 { POSIX_FADV_NORMAL, "POSIX_FADV_NORMAL" },
2898 { POSIX_FADV_RANDOM, "POSIX_FADV_RANDOM" },
2899 { POSIX_FADV_SEQUENTIAL, "POSIX_FADV_SEQUENTIAL" },
2900 { POSIX_FADV_WILLNEED, "POSIX_FADV_WILLNEED" },
2901 { POSIX_FADV_DONTNEED, "POSIX_FADV_DONTNEED" },
2902 { POSIX_FADV_NOREUSE, "POSIX_FADV_NOREUSE" },
2903 { 0, NULL }
2904};
2905
2906
Roland McGrathe27ed342004-10-20 02:24:19 +00002907#ifdef LINUX
Roland McGrathdf13e8f2004-10-07 18:51:19 +00002908int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002909sys_fadvise64(struct tcb *tcp)
Roland McGrathdf13e8f2004-10-07 18:51:19 +00002910{
Denys Vlasenko1d632462009-04-14 12:51:00 +00002911 if (entering(tcp)) {
Andreas Schwabb5600fc2009-11-04 17:08:34 +01002912 int argn;
Dmitry V. Levin31382132011-03-04 05:08:02 +03002913 printfd(tcp, tcp->u_arg[0]);
2914 tprintf(", ");
Andreas Schwabb5600fc2009-11-04 17:08:34 +01002915 argn = printllval(tcp, "%lld", 1);
2916 tprintf(", %ld, ", tcp->u_arg[argn++]);
2917 printxval(advise, tcp->u_arg[argn], "POSIX_FADV_???");
Denys Vlasenko1d632462009-04-14 12:51:00 +00002918 }
2919 return 0;
Roland McGrathdf13e8f2004-10-07 18:51:19 +00002920}
2921#endif
2922
2923
2924int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002925sys_fadvise64_64(struct tcb *tcp)
Roland McGrathdf13e8f2004-10-07 18:51:19 +00002926{
Denys Vlasenko1d632462009-04-14 12:51:00 +00002927 if (entering(tcp)) {
Andreas Schwabb5600fc2009-11-04 17:08:34 +01002928 int argn;
Dmitry V. Levin31382132011-03-04 05:08:02 +03002929 printfd(tcp, tcp->u_arg[0]);
2930 tprintf(", ");
Andreas Schwabb5600fc2009-11-04 17:08:34 +01002931#if defined ARM || defined POWERPC
2932 argn = printllval(tcp, "%lld, ", 2);
2933#else
2934 argn = printllval(tcp, "%lld, ", 1);
2935#endif
2936 argn = printllval(tcp, "%lld, ", argn);
2937#if defined ARM || defined POWERPC
Kirill A. Shutemov896db212009-09-19 03:21:33 +03002938 printxval(advise, tcp->u_arg[1], "POSIX_FADV_???");
Roland McGrathdf13e8f2004-10-07 18:51:19 +00002939#else
Andreas Schwabb5600fc2009-11-04 17:08:34 +01002940 printxval(advise, tcp->u_arg[argn], "POSIX_FADV_???");
Roland McGrathdf13e8f2004-10-07 18:51:19 +00002941#endif
Denys Vlasenko1d632462009-04-14 12:51:00 +00002942 }
2943 return 0;
Roland McGrathdf13e8f2004-10-07 18:51:19 +00002944}
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002945
2946#ifdef LINUX
2947static const struct xlat inotify_modes[] = {
Dmitry V. Levind475c062011-03-03 01:02:41 +00002948 { 0x00000001, "IN_ACCESS" },
2949 { 0x00000002, "IN_MODIFY" },
2950 { 0x00000004, "IN_ATTRIB" },
2951 { 0x00000008, "IN_CLOSE_WRITE"},
2952 { 0x00000010, "IN_CLOSE_NOWRITE"},
2953 { 0x00000020, "IN_OPEN" },
2954 { 0x00000040, "IN_MOVED_FROM" },
2955 { 0x00000080, "IN_MOVED_TO" },
2956 { 0x00000100, "IN_CREATE" },
2957 { 0x00000200, "IN_DELETE" },
2958 { 0x00000400, "IN_DELETE_SELF"},
2959 { 0x00000800, "IN_MOVE_SELF" },
2960 { 0x00002000, "IN_UNMOUNT" },
2961 { 0x00004000, "IN_Q_OVERFLOW" },
2962 { 0x00008000, "IN_IGNORED" },
2963 { 0x01000000, "IN_ONLYDIR" },
2964 { 0x02000000, "IN_DONT_FOLLOW"},
2965 { 0x20000000, "IN_MASK_ADD" },
2966 { 0x40000000, "IN_ISDIR" },
2967 { 0x80000000, "IN_ONESHOT" },
2968 { 0, NULL }
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002969};
2970
Sebastian Pipping1e1405a2011-03-03 00:50:55 +01002971static const struct xlat inotify_init_flags[] = {
2972 { 0x00000800, "IN_NONBLOCK" },
Denys Vlasenkob63256e2011-06-07 12:13:24 +02002973 { 0x00080000, "IN_CLOEXEC" },
2974 { 0, NULL }
Sebastian Pipping1e1405a2011-03-03 00:50:55 +01002975};
2976
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002977int
2978sys_inotify_add_watch(struct tcb *tcp)
2979{
2980 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +03002981 printfd(tcp, tcp->u_arg[0]);
2982 tprintf(", ");
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002983 printpath(tcp, tcp->u_arg[1]);
2984 tprintf(", ");
2985 printflags(inotify_modes, tcp->u_arg[2], "IN_???");
2986 }
2987 return 0;
2988}
2989
2990int
2991sys_inotify_rm_watch(struct tcb *tcp)
2992{
2993 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +03002994 printfd(tcp, tcp->u_arg[0]);
2995 tprintf(", %ld", tcp->u_arg[1]);
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002996 }
2997 return 0;
2998}
Roland McGrath96a96612008-05-20 04:56:18 +00002999
3000int
Mark Wielaardbab89402010-03-21 14:41:26 +01003001sys_inotify_init1(struct tcb *tcp)
3002{
3003 if (entering(tcp))
Sebastian Pipping1e1405a2011-03-03 00:50:55 +01003004 printflags(inotify_init_flags, tcp->u_arg[0], "IN_???");
Mark Wielaardbab89402010-03-21 14:41:26 +01003005 return 0;
3006}
3007
3008int
Roland McGrath96a96612008-05-20 04:56:18 +00003009sys_fallocate(struct tcb *tcp)
3010{
3011 if (entering(tcp)) {
Andreas Schwabb5600fc2009-11-04 17:08:34 +01003012 int argn;
Dmitry V. Levin31382132011-03-04 05:08:02 +03003013 printfd(tcp, tcp->u_arg[0]); /* fd */
3014 tprintf(", ");
Roland McGrath96a96612008-05-20 04:56:18 +00003015 tprintf("%#lo, ", tcp->u_arg[1]); /* mode */
Andreas Schwabb5600fc2009-11-04 17:08:34 +01003016 argn = printllval(tcp, "%llu, ", 2); /* offset */
3017 printllval(tcp, "%llu", argn); /* len */
Roland McGrath96a96612008-05-20 04:56:18 +00003018 }
3019 return 0;
3020}
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00003021#endif