blob: 89abb84da5aaa429370ffcf223e071a1666c51b1 [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>
Dmitry V. Levin88293652012-03-09 21:02:19 +000036#include <sys/swap.h>
Roland McGrathc531e572008-08-01 01:13:10 +000037
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 Akkerman76baf7c1999-02-19 00:21:36 +000044
Denys Vlasenko84703742012-02-25 02:38:52 +010045#ifdef LINUXSPARC
Wichert Akkermandacfb6e1999-06-03 14:21:07 +000046struct stat {
47 unsigned short st_dev;
48 unsigned int st_ino;
49 unsigned short st_mode;
50 short st_nlink;
51 unsigned short st_uid;
52 unsigned short st_gid;
53 unsigned short st_rdev;
54 unsigned int st_size;
55 int st_atime;
56 unsigned int __unused1;
57 int st_mtime;
58 unsigned int __unused2;
59 int st_ctime;
60 unsigned int __unused3;
61 int st_blksize;
62 int st_blocks;
63 unsigned int __unused4[2];
64};
Denys Vlasenko84703742012-02-25 02:38:52 +010065# if defined(SPARC64)
Roland McGrath6d1a65c2004-07-12 07:44:08 +000066struct stat_sparc64 {
67 unsigned int st_dev;
68 unsigned long st_ino;
69 unsigned int st_mode;
70 unsigned int st_nlink;
71 unsigned int st_uid;
72 unsigned int st_gid;
73 unsigned int st_rdev;
74 long st_size;
75 long st_atime;
76 long st_mtime;
77 long st_ctime;
78 long st_blksize;
79 long st_blocks;
80 unsigned long __unused4[2];
81};
Denys Vlasenko84703742012-02-25 02:38:52 +010082# endif /* SPARC64 */
83# define stat kernel_stat
84# include <asm/stat.h>
85# undef stat
86#else
87# undef dev_t
88# undef ino_t
89# undef mode_t
90# undef nlink_t
91# undef uid_t
92# undef gid_t
93# undef off_t
94# undef loff_t
Wichert Akkerman5b4d1281999-07-09 00:32:54 +000095
Denys Vlasenko84703742012-02-25 02:38:52 +010096# define dev_t __kernel_dev_t
97# define ino_t __kernel_ino_t
98# define mode_t __kernel_mode_t
99# define nlink_t __kernel_nlink_t
100# define uid_t __kernel_uid_t
101# define gid_t __kernel_gid_t
102# define off_t __kernel_off_t
103# define loff_t __kernel_loff_t
Wichert Akkermana6013701999-07-08 14:00:58 +0000104
Denys Vlasenko84703742012-02-25 02:38:52 +0100105# include <asm/stat.h>
Wichert Akkermana6013701999-07-08 14:00:58 +0000106
Denys Vlasenko84703742012-02-25 02:38:52 +0100107# undef dev_t
108# undef ino_t
109# undef mode_t
110# undef nlink_t
111# undef uid_t
112# undef gid_t
113# undef off_t
114# undef loff_t
Wichert Akkerman5b4d1281999-07-09 00:32:54 +0000115
Denys Vlasenko84703742012-02-25 02:38:52 +0100116# define dev_t dev_t
117# define ino_t ino_t
118# define mode_t mode_t
119# define nlink_t nlink_t
120# define uid_t uid_t
121# define gid_t gid_t
122# define off_t off_t
123# define loff_t loff_t
124#endif
125
126#ifdef HPPA /* asm-parisc/stat.h defines stat64 */
127# undef stat64
128#endif
129#define stat libc_stat
130#define stat64 libc_stat64
131#include <sys/stat.h>
132#undef stat
133#undef stat64
134 /* These might be macros. */
135#undef st_atime
136#undef st_mtime
137#undef st_ctime
138#ifdef HPPA
139# define stat64 hpux_stat64
140#endif
Wichert Akkermand4d8e921999-04-18 23:30:29 +0000141
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000142#include <fcntl.h>
143
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000144#ifdef HAVE_SYS_VFS_H
Denys Vlasenko84703742012-02-25 02:38:52 +0100145# include <sys/vfs.h>
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000146#endif
147
Roland McGrath186c5ac2002-12-15 23:58:23 +0000148#ifdef HAVE_LINUX_XATTR_H
Denys Vlasenko84703742012-02-25 02:38:52 +0100149# include <linux/xattr.h>
Denys Vlasenkoed720fd2012-02-25 02:24:03 +0100150#else
Denys Vlasenko84703742012-02-25 02:38:52 +0100151# define XATTR_CREATE 1
152# define XATTR_REPLACE 2
Roland McGrath186c5ac2002-12-15 23:58:23 +0000153#endif
154
Denys Vlasenko84703742012-02-25 02:38:52 +0100155#if _LFS64_LARGEFILE
Dmitry V. Levin1f336e52006-10-14 20:20:46 +0000156# ifdef HAVE_INTTYPES_H
157# include <inttypes.h>
158# else
159# define PRId64 "lld"
160# define PRIu64 "llu"
161# endif
162#endif
163
John Hughes70623be2001-03-08 13:59:00 +0000164#if HAVE_LONG_LONG_OFF_T
165/*
166 * Ugly hacks for systems that have typedef long long off_t
167 */
John Hughesb8c9f772001-03-07 16:53:07 +0000168
Denys Vlasenko84703742012-02-25 02:38:52 +0100169# define stat64 stat
170# define HAVE_STAT64 1 /* Ugly hack */
John Hughes70623be2001-03-08 13:59:00 +0000171
Denys Vlasenko84703742012-02-25 02:38:52 +0100172# define sys_stat64 sys_stat
173# define sys_fstat64 sys_fstat
174# define sys_lstat64 sys_lstat
175# define sys_lseek64 sys_lseek
176# define sys_truncate64 sys_truncate
177# define sys_ftruncate64 sys_ftruncate
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000178#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000179
180#ifdef MAJOR_IN_SYSMACROS
Denys Vlasenko84703742012-02-25 02:38:52 +0100181# include <sys/sysmacros.h>
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000182#endif
183
184#ifdef MAJOR_IN_MKDEV
Denys Vlasenko84703742012-02-25 02:38:52 +0100185# include <sys/mkdev.h>
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000186#endif
187
188#ifdef HAVE_SYS_ASYNCH_H
Denys Vlasenko84703742012-02-25 02:38:52 +0100189# include <sys/asynch.h>
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000190#endif
191
Dmitry V. Levin9b5b67e2007-01-11 23:19:55 +0000192const struct xlat open_access_modes[] = {
193 { O_RDONLY, "O_RDONLY" },
194 { O_WRONLY, "O_WRONLY" },
195 { O_RDWR, "O_RDWR" },
196#ifdef O_ACCMODE
197 { O_ACCMODE, "O_ACCMODE" },
198#endif
199 { 0, NULL },
200};
201
202const struct xlat open_mode_flags[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000203 { O_CREAT, "O_CREAT" },
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000204 { O_EXCL, "O_EXCL" },
205 { O_NOCTTY, "O_NOCTTY" },
Dmitry V. Levin9b5b67e2007-01-11 23:19:55 +0000206 { O_TRUNC, "O_TRUNC" },
207 { O_APPEND, "O_APPEND" },
208 { O_NONBLOCK, "O_NONBLOCK" },
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000209#ifdef O_SYNC
210 { O_SYNC, "O_SYNC" },
211#endif
212#ifdef O_ASYNC
213 { O_ASYNC, "O_ASYNC" },
214#endif
215#ifdef O_DSYNC
216 { O_DSYNC, "O_DSYNC" },
217#endif
218#ifdef O_RSYNC
219 { O_RSYNC, "O_RSYNC" },
220#endif
Denys Vlasenkoeedaac72009-03-10 20:41:58 +0000221#if defined(O_NDELAY) && (O_NDELAY != O_NONBLOCK)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000222 { O_NDELAY, "O_NDELAY" },
223#endif
224#ifdef O_PRIV
225 { O_PRIV, "O_PRIV" },
226#endif
227#ifdef O_DIRECT
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +0000228 { O_DIRECT, "O_DIRECT" },
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000229#endif
230#ifdef O_LARGEFILE
Roland McGrathfee836e2005-02-02 22:11:32 +0000231# if O_LARGEFILE == 0 /* biarch platforms in 64-bit mode */
232# undef O_LARGEFILE
233# ifdef SPARC64
234# define O_LARGEFILE 0x40000
235# elif defined X86_64 || defined S390X
236# define O_LARGEFILE 0100000
237# endif
238# endif
Roland McGrath663a8a02005-02-04 09:49:56 +0000239# ifdef O_LARGEFILE
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200240 { O_LARGEFILE, "O_LARGEFILE" },
Roland McGrath663a8a02005-02-04 09:49:56 +0000241# endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000242#endif
243#ifdef O_DIRECTORY
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200244 { O_DIRECTORY, "O_DIRECTORY" },
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +0000245#endif
246#ifdef O_NOFOLLOW
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200247 { O_NOFOLLOW, "O_NOFOLLOW" },
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000248#endif
Roland McGrath1025c3e2005-05-09 07:40:35 +0000249#ifdef O_NOATIME
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200250 { O_NOATIME, "O_NOATIME" },
Roland McGrath1025c3e2005-05-09 07:40:35 +0000251#endif
Roland McGrath71d3d662007-08-07 01:00:26 +0000252#ifdef O_CLOEXEC
253 { O_CLOEXEC, "O_CLOEXEC" },
254#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000255#ifdef FNDELAY
256 { FNDELAY, "FNDELAY" },
257#endif
258#ifdef FAPPEND
259 { FAPPEND, "FAPPEND" },
260#endif
261#ifdef FMARK
262 { FMARK, "FMARK" },
263#endif
264#ifdef FDEFER
265 { FDEFER, "FDEFER" },
266#endif
267#ifdef FASYNC
268 { FASYNC, "FASYNC" },
269#endif
270#ifdef FSHLOCK
271 { FSHLOCK, "FSHLOCK" },
272#endif
273#ifdef FEXLOCK
274 { FEXLOCK, "FEXLOCK" },
275#endif
276#ifdef FCREAT
277 { FCREAT, "FCREAT" },
278#endif
279#ifdef FTRUNC
280 { FTRUNC, "FTRUNC" },
281#endif
282#ifdef FEXCL
283 { FEXCL, "FEXCL" },
284#endif
285#ifdef FNBIO
286 { FNBIO, "FNBIO" },
287#endif
288#ifdef FSYNC
289 { FSYNC, "FSYNC" },
290#endif
291#ifdef FNOCTTY
292 { FNOCTTY, "FNOCTTY" },
Roland McGrath186c5ac2002-12-15 23:58:23 +0000293#endif
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000294#ifdef O_SHLOCK
295 { O_SHLOCK, "O_SHLOCK" },
296#endif
297#ifdef O_EXLOCK
298 { O_EXLOCK, "O_EXLOCK" },
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000299#endif
300 { 0, NULL },
301};
302
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000303#ifndef AT_FDCWD
304# define AT_FDCWD -100
305#endif
306
Denys Vlasenkoe740fd32009-04-16 12:06:16 +0000307/* The fd is an "int", so when decoding x86 on x86_64, we need to force sign
308 * extension to get the right value. We do this by declaring fd as int here.
309 */
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000310static void
Dmitry V. Levin31382132011-03-04 05:08:02 +0300311print_dirfd(struct tcb *tcp, int fd)
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000312{
313 if (fd == AT_FDCWD)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200314 tprints("AT_FDCWD, ");
Denys Vlasenko7b609d52011-06-22 14:32:43 +0200315 else {
Dmitry V. Levin31382132011-03-04 05:08:02 +0300316 printfd(tcp, fd);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200317 tprints(", ");
Dmitry V. Levin31382132011-03-04 05:08:02 +0300318 }
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000319}
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000320
Dmitry V. Levin9b5b67e2007-01-11 23:19:55 +0000321/*
322 * low bits of the open(2) flags define access mode,
323 * other bits are real flags.
324 */
Denys Vlasenkoeedaac72009-03-10 20:41:58 +0000325const char *
326sprint_open_modes(mode_t flags)
Dmitry V. Levin9b5b67e2007-01-11 23:19:55 +0000327{
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100328 static char outstr[(1 + ARRAY_SIZE(open_mode_flags)) * sizeof("O_LARGEFILE")];
Denys Vlasenkoeedaac72009-03-10 20:41:58 +0000329 char *p;
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100330 char sep;
Denys Vlasenkoeedaac72009-03-10 20:41:58 +0000331 const char *str;
332 const struct xlat *x;
Dmitry V. Levin9b5b67e2007-01-11 23:19:55 +0000333
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100334 sep = ' ';
335 p = stpcpy(outstr, "flags");
Denys Vlasenkoeedaac72009-03-10 20:41:58 +0000336 str = xlookup(open_access_modes, flags & 3);
337 if (str) {
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100338 *p++ = sep;
Denys Vlasenko52845572011-08-31 12:07:38 +0200339 p = stpcpy(p, str);
Dmitry V. Levin9b5b67e2007-01-11 23:19:55 +0000340 flags &= ~3;
341 if (!flags)
Denys Vlasenkoeedaac72009-03-10 20:41:58 +0000342 return outstr;
343 sep = '|';
Dmitry V. Levin9b5b67e2007-01-11 23:19:55 +0000344 }
Denys Vlasenkoeedaac72009-03-10 20:41:58 +0000345
346 for (x = open_mode_flags; x->str; x++) {
347 if ((flags & x->val) == x->val) {
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100348 *p++ = sep;
Denys Vlasenko52845572011-08-31 12:07:38 +0200349 p = stpcpy(p, x->str);
Denys Vlasenkoeedaac72009-03-10 20:41:58 +0000350 flags &= ~x->val;
351 if (!flags)
352 return outstr;
353 sep = '|';
354 }
355 }
356 /* flags is still nonzero */
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100357 *p++ = sep;
Denys Vlasenkoeedaac72009-03-10 20:41:58 +0000358 sprintf(p, "%#x", flags);
359 return outstr;
360}
361
362void
363tprint_open_modes(mode_t flags)
364{
Denys Vlasenko5940e652011-09-01 09:55:05 +0200365 tprints(sprint_open_modes(flags) + sizeof("flags"));
Dmitry V. Levin9b5b67e2007-01-11 23:19:55 +0000366}
367
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000368static int
369decode_open(struct tcb *tcp, int offset)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000370{
371 if (entering(tcp)) {
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000372 printpath(tcp, tcp->u_arg[offset]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200373 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000374 /* flags */
Denys Vlasenkoeedaac72009-03-10 20:41:58 +0000375 tprint_open_modes(tcp->u_arg[offset + 1]);
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000376 if (tcp->u_arg[offset + 1] & O_CREAT) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000377 /* mode */
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000378 tprintf(", %#lo", tcp->u_arg[offset + 2]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000379 }
380 }
381 return 0;
382}
383
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000384int
385sys_open(struct tcb *tcp)
386{
387 return decode_open(tcp, 0);
388}
389
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000390int
391sys_openat(struct tcb *tcp)
392{
393 if (entering(tcp))
Dmitry V. Levin31382132011-03-04 05:08:02 +0300394 print_dirfd(tcp, tcp->u_arg[0]);
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000395 return decode_open(tcp, 1);
396}
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000397
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000398#ifdef LINUXSPARC
Roland McGratha4d48532005-06-08 20:45:28 +0000399static const struct xlat openmodessol[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000400 { 0, "O_RDWR" },
401 { 1, "O_RDONLY" },
402 { 2, "O_WRONLY" },
403 { 0x80, "O_NONBLOCK" },
404 { 8, "O_APPEND" },
405 { 0x100, "O_CREAT" },
406 { 0x200, "O_TRUNC" },
407 { 0x400, "O_EXCL" },
408 { 0x800, "O_NOCTTY" },
409 { 0x10, "O_SYNC" },
410 { 0x40, "O_DSYNC" },
411 { 0x8000, "O_RSYNC" },
412 { 4, "O_NDELAY" },
413 { 0x1000, "O_PRIV" },
414 { 0, NULL },
415};
416
417int
Denys Vlasenko1d632462009-04-14 12:51:00 +0000418solaris_open(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000419{
420 if (entering(tcp)) {
421 printpath(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200422 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000423 /* flags */
Roland McGrathb2dee132005-06-01 19:02:36 +0000424 printflags(openmodessol, tcp->u_arg[1] + 1, "O_???");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000425 if (tcp->u_arg[1] & 0x100) {
426 /* mode */
427 tprintf(", %#lo", tcp->u_arg[2]);
428 }
429 }
430 return 0;
431}
432
433#endif
434
435int
Denys Vlasenko1d632462009-04-14 12:51:00 +0000436sys_creat(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000437{
438 if (entering(tcp)) {
439 printpath(tcp, tcp->u_arg[0]);
440 tprintf(", %#lo", tcp->u_arg[1]);
441 }
442 return 0;
443}
444
Roland McGrathd9f816f2004-09-04 03:39:20 +0000445static const struct xlat access_flags[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000446 { F_OK, "F_OK", },
447 { R_OK, "R_OK" },
448 { W_OK, "W_OK" },
449 { X_OK, "X_OK" },
450#ifdef EFF_ONLY_OK
451 { EFF_ONLY_OK, "EFF_ONLY_OK" },
452#endif
453#ifdef EX_OK
454 { EX_OK, "EX_OK" },
455#endif
456 { 0, NULL },
457};
458
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000459static int
460decode_access(struct tcb *tcp, int offset)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000461{
462 if (entering(tcp)) {
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000463 printpath(tcp, tcp->u_arg[offset]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200464 tprints(", ");
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000465 printflags(access_flags, tcp->u_arg[offset + 1], "?_OK");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000466 }
467 return 0;
468}
469
470int
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000471sys_access(struct tcb *tcp)
472{
473 return decode_access(tcp, 0);
474}
475
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000476int
477sys_faccessat(struct tcb *tcp)
478{
479 if (entering(tcp))
Dmitry V. Levin31382132011-03-04 05:08:02 +0300480 print_dirfd(tcp, tcp->u_arg[0]);
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000481 return decode_access(tcp, 1);
482}
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000483
484int
Denys Vlasenko1d632462009-04-14 12:51:00 +0000485sys_umask(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000486{
487 if (entering(tcp)) {
488 tprintf("%#lo", tcp->u_arg[0]);
489 }
490 return RVAL_OCTAL;
491}
492
Roland McGrathd9f816f2004-09-04 03:39:20 +0000493static const struct xlat whence[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000494 { SEEK_SET, "SEEK_SET" },
495 { SEEK_CUR, "SEEK_CUR" },
496 { SEEK_END, "SEEK_END" },
497 { 0, NULL },
498};
499
John Hughes70623be2001-03-08 13:59:00 +0000500#ifndef HAVE_LONG_LONG_OFF_T
Denys Vlasenkoc36c3522012-02-25 02:47:15 +0100501#if defined(LINUX_MIPSN32)
Roland McGrath542c2c62008-05-20 01:11:56 +0000502int
Denys Vlasenko1d632462009-04-14 12:51:00 +0000503sys_lseek(struct tcb *tcp)
Roland McGrath542c2c62008-05-20 01:11:56 +0000504{
505 long long offset;
506 int _whence;
507
508 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +0300509 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200510 tprints(", ");
Roland McGrath542c2c62008-05-20 01:11:56 +0000511 offset = tcp->ext_arg[1];
512 _whence = tcp->u_arg[2];
513 if (_whence == SEEK_SET)
514 tprintf("%llu, ", offset);
515 else
516 tprintf("%lld, ", offset);
517 printxval(whence, _whence, "SEEK_???");
518 }
519 return RVAL_UDECIMAL;
520}
521#else /* !LINUX_MIPSN32 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000522int
Denys Vlasenko1d632462009-04-14 12:51:00 +0000523sys_lseek(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000524{
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000525 off_t offset;
526 int _whence;
527
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000528 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +0300529 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200530 tprints(", ");
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000531 offset = tcp->u_arg[1];
532 _whence = tcp->u_arg[2];
533 if (_whence == SEEK_SET)
534 tprintf("%lu, ", offset);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000535 else
Roland McGrath186c5ac2002-12-15 23:58:23 +0000536 tprintf("%ld, ", offset);
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000537 printxval(whence, _whence, "SEEK_???");
Roland McGrath186c5ac2002-12-15 23:58:23 +0000538 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000539 return RVAL_UDECIMAL;
540}
Roland McGrath542c2c62008-05-20 01:11:56 +0000541#endif /* LINUX_MIPSN32 */
John Hughes5a826b82001-03-07 13:21:24 +0000542#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000543
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000544int
Denys Vlasenko1d632462009-04-14 12:51:00 +0000545sys_llseek(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000546{
Denys Vlasenko1d632462009-04-14 12:51:00 +0000547 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +0300548 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko1d632462009-04-14 12:51:00 +0000549 /*
550 * This one call takes explicitly two 32-bit arguments hi, lo,
551 * rather than one 64-bit argument for which LONG_LONG works
552 * appropriate for the native byte order.
553 */
554 if (tcp->u_arg[4] == SEEK_SET)
Dmitry V. Levin31382132011-03-04 05:08:02 +0300555 tprintf(", %llu, ",
556 ((long long int) tcp->u_arg[1]) << 32 |
557 (unsigned long long) (unsigned) tcp->u_arg[2]);
Denys Vlasenko1d632462009-04-14 12:51:00 +0000558 else
Dmitry V. Levin31382132011-03-04 05:08:02 +0300559 tprintf(", %lld, ",
560 ((long long int) tcp->u_arg[1]) << 32 |
561 (unsigned long long) (unsigned) tcp->u_arg[2]);
Denys Vlasenko1d632462009-04-14 12:51:00 +0000562 }
563 else {
564 long long int off;
565 if (syserror(tcp) || umove(tcp, tcp->u_arg[3], &off) < 0)
566 tprintf("%#lx, ", tcp->u_arg[3]);
567 else
568 tprintf("[%llu], ", off);
569 printxval(whence, tcp->u_arg[4], "SEEK_???");
570 }
571 return 0;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000572}
Roland McGrath186c5ac2002-12-15 23:58:23 +0000573
574int
Denys Vlasenko1d632462009-04-14 12:51:00 +0000575sys_readahead(struct tcb *tcp)
Roland McGrath186c5ac2002-12-15 23:58:23 +0000576{
Denys Vlasenko1d632462009-04-14 12:51:00 +0000577 if (entering(tcp)) {
Andreas Schwabb5600fc2009-11-04 17:08:34 +0100578 int argn;
Dmitry V. Levin31382132011-03-04 05:08:02 +0300579 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200580 tprints(", ");
Andreas Schwabb5600fc2009-11-04 17:08:34 +0100581 argn = printllval(tcp, "%lld", 1);
582 tprintf(", %ld", tcp->u_arg[argn]);
Denys Vlasenko1d632462009-04-14 12:51:00 +0000583 }
584 return 0;
Roland McGrath186c5ac2002-12-15 23:58:23 +0000585}
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000586
John Hughes70623be2001-03-08 13:59:00 +0000587#if _LFS64_LARGEFILE || HAVE_LONG_LONG_OFF_T
John Hughesbdf48f52001-03-06 15:08:09 +0000588int
Denys Vlasenko1d632462009-04-14 12:51:00 +0000589sys_lseek64(struct tcb *tcp)
John Hughesbdf48f52001-03-06 15:08:09 +0000590{
591 if (entering(tcp)) {
Andreas Schwabb5600fc2009-11-04 17:08:34 +0100592 int argn;
Dmitry V. Levin31382132011-03-04 05:08:02 +0300593 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200594 tprints(", ");
John Hughesbdf48f52001-03-06 15:08:09 +0000595 if (tcp->u_arg[3] == SEEK_SET)
Andreas Schwabb5600fc2009-11-04 17:08:34 +0100596 argn = printllval(tcp, "%llu, ", 1);
John Hughesbdf48f52001-03-06 15:08:09 +0000597 else
Andreas Schwabb5600fc2009-11-04 17:08:34 +0100598 argn = printllval(tcp, "%lld, ", 1);
599 printxval(whence, tcp->u_arg[argn], "SEEK_???");
John Hughesbdf48f52001-03-06 15:08:09 +0000600 }
601 return RVAL_LUDECIMAL;
602}
603#endif
604
John Hughes70623be2001-03-08 13:59:00 +0000605#ifndef HAVE_LONG_LONG_OFF_T
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000606int
Denys Vlasenko1d632462009-04-14 12:51:00 +0000607sys_truncate(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000608{
609 if (entering(tcp)) {
610 printpath(tcp, tcp->u_arg[0]);
611 tprintf(", %lu", tcp->u_arg[1]);
612 }
613 return 0;
614}
John Hughes5a826b82001-03-07 13:21:24 +0000615#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000616
John Hughes70623be2001-03-08 13:59:00 +0000617#if _LFS64_LARGEFILE || HAVE_LONG_LONG_OFF_T
John Hughes96f51472001-03-06 16:50:41 +0000618int
Denys Vlasenko1d632462009-04-14 12:51:00 +0000619sys_truncate64(struct tcb *tcp)
John Hughes96f51472001-03-06 16:50:41 +0000620{
621 if (entering(tcp)) {
622 printpath(tcp, tcp->u_arg[0]);
Andreas Schwabb5600fc2009-11-04 17:08:34 +0100623 printllval(tcp, ", %llu", 1);
John Hughes96f51472001-03-06 16:50:41 +0000624 }
625 return 0;
626}
627#endif
628
John Hughes70623be2001-03-08 13:59:00 +0000629#ifndef HAVE_LONG_LONG_OFF_T
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000630int
Denys Vlasenko1d632462009-04-14 12:51:00 +0000631sys_ftruncate(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000632{
633 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +0300634 printfd(tcp, tcp->u_arg[0]);
635 tprintf(", %lu", tcp->u_arg[1]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000636 }
637 return 0;
638}
John Hughes5a826b82001-03-07 13:21:24 +0000639#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000640
John Hughes70623be2001-03-08 13:59:00 +0000641#if _LFS64_LARGEFILE || HAVE_LONG_LONG_OFF_T
John Hughes96f51472001-03-06 16:50:41 +0000642int
Denys Vlasenko1d632462009-04-14 12:51:00 +0000643sys_ftruncate64(struct tcb *tcp)
John Hughes96f51472001-03-06 16:50:41 +0000644{
645 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +0300646 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200647 tprints(", ");
Andreas Schwabb5600fc2009-11-04 17:08:34 +0100648 printllval(tcp, "%llu", 1);
John Hughes96f51472001-03-06 16:50:41 +0000649 }
650 return 0;
651}
652#endif
653
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000654/* several stats */
655
Roland McGrathd9f816f2004-09-04 03:39:20 +0000656static const struct xlat modetypes[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000657 { S_IFREG, "S_IFREG" },
658 { S_IFSOCK, "S_IFSOCK" },
659 { S_IFIFO, "S_IFIFO" },
660 { S_IFLNK, "S_IFLNK" },
661 { S_IFDIR, "S_IFDIR" },
662 { S_IFBLK, "S_IFBLK" },
663 { S_IFCHR, "S_IFCHR" },
664 { 0, NULL },
665};
666
Roland McGrathf9c49b22004-10-06 22:11:54 +0000667static const char *
Denys Vlasenko1d632462009-04-14 12:51:00 +0000668sprintmode(int mode)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000669{
Denys Vlasenko1945ccc2012-02-27 14:37:48 +0100670 static char buf[sizeof("S_IFSOCK|S_ISUID|S_ISGID|S_ISVTX|%o")
671 + sizeof(int)*3
672 + /*paranoia:*/ 8];
Roland McGrathf9c49b22004-10-06 22:11:54 +0000673 const char *s;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000674
675 if ((mode & S_IFMT) == 0)
676 s = "";
677 else if ((s = xlookup(modetypes, mode & S_IFMT)) == NULL) {
678 sprintf(buf, "%#o", mode);
679 return buf;
680 }
Denys Vlasenko1945ccc2012-02-27 14:37:48 +0100681 s = buf + sprintf(buf, "%s%s%s%s", s,
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000682 (mode & S_ISUID) ? "|S_ISUID" : "",
683 (mode & S_ISGID) ? "|S_ISGID" : "",
684 (mode & S_ISVTX) ? "|S_ISVTX" : "");
685 mode &= ~(S_IFMT|S_ISUID|S_ISGID|S_ISVTX);
686 if (mode)
Denys Vlasenko1945ccc2012-02-27 14:37:48 +0100687 sprintf((char*)s, "|%#o", mode);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000688 s = (*buf == '|') ? buf + 1 : buf;
689 return *s ? s : "0";
690}
691
692static char *
Dmitry V. Levindc7715b2008-04-19 23:45:09 +0000693sprinttime(time_t t)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000694{
695 struct tm *tmp;
Denys Vlasenko1945ccc2012-02-27 14:37:48 +0100696 static char buf[sizeof("yyyy/mm/dd-hh:mm:ss")];
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000697
698 if (t == 0) {
Dmitry V. Levindc7715b2008-04-19 23:45:09 +0000699 strcpy(buf, "0");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000700 return buf;
701 }
Denys Vlasenko5d645812011-08-20 12:48:18 +0200702 tmp = localtime(&t);
703 if (tmp)
Dmitry V. Levindc7715b2008-04-19 23:45:09 +0000704 snprintf(buf, sizeof buf, "%02d/%02d/%02d-%02d:%02d:%02d",
705 tmp->tm_year + 1900, tmp->tm_mon + 1, tmp->tm_mday,
706 tmp->tm_hour, tmp->tm_min, tmp->tm_sec);
707 else
708 snprintf(buf, sizeof buf, "%lu", (unsigned long) t);
709
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000710 return buf;
711}
712
713#ifdef LINUXSPARC
714typedef struct {
Denys Vlasenkoadedb512008-12-30 18:47:55 +0000715 int tv_sec;
716 int tv_nsec;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000717} timestruct_t;
718
719struct solstat {
Denys Vlasenkoadedb512008-12-30 18:47:55 +0000720 unsigned st_dev;
721 int st_pad1[3]; /* network id */
722 unsigned st_ino;
723 unsigned st_mode;
724 unsigned st_nlink;
725 unsigned st_uid;
726 unsigned st_gid;
727 unsigned st_rdev;
728 int st_pad2[2];
729 int st_size;
730 int st_pad3; /* st_size, off_t expansion */
731 timestruct_t st_atime;
732 timestruct_t st_mtime;
733 timestruct_t st_ctime;
734 int st_blksize;
735 int st_blocks;
736 char st_fstype[16];
737 int st_pad4[8]; /* expansion area */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000738};
739
740static void
Dmitry V. Levinb838b1e2008-04-19 23:47:47 +0000741printstatsol(struct tcb *tcp, long addr)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000742{
743 struct solstat statbuf;
744
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000745 if (umove(tcp, addr, &statbuf) < 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200746 tprints("{...}");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000747 return;
748 }
749 if (!abbrev(tcp)) {
750 tprintf("{st_dev=makedev(%lu, %lu), st_ino=%lu, st_mode=%s, ",
751 (unsigned long) ((statbuf.st_dev >> 18) & 0x3fff),
752 (unsigned long) (statbuf.st_dev & 0x3ffff),
753 (unsigned long) statbuf.st_ino,
754 sprintmode(statbuf.st_mode));
755 tprintf("st_nlink=%lu, st_uid=%lu, st_gid=%lu, ",
756 (unsigned long) statbuf.st_nlink,
757 (unsigned long) statbuf.st_uid,
758 (unsigned long) statbuf.st_gid);
759 tprintf("st_blksize=%lu, ", (unsigned long) statbuf.st_blksize);
760 tprintf("st_blocks=%lu, ", (unsigned long) statbuf.st_blocks);
761 }
762 else
763 tprintf("{st_mode=%s, ", sprintmode(statbuf.st_mode));
764 switch (statbuf.st_mode & S_IFMT) {
765 case S_IFCHR: case S_IFBLK:
766 tprintf("st_rdev=makedev(%lu, %lu), ",
767 (unsigned long) ((statbuf.st_rdev >> 18) & 0x3fff),
768 (unsigned long) (statbuf.st_rdev & 0x3ffff));
769 break;
770 default:
771 tprintf("st_size=%u, ", statbuf.st_size);
772 break;
773 }
774 if (!abbrev(tcp)) {
Dmitry V. Levinb838b1e2008-04-19 23:47:47 +0000775 tprintf("st_atime=%s, ", sprinttime(statbuf.st_atime.tv_sec));
776 tprintf("st_mtime=%s, ", sprinttime(statbuf.st_mtime.tv_sec));
777 tprintf("st_ctime=%s}", sprinttime(statbuf.st_ctime.tv_sec));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000778 }
779 else
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200780 tprints("...}");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000781}
Roland McGrath6d1a65c2004-07-12 07:44:08 +0000782
Denys Vlasenkoc36c3522012-02-25 02:47:15 +0100783#if defined(SPARC64)
Roland McGrath6d1a65c2004-07-12 07:44:08 +0000784static void
Denys Vlasenko1d632462009-04-14 12:51:00 +0000785printstat_sparc64(struct tcb *tcp, long addr)
Roland McGrath6d1a65c2004-07-12 07:44:08 +0000786{
787 struct stat_sparc64 statbuf;
788
Roland McGrath6d1a65c2004-07-12 07:44:08 +0000789 if (umove(tcp, addr, &statbuf) < 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200790 tprints("{...}");
Roland McGrath6d1a65c2004-07-12 07:44:08 +0000791 return;
792 }
793
794 if (!abbrev(tcp)) {
795 tprintf("{st_dev=makedev(%lu, %lu), st_ino=%lu, st_mode=%s, ",
796 (unsigned long) major(statbuf.st_dev),
797 (unsigned long) minor(statbuf.st_dev),
798 (unsigned long) statbuf.st_ino,
799 sprintmode(statbuf.st_mode));
800 tprintf("st_nlink=%lu, st_uid=%lu, st_gid=%lu, ",
801 (unsigned long) statbuf.st_nlink,
802 (unsigned long) statbuf.st_uid,
803 (unsigned long) statbuf.st_gid);
804 tprintf("st_blksize=%lu, ",
805 (unsigned long) statbuf.st_blksize);
806 tprintf("st_blocks=%lu, ",
807 (unsigned long) statbuf.st_blocks);
808 }
809 else
810 tprintf("{st_mode=%s, ", sprintmode(statbuf.st_mode));
811 switch (statbuf.st_mode & S_IFMT) {
812 case S_IFCHR: case S_IFBLK:
813 tprintf("st_rdev=makedev(%lu, %lu), ",
814 (unsigned long) major(statbuf.st_rdev),
815 (unsigned long) minor(statbuf.st_rdev));
816 break;
817 default:
818 tprintf("st_size=%lu, ", statbuf.st_size);
819 break;
820 }
821 if (!abbrev(tcp)) {
822 tprintf("st_atime=%s, ", sprinttime(statbuf.st_atime));
823 tprintf("st_mtime=%s, ", sprinttime(statbuf.st_mtime));
Denys Vlasenko1945ccc2012-02-27 14:37:48 +0100824 tprintf("st_ctime=%s}", sprinttime(statbuf.st_ctime));
Roland McGrath6d1a65c2004-07-12 07:44:08 +0000825 }
826 else
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200827 tprints("...}");
Roland McGrath6d1a65c2004-07-12 07:44:08 +0000828}
829#endif /* SPARC64 */
Wichert Akkermanb859bea1999-04-18 22:50:50 +0000830#endif /* LINUXSPARC */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000831
Denys Vlasenko84703742012-02-25 02:38:52 +0100832#if defined POWERPC64
Andreas Schwabd69fa492010-07-12 21:39:57 +0200833struct stat_powerpc32 {
834 unsigned int st_dev;
835 unsigned int st_ino;
836 unsigned int st_mode;
837 unsigned short st_nlink;
838 unsigned int st_uid;
839 unsigned int st_gid;
840 unsigned int st_rdev;
841 unsigned int st_size;
842 unsigned int st_blksize;
843 unsigned int st_blocks;
844 unsigned int st_atime;
845 unsigned int st_atime_nsec;
846 unsigned int st_mtime;
847 unsigned int st_mtime_nsec;
848 unsigned int st_ctime;
849 unsigned int st_ctime_nsec;
850 unsigned int __unused4;
851 unsigned int __unused5;
852};
853
854static void
855printstat_powerpc32(struct tcb *tcp, long addr)
856{
857 struct stat_powerpc32 statbuf;
858
859 if (umove(tcp, addr, &statbuf) < 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200860 tprints("{...}");
Andreas Schwabd69fa492010-07-12 21:39:57 +0200861 return;
862 }
863
864 if (!abbrev(tcp)) {
865 tprintf("{st_dev=makedev(%u, %u), st_ino=%u, st_mode=%s, ",
866 major(statbuf.st_dev), minor(statbuf.st_dev),
867 statbuf.st_ino,
868 sprintmode(statbuf.st_mode));
869 tprintf("st_nlink=%u, st_uid=%u, st_gid=%u, ",
870 statbuf.st_nlink, statbuf.st_uid, statbuf.st_gid);
871 tprintf("st_blksize=%u, ", statbuf.st_blksize);
872 tprintf("st_blocks=%u, ", statbuf.st_blocks);
873 }
874 else
875 tprintf("{st_mode=%s, ", sprintmode(statbuf.st_mode));
876 switch (statbuf.st_mode & S_IFMT) {
877 case S_IFCHR: case S_IFBLK:
878 tprintf("st_rdev=makedev(%lu, %lu), ",
879 (unsigned long) major(statbuf.st_rdev),
880 (unsigned long) minor(statbuf.st_rdev));
881 break;
882 default:
883 tprintf("st_size=%u, ", statbuf.st_size);
884 break;
885 }
886 if (!abbrev(tcp)) {
887 tprintf("st_atime=%s, ", sprinttime(statbuf.st_atime));
888 tprintf("st_mtime=%s, ", sprinttime(statbuf.st_mtime));
Denys Vlasenko1945ccc2012-02-27 14:37:48 +0100889 tprintf("st_ctime=%s}", sprinttime(statbuf.st_ctime));
Andreas Schwabd69fa492010-07-12 21:39:57 +0200890 }
891 else
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200892 tprints("...}");
Andreas Schwabd69fa492010-07-12 21:39:57 +0200893}
Denys Vlasenko84703742012-02-25 02:38:52 +0100894#endif /* POWERPC64 */
Andreas Schwabd69fa492010-07-12 21:39:57 +0200895
Roland McGratha4d48532005-06-08 20:45:28 +0000896static const struct xlat fileflags[] = {
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000897 { 0, NULL },
898};
899
John Hughes70623be2001-03-08 13:59:00 +0000900#ifndef HAVE_LONG_LONG_OFF_T
Wichert Akkerman328c5e71999-04-16 00:21:26 +0000901static void
Denys Vlasenko1d632462009-04-14 12:51:00 +0000902realprintstat(struct tcb *tcp, struct stat *statbuf)
Wichert Akkerman328c5e71999-04-16 00:21:26 +0000903{
Denys Vlasenko1d632462009-04-14 12:51:00 +0000904 if (!abbrev(tcp)) {
905 tprintf("{st_dev=makedev(%lu, %lu), st_ino=%lu, st_mode=%s, ",
906 (unsigned long) major(statbuf->st_dev),
907 (unsigned long) minor(statbuf->st_dev),
908 (unsigned long) statbuf->st_ino,
909 sprintmode(statbuf->st_mode));
910 tprintf("st_nlink=%lu, st_uid=%lu, st_gid=%lu, ",
911 (unsigned long) statbuf->st_nlink,
912 (unsigned long) statbuf->st_uid,
913 (unsigned long) statbuf->st_gid);
Roland McGrath6d2b3492002-12-30 00:51:30 +0000914#ifdef HAVE_STRUCT_STAT_ST_BLKSIZE
Denys Vlasenko1d632462009-04-14 12:51:00 +0000915 tprintf("st_blksize=%lu, ", (unsigned long) statbuf->st_blksize);
916#endif
Roland McGrath6d2b3492002-12-30 00:51:30 +0000917#ifdef HAVE_STRUCT_STAT_ST_BLOCKS
Denys Vlasenko1d632462009-04-14 12:51:00 +0000918 tprintf("st_blocks=%lu, ", (unsigned long) statbuf->st_blocks);
919#endif
920 }
921 else
922 tprintf("{st_mode=%s, ", sprintmode(statbuf->st_mode));
923 switch (statbuf->st_mode & S_IFMT) {
924 case S_IFCHR: case S_IFBLK:
Roland McGrath6d2b3492002-12-30 00:51:30 +0000925#ifdef HAVE_STRUCT_STAT_ST_RDEV
Denys Vlasenko1d632462009-04-14 12:51:00 +0000926 tprintf("st_rdev=makedev(%lu, %lu), ",
927 (unsigned long) major(statbuf->st_rdev),
928 (unsigned long) minor(statbuf->st_rdev));
Roland McGrath6d2b3492002-12-30 00:51:30 +0000929#else /* !HAVE_STRUCT_STAT_ST_RDEV */
Denys Vlasenko1d632462009-04-14 12:51:00 +0000930 tprintf("st_size=makedev(%lu, %lu), ",
931 (unsigned long) major(statbuf->st_size),
932 (unsigned long) minor(statbuf->st_size));
Roland McGrath6d2b3492002-12-30 00:51:30 +0000933#endif /* !HAVE_STRUCT_STAT_ST_RDEV */
Denys Vlasenko1d632462009-04-14 12:51:00 +0000934 break;
935 default:
Dmitry V. Levine9a06b72011-02-23 16:16:50 +0000936 tprintf("st_size=%lu, ", (unsigned long) statbuf->st_size);
Denys Vlasenko1d632462009-04-14 12:51:00 +0000937 break;
938 }
939 if (!abbrev(tcp)) {
940 tprintf("st_atime=%s, ", sprinttime(statbuf->st_atime));
941 tprintf("st_mtime=%s, ", sprinttime(statbuf->st_mtime));
942 tprintf("st_ctime=%s", sprinttime(statbuf->st_ctime));
Roland McGrath6d2b3492002-12-30 00:51:30 +0000943#if HAVE_STRUCT_STAT_ST_FLAGS
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200944 tprints(", st_flags=");
Roland McGrathb2dee132005-06-01 19:02:36 +0000945 printflags(fileflags, statbuf->st_flags, "UF_???");
John Hughesc0fc3fd2001-03-08 16:10:40 +0000946#endif
Roland McGrath6d2b3492002-12-30 00:51:30 +0000947#if HAVE_STRUCT_STAT_ST_ACLCNT
John Hughesc0fc3fd2001-03-08 16:10:40 +0000948 tprintf(", st_aclcnt=%d", statbuf->st_aclcnt);
949#endif
Roland McGrath6d2b3492002-12-30 00:51:30 +0000950#if HAVE_STRUCT_STAT_ST_LEVEL
John Hughesc0fc3fd2001-03-08 16:10:40 +0000951 tprintf(", st_level=%ld", statbuf->st_level);
952#endif
Roland McGrath6d2b3492002-12-30 00:51:30 +0000953#if HAVE_STRUCT_STAT_ST_FSTYPE
John Hughesc0fc3fd2001-03-08 16:10:40 +0000954 tprintf(", st_fstype=%.*s",
955 (int) sizeof statbuf->st_fstype, statbuf->st_fstype);
956#endif
Roland McGrath6d2b3492002-12-30 00:51:30 +0000957#if HAVE_STRUCT_STAT_ST_GEN
John Hughesc0fc3fd2001-03-08 16:10:40 +0000958 tprintf(", st_gen=%u", statbuf->st_gen);
959#endif
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200960 tprints("}");
Denys Vlasenko1d632462009-04-14 12:51:00 +0000961 }
962 else
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200963 tprints("...}");
Wichert Akkerman328c5e71999-04-16 00:21:26 +0000964}
965
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000966static void
Denys Vlasenko1d632462009-04-14 12:51:00 +0000967printstat(struct tcb *tcp, long addr)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000968{
Wichert Akkerman328c5e71999-04-16 00:21:26 +0000969 struct stat statbuf;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000970
Denys Vlasenko4e718b52009-04-20 18:30:13 +0000971 if (!addr) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200972 tprints("NULL");
Denys Vlasenko4e718b52009-04-20 18:30:13 +0000973 return;
974 }
975 if (syserror(tcp) || !verbose(tcp)) {
976 tprintf("%#lx", addr);
977 return;
978 }
979
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000980#ifdef LINUXSPARC
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +0000981 if (current_personality == 1) {
982 printstatsol(tcp, addr);
983 return;
984 }
Roland McGrath6d1a65c2004-07-12 07:44:08 +0000985#ifdef SPARC64
986 else if (current_personality == 2) {
987 printstat_sparc64(tcp, addr);
988 return;
989 }
990#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000991#endif /* LINUXSPARC */
992
Denys Vlasenko84703742012-02-25 02:38:52 +0100993#if defined POWERPC64
Andreas Schwabd69fa492010-07-12 21:39:57 +0200994 if (current_personality == 1) {
995 printstat_powerpc32(tcp, addr);
996 return;
997 }
998#endif
999
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001000 if (umove(tcp, addr, &statbuf) < 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001001 tprints("{...}");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001002 return;
1003 }
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001004
1005 realprintstat(tcp, &statbuf);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001006}
John Hughes70623be2001-03-08 13:59:00 +00001007#endif /* !HAVE_LONG_LONG_OFF_T */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001008
Denys Vlasenko84703742012-02-25 02:38:52 +01001009#if !defined HAVE_STAT64 && defined X86_64
Roland McGrathe6d0f712007-08-07 01:22:49 +00001010/*
1011 * Linux x86_64 has unified `struct stat' but its i386 biarch needs
1012 * `struct stat64'. Its <asm-i386/stat.h> definition expects 32-bit `long'.
1013 * <linux/include/asm-x86_64/ia32.h> is not in the public includes set.
1014 * __GNUC__ is needed for the required __attribute__ below.
1015 */
1016struct stat64 {
1017 unsigned long long st_dev;
1018 unsigned char __pad0[4];
1019 unsigned int __st_ino;
1020 unsigned int st_mode;
1021 unsigned int st_nlink;
1022 unsigned int st_uid;
1023 unsigned int st_gid;
1024 unsigned long long st_rdev;
1025 unsigned char __pad3[4];
1026 long long st_size;
1027 unsigned int st_blksize;
1028 unsigned long long st_blocks;
1029 unsigned int st_atime;
1030 unsigned int st_atime_nsec;
1031 unsigned int st_mtime;
1032 unsigned int st_mtime_nsec;
1033 unsigned int st_ctime;
1034 unsigned int st_ctime_nsec;
1035 unsigned long long st_ino;
1036} __attribute__((packed));
1037# define HAVE_STAT64 1
1038# define STAT64_SIZE 96
1039#endif
1040
Wichert Akkermanc7926982000-04-10 22:22:31 +00001041#ifdef HAVE_STAT64
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001042static void
Denys Vlasenko1d632462009-04-14 12:51:00 +00001043printstat64(struct tcb *tcp, long addr)
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001044{
1045 struct stat64 statbuf;
1046
Denys Vlasenko4e718b52009-04-20 18:30:13 +00001047#ifdef STAT64_SIZE
Roland McGrathe6d0f712007-08-07 01:22:49 +00001048 (void) sizeof(char[sizeof statbuf == STAT64_SIZE ? 1 : -1]);
1049#endif
1050
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001051 if (!addr) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001052 tprints("NULL");
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001053 return;
1054 }
1055 if (syserror(tcp) || !verbose(tcp)) {
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +00001056 tprintf("%#lx", addr);
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001057 return;
1058 }
Denys Vlasenko4e718b52009-04-20 18:30:13 +00001059
1060#ifdef LINUXSPARC
1061 if (current_personality == 1) {
1062 printstatsol(tcp, addr);
1063 return;
1064 }
1065# ifdef SPARC64
1066 else if (current_personality == 2) {
1067 printstat_sparc64(tcp, addr);
1068 return;
1069 }
1070# endif
1071#endif /* LINUXSPARC */
1072
Denys Vlasenko84703742012-02-25 02:38:52 +01001073#if defined X86_64
Andreas Schwab61b74352009-10-16 11:37:13 +02001074 if (current_personality == 0) {
1075 printstat(tcp, addr);
1076 return;
1077 }
1078#endif
Dmitry V. Levinff896f72009-10-21 13:43:57 +00001079
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001080 if (umove(tcp, addr, &statbuf) < 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001081 tprints("{...}");
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001082 return;
1083 }
1084
1085 if (!abbrev(tcp)) {
Wichert Akkermand077c452000-08-10 18:16:15 +00001086#ifdef HAVE_LONG_LONG
1087 tprintf("{st_dev=makedev(%lu, %lu), st_ino=%llu, st_mode=%s, ",
1088#else
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001089 tprintf("{st_dev=makedev(%lu, %lu), st_ino=%lu, st_mode=%s, ",
Wichert Akkermand077c452000-08-10 18:16:15 +00001090#endif
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001091 (unsigned long) major(statbuf.st_dev),
1092 (unsigned long) minor(statbuf.st_dev),
Wichert Akkermand077c452000-08-10 18:16:15 +00001093#ifdef HAVE_LONG_LONG
1094 (unsigned long long) statbuf.st_ino,
1095#else
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001096 (unsigned long) statbuf.st_ino,
Wichert Akkermand077c452000-08-10 18:16:15 +00001097#endif
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001098 sprintmode(statbuf.st_mode));
1099 tprintf("st_nlink=%lu, st_uid=%lu, st_gid=%lu, ",
1100 (unsigned long) statbuf.st_nlink,
1101 (unsigned long) statbuf.st_uid,
1102 (unsigned long) statbuf.st_gid);
Roland McGrath6d2b3492002-12-30 00:51:30 +00001103#ifdef HAVE_STRUCT_STAT_ST_BLKSIZE
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001104 tprintf("st_blksize=%lu, ",
1105 (unsigned long) statbuf.st_blksize);
Roland McGrath6d2b3492002-12-30 00:51:30 +00001106#endif /* HAVE_STRUCT_STAT_ST_BLKSIZE */
1107#ifdef HAVE_STRUCT_STAT_ST_BLOCKS
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001108 tprintf("st_blocks=%lu, ", (unsigned long) statbuf.st_blocks);
Roland McGrath6d2b3492002-12-30 00:51:30 +00001109#endif /* HAVE_STRUCT_STAT_ST_BLOCKS */
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001110 }
1111 else
1112 tprintf("{st_mode=%s, ", sprintmode(statbuf.st_mode));
1113 switch (statbuf.st_mode & S_IFMT) {
1114 case S_IFCHR: case S_IFBLK:
Roland McGrath6d2b3492002-12-30 00:51:30 +00001115#ifdef HAVE_STRUCT_STAT_ST_RDEV
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001116 tprintf("st_rdev=makedev(%lu, %lu), ",
1117 (unsigned long) major(statbuf.st_rdev),
1118 (unsigned long) minor(statbuf.st_rdev));
Roland McGrath6d2b3492002-12-30 00:51:30 +00001119#else /* !HAVE_STRUCT_STAT_ST_RDEV */
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001120 tprintf("st_size=makedev(%lu, %lu), ",
1121 (unsigned long) major(statbuf.st_size),
1122 (unsigned long) minor(statbuf.st_size));
Roland McGrath6d2b3492002-12-30 00:51:30 +00001123#endif /* !HAVE_STRUCT_STAT_ST_RDEV */
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001124 break;
1125 default:
Roland McGrathc7bd4d32007-08-07 01:05:19 +00001126#ifdef HAVE_LONG_LONG
1127 tprintf("st_size=%llu, ", (unsigned long long) statbuf.st_size);
1128#else
1129 tprintf("st_size=%lu, ", (unsigned long) statbuf.st_size);
1130#endif
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001131 break;
1132 }
1133 if (!abbrev(tcp)) {
1134 tprintf("st_atime=%s, ", sprinttime(statbuf.st_atime));
1135 tprintf("st_mtime=%s, ", sprinttime(statbuf.st_mtime));
John Hughesc0fc3fd2001-03-08 16:10:40 +00001136 tprintf("st_ctime=%s", sprinttime(statbuf.st_ctime));
Roland McGrath6d2b3492002-12-30 00:51:30 +00001137#if HAVE_STRUCT_STAT_ST_FLAGS
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001138 tprints(", st_flags=");
Roland McGrathb2dee132005-06-01 19:02:36 +00001139 printflags(fileflags, statbuf.st_flags, "UF_???");
John Hughesc0fc3fd2001-03-08 16:10:40 +00001140#endif
Roland McGrath6d2b3492002-12-30 00:51:30 +00001141#if HAVE_STRUCT_STAT_ST_ACLCNT
John Hughesc0fc3fd2001-03-08 16:10:40 +00001142 tprintf(", st_aclcnt=%d", statbuf.st_aclcnt);
1143#endif
Roland McGrath6d2b3492002-12-30 00:51:30 +00001144#if HAVE_STRUCT_STAT_ST_LEVEL
John Hughesc0fc3fd2001-03-08 16:10:40 +00001145 tprintf(", st_level=%ld", statbuf.st_level);
1146#endif
Roland McGrath6d2b3492002-12-30 00:51:30 +00001147#if HAVE_STRUCT_STAT_ST_FSTYPE
John Hughesc0fc3fd2001-03-08 16:10:40 +00001148 tprintf(", st_fstype=%.*s",
1149 (int) sizeof statbuf.st_fstype, statbuf.st_fstype);
1150#endif
Roland McGrath6d2b3492002-12-30 00:51:30 +00001151#if HAVE_STRUCT_STAT_ST_GEN
John Hughesc0fc3fd2001-03-08 16:10:40 +00001152 tprintf(", st_gen=%u", statbuf.st_gen);
1153#endif
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001154 tprints("}");
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001155 }
1156 else
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001157 tprints("...}");
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001158}
Wichert Akkermanc7926982000-04-10 22:22:31 +00001159#endif /* HAVE_STAT64 */
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001160
Denys Vlasenko84703742012-02-25 02:38:52 +01001161#if defined(HAVE_STRUCT___OLD_KERNEL_STAT) && !defined(HAVE_LONG_LONG_OFF_T)
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001162static void
Denys Vlasenko1d632462009-04-14 12:51:00 +00001163convertoldstat(const struct __old_kernel_stat *oldbuf, struct stat *newbuf)
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001164{
Denys Vlasenko1d632462009-04-14 12:51:00 +00001165 newbuf->st_dev = oldbuf->st_dev;
1166 newbuf->st_ino = oldbuf->st_ino;
1167 newbuf->st_mode = oldbuf->st_mode;
1168 newbuf->st_nlink = oldbuf->st_nlink;
1169 newbuf->st_uid = oldbuf->st_uid;
1170 newbuf->st_gid = oldbuf->st_gid;
1171 newbuf->st_rdev = oldbuf->st_rdev;
1172 newbuf->st_size = oldbuf->st_size;
1173 newbuf->st_atime = oldbuf->st_atime;
1174 newbuf->st_mtime = oldbuf->st_mtime;
1175 newbuf->st_ctime = oldbuf->st_ctime;
1176 newbuf->st_blksize = 0; /* not supported in old_stat */
1177 newbuf->st_blocks = 0; /* not supported in old_stat */
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001178}
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001179
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001180static void
Denys Vlasenko1d632462009-04-14 12:51:00 +00001181printoldstat(struct tcb *tcp, long addr)
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001182{
Wichert Akkerman25d0c4f1999-04-18 19:35:42 +00001183 struct __old_kernel_stat statbuf;
1184 struct stat newstatbuf;
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001185
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001186 if (!addr) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001187 tprints("NULL");
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001188 return;
1189 }
1190 if (syserror(tcp) || !verbose(tcp)) {
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +00001191 tprintf("%#lx", addr);
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001192 return;
1193 }
Denys Vlasenko4e718b52009-04-20 18:30:13 +00001194
Denys Vlasenko84703742012-02-25 02:38:52 +01001195# ifdef LINUXSPARC
Denys Vlasenko4e718b52009-04-20 18:30:13 +00001196 if (current_personality == 1) {
1197 printstatsol(tcp, addr);
1198 return;
1199 }
Denys Vlasenko84703742012-02-25 02:38:52 +01001200# endif
Denys Vlasenko4e718b52009-04-20 18:30:13 +00001201
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001202 if (umove(tcp, addr, &statbuf) < 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001203 tprints("{...}");
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001204 return;
1205 }
1206
1207 convertoldstat(&statbuf, &newstatbuf);
1208 realprintstat(tcp, &newstatbuf);
1209}
Denys Vlasenko84703742012-02-25 02:38:52 +01001210#endif
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001211
John Hughes70623be2001-03-08 13:59:00 +00001212#ifndef HAVE_LONG_LONG_OFF_T
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001213int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001214sys_stat(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001215{
1216 if (entering(tcp)) {
1217 printpath(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001218 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001219 } else {
1220 printstat(tcp, tcp->u_arg[1]);
1221 }
1222 return 0;
1223}
John Hughesb8c9f772001-03-07 16:53:07 +00001224#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001225
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001226int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001227sys_stat64(struct tcb *tcp)
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001228{
1229#ifdef HAVE_STAT64
1230 if (entering(tcp)) {
1231 printpath(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001232 tprints(", ");
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001233 } else {
1234 printstat64(tcp, tcp->u_arg[1]);
1235 }
1236 return 0;
1237#else
1238 return printargs(tcp);
1239#endif
1240}
1241
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001242#ifndef AT_SYMLINK_NOFOLLOW
Dmitry V. Levin7989ad42012-03-13 23:26:01 +00001243# define AT_SYMLINK_NOFOLLOW 0x100
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001244#endif
Dmitry V. Levin7989ad42012-03-13 23:26:01 +00001245#ifndef AT_REMOVEDIR
1246# define AT_REMOVEDIR 0x200
1247#endif
1248#ifndef AT_SYMLINK_FOLLOW
1249# define AT_SYMLINK_FOLLOW 0x400
1250#endif
1251#ifndef AT_NO_AUTOMOUNT
1252# define AT_NO_AUTOMOUNT 0x800
1253#endif
1254#ifndef AT_EMPTY_PATH
1255# define AT_EMPTY_PATH 0x1000
1256#endif
1257
1258static const struct xlat at_flags[] = {
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001259 { AT_SYMLINK_NOFOLLOW, "AT_SYMLINK_NOFOLLOW" },
Dmitry V. Levin7989ad42012-03-13 23:26:01 +00001260 { AT_REMOVEDIR, "AT_REMOVEDIR" },
1261 { AT_SYMLINK_FOLLOW, "AT_SYMLINK_FOLLOW" },
1262 { AT_NO_AUTOMOUNT, "AT_NO_AUTOMOUNT" },
1263 { AT_EMPTY_PATH, "AT_EMPTY_PATH" },
1264 { 0, NULL }
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001265};
1266
1267int
1268sys_newfstatat(struct tcb *tcp)
1269{
1270 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +03001271 print_dirfd(tcp, tcp->u_arg[0]);
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001272 printpath(tcp, tcp->u_arg[1]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001273 tprints(", ");
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001274 } else {
Andreas Schwabd69fa492010-07-12 21:39:57 +02001275#ifdef POWERPC64
1276 if (current_personality == 0)
1277 printstat(tcp, tcp->u_arg[2]);
1278 else
1279 printstat64(tcp, tcp->u_arg[2]);
1280#elif defined HAVE_STAT64
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001281 printstat64(tcp, tcp->u_arg[2]);
1282#else
1283 printstat(tcp, tcp->u_arg[2]);
1284#endif
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001285 tprints(", ");
Dmitry V. Levin7989ad42012-03-13 23:26:01 +00001286 printflags(at_flags, tcp->u_arg[3], "AT_???");
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001287 }
1288 return 0;
1289}
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001290
Denys Vlasenko84703742012-02-25 02:38:52 +01001291#if defined(HAVE_STRUCT___OLD_KERNEL_STAT) && !defined(HAVE_LONG_LONG_OFF_T)
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001292int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001293sys_oldstat(struct tcb *tcp)
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001294{
1295 if (entering(tcp)) {
1296 printpath(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001297 tprints(", ");
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001298 } else {
1299 printoldstat(tcp, tcp->u_arg[1]);
1300 }
1301 return 0;
1302}
Denys Vlasenko84703742012-02-25 02:38:52 +01001303#endif
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001304
John Hughes70623be2001-03-08 13:59:00 +00001305#ifndef HAVE_LONG_LONG_OFF_T
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001306int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001307sys_fstat(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001308{
Dmitry V. Levin31382132011-03-04 05:08:02 +03001309 if (entering(tcp)) {
1310 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001311 tprints(", ");
Dmitry V. Levin31382132011-03-04 05:08:02 +03001312 } else {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001313 printstat(tcp, tcp->u_arg[1]);
1314 }
1315 return 0;
1316}
John Hughesb8c9f772001-03-07 16:53:07 +00001317#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001318
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001319int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001320sys_fstat64(struct tcb *tcp)
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001321{
1322#ifdef HAVE_STAT64
Dmitry V. Levin31382132011-03-04 05:08:02 +03001323 if (entering(tcp)) {
1324 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001325 tprints(", ");
Dmitry V. Levin31382132011-03-04 05:08:02 +03001326 } else {
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001327 printstat64(tcp, tcp->u_arg[1]);
1328 }
1329 return 0;
1330#else
1331 return printargs(tcp);
1332#endif
1333}
1334
Denys Vlasenko84703742012-02-25 02:38:52 +01001335#if defined(HAVE_STRUCT___OLD_KERNEL_STAT) && !defined(HAVE_LONG_LONG_OFF_T)
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001336int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001337sys_oldfstat(struct tcb *tcp)
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001338{
Dmitry V. Levin31382132011-03-04 05:08:02 +03001339 if (entering(tcp)) {
1340 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001341 tprints(", ");
Dmitry V. Levin31382132011-03-04 05:08:02 +03001342 } else {
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001343 printoldstat(tcp, tcp->u_arg[1]);
1344 }
1345 return 0;
1346}
Denys Vlasenko84703742012-02-25 02:38:52 +01001347#endif
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001348
John Hughes70623be2001-03-08 13:59:00 +00001349#ifndef HAVE_LONG_LONG_OFF_T
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001350int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001351sys_lstat(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001352{
1353 if (entering(tcp)) {
1354 printpath(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001355 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001356 } else {
1357 printstat(tcp, tcp->u_arg[1]);
1358 }
1359 return 0;
1360}
John Hughesb8c9f772001-03-07 16:53:07 +00001361#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001362
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001363int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001364sys_lstat64(struct tcb *tcp)
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001365{
1366#ifdef HAVE_STAT64
1367 if (entering(tcp)) {
1368 printpath(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001369 tprints(", ");
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001370 } else {
1371 printstat64(tcp, tcp->u_arg[1]);
1372 }
1373 return 0;
1374#else
1375 return printargs(tcp);
1376#endif
1377}
1378
Denys Vlasenko84703742012-02-25 02:38:52 +01001379#if defined(HAVE_STRUCT___OLD_KERNEL_STAT) && !defined(HAVE_LONG_LONG_OFF_T)
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001380int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001381sys_oldlstat(struct tcb *tcp)
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001382{
1383 if (entering(tcp)) {
1384 printpath(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001385 tprints(", ");
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001386 } else {
1387 printoldstat(tcp, tcp->u_arg[1]);
1388 }
1389 return 0;
1390}
Denys Vlasenko84703742012-02-25 02:38:52 +01001391#endif
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001392
Denys Vlasenko84703742012-02-25 02:38:52 +01001393#if defined(LINUXSPARC)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001394
1395int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001396sys_xstat(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001397{
1398 if (entering(tcp)) {
1399 tprintf("%ld, ", tcp->u_arg[0]);
1400 printpath(tcp, tcp->u_arg[1]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001401 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001402 } else {
Denys Vlasenko84703742012-02-25 02:38:52 +01001403# ifdef _STAT64_VER
John Hughes8fe2c982001-03-06 09:45:18 +00001404 if (tcp->u_arg[0] == _STAT64_VER)
Denys Vlasenkob237b1b2012-02-27 13:56:59 +01001405 printstat64(tcp, tcp->u_arg[2]);
John Hughes8fe2c982001-03-06 09:45:18 +00001406 else
Denys Vlasenko84703742012-02-25 02:38:52 +01001407# endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001408 printstat(tcp, tcp->u_arg[2]);
1409 }
1410 return 0;
1411}
1412
1413int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001414sys_fxstat(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001415{
1416 if (entering(tcp))
1417 tprintf("%ld, %ld, ", tcp->u_arg[0], tcp->u_arg[1]);
1418 else {
Denys Vlasenko84703742012-02-25 02:38:52 +01001419# ifdef _STAT64_VER
John Hughes8fe2c982001-03-06 09:45:18 +00001420 if (tcp->u_arg[0] == _STAT64_VER)
Denys Vlasenkob237b1b2012-02-27 13:56:59 +01001421 printstat64(tcp, tcp->u_arg[2]);
John Hughes8fe2c982001-03-06 09:45:18 +00001422 else
Denys Vlasenko84703742012-02-25 02:38:52 +01001423# endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001424 printstat(tcp, tcp->u_arg[2]);
1425 }
1426 return 0;
1427}
1428
1429int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001430sys_lxstat(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001431{
1432 if (entering(tcp)) {
1433 tprintf("%ld, ", tcp->u_arg[0]);
1434 printpath(tcp, tcp->u_arg[1]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001435 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001436 } else {
Denys Vlasenko84703742012-02-25 02:38:52 +01001437# ifdef _STAT64_VER
John Hughes8fe2c982001-03-06 09:45:18 +00001438 if (tcp->u_arg[0] == _STAT64_VER)
Denys Vlasenkob237b1b2012-02-27 13:56:59 +01001439 printstat64(tcp, tcp->u_arg[2]);
John Hughes8fe2c982001-03-06 09:45:18 +00001440 else
Denys Vlasenko84703742012-02-25 02:38:52 +01001441# endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001442 printstat(tcp, tcp->u_arg[2]);
1443 }
1444 return 0;
1445}
1446
1447int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001448sys_xmknod(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001449{
1450 int mode = tcp->u_arg[2];
1451
1452 if (entering(tcp)) {
1453 tprintf("%ld, ", tcp->u_arg[0]);
1454 printpath(tcp, tcp->u_arg[1]);
1455 tprintf(", %s", sprintmode(mode));
1456 switch (mode & S_IFMT) {
1457 case S_IFCHR: case S_IFBLK:
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001458 tprintf(", makedev(%lu, %lu)",
1459 (unsigned long) ((tcp->u_arg[3] >> 18) & 0x3fff),
1460 (unsigned long) (tcp->u_arg[3] & 0x3ffff));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001461 break;
1462 default:
1463 break;
1464 }
1465 }
1466 return 0;
1467}
1468
Denys Vlasenko84703742012-02-25 02:38:52 +01001469# ifdef HAVE_SYS_ACL_H
Wichert Akkerman8829a551999-06-11 13:18:40 +00001470
Denys Vlasenko84703742012-02-25 02:38:52 +01001471# include <sys/acl.h>
Wichert Akkerman8829a551999-06-11 13:18:40 +00001472
Roland McGratha4d48532005-06-08 20:45:28 +00001473static const struct xlat aclcmds[] = {
Denys Vlasenko84703742012-02-25 02:38:52 +01001474# ifdef SETACL
Wichert Akkerman8829a551999-06-11 13:18:40 +00001475 { SETACL, "SETACL" },
Denys Vlasenko84703742012-02-25 02:38:52 +01001476# endif
1477# ifdef GETACL
Wichert Akkerman8829a551999-06-11 13:18:40 +00001478 { GETACL, "GETACL" },
Denys Vlasenko84703742012-02-25 02:38:52 +01001479# endif
1480# ifdef GETACLCNT
Wichert Akkerman8829a551999-06-11 13:18:40 +00001481 { GETACLCNT, "GETACLCNT" },
Denys Vlasenko84703742012-02-25 02:38:52 +01001482# endif
1483# ifdef ACL_GET
Wichert Akkermane4aafd41999-11-26 09:54:08 +00001484 { ACL_GET, "ACL_GET" },
Denys Vlasenko84703742012-02-25 02:38:52 +01001485# endif
1486# ifdef ACL_SET
Wichert Akkermane4aafd41999-11-26 09:54:08 +00001487 { ACL_SET, "ACL_SET" },
Denys Vlasenko84703742012-02-25 02:38:52 +01001488# endif
1489# ifdef ACL_CNT
Wichert Akkermane4aafd41999-11-26 09:54:08 +00001490 { ACL_CNT, "ACL_CNT" },
Denys Vlasenko84703742012-02-25 02:38:52 +01001491# endif
Wichert Akkerman8829a551999-06-11 13:18:40 +00001492 { 0, NULL },
1493};
1494
1495int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001496sys_acl(struct tcb *tcp)
Wichert Akkerman8829a551999-06-11 13:18:40 +00001497{
1498 if (entering(tcp)) {
1499 printpath(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001500 tprints(", ");
Wichert Akkerman8829a551999-06-11 13:18:40 +00001501 printxval(aclcmds, tcp->u_arg[1], "???ACL???");
1502 tprintf(", %ld", tcp->u_arg[2]);
1503 /*
1504 * FIXME - dump out the list of aclent_t's pointed to
1505 * by "tcp->u_arg[3]" if it's not NULL.
1506 */
1507 if (tcp->u_arg[3])
1508 tprintf(", %#lx", tcp->u_arg[3]);
1509 else
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001510 tprints(", NULL");
Wichert Akkerman8829a551999-06-11 13:18:40 +00001511 }
1512 return 0;
1513}
1514
Wichert Akkerman8829a551999-06-11 13:18:40 +00001515int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001516sys_facl(struct tcb *tcp)
Wichert Akkerman8829a551999-06-11 13:18:40 +00001517{
1518 if (entering(tcp)) {
1519 tprintf("%ld, ", tcp->u_arg[0]);
1520 printxval(aclcmds, tcp->u_arg[1], "???ACL???");
1521 tprintf(", %ld", tcp->u_arg[2]);
1522 /*
1523 * FIXME - dump out the list of aclent_t's pointed to
1524 * by "tcp->u_arg[3]" if it's not NULL.
1525 */
1526 if (tcp->u_arg[3])
1527 tprintf(", %#lx", tcp->u_arg[3]);
1528 else
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001529 tprints(", NULL");
Wichert Akkerman8829a551999-06-11 13:18:40 +00001530 }
1531 return 0;
1532}
1533
Roland McGratha4d48532005-06-08 20:45:28 +00001534static const struct xlat aclipc[] = {
Denys Vlasenko84703742012-02-25 02:38:52 +01001535# ifdef IPC_SHM
Wichert Akkermane4aafd41999-11-26 09:54:08 +00001536 { IPC_SHM, "IPC_SHM" },
Denys Vlasenko84703742012-02-25 02:38:52 +01001537# endif
1538# ifdef IPC_SEM
Wichert Akkermane4aafd41999-11-26 09:54:08 +00001539 { IPC_SEM, "IPC_SEM" },
Denys Vlasenko84703742012-02-25 02:38:52 +01001540# endif
1541# ifdef IPC_MSG
Wichert Akkermane4aafd41999-11-26 09:54:08 +00001542 { IPC_MSG, "IPC_MSG" },
Denys Vlasenko84703742012-02-25 02:38:52 +01001543# endif
Wichert Akkermane4aafd41999-11-26 09:54:08 +00001544 { 0, NULL },
1545};
1546
Wichert Akkermane4aafd41999-11-26 09:54:08 +00001547int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001548sys_aclipc(struct tcb *tcp)
Wichert Akkermane4aafd41999-11-26 09:54:08 +00001549{
1550 if (entering(tcp)) {
1551 printxval(aclipc, tcp->u_arg[0], "???IPC???");
1552 tprintf(", %#lx, ", tcp->u_arg[1]);
1553 printxval(aclcmds, tcp->u_arg[2], "???ACL???");
1554 tprintf(", %ld", tcp->u_arg[3]);
1555 /*
1556 * FIXME - dump out the list of aclent_t's pointed to
1557 * by "tcp->u_arg[4]" if it's not NULL.
1558 */
1559 if (tcp->u_arg[4])
1560 tprintf(", %#lx", tcp->u_arg[4]);
1561 else
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001562 tprints(", NULL");
Wichert Akkermane4aafd41999-11-26 09:54:08 +00001563 }
1564 return 0;
1565}
1566
Denys Vlasenko84703742012-02-25 02:38:52 +01001567# endif /* HAVE_SYS_ACL_H */
Wichert Akkerman8829a551999-06-11 13:18:40 +00001568
Denys Vlasenko84703742012-02-25 02:38:52 +01001569#endif /* LINUXSPARC */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001570
Roland McGrathd9f816f2004-09-04 03:39:20 +00001571static const struct xlat fsmagic[] = {
Wichert Akkerman43a74822000-06-27 17:33:32 +00001572 { 0x73757245, "CODA_SUPER_MAGIC" },
1573 { 0x012ff7b7, "COH_SUPER_MAGIC" },
1574 { 0x1373, "DEVFS_SUPER_MAGIC" },
1575 { 0x1cd1, "DEVPTS_SUPER_MAGIC" },
1576 { 0x414A53, "EFS_SUPER_MAGIC" },
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001577 { 0xef51, "EXT2_OLD_SUPER_MAGIC" },
1578 { 0xef53, "EXT2_SUPER_MAGIC" },
1579 { 0x137d, "EXT_SUPER_MAGIC" },
Wichert Akkerman43a74822000-06-27 17:33:32 +00001580 { 0xf995e849, "HPFS_SUPER_MAGIC" },
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001581 { 0x9660, "ISOFS_SUPER_MAGIC" },
1582 { 0x137f, "MINIX_SUPER_MAGIC" },
1583 { 0x138f, "MINIX_SUPER_MAGIC2" },
Wichert Akkerman2e2553a1999-05-09 00:29:58 +00001584 { 0x2468, "MINIX2_SUPER_MAGIC" },
1585 { 0x2478, "MINIX2_SUPER_MAGIC2" },
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001586 { 0x4d44, "MSDOS_SUPER_MAGIC" },
Wichert Akkerman43a74822000-06-27 17:33:32 +00001587 { 0x564c, "NCP_SUPER_MAGIC" },
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001588 { 0x6969, "NFS_SUPER_MAGIC" },
1589 { 0x9fa0, "PROC_SUPER_MAGIC" },
Wichert Akkerman43a74822000-06-27 17:33:32 +00001590 { 0x002f, "QNX4_SUPER_MAGIC" },
1591 { 0x52654973, "REISERFS_SUPER_MAGIC" },
1592 { 0x02011994, "SHMFS_SUPER_MAGIC" },
1593 { 0x517b, "SMB_SUPER_MAGIC" },
1594 { 0x012ff7b6, "SYSV2_SUPER_MAGIC" },
1595 { 0x012ff7b5, "SYSV4_SUPER_MAGIC" },
1596 { 0x00011954, "UFS_MAGIC" },
1597 { 0x54190100, "UFS_CIGAM" },
1598 { 0x012ff7b4, "XENIX_SUPER_MAGIC" },
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001599 { 0x012fd16d, "XIAFS_SUPER_MAGIC" },
Roland McGrathc767ad82004-01-13 10:13:45 +00001600 { 0x62656572, "SYSFS_MAGIC" },
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001601 { 0, NULL },
1602};
1603
Roland McGrathf9c49b22004-10-06 22:11:54 +00001604static const char *
Denys Vlasenko1d632462009-04-14 12:51:00 +00001605sprintfstype(int magic)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001606{
1607 static char buf[32];
Roland McGrathf9c49b22004-10-06 22:11:54 +00001608 const char *s;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001609
1610 s = xlookup(fsmagic, magic);
1611 if (s) {
1612 sprintf(buf, "\"%s\"", s);
1613 return buf;
1614 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001615 sprintf(buf, "%#x", magic);
1616 return buf;
1617}
1618
1619static void
Denys Vlasenko1d632462009-04-14 12:51:00 +00001620printstatfs(struct tcb *tcp, long addr)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001621{
1622 struct statfs statbuf;
1623
1624 if (syserror(tcp) || !verbose(tcp)) {
1625 tprintf("%#lx", addr);
1626 return;
1627 }
1628 if (umove(tcp, addr, &statbuf) < 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001629 tprints("{...}");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001630 return;
1631 }
1632#ifdef ALPHA
1633
1634 tprintf("{f_type=%s, f_fbsize=%u, f_blocks=%u, f_bfree=%u, ",
1635 sprintfstype(statbuf.f_type),
1636 statbuf.f_bsize, statbuf.f_blocks, statbuf.f_bfree);
Roland McGrathab147c52003-07-17 09:03:02 +00001637 tprintf("f_bavail=%u, f_files=%u, f_ffree=%u, f_fsid={%d, %d}, f_namelen=%u",
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001638 statbuf.f_bavail, statbuf.f_files, statbuf.f_ffree,
Roland McGrathab147c52003-07-17 09:03:02 +00001639 statbuf.f_fsid.__val[0], statbuf.f_fsid.__val[1],
1640 statbuf.f_namelen);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001641#else /* !ALPHA */
1642 tprintf("{f_type=%s, f_bsize=%lu, f_blocks=%lu, f_bfree=%lu, ",
1643 sprintfstype(statbuf.f_type),
Nate Sammons5c74d201999-04-06 01:37:51 +00001644 (unsigned long)statbuf.f_bsize,
1645 (unsigned long)statbuf.f_blocks,
1646 (unsigned long)statbuf.f_bfree);
Roland McGrathab147c52003-07-17 09:03:02 +00001647 tprintf("f_bavail=%lu, f_files=%lu, f_ffree=%lu, f_fsid={%d, %d}",
1648 (unsigned long)statbuf.f_bavail,
Nate Sammons5c74d201999-04-06 01:37:51 +00001649 (unsigned long)statbuf.f_files,
Roland McGrathab147c52003-07-17 09:03:02 +00001650 (unsigned long)statbuf.f_ffree,
1651 statbuf.f_fsid.__val[0], statbuf.f_fsid.__val[1]);
Wichert Akkerman2e2553a1999-05-09 00:29:58 +00001652 tprintf(", f_namelen=%lu", (unsigned long)statbuf.f_namelen);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001653#endif /* !ALPHA */
Roland McGrathab147c52003-07-17 09:03:02 +00001654#ifdef _STATFS_F_FRSIZE
1655 tprintf(", f_frsize=%lu", (unsigned long)statbuf.f_frsize);
1656#endif
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001657 tprints("}");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001658}
1659
1660int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001661sys_statfs(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001662{
1663 if (entering(tcp)) {
1664 printpath(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001665 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001666 } else {
1667 printstatfs(tcp, tcp->u_arg[1]);
1668 }
1669 return 0;
1670}
1671
1672int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001673sys_fstatfs(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001674{
1675 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +03001676 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001677 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001678 } else {
1679 printstatfs(tcp, tcp->u_arg[1]);
1680 }
1681 return 0;
1682}
1683
Denys Vlasenko84703742012-02-25 02:38:52 +01001684#if defined HAVE_STATFS64
Roland McGrathab147c52003-07-17 09:03:02 +00001685static void
Denys Vlasenko1d632462009-04-14 12:51:00 +00001686printstatfs64(struct tcb *tcp, long addr)
Roland McGrathab147c52003-07-17 09:03:02 +00001687{
1688 struct statfs64 statbuf;
1689
1690 if (syserror(tcp) || !verbose(tcp)) {
1691 tprintf("%#lx", addr);
1692 return;
1693 }
1694 if (umove(tcp, addr, &statbuf) < 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001695 tprints("{...}");
Roland McGrathab147c52003-07-17 09:03:02 +00001696 return;
1697 }
Roland McGrath08738432005-06-03 02:40:39 +00001698 tprintf("{f_type=%s, f_bsize=%llu, f_blocks=%llu, f_bfree=%llu, ",
Roland McGrathab147c52003-07-17 09:03:02 +00001699 sprintfstype(statbuf.f_type),
Roland McGrath08738432005-06-03 02:40:39 +00001700 (unsigned long long)statbuf.f_bsize,
1701 (unsigned long long)statbuf.f_blocks,
1702 (unsigned long long)statbuf.f_bfree);
1703 tprintf("f_bavail=%llu, f_files=%llu, f_ffree=%llu, f_fsid={%d, %d}",
1704 (unsigned long long)statbuf.f_bavail,
1705 (unsigned long long)statbuf.f_files,
1706 (unsigned long long)statbuf.f_ffree,
Roland McGrathab147c52003-07-17 09:03:02 +00001707 statbuf.f_fsid.__val[0], statbuf.f_fsid.__val[1]);
1708 tprintf(", f_namelen=%lu", (unsigned long)statbuf.f_namelen);
Roland McGrathab147c52003-07-17 09:03:02 +00001709#ifdef _STATFS_F_FRSIZE
Roland McGrath08738432005-06-03 02:40:39 +00001710 tprintf(", f_frsize=%llu", (unsigned long long)statbuf.f_frsize);
Roland McGrathab147c52003-07-17 09:03:02 +00001711#endif
Andreas Schwab000d66f2012-01-17 18:13:33 +01001712#ifdef _STATFS_F_FLAGS
1713 tprintf(", f_flags=%llu", (unsigned long long)statbuf.f_flags);
1714#endif
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001715 tprints("}");
Roland McGrathab147c52003-07-17 09:03:02 +00001716}
1717
Andreas Schwab7d558012012-01-17 18:14:22 +01001718struct compat_statfs64 {
1719 uint32_t f_type;
1720 uint32_t f_bsize;
1721 uint64_t f_blocks;
1722 uint64_t f_bfree;
1723 uint64_t f_bavail;
1724 uint64_t f_files;
1725 uint64_t f_ffree;
1726 fsid_t f_fsid;
1727 uint32_t f_namelen;
1728 uint32_t f_frsize;
1729 uint32_t f_flags;
1730 uint32_t f_spare[4];
1731}
1732#if defined(X86_64) || defined(IA64)
1733 __attribute__ ((packed, aligned(4)))
1734#endif
1735;
1736
1737static void
1738printcompat_statfs64(struct tcb *tcp, long addr)
1739{
1740 struct compat_statfs64 statbuf;
1741
1742 if (syserror(tcp) || !verbose(tcp)) {
1743 tprintf("%#lx", addr);
1744 return;
1745 }
1746 if (umove(tcp, addr, &statbuf) < 0) {
1747 tprints("{...}");
1748 return;
1749 }
1750 tprintf("{f_type=%s, f_bsize=%lu, f_blocks=%llu, f_bfree=%llu, ",
1751 sprintfstype(statbuf.f_type),
1752 (unsigned long)statbuf.f_bsize,
1753 (unsigned long long)statbuf.f_blocks,
1754 (unsigned long long)statbuf.f_bfree);
1755 tprintf("f_bavail=%llu, f_files=%llu, f_ffree=%llu, f_fsid={%d, %d}",
1756 (unsigned long long)statbuf.f_bavail,
1757 (unsigned long long)statbuf.f_files,
1758 (unsigned long long)statbuf.f_ffree,
1759 statbuf.f_fsid.__val[0], statbuf.f_fsid.__val[1]);
1760 tprintf(", f_namelen=%lu", (unsigned long)statbuf.f_namelen);
1761 tprintf(", f_frsize=%lu", (unsigned long)statbuf.f_frsize);
Denys Vlasenko1945ccc2012-02-27 14:37:48 +01001762 tprintf(", f_flags=%lu}", (unsigned long)statbuf.f_frsize);
Andreas Schwab7d558012012-01-17 18:14:22 +01001763}
1764
Roland McGrathab147c52003-07-17 09:03:02 +00001765int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001766sys_statfs64(struct tcb *tcp)
Roland McGrathab147c52003-07-17 09:03:02 +00001767{
1768 if (entering(tcp)) {
1769 printpath(tcp, tcp->u_arg[0]);
1770 tprintf(", %lu, ", tcp->u_arg[1]);
1771 } else {
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001772 if (tcp->u_arg[1] == sizeof(struct statfs64))
Roland McGrathab147c52003-07-17 09:03:02 +00001773 printstatfs64(tcp, tcp->u_arg[2]);
Andreas Schwab7d558012012-01-17 18:14:22 +01001774 else if (tcp->u_arg[1] == sizeof(struct compat_statfs64))
1775 printcompat_statfs64(tcp, tcp->u_arg[2]);
Roland McGrathab147c52003-07-17 09:03:02 +00001776 else
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001777 tprints("{???}");
Roland McGrathab147c52003-07-17 09:03:02 +00001778 }
1779 return 0;
1780}
1781
1782int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001783sys_fstatfs64(struct tcb *tcp)
Roland McGrathab147c52003-07-17 09:03:02 +00001784{
1785 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +03001786 printfd(tcp, tcp->u_arg[0]);
1787 tprintf(", %lu, ", tcp->u_arg[1]);
Roland McGrathab147c52003-07-17 09:03:02 +00001788 } else {
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001789 if (tcp->u_arg[1] == sizeof(struct statfs64))
Roland McGrathab147c52003-07-17 09:03:02 +00001790 printstatfs64(tcp, tcp->u_arg[2]);
Andreas Schwab7d558012012-01-17 18:14:22 +01001791 else if (tcp->u_arg[1] == sizeof(struct compat_statfs64))
1792 printcompat_statfs64(tcp, tcp->u_arg[2]);
Roland McGrathab147c52003-07-17 09:03:02 +00001793 else
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001794 tprints("{???}");
Roland McGrathab147c52003-07-17 09:03:02 +00001795 }
1796 return 0;
1797}
1798#endif
1799
Denys Vlasenkoc36c3522012-02-25 02:47:15 +01001800#if defined(ALPHA)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001801int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001802osf_statfs(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001803{
1804 if (entering(tcp)) {
1805 printpath(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001806 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001807 } else {
1808 printstatfs(tcp, tcp->u_arg[1]);
1809 tprintf(", %lu", tcp->u_arg[2]);
1810 }
1811 return 0;
1812}
1813
1814int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001815osf_fstatfs(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001816{
1817 if (entering(tcp)) {
1818 tprintf("%lu, ", tcp->u_arg[0]);
1819 } else {
1820 printstatfs(tcp, tcp->u_arg[1]);
1821 tprintf(", %lu", tcp->u_arg[2]);
1822 }
1823 return 0;
1824}
Denys Vlasenko84703742012-02-25 02:38:52 +01001825#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001826
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001827/* directory */
1828int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001829sys_chdir(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001830{
1831 if (entering(tcp)) {
1832 printpath(tcp, tcp->u_arg[0]);
1833 }
1834 return 0;
1835}
1836
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001837static int
1838decode_mkdir(struct tcb *tcp, int offset)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001839{
1840 if (entering(tcp)) {
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001841 printpath(tcp, tcp->u_arg[offset]);
1842 tprintf(", %#lo", tcp->u_arg[offset + 1]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001843 }
1844 return 0;
1845}
1846
1847int
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001848sys_mkdir(struct tcb *tcp)
1849{
1850 return decode_mkdir(tcp, 0);
1851}
1852
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001853int
1854sys_mkdirat(struct tcb *tcp)
1855{
1856 if (entering(tcp))
Dmitry V. Levin31382132011-03-04 05:08:02 +03001857 print_dirfd(tcp, tcp->u_arg[0]);
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001858 return decode_mkdir(tcp, 1);
1859}
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001860
1861int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001862sys_link(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001863{
1864 if (entering(tcp)) {
1865 printpath(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001866 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001867 printpath(tcp, tcp->u_arg[1]);
1868 }
1869 return 0;
1870}
1871
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001872int
1873sys_linkat(struct tcb *tcp)
1874{
1875 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +03001876 print_dirfd(tcp, tcp->u_arg[0]);
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001877 printpath(tcp, tcp->u_arg[1]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001878 tprints(", ");
Dmitry V. Levin31382132011-03-04 05:08:02 +03001879 print_dirfd(tcp, tcp->u_arg[2]);
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001880 printpath(tcp, tcp->u_arg[3]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001881 tprints(", ");
Dmitry V. Levin7989ad42012-03-13 23:26:01 +00001882 printflags(at_flags, tcp->u_arg[4], "AT_???");
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001883 }
1884 return 0;
1885}
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001886
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001887int
1888sys_unlinkat(struct tcb *tcp)
1889{
1890 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +03001891 print_dirfd(tcp, tcp->u_arg[0]);
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001892 printpath(tcp, tcp->u_arg[1]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001893 tprints(", ");
Dmitry V. Levin7989ad42012-03-13 23:26:01 +00001894 printflags(at_flags, tcp->u_arg[2], "AT_???");
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001895 }
1896 return 0;
1897}
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001898
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001899int
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001900sys_symlinkat(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001901{
1902 if (entering(tcp)) {
1903 printpath(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001904 tprints(", ");
Dmitry V. Levin31382132011-03-04 05:08:02 +03001905 print_dirfd(tcp, tcp->u_arg[1]);
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001906 printpath(tcp, tcp->u_arg[2]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001907 }
1908 return 0;
1909}
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001910
1911static int
1912decode_readlink(struct tcb *tcp, int offset)
1913{
1914 if (entering(tcp)) {
1915 printpath(tcp, tcp->u_arg[offset]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001916 tprints(", ");
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001917 } else {
1918 if (syserror(tcp))
1919 tprintf("%#lx", tcp->u_arg[offset + 1]);
1920 else
Denys Vlasenko3449ae82012-01-27 17:24:26 +01001921 /* Used to use printpathn(), but readlink
1922 * neither includes NUL in the returned count,
1923 * nor actually writes it into memory.
1924 * printpathn() would decide on printing
1925 * "..." continuation based on garbage
1926 * past return buffer's end.
1927 */
1928 printstr(tcp, tcp->u_arg[offset + 1], tcp->u_rval);
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001929 tprintf(", %lu", tcp->u_arg[offset + 2]);
1930 }
1931 return 0;
1932}
1933
1934int
1935sys_readlink(struct tcb *tcp)
1936{
1937 return decode_readlink(tcp, 0);
1938}
1939
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001940int
1941sys_readlinkat(struct tcb *tcp)
1942{
1943 if (entering(tcp))
Dmitry V. Levin31382132011-03-04 05:08:02 +03001944 print_dirfd(tcp, tcp->u_arg[0]);
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001945 return decode_readlink(tcp, 1);
1946}
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001947
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001948int
1949sys_renameat(struct tcb *tcp)
1950{
1951 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +03001952 print_dirfd(tcp, tcp->u_arg[0]);
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001953 printpath(tcp, tcp->u_arg[1]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001954 tprints(", ");
Dmitry V. Levin31382132011-03-04 05:08:02 +03001955 print_dirfd(tcp, tcp->u_arg[2]);
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001956 printpath(tcp, tcp->u_arg[3]);
1957 }
1958 return 0;
1959}
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001960
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001961int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001962sys_chown(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001963{
1964 if (entering(tcp)) {
1965 printpath(tcp, tcp->u_arg[0]);
Roland McGrath6bc12202003-11-13 22:32:27 +00001966 printuid(", ", tcp->u_arg[1]);
1967 printuid(", ", tcp->u_arg[2]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001968 }
1969 return 0;
1970}
1971
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001972int
1973sys_fchownat(struct tcb *tcp)
1974{
1975 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +03001976 print_dirfd(tcp, tcp->u_arg[0]);
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001977 printpath(tcp, tcp->u_arg[1]);
1978 printuid(", ", tcp->u_arg[2]);
1979 printuid(", ", tcp->u_arg[3]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001980 tprints(", ");
Dmitry V. Levin7989ad42012-03-13 23:26:01 +00001981 printflags(at_flags, tcp->u_arg[4], "AT_???");
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001982 }
1983 return 0;
1984}
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001985
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001986int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001987sys_fchown(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001988{
1989 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +03001990 printfd(tcp, tcp->u_arg[0]);
Roland McGrath6bc12202003-11-13 22:32:27 +00001991 printuid(", ", tcp->u_arg[1]);
1992 printuid(", ", tcp->u_arg[2]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001993 }
1994 return 0;
1995}
1996
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001997static int
1998decode_chmod(struct tcb *tcp, int offset)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001999{
2000 if (entering(tcp)) {
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002001 printpath(tcp, tcp->u_arg[offset]);
2002 tprintf(", %#lo", tcp->u_arg[offset + 1]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002003 }
2004 return 0;
2005}
2006
2007int
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002008sys_chmod(struct tcb *tcp)
2009{
2010 return decode_chmod(tcp, 0);
2011}
2012
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002013int
2014sys_fchmodat(struct tcb *tcp)
2015{
2016 if (entering(tcp))
Dmitry V. Levin31382132011-03-04 05:08:02 +03002017 print_dirfd(tcp, tcp->u_arg[0]);
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002018 return decode_chmod(tcp, 1);
2019}
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002020
2021int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002022sys_fchmod(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002023{
2024 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +03002025 printfd(tcp, tcp->u_arg[0]);
2026 tprintf(", %#lo", tcp->u_arg[1]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002027 }
2028 return 0;
2029}
2030
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +00002031#ifdef ALPHA
2032int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002033sys_osf_utimes(struct tcb *tcp)
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +00002034{
Denys Vlasenko1d632462009-04-14 12:51:00 +00002035 if (entering(tcp)) {
2036 printpath(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002037 tprints(", ");
Denys Vlasenko1d632462009-04-14 12:51:00 +00002038 printtv_bitness(tcp, tcp->u_arg[1], BITNESS_32, 0);
2039 }
2040 return 0;
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +00002041}
2042#endif
2043
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002044static int
Roland McGrath6afc5652007-07-24 01:57:11 +00002045decode_utimes(struct tcb *tcp, int offset, int special)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002046{
2047 if (entering(tcp)) {
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002048 printpath(tcp, tcp->u_arg[offset]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002049 tprints(", ");
Roland McGrath6afc5652007-07-24 01:57:11 +00002050 if (tcp->u_arg[offset + 1] == 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002051 tprints("NULL");
Roland McGrath6afc5652007-07-24 01:57:11 +00002052 else {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002053 tprints("{");
Roland McGrath6afc5652007-07-24 01:57:11 +00002054 printtv_bitness(tcp, tcp->u_arg[offset + 1],
2055 BITNESS_CURRENT, special);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002056 tprints(", ");
Roland McGrathe6d0f712007-08-07 01:22:49 +00002057 printtv_bitness(tcp, tcp->u_arg[offset + 1]
Denys Vlasenkob63256e2011-06-07 12:13:24 +02002058 + sizeof(struct timeval),
Roland McGrath6afc5652007-07-24 01:57:11 +00002059 BITNESS_CURRENT, special);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002060 tprints("}");
Roland McGrath6afc5652007-07-24 01:57:11 +00002061 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002062 }
2063 return 0;
2064}
2065
2066int
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002067sys_utimes(struct tcb *tcp)
2068{
Roland McGrath6afc5652007-07-24 01:57:11 +00002069 return decode_utimes(tcp, 0, 0);
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002070}
2071
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002072int
2073sys_futimesat(struct tcb *tcp)
2074{
2075 if (entering(tcp))
Dmitry V. Levin31382132011-03-04 05:08:02 +03002076 print_dirfd(tcp, tcp->u_arg[0]);
Roland McGrath6afc5652007-07-24 01:57:11 +00002077 return decode_utimes(tcp, 1, 0);
2078}
2079
2080int
2081sys_utimensat(struct tcb *tcp)
2082{
2083 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +03002084 print_dirfd(tcp, tcp->u_arg[0]);
Roland McGrath6afc5652007-07-24 01:57:11 +00002085 decode_utimes(tcp, 1, 1);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002086 tprints(", ");
Dmitry V. Levin7989ad42012-03-13 23:26:01 +00002087 printflags(at_flags, tcp->u_arg[3], "AT_???");
Roland McGrath6afc5652007-07-24 01:57:11 +00002088 }
2089 return 0;
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002090}
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002091
2092int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002093sys_utime(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002094{
Roland McGrath7e9817c2007-07-05 20:31:58 +00002095 union {
2096 long utl[2];
2097 int uti[2];
2098 } u;
Denys Vlasenko1945ccc2012-02-27 14:37:48 +01002099 unsigned wordsize = personality_wordsize[current_personality];
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002100
2101 if (entering(tcp)) {
2102 printpath(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002103 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002104 if (!tcp->u_arg[1])
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002105 tprints("NULL");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002106 else if (!verbose(tcp))
2107 tprintf("%#lx", tcp->u_arg[1]);
Denys Vlasenko1945ccc2012-02-27 14:37:48 +01002108 else if (umoven(tcp, tcp->u_arg[1], 2 * wordsize, (char *) &u) < 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002109 tprints("[?, ?]");
Denys Vlasenko1945ccc2012-02-27 14:37:48 +01002110 else if (wordsize == sizeof u.utl[0]) {
Roland McGrath7e9817c2007-07-05 20:31:58 +00002111 tprintf("[%s,", sprinttime(u.utl[0]));
2112 tprintf(" %s]", sprinttime(u.utl[1]));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002113 }
Denys Vlasenko1945ccc2012-02-27 14:37:48 +01002114 else if (wordsize == sizeof u.uti[0]) {
Roland McGrath7e9817c2007-07-05 20:31:58 +00002115 tprintf("[%s,", sprinttime(u.uti[0]));
2116 tprintf(" %s]", sprinttime(u.uti[1]));
2117 }
2118 else
2119 abort();
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002120 }
2121 return 0;
2122}
2123
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002124static int
2125decode_mknod(struct tcb *tcp, int offset)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002126{
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002127 int mode = tcp->u_arg[offset + 1];
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002128
2129 if (entering(tcp)) {
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002130 printpath(tcp, tcp->u_arg[offset]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002131 tprintf(", %s", sprintmode(mode));
2132 switch (mode & S_IFMT) {
Denys Vlasenkob237b1b2012-02-27 13:56:59 +01002133 case S_IFCHR:
2134 case S_IFBLK:
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002135#ifdef LINUXSPARC
2136 if (current_personality == 1)
Denys Vlasenkob237b1b2012-02-27 13:56:59 +01002137 tprintf(", makedev(%lu, %lu)",
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002138 (unsigned long) ((tcp->u_arg[offset + 2] >> 18) & 0x3fff),
2139 (unsigned long) (tcp->u_arg[offset + 2] & 0x3ffff));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002140 else
Roland McGrath186c5ac2002-12-15 23:58:23 +00002141#endif
Denys Vlasenkob237b1b2012-02-27 13:56:59 +01002142 tprintf(", makedev(%lu, %lu)",
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002143 (unsigned long) major(tcp->u_arg[offset + 2]),
2144 (unsigned long) minor(tcp->u_arg[offset + 2]));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002145 break;
2146 default:
2147 break;
2148 }
2149 }
2150 return 0;
2151}
2152
2153int
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002154sys_mknod(struct tcb *tcp)
2155{
2156 return decode_mknod(tcp, 0);
2157}
2158
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002159int
2160sys_mknodat(struct tcb *tcp)
2161{
2162 if (entering(tcp))
Dmitry V. Levin31382132011-03-04 05:08:02 +03002163 print_dirfd(tcp, tcp->u_arg[0]);
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002164 return decode_mknod(tcp, 1);
2165}
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002166
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002167static void
Denys Vlasenko1d632462009-04-14 12:51:00 +00002168printdir(struct tcb *tcp, long addr)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002169{
2170 struct dirent d;
2171
2172 if (!verbose(tcp)) {
2173 tprintf("%#lx", addr);
2174 return;
2175 }
2176 if (umove(tcp, addr, &d) < 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002177 tprints("{...}");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002178 return;
2179 }
2180 tprintf("{d_ino=%ld, ", (unsigned long) d.d_ino);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002181 tprints("d_name=");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002182 printpathn(tcp, (long) ((struct dirent *) addr)->d_name, d.d_reclen);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002183 tprints("}");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002184}
2185
2186int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002187sys_readdir(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002188{
2189 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +03002190 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002191 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002192 } else {
2193 if (syserror(tcp) || tcp->u_rval == 0 || !verbose(tcp))
2194 tprintf("%#lx", tcp->u_arg[1]);
2195 else
2196 printdir(tcp, tcp->u_arg[1]);
2197 /* Not much point in printing this out, it is always 1. */
2198 if (tcp->u_arg[2] != 1)
2199 tprintf(", %lu", tcp->u_arg[2]);
2200 }
2201 return 0;
2202}
2203
Roland McGratha4d48532005-06-08 20:45:28 +00002204static const struct xlat direnttypes[] = {
Denys Vlasenkob63256e2011-06-07 12:13:24 +02002205 { DT_UNKNOWN, "DT_UNKNOWN" },
2206 { DT_FIFO, "DT_FIFO" },
2207 { DT_CHR, "DT_CHR" },
2208 { DT_DIR, "DT_DIR" },
2209 { DT_BLK, "DT_BLK" },
2210 { DT_REG, "DT_REG" },
2211 { DT_LNK, "DT_LNK" },
2212 { DT_SOCK, "DT_SOCK" },
2213 { DT_WHT, "DT_WHT" },
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00002214 { 0, NULL },
2215};
2216
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002217int
Dmitry V. Levin153fbd62008-04-19 23:49:58 +00002218sys_getdents(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002219{
2220 int i, len, dents = 0;
2221 char *buf;
2222
2223 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +03002224 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002225 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002226 return 0;
2227 }
2228 if (syserror(tcp) || !verbose(tcp)) {
2229 tprintf("%#lx, %lu", tcp->u_arg[1], tcp->u_arg[2]);
2230 return 0;
2231 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002232 len = tcp->u_rval;
Denys Vlasenko79a79ea2011-09-01 16:35:44 +02002233 /* Beware of insanely large or negative values in tcp->u_rval */
2234 if (tcp->u_rval > 1024*1024)
2235 len = 1024*1024;
2236 if (tcp->u_rval < 0)
2237 len = 0;
Mike Frysinger229738c2009-10-07 20:41:56 -04002238 buf = len ? malloc(len) : NULL;
Denys Vlasenko1d46ba52011-08-31 14:00:02 +02002239 if (len && !buf)
2240 die_out_of_memory();
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002241 if (umoven(tcp, tcp->u_arg[1], len, buf) < 0) {
Roland McGrath46100d02005-06-01 18:55:42 +00002242 tprintf("%#lx, %lu", tcp->u_arg[1], tcp->u_arg[2]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002243 free(buf);
2244 return 0;
2245 }
2246 if (!abbrev(tcp))
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002247 tprints("{");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002248 for (i = 0; i < len;) {
Wichert Akkerman9524bb91999-05-25 23:11:18 +00002249 struct kernel_dirent *d = (struct kernel_dirent *) &buf[i];
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002250 if (!abbrev(tcp)) {
2251 tprintf("%s{d_ino=%lu, d_off=%lu, ",
2252 i ? " " : "", d->d_ino, d->d_off);
2253 tprintf("d_reclen=%u, d_name=\"%s\"}",
2254 d->d_reclen, d->d_name);
2255 }
Pavel Machek9a9f10b2000-02-01 16:22:52 +00002256 if (!d->d_reclen) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002257 tprints("/* d_reclen == 0, problem here */");
Pavel Machek9a9f10b2000-02-01 16:22:52 +00002258 break;
2259 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002260 i += d->d_reclen;
2261 dents++;
2262 }
2263 if (!abbrev(tcp))
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002264 tprints("}");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002265 else
2266 tprintf("/* %u entries */", dents);
2267 tprintf(", %lu", tcp->u_arg[2]);
2268 free(buf);
2269 return 0;
2270}
2271
John Hughesbdf48f52001-03-06 15:08:09 +00002272#if _LFS64_LARGEFILE
2273int
Dmitry V. Levin153fbd62008-04-19 23:49:58 +00002274sys_getdents64(struct tcb *tcp)
John Hughesbdf48f52001-03-06 15:08:09 +00002275{
2276 int i, len, dents = 0;
2277 char *buf;
2278
2279 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +03002280 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002281 tprints(", ");
John Hughesbdf48f52001-03-06 15:08:09 +00002282 return 0;
2283 }
2284 if (syserror(tcp) || !verbose(tcp)) {
2285 tprintf("%#lx, %lu", tcp->u_arg[1], tcp->u_arg[2]);
2286 return 0;
2287 }
Denys Vlasenko79a79ea2011-09-01 16:35:44 +02002288
John Hughesbdf48f52001-03-06 15:08:09 +00002289 len = tcp->u_rval;
Denys Vlasenko79a79ea2011-09-01 16:35:44 +02002290 /* Beware of insanely large or negative tcp->u_rval */
2291 if (tcp->u_rval > 1024*1024)
2292 len = 1024*1024;
2293 if (tcp->u_rval < 0)
2294 len = 0;
Mike Frysinger229738c2009-10-07 20:41:56 -04002295 buf = len ? malloc(len) : NULL;
Denys Vlasenko1d46ba52011-08-31 14:00:02 +02002296 if (len && !buf)
2297 die_out_of_memory();
Denys Vlasenko79a79ea2011-09-01 16:35:44 +02002298
John Hughesbdf48f52001-03-06 15:08:09 +00002299 if (umoven(tcp, tcp->u_arg[1], len, buf) < 0) {
Roland McGrath46100d02005-06-01 18:55:42 +00002300 tprintf("%#lx, %lu", tcp->u_arg[1], tcp->u_arg[2]);
John Hughesbdf48f52001-03-06 15:08:09 +00002301 free(buf);
2302 return 0;
2303 }
2304 if (!abbrev(tcp))
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002305 tprints("{");
John Hughesbdf48f52001-03-06 15:08:09 +00002306 for (i = 0; i < len;) {
2307 struct dirent64 *d = (struct dirent64 *) &buf[i];
John Hughesbdf48f52001-03-06 15:08:09 +00002308 if (!abbrev(tcp)) {
Dmitry V. Levin1f336e52006-10-14 20:20:46 +00002309 tprintf("%s{d_ino=%" PRIu64 ", d_off=%" PRId64 ", ",
Roland McGrath186c5ac2002-12-15 23:58:23 +00002310 i ? " " : "",
Roland McGrath92053242004-01-13 10:16:47 +00002311 d->d_ino,
2312 d->d_off);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002313 tprints("d_type=");
Roland McGrath40542842004-01-13 09:47:49 +00002314 printxval(direnttypes, d->d_type, "DT_???");
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002315 tprints(", ");
John Hughesbdf48f52001-03-06 15:08:09 +00002316 tprintf("d_reclen=%u, d_name=\"%s\"}",
2317 d->d_reclen, d->d_name);
2318 }
Dmitry V. Levin153fbd62008-04-19 23:49:58 +00002319 if (!d->d_reclen) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002320 tprints("/* d_reclen == 0, problem here */");
Dmitry V. Levin153fbd62008-04-19 23:49:58 +00002321 break;
2322 }
John Hughesbdf48f52001-03-06 15:08:09 +00002323 i += d->d_reclen;
2324 dents++;
2325 }
2326 if (!abbrev(tcp))
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002327 tprints("}");
John Hughesbdf48f52001-03-06 15:08:09 +00002328 else
2329 tprintf("/* %u entries */", dents);
2330 tprintf(", %lu", tcp->u_arg[2]);
2331 free(buf);
2332 return 0;
2333}
2334#endif
Roland McGrath186c5ac2002-12-15 23:58:23 +00002335
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002336int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002337sys_getcwd(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002338{
Denys Vlasenko1d632462009-04-14 12:51:00 +00002339 if (exiting(tcp)) {
2340 if (syserror(tcp))
2341 tprintf("%#lx", tcp->u_arg[0]);
2342 else
2343 printpathn(tcp, tcp->u_arg[0], tcp->u_rval - 1);
2344 tprintf(", %lu", tcp->u_arg[1]);
2345 }
2346 return 0;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002347}
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002348
2349#ifdef HAVE_SYS_ASYNCH_H
2350
2351int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002352sys_aioread(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002353{
2354 struct aio_result_t res;
2355
2356 if (entering(tcp)) {
2357 tprintf("%lu, ", tcp->u_arg[0]);
2358 } else {
2359 if (syserror(tcp))
2360 tprintf("%#lx", tcp->u_arg[1]);
2361 else
2362 printstr(tcp, tcp->u_arg[1], tcp->u_arg[2]);
2363 tprintf(", %lu, %lu, ", tcp->u_arg[2], tcp->u_arg[3]);
2364 printxval(whence, tcp->u_arg[4], "L_???");
2365 if (syserror(tcp) || tcp->u_arg[5] == 0
2366 || umove(tcp, tcp->u_arg[5], &res) < 0)
2367 tprintf(", %#lx", tcp->u_arg[5]);
2368 else
2369 tprintf(", {aio_return %d aio_errno %d}",
2370 res.aio_return, res.aio_errno);
2371 }
2372 return 0;
2373}
2374
2375int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002376sys_aiowrite(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002377{
2378 struct aio_result_t res;
2379
2380 if (entering(tcp)) {
2381 tprintf("%lu, ", tcp->u_arg[0]);
2382 printstr(tcp, tcp->u_arg[1], tcp->u_arg[2]);
2383 tprintf(", %lu, %lu, ", tcp->u_arg[2], tcp->u_arg[3]);
2384 printxval(whence, tcp->u_arg[4], "L_???");
2385 }
2386 else {
2387 if (tcp->u_arg[5] == 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002388 tprints(", NULL");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002389 else if (syserror(tcp)
2390 || umove(tcp, tcp->u_arg[5], &res) < 0)
2391 tprintf(", %#lx", tcp->u_arg[5]);
2392 else
2393 tprintf(", {aio_return %d aio_errno %d}",
2394 res.aio_return, res.aio_errno);
2395 }
2396 return 0;
2397}
2398
2399int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002400sys_aiowait(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002401{
2402 if (entering(tcp))
2403 printtv(tcp, tcp->u_arg[0]);
2404 return 0;
2405}
2406
2407int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002408sys_aiocancel(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002409{
2410 struct aio_result_t res;
2411
2412 if (exiting(tcp)) {
2413 if (tcp->u_arg[0] == 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002414 tprints("NULL");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002415 else if (syserror(tcp)
2416 || umove(tcp, tcp->u_arg[0], &res) < 0)
2417 tprintf("%#lx", tcp->u_arg[0]);
2418 else
2419 tprintf("{aio_return %d aio_errno %d}",
2420 res.aio_return, res.aio_errno);
2421 }
2422 return 0;
2423}
2424
2425#endif /* HAVE_SYS_ASYNCH_H */
Roland McGrath186c5ac2002-12-15 23:58:23 +00002426
Roland McGratha4d48532005-06-08 20:45:28 +00002427static const struct xlat xattrflags[] = {
Roland McGrath561c7992003-04-02 01:10:44 +00002428#ifdef XATTR_CREATE
Roland McGrath186c5ac2002-12-15 23:58:23 +00002429 { XATTR_CREATE, "XATTR_CREATE" },
2430 { XATTR_REPLACE, "XATTR_REPLACE" },
Roland McGrath561c7992003-04-02 01:10:44 +00002431#endif
Roland McGrath186c5ac2002-12-15 23:58:23 +00002432 { 0, NULL }
2433};
2434
Roland McGrath3292e222004-08-31 06:30:48 +00002435static void
Denys Vlasenko1d632462009-04-14 12:51:00 +00002436print_xattr_val(struct tcb *tcp, int failed,
2437 unsigned long arg,
2438 unsigned long insize,
2439 unsigned long size)
Roland McGrath3292e222004-08-31 06:30:48 +00002440{
Denys Vlasenko1d632462009-04-14 12:51:00 +00002441 if (!failed) {
2442 unsigned long capacity = 4 * size + 1;
2443 unsigned char *buf = (capacity < size) ? NULL : malloc(capacity);
2444 if (buf == NULL || /* probably a bogus size argument */
2445 umoven(tcp, arg, size, (char *) &buf[3 * size]) < 0) {
2446 failed = 1;
Roland McGrath883567c2005-02-02 03:38:32 +00002447 }
Denys Vlasenko1d632462009-04-14 12:51:00 +00002448 else {
2449 unsigned char *out = buf;
2450 unsigned char *in = &buf[3 * size];
2451 size_t i;
2452 for (i = 0; i < size; ++i) {
2453 if (isprint(in[i]))
2454 *out++ = in[i];
2455 else {
2456#define tohex(n) "0123456789abcdef"[n]
2457 *out++ = '\\';
2458 *out++ = 'x';
2459 *out++ = tohex(in[i] / 16);
2460 *out++ = tohex(in[i] % 16);
2461 }
2462 }
2463 /* Don't print terminating NUL if there is one. */
2464 if (i > 0 && in[i - 1] == '\0')
2465 out -= 4;
2466 *out = '\0';
2467 tprintf(", \"%s\", %ld", buf, insize);
2468 }
2469 free(buf);
Roland McGrath883567c2005-02-02 03:38:32 +00002470 }
Denys Vlasenko1d632462009-04-14 12:51:00 +00002471 if (failed)
2472 tprintf(", 0x%lx, %ld", arg, insize);
Roland McGrath3292e222004-08-31 06:30:48 +00002473}
2474
Roland McGrath186c5ac2002-12-15 23:58:23 +00002475int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002476sys_setxattr(struct tcb *tcp)
Roland McGrath186c5ac2002-12-15 23:58:23 +00002477{
Denys Vlasenko1d632462009-04-14 12:51:00 +00002478 if (entering(tcp)) {
2479 printpath(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002480 tprints(", ");
Denys Vlasenko1d632462009-04-14 12:51:00 +00002481 printstr(tcp, tcp->u_arg[1], -1);
2482 print_xattr_val(tcp, 0, tcp->u_arg[2], tcp->u_arg[3], tcp->u_arg[3]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002483 tprints(", ");
Denys Vlasenko1d632462009-04-14 12:51:00 +00002484 printflags(xattrflags, tcp->u_arg[4], "XATTR_???");
2485 }
2486 return 0;
Roland McGrath186c5ac2002-12-15 23:58:23 +00002487}
2488
2489int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002490sys_fsetxattr(struct tcb *tcp)
Roland McGrath186c5ac2002-12-15 23:58:23 +00002491{
Denys Vlasenko1d632462009-04-14 12:51:00 +00002492 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +03002493 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002494 tprints(", ");
Denys Vlasenko1d632462009-04-14 12:51:00 +00002495 printstr(tcp, tcp->u_arg[1], -1);
2496 print_xattr_val(tcp, 0, tcp->u_arg[2], tcp->u_arg[3], tcp->u_arg[3]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002497 tprints(", ");
Denys Vlasenko1d632462009-04-14 12:51:00 +00002498 printflags(xattrflags, tcp->u_arg[4], "XATTR_???");
2499 }
2500 return 0;
Roland McGrath186c5ac2002-12-15 23:58:23 +00002501}
2502
2503int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002504sys_getxattr(struct tcb *tcp)
Roland McGrath186c5ac2002-12-15 23:58:23 +00002505{
Denys Vlasenko1d632462009-04-14 12:51:00 +00002506 if (entering(tcp)) {
2507 printpath(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002508 tprints(", ");
Denys Vlasenko1d632462009-04-14 12:51:00 +00002509 printstr(tcp, tcp->u_arg[1], -1);
2510 } else {
2511 print_xattr_val(tcp, syserror(tcp), tcp->u_arg[2], tcp->u_arg[3],
2512 tcp->u_rval);
2513 }
2514 return 0;
Roland McGrath186c5ac2002-12-15 23:58:23 +00002515}
2516
2517int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002518sys_fgetxattr(struct tcb *tcp)
Roland McGrath186c5ac2002-12-15 23:58:23 +00002519{
Denys Vlasenko1d632462009-04-14 12:51:00 +00002520 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +03002521 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002522 tprints(", ");
Denys Vlasenko1d632462009-04-14 12:51:00 +00002523 printstr(tcp, tcp->u_arg[1], -1);
2524 } else {
2525 print_xattr_val(tcp, syserror(tcp), tcp->u_arg[2], tcp->u_arg[3],
2526 tcp->u_rval);
2527 }
2528 return 0;
Roland McGrath186c5ac2002-12-15 23:58:23 +00002529}
2530
2531int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002532sys_listxattr(struct tcb *tcp)
Roland McGrath186c5ac2002-12-15 23:58:23 +00002533{
Denys Vlasenko1d632462009-04-14 12:51:00 +00002534 if (entering(tcp)) {
2535 printpath(tcp, tcp->u_arg[0]);
2536 } else {
2537 /* XXX Print value in format */
2538 tprintf(", %p, %lu", (void *) tcp->u_arg[1], tcp->u_arg[2]);
2539 }
2540 return 0;
Roland McGrath186c5ac2002-12-15 23:58:23 +00002541}
2542
2543int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002544sys_flistxattr(struct tcb *tcp)
Roland McGrath186c5ac2002-12-15 23:58:23 +00002545{
Denys Vlasenko1d632462009-04-14 12:51:00 +00002546 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +03002547 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko1d632462009-04-14 12:51:00 +00002548 } else {
2549 /* XXX Print value in format */
2550 tprintf(", %p, %lu", (void *) tcp->u_arg[1], tcp->u_arg[2]);
2551 }
2552 return 0;
Roland McGrath186c5ac2002-12-15 23:58:23 +00002553}
2554
2555int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002556sys_removexattr(struct tcb *tcp)
Roland McGrath186c5ac2002-12-15 23:58:23 +00002557{
Denys Vlasenko1d632462009-04-14 12:51:00 +00002558 if (entering(tcp)) {
2559 printpath(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002560 tprints(", ");
Denys Vlasenko1d632462009-04-14 12:51:00 +00002561 printstr(tcp, tcp->u_arg[1], -1);
2562 }
2563 return 0;
Roland McGrath186c5ac2002-12-15 23:58:23 +00002564}
2565
2566int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002567sys_fremovexattr(struct tcb *tcp)
Roland McGrath186c5ac2002-12-15 23:58:23 +00002568{
Denys Vlasenko1d632462009-04-14 12:51:00 +00002569 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +03002570 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002571 tprints(", ");
Denys Vlasenko1d632462009-04-14 12:51:00 +00002572 printstr(tcp, tcp->u_arg[1], -1);
2573 }
2574 return 0;
Roland McGrath186c5ac2002-12-15 23:58:23 +00002575}
Roland McGrathdf13e8f2004-10-07 18:51:19 +00002576
Roland McGrathdf13e8f2004-10-07 18:51:19 +00002577static const struct xlat advise[] = {
2578 { POSIX_FADV_NORMAL, "POSIX_FADV_NORMAL" },
2579 { POSIX_FADV_RANDOM, "POSIX_FADV_RANDOM" },
2580 { POSIX_FADV_SEQUENTIAL, "POSIX_FADV_SEQUENTIAL" },
2581 { POSIX_FADV_WILLNEED, "POSIX_FADV_WILLNEED" },
2582 { POSIX_FADV_DONTNEED, "POSIX_FADV_DONTNEED" },
2583 { POSIX_FADV_NOREUSE, "POSIX_FADV_NOREUSE" },
2584 { 0, NULL }
2585};
2586
Roland McGrathdf13e8f2004-10-07 18:51:19 +00002587int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002588sys_fadvise64(struct tcb *tcp)
Roland McGrathdf13e8f2004-10-07 18:51:19 +00002589{
Denys Vlasenko1d632462009-04-14 12:51:00 +00002590 if (entering(tcp)) {
Andreas Schwabb5600fc2009-11-04 17:08:34 +01002591 int argn;
Dmitry V. Levin31382132011-03-04 05:08:02 +03002592 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002593 tprints(", ");
Andreas Schwabb5600fc2009-11-04 17:08:34 +01002594 argn = printllval(tcp, "%lld", 1);
2595 tprintf(", %ld, ", tcp->u_arg[argn++]);
2596 printxval(advise, tcp->u_arg[argn], "POSIX_FADV_???");
Denys Vlasenko1d632462009-04-14 12:51:00 +00002597 }
2598 return 0;
Roland McGrathdf13e8f2004-10-07 18:51:19 +00002599}
Roland McGrathdf13e8f2004-10-07 18:51:19 +00002600
Roland McGrathdf13e8f2004-10-07 18:51:19 +00002601int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002602sys_fadvise64_64(struct tcb *tcp)
Roland McGrathdf13e8f2004-10-07 18:51:19 +00002603{
Denys Vlasenko1d632462009-04-14 12:51:00 +00002604 if (entering(tcp)) {
Andreas Schwabb5600fc2009-11-04 17:08:34 +01002605 int argn;
Dmitry V. Levin31382132011-03-04 05:08:02 +03002606 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002607 tprints(", ");
Andreas Schwabb5600fc2009-11-04 17:08:34 +01002608#if defined ARM || defined POWERPC
2609 argn = printllval(tcp, "%lld, ", 2);
2610#else
2611 argn = printllval(tcp, "%lld, ", 1);
2612#endif
2613 argn = printllval(tcp, "%lld, ", argn);
2614#if defined ARM || defined POWERPC
Kirill A. Shutemov896db212009-09-19 03:21:33 +03002615 printxval(advise, tcp->u_arg[1], "POSIX_FADV_???");
Roland McGrathdf13e8f2004-10-07 18:51:19 +00002616#else
Andreas Schwabb5600fc2009-11-04 17:08:34 +01002617 printxval(advise, tcp->u_arg[argn], "POSIX_FADV_???");
Roland McGrathdf13e8f2004-10-07 18:51:19 +00002618#endif
Denys Vlasenko1d632462009-04-14 12:51:00 +00002619 }
2620 return 0;
Roland McGrathdf13e8f2004-10-07 18:51:19 +00002621}
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002622
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002623static const struct xlat inotify_modes[] = {
Dmitry V. Levind475c062011-03-03 01:02:41 +00002624 { 0x00000001, "IN_ACCESS" },
2625 { 0x00000002, "IN_MODIFY" },
2626 { 0x00000004, "IN_ATTRIB" },
2627 { 0x00000008, "IN_CLOSE_WRITE"},
2628 { 0x00000010, "IN_CLOSE_NOWRITE"},
2629 { 0x00000020, "IN_OPEN" },
2630 { 0x00000040, "IN_MOVED_FROM" },
2631 { 0x00000080, "IN_MOVED_TO" },
2632 { 0x00000100, "IN_CREATE" },
2633 { 0x00000200, "IN_DELETE" },
2634 { 0x00000400, "IN_DELETE_SELF"},
2635 { 0x00000800, "IN_MOVE_SELF" },
2636 { 0x00002000, "IN_UNMOUNT" },
2637 { 0x00004000, "IN_Q_OVERFLOW" },
2638 { 0x00008000, "IN_IGNORED" },
2639 { 0x01000000, "IN_ONLYDIR" },
2640 { 0x02000000, "IN_DONT_FOLLOW"},
2641 { 0x20000000, "IN_MASK_ADD" },
2642 { 0x40000000, "IN_ISDIR" },
2643 { 0x80000000, "IN_ONESHOT" },
2644 { 0, NULL }
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002645};
2646
Sebastian Pipping1e1405a2011-03-03 00:50:55 +01002647static const struct xlat inotify_init_flags[] = {
2648 { 0x00000800, "IN_NONBLOCK" },
Denys Vlasenkob63256e2011-06-07 12:13:24 +02002649 { 0x00080000, "IN_CLOEXEC" },
2650 { 0, NULL }
Sebastian Pipping1e1405a2011-03-03 00:50:55 +01002651};
2652
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002653int
2654sys_inotify_add_watch(struct tcb *tcp)
2655{
2656 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +03002657 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002658 tprints(", ");
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002659 printpath(tcp, tcp->u_arg[1]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002660 tprints(", ");
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002661 printflags(inotify_modes, tcp->u_arg[2], "IN_???");
2662 }
2663 return 0;
2664}
2665
2666int
2667sys_inotify_rm_watch(struct tcb *tcp)
2668{
2669 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +03002670 printfd(tcp, tcp->u_arg[0]);
Dmitry V. Levinab1a70c2012-03-11 15:33:34 +00002671 tprintf(", %d", (int) tcp->u_arg[1]);
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002672 }
2673 return 0;
2674}
Roland McGrath96a96612008-05-20 04:56:18 +00002675
2676int
Mark Wielaardbab89402010-03-21 14:41:26 +01002677sys_inotify_init1(struct tcb *tcp)
2678{
2679 if (entering(tcp))
Sebastian Pipping1e1405a2011-03-03 00:50:55 +01002680 printflags(inotify_init_flags, tcp->u_arg[0], "IN_???");
Mark Wielaardbab89402010-03-21 14:41:26 +01002681 return 0;
2682}
2683
2684int
Roland McGrath96a96612008-05-20 04:56:18 +00002685sys_fallocate(struct tcb *tcp)
2686{
2687 if (entering(tcp)) {
Andreas Schwabb5600fc2009-11-04 17:08:34 +01002688 int argn;
Dmitry V. Levin31382132011-03-04 05:08:02 +03002689 printfd(tcp, tcp->u_arg[0]); /* fd */
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002690 tprints(", ");
Roland McGrath96a96612008-05-20 04:56:18 +00002691 tprintf("%#lo, ", tcp->u_arg[1]); /* mode */
Andreas Schwabb5600fc2009-11-04 17:08:34 +01002692 argn = printllval(tcp, "%llu, ", 2); /* offset */
2693 printllval(tcp, "%llu", argn); /* len */
Roland McGrath96a96612008-05-20 04:56:18 +00002694 }
2695 return 0;
2696}
Dmitry V. Levin88293652012-03-09 21:02:19 +00002697
2698static const struct xlat swap_flags[] = {
2699 { SWAP_FLAG_PREFER, "SWAP_FLAG_PREFER" },
2700 { SWAP_FLAG_DISCARD, "SWAP_FLAG_DISCARD" },
2701 { 0, NULL }
2702};
2703
2704int
2705sys_swapon(struct tcb *tcp)
2706{
2707 if (entering(tcp)) {
2708 int flags = tcp->u_arg[1];
2709 printpath(tcp, tcp->u_arg[0]);
2710 tprints(", ");
2711 printflags(swap_flags, flags & ~SWAP_FLAG_PRIO_MASK,
2712 "SWAP_FLAG_???");
2713 if (flags & SWAP_FLAG_PREFER)
2714 tprintf("|%d", flags & SWAP_FLAG_PRIO_MASK);
2715 }
2716 return 0;
2717}