blob: f4ff3ef77d86a404e9647670b86f5adc665e3915 [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"
Roland McGrathc531e572008-08-01 01:13:10 +000032
Denys Vlasenko9472a272013-02-12 11:43:46 +010033#if defined(SPARC) || defined(SPARC64)
Wichert Akkermandacfb6e1999-06-03 14:21:07 +000034struct stat {
35 unsigned short st_dev;
36 unsigned int st_ino;
37 unsigned short st_mode;
38 short st_nlink;
39 unsigned short st_uid;
40 unsigned short st_gid;
41 unsigned short st_rdev;
42 unsigned int st_size;
43 int st_atime;
44 unsigned int __unused1;
45 int st_mtime;
46 unsigned int __unused2;
47 int st_ctime;
48 unsigned int __unused3;
49 int st_blksize;
50 int st_blocks;
51 unsigned int __unused4[2];
52};
Denys Vlasenko84703742012-02-25 02:38:52 +010053# if defined(SPARC64)
Roland McGrath6d1a65c2004-07-12 07:44:08 +000054struct stat_sparc64 {
55 unsigned int st_dev;
56 unsigned long st_ino;
57 unsigned int st_mode;
58 unsigned int st_nlink;
59 unsigned int st_uid;
60 unsigned int st_gid;
61 unsigned int st_rdev;
62 long st_size;
63 long st_atime;
64 long st_mtime;
65 long st_ctime;
66 long st_blksize;
67 long st_blocks;
68 unsigned long __unused4[2];
69};
Denys Vlasenko84703742012-02-25 02:38:52 +010070# endif /* SPARC64 */
71# define stat kernel_stat
72# include <asm/stat.h>
73# undef stat
H.J. Lu35be5812012-04-16 13:00:01 +020074#elif defined(X32)
75struct stat {
76 unsigned long long st_dev;
77 unsigned long long st_ino;
78 unsigned long long st_nlink;
79
80 unsigned int st_mode;
81 unsigned int st_uid;
82 unsigned int st_gid;
83 unsigned int __pad0;
84 unsigned long long st_rdev;
85 long long st_size;
86 long long st_blksize;
87 long long st_blocks;
88
89 unsigned long long st_atime;
90 unsigned long long st_atime_nsec;
91 unsigned long long st_mtime;
92 unsigned long long st_mtime_nsec;
93 unsigned long long st_ctime;
94 unsigned long long st_ctime_nsec;
95 long long __unused[3];
96};
H.J. Lu085e4282012-04-17 11:05:04 -070097
98struct stat64 {
99 unsigned long long st_dev;
100 unsigned char __pad0[4];
101 unsigned long __st_ino;
102 unsigned int st_mode;
103 unsigned int st_nlink;
104 unsigned long st_uid;
105 unsigned long st_gid;
106 unsigned long long st_rdev;
107 unsigned char __pad3[4];
108 long long st_size;
109 unsigned long st_blksize;
110 unsigned long long st_blocks;
111 unsigned long st_atime;
112 unsigned long st_atime_nsec;
113 unsigned long st_mtime;
114 unsigned int st_mtime_nsec;
115 unsigned long st_ctime;
116 unsigned long st_ctime_nsec;
117 unsigned long long st_ino;
Dmitry V. Levin0eeda2c2013-05-01 16:37:08 +0000118} __attribute__((packed));
119# define HAVE_STAT64 1
Dmitry V. Levinbd2e28a2013-05-01 15:14:25 +0000120
121struct __old_kernel_stat {
122 unsigned short st_dev;
123 unsigned short st_ino;
124 unsigned short st_mode;
125 unsigned short st_nlink;
126 unsigned short st_uid;
127 unsigned short st_gid;
128 unsigned short st_rdev;
129 unsigned int st_size;
130 unsigned int st_atime;
131 unsigned int st_mtime;
132 unsigned int st_ctime;
133};
Denys Vlasenko84703742012-02-25 02:38:52 +0100134#else
135# undef dev_t
136# undef ino_t
137# undef mode_t
138# undef nlink_t
139# undef uid_t
140# undef gid_t
141# undef off_t
142# undef loff_t
Denys Vlasenko84703742012-02-25 02:38:52 +0100143# define dev_t __kernel_dev_t
144# define ino_t __kernel_ino_t
145# define mode_t __kernel_mode_t
146# define nlink_t __kernel_nlink_t
147# define uid_t __kernel_uid_t
148# define gid_t __kernel_gid_t
149# define off_t __kernel_off_t
150# define loff_t __kernel_loff_t
Wichert Akkermana6013701999-07-08 14:00:58 +0000151
Denys Vlasenko84703742012-02-25 02:38:52 +0100152# include <asm/stat.h>
Wichert Akkermana6013701999-07-08 14:00:58 +0000153
Denys Vlasenko84703742012-02-25 02:38:52 +0100154# undef dev_t
155# undef ino_t
156# undef mode_t
157# undef nlink_t
158# undef uid_t
159# undef gid_t
160# undef off_t
161# undef loff_t
Denys Vlasenko84703742012-02-25 02:38:52 +0100162# define dev_t dev_t
163# define ino_t ino_t
164# define mode_t mode_t
165# define nlink_t nlink_t
166# define uid_t uid_t
167# define gid_t gid_t
168# define off_t off_t
169# define loff_t loff_t
170#endif
171
Denys Vlasenko84703742012-02-25 02:38:52 +0100172#define stat libc_stat
173#define stat64 libc_stat64
174#include <sys/stat.h>
175#undef stat
176#undef stat64
Denys Vlasenkoa6d91de2012-03-16 12:02:22 +0100177/* These might be macros. */
Denys Vlasenko84703742012-02-25 02:38:52 +0100178#undef st_atime
179#undef st_mtime
180#undef st_ctime
Wichert Akkermand4d8e921999-04-18 23:30:29 +0000181
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000182#ifdef MAJOR_IN_SYSMACROS
Denys Vlasenko84703742012-02-25 02:38:52 +0100183# include <sys/sysmacros.h>
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000184#endif
185
186#ifdef MAJOR_IN_MKDEV
Denys Vlasenko84703742012-02-25 02:38:52 +0100187# include <sys/mkdev.h>
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000188#endif
189
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000190/* several stats */
191
Denys Vlasenko9472a272013-02-12 11:43:46 +0100192#if defined(SPARC) || defined(SPARC64)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000193typedef struct {
Denys Vlasenkoadedb512008-12-30 18:47:55 +0000194 int tv_sec;
195 int tv_nsec;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000196} timestruct_t;
197
198struct solstat {
Denys Vlasenkoadedb512008-12-30 18:47:55 +0000199 unsigned st_dev;
200 int st_pad1[3]; /* network id */
201 unsigned st_ino;
202 unsigned st_mode;
203 unsigned st_nlink;
204 unsigned st_uid;
205 unsigned st_gid;
206 unsigned st_rdev;
207 int st_pad2[2];
208 int st_size;
209 int st_pad3; /* st_size, off_t expansion */
210 timestruct_t st_atime;
211 timestruct_t st_mtime;
212 timestruct_t st_ctime;
213 int st_blksize;
214 int st_blocks;
215 char st_fstype[16];
216 int st_pad4[8]; /* expansion area */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000217};
218
219static void
Dmitry V. Levinb838b1e2008-04-19 23:47:47 +0000220printstatsol(struct tcb *tcp, long addr)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000221{
222 struct solstat statbuf;
223
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000224 if (umove(tcp, addr, &statbuf) < 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200225 tprints("{...}");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000226 return;
227 }
228 if (!abbrev(tcp)) {
229 tprintf("{st_dev=makedev(%lu, %lu), st_ino=%lu, st_mode=%s, ",
230 (unsigned long) ((statbuf.st_dev >> 18) & 0x3fff),
231 (unsigned long) (statbuf.st_dev & 0x3ffff),
232 (unsigned long) statbuf.st_ino,
233 sprintmode(statbuf.st_mode));
234 tprintf("st_nlink=%lu, st_uid=%lu, st_gid=%lu, ",
235 (unsigned long) statbuf.st_nlink,
236 (unsigned long) statbuf.st_uid,
237 (unsigned long) statbuf.st_gid);
238 tprintf("st_blksize=%lu, ", (unsigned long) statbuf.st_blksize);
239 tprintf("st_blocks=%lu, ", (unsigned long) statbuf.st_blocks);
240 }
241 else
242 tprintf("{st_mode=%s, ", sprintmode(statbuf.st_mode));
243 switch (statbuf.st_mode & S_IFMT) {
244 case S_IFCHR: case S_IFBLK:
245 tprintf("st_rdev=makedev(%lu, %lu), ",
246 (unsigned long) ((statbuf.st_rdev >> 18) & 0x3fff),
247 (unsigned long) (statbuf.st_rdev & 0x3ffff));
248 break;
249 default:
250 tprintf("st_size=%u, ", statbuf.st_size);
251 break;
252 }
253 if (!abbrev(tcp)) {
Dmitry V. Levinb838b1e2008-04-19 23:47:47 +0000254 tprintf("st_atime=%s, ", sprinttime(statbuf.st_atime.tv_sec));
255 tprintf("st_mtime=%s, ", sprinttime(statbuf.st_mtime.tv_sec));
256 tprintf("st_ctime=%s}", sprinttime(statbuf.st_ctime.tv_sec));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000257 }
258 else
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200259 tprints("...}");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000260}
Roland McGrath6d1a65c2004-07-12 07:44:08 +0000261
Denys Vlasenko9472a272013-02-12 11:43:46 +0100262# if defined(SPARC64)
Roland McGrath6d1a65c2004-07-12 07:44:08 +0000263static void
Denys Vlasenko1d632462009-04-14 12:51:00 +0000264printstat_sparc64(struct tcb *tcp, long addr)
Roland McGrath6d1a65c2004-07-12 07:44:08 +0000265{
266 struct stat_sparc64 statbuf;
267
Roland McGrath6d1a65c2004-07-12 07:44:08 +0000268 if (umove(tcp, addr, &statbuf) < 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200269 tprints("{...}");
Roland McGrath6d1a65c2004-07-12 07:44:08 +0000270 return;
271 }
272
273 if (!abbrev(tcp)) {
274 tprintf("{st_dev=makedev(%lu, %lu), st_ino=%lu, st_mode=%s, ",
275 (unsigned long) major(statbuf.st_dev),
276 (unsigned long) minor(statbuf.st_dev),
277 (unsigned long) statbuf.st_ino,
278 sprintmode(statbuf.st_mode));
279 tprintf("st_nlink=%lu, st_uid=%lu, st_gid=%lu, ",
280 (unsigned long) statbuf.st_nlink,
281 (unsigned long) statbuf.st_uid,
282 (unsigned long) statbuf.st_gid);
283 tprintf("st_blksize=%lu, ",
284 (unsigned long) statbuf.st_blksize);
285 tprintf("st_blocks=%lu, ",
286 (unsigned long) statbuf.st_blocks);
287 }
288 else
289 tprintf("{st_mode=%s, ", sprintmode(statbuf.st_mode));
290 switch (statbuf.st_mode & S_IFMT) {
291 case S_IFCHR: case S_IFBLK:
292 tprintf("st_rdev=makedev(%lu, %lu), ",
293 (unsigned long) major(statbuf.st_rdev),
294 (unsigned long) minor(statbuf.st_rdev));
295 break;
296 default:
297 tprintf("st_size=%lu, ", statbuf.st_size);
298 break;
299 }
300 if (!abbrev(tcp)) {
301 tprintf("st_atime=%s, ", sprinttime(statbuf.st_atime));
302 tprintf("st_mtime=%s, ", sprinttime(statbuf.st_mtime));
Denys Vlasenko1945ccc2012-02-27 14:37:48 +0100303 tprintf("st_ctime=%s}", sprinttime(statbuf.st_ctime));
Roland McGrath6d1a65c2004-07-12 07:44:08 +0000304 }
305 else
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200306 tprints("...}");
Roland McGrath6d1a65c2004-07-12 07:44:08 +0000307}
Denys Vlasenko9472a272013-02-12 11:43:46 +0100308# endif /* SPARC64 */
309#endif /* SPARC[64] */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000310
Denys Vlasenko84703742012-02-25 02:38:52 +0100311#if defined POWERPC64
Andreas Schwabd69fa492010-07-12 21:39:57 +0200312struct stat_powerpc32 {
313 unsigned int st_dev;
314 unsigned int st_ino;
315 unsigned int st_mode;
316 unsigned short st_nlink;
317 unsigned int st_uid;
318 unsigned int st_gid;
319 unsigned int st_rdev;
320 unsigned int st_size;
321 unsigned int st_blksize;
322 unsigned int st_blocks;
323 unsigned int st_atime;
324 unsigned int st_atime_nsec;
325 unsigned int st_mtime;
326 unsigned int st_mtime_nsec;
327 unsigned int st_ctime;
328 unsigned int st_ctime_nsec;
329 unsigned int __unused4;
330 unsigned int __unused5;
331};
332
333static void
334printstat_powerpc32(struct tcb *tcp, long addr)
335{
336 struct stat_powerpc32 statbuf;
337
338 if (umove(tcp, addr, &statbuf) < 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200339 tprints("{...}");
Andreas Schwabd69fa492010-07-12 21:39:57 +0200340 return;
341 }
342
343 if (!abbrev(tcp)) {
344 tprintf("{st_dev=makedev(%u, %u), st_ino=%u, st_mode=%s, ",
345 major(statbuf.st_dev), minor(statbuf.st_dev),
346 statbuf.st_ino,
347 sprintmode(statbuf.st_mode));
348 tprintf("st_nlink=%u, st_uid=%u, st_gid=%u, ",
349 statbuf.st_nlink, statbuf.st_uid, statbuf.st_gid);
350 tprintf("st_blksize=%u, ", statbuf.st_blksize);
351 tprintf("st_blocks=%u, ", statbuf.st_blocks);
352 }
353 else
354 tprintf("{st_mode=%s, ", sprintmode(statbuf.st_mode));
355 switch (statbuf.st_mode & S_IFMT) {
356 case S_IFCHR: case S_IFBLK:
357 tprintf("st_rdev=makedev(%lu, %lu), ",
358 (unsigned long) major(statbuf.st_rdev),
359 (unsigned long) minor(statbuf.st_rdev));
360 break;
361 default:
362 tprintf("st_size=%u, ", statbuf.st_size);
363 break;
364 }
365 if (!abbrev(tcp)) {
366 tprintf("st_atime=%s, ", sprinttime(statbuf.st_atime));
367 tprintf("st_mtime=%s, ", sprinttime(statbuf.st_mtime));
Denys Vlasenko1945ccc2012-02-27 14:37:48 +0100368 tprintf("st_ctime=%s}", sprinttime(statbuf.st_ctime));
Andreas Schwabd69fa492010-07-12 21:39:57 +0200369 }
370 else
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200371 tprints("...}");
Andreas Schwabd69fa492010-07-12 21:39:57 +0200372}
Denys Vlasenko84703742012-02-25 02:38:52 +0100373#endif /* POWERPC64 */
Andreas Schwabd69fa492010-07-12 21:39:57 +0200374
Dmitry V. Levinab21a942014-12-28 18:15:25 +0000375#include "printstat.h"
Wichert Akkerman328c5e71999-04-16 00:21:26 +0000376
Dmitry V. Levin0eeda2c2013-05-01 16:37:08 +0000377#ifndef X32
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000378static void
Denys Vlasenko1d632462009-04-14 12:51:00 +0000379printstat(struct tcb *tcp, long addr)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000380{
Wichert Akkerman328c5e71999-04-16 00:21:26 +0000381 struct stat statbuf;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000382
Denys Vlasenko4e718b52009-04-20 18:30:13 +0000383 if (!addr) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200384 tprints("NULL");
Denys Vlasenko4e718b52009-04-20 18:30:13 +0000385 return;
386 }
387 if (syserror(tcp) || !verbose(tcp)) {
388 tprintf("%#lx", addr);
389 return;
390 }
391
Denys Vlasenko9472a272013-02-12 11:43:46 +0100392#if defined(SPARC) || defined(SPARC64)
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +0000393 if (current_personality == 1) {
394 printstatsol(tcp, addr);
395 return;
396 }
Roland McGrath6d1a65c2004-07-12 07:44:08 +0000397#ifdef SPARC64
398 else if (current_personality == 2) {
399 printstat_sparc64(tcp, addr);
400 return;
401 }
402#endif
Denys Vlasenko9472a272013-02-12 11:43:46 +0100403#endif /* SPARC[64] */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000404
Denys Vlasenko84703742012-02-25 02:38:52 +0100405#if defined POWERPC64
Andreas Schwabd69fa492010-07-12 21:39:57 +0200406 if (current_personality == 1) {
407 printstat_powerpc32(tcp, addr);
408 return;
409 }
410#endif
411
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000412 if (umove(tcp, addr, &statbuf) < 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200413 tprints("{...}");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000414 return;
415 }
Wichert Akkerman328c5e71999-04-16 00:21:26 +0000416
Dmitry V. Levind01f0a82014-12-28 18:00:39 +0000417 do_printstat(tcp, &statbuf);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000418}
Dmitry V. Levin0eeda2c2013-05-01 16:37:08 +0000419#else /* X32 */
420# define printstat printstat64
421#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000422
Elliott Hughes391c0d82014-04-03 17:50:14 -0700423#if !defined HAVE_STAT64 && (defined AARCH64 || defined X86_64)
Roland McGrathe6d0f712007-08-07 01:22:49 +0000424/*
425 * Linux x86_64 has unified `struct stat' but its i386 biarch needs
426 * `struct stat64'. Its <asm-i386/stat.h> definition expects 32-bit `long'.
427 * <linux/include/asm-x86_64/ia32.h> is not in the public includes set.
428 * __GNUC__ is needed for the required __attribute__ below.
Elliott Hughes391c0d82014-04-03 17:50:14 -0700429 *
430 * Similarly, aarch64 has a unified `struct stat' but its arm personality
431 * needs `struct stat64' (which also expects a 32-bit `long' but which
432 * shouldn't be packed).
Roland McGrathe6d0f712007-08-07 01:22:49 +0000433 */
434struct stat64 {
435 unsigned long long st_dev;
436 unsigned char __pad0[4];
437 unsigned int __st_ino;
438 unsigned int st_mode;
439 unsigned int st_nlink;
440 unsigned int st_uid;
441 unsigned int st_gid;
442 unsigned long long st_rdev;
443 unsigned char __pad3[4];
444 long long st_size;
445 unsigned int st_blksize;
446 unsigned long long st_blocks;
447 unsigned int st_atime;
448 unsigned int st_atime_nsec;
449 unsigned int st_mtime;
450 unsigned int st_mtime_nsec;
451 unsigned int st_ctime;
452 unsigned int st_ctime_nsec;
453 unsigned long long st_ino;
Elliott Hughes391c0d82014-04-03 17:50:14 -0700454}
455# if defined X86_64
456 __attribute__((packed))
457# define STAT64_SIZE 96
458#else
459# define STAT64_SIZE 104
460# endif
461;
Roland McGrathe6d0f712007-08-07 01:22:49 +0000462# define HAVE_STAT64 1
Roland McGrathe6d0f712007-08-07 01:22:49 +0000463#endif
464
Wichert Akkermanc7926982000-04-10 22:22:31 +0000465#ifdef HAVE_STAT64
Wichert Akkerman328c5e71999-04-16 00:21:26 +0000466static void
Denys Vlasenko1d632462009-04-14 12:51:00 +0000467printstat64(struct tcb *tcp, long addr)
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +0000468{
Dmitry V. Levin0eeda2c2013-05-01 16:37:08 +0000469#ifdef X32
470 struct stat statbuf;
471#else
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +0000472 struct stat64 statbuf;
Dmitry V. Levin0eeda2c2013-05-01 16:37:08 +0000473#endif
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +0000474
Denys Vlasenko4e718b52009-04-20 18:30:13 +0000475#ifdef STAT64_SIZE
Roland McGrathe6d0f712007-08-07 01:22:49 +0000476 (void) sizeof(char[sizeof statbuf == STAT64_SIZE ? 1 : -1]);
477#endif
478
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +0000479 if (!addr) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200480 tprints("NULL");
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +0000481 return;
482 }
483 if (syserror(tcp) || !verbose(tcp)) {
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +0000484 tprintf("%#lx", addr);
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +0000485 return;
486 }
Denys Vlasenko4e718b52009-04-20 18:30:13 +0000487
Denys Vlasenko9472a272013-02-12 11:43:46 +0100488#if defined(SPARC) || defined(SPARC64)
Denys Vlasenko4e718b52009-04-20 18:30:13 +0000489 if (current_personality == 1) {
490 printstatsol(tcp, addr);
491 return;
492 }
493# ifdef SPARC64
494 else if (current_personality == 2) {
495 printstat_sparc64(tcp, addr);
496 return;
497 }
498# endif
Denys Vlasenko9472a272013-02-12 11:43:46 +0100499#endif /* SPARC[64] */
Denys Vlasenko4e718b52009-04-20 18:30:13 +0000500
Elliott Hughes391c0d82014-04-03 17:50:14 -0700501#if defined AARCH64
502 if (current_personality != 0) {
503 printstat(tcp, addr);
504 return;
505 }
506#endif
Denys Vlasenko84703742012-02-25 02:38:52 +0100507#if defined X86_64
H.J. Lu35be5812012-04-16 13:00:01 +0200508 if (current_personality != 1) {
Andreas Schwab61b74352009-10-16 11:37:13 +0200509 printstat(tcp, addr);
510 return;
511 }
512#endif
Dmitry V. Levinff896f72009-10-21 13:43:57 +0000513
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +0000514 if (umove(tcp, addr, &statbuf) < 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200515 tprints("{...}");
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +0000516 return;
517 }
518
519 if (!abbrev(tcp)) {
Wichert Akkermand077c452000-08-10 18:16:15 +0000520 tprintf("{st_dev=makedev(%lu, %lu), st_ino=%llu, st_mode=%s, ",
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +0000521 (unsigned long) major(statbuf.st_dev),
522 (unsigned long) minor(statbuf.st_dev),
Wichert Akkermand077c452000-08-10 18:16:15 +0000523 (unsigned long long) statbuf.st_ino,
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +0000524 sprintmode(statbuf.st_mode));
525 tprintf("st_nlink=%lu, st_uid=%lu, st_gid=%lu, ",
526 (unsigned long) statbuf.st_nlink,
527 (unsigned long) statbuf.st_uid,
528 (unsigned long) statbuf.st_gid);
Roland McGrath6d2b3492002-12-30 00:51:30 +0000529#ifdef HAVE_STRUCT_STAT_ST_BLKSIZE
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +0000530 tprintf("st_blksize=%lu, ",
531 (unsigned long) statbuf.st_blksize);
Roland McGrath6d2b3492002-12-30 00:51:30 +0000532#endif /* HAVE_STRUCT_STAT_ST_BLKSIZE */
533#ifdef HAVE_STRUCT_STAT_ST_BLOCKS
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +0000534 tprintf("st_blocks=%lu, ", (unsigned long) statbuf.st_blocks);
Roland McGrath6d2b3492002-12-30 00:51:30 +0000535#endif /* HAVE_STRUCT_STAT_ST_BLOCKS */
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +0000536 }
537 else
538 tprintf("{st_mode=%s, ", sprintmode(statbuf.st_mode));
539 switch (statbuf.st_mode & S_IFMT) {
540 case S_IFCHR: case S_IFBLK:
Roland McGrath6d2b3492002-12-30 00:51:30 +0000541#ifdef HAVE_STRUCT_STAT_ST_RDEV
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +0000542 tprintf("st_rdev=makedev(%lu, %lu), ",
543 (unsigned long) major(statbuf.st_rdev),
544 (unsigned long) minor(statbuf.st_rdev));
Roland McGrath6d2b3492002-12-30 00:51:30 +0000545#else /* !HAVE_STRUCT_STAT_ST_RDEV */
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +0000546 tprintf("st_size=makedev(%lu, %lu), ",
547 (unsigned long) major(statbuf.st_size),
548 (unsigned long) minor(statbuf.st_size));
Roland McGrath6d2b3492002-12-30 00:51:30 +0000549#endif /* !HAVE_STRUCT_STAT_ST_RDEV */
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +0000550 break;
551 default:
Roland McGrathc7bd4d32007-08-07 01:05:19 +0000552 tprintf("st_size=%llu, ", (unsigned long long) statbuf.st_size);
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +0000553 break;
554 }
555 if (!abbrev(tcp)) {
556 tprintf("st_atime=%s, ", sprinttime(statbuf.st_atime));
557 tprintf("st_mtime=%s, ", sprinttime(statbuf.st_mtime));
John Hughesc0fc3fd2001-03-08 16:10:40 +0000558 tprintf("st_ctime=%s", sprinttime(statbuf.st_ctime));
Roland McGrath6d2b3492002-12-30 00:51:30 +0000559#if HAVE_STRUCT_STAT_ST_FLAGS
Dmitry V. Levin2928afe2014-12-28 17:44:13 +0000560 tprintf(", st_flags=%u", statbuf->st_flags);
John Hughesc0fc3fd2001-03-08 16:10:40 +0000561#endif
Roland McGrath6d2b3492002-12-30 00:51:30 +0000562#if HAVE_STRUCT_STAT_ST_FSTYPE
John Hughesc0fc3fd2001-03-08 16:10:40 +0000563 tprintf(", st_fstype=%.*s",
564 (int) sizeof statbuf.st_fstype, statbuf.st_fstype);
565#endif
Roland McGrath6d2b3492002-12-30 00:51:30 +0000566#if HAVE_STRUCT_STAT_ST_GEN
John Hughesc0fc3fd2001-03-08 16:10:40 +0000567 tprintf(", st_gen=%u", statbuf.st_gen);
568#endif
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200569 tprints("}");
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +0000570 }
571 else
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200572 tprints("...}");
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +0000573}
Wichert Akkermanc7926982000-04-10 22:22:31 +0000574#endif /* HAVE_STAT64 */
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +0000575
Denys Vlasenko8435d672013-02-18 15:47:57 +0100576#if defined(HAVE_STRUCT___OLD_KERNEL_STAT)
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +0000577static void
Denys Vlasenko1d632462009-04-14 12:51:00 +0000578convertoldstat(const struct __old_kernel_stat *oldbuf, struct stat *newbuf)
Wichert Akkerman328c5e71999-04-16 00:21:26 +0000579{
Denys Vlasenko1d632462009-04-14 12:51:00 +0000580 newbuf->st_dev = oldbuf->st_dev;
581 newbuf->st_ino = oldbuf->st_ino;
582 newbuf->st_mode = oldbuf->st_mode;
583 newbuf->st_nlink = oldbuf->st_nlink;
584 newbuf->st_uid = oldbuf->st_uid;
585 newbuf->st_gid = oldbuf->st_gid;
586 newbuf->st_rdev = oldbuf->st_rdev;
587 newbuf->st_size = oldbuf->st_size;
588 newbuf->st_atime = oldbuf->st_atime;
589 newbuf->st_mtime = oldbuf->st_mtime;
590 newbuf->st_ctime = oldbuf->st_ctime;
591 newbuf->st_blksize = 0; /* not supported in old_stat */
592 newbuf->st_blocks = 0; /* not supported in old_stat */
Wichert Akkerman328c5e71999-04-16 00:21:26 +0000593}
Wichert Akkerman328c5e71999-04-16 00:21:26 +0000594
Wichert Akkerman328c5e71999-04-16 00:21:26 +0000595static void
Denys Vlasenko1d632462009-04-14 12:51:00 +0000596printoldstat(struct tcb *tcp, long addr)
Wichert Akkerman328c5e71999-04-16 00:21:26 +0000597{
Wichert Akkerman25d0c4f1999-04-18 19:35:42 +0000598 struct __old_kernel_stat statbuf;
599 struct stat newstatbuf;
Wichert Akkerman328c5e71999-04-16 00:21:26 +0000600
Wichert Akkerman328c5e71999-04-16 00:21:26 +0000601 if (!addr) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200602 tprints("NULL");
Wichert Akkerman328c5e71999-04-16 00:21:26 +0000603 return;
604 }
605 if (syserror(tcp) || !verbose(tcp)) {
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +0000606 tprintf("%#lx", addr);
Wichert Akkerman328c5e71999-04-16 00:21:26 +0000607 return;
608 }
Denys Vlasenko4e718b52009-04-20 18:30:13 +0000609
Denys Vlasenko9472a272013-02-12 11:43:46 +0100610# if defined(SPARC) || defined(SPARC64)
Denys Vlasenko4e718b52009-04-20 18:30:13 +0000611 if (current_personality == 1) {
612 printstatsol(tcp, addr);
613 return;
614 }
Denys Vlasenko84703742012-02-25 02:38:52 +0100615# endif
Denys Vlasenko4e718b52009-04-20 18:30:13 +0000616
Wichert Akkerman328c5e71999-04-16 00:21:26 +0000617 if (umove(tcp, addr, &statbuf) < 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200618 tprints("{...}");
Wichert Akkerman328c5e71999-04-16 00:21:26 +0000619 return;
620 }
621
622 convertoldstat(&statbuf, &newstatbuf);
Dmitry V. Levind01f0a82014-12-28 18:00:39 +0000623 do_printstat(tcp, &newstatbuf);
Wichert Akkerman328c5e71999-04-16 00:21:26 +0000624}
Denys Vlasenko84703742012-02-25 02:38:52 +0100625#endif
Wichert Akkerman328c5e71999-04-16 00:21:26 +0000626
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000627int
Denys Vlasenko1d632462009-04-14 12:51:00 +0000628sys_stat(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000629{
630 if (entering(tcp)) {
631 printpath(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200632 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000633 } else {
634 printstat(tcp, tcp->u_arg[1]);
635 }
636 return 0;
637}
638
Dmitry V. Levin0eeda2c2013-05-01 16:37:08 +0000639#ifdef X32
640static void
641printstat64_x32(struct tcb *tcp, long addr)
642{
643 struct stat64 statbuf;
644
645 if (!addr) {
646 tprints("NULL");
647 return;
648 }
649 if (syserror(tcp) || !verbose(tcp)) {
650 tprintf("%#lx", addr);
651 return;
652 }
653
654 if (umove(tcp, addr, &statbuf) < 0) {
655 tprints("{...}");
656 return;
657 }
658
659 if (!abbrev(tcp)) {
660 tprintf("{st_dev=makedev(%lu, %lu), st_ino=%llu, st_mode=%s, ",
661 (unsigned long) major(statbuf.st_dev),
662 (unsigned long) minor(statbuf.st_dev),
663 (unsigned long long) statbuf.st_ino,
664 sprintmode(statbuf.st_mode));
665 tprintf("st_nlink=%lu, st_uid=%lu, st_gid=%lu, ",
666 (unsigned long) statbuf.st_nlink,
667 (unsigned long) statbuf.st_uid,
668 (unsigned long) statbuf.st_gid);
669 tprintf("st_blksize=%lu, ",
670 (unsigned long) statbuf.st_blksize);
671 tprintf("st_blocks=%lu, ", (unsigned long) statbuf.st_blocks);
672 }
673 else
674 tprintf("{st_mode=%s, ", sprintmode(statbuf.st_mode));
675 switch (statbuf.st_mode & S_IFMT) {
676 case S_IFCHR: case S_IFBLK:
677 tprintf("st_rdev=makedev(%lu, %lu), ",
678 (unsigned long) major(statbuf.st_rdev),
679 (unsigned long) minor(statbuf.st_rdev));
680 break;
681 default:
682 tprintf("st_size=%llu, ", (unsigned long long) statbuf.st_size);
683 break;
684 }
685 if (!abbrev(tcp)) {
686 tprintf("st_atime=%s, ", sprinttime(statbuf.st_atime));
687 tprintf("st_mtime=%s, ", sprinttime(statbuf.st_mtime));
688 tprintf("st_ctime=%s", sprinttime(statbuf.st_ctime));
689 tprints("}");
690 }
691 else
692 tprints("...}");
693}
694#endif /* X32 */
695
Wichert Akkerman328c5e71999-04-16 00:21:26 +0000696int
Denys Vlasenko1d632462009-04-14 12:51:00 +0000697sys_stat64(struct tcb *tcp)
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +0000698{
699#ifdef HAVE_STAT64
700 if (entering(tcp)) {
701 printpath(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200702 tprints(", ");
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +0000703 } else {
Dmitry V. Levin0eeda2c2013-05-01 16:37:08 +0000704# ifdef X32
705 printstat64_x32(tcp, tcp->u_arg[1]);
706# else
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +0000707 printstat64(tcp, tcp->u_arg[1]);
Dmitry V. Levin0eeda2c2013-05-01 16:37:08 +0000708# endif
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +0000709 }
710 return 0;
711#else
712 return printargs(tcp);
713#endif
714}
715
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000716int
717sys_newfstatat(struct tcb *tcp)
718{
719 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +0300720 print_dirfd(tcp, tcp->u_arg[0]);
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000721 printpath(tcp, tcp->u_arg[1]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200722 tprints(", ");
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000723 } else {
Andreas Schwabd69fa492010-07-12 21:39:57 +0200724#ifdef POWERPC64
725 if (current_personality == 0)
726 printstat(tcp, tcp->u_arg[2]);
727 else
728 printstat64(tcp, tcp->u_arg[2]);
729#elif defined HAVE_STAT64
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000730 printstat64(tcp, tcp->u_arg[2]);
731#else
732 printstat(tcp, tcp->u_arg[2]);
733#endif
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200734 tprints(", ");
Dmitry V. Levin7989ad42012-03-13 23:26:01 +0000735 printflags(at_flags, tcp->u_arg[3], "AT_???");
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000736 }
737 return 0;
738}
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000739
Denys Vlasenko8435d672013-02-18 15:47:57 +0100740#if defined(HAVE_STRUCT___OLD_KERNEL_STAT)
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +0000741int
Denys Vlasenko1d632462009-04-14 12:51:00 +0000742sys_oldstat(struct tcb *tcp)
Wichert Akkerman328c5e71999-04-16 00:21:26 +0000743{
744 if (entering(tcp)) {
745 printpath(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200746 tprints(", ");
Wichert Akkerman328c5e71999-04-16 00:21:26 +0000747 } else {
748 printoldstat(tcp, tcp->u_arg[1]);
749 }
750 return 0;
751}
Denys Vlasenko84703742012-02-25 02:38:52 +0100752#endif
Wichert Akkerman328c5e71999-04-16 00:21:26 +0000753
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000754int
Denys Vlasenko1d632462009-04-14 12:51:00 +0000755sys_fstat(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000756{
Dmitry V. Levin31382132011-03-04 05:08:02 +0300757 if (entering(tcp)) {
758 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200759 tprints(", ");
Dmitry V. Levin31382132011-03-04 05:08:02 +0300760 } else {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000761 printstat(tcp, tcp->u_arg[1]);
762 }
763 return 0;
764}
765
Wichert Akkerman328c5e71999-04-16 00:21:26 +0000766int
Denys Vlasenko1d632462009-04-14 12:51:00 +0000767sys_fstat64(struct tcb *tcp)
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +0000768{
769#ifdef HAVE_STAT64
Dmitry V. Levin31382132011-03-04 05:08:02 +0300770 if (entering(tcp)) {
771 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200772 tprints(", ");
Dmitry V. Levin31382132011-03-04 05:08:02 +0300773 } else {
Dmitry V. Levin0eeda2c2013-05-01 16:37:08 +0000774# ifdef X32
775 printstat64_x32(tcp, tcp->u_arg[1]);
776# else
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +0000777 printstat64(tcp, tcp->u_arg[1]);
Dmitry V. Levin0eeda2c2013-05-01 16:37:08 +0000778# endif
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +0000779 }
780 return 0;
781#else
782 return printargs(tcp);
783#endif
784}
785
Denys Vlasenko8435d672013-02-18 15:47:57 +0100786#if defined(HAVE_STRUCT___OLD_KERNEL_STAT)
Ulrich Drepper7f02c4d1999-12-24 08:01:34 +0000787int
Denys Vlasenko1d632462009-04-14 12:51:00 +0000788sys_oldfstat(struct tcb *tcp)
Wichert Akkerman328c5e71999-04-16 00:21:26 +0000789{
Dmitry V. Levin31382132011-03-04 05:08:02 +0300790 if (entering(tcp)) {
791 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200792 tprints(", ");
Dmitry V. Levin31382132011-03-04 05:08:02 +0300793 } else {
Wichert Akkerman328c5e71999-04-16 00:21:26 +0000794 printoldstat(tcp, tcp->u_arg[1]);
795 }
796 return 0;
797}
Denys Vlasenko84703742012-02-25 02:38:52 +0100798#endif
Wichert Akkerman328c5e71999-04-16 00:21:26 +0000799
Denys Vlasenko9472a272013-02-12 11:43:46 +0100800#if defined(SPARC) || defined(SPARC64)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000801
802int
Denys Vlasenko1d632462009-04-14 12:51:00 +0000803sys_xstat(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000804{
805 if (entering(tcp)) {
806 tprintf("%ld, ", tcp->u_arg[0]);
807 printpath(tcp, tcp->u_arg[1]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200808 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000809 } else {
810 printstat(tcp, tcp->u_arg[2]);
811 }
812 return 0;
813}
814
815int
Denys Vlasenko1d632462009-04-14 12:51:00 +0000816sys_fxstat(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000817{
Dmitry V. Levine00a9572014-12-29 03:15:42 +0000818 if (entering(tcp)) {
819 tprintf("%ld, ", tcp->u_arg[0]);
820 printfd(tcp, tcp->u_arg[1]);
821 tprints(", ");
822 } else {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000823 printstat(tcp, tcp->u_arg[2]);
824 }
825 return 0;
826}
827
Dmitry V. Levin964d80a2014-12-06 03:53:16 +0000828#endif /* SPARC || SPARC64 */