blob: 3a98674c5f597a02f8ccaa5b0805d0585629a612 [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.
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000029 */
30
31#include "defs.h"
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000032#include <dirent.h>
Dmitry V. Levin88293652012-03-09 21:02:19 +000033#include <sys/swap.h>
Roland McGrathc531e572008-08-01 01:13:10 +000034
Denys Vlasenko9472a272013-02-12 11:43:46 +010035#if defined(SPARC) || defined(SPARC64)
Wichert Akkermandacfb6e1999-06-03 14:21:07 +000036struct stat {
37 unsigned short st_dev;
38 unsigned int st_ino;
39 unsigned short st_mode;
40 short st_nlink;
41 unsigned short st_uid;
42 unsigned short st_gid;
43 unsigned short st_rdev;
44 unsigned int st_size;
45 int st_atime;
46 unsigned int __unused1;
47 int st_mtime;
48 unsigned int __unused2;
49 int st_ctime;
50 unsigned int __unused3;
51 int st_blksize;
52 int st_blocks;
53 unsigned int __unused4[2];
54};
Denys Vlasenko84703742012-02-25 02:38:52 +010055# if defined(SPARC64)
Roland McGrath6d1a65c2004-07-12 07:44:08 +000056struct stat_sparc64 {
57 unsigned int st_dev;
58 unsigned long st_ino;
59 unsigned int st_mode;
60 unsigned int st_nlink;
61 unsigned int st_uid;
62 unsigned int st_gid;
63 unsigned int st_rdev;
64 long st_size;
65 long st_atime;
66 long st_mtime;
67 long st_ctime;
68 long st_blksize;
69 long st_blocks;
70 unsigned long __unused4[2];
71};
Denys Vlasenko84703742012-02-25 02:38:52 +010072# endif /* SPARC64 */
73# define stat kernel_stat
74# include <asm/stat.h>
75# undef stat
H.J. Lu35be5812012-04-16 13:00:01 +020076#elif defined(X32)
77struct stat {
78 unsigned long long st_dev;
79 unsigned long long st_ino;
80 unsigned long long st_nlink;
81
82 unsigned int st_mode;
83 unsigned int st_uid;
84 unsigned int st_gid;
85 unsigned int __pad0;
86 unsigned long long st_rdev;
87 long long st_size;
88 long long st_blksize;
89 long long st_blocks;
90
91 unsigned long long st_atime;
92 unsigned long long st_atime_nsec;
93 unsigned long long st_mtime;
94 unsigned long long st_mtime_nsec;
95 unsigned long long st_ctime;
96 unsigned long long st_ctime_nsec;
97 long long __unused[3];
98};
H.J. Lu085e4282012-04-17 11:05:04 -070099
100struct stat64 {
101 unsigned long long st_dev;
102 unsigned char __pad0[4];
103 unsigned long __st_ino;
104 unsigned int st_mode;
105 unsigned int st_nlink;
106 unsigned long st_uid;
107 unsigned long st_gid;
108 unsigned long long st_rdev;
109 unsigned char __pad3[4];
110 long long st_size;
111 unsigned long st_blksize;
112 unsigned long long st_blocks;
113 unsigned long st_atime;
114 unsigned long st_atime_nsec;
115 unsigned long st_mtime;
116 unsigned int st_mtime_nsec;
117 unsigned long st_ctime;
118 unsigned long st_ctime_nsec;
119 unsigned long long st_ino;
120};
Denys Vlasenko84703742012-02-25 02:38:52 +0100121#else
122# undef dev_t
123# undef ino_t
124# undef mode_t
125# undef nlink_t
126# undef uid_t
127# undef gid_t
128# undef off_t
129# undef loff_t
Denys Vlasenko84703742012-02-25 02:38:52 +0100130# define dev_t __kernel_dev_t
131# define ino_t __kernel_ino_t
132# define mode_t __kernel_mode_t
133# define nlink_t __kernel_nlink_t
134# define uid_t __kernel_uid_t
135# define gid_t __kernel_gid_t
136# define off_t __kernel_off_t
137# define loff_t __kernel_loff_t
Wichert Akkermana6013701999-07-08 14:00:58 +0000138
Denys Vlasenko84703742012-02-25 02:38:52 +0100139# include <asm/stat.h>
Wichert Akkermana6013701999-07-08 14:00:58 +0000140
Denys Vlasenko84703742012-02-25 02:38:52 +0100141# undef dev_t
142# undef ino_t
143# undef mode_t
144# undef nlink_t
145# undef uid_t
146# undef gid_t
147# undef off_t
148# undef loff_t
Denys Vlasenko84703742012-02-25 02:38:52 +0100149# define dev_t dev_t
150# define ino_t ino_t
151# define mode_t mode_t
152# define nlink_t nlink_t
153# define uid_t uid_t
154# define gid_t gid_t
155# define off_t off_t
156# define loff_t loff_t
157#endif
158
159#ifdef HPPA /* asm-parisc/stat.h defines stat64 */
160# undef stat64
161#endif
162#define stat libc_stat
163#define stat64 libc_stat64
164#include <sys/stat.h>
165#undef stat
166#undef stat64
Denys Vlasenkoa6d91de2012-03-16 12:02:22 +0100167/* These might be macros. */
Denys Vlasenko84703742012-02-25 02:38:52 +0100168#undef st_atime
169#undef st_mtime
170#undef st_ctime
171#ifdef HPPA
172# define stat64 hpux_stat64
173#endif
Wichert Akkermand4d8e921999-04-18 23:30:29 +0000174
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000175#include <fcntl.h>
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000176#ifdef HAVE_SYS_VFS_H
Denys Vlasenko84703742012-02-25 02:38:52 +0100177# include <sys/vfs.h>
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000178#endif
Roland McGrath186c5ac2002-12-15 23:58:23 +0000179#ifdef HAVE_LINUX_XATTR_H
Denys Vlasenko84703742012-02-25 02:38:52 +0100180# include <linux/xattr.h>
Denys Vlasenkoed720fd2012-02-25 02:24:03 +0100181#else
Denys Vlasenko84703742012-02-25 02:38:52 +0100182# define XATTR_CREATE 1
183# define XATTR_REPLACE 2
Roland McGrath186c5ac2002-12-15 23:58:23 +0000184#endif
185
John Hughes70623be2001-03-08 13:59:00 +0000186#if HAVE_LONG_LONG_OFF_T
187/*
188 * Ugly hacks for systems that have typedef long long off_t
189 */
Denys Vlasenko84703742012-02-25 02:38:52 +0100190# define stat64 stat
191# define HAVE_STAT64 1 /* Ugly hack */
Denys Vlasenko84703742012-02-25 02:38:52 +0100192# define sys_stat64 sys_stat
193# define sys_fstat64 sys_fstat
194# define sys_lstat64 sys_lstat
Denys Vlasenko84703742012-02-25 02:38:52 +0100195# define sys_truncate64 sys_truncate
196# define sys_ftruncate64 sys_ftruncate
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000197#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000198
199#ifdef MAJOR_IN_SYSMACROS
Denys Vlasenko84703742012-02-25 02:38:52 +0100200# include <sys/sysmacros.h>
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000201#endif
202
203#ifdef MAJOR_IN_MKDEV
Denys Vlasenko84703742012-02-25 02:38:52 +0100204# include <sys/mkdev.h>
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000205#endif
206
207#ifdef HAVE_SYS_ASYNCH_H
Denys Vlasenko84703742012-02-25 02:38:52 +0100208# include <sys/asynch.h>
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000209#endif
210
Denys Vlasenkoa6d91de2012-03-16 12:02:22 +0100211struct kernel_dirent {
212 unsigned long d_ino;
213 unsigned long d_off;
214 unsigned short d_reclen;
215 char d_name[1];
216};
217
Dmitry V. Levin9b5b67e2007-01-11 23:19:55 +0000218const struct xlat open_access_modes[] = {
219 { O_RDONLY, "O_RDONLY" },
220 { O_WRONLY, "O_WRONLY" },
221 { O_RDWR, "O_RDWR" },
222#ifdef O_ACCMODE
223 { O_ACCMODE, "O_ACCMODE" },
224#endif
225 { 0, NULL },
226};
227
228const struct xlat open_mode_flags[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000229 { O_CREAT, "O_CREAT" },
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000230 { O_EXCL, "O_EXCL" },
231 { O_NOCTTY, "O_NOCTTY" },
Dmitry V. Levin9b5b67e2007-01-11 23:19:55 +0000232 { O_TRUNC, "O_TRUNC" },
233 { O_APPEND, "O_APPEND" },
234 { O_NONBLOCK, "O_NONBLOCK" },
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000235#ifdef O_SYNC
236 { O_SYNC, "O_SYNC" },
237#endif
238#ifdef O_ASYNC
239 { O_ASYNC, "O_ASYNC" },
240#endif
241#ifdef O_DSYNC
242 { O_DSYNC, "O_DSYNC" },
243#endif
244#ifdef O_RSYNC
245 { O_RSYNC, "O_RSYNC" },
246#endif
Denys Vlasenkoeedaac72009-03-10 20:41:58 +0000247#if defined(O_NDELAY) && (O_NDELAY != O_NONBLOCK)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000248 { O_NDELAY, "O_NDELAY" },
249#endif
250#ifdef O_PRIV
251 { O_PRIV, "O_PRIV" },
252#endif
253#ifdef O_DIRECT
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +0000254 { O_DIRECT, "O_DIRECT" },
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000255#endif
256#ifdef O_LARGEFILE
Roland McGrathfee836e2005-02-02 22:11:32 +0000257# if O_LARGEFILE == 0 /* biarch platforms in 64-bit mode */
258# undef O_LARGEFILE
259# ifdef SPARC64
260# define O_LARGEFILE 0x40000
261# elif defined X86_64 || defined S390X
262# define O_LARGEFILE 0100000
263# endif
264# endif
Roland McGrath663a8a02005-02-04 09:49:56 +0000265# ifdef O_LARGEFILE
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200266 { O_LARGEFILE, "O_LARGEFILE" },
Roland McGrath663a8a02005-02-04 09:49:56 +0000267# endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000268#endif
269#ifdef O_DIRECTORY
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200270 { O_DIRECTORY, "O_DIRECTORY" },
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +0000271#endif
272#ifdef O_NOFOLLOW
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200273 { O_NOFOLLOW, "O_NOFOLLOW" },
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000274#endif
Roland McGrath1025c3e2005-05-09 07:40:35 +0000275#ifdef O_NOATIME
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200276 { O_NOATIME, "O_NOATIME" },
Roland McGrath1025c3e2005-05-09 07:40:35 +0000277#endif
Roland McGrath71d3d662007-08-07 01:00:26 +0000278#ifdef O_CLOEXEC
279 { O_CLOEXEC, "O_CLOEXEC" },
280#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000281#ifdef FNDELAY
282 { FNDELAY, "FNDELAY" },
283#endif
284#ifdef FAPPEND
285 { FAPPEND, "FAPPEND" },
286#endif
287#ifdef FMARK
288 { FMARK, "FMARK" },
289#endif
290#ifdef FDEFER
291 { FDEFER, "FDEFER" },
292#endif
293#ifdef FASYNC
294 { FASYNC, "FASYNC" },
295#endif
296#ifdef FSHLOCK
297 { FSHLOCK, "FSHLOCK" },
298#endif
299#ifdef FEXLOCK
300 { FEXLOCK, "FEXLOCK" },
301#endif
302#ifdef FCREAT
303 { FCREAT, "FCREAT" },
304#endif
305#ifdef FTRUNC
306 { FTRUNC, "FTRUNC" },
307#endif
308#ifdef FEXCL
309 { FEXCL, "FEXCL" },
310#endif
311#ifdef FNBIO
312 { FNBIO, "FNBIO" },
313#endif
314#ifdef FSYNC
315 { FSYNC, "FSYNC" },
316#endif
317#ifdef FNOCTTY
318 { FNOCTTY, "FNOCTTY" },
Roland McGrath186c5ac2002-12-15 23:58:23 +0000319#endif
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000320#ifdef O_SHLOCK
321 { O_SHLOCK, "O_SHLOCK" },
322#endif
323#ifdef O_EXLOCK
324 { O_EXLOCK, "O_EXLOCK" },
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000325#endif
326 { 0, NULL },
327};
328
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000329#ifndef AT_FDCWD
330# define AT_FDCWD -100
331#endif
332
Denys Vlasenkoe740fd32009-04-16 12:06:16 +0000333/* The fd is an "int", so when decoding x86 on x86_64, we need to force sign
334 * extension to get the right value. We do this by declaring fd as int here.
335 */
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000336static void
Dmitry V. Levin31382132011-03-04 05:08:02 +0300337print_dirfd(struct tcb *tcp, int fd)
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000338{
339 if (fd == AT_FDCWD)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200340 tprints("AT_FDCWD, ");
Denys Vlasenko7b609d52011-06-22 14:32:43 +0200341 else {
Dmitry V. Levin31382132011-03-04 05:08:02 +0300342 printfd(tcp, fd);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200343 tprints(", ");
Dmitry V. Levin31382132011-03-04 05:08:02 +0300344 }
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000345}
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000346
Dmitry V. Levin9b5b67e2007-01-11 23:19:55 +0000347/*
348 * low bits of the open(2) flags define access mode,
349 * other bits are real flags.
350 */
Denys Vlasenkoeedaac72009-03-10 20:41:58 +0000351const char *
352sprint_open_modes(mode_t flags)
Dmitry V. Levin9b5b67e2007-01-11 23:19:55 +0000353{
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100354 static char outstr[(1 + ARRAY_SIZE(open_mode_flags)) * sizeof("O_LARGEFILE")];
Denys Vlasenkoeedaac72009-03-10 20:41:58 +0000355 char *p;
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100356 char sep;
Denys Vlasenkoeedaac72009-03-10 20:41:58 +0000357 const char *str;
358 const struct xlat *x;
Dmitry V. Levin9b5b67e2007-01-11 23:19:55 +0000359
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100360 sep = ' ';
361 p = stpcpy(outstr, "flags");
Denys Vlasenkoeedaac72009-03-10 20:41:58 +0000362 str = xlookup(open_access_modes, flags & 3);
363 if (str) {
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100364 *p++ = sep;
Denys Vlasenko52845572011-08-31 12:07:38 +0200365 p = stpcpy(p, str);
Dmitry V. Levin9b5b67e2007-01-11 23:19:55 +0000366 flags &= ~3;
367 if (!flags)
Denys Vlasenkoeedaac72009-03-10 20:41:58 +0000368 return outstr;
369 sep = '|';
Dmitry V. Levin9b5b67e2007-01-11 23:19:55 +0000370 }
Denys Vlasenkoeedaac72009-03-10 20:41:58 +0000371
372 for (x = open_mode_flags; x->str; x++) {
373 if ((flags & x->val) == x->val) {
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100374 *p++ = sep;
Denys Vlasenko52845572011-08-31 12:07:38 +0200375 p = stpcpy(p, x->str);
Denys Vlasenkoeedaac72009-03-10 20:41:58 +0000376 flags &= ~x->val;
377 if (!flags)
378 return outstr;
379 sep = '|';
380 }
381 }
382 /* flags is still nonzero */
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100383 *p++ = sep;
Denys Vlasenkoeedaac72009-03-10 20:41:58 +0000384 sprintf(p, "%#x", flags);
385 return outstr;
386}
387
388void
389tprint_open_modes(mode_t flags)
390{
Denys Vlasenko5940e652011-09-01 09:55:05 +0200391 tprints(sprint_open_modes(flags) + sizeof("flags"));
Dmitry V. Levin9b5b67e2007-01-11 23:19:55 +0000392}
393
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000394static int
395decode_open(struct tcb *tcp, int offset)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000396{
397 if (entering(tcp)) {
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000398 printpath(tcp, tcp->u_arg[offset]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200399 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000400 /* flags */
Denys Vlasenkoeedaac72009-03-10 20:41:58 +0000401 tprint_open_modes(tcp->u_arg[offset + 1]);
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000402 if (tcp->u_arg[offset + 1] & O_CREAT) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000403 /* mode */
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000404 tprintf(", %#lo", tcp->u_arg[offset + 2]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000405 }
406 }
407 return 0;
408}
409
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000410int
411sys_open(struct tcb *tcp)
412{
413 return decode_open(tcp, 0);
414}
415
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000416int
417sys_openat(struct tcb *tcp)
418{
419 if (entering(tcp))
Dmitry V. Levin31382132011-03-04 05:08:02 +0300420 print_dirfd(tcp, tcp->u_arg[0]);
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000421 return decode_open(tcp, 1);
422}
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000423
Denys Vlasenko9472a272013-02-12 11:43:46 +0100424#if defined(SPARC) || defined(SPARC64)
Roland McGratha4d48532005-06-08 20:45:28 +0000425static const struct xlat openmodessol[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000426 { 0, "O_RDWR" },
427 { 1, "O_RDONLY" },
428 { 2, "O_WRONLY" },
429 { 0x80, "O_NONBLOCK" },
430 { 8, "O_APPEND" },
431 { 0x100, "O_CREAT" },
432 { 0x200, "O_TRUNC" },
433 { 0x400, "O_EXCL" },
434 { 0x800, "O_NOCTTY" },
435 { 0x10, "O_SYNC" },
436 { 0x40, "O_DSYNC" },
437 { 0x8000, "O_RSYNC" },
438 { 4, "O_NDELAY" },
439 { 0x1000, "O_PRIV" },
440 { 0, NULL },
441};
442
443int
Denys Vlasenko1d632462009-04-14 12:51:00 +0000444solaris_open(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000445{
446 if (entering(tcp)) {
447 printpath(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200448 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000449 /* flags */
Roland McGrathb2dee132005-06-01 19:02:36 +0000450 printflags(openmodessol, tcp->u_arg[1] + 1, "O_???");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000451 if (tcp->u_arg[1] & 0x100) {
452 /* mode */
453 tprintf(", %#lo", tcp->u_arg[2]);
454 }
455 }
456 return 0;
457}
458
459#endif
460
461int
Denys Vlasenko1d632462009-04-14 12:51:00 +0000462sys_creat(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000463{
464 if (entering(tcp)) {
465 printpath(tcp, tcp->u_arg[0]);
466 tprintf(", %#lo", tcp->u_arg[1]);
467 }
468 return 0;
469}
470
Roland McGrathd9f816f2004-09-04 03:39:20 +0000471static const struct xlat access_flags[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000472 { F_OK, "F_OK", },
473 { R_OK, "R_OK" },
474 { W_OK, "W_OK" },
475 { X_OK, "X_OK" },
476#ifdef EFF_ONLY_OK
477 { EFF_ONLY_OK, "EFF_ONLY_OK" },
478#endif
479#ifdef EX_OK
480 { EX_OK, "EX_OK" },
481#endif
482 { 0, NULL },
483};
484
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000485static int
486decode_access(struct tcb *tcp, int offset)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000487{
488 if (entering(tcp)) {
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000489 printpath(tcp, tcp->u_arg[offset]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200490 tprints(", ");
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000491 printflags(access_flags, tcp->u_arg[offset + 1], "?_OK");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000492 }
493 return 0;
494}
495
496int
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000497sys_access(struct tcb *tcp)
498{
499 return decode_access(tcp, 0);
500}
501
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000502int
503sys_faccessat(struct tcb *tcp)
504{
505 if (entering(tcp))
Dmitry V. Levin31382132011-03-04 05:08:02 +0300506 print_dirfd(tcp, tcp->u_arg[0]);
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000507 return decode_access(tcp, 1);
508}
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000509
510int
Denys Vlasenko1d632462009-04-14 12:51:00 +0000511sys_umask(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000512{
513 if (entering(tcp)) {
514 tprintf("%#lo", tcp->u_arg[0]);
515 }
516 return RVAL_OCTAL;
517}
518
Denys Vlasenko782d90f2013-02-17 12:47:44 +0100519static const struct xlat whence_codes[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000520 { SEEK_SET, "SEEK_SET" },
521 { SEEK_CUR, "SEEK_CUR" },
522 { SEEK_END, "SEEK_END" },
523 { 0, NULL },
524};
525
Denys Vlasenko386b8712013-02-17 01:38:14 +0100526/* Linux kernel has exactly one version of lseek:
527 * fs/read_write.c::SYSCALL_DEFINE3(lseek, unsigned, fd, off_t, offset, unsigned, origin)
528 * In kernel, off_t is always the same as (kernel's) long
529 * (see include/uapi/asm-generic/posix_types.h),
530 * which means that on x32 we need to use tcp->ext_arg[N] to get offset argument.
531 */
H.J. Luc933f272012-04-16 17:41:13 +0200532#if defined(LINUX_MIPSN32) || defined(X32)
Roland McGrath542c2c62008-05-20 01:11:56 +0000533int
Denys Vlasenko1d632462009-04-14 12:51:00 +0000534sys_lseek(struct tcb *tcp)
Roland McGrath542c2c62008-05-20 01:11:56 +0000535{
536 long long offset;
Denys Vlasenko386b8712013-02-17 01:38:14 +0100537 int whence;
Roland McGrath542c2c62008-05-20 01:11:56 +0000538
539 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +0300540 printfd(tcp, tcp->u_arg[0]);
Roland McGrath542c2c62008-05-20 01:11:56 +0000541 offset = tcp->ext_arg[1];
Denys Vlasenko386b8712013-02-17 01:38:14 +0100542 whence = tcp->u_arg[2];
543 if (whence == SEEK_SET)
544 tprintf(", %llu, ", offset);
Roland McGrath542c2c62008-05-20 01:11:56 +0000545 else
Denys Vlasenko386b8712013-02-17 01:38:14 +0100546 tprintf(", %lld, ", offset);
Denys Vlasenko782d90f2013-02-17 12:47:44 +0100547 printxval(whence_codes, whence, "SEEK_???");
Roland McGrath542c2c62008-05-20 01:11:56 +0000548 }
H.J. Ludd0130b2012-04-16 12:16:45 +0200549 return RVAL_LUDECIMAL;
Roland McGrath542c2c62008-05-20 01:11:56 +0000550}
H.J. Lu085e4282012-04-17 11:05:04 -0700551
552# if defined(X32)
553int
554sys_lseek32(struct tcb *tcp)
555{
556 long offset;
Denys Vlasenko386b8712013-02-17 01:38:14 +0100557 int whence;
H.J. Lu085e4282012-04-17 11:05:04 -0700558
559 if (entering(tcp)) {
560 printfd(tcp, tcp->u_arg[0]);
H.J. Lu085e4282012-04-17 11:05:04 -0700561 offset = tcp->u_arg[1];
Denys Vlasenko386b8712013-02-17 01:38:14 +0100562 whence = tcp->u_arg[2];
563 if (whence == SEEK_SET)
564 tprintf(", %lu, ", offset);
H.J. Lu085e4282012-04-17 11:05:04 -0700565 else
Denys Vlasenko386b8712013-02-17 01:38:14 +0100566 tprintf(", %ld, ", offset);
Denys Vlasenko782d90f2013-02-17 12:47:44 +0100567 printxval(whence_codes, whence, "SEEK_???");
H.J. Lu085e4282012-04-17 11:05:04 -0700568 }
569 return RVAL_UDECIMAL;
570}
571# endif
H.J. Ludd0130b2012-04-16 12:16:45 +0200572#else
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000573int
Denys Vlasenko1d632462009-04-14 12:51:00 +0000574sys_lseek(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000575{
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000576 off_t offset;
Denys Vlasenko386b8712013-02-17 01:38:14 +0100577 int whence;
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000578
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000579 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +0300580 printfd(tcp, tcp->u_arg[0]);
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000581 offset = tcp->u_arg[1];
Denys Vlasenko386b8712013-02-17 01:38:14 +0100582 whence = tcp->u_arg[2];
583 if (whence == SEEK_SET)
584 tprintf(", %lu, ", offset);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000585 else
Denys Vlasenko386b8712013-02-17 01:38:14 +0100586 tprintf(", %ld, ", offset);
Denys Vlasenko782d90f2013-02-17 12:47:44 +0100587 printxval(whence_codes, whence, "SEEK_???");
Roland McGrath186c5ac2002-12-15 23:58:23 +0000588 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000589 return RVAL_UDECIMAL;
590}
John Hughes5a826b82001-03-07 13:21:24 +0000591#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000592
Denys Vlasenko386b8712013-02-17 01:38:14 +0100593/* llseek syscall takes explicitly two ulong arguments hi, lo,
594 * rather than one 64-bit argument for which LONG_LONG works
595 * appropriate for the native byte order.
596 *
597 * See kernel's fs/read_write.c::SYSCALL_DEFINE5(llseek, ...)
598 *
599 * hi,lo are "unsigned longs" and combined exactly this way in kernel:
600 * ((loff_t) hi << 32) | lo
601 * Note that for architectures with kernel's long wider than userspace longs
602 * (such as x32), combining code will use *kernel's*, i.e. *wide* longs
603 * for hi and lo. You may need to use tcp->ext_arg[N]!
604 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000605int
Denys Vlasenko1d632462009-04-14 12:51:00 +0000606sys_llseek(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000607{
Denys Vlasenko1d632462009-04-14 12:51:00 +0000608 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +0300609 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko1d632462009-04-14 12:51:00 +0000610 if (tcp->u_arg[4] == SEEK_SET)
Dmitry V. Levin31382132011-03-04 05:08:02 +0300611 tprintf(", %llu, ",
Denys Vlasenko386b8712013-02-17 01:38:14 +0100612 ((long long) tcp->u_arg[1]) << 32 |
Dmitry V. Levin31382132011-03-04 05:08:02 +0300613 (unsigned long long) (unsigned) tcp->u_arg[2]);
Denys Vlasenko1d632462009-04-14 12:51:00 +0000614 else
Dmitry V. Levin31382132011-03-04 05:08:02 +0300615 tprintf(", %lld, ",
Denys Vlasenko386b8712013-02-17 01:38:14 +0100616 ((long long) tcp->u_arg[1]) << 32 |
Dmitry V. Levin31382132011-03-04 05:08:02 +0300617 (unsigned long long) (unsigned) tcp->u_arg[2]);
Denys Vlasenko1d632462009-04-14 12:51:00 +0000618 }
619 else {
Denys Vlasenko386b8712013-02-17 01:38:14 +0100620 long long off;
Denys Vlasenko1d632462009-04-14 12:51:00 +0000621 if (syserror(tcp) || umove(tcp, tcp->u_arg[3], &off) < 0)
622 tprintf("%#lx, ", tcp->u_arg[3]);
623 else
624 tprintf("[%llu], ", off);
Denys Vlasenko782d90f2013-02-17 12:47:44 +0100625 printxval(whence_codes, tcp->u_arg[4], "SEEK_???");
Denys Vlasenko1d632462009-04-14 12:51:00 +0000626 }
627 return 0;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000628}
Roland McGrath186c5ac2002-12-15 23:58:23 +0000629
630int
Denys Vlasenko1d632462009-04-14 12:51:00 +0000631sys_readahead(struct tcb *tcp)
Roland McGrath186c5ac2002-12-15 23:58:23 +0000632{
Denys Vlasenko1d632462009-04-14 12:51:00 +0000633 if (entering(tcp)) {
Andreas Schwabb5600fc2009-11-04 17:08:34 +0100634 int argn;
Dmitry V. Levin31382132011-03-04 05:08:02 +0300635 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenkod33e72a2012-05-18 02:03:24 +0200636 argn = printllval(tcp, ", %lld", 1);
Andreas Schwabb5600fc2009-11-04 17:08:34 +0100637 tprintf(", %ld", tcp->u_arg[argn]);
Denys Vlasenko1d632462009-04-14 12:51:00 +0000638 }
639 return 0;
Roland McGrath186c5ac2002-12-15 23:58:23 +0000640}
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000641
John Hughes70623be2001-03-08 13:59:00 +0000642#ifndef HAVE_LONG_LONG_OFF_T
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000643int
Denys Vlasenko1d632462009-04-14 12:51:00 +0000644sys_truncate(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000645{
646 if (entering(tcp)) {
647 printpath(tcp, tcp->u_arg[0]);
648 tprintf(", %lu", tcp->u_arg[1]);
649 }
650 return 0;
651}
John Hughes5a826b82001-03-07 13:21:24 +0000652#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000653
John Hughes70623be2001-03-08 13:59:00 +0000654#if _LFS64_LARGEFILE || HAVE_LONG_LONG_OFF_T
John Hughes96f51472001-03-06 16:50:41 +0000655int
Denys Vlasenko1d632462009-04-14 12:51:00 +0000656sys_truncate64(struct tcb *tcp)
John Hughes96f51472001-03-06 16:50:41 +0000657{
658 if (entering(tcp)) {
659 printpath(tcp, tcp->u_arg[0]);
Andreas Schwabb5600fc2009-11-04 17:08:34 +0100660 printllval(tcp, ", %llu", 1);
John Hughes96f51472001-03-06 16:50:41 +0000661 }
662 return 0;
663}
664#endif
665
John Hughes70623be2001-03-08 13:59:00 +0000666#ifndef HAVE_LONG_LONG_OFF_T
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000667int
Denys Vlasenko1d632462009-04-14 12:51:00 +0000668sys_ftruncate(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000669{
670 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +0300671 printfd(tcp, tcp->u_arg[0]);
672 tprintf(", %lu", tcp->u_arg[1]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000673 }
674 return 0;
675}
John Hughes5a826b82001-03-07 13:21:24 +0000676#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000677
John Hughes70623be2001-03-08 13:59:00 +0000678#if _LFS64_LARGEFILE || HAVE_LONG_LONG_OFF_T
John Hughes96f51472001-03-06 16:50:41 +0000679int
Denys Vlasenko1d632462009-04-14 12:51:00 +0000680sys_ftruncate64(struct tcb *tcp)
John Hughes96f51472001-03-06 16:50:41 +0000681{
682 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +0300683 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenkod33e72a2012-05-18 02:03:24 +0200684 printllval(tcp, ", %llu", 1);
John Hughes96f51472001-03-06 16:50:41 +0000685 }
686 return 0;
687}
688#endif
689
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000690/* several stats */
691
Roland McGrathd9f816f2004-09-04 03:39:20 +0000692static const struct xlat modetypes[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000693 { S_IFREG, "S_IFREG" },
694 { S_IFSOCK, "S_IFSOCK" },
695 { S_IFIFO, "S_IFIFO" },
696 { S_IFLNK, "S_IFLNK" },
697 { S_IFDIR, "S_IFDIR" },
698 { S_IFBLK, "S_IFBLK" },
699 { S_IFCHR, "S_IFCHR" },
700 { 0, NULL },
701};
702
Roland McGrathf9c49b22004-10-06 22:11:54 +0000703static const char *
Denys Vlasenko1d632462009-04-14 12:51:00 +0000704sprintmode(int mode)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000705{
Denys Vlasenko1945ccc2012-02-27 14:37:48 +0100706 static char buf[sizeof("S_IFSOCK|S_ISUID|S_ISGID|S_ISVTX|%o")
707 + sizeof(int)*3
708 + /*paranoia:*/ 8];
Roland McGrathf9c49b22004-10-06 22:11:54 +0000709 const char *s;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000710
711 if ((mode & S_IFMT) == 0)
712 s = "";
713 else if ((s = xlookup(modetypes, mode & S_IFMT)) == NULL) {
714 sprintf(buf, "%#o", mode);
715 return buf;
716 }
Denys Vlasenko1945ccc2012-02-27 14:37:48 +0100717 s = buf + sprintf(buf, "%s%s%s%s", s,
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000718 (mode & S_ISUID) ? "|S_ISUID" : "",
719 (mode & S_ISGID) ? "|S_ISGID" : "",
720 (mode & S_ISVTX) ? "|S_ISVTX" : "");
721 mode &= ~(S_IFMT|S_ISUID|S_ISGID|S_ISVTX);
722 if (mode)
Denys Vlasenko1945ccc2012-02-27 14:37:48 +0100723 sprintf((char*)s, "|%#o", mode);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000724 s = (*buf == '|') ? buf + 1 : buf;
725 return *s ? s : "0";
726}
727
728static char *
Dmitry V. Levindc7715b2008-04-19 23:45:09 +0000729sprinttime(time_t t)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000730{
731 struct tm *tmp;
Denys Vlasenko1945ccc2012-02-27 14:37:48 +0100732 static char buf[sizeof("yyyy/mm/dd-hh:mm:ss")];
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000733
734 if (t == 0) {
Dmitry V. Levindc7715b2008-04-19 23:45:09 +0000735 strcpy(buf, "0");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000736 return buf;
737 }
Denys Vlasenko5d645812011-08-20 12:48:18 +0200738 tmp = localtime(&t);
739 if (tmp)
Dmitry V. Levindc7715b2008-04-19 23:45:09 +0000740 snprintf(buf, sizeof buf, "%02d/%02d/%02d-%02d:%02d:%02d",
741 tmp->tm_year + 1900, tmp->tm_mon + 1, tmp->tm_mday,
742 tmp->tm_hour, tmp->tm_min, tmp->tm_sec);
743 else
744 snprintf(buf, sizeof buf, "%lu", (unsigned long) t);
745
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000746 return buf;
747}
748
Denys Vlasenko9472a272013-02-12 11:43:46 +0100749#if defined(SPARC) || defined(SPARC64)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000750typedef struct {
Denys Vlasenkoadedb512008-12-30 18:47:55 +0000751 int tv_sec;
752 int tv_nsec;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000753} timestruct_t;
754
755struct solstat {
Denys Vlasenkoadedb512008-12-30 18:47:55 +0000756 unsigned st_dev;
757 int st_pad1[3]; /* network id */
758 unsigned st_ino;
759 unsigned st_mode;
760 unsigned st_nlink;
761 unsigned st_uid;
762 unsigned st_gid;
763 unsigned st_rdev;
764 int st_pad2[2];
765 int st_size;
766 int st_pad3; /* st_size, off_t expansion */
767 timestruct_t st_atime;
768 timestruct_t st_mtime;
769 timestruct_t st_ctime;
770 int st_blksize;
771 int st_blocks;
772 char st_fstype[16];
773 int st_pad4[8]; /* expansion area */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000774};
775
776static void
Dmitry V. Levinb838b1e2008-04-19 23:47:47 +0000777printstatsol(struct tcb *tcp, long addr)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000778{
779 struct solstat statbuf;
780
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000781 if (umove(tcp, addr, &statbuf) < 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200782 tprints("{...}");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000783 return;
784 }
785 if (!abbrev(tcp)) {
786 tprintf("{st_dev=makedev(%lu, %lu), st_ino=%lu, st_mode=%s, ",
787 (unsigned long) ((statbuf.st_dev >> 18) & 0x3fff),
788 (unsigned long) (statbuf.st_dev & 0x3ffff),
789 (unsigned long) statbuf.st_ino,
790 sprintmode(statbuf.st_mode));
791 tprintf("st_nlink=%lu, st_uid=%lu, st_gid=%lu, ",
792 (unsigned long) statbuf.st_nlink,
793 (unsigned long) statbuf.st_uid,
794 (unsigned long) statbuf.st_gid);
795 tprintf("st_blksize=%lu, ", (unsigned long) statbuf.st_blksize);
796 tprintf("st_blocks=%lu, ", (unsigned long) statbuf.st_blocks);
797 }
798 else
799 tprintf("{st_mode=%s, ", sprintmode(statbuf.st_mode));
800 switch (statbuf.st_mode & S_IFMT) {
801 case S_IFCHR: case S_IFBLK:
802 tprintf("st_rdev=makedev(%lu, %lu), ",
803 (unsigned long) ((statbuf.st_rdev >> 18) & 0x3fff),
804 (unsigned long) (statbuf.st_rdev & 0x3ffff));
805 break;
806 default:
807 tprintf("st_size=%u, ", statbuf.st_size);
808 break;
809 }
810 if (!abbrev(tcp)) {
Dmitry V. Levinb838b1e2008-04-19 23:47:47 +0000811 tprintf("st_atime=%s, ", sprinttime(statbuf.st_atime.tv_sec));
812 tprintf("st_mtime=%s, ", sprinttime(statbuf.st_mtime.tv_sec));
813 tprintf("st_ctime=%s}", sprinttime(statbuf.st_ctime.tv_sec));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000814 }
815 else
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200816 tprints("...}");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000817}
Roland McGrath6d1a65c2004-07-12 07:44:08 +0000818
Denys Vlasenko9472a272013-02-12 11:43:46 +0100819# if defined(SPARC64)
Roland McGrath6d1a65c2004-07-12 07:44:08 +0000820static void
Denys Vlasenko1d632462009-04-14 12:51:00 +0000821printstat_sparc64(struct tcb *tcp, long addr)
Roland McGrath6d1a65c2004-07-12 07:44:08 +0000822{
823 struct stat_sparc64 statbuf;
824
Roland McGrath6d1a65c2004-07-12 07:44:08 +0000825 if (umove(tcp, addr, &statbuf) < 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200826 tprints("{...}");
Roland McGrath6d1a65c2004-07-12 07:44:08 +0000827 return;
828 }
829
830 if (!abbrev(tcp)) {
831 tprintf("{st_dev=makedev(%lu, %lu), st_ino=%lu, st_mode=%s, ",
832 (unsigned long) major(statbuf.st_dev),
833 (unsigned long) minor(statbuf.st_dev),
834 (unsigned long) statbuf.st_ino,
835 sprintmode(statbuf.st_mode));
836 tprintf("st_nlink=%lu, st_uid=%lu, st_gid=%lu, ",
837 (unsigned long) statbuf.st_nlink,
838 (unsigned long) statbuf.st_uid,
839 (unsigned long) statbuf.st_gid);
840 tprintf("st_blksize=%lu, ",
841 (unsigned long) statbuf.st_blksize);
842 tprintf("st_blocks=%lu, ",
843 (unsigned long) statbuf.st_blocks);
844 }
845 else
846 tprintf("{st_mode=%s, ", sprintmode(statbuf.st_mode));
847 switch (statbuf.st_mode & S_IFMT) {
848 case S_IFCHR: case S_IFBLK:
849 tprintf("st_rdev=makedev(%lu, %lu), ",
850 (unsigned long) major(statbuf.st_rdev),
851 (unsigned long) minor(statbuf.st_rdev));
852 break;
853 default:
854 tprintf("st_size=%lu, ", statbuf.st_size);
855 break;
856 }
857 if (!abbrev(tcp)) {
858 tprintf("st_atime=%s, ", sprinttime(statbuf.st_atime));
859 tprintf("st_mtime=%s, ", sprinttime(statbuf.st_mtime));
Denys Vlasenko1945ccc2012-02-27 14:37:48 +0100860 tprintf("st_ctime=%s}", sprinttime(statbuf.st_ctime));
Roland McGrath6d1a65c2004-07-12 07:44:08 +0000861 }
862 else
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200863 tprints("...}");
Roland McGrath6d1a65c2004-07-12 07:44:08 +0000864}
Denys Vlasenko9472a272013-02-12 11:43:46 +0100865# endif /* SPARC64 */
866#endif /* SPARC[64] */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000867
Denys Vlasenko84703742012-02-25 02:38:52 +0100868#if defined POWERPC64
Andreas Schwabd69fa492010-07-12 21:39:57 +0200869struct stat_powerpc32 {
870 unsigned int st_dev;
871 unsigned int st_ino;
872 unsigned int st_mode;
873 unsigned short st_nlink;
874 unsigned int st_uid;
875 unsigned int st_gid;
876 unsigned int st_rdev;
877 unsigned int st_size;
878 unsigned int st_blksize;
879 unsigned int st_blocks;
880 unsigned int st_atime;
881 unsigned int st_atime_nsec;
882 unsigned int st_mtime;
883 unsigned int st_mtime_nsec;
884 unsigned int st_ctime;
885 unsigned int st_ctime_nsec;
886 unsigned int __unused4;
887 unsigned int __unused5;
888};
889
890static void
891printstat_powerpc32(struct tcb *tcp, long addr)
892{
893 struct stat_powerpc32 statbuf;
894
895 if (umove(tcp, addr, &statbuf) < 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200896 tprints("{...}");
Andreas Schwabd69fa492010-07-12 21:39:57 +0200897 return;
898 }
899
900 if (!abbrev(tcp)) {
901 tprintf("{st_dev=makedev(%u, %u), st_ino=%u, st_mode=%s, ",
902 major(statbuf.st_dev), minor(statbuf.st_dev),
903 statbuf.st_ino,
904 sprintmode(statbuf.st_mode));
905 tprintf("st_nlink=%u, st_uid=%u, st_gid=%u, ",
906 statbuf.st_nlink, statbuf.st_uid, statbuf.st_gid);
907 tprintf("st_blksize=%u, ", statbuf.st_blksize);
908 tprintf("st_blocks=%u, ", statbuf.st_blocks);
909 }
910 else
911 tprintf("{st_mode=%s, ", sprintmode(statbuf.st_mode));
912 switch (statbuf.st_mode & S_IFMT) {
913 case S_IFCHR: case S_IFBLK:
914 tprintf("st_rdev=makedev(%lu, %lu), ",
915 (unsigned long) major(statbuf.st_rdev),
916 (unsigned long) minor(statbuf.st_rdev));
917 break;
918 default:
919 tprintf("st_size=%u, ", statbuf.st_size);
920 break;
921 }
922 if (!abbrev(tcp)) {
923 tprintf("st_atime=%s, ", sprinttime(statbuf.st_atime));
924 tprintf("st_mtime=%s, ", sprinttime(statbuf.st_mtime));
Denys Vlasenko1945ccc2012-02-27 14:37:48 +0100925 tprintf("st_ctime=%s}", sprinttime(statbuf.st_ctime));
Andreas Schwabd69fa492010-07-12 21:39:57 +0200926 }
927 else
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200928 tprints("...}");
Andreas Schwabd69fa492010-07-12 21:39:57 +0200929}
Denys Vlasenko84703742012-02-25 02:38:52 +0100930#endif /* POWERPC64 */
Andreas Schwabd69fa492010-07-12 21:39:57 +0200931
Roland McGratha4d48532005-06-08 20:45:28 +0000932static const struct xlat fileflags[] = {
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000933 { 0, NULL },
934};
935
John Hughes70623be2001-03-08 13:59:00 +0000936#ifndef HAVE_LONG_LONG_OFF_T
Wichert Akkerman328c5e71999-04-16 00:21:26 +0000937static void
Denys Vlasenko1d632462009-04-14 12:51:00 +0000938realprintstat(struct tcb *tcp, struct stat *statbuf)
Wichert Akkerman328c5e71999-04-16 00:21:26 +0000939{
Denys Vlasenko1d632462009-04-14 12:51:00 +0000940 if (!abbrev(tcp)) {
941 tprintf("{st_dev=makedev(%lu, %lu), st_ino=%lu, st_mode=%s, ",
942 (unsigned long) major(statbuf->st_dev),
943 (unsigned long) minor(statbuf->st_dev),
944 (unsigned long) statbuf->st_ino,
945 sprintmode(statbuf->st_mode));
946 tprintf("st_nlink=%lu, st_uid=%lu, st_gid=%lu, ",
947 (unsigned long) statbuf->st_nlink,
948 (unsigned long) statbuf->st_uid,
949 (unsigned long) statbuf->st_gid);
Roland McGrath6d2b3492002-12-30 00:51:30 +0000950#ifdef HAVE_STRUCT_STAT_ST_BLKSIZE
Denys Vlasenko1d632462009-04-14 12:51:00 +0000951 tprintf("st_blksize=%lu, ", (unsigned long) statbuf->st_blksize);
952#endif
Roland McGrath6d2b3492002-12-30 00:51:30 +0000953#ifdef HAVE_STRUCT_STAT_ST_BLOCKS
Denys Vlasenko1d632462009-04-14 12:51:00 +0000954 tprintf("st_blocks=%lu, ", (unsigned long) statbuf->st_blocks);
955#endif
956 }
957 else
958 tprintf("{st_mode=%s, ", sprintmode(statbuf->st_mode));
959 switch (statbuf->st_mode & S_IFMT) {
960 case S_IFCHR: case S_IFBLK:
Roland McGrath6d2b3492002-12-30 00:51:30 +0000961#ifdef HAVE_STRUCT_STAT_ST_RDEV
Denys Vlasenko1d632462009-04-14 12:51:00 +0000962 tprintf("st_rdev=makedev(%lu, %lu), ",
963 (unsigned long) major(statbuf->st_rdev),
964 (unsigned long) minor(statbuf->st_rdev));
Roland McGrath6d2b3492002-12-30 00:51:30 +0000965#else /* !HAVE_STRUCT_STAT_ST_RDEV */
Denys Vlasenko1d632462009-04-14 12:51:00 +0000966 tprintf("st_size=makedev(%lu, %lu), ",
967 (unsigned long) major(statbuf->st_size),
968 (unsigned long) minor(statbuf->st_size));
Roland McGrath6d2b3492002-12-30 00:51:30 +0000969#endif /* !HAVE_STRUCT_STAT_ST_RDEV */
Denys Vlasenko1d632462009-04-14 12:51:00 +0000970 break;
971 default:
Dmitry V. Levine9a06b72011-02-23 16:16:50 +0000972 tprintf("st_size=%lu, ", (unsigned long) statbuf->st_size);
Denys Vlasenko1d632462009-04-14 12:51:00 +0000973 break;
974 }
975 if (!abbrev(tcp)) {
976 tprintf("st_atime=%s, ", sprinttime(statbuf->st_atime));
977 tprintf("st_mtime=%s, ", sprinttime(statbuf->st_mtime));
978 tprintf("st_ctime=%s", sprinttime(statbuf->st_ctime));
Roland McGrath6d2b3492002-12-30 00:51:30 +0000979#if HAVE_STRUCT_STAT_ST_FLAGS
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200980 tprints(", st_flags=");
Roland McGrathb2dee132005-06-01 19:02:36 +0000981 printflags(fileflags, statbuf->st_flags, "UF_???");
John Hughesc0fc3fd2001-03-08 16:10:40 +0000982#endif
Roland McGrath6d2b3492002-12-30 00:51:30 +0000983#if HAVE_STRUCT_STAT_ST_ACLCNT
John Hughesc0fc3fd2001-03-08 16:10:40 +0000984 tprintf(", st_aclcnt=%d", statbuf->st_aclcnt);
985#endif
Roland McGrath6d2b3492002-12-30 00:51:30 +0000986#if HAVE_STRUCT_STAT_ST_LEVEL
John Hughesc0fc3fd2001-03-08 16:10:40 +0000987 tprintf(", st_level=%ld", statbuf->st_level);
988#endif
Roland McGrath6d2b3492002-12-30 00:51:30 +0000989#if HAVE_STRUCT_STAT_ST_FSTYPE
John Hughesc0fc3fd2001-03-08 16:10:40 +0000990 tprintf(", st_fstype=%.*s",
991 (int) sizeof statbuf->st_fstype, statbuf->st_fstype);
992#endif
Roland McGrath6d2b3492002-12-30 00:51:30 +0000993#if HAVE_STRUCT_STAT_ST_GEN
John Hughesc0fc3fd2001-03-08 16:10:40 +0000994 tprintf(", st_gen=%u", statbuf->st_gen);
995#endif
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200996 tprints("}");
Denys Vlasenko1d632462009-04-14 12:51:00 +0000997 }
998 else
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200999 tprints("...}");
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001000}
1001
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001002static void
Denys Vlasenko1d632462009-04-14 12:51:00 +00001003printstat(struct tcb *tcp, long addr)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001004{
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001005 struct stat statbuf;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001006
Denys Vlasenko4e718b52009-04-20 18:30:13 +00001007 if (!addr) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001008 tprints("NULL");
Denys Vlasenko4e718b52009-04-20 18:30:13 +00001009 return;
1010 }
1011 if (syserror(tcp) || !verbose(tcp)) {
1012 tprintf("%#lx", addr);
1013 return;
1014 }
1015
Denys Vlasenko9472a272013-02-12 11:43:46 +01001016#if defined(SPARC) || defined(SPARC64)
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +00001017 if (current_personality == 1) {
1018 printstatsol(tcp, addr);
1019 return;
1020 }
Roland McGrath6d1a65c2004-07-12 07:44:08 +00001021#ifdef SPARC64
1022 else if (current_personality == 2) {
1023 printstat_sparc64(tcp, addr);
1024 return;
1025 }
1026#endif
Denys Vlasenko9472a272013-02-12 11:43:46 +01001027#endif /* SPARC[64] */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001028
Denys Vlasenko84703742012-02-25 02:38:52 +01001029#if defined POWERPC64
Andreas Schwabd69fa492010-07-12 21:39:57 +02001030 if (current_personality == 1) {
1031 printstat_powerpc32(tcp, addr);
1032 return;
1033 }
1034#endif
1035
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001036 if (umove(tcp, addr, &statbuf) < 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001037 tprints("{...}");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001038 return;
1039 }
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001040
1041 realprintstat(tcp, &statbuf);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001042}
John Hughes70623be2001-03-08 13:59:00 +00001043#endif /* !HAVE_LONG_LONG_OFF_T */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001044
Denys Vlasenko84703742012-02-25 02:38:52 +01001045#if !defined HAVE_STAT64 && defined X86_64
Roland McGrathe6d0f712007-08-07 01:22:49 +00001046/*
1047 * Linux x86_64 has unified `struct stat' but its i386 biarch needs
1048 * `struct stat64'. Its <asm-i386/stat.h> definition expects 32-bit `long'.
1049 * <linux/include/asm-x86_64/ia32.h> is not in the public includes set.
1050 * __GNUC__ is needed for the required __attribute__ below.
1051 */
1052struct stat64 {
1053 unsigned long long st_dev;
1054 unsigned char __pad0[4];
1055 unsigned int __st_ino;
1056 unsigned int st_mode;
1057 unsigned int st_nlink;
1058 unsigned int st_uid;
1059 unsigned int st_gid;
1060 unsigned long long st_rdev;
1061 unsigned char __pad3[4];
1062 long long st_size;
1063 unsigned int st_blksize;
1064 unsigned long long st_blocks;
1065 unsigned int st_atime;
1066 unsigned int st_atime_nsec;
1067 unsigned int st_mtime;
1068 unsigned int st_mtime_nsec;
1069 unsigned int st_ctime;
1070 unsigned int st_ctime_nsec;
1071 unsigned long long st_ino;
1072} __attribute__((packed));
1073# define HAVE_STAT64 1
1074# define STAT64_SIZE 96
1075#endif
1076
Wichert Akkermanc7926982000-04-10 22:22:31 +00001077#ifdef HAVE_STAT64
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001078static void
Denys Vlasenko1d632462009-04-14 12:51:00 +00001079printstat64(struct tcb *tcp, long addr)
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001080{
1081 struct stat64 statbuf;
1082
Denys Vlasenko4e718b52009-04-20 18:30:13 +00001083#ifdef STAT64_SIZE
Roland McGrathe6d0f712007-08-07 01:22:49 +00001084 (void) sizeof(char[sizeof statbuf == STAT64_SIZE ? 1 : -1]);
1085#endif
1086
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001087 if (!addr) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001088 tprints("NULL");
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001089 return;
1090 }
1091 if (syserror(tcp) || !verbose(tcp)) {
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +00001092 tprintf("%#lx", addr);
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001093 return;
1094 }
Denys Vlasenko4e718b52009-04-20 18:30:13 +00001095
Denys Vlasenko9472a272013-02-12 11:43:46 +01001096#if defined(SPARC) || defined(SPARC64)
Denys Vlasenko4e718b52009-04-20 18:30:13 +00001097 if (current_personality == 1) {
1098 printstatsol(tcp, addr);
1099 return;
1100 }
1101# ifdef SPARC64
1102 else if (current_personality == 2) {
1103 printstat_sparc64(tcp, addr);
1104 return;
1105 }
1106# endif
Denys Vlasenko9472a272013-02-12 11:43:46 +01001107#endif /* SPARC[64] */
Denys Vlasenko4e718b52009-04-20 18:30:13 +00001108
Denys Vlasenko84703742012-02-25 02:38:52 +01001109#if defined X86_64
H.J. Lu35be5812012-04-16 13:00:01 +02001110 if (current_personality != 1) {
Andreas Schwab61b74352009-10-16 11:37:13 +02001111 printstat(tcp, addr);
1112 return;
1113 }
1114#endif
Dmitry V. Levinff896f72009-10-21 13:43:57 +00001115
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001116 if (umove(tcp, addr, &statbuf) < 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001117 tprints("{...}");
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001118 return;
1119 }
1120
1121 if (!abbrev(tcp)) {
Wichert Akkermand077c452000-08-10 18:16:15 +00001122#ifdef HAVE_LONG_LONG
1123 tprintf("{st_dev=makedev(%lu, %lu), st_ino=%llu, st_mode=%s, ",
1124#else
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001125 tprintf("{st_dev=makedev(%lu, %lu), st_ino=%lu, st_mode=%s, ",
Wichert Akkermand077c452000-08-10 18:16:15 +00001126#endif
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001127 (unsigned long) major(statbuf.st_dev),
1128 (unsigned long) minor(statbuf.st_dev),
Wichert Akkermand077c452000-08-10 18:16:15 +00001129#ifdef HAVE_LONG_LONG
1130 (unsigned long long) statbuf.st_ino,
1131#else
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001132 (unsigned long) statbuf.st_ino,
Wichert Akkermand077c452000-08-10 18:16:15 +00001133#endif
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001134 sprintmode(statbuf.st_mode));
1135 tprintf("st_nlink=%lu, st_uid=%lu, st_gid=%lu, ",
1136 (unsigned long) statbuf.st_nlink,
1137 (unsigned long) statbuf.st_uid,
1138 (unsigned long) statbuf.st_gid);
Roland McGrath6d2b3492002-12-30 00:51:30 +00001139#ifdef HAVE_STRUCT_STAT_ST_BLKSIZE
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001140 tprintf("st_blksize=%lu, ",
1141 (unsigned long) statbuf.st_blksize);
Roland McGrath6d2b3492002-12-30 00:51:30 +00001142#endif /* HAVE_STRUCT_STAT_ST_BLKSIZE */
1143#ifdef HAVE_STRUCT_STAT_ST_BLOCKS
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001144 tprintf("st_blocks=%lu, ", (unsigned long) statbuf.st_blocks);
Roland McGrath6d2b3492002-12-30 00:51:30 +00001145#endif /* HAVE_STRUCT_STAT_ST_BLOCKS */
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001146 }
1147 else
1148 tprintf("{st_mode=%s, ", sprintmode(statbuf.st_mode));
1149 switch (statbuf.st_mode & S_IFMT) {
1150 case S_IFCHR: case S_IFBLK:
Roland McGrath6d2b3492002-12-30 00:51:30 +00001151#ifdef HAVE_STRUCT_STAT_ST_RDEV
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001152 tprintf("st_rdev=makedev(%lu, %lu), ",
1153 (unsigned long) major(statbuf.st_rdev),
1154 (unsigned long) minor(statbuf.st_rdev));
Roland McGrath6d2b3492002-12-30 00:51:30 +00001155#else /* !HAVE_STRUCT_STAT_ST_RDEV */
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001156 tprintf("st_size=makedev(%lu, %lu), ",
1157 (unsigned long) major(statbuf.st_size),
1158 (unsigned long) minor(statbuf.st_size));
Roland McGrath6d2b3492002-12-30 00:51:30 +00001159#endif /* !HAVE_STRUCT_STAT_ST_RDEV */
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001160 break;
1161 default:
Roland McGrathc7bd4d32007-08-07 01:05:19 +00001162#ifdef HAVE_LONG_LONG
1163 tprintf("st_size=%llu, ", (unsigned long long) statbuf.st_size);
1164#else
1165 tprintf("st_size=%lu, ", (unsigned long) statbuf.st_size);
1166#endif
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001167 break;
1168 }
1169 if (!abbrev(tcp)) {
1170 tprintf("st_atime=%s, ", sprinttime(statbuf.st_atime));
1171 tprintf("st_mtime=%s, ", sprinttime(statbuf.st_mtime));
John Hughesc0fc3fd2001-03-08 16:10:40 +00001172 tprintf("st_ctime=%s", sprinttime(statbuf.st_ctime));
Roland McGrath6d2b3492002-12-30 00:51:30 +00001173#if HAVE_STRUCT_STAT_ST_FLAGS
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001174 tprints(", st_flags=");
Roland McGrathb2dee132005-06-01 19:02:36 +00001175 printflags(fileflags, statbuf.st_flags, "UF_???");
John Hughesc0fc3fd2001-03-08 16:10:40 +00001176#endif
Roland McGrath6d2b3492002-12-30 00:51:30 +00001177#if HAVE_STRUCT_STAT_ST_ACLCNT
John Hughesc0fc3fd2001-03-08 16:10:40 +00001178 tprintf(", st_aclcnt=%d", statbuf.st_aclcnt);
1179#endif
Roland McGrath6d2b3492002-12-30 00:51:30 +00001180#if HAVE_STRUCT_STAT_ST_LEVEL
John Hughesc0fc3fd2001-03-08 16:10:40 +00001181 tprintf(", st_level=%ld", statbuf.st_level);
1182#endif
Roland McGrath6d2b3492002-12-30 00:51:30 +00001183#if HAVE_STRUCT_STAT_ST_FSTYPE
John Hughesc0fc3fd2001-03-08 16:10:40 +00001184 tprintf(", st_fstype=%.*s",
1185 (int) sizeof statbuf.st_fstype, statbuf.st_fstype);
1186#endif
Roland McGrath6d2b3492002-12-30 00:51:30 +00001187#if HAVE_STRUCT_STAT_ST_GEN
John Hughesc0fc3fd2001-03-08 16:10:40 +00001188 tprintf(", st_gen=%u", statbuf.st_gen);
1189#endif
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001190 tprints("}");
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001191 }
1192 else
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001193 tprints("...}");
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001194}
Wichert Akkermanc7926982000-04-10 22:22:31 +00001195#endif /* HAVE_STAT64 */
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001196
Denys Vlasenko84703742012-02-25 02:38:52 +01001197#if defined(HAVE_STRUCT___OLD_KERNEL_STAT) && !defined(HAVE_LONG_LONG_OFF_T)
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001198static void
Denys Vlasenko1d632462009-04-14 12:51:00 +00001199convertoldstat(const struct __old_kernel_stat *oldbuf, struct stat *newbuf)
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001200{
Denys Vlasenko1d632462009-04-14 12:51:00 +00001201 newbuf->st_dev = oldbuf->st_dev;
1202 newbuf->st_ino = oldbuf->st_ino;
1203 newbuf->st_mode = oldbuf->st_mode;
1204 newbuf->st_nlink = oldbuf->st_nlink;
1205 newbuf->st_uid = oldbuf->st_uid;
1206 newbuf->st_gid = oldbuf->st_gid;
1207 newbuf->st_rdev = oldbuf->st_rdev;
1208 newbuf->st_size = oldbuf->st_size;
1209 newbuf->st_atime = oldbuf->st_atime;
1210 newbuf->st_mtime = oldbuf->st_mtime;
1211 newbuf->st_ctime = oldbuf->st_ctime;
1212 newbuf->st_blksize = 0; /* not supported in old_stat */
1213 newbuf->st_blocks = 0; /* not supported in old_stat */
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001214}
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001215
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001216static void
Denys Vlasenko1d632462009-04-14 12:51:00 +00001217printoldstat(struct tcb *tcp, long addr)
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001218{
Wichert Akkerman25d0c4f1999-04-18 19:35:42 +00001219 struct __old_kernel_stat statbuf;
1220 struct stat newstatbuf;
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001221
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001222 if (!addr) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001223 tprints("NULL");
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001224 return;
1225 }
1226 if (syserror(tcp) || !verbose(tcp)) {
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +00001227 tprintf("%#lx", addr);
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001228 return;
1229 }
Denys Vlasenko4e718b52009-04-20 18:30:13 +00001230
Denys Vlasenko9472a272013-02-12 11:43:46 +01001231# if defined(SPARC) || defined(SPARC64)
Denys Vlasenko4e718b52009-04-20 18:30:13 +00001232 if (current_personality == 1) {
1233 printstatsol(tcp, addr);
1234 return;
1235 }
Denys Vlasenko84703742012-02-25 02:38:52 +01001236# endif
Denys Vlasenko4e718b52009-04-20 18:30:13 +00001237
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001238 if (umove(tcp, addr, &statbuf) < 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001239 tprints("{...}");
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001240 return;
1241 }
1242
1243 convertoldstat(&statbuf, &newstatbuf);
1244 realprintstat(tcp, &newstatbuf);
1245}
Denys Vlasenko84703742012-02-25 02:38:52 +01001246#endif
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001247
John Hughes70623be2001-03-08 13:59:00 +00001248#ifndef HAVE_LONG_LONG_OFF_T
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001249int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001250sys_stat(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001251{
1252 if (entering(tcp)) {
1253 printpath(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001254 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001255 } else {
1256 printstat(tcp, tcp->u_arg[1]);
1257 }
1258 return 0;
1259}
John Hughesb8c9f772001-03-07 16:53:07 +00001260#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001261
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001262int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001263sys_stat64(struct tcb *tcp)
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001264{
1265#ifdef HAVE_STAT64
1266 if (entering(tcp)) {
1267 printpath(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001268 tprints(", ");
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001269 } else {
1270 printstat64(tcp, tcp->u_arg[1]);
1271 }
1272 return 0;
1273#else
1274 return printargs(tcp);
1275#endif
1276}
1277
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001278#ifndef AT_SYMLINK_NOFOLLOW
Dmitry V. Levin7989ad42012-03-13 23:26:01 +00001279# define AT_SYMLINK_NOFOLLOW 0x100
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001280#endif
Dmitry V. Levin7989ad42012-03-13 23:26:01 +00001281#ifndef AT_REMOVEDIR
1282# define AT_REMOVEDIR 0x200
1283#endif
1284#ifndef AT_SYMLINK_FOLLOW
1285# define AT_SYMLINK_FOLLOW 0x400
1286#endif
1287#ifndef AT_NO_AUTOMOUNT
1288# define AT_NO_AUTOMOUNT 0x800
1289#endif
1290#ifndef AT_EMPTY_PATH
1291# define AT_EMPTY_PATH 0x1000
1292#endif
1293
1294static const struct xlat at_flags[] = {
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001295 { AT_SYMLINK_NOFOLLOW, "AT_SYMLINK_NOFOLLOW" },
Dmitry V. Levin7989ad42012-03-13 23:26:01 +00001296 { AT_REMOVEDIR, "AT_REMOVEDIR" },
1297 { AT_SYMLINK_FOLLOW, "AT_SYMLINK_FOLLOW" },
1298 { AT_NO_AUTOMOUNT, "AT_NO_AUTOMOUNT" },
1299 { AT_EMPTY_PATH, "AT_EMPTY_PATH" },
1300 { 0, NULL }
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001301};
1302
1303int
1304sys_newfstatat(struct tcb *tcp)
1305{
1306 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +03001307 print_dirfd(tcp, tcp->u_arg[0]);
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001308 printpath(tcp, tcp->u_arg[1]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001309 tprints(", ");
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001310 } else {
Andreas Schwabd69fa492010-07-12 21:39:57 +02001311#ifdef POWERPC64
1312 if (current_personality == 0)
1313 printstat(tcp, tcp->u_arg[2]);
1314 else
1315 printstat64(tcp, tcp->u_arg[2]);
1316#elif defined HAVE_STAT64
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001317 printstat64(tcp, tcp->u_arg[2]);
1318#else
1319 printstat(tcp, tcp->u_arg[2]);
1320#endif
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001321 tprints(", ");
Dmitry V. Levin7989ad42012-03-13 23:26:01 +00001322 printflags(at_flags, tcp->u_arg[3], "AT_???");
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001323 }
1324 return 0;
1325}
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001326
Denys Vlasenko84703742012-02-25 02:38:52 +01001327#if defined(HAVE_STRUCT___OLD_KERNEL_STAT) && !defined(HAVE_LONG_LONG_OFF_T)
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001328int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001329sys_oldstat(struct tcb *tcp)
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001330{
1331 if (entering(tcp)) {
1332 printpath(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001333 tprints(", ");
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001334 } else {
1335 printoldstat(tcp, tcp->u_arg[1]);
1336 }
1337 return 0;
1338}
Denys Vlasenko84703742012-02-25 02:38:52 +01001339#endif
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001340
John Hughes70623be2001-03-08 13:59:00 +00001341#ifndef HAVE_LONG_LONG_OFF_T
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001342int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001343sys_fstat(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001344{
Dmitry V. Levin31382132011-03-04 05:08:02 +03001345 if (entering(tcp)) {
1346 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001347 tprints(", ");
Dmitry V. Levin31382132011-03-04 05:08:02 +03001348 } else {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001349 printstat(tcp, tcp->u_arg[1]);
1350 }
1351 return 0;
1352}
John Hughesb8c9f772001-03-07 16:53:07 +00001353#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001354
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001355int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001356sys_fstat64(struct tcb *tcp)
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001357{
1358#ifdef HAVE_STAT64
Dmitry V. Levin31382132011-03-04 05:08:02 +03001359 if (entering(tcp)) {
1360 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001361 tprints(", ");
Dmitry V. Levin31382132011-03-04 05:08:02 +03001362 } else {
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001363 printstat64(tcp, tcp->u_arg[1]);
1364 }
1365 return 0;
1366#else
1367 return printargs(tcp);
1368#endif
1369}
1370
Denys Vlasenko84703742012-02-25 02:38:52 +01001371#if defined(HAVE_STRUCT___OLD_KERNEL_STAT) && !defined(HAVE_LONG_LONG_OFF_T)
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001372int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001373sys_oldfstat(struct tcb *tcp)
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001374{
Dmitry V. Levin31382132011-03-04 05:08:02 +03001375 if (entering(tcp)) {
1376 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001377 tprints(", ");
Dmitry V. Levin31382132011-03-04 05:08:02 +03001378 } else {
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001379 printoldstat(tcp, tcp->u_arg[1]);
1380 }
1381 return 0;
1382}
Denys Vlasenko84703742012-02-25 02:38:52 +01001383#endif
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001384
John Hughes70623be2001-03-08 13:59:00 +00001385#ifndef HAVE_LONG_LONG_OFF_T
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001386int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001387sys_lstat(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001388{
1389 if (entering(tcp)) {
1390 printpath(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001391 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001392 } else {
1393 printstat(tcp, tcp->u_arg[1]);
1394 }
1395 return 0;
1396}
John Hughesb8c9f772001-03-07 16:53:07 +00001397#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001398
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001399int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001400sys_lstat64(struct tcb *tcp)
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001401{
1402#ifdef HAVE_STAT64
1403 if (entering(tcp)) {
1404 printpath(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001405 tprints(", ");
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001406 } else {
1407 printstat64(tcp, tcp->u_arg[1]);
1408 }
1409 return 0;
1410#else
1411 return printargs(tcp);
1412#endif
1413}
1414
Denys Vlasenko84703742012-02-25 02:38:52 +01001415#if defined(HAVE_STRUCT___OLD_KERNEL_STAT) && !defined(HAVE_LONG_LONG_OFF_T)
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +00001416int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001417sys_oldlstat(struct tcb *tcp)
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001418{
1419 if (entering(tcp)) {
1420 printpath(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001421 tprints(", ");
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001422 } else {
1423 printoldstat(tcp, tcp->u_arg[1]);
1424 }
1425 return 0;
1426}
Denys Vlasenko84703742012-02-25 02:38:52 +01001427#endif
Wichert Akkerman328c5e71999-04-16 00:21:26 +00001428
Denys Vlasenko9472a272013-02-12 11:43:46 +01001429#if defined(SPARC) || defined(SPARC64)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001430
1431int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001432sys_xstat(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001433{
1434 if (entering(tcp)) {
1435 tprintf("%ld, ", tcp->u_arg[0]);
1436 printpath(tcp, tcp->u_arg[1]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001437 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001438 } else {
Denys Vlasenko84703742012-02-25 02:38:52 +01001439# ifdef _STAT64_VER
John Hughes8fe2c982001-03-06 09:45:18 +00001440 if (tcp->u_arg[0] == _STAT64_VER)
Denys Vlasenkob237b1b2012-02-27 13:56:59 +01001441 printstat64(tcp, tcp->u_arg[2]);
John Hughes8fe2c982001-03-06 09:45:18 +00001442 else
Denys Vlasenko84703742012-02-25 02:38:52 +01001443# endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001444 printstat(tcp, tcp->u_arg[2]);
1445 }
1446 return 0;
1447}
1448
1449int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001450sys_fxstat(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001451{
1452 if (entering(tcp))
1453 tprintf("%ld, %ld, ", tcp->u_arg[0], tcp->u_arg[1]);
1454 else {
Denys Vlasenko84703742012-02-25 02:38:52 +01001455# ifdef _STAT64_VER
John Hughes8fe2c982001-03-06 09:45:18 +00001456 if (tcp->u_arg[0] == _STAT64_VER)
Denys Vlasenkob237b1b2012-02-27 13:56:59 +01001457 printstat64(tcp, tcp->u_arg[2]);
John Hughes8fe2c982001-03-06 09:45:18 +00001458 else
Denys Vlasenko84703742012-02-25 02:38:52 +01001459# endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001460 printstat(tcp, tcp->u_arg[2]);
1461 }
1462 return 0;
1463}
1464
1465int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001466sys_lxstat(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001467{
1468 if (entering(tcp)) {
1469 tprintf("%ld, ", tcp->u_arg[0]);
1470 printpath(tcp, tcp->u_arg[1]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001471 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001472 } else {
Denys Vlasenko84703742012-02-25 02:38:52 +01001473# ifdef _STAT64_VER
John Hughes8fe2c982001-03-06 09:45:18 +00001474 if (tcp->u_arg[0] == _STAT64_VER)
Denys Vlasenkob237b1b2012-02-27 13:56:59 +01001475 printstat64(tcp, tcp->u_arg[2]);
John Hughes8fe2c982001-03-06 09:45:18 +00001476 else
Denys Vlasenko84703742012-02-25 02:38:52 +01001477# endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001478 printstat(tcp, tcp->u_arg[2]);
1479 }
1480 return 0;
1481}
1482
1483int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001484sys_xmknod(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001485{
1486 int mode = tcp->u_arg[2];
1487
1488 if (entering(tcp)) {
1489 tprintf("%ld, ", tcp->u_arg[0]);
1490 printpath(tcp, tcp->u_arg[1]);
1491 tprintf(", %s", sprintmode(mode));
1492 switch (mode & S_IFMT) {
1493 case S_IFCHR: case S_IFBLK:
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001494 tprintf(", makedev(%lu, %lu)",
1495 (unsigned long) ((tcp->u_arg[3] >> 18) & 0x3fff),
1496 (unsigned long) (tcp->u_arg[3] & 0x3ffff));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001497 break;
1498 default:
1499 break;
1500 }
1501 }
1502 return 0;
1503}
1504
Denys Vlasenko84703742012-02-25 02:38:52 +01001505# ifdef HAVE_SYS_ACL_H
Wichert Akkerman8829a551999-06-11 13:18:40 +00001506
Denys Vlasenko84703742012-02-25 02:38:52 +01001507# include <sys/acl.h>
Wichert Akkerman8829a551999-06-11 13:18:40 +00001508
Roland McGratha4d48532005-06-08 20:45:28 +00001509static const struct xlat aclcmds[] = {
Denys Vlasenko84703742012-02-25 02:38:52 +01001510# ifdef SETACL
Wichert Akkerman8829a551999-06-11 13:18:40 +00001511 { SETACL, "SETACL" },
Denys Vlasenko84703742012-02-25 02:38:52 +01001512# endif
1513# ifdef GETACL
Wichert Akkerman8829a551999-06-11 13:18:40 +00001514 { GETACL, "GETACL" },
Denys Vlasenko84703742012-02-25 02:38:52 +01001515# endif
1516# ifdef GETACLCNT
Wichert Akkerman8829a551999-06-11 13:18:40 +00001517 { GETACLCNT, "GETACLCNT" },
Denys Vlasenko84703742012-02-25 02:38:52 +01001518# endif
1519# ifdef ACL_GET
Wichert Akkermane4aafd41999-11-26 09:54:08 +00001520 { ACL_GET, "ACL_GET" },
Denys Vlasenko84703742012-02-25 02:38:52 +01001521# endif
1522# ifdef ACL_SET
Wichert Akkermane4aafd41999-11-26 09:54:08 +00001523 { ACL_SET, "ACL_SET" },
Denys Vlasenko84703742012-02-25 02:38:52 +01001524# endif
1525# ifdef ACL_CNT
Wichert Akkermane4aafd41999-11-26 09:54:08 +00001526 { ACL_CNT, "ACL_CNT" },
Denys Vlasenko84703742012-02-25 02:38:52 +01001527# endif
Wichert Akkerman8829a551999-06-11 13:18:40 +00001528 { 0, NULL },
1529};
1530
1531int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001532sys_acl(struct tcb *tcp)
Wichert Akkerman8829a551999-06-11 13:18:40 +00001533{
1534 if (entering(tcp)) {
1535 printpath(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001536 tprints(", ");
Wichert Akkerman8829a551999-06-11 13:18:40 +00001537 printxval(aclcmds, tcp->u_arg[1], "???ACL???");
1538 tprintf(", %ld", tcp->u_arg[2]);
1539 /*
1540 * FIXME - dump out the list of aclent_t's pointed to
1541 * by "tcp->u_arg[3]" if it's not NULL.
1542 */
1543 if (tcp->u_arg[3])
1544 tprintf(", %#lx", tcp->u_arg[3]);
1545 else
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001546 tprints(", NULL");
Wichert Akkerman8829a551999-06-11 13:18:40 +00001547 }
1548 return 0;
1549}
1550
Wichert Akkerman8829a551999-06-11 13:18:40 +00001551int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001552sys_facl(struct tcb *tcp)
Wichert Akkerman8829a551999-06-11 13:18:40 +00001553{
1554 if (entering(tcp)) {
1555 tprintf("%ld, ", tcp->u_arg[0]);
1556 printxval(aclcmds, tcp->u_arg[1], "???ACL???");
1557 tprintf(", %ld", tcp->u_arg[2]);
1558 /*
1559 * FIXME - dump out the list of aclent_t's pointed to
1560 * by "tcp->u_arg[3]" if it's not NULL.
1561 */
1562 if (tcp->u_arg[3])
1563 tprintf(", %#lx", tcp->u_arg[3]);
1564 else
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001565 tprints(", NULL");
Wichert Akkerman8829a551999-06-11 13:18:40 +00001566 }
1567 return 0;
1568}
1569
Roland McGratha4d48532005-06-08 20:45:28 +00001570static const struct xlat aclipc[] = {
Denys Vlasenko84703742012-02-25 02:38:52 +01001571# ifdef IPC_SHM
Wichert Akkermane4aafd41999-11-26 09:54:08 +00001572 { IPC_SHM, "IPC_SHM" },
Denys Vlasenko84703742012-02-25 02:38:52 +01001573# endif
1574# ifdef IPC_SEM
Wichert Akkermane4aafd41999-11-26 09:54:08 +00001575 { IPC_SEM, "IPC_SEM" },
Denys Vlasenko84703742012-02-25 02:38:52 +01001576# endif
1577# ifdef IPC_MSG
Wichert Akkermane4aafd41999-11-26 09:54:08 +00001578 { IPC_MSG, "IPC_MSG" },
Denys Vlasenko84703742012-02-25 02:38:52 +01001579# endif
Wichert Akkermane4aafd41999-11-26 09:54:08 +00001580 { 0, NULL },
1581};
1582
Wichert Akkermane4aafd41999-11-26 09:54:08 +00001583int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001584sys_aclipc(struct tcb *tcp)
Wichert Akkermane4aafd41999-11-26 09:54:08 +00001585{
1586 if (entering(tcp)) {
1587 printxval(aclipc, tcp->u_arg[0], "???IPC???");
1588 tprintf(", %#lx, ", tcp->u_arg[1]);
1589 printxval(aclcmds, tcp->u_arg[2], "???ACL???");
1590 tprintf(", %ld", tcp->u_arg[3]);
1591 /*
1592 * FIXME - dump out the list of aclent_t's pointed to
1593 * by "tcp->u_arg[4]" if it's not NULL.
1594 */
1595 if (tcp->u_arg[4])
1596 tprintf(", %#lx", tcp->u_arg[4]);
1597 else
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001598 tprints(", NULL");
Wichert Akkermane4aafd41999-11-26 09:54:08 +00001599 }
1600 return 0;
1601}
1602
Denys Vlasenko84703742012-02-25 02:38:52 +01001603# endif /* HAVE_SYS_ACL_H */
Wichert Akkerman8829a551999-06-11 13:18:40 +00001604
Denys Vlasenko9472a272013-02-12 11:43:46 +01001605#endif /* SPARC[64] */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001606
Roland McGrathd9f816f2004-09-04 03:39:20 +00001607static const struct xlat fsmagic[] = {
Wichert Akkerman43a74822000-06-27 17:33:32 +00001608 { 0x73757245, "CODA_SUPER_MAGIC" },
1609 { 0x012ff7b7, "COH_SUPER_MAGIC" },
1610 { 0x1373, "DEVFS_SUPER_MAGIC" },
1611 { 0x1cd1, "DEVPTS_SUPER_MAGIC" },
1612 { 0x414A53, "EFS_SUPER_MAGIC" },
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001613 { 0xef51, "EXT2_OLD_SUPER_MAGIC" },
1614 { 0xef53, "EXT2_SUPER_MAGIC" },
1615 { 0x137d, "EXT_SUPER_MAGIC" },
Wichert Akkerman43a74822000-06-27 17:33:32 +00001616 { 0xf995e849, "HPFS_SUPER_MAGIC" },
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001617 { 0x9660, "ISOFS_SUPER_MAGIC" },
1618 { 0x137f, "MINIX_SUPER_MAGIC" },
1619 { 0x138f, "MINIX_SUPER_MAGIC2" },
Wichert Akkerman2e2553a1999-05-09 00:29:58 +00001620 { 0x2468, "MINIX2_SUPER_MAGIC" },
1621 { 0x2478, "MINIX2_SUPER_MAGIC2" },
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001622 { 0x4d44, "MSDOS_SUPER_MAGIC" },
Wichert Akkerman43a74822000-06-27 17:33:32 +00001623 { 0x564c, "NCP_SUPER_MAGIC" },
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001624 { 0x6969, "NFS_SUPER_MAGIC" },
1625 { 0x9fa0, "PROC_SUPER_MAGIC" },
Wichert Akkerman43a74822000-06-27 17:33:32 +00001626 { 0x002f, "QNX4_SUPER_MAGIC" },
1627 { 0x52654973, "REISERFS_SUPER_MAGIC" },
1628 { 0x02011994, "SHMFS_SUPER_MAGIC" },
1629 { 0x517b, "SMB_SUPER_MAGIC" },
1630 { 0x012ff7b6, "SYSV2_SUPER_MAGIC" },
1631 { 0x012ff7b5, "SYSV4_SUPER_MAGIC" },
1632 { 0x00011954, "UFS_MAGIC" },
1633 { 0x54190100, "UFS_CIGAM" },
1634 { 0x012ff7b4, "XENIX_SUPER_MAGIC" },
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001635 { 0x012fd16d, "XIAFS_SUPER_MAGIC" },
Roland McGrathc767ad82004-01-13 10:13:45 +00001636 { 0x62656572, "SYSFS_MAGIC" },
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001637 { 0, NULL },
1638};
1639
Roland McGrathf9c49b22004-10-06 22:11:54 +00001640static const char *
Denys Vlasenko1d632462009-04-14 12:51:00 +00001641sprintfstype(int magic)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001642{
1643 static char buf[32];
Roland McGrathf9c49b22004-10-06 22:11:54 +00001644 const char *s;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001645
1646 s = xlookup(fsmagic, magic);
1647 if (s) {
1648 sprintf(buf, "\"%s\"", s);
1649 return buf;
1650 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001651 sprintf(buf, "%#x", magic);
1652 return buf;
1653}
1654
1655static void
Denys Vlasenko1d632462009-04-14 12:51:00 +00001656printstatfs(struct tcb *tcp, long addr)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001657{
1658 struct statfs statbuf;
1659
1660 if (syserror(tcp) || !verbose(tcp)) {
1661 tprintf("%#lx", addr);
1662 return;
1663 }
1664 if (umove(tcp, addr, &statbuf) < 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001665 tprints("{...}");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001666 return;
1667 }
1668#ifdef ALPHA
1669
1670 tprintf("{f_type=%s, f_fbsize=%u, f_blocks=%u, f_bfree=%u, ",
1671 sprintfstype(statbuf.f_type),
1672 statbuf.f_bsize, statbuf.f_blocks, statbuf.f_bfree);
Roland McGrathab147c52003-07-17 09:03:02 +00001673 tprintf("f_bavail=%u, f_files=%u, f_ffree=%u, f_fsid={%d, %d}, f_namelen=%u",
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001674 statbuf.f_bavail, statbuf.f_files, statbuf.f_ffree,
Roland McGrathab147c52003-07-17 09:03:02 +00001675 statbuf.f_fsid.__val[0], statbuf.f_fsid.__val[1],
1676 statbuf.f_namelen);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001677#else /* !ALPHA */
1678 tprintf("{f_type=%s, f_bsize=%lu, f_blocks=%lu, f_bfree=%lu, ",
1679 sprintfstype(statbuf.f_type),
Nate Sammons5c74d201999-04-06 01:37:51 +00001680 (unsigned long)statbuf.f_bsize,
1681 (unsigned long)statbuf.f_blocks,
1682 (unsigned long)statbuf.f_bfree);
Roland McGrathab147c52003-07-17 09:03:02 +00001683 tprintf("f_bavail=%lu, f_files=%lu, f_ffree=%lu, f_fsid={%d, %d}",
1684 (unsigned long)statbuf.f_bavail,
Nate Sammons5c74d201999-04-06 01:37:51 +00001685 (unsigned long)statbuf.f_files,
Roland McGrathab147c52003-07-17 09:03:02 +00001686 (unsigned long)statbuf.f_ffree,
1687 statbuf.f_fsid.__val[0], statbuf.f_fsid.__val[1]);
Wichert Akkerman2e2553a1999-05-09 00:29:58 +00001688 tprintf(", f_namelen=%lu", (unsigned long)statbuf.f_namelen);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001689#endif /* !ALPHA */
Roland McGrathab147c52003-07-17 09:03:02 +00001690#ifdef _STATFS_F_FRSIZE
1691 tprintf(", f_frsize=%lu", (unsigned long)statbuf.f_frsize);
1692#endif
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001693 tprints("}");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001694}
1695
1696int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001697sys_statfs(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001698{
1699 if (entering(tcp)) {
1700 printpath(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001701 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001702 } else {
1703 printstatfs(tcp, tcp->u_arg[1]);
1704 }
1705 return 0;
1706}
1707
1708int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001709sys_fstatfs(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001710{
1711 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +03001712 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001713 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001714 } else {
1715 printstatfs(tcp, tcp->u_arg[1]);
1716 }
1717 return 0;
1718}
1719
Denys Vlasenko84703742012-02-25 02:38:52 +01001720#if defined HAVE_STATFS64
Roland McGrathab147c52003-07-17 09:03:02 +00001721static void
Denys Vlasenko1d632462009-04-14 12:51:00 +00001722printstatfs64(struct tcb *tcp, long addr)
Roland McGrathab147c52003-07-17 09:03:02 +00001723{
1724 struct statfs64 statbuf;
1725
1726 if (syserror(tcp) || !verbose(tcp)) {
1727 tprintf("%#lx", addr);
1728 return;
1729 }
1730 if (umove(tcp, addr, &statbuf) < 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001731 tprints("{...}");
Roland McGrathab147c52003-07-17 09:03:02 +00001732 return;
1733 }
Roland McGrath08738432005-06-03 02:40:39 +00001734 tprintf("{f_type=%s, f_bsize=%llu, f_blocks=%llu, f_bfree=%llu, ",
Roland McGrathab147c52003-07-17 09:03:02 +00001735 sprintfstype(statbuf.f_type),
Roland McGrath08738432005-06-03 02:40:39 +00001736 (unsigned long long)statbuf.f_bsize,
1737 (unsigned long long)statbuf.f_blocks,
1738 (unsigned long long)statbuf.f_bfree);
1739 tprintf("f_bavail=%llu, f_files=%llu, f_ffree=%llu, f_fsid={%d, %d}",
1740 (unsigned long long)statbuf.f_bavail,
1741 (unsigned long long)statbuf.f_files,
1742 (unsigned long long)statbuf.f_ffree,
Roland McGrathab147c52003-07-17 09:03:02 +00001743 statbuf.f_fsid.__val[0], statbuf.f_fsid.__val[1]);
1744 tprintf(", f_namelen=%lu", (unsigned long)statbuf.f_namelen);
Roland McGrathab147c52003-07-17 09:03:02 +00001745#ifdef _STATFS_F_FRSIZE
Roland McGrath08738432005-06-03 02:40:39 +00001746 tprintf(", f_frsize=%llu", (unsigned long long)statbuf.f_frsize);
Roland McGrathab147c52003-07-17 09:03:02 +00001747#endif
Andreas Schwab000d66f2012-01-17 18:13:33 +01001748#ifdef _STATFS_F_FLAGS
1749 tprintf(", f_flags=%llu", (unsigned long long)statbuf.f_flags);
1750#endif
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001751 tprints("}");
Roland McGrathab147c52003-07-17 09:03:02 +00001752}
1753
Andreas Schwab7d558012012-01-17 18:14:22 +01001754struct compat_statfs64 {
1755 uint32_t f_type;
1756 uint32_t f_bsize;
1757 uint64_t f_blocks;
1758 uint64_t f_bfree;
1759 uint64_t f_bavail;
1760 uint64_t f_files;
1761 uint64_t f_ffree;
1762 fsid_t f_fsid;
1763 uint32_t f_namelen;
1764 uint32_t f_frsize;
1765 uint32_t f_flags;
1766 uint32_t f_spare[4];
1767}
1768#if defined(X86_64) || defined(IA64)
1769 __attribute__ ((packed, aligned(4)))
1770#endif
1771;
1772
1773static void
1774printcompat_statfs64(struct tcb *tcp, long addr)
1775{
1776 struct compat_statfs64 statbuf;
1777
1778 if (syserror(tcp) || !verbose(tcp)) {
1779 tprintf("%#lx", addr);
1780 return;
1781 }
1782 if (umove(tcp, addr, &statbuf) < 0) {
1783 tprints("{...}");
1784 return;
1785 }
1786 tprintf("{f_type=%s, f_bsize=%lu, f_blocks=%llu, f_bfree=%llu, ",
1787 sprintfstype(statbuf.f_type),
1788 (unsigned long)statbuf.f_bsize,
1789 (unsigned long long)statbuf.f_blocks,
1790 (unsigned long long)statbuf.f_bfree);
1791 tprintf("f_bavail=%llu, f_files=%llu, f_ffree=%llu, f_fsid={%d, %d}",
1792 (unsigned long long)statbuf.f_bavail,
1793 (unsigned long long)statbuf.f_files,
1794 (unsigned long long)statbuf.f_ffree,
1795 statbuf.f_fsid.__val[0], statbuf.f_fsid.__val[1]);
1796 tprintf(", f_namelen=%lu", (unsigned long)statbuf.f_namelen);
1797 tprintf(", f_frsize=%lu", (unsigned long)statbuf.f_frsize);
Denys Vlasenko1945ccc2012-02-27 14:37:48 +01001798 tprintf(", f_flags=%lu}", (unsigned long)statbuf.f_frsize);
Andreas Schwab7d558012012-01-17 18:14:22 +01001799}
1800
Roland McGrathab147c52003-07-17 09:03:02 +00001801int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001802sys_statfs64(struct tcb *tcp)
Roland McGrathab147c52003-07-17 09:03:02 +00001803{
1804 if (entering(tcp)) {
1805 printpath(tcp, tcp->u_arg[0]);
1806 tprintf(", %lu, ", tcp->u_arg[1]);
1807 } else {
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001808 if (tcp->u_arg[1] == sizeof(struct statfs64))
Roland McGrathab147c52003-07-17 09:03:02 +00001809 printstatfs64(tcp, tcp->u_arg[2]);
Andreas Schwab7d558012012-01-17 18:14:22 +01001810 else if (tcp->u_arg[1] == sizeof(struct compat_statfs64))
1811 printcompat_statfs64(tcp, tcp->u_arg[2]);
Roland McGrathab147c52003-07-17 09:03:02 +00001812 else
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001813 tprints("{???}");
Roland McGrathab147c52003-07-17 09:03:02 +00001814 }
1815 return 0;
1816}
1817
1818int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001819sys_fstatfs64(struct tcb *tcp)
Roland McGrathab147c52003-07-17 09:03:02 +00001820{
1821 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +03001822 printfd(tcp, tcp->u_arg[0]);
1823 tprintf(", %lu, ", tcp->u_arg[1]);
Roland McGrathab147c52003-07-17 09:03:02 +00001824 } else {
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001825 if (tcp->u_arg[1] == sizeof(struct statfs64))
Roland McGrathab147c52003-07-17 09:03:02 +00001826 printstatfs64(tcp, tcp->u_arg[2]);
Andreas Schwab7d558012012-01-17 18:14:22 +01001827 else if (tcp->u_arg[1] == sizeof(struct compat_statfs64))
1828 printcompat_statfs64(tcp, tcp->u_arg[2]);
Roland McGrathab147c52003-07-17 09:03:02 +00001829 else
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001830 tprints("{???}");
Roland McGrathab147c52003-07-17 09:03:02 +00001831 }
1832 return 0;
1833}
1834#endif
1835
Denys Vlasenkoc36c3522012-02-25 02:47:15 +01001836#if defined(ALPHA)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001837int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001838osf_statfs(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001839{
1840 if (entering(tcp)) {
1841 printpath(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001842 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001843 } else {
1844 printstatfs(tcp, tcp->u_arg[1]);
1845 tprintf(", %lu", tcp->u_arg[2]);
1846 }
1847 return 0;
1848}
1849
1850int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001851osf_fstatfs(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001852{
1853 if (entering(tcp)) {
1854 tprintf("%lu, ", tcp->u_arg[0]);
1855 } else {
1856 printstatfs(tcp, tcp->u_arg[1]);
1857 tprintf(", %lu", tcp->u_arg[2]);
1858 }
1859 return 0;
1860}
Denys Vlasenko84703742012-02-25 02:38:52 +01001861#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001862
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001863/* directory */
1864int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001865sys_chdir(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001866{
1867 if (entering(tcp)) {
1868 printpath(tcp, tcp->u_arg[0]);
1869 }
1870 return 0;
1871}
1872
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001873static int
1874decode_mkdir(struct tcb *tcp, int offset)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001875{
1876 if (entering(tcp)) {
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001877 printpath(tcp, tcp->u_arg[offset]);
1878 tprintf(", %#lo", tcp->u_arg[offset + 1]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001879 }
1880 return 0;
1881}
1882
1883int
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001884sys_mkdir(struct tcb *tcp)
1885{
1886 return decode_mkdir(tcp, 0);
1887}
1888
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001889int
1890sys_mkdirat(struct tcb *tcp)
1891{
1892 if (entering(tcp))
Dmitry V. Levin31382132011-03-04 05:08:02 +03001893 print_dirfd(tcp, tcp->u_arg[0]);
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001894 return decode_mkdir(tcp, 1);
1895}
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001896
1897int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001898sys_link(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001899{
1900 if (entering(tcp)) {
1901 printpath(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001902 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001903 printpath(tcp, tcp->u_arg[1]);
1904 }
1905 return 0;
1906}
1907
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001908int
1909sys_linkat(struct tcb *tcp)
1910{
1911 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +03001912 print_dirfd(tcp, tcp->u_arg[0]);
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001913 printpath(tcp, tcp->u_arg[1]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001914 tprints(", ");
Dmitry V. Levin31382132011-03-04 05:08:02 +03001915 print_dirfd(tcp, tcp->u_arg[2]);
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001916 printpath(tcp, tcp->u_arg[3]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001917 tprints(", ");
Dmitry V. Levin7989ad42012-03-13 23:26:01 +00001918 printflags(at_flags, tcp->u_arg[4], "AT_???");
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001919 }
1920 return 0;
1921}
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001922
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001923int
1924sys_unlinkat(struct tcb *tcp)
1925{
1926 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +03001927 print_dirfd(tcp, tcp->u_arg[0]);
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001928 printpath(tcp, tcp->u_arg[1]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001929 tprints(", ");
Dmitry V. Levin7989ad42012-03-13 23:26:01 +00001930 printflags(at_flags, tcp->u_arg[2], "AT_???");
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001931 }
1932 return 0;
1933}
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001934
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001935int
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001936sys_symlinkat(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001937{
1938 if (entering(tcp)) {
1939 printpath(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001940 tprints(", ");
Dmitry V. Levin31382132011-03-04 05:08:02 +03001941 print_dirfd(tcp, tcp->u_arg[1]);
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001942 printpath(tcp, tcp->u_arg[2]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001943 }
1944 return 0;
1945}
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001946
1947static int
1948decode_readlink(struct tcb *tcp, int offset)
1949{
1950 if (entering(tcp)) {
1951 printpath(tcp, tcp->u_arg[offset]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001952 tprints(", ");
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001953 } else {
1954 if (syserror(tcp))
1955 tprintf("%#lx", tcp->u_arg[offset + 1]);
1956 else
Denys Vlasenko3449ae82012-01-27 17:24:26 +01001957 /* Used to use printpathn(), but readlink
1958 * neither includes NUL in the returned count,
1959 * nor actually writes it into memory.
1960 * printpathn() would decide on printing
1961 * "..." continuation based on garbage
1962 * past return buffer's end.
1963 */
1964 printstr(tcp, tcp->u_arg[offset + 1], tcp->u_rval);
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001965 tprintf(", %lu", tcp->u_arg[offset + 2]);
1966 }
1967 return 0;
1968}
1969
1970int
1971sys_readlink(struct tcb *tcp)
1972{
1973 return decode_readlink(tcp, 0);
1974}
1975
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001976int
1977sys_readlinkat(struct tcb *tcp)
1978{
1979 if (entering(tcp))
Dmitry V. Levin31382132011-03-04 05:08:02 +03001980 print_dirfd(tcp, tcp->u_arg[0]);
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001981 return decode_readlink(tcp, 1);
1982}
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001983
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001984int
1985sys_renameat(struct tcb *tcp)
1986{
1987 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +03001988 print_dirfd(tcp, tcp->u_arg[0]);
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001989 printpath(tcp, tcp->u_arg[1]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001990 tprints(", ");
Dmitry V. Levin31382132011-03-04 05:08:02 +03001991 print_dirfd(tcp, tcp->u_arg[2]);
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001992 printpath(tcp, tcp->u_arg[3]);
1993 }
1994 return 0;
1995}
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001996
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001997int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001998sys_chown(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001999{
2000 if (entering(tcp)) {
2001 printpath(tcp, tcp->u_arg[0]);
Roland McGrath6bc12202003-11-13 22:32:27 +00002002 printuid(", ", tcp->u_arg[1]);
2003 printuid(", ", tcp->u_arg[2]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002004 }
2005 return 0;
2006}
2007
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002008int
2009sys_fchownat(struct tcb *tcp)
2010{
2011 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +03002012 print_dirfd(tcp, tcp->u_arg[0]);
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002013 printpath(tcp, tcp->u_arg[1]);
2014 printuid(", ", tcp->u_arg[2]);
2015 printuid(", ", tcp->u_arg[3]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002016 tprints(", ");
Dmitry V. Levin7989ad42012-03-13 23:26:01 +00002017 printflags(at_flags, tcp->u_arg[4], "AT_???");
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002018 }
2019 return 0;
2020}
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002021
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002022int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002023sys_fchown(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002024{
2025 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +03002026 printfd(tcp, tcp->u_arg[0]);
Roland McGrath6bc12202003-11-13 22:32:27 +00002027 printuid(", ", tcp->u_arg[1]);
2028 printuid(", ", tcp->u_arg[2]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002029 }
2030 return 0;
2031}
2032
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002033static int
2034decode_chmod(struct tcb *tcp, int offset)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002035{
2036 if (entering(tcp)) {
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002037 printpath(tcp, tcp->u_arg[offset]);
2038 tprintf(", %#lo", tcp->u_arg[offset + 1]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002039 }
2040 return 0;
2041}
2042
2043int
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002044sys_chmod(struct tcb *tcp)
2045{
2046 return decode_chmod(tcp, 0);
2047}
2048
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002049int
2050sys_fchmodat(struct tcb *tcp)
2051{
2052 if (entering(tcp))
Dmitry V. Levin31382132011-03-04 05:08:02 +03002053 print_dirfd(tcp, tcp->u_arg[0]);
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002054 return decode_chmod(tcp, 1);
2055}
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002056
2057int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002058sys_fchmod(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002059{
2060 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +03002061 printfd(tcp, tcp->u_arg[0]);
2062 tprintf(", %#lo", tcp->u_arg[1]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002063 }
2064 return 0;
2065}
2066
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +00002067#ifdef ALPHA
2068int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002069sys_osf_utimes(struct tcb *tcp)
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +00002070{
Denys Vlasenko1d632462009-04-14 12:51:00 +00002071 if (entering(tcp)) {
2072 printpath(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002073 tprints(", ");
Denys Vlasenko1d632462009-04-14 12:51:00 +00002074 printtv_bitness(tcp, tcp->u_arg[1], BITNESS_32, 0);
2075 }
2076 return 0;
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +00002077}
2078#endif
2079
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002080static int
Roland McGrath6afc5652007-07-24 01:57:11 +00002081decode_utimes(struct tcb *tcp, int offset, int special)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002082{
2083 if (entering(tcp)) {
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002084 printpath(tcp, tcp->u_arg[offset]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002085 tprints(", ");
Roland McGrath6afc5652007-07-24 01:57:11 +00002086 if (tcp->u_arg[offset + 1] == 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002087 tprints("NULL");
Roland McGrath6afc5652007-07-24 01:57:11 +00002088 else {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002089 tprints("{");
Roland McGrath6afc5652007-07-24 01:57:11 +00002090 printtv_bitness(tcp, tcp->u_arg[offset + 1],
2091 BITNESS_CURRENT, special);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002092 tprints(", ");
Roland McGrathe6d0f712007-08-07 01:22:49 +00002093 printtv_bitness(tcp, tcp->u_arg[offset + 1]
Denys Vlasenkob63256e2011-06-07 12:13:24 +02002094 + sizeof(struct timeval),
Roland McGrath6afc5652007-07-24 01:57:11 +00002095 BITNESS_CURRENT, special);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002096 tprints("}");
Roland McGrath6afc5652007-07-24 01:57:11 +00002097 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002098 }
2099 return 0;
2100}
2101
2102int
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002103sys_utimes(struct tcb *tcp)
2104{
Roland McGrath6afc5652007-07-24 01:57:11 +00002105 return decode_utimes(tcp, 0, 0);
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002106}
2107
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002108int
2109sys_futimesat(struct tcb *tcp)
2110{
2111 if (entering(tcp))
Dmitry V. Levin31382132011-03-04 05:08:02 +03002112 print_dirfd(tcp, tcp->u_arg[0]);
Roland McGrath6afc5652007-07-24 01:57:11 +00002113 return decode_utimes(tcp, 1, 0);
2114}
2115
2116int
2117sys_utimensat(struct tcb *tcp)
2118{
2119 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +03002120 print_dirfd(tcp, tcp->u_arg[0]);
Roland McGrath6afc5652007-07-24 01:57:11 +00002121 decode_utimes(tcp, 1, 1);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002122 tprints(", ");
Dmitry V. Levin7989ad42012-03-13 23:26:01 +00002123 printflags(at_flags, tcp->u_arg[3], "AT_???");
Roland McGrath6afc5652007-07-24 01:57:11 +00002124 }
2125 return 0;
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002126}
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002127
2128int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002129sys_utime(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002130{
Roland McGrath7e9817c2007-07-05 20:31:58 +00002131 union {
2132 long utl[2];
2133 int uti[2];
Denys Vlasenko751acb32013-02-08 15:34:46 +01002134 long paranoia_for_huge_wordsize[4];
Roland McGrath7e9817c2007-07-05 20:31:58 +00002135 } u;
Denys Vlasenko751acb32013-02-08 15:34:46 +01002136 unsigned wordsize;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002137
2138 if (entering(tcp)) {
2139 printpath(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002140 tprints(", ");
Denys Vlasenko751acb32013-02-08 15:34:46 +01002141
2142 wordsize = current_wordsize;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002143 if (!tcp->u_arg[1])
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002144 tprints("NULL");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002145 else if (!verbose(tcp))
2146 tprintf("%#lx", tcp->u_arg[1]);
Denys Vlasenko1945ccc2012-02-27 14:37:48 +01002147 else if (umoven(tcp, tcp->u_arg[1], 2 * wordsize, (char *) &u) < 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002148 tprints("[?, ?]");
Denys Vlasenko1945ccc2012-02-27 14:37:48 +01002149 else if (wordsize == sizeof u.utl[0]) {
Roland McGrath7e9817c2007-07-05 20:31:58 +00002150 tprintf("[%s,", sprinttime(u.utl[0]));
2151 tprintf(" %s]", sprinttime(u.utl[1]));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002152 }
Denys Vlasenko1945ccc2012-02-27 14:37:48 +01002153 else if (wordsize == sizeof u.uti[0]) {
Roland McGrath7e9817c2007-07-05 20:31:58 +00002154 tprintf("[%s,", sprinttime(u.uti[0]));
2155 tprintf(" %s]", sprinttime(u.uti[1]));
2156 }
2157 else
Denys Vlasenko751acb32013-02-08 15:34:46 +01002158 tprintf("<decode error: unsupported wordsize %d>",
2159 wordsize);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002160 }
2161 return 0;
2162}
2163
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002164static int
2165decode_mknod(struct tcb *tcp, int offset)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002166{
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002167 int mode = tcp->u_arg[offset + 1];
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002168
2169 if (entering(tcp)) {
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002170 printpath(tcp, tcp->u_arg[offset]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002171 tprintf(", %s", sprintmode(mode));
2172 switch (mode & S_IFMT) {
Denys Vlasenkob237b1b2012-02-27 13:56:59 +01002173 case S_IFCHR:
2174 case S_IFBLK:
Denys Vlasenko9472a272013-02-12 11:43:46 +01002175#if defined(SPARC) || defined(SPARC64)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002176 if (current_personality == 1)
Denys Vlasenkob237b1b2012-02-27 13:56:59 +01002177 tprintf(", makedev(%lu, %lu)",
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002178 (unsigned long) ((tcp->u_arg[offset + 2] >> 18) & 0x3fff),
2179 (unsigned long) (tcp->u_arg[offset + 2] & 0x3ffff));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002180 else
Roland McGrath186c5ac2002-12-15 23:58:23 +00002181#endif
Denys Vlasenkob237b1b2012-02-27 13:56:59 +01002182 tprintf(", makedev(%lu, %lu)",
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002183 (unsigned long) major(tcp->u_arg[offset + 2]),
2184 (unsigned long) minor(tcp->u_arg[offset + 2]));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002185 break;
2186 default:
2187 break;
2188 }
2189 }
2190 return 0;
2191}
2192
2193int
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002194sys_mknod(struct tcb *tcp)
2195{
2196 return decode_mknod(tcp, 0);
2197}
2198
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002199int
2200sys_mknodat(struct tcb *tcp)
2201{
2202 if (entering(tcp))
Dmitry V. Levin31382132011-03-04 05:08:02 +03002203 print_dirfd(tcp, tcp->u_arg[0]);
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002204 return decode_mknod(tcp, 1);
2205}
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002206
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002207static void
Denys Vlasenko1d632462009-04-14 12:51:00 +00002208printdir(struct tcb *tcp, long addr)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002209{
2210 struct dirent d;
2211
2212 if (!verbose(tcp)) {
2213 tprintf("%#lx", addr);
2214 return;
2215 }
2216 if (umove(tcp, addr, &d) < 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002217 tprints("{...}");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002218 return;
2219 }
2220 tprintf("{d_ino=%ld, ", (unsigned long) d.d_ino);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002221 tprints("d_name=");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002222 printpathn(tcp, (long) ((struct dirent *) addr)->d_name, d.d_reclen);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002223 tprints("}");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002224}
2225
2226int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002227sys_readdir(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002228{
2229 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +03002230 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002231 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002232 } else {
2233 if (syserror(tcp) || tcp->u_rval == 0 || !verbose(tcp))
2234 tprintf("%#lx", tcp->u_arg[1]);
2235 else
2236 printdir(tcp, tcp->u_arg[1]);
2237 /* Not much point in printing this out, it is always 1. */
2238 if (tcp->u_arg[2] != 1)
2239 tprintf(", %lu", tcp->u_arg[2]);
2240 }
2241 return 0;
2242}
2243
Roland McGratha4d48532005-06-08 20:45:28 +00002244static const struct xlat direnttypes[] = {
Denys Vlasenkob63256e2011-06-07 12:13:24 +02002245 { DT_UNKNOWN, "DT_UNKNOWN" },
2246 { DT_FIFO, "DT_FIFO" },
2247 { DT_CHR, "DT_CHR" },
2248 { DT_DIR, "DT_DIR" },
2249 { DT_BLK, "DT_BLK" },
2250 { DT_REG, "DT_REG" },
2251 { DT_LNK, "DT_LNK" },
2252 { DT_SOCK, "DT_SOCK" },
2253 { DT_WHT, "DT_WHT" },
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00002254 { 0, NULL },
2255};
2256
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002257int
Dmitry V. Levin153fbd62008-04-19 23:49:58 +00002258sys_getdents(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002259{
2260 int i, len, dents = 0;
2261 char *buf;
2262
2263 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +03002264 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002265 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002266 return 0;
2267 }
2268 if (syserror(tcp) || !verbose(tcp)) {
2269 tprintf("%#lx, %lu", tcp->u_arg[1], tcp->u_arg[2]);
2270 return 0;
2271 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002272 len = tcp->u_rval;
Denys Vlasenko79a79ea2011-09-01 16:35:44 +02002273 /* Beware of insanely large or negative values in tcp->u_rval */
2274 if (tcp->u_rval > 1024*1024)
2275 len = 1024*1024;
2276 if (tcp->u_rval < 0)
2277 len = 0;
Mike Frysinger229738c2009-10-07 20:41:56 -04002278 buf = len ? malloc(len) : NULL;
Denys Vlasenko1d46ba52011-08-31 14:00:02 +02002279 if (len && !buf)
2280 die_out_of_memory();
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002281 if (umoven(tcp, tcp->u_arg[1], len, buf) < 0) {
Roland McGrath46100d02005-06-01 18:55:42 +00002282 tprintf("%#lx, %lu", tcp->u_arg[1], tcp->u_arg[2]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002283 free(buf);
2284 return 0;
2285 }
2286 if (!abbrev(tcp))
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002287 tprints("{");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002288 for (i = 0; i < len;) {
Wichert Akkerman9524bb91999-05-25 23:11:18 +00002289 struct kernel_dirent *d = (struct kernel_dirent *) &buf[i];
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002290 if (!abbrev(tcp)) {
2291 tprintf("%s{d_ino=%lu, d_off=%lu, ",
2292 i ? " " : "", d->d_ino, d->d_off);
Dmitry V. Levinad232c62012-08-16 19:29:55 +00002293 tprintf("d_reclen=%u, d_name=\"%s\", d_type=",
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002294 d->d_reclen, d->d_name);
Dmitry V. Levinad232c62012-08-16 19:29:55 +00002295 printxval(direnttypes, buf[i + d->d_reclen - 1], "DT_???");
2296 tprints("}");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002297 }
Pavel Machek9a9f10b2000-02-01 16:22:52 +00002298 if (!d->d_reclen) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002299 tprints("/* d_reclen == 0, problem here */");
Pavel Machek9a9f10b2000-02-01 16:22:52 +00002300 break;
2301 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002302 i += d->d_reclen;
2303 dents++;
2304 }
2305 if (!abbrev(tcp))
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002306 tprints("}");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002307 else
2308 tprintf("/* %u entries */", dents);
2309 tprintf(", %lu", tcp->u_arg[2]);
2310 free(buf);
2311 return 0;
2312}
2313
John Hughesbdf48f52001-03-06 15:08:09 +00002314#if _LFS64_LARGEFILE
2315int
Dmitry V. Levin153fbd62008-04-19 23:49:58 +00002316sys_getdents64(struct tcb *tcp)
John Hughesbdf48f52001-03-06 15:08:09 +00002317{
2318 int i, len, dents = 0;
2319 char *buf;
2320
2321 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +03002322 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002323 tprints(", ");
John Hughesbdf48f52001-03-06 15:08:09 +00002324 return 0;
2325 }
2326 if (syserror(tcp) || !verbose(tcp)) {
2327 tprintf("%#lx, %lu", tcp->u_arg[1], tcp->u_arg[2]);
2328 return 0;
2329 }
Denys Vlasenko79a79ea2011-09-01 16:35:44 +02002330
John Hughesbdf48f52001-03-06 15:08:09 +00002331 len = tcp->u_rval;
Denys Vlasenko79a79ea2011-09-01 16:35:44 +02002332 /* Beware of insanely large or negative tcp->u_rval */
2333 if (tcp->u_rval > 1024*1024)
2334 len = 1024*1024;
2335 if (tcp->u_rval < 0)
2336 len = 0;
Mike Frysinger229738c2009-10-07 20:41:56 -04002337 buf = len ? malloc(len) : NULL;
Denys Vlasenko1d46ba52011-08-31 14:00:02 +02002338 if (len && !buf)
2339 die_out_of_memory();
Denys Vlasenko79a79ea2011-09-01 16:35:44 +02002340
John Hughesbdf48f52001-03-06 15:08:09 +00002341 if (umoven(tcp, tcp->u_arg[1], len, buf) < 0) {
Roland McGrath46100d02005-06-01 18:55:42 +00002342 tprintf("%#lx, %lu", tcp->u_arg[1], tcp->u_arg[2]);
John Hughesbdf48f52001-03-06 15:08:09 +00002343 free(buf);
2344 return 0;
2345 }
2346 if (!abbrev(tcp))
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002347 tprints("{");
John Hughesbdf48f52001-03-06 15:08:09 +00002348 for (i = 0; i < len;) {
2349 struct dirent64 *d = (struct dirent64 *) &buf[i];
John Hughesbdf48f52001-03-06 15:08:09 +00002350 if (!abbrev(tcp)) {
Dmitry V. Levin1f336e52006-10-14 20:20:46 +00002351 tprintf("%s{d_ino=%" PRIu64 ", d_off=%" PRId64 ", ",
Roland McGrath186c5ac2002-12-15 23:58:23 +00002352 i ? " " : "",
Roland McGrath92053242004-01-13 10:16:47 +00002353 d->d_ino,
2354 d->d_off);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002355 tprints("d_type=");
Roland McGrath40542842004-01-13 09:47:49 +00002356 printxval(direnttypes, d->d_type, "DT_???");
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002357 tprints(", ");
John Hughesbdf48f52001-03-06 15:08:09 +00002358 tprintf("d_reclen=%u, d_name=\"%s\"}",
2359 d->d_reclen, d->d_name);
2360 }
Dmitry V. Levin153fbd62008-04-19 23:49:58 +00002361 if (!d->d_reclen) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002362 tprints("/* d_reclen == 0, problem here */");
Dmitry V. Levin153fbd62008-04-19 23:49:58 +00002363 break;
2364 }
John Hughesbdf48f52001-03-06 15:08:09 +00002365 i += d->d_reclen;
2366 dents++;
2367 }
2368 if (!abbrev(tcp))
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002369 tprints("}");
John Hughesbdf48f52001-03-06 15:08:09 +00002370 else
2371 tprintf("/* %u entries */", dents);
2372 tprintf(", %lu", tcp->u_arg[2]);
2373 free(buf);
2374 return 0;
2375}
2376#endif
Roland McGrath186c5ac2002-12-15 23:58:23 +00002377
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002378int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002379sys_getcwd(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002380{
Denys Vlasenko1d632462009-04-14 12:51:00 +00002381 if (exiting(tcp)) {
2382 if (syserror(tcp))
2383 tprintf("%#lx", tcp->u_arg[0]);
2384 else
2385 printpathn(tcp, tcp->u_arg[0], tcp->u_rval - 1);
2386 tprintf(", %lu", tcp->u_arg[1]);
2387 }
2388 return 0;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002389}
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002390
2391#ifdef HAVE_SYS_ASYNCH_H
2392
2393int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002394sys_aioread(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002395{
2396 struct aio_result_t res;
2397
2398 if (entering(tcp)) {
2399 tprintf("%lu, ", tcp->u_arg[0]);
2400 } else {
2401 if (syserror(tcp))
2402 tprintf("%#lx", tcp->u_arg[1]);
2403 else
2404 printstr(tcp, tcp->u_arg[1], tcp->u_arg[2]);
2405 tprintf(", %lu, %lu, ", tcp->u_arg[2], tcp->u_arg[3]);
2406 printxval(whence, tcp->u_arg[4], "L_???");
2407 if (syserror(tcp) || tcp->u_arg[5] == 0
2408 || umove(tcp, tcp->u_arg[5], &res) < 0)
2409 tprintf(", %#lx", tcp->u_arg[5]);
2410 else
2411 tprintf(", {aio_return %d aio_errno %d}",
2412 res.aio_return, res.aio_errno);
2413 }
2414 return 0;
2415}
2416
2417int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002418sys_aiowrite(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002419{
2420 struct aio_result_t res;
2421
2422 if (entering(tcp)) {
2423 tprintf("%lu, ", tcp->u_arg[0]);
2424 printstr(tcp, tcp->u_arg[1], tcp->u_arg[2]);
2425 tprintf(", %lu, %lu, ", tcp->u_arg[2], tcp->u_arg[3]);
2426 printxval(whence, tcp->u_arg[4], "L_???");
2427 }
2428 else {
2429 if (tcp->u_arg[5] == 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002430 tprints(", NULL");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002431 else if (syserror(tcp)
2432 || umove(tcp, tcp->u_arg[5], &res) < 0)
2433 tprintf(", %#lx", tcp->u_arg[5]);
2434 else
2435 tprintf(", {aio_return %d aio_errno %d}",
2436 res.aio_return, res.aio_errno);
2437 }
2438 return 0;
2439}
2440
2441int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002442sys_aiowait(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002443{
2444 if (entering(tcp))
2445 printtv(tcp, tcp->u_arg[0]);
2446 return 0;
2447}
2448
2449int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002450sys_aiocancel(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002451{
2452 struct aio_result_t res;
2453
2454 if (exiting(tcp)) {
2455 if (tcp->u_arg[0] == 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002456 tprints("NULL");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002457 else if (syserror(tcp)
2458 || umove(tcp, tcp->u_arg[0], &res) < 0)
2459 tprintf("%#lx", tcp->u_arg[0]);
2460 else
2461 tprintf("{aio_return %d aio_errno %d}",
2462 res.aio_return, res.aio_errno);
2463 }
2464 return 0;
2465}
2466
2467#endif /* HAVE_SYS_ASYNCH_H */
Roland McGrath186c5ac2002-12-15 23:58:23 +00002468
Roland McGratha4d48532005-06-08 20:45:28 +00002469static const struct xlat xattrflags[] = {
Roland McGrath561c7992003-04-02 01:10:44 +00002470#ifdef XATTR_CREATE
Roland McGrath186c5ac2002-12-15 23:58:23 +00002471 { XATTR_CREATE, "XATTR_CREATE" },
2472 { XATTR_REPLACE, "XATTR_REPLACE" },
Roland McGrath561c7992003-04-02 01:10:44 +00002473#endif
Roland McGrath186c5ac2002-12-15 23:58:23 +00002474 { 0, NULL }
2475};
2476
Roland McGrath3292e222004-08-31 06:30:48 +00002477static void
Denys Vlasenko1d632462009-04-14 12:51:00 +00002478print_xattr_val(struct tcb *tcp, int failed,
2479 unsigned long arg,
2480 unsigned long insize,
2481 unsigned long size)
Roland McGrath3292e222004-08-31 06:30:48 +00002482{
Dmitry V. Levin1f215132012-12-07 21:38:52 +00002483 if (insize == 0)
2484 failed = 1;
Denys Vlasenko1d632462009-04-14 12:51:00 +00002485 if (!failed) {
2486 unsigned long capacity = 4 * size + 1;
2487 unsigned char *buf = (capacity < size) ? NULL : malloc(capacity);
2488 if (buf == NULL || /* probably a bogus size argument */
2489 umoven(tcp, arg, size, (char *) &buf[3 * size]) < 0) {
2490 failed = 1;
Roland McGrath883567c2005-02-02 03:38:32 +00002491 }
Denys Vlasenko1d632462009-04-14 12:51:00 +00002492 else {
2493 unsigned char *out = buf;
2494 unsigned char *in = &buf[3 * size];
2495 size_t i;
2496 for (i = 0; i < size; ++i) {
2497 if (isprint(in[i]))
2498 *out++ = in[i];
2499 else {
2500#define tohex(n) "0123456789abcdef"[n]
2501 *out++ = '\\';
2502 *out++ = 'x';
2503 *out++ = tohex(in[i] / 16);
2504 *out++ = tohex(in[i] % 16);
2505 }
2506 }
2507 /* Don't print terminating NUL if there is one. */
2508 if (i > 0 && in[i - 1] == '\0')
2509 out -= 4;
2510 *out = '\0';
2511 tprintf(", \"%s\", %ld", buf, insize);
2512 }
2513 free(buf);
Roland McGrath883567c2005-02-02 03:38:32 +00002514 }
Denys Vlasenko1d632462009-04-14 12:51:00 +00002515 if (failed)
2516 tprintf(", 0x%lx, %ld", arg, insize);
Roland McGrath3292e222004-08-31 06:30:48 +00002517}
2518
Roland McGrath186c5ac2002-12-15 23:58:23 +00002519int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002520sys_setxattr(struct tcb *tcp)
Roland McGrath186c5ac2002-12-15 23:58:23 +00002521{
Denys Vlasenko1d632462009-04-14 12:51:00 +00002522 if (entering(tcp)) {
2523 printpath(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002524 tprints(", ");
Denys Vlasenko1d632462009-04-14 12:51:00 +00002525 printstr(tcp, tcp->u_arg[1], -1);
2526 print_xattr_val(tcp, 0, tcp->u_arg[2], tcp->u_arg[3], tcp->u_arg[3]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002527 tprints(", ");
Denys Vlasenko1d632462009-04-14 12:51:00 +00002528 printflags(xattrflags, tcp->u_arg[4], "XATTR_???");
2529 }
2530 return 0;
Roland McGrath186c5ac2002-12-15 23:58:23 +00002531}
2532
2533int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002534sys_fsetxattr(struct tcb *tcp)
Roland McGrath186c5ac2002-12-15 23:58:23 +00002535{
Denys Vlasenko1d632462009-04-14 12:51:00 +00002536 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +03002537 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002538 tprints(", ");
Denys Vlasenko1d632462009-04-14 12:51:00 +00002539 printstr(tcp, tcp->u_arg[1], -1);
2540 print_xattr_val(tcp, 0, tcp->u_arg[2], tcp->u_arg[3], tcp->u_arg[3]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002541 tprints(", ");
Denys Vlasenko1d632462009-04-14 12:51:00 +00002542 printflags(xattrflags, tcp->u_arg[4], "XATTR_???");
2543 }
2544 return 0;
Roland McGrath186c5ac2002-12-15 23:58:23 +00002545}
2546
2547int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002548sys_getxattr(struct tcb *tcp)
Roland McGrath186c5ac2002-12-15 23:58:23 +00002549{
Denys Vlasenko1d632462009-04-14 12:51:00 +00002550 if (entering(tcp)) {
2551 printpath(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002552 tprints(", ");
Denys Vlasenko1d632462009-04-14 12:51:00 +00002553 printstr(tcp, tcp->u_arg[1], -1);
2554 } else {
2555 print_xattr_val(tcp, syserror(tcp), tcp->u_arg[2], tcp->u_arg[3],
2556 tcp->u_rval);
2557 }
2558 return 0;
Roland McGrath186c5ac2002-12-15 23:58:23 +00002559}
2560
2561int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002562sys_fgetxattr(struct tcb *tcp)
Roland McGrath186c5ac2002-12-15 23:58:23 +00002563{
Denys Vlasenko1d632462009-04-14 12:51:00 +00002564 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +03002565 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002566 tprints(", ");
Denys Vlasenko1d632462009-04-14 12:51:00 +00002567 printstr(tcp, tcp->u_arg[1], -1);
2568 } else {
2569 print_xattr_val(tcp, syserror(tcp), tcp->u_arg[2], tcp->u_arg[3],
2570 tcp->u_rval);
2571 }
2572 return 0;
Roland McGrath186c5ac2002-12-15 23:58:23 +00002573}
2574
Dmitry V. Levin33d24762012-03-14 16:34:32 +00002575static void
2576print_xattr_list(struct tcb *tcp, unsigned long addr, unsigned long size)
2577{
2578 if (syserror(tcp)) {
2579 tprintf("%#lx", addr);
2580 } else {
2581 if (!addr) {
2582 tprints("NULL");
2583 } else {
2584 unsigned long len =
2585 (size < tcp->u_rval) ? size : tcp->u_rval;
2586 printstr(tcp, addr, len);
2587 }
2588 }
2589 tprintf(", %lu", size);
2590}
2591
Roland McGrath186c5ac2002-12-15 23:58:23 +00002592int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002593sys_listxattr(struct tcb *tcp)
Roland McGrath186c5ac2002-12-15 23:58:23 +00002594{
Denys Vlasenko1d632462009-04-14 12:51:00 +00002595 if (entering(tcp)) {
2596 printpath(tcp, tcp->u_arg[0]);
Dmitry V. Levin33d24762012-03-14 16:34:32 +00002597 tprints(", ");
Denys Vlasenko1d632462009-04-14 12:51:00 +00002598 } else {
Dmitry V. Levin33d24762012-03-14 16:34:32 +00002599 print_xattr_list(tcp, tcp->u_arg[1], tcp->u_arg[2]);
Denys Vlasenko1d632462009-04-14 12:51:00 +00002600 }
2601 return 0;
Roland McGrath186c5ac2002-12-15 23:58:23 +00002602}
2603
2604int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002605sys_flistxattr(struct tcb *tcp)
Roland McGrath186c5ac2002-12-15 23:58:23 +00002606{
Denys Vlasenko1d632462009-04-14 12:51:00 +00002607 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +03002608 printfd(tcp, tcp->u_arg[0]);
Dmitry V. Levin33d24762012-03-14 16:34:32 +00002609 tprints(", ");
Denys Vlasenko1d632462009-04-14 12:51:00 +00002610 } else {
Dmitry V. Levin33d24762012-03-14 16:34:32 +00002611 print_xattr_list(tcp, tcp->u_arg[1], tcp->u_arg[2]);
Denys Vlasenko1d632462009-04-14 12:51:00 +00002612 }
2613 return 0;
Roland McGrath186c5ac2002-12-15 23:58:23 +00002614}
2615
2616int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002617sys_removexattr(struct tcb *tcp)
Roland McGrath186c5ac2002-12-15 23:58:23 +00002618{
Denys Vlasenko1d632462009-04-14 12:51:00 +00002619 if (entering(tcp)) {
2620 printpath(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002621 tprints(", ");
Denys Vlasenko1d632462009-04-14 12:51:00 +00002622 printstr(tcp, tcp->u_arg[1], -1);
2623 }
2624 return 0;
Roland McGrath186c5ac2002-12-15 23:58:23 +00002625}
2626
2627int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002628sys_fremovexattr(struct tcb *tcp)
Roland McGrath186c5ac2002-12-15 23:58:23 +00002629{
Denys Vlasenko1d632462009-04-14 12:51:00 +00002630 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +03002631 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002632 tprints(", ");
Denys Vlasenko1d632462009-04-14 12:51:00 +00002633 printstr(tcp, tcp->u_arg[1], -1);
2634 }
2635 return 0;
Roland McGrath186c5ac2002-12-15 23:58:23 +00002636}
Roland McGrathdf13e8f2004-10-07 18:51:19 +00002637
Roland McGrathdf13e8f2004-10-07 18:51:19 +00002638static const struct xlat advise[] = {
Denys Vlasenko3e3490a2012-03-17 01:27:37 +01002639 { POSIX_FADV_NORMAL, "POSIX_FADV_NORMAL" },
2640 { POSIX_FADV_RANDOM, "POSIX_FADV_RANDOM" },
2641 { POSIX_FADV_SEQUENTIAL, "POSIX_FADV_SEQUENTIAL" },
2642 { POSIX_FADV_WILLNEED, "POSIX_FADV_WILLNEED" },
2643 { POSIX_FADV_DONTNEED, "POSIX_FADV_DONTNEED" },
2644 { POSIX_FADV_NOREUSE, "POSIX_FADV_NOREUSE" },
2645 { 0, NULL }
Roland McGrathdf13e8f2004-10-07 18:51:19 +00002646};
2647
Roland McGrathdf13e8f2004-10-07 18:51:19 +00002648int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002649sys_fadvise64(struct tcb *tcp)
Roland McGrathdf13e8f2004-10-07 18:51:19 +00002650{
Denys Vlasenko1d632462009-04-14 12:51:00 +00002651 if (entering(tcp)) {
Andreas Schwabb5600fc2009-11-04 17:08:34 +01002652 int argn;
Dmitry V. Levin31382132011-03-04 05:08:02 +03002653 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenkod33e72a2012-05-18 02:03:24 +02002654 argn = printllval(tcp, ", %lld", 1);
Andreas Schwabb5600fc2009-11-04 17:08:34 +01002655 tprintf(", %ld, ", tcp->u_arg[argn++]);
2656 printxval(advise, tcp->u_arg[argn], "POSIX_FADV_???");
Denys Vlasenko1d632462009-04-14 12:51:00 +00002657 }
2658 return 0;
Roland McGrathdf13e8f2004-10-07 18:51:19 +00002659}
Roland McGrathdf13e8f2004-10-07 18:51:19 +00002660
Roland McGrathdf13e8f2004-10-07 18:51:19 +00002661int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002662sys_fadvise64_64(struct tcb *tcp)
Roland McGrathdf13e8f2004-10-07 18:51:19 +00002663{
Denys Vlasenko1d632462009-04-14 12:51:00 +00002664 if (entering(tcp)) {
Andreas Schwabb5600fc2009-11-04 17:08:34 +01002665 int argn;
Dmitry V. Levin31382132011-03-04 05:08:02 +03002666 printfd(tcp, tcp->u_arg[0]);
Andreas Schwabb5600fc2009-11-04 17:08:34 +01002667#if defined ARM || defined POWERPC
Denys Vlasenkod33e72a2012-05-18 02:03:24 +02002668 argn = printllval(tcp, ", %lld, ", 2);
Andreas Schwabb5600fc2009-11-04 17:08:34 +01002669#else
Denys Vlasenkod33e72a2012-05-18 02:03:24 +02002670 argn = printllval(tcp, ", %lld, ", 1);
Andreas Schwabb5600fc2009-11-04 17:08:34 +01002671#endif
2672 argn = printllval(tcp, "%lld, ", argn);
2673#if defined ARM || defined POWERPC
Kirill A. Shutemov896db212009-09-19 03:21:33 +03002674 printxval(advise, tcp->u_arg[1], "POSIX_FADV_???");
Roland McGrathdf13e8f2004-10-07 18:51:19 +00002675#else
Andreas Schwabb5600fc2009-11-04 17:08:34 +01002676 printxval(advise, tcp->u_arg[argn], "POSIX_FADV_???");
Roland McGrathdf13e8f2004-10-07 18:51:19 +00002677#endif
Denys Vlasenko1d632462009-04-14 12:51:00 +00002678 }
2679 return 0;
Roland McGrathdf13e8f2004-10-07 18:51:19 +00002680}
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002681
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002682static const struct xlat inotify_modes[] = {
Dmitry V. Levind475c062011-03-03 01:02:41 +00002683 { 0x00000001, "IN_ACCESS" },
2684 { 0x00000002, "IN_MODIFY" },
2685 { 0x00000004, "IN_ATTRIB" },
2686 { 0x00000008, "IN_CLOSE_WRITE"},
2687 { 0x00000010, "IN_CLOSE_NOWRITE"},
2688 { 0x00000020, "IN_OPEN" },
2689 { 0x00000040, "IN_MOVED_FROM" },
2690 { 0x00000080, "IN_MOVED_TO" },
2691 { 0x00000100, "IN_CREATE" },
2692 { 0x00000200, "IN_DELETE" },
2693 { 0x00000400, "IN_DELETE_SELF"},
2694 { 0x00000800, "IN_MOVE_SELF" },
2695 { 0x00002000, "IN_UNMOUNT" },
2696 { 0x00004000, "IN_Q_OVERFLOW" },
2697 { 0x00008000, "IN_IGNORED" },
2698 { 0x01000000, "IN_ONLYDIR" },
2699 { 0x02000000, "IN_DONT_FOLLOW"},
2700 { 0x20000000, "IN_MASK_ADD" },
2701 { 0x40000000, "IN_ISDIR" },
2702 { 0x80000000, "IN_ONESHOT" },
2703 { 0, NULL }
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002704};
2705
Sebastian Pipping1e1405a2011-03-03 00:50:55 +01002706static const struct xlat inotify_init_flags[] = {
2707 { 0x00000800, "IN_NONBLOCK" },
Denys Vlasenkob63256e2011-06-07 12:13:24 +02002708 { 0x00080000, "IN_CLOEXEC" },
2709 { 0, NULL }
Sebastian Pipping1e1405a2011-03-03 00:50:55 +01002710};
2711
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002712int
2713sys_inotify_add_watch(struct tcb *tcp)
2714{
2715 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +03002716 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002717 tprints(", ");
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002718 printpath(tcp, tcp->u_arg[1]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02002719 tprints(", ");
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002720 printflags(inotify_modes, tcp->u_arg[2], "IN_???");
2721 }
2722 return 0;
2723}
2724
2725int
2726sys_inotify_rm_watch(struct tcb *tcp)
2727{
2728 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +03002729 printfd(tcp, tcp->u_arg[0]);
Dmitry V. Levinab1a70c2012-03-11 15:33:34 +00002730 tprintf(", %d", (int) tcp->u_arg[1]);
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00002731 }
2732 return 0;
2733}
Roland McGrath96a96612008-05-20 04:56:18 +00002734
2735int
Mark Wielaardbab89402010-03-21 14:41:26 +01002736sys_inotify_init1(struct tcb *tcp)
2737{
2738 if (entering(tcp))
Sebastian Pipping1e1405a2011-03-03 00:50:55 +01002739 printflags(inotify_init_flags, tcp->u_arg[0], "IN_???");
Mark Wielaardbab89402010-03-21 14:41:26 +01002740 return 0;
2741}
2742
2743int
Roland McGrath96a96612008-05-20 04:56:18 +00002744sys_fallocate(struct tcb *tcp)
2745{
2746 if (entering(tcp)) {
Andreas Schwabb5600fc2009-11-04 17:08:34 +01002747 int argn;
Dmitry V. Levin31382132011-03-04 05:08:02 +03002748 printfd(tcp, tcp->u_arg[0]); /* fd */
Denys Vlasenkod33e72a2012-05-18 02:03:24 +02002749 tprintf(", %#lo, ", tcp->u_arg[1]); /* mode */
Andreas Schwabb5600fc2009-11-04 17:08:34 +01002750 argn = printllval(tcp, "%llu, ", 2); /* offset */
2751 printllval(tcp, "%llu", argn); /* len */
Roland McGrath96a96612008-05-20 04:56:18 +00002752 }
2753 return 0;
2754}
Dmitry V. Levin88293652012-03-09 21:02:19 +00002755
Dmitry V. Levinad0c01e2012-03-15 00:52:22 +00002756#ifndef SWAP_FLAG_PREFER
2757# define SWAP_FLAG_PREFER 0x8000
2758#endif
2759#ifndef SWAP_FLAG_DISCARD
2760# define SWAP_FLAG_DISCARD 0x10000
2761#endif
Dmitry V. Levin88293652012-03-09 21:02:19 +00002762static const struct xlat swap_flags[] = {
2763 { SWAP_FLAG_PREFER, "SWAP_FLAG_PREFER" },
2764 { SWAP_FLAG_DISCARD, "SWAP_FLAG_DISCARD" },
2765 { 0, NULL }
2766};
2767
2768int
2769sys_swapon(struct tcb *tcp)
2770{
2771 if (entering(tcp)) {
2772 int flags = tcp->u_arg[1];
2773 printpath(tcp, tcp->u_arg[0]);
2774 tprints(", ");
2775 printflags(swap_flags, flags & ~SWAP_FLAG_PRIO_MASK,
2776 "SWAP_FLAG_???");
2777 if (flags & SWAP_FLAG_PREFER)
2778 tprintf("|%d", flags & SWAP_FLAG_PRIO_MASK);
2779 }
2780 return 0;
2781}
H.J. Lu085e4282012-04-17 11:05:04 -07002782
2783#ifdef X32
2784# undef stat64
2785# undef sys_fstat64
2786# undef sys_stat64
2787
2788static void
2789realprintstat64(struct tcb *tcp, long addr)
2790{
2791 struct stat64 statbuf;
2792
2793 if (!addr) {
2794 tprints("NULL");
2795 return;
2796 }
2797 if (syserror(tcp) || !verbose(tcp)) {
2798 tprintf("%#lx", addr);
2799 return;
2800 }
2801
2802 if (umove(tcp, addr, &statbuf) < 0) {
2803 tprints("{...}");
2804 return;
2805 }
2806
2807 if (!abbrev(tcp)) {
2808 tprintf("{st_dev=makedev(%lu, %lu), st_ino=%llu, st_mode=%s, ",
2809 (unsigned long) major(statbuf.st_dev),
2810 (unsigned long) minor(statbuf.st_dev),
2811 (unsigned long long) statbuf.st_ino,
2812 sprintmode(statbuf.st_mode));
2813 tprintf("st_nlink=%lu, st_uid=%lu, st_gid=%lu, ",
2814 (unsigned long) statbuf.st_nlink,
2815 (unsigned long) statbuf.st_uid,
2816 (unsigned long) statbuf.st_gid);
2817 tprintf("st_blksize=%lu, ",
2818 (unsigned long) statbuf.st_blksize);
2819 tprintf("st_blocks=%lu, ", (unsigned long) statbuf.st_blocks);
2820 }
2821 else
2822 tprintf("{st_mode=%s, ", sprintmode(statbuf.st_mode));
2823 switch (statbuf.st_mode & S_IFMT) {
2824 case S_IFCHR: case S_IFBLK:
2825 tprintf("st_rdev=makedev(%lu, %lu), ",
2826 (unsigned long) major(statbuf.st_rdev),
2827 (unsigned long) minor(statbuf.st_rdev));
2828 break;
2829 default:
2830 tprintf("st_size=%llu, ", (unsigned long long) statbuf.st_size);
2831 break;
2832 }
2833 if (!abbrev(tcp)) {
2834 tprintf("st_atime=%s, ", sprinttime(statbuf.st_atime));
2835 tprintf("st_mtime=%s, ", sprinttime(statbuf.st_mtime));
2836 tprintf("st_ctime=%s", sprinttime(statbuf.st_ctime));
2837 tprints("}");
2838 }
2839 else
2840 tprints("...}");
2841}
2842
2843int
2844sys_fstat64(struct tcb *tcp)
2845{
2846 if (entering(tcp)) {
2847 printfd(tcp, tcp->u_arg[0]);
2848 tprints(", ");
2849 } else {
2850 realprintstat64(tcp, tcp->u_arg[1]);
2851 }
2852 return 0;
2853}
2854
2855int
2856sys_stat64(struct tcb *tcp)
2857{
2858 if (entering(tcp)) {
2859 printpath(tcp, tcp->u_arg[0]);
2860 tprints(", ");
2861 } else {
2862 realprintstat64(tcp, tcp->u_arg[1]);
2863 }
2864 return 0;
2865}
2866#endif