blob: bd3c7ba13383397cf0fa0cb1fc49da668054ba43 [file] [log] [blame]
Dmitry V. Levin38a34c92015-12-17 17:56:48 +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-1996 Rick Sladkey <jrs@world.std.com>
5 * Copyright (c) 1996-1999 Wichert Akkerman <wichert@cistron.nl>
6 * Copyright (c) 2003 Ulrich Drepper <drepper@redhat.com>
7 * Copyright (c) 2012 Andreas Schwab <schwab@linux-m68k.org>
8 * Copyright (c) 2014-2015 Dmitry V. Levin <ldv@altlinux.org>
9 * All rights reserved.
10 *
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in the
18 * documentation and/or other materials provided with the distribution.
19 * 3. The name of the author may not be used to endorse or promote products
20 * derived from this software without specific prior written permission.
21 *
22 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
23 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
24 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
25 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
26 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
27 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
31 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 */
33
Dmitry V. Levin9a0dd742014-09-22 00:17:42 +000034#include "defs.h"
35#ifdef HAVE_SYS_VFS_H
36# include <sys/vfs.h>
37#endif
38#include "xlat/fsmagic.h"
39
40static const char *
41sprintfstype(const unsigned int magic)
42{
43 static char buf[32];
44 const char *s;
45
46 s = xlat_search(fsmagic, ARRAY_SIZE(fsmagic), magic);
47 if (s) {
48 sprintf(buf, "\"%s\"", s);
49 return buf;
50 }
51 sprintf(buf, "%#x", magic);
52 return buf;
53}
54
55static void
56printstatfs(struct tcb *tcp, const long addr)
57{
58 struct statfs statbuf;
59
Dmitry V. Levinfd55b542015-07-16 23:32:12 +000060 if (umove_or_printaddr(tcp, addr, &statbuf))
Dmitry V. Levin9a0dd742014-09-22 00:17:42 +000061 return;
Dmitry V. Levin9a0dd742014-09-22 00:17:42 +000062 tprintf("{f_type=%s, f_bsize=%lu, f_blocks=%lu, f_bfree=%lu, ",
63 sprintfstype(statbuf.f_type),
64 (unsigned long)statbuf.f_bsize,
65 (unsigned long)statbuf.f_blocks,
66 (unsigned long)statbuf.f_bfree);
67 tprintf("f_bavail=%lu, f_files=%lu, f_ffree=%lu, f_fsid={%d, %d}",
68 (unsigned long)statbuf.f_bavail,
69 (unsigned long)statbuf.f_files,
70 (unsigned long)statbuf.f_ffree,
71 statbuf.f_fsid.__val[0], statbuf.f_fsid.__val[1]);
72 tprintf(", f_namelen=%lu", (unsigned long)statbuf.f_namelen);
Dmitry V. Levin9a0dd742014-09-22 00:17:42 +000073#ifdef _STATFS_F_FRSIZE
74 tprintf(", f_frsize=%lu", (unsigned long)statbuf.f_frsize);
75#endif
Elliott Hughes1b5b5672015-03-17 16:00:31 -070076#ifdef _STATFS_F_FLAGS
77 tprintf(", f_flags=%lu", (unsigned long)statbuf.f_flags);
78#endif
Dmitry V. Levin9a0dd742014-09-22 00:17:42 +000079 tprints("}");
80}
81
Dmitry V. Levina0bd3742015-04-07 01:36:50 +000082SYS_FUNC(statfs)
Dmitry V. Levin9a0dd742014-09-22 00:17:42 +000083{
84 if (entering(tcp)) {
85 printpath(tcp, tcp->u_arg[0]);
86 tprints(", ");
87 } else {
88 printstatfs(tcp, tcp->u_arg[1]);
89 }
90 return 0;
91}
92
Dmitry V. Levina0bd3742015-04-07 01:36:50 +000093SYS_FUNC(fstatfs)
Dmitry V. Levin9a0dd742014-09-22 00:17:42 +000094{
95 if (entering(tcp)) {
96 printfd(tcp, tcp->u_arg[0]);
97 tprints(", ");
98 } else {
99 printstatfs(tcp, tcp->u_arg[1]);
100 }
101 return 0;
102}
103
Dmitry V. Levin9e6a7bf2015-01-08 04:12:29 +0000104#ifdef HAVE_STRUCT_STATFS64
Dmitry V. Levin9a0dd742014-09-22 00:17:42 +0000105static void
106printstatfs64(struct tcb *tcp, long addr)
107{
108 struct statfs64 statbuf;
109
Dmitry V. Levinfd55b542015-07-16 23:32:12 +0000110 if (umove_or_printaddr(tcp, addr, &statbuf))
Dmitry V. Levin9a0dd742014-09-22 00:17:42 +0000111 return;
Dmitry V. Levin9a0dd742014-09-22 00:17:42 +0000112 tprintf("{f_type=%s, f_bsize=%llu, f_blocks=%llu, f_bfree=%llu, ",
113 sprintfstype(statbuf.f_type),
114 (unsigned long long)statbuf.f_bsize,
115 (unsigned long long)statbuf.f_blocks,
116 (unsigned long long)statbuf.f_bfree);
117 tprintf("f_bavail=%llu, f_files=%llu, f_ffree=%llu, f_fsid={%d, %d}",
118 (unsigned long long)statbuf.f_bavail,
119 (unsigned long long)statbuf.f_files,
120 (unsigned long long)statbuf.f_ffree,
121 statbuf.f_fsid.__val[0], statbuf.f_fsid.__val[1]);
122 tprintf(", f_namelen=%lu", (unsigned long)statbuf.f_namelen);
123#ifdef _STATFS_F_FRSIZE
124 tprintf(", f_frsize=%llu", (unsigned long long)statbuf.f_frsize);
125#endif
126#ifdef _STATFS_F_FLAGS
127 tprintf(", f_flags=%llu", (unsigned long long)statbuf.f_flags);
128#endif
129 tprints("}");
130}
131
132struct compat_statfs64 {
133 uint32_t f_type;
134 uint32_t f_bsize;
135 uint64_t f_blocks;
136 uint64_t f_bfree;
137 uint64_t f_bavail;
138 uint64_t f_files;
139 uint64_t f_ffree;
140 fsid_t f_fsid;
141 uint32_t f_namelen;
142 uint32_t f_frsize;
143 uint32_t f_flags;
144 uint32_t f_spare[4];
145}
Dmitry V. Levind50949d2015-03-02 21:34:02 +0000146#if defined AARCH64 || defined X86_64 || defined X32 || defined IA64
Dmitry V. Levin5647cf82015-03-29 22:45:03 +0000147 ATTRIBUTE_PACKED ATTRIBUTE_ALIGNED(4)
Dmitry V. Levin9a0dd742014-09-22 00:17:42 +0000148#endif
149;
Dmitry V. Levinbabe7f62015-03-18 16:32:04 +0000150#if defined AARCH64 || defined ARM
151/* See arch/arm/kernel/sys_oabi-compat.c for details. */
152# define COMPAT_STATFS64_PADDED_SIZE (sizeof(struct compat_statfs64) + 4)
153#endif
Dmitry V. Levin9a0dd742014-09-22 00:17:42 +0000154
155static void
156printcompat_statfs64(struct tcb *tcp, const long addr)
157{
158 struct compat_statfs64 statbuf;
159
Dmitry V. Levinfd55b542015-07-16 23:32:12 +0000160 if (umove_or_printaddr(tcp, addr, &statbuf))
Dmitry V. Levin9a0dd742014-09-22 00:17:42 +0000161 return;
Dmitry V. Levin9a0dd742014-09-22 00:17:42 +0000162 tprintf("{f_type=%s, f_bsize=%lu, f_blocks=%llu, f_bfree=%llu, ",
163 sprintfstype(statbuf.f_type),
164 (unsigned long)statbuf.f_bsize,
165 (unsigned long long)statbuf.f_blocks,
166 (unsigned long long)statbuf.f_bfree);
167 tprintf("f_bavail=%llu, f_files=%llu, f_ffree=%llu, f_fsid={%d, %d}",
168 (unsigned long long)statbuf.f_bavail,
169 (unsigned long long)statbuf.f_files,
170 (unsigned long long)statbuf.f_ffree,
171 statbuf.f_fsid.__val[0], statbuf.f_fsid.__val[1]);
172 tprintf(", f_namelen=%lu", (unsigned long)statbuf.f_namelen);
173 tprintf(", f_frsize=%lu", (unsigned long)statbuf.f_frsize);
174 tprintf(", f_flags=%lu}", (unsigned long)statbuf.f_frsize);
175}
176
Dmitry V. Levinbabe7f62015-03-18 16:32:04 +0000177static int
178do_statfs64_fstatfs64(struct tcb *tcp)
Dmitry V. Levin9a0dd742014-09-22 00:17:42 +0000179{
180 if (entering(tcp)) {
Dmitry V. Levin9a0dd742014-09-22 00:17:42 +0000181 tprintf(", %lu, ", tcp->u_arg[1]);
182 } else {
183 if (tcp->u_arg[1] == sizeof(struct statfs64))
184 printstatfs64(tcp, tcp->u_arg[2]);
Dmitry V. Levinbabe7f62015-03-18 16:32:04 +0000185 else if (tcp->u_arg[1] == sizeof(struct compat_statfs64)
186#ifdef COMPAT_STATFS64_PADDED_SIZE
187 || tcp->u_arg[1] == COMPAT_STATFS64_PADDED_SIZE
188#endif
189 )
Dmitry V. Levin9a0dd742014-09-22 00:17:42 +0000190 printcompat_statfs64(tcp, tcp->u_arg[2]);
191 else
192 tprints("{???}");
193 }
194 return 0;
195}
196
Dmitry V. Levina0bd3742015-04-07 01:36:50 +0000197SYS_FUNC(statfs64)
Dmitry V. Levinbabe7f62015-03-18 16:32:04 +0000198{
199 if (entering(tcp))
200 printpath(tcp, tcp->u_arg[0]);
201 return do_statfs64_fstatfs64(tcp);
202}
203
Dmitry V. Levina0bd3742015-04-07 01:36:50 +0000204SYS_FUNC(fstatfs64)
Dmitry V. Levin9a0dd742014-09-22 00:17:42 +0000205{
Dmitry V. Levinbabe7f62015-03-18 16:32:04 +0000206 if (entering(tcp))
Dmitry V. Levin9a0dd742014-09-22 00:17:42 +0000207 printfd(tcp, tcp->u_arg[0]);
Dmitry V. Levinbabe7f62015-03-18 16:32:04 +0000208 return do_statfs64_fstatfs64(tcp);
Dmitry V. Levin9a0dd742014-09-22 00:17:42 +0000209}
Dmitry V. Levin9e6a7bf2015-01-08 04:12:29 +0000210#endif /* HAVE_STRUCT_STATFS64 */
Dmitry V. Levin9a0dd742014-09-22 00:17:42 +0000211
212#ifdef ALPHA
Dmitry V. Levina0bd3742015-04-07 01:36:50 +0000213SYS_FUNC(osf_statfs)
Dmitry V. Levin9a0dd742014-09-22 00:17:42 +0000214{
215 if (entering(tcp)) {
216 printpath(tcp, tcp->u_arg[0]);
217 tprints(", ");
218 } else {
219 printstatfs(tcp, tcp->u_arg[1]);
220 tprintf(", %lu", tcp->u_arg[2]);
221 }
222 return 0;
223}
224
Dmitry V. Levina0bd3742015-04-07 01:36:50 +0000225SYS_FUNC(osf_fstatfs)
Dmitry V. Levin9a0dd742014-09-22 00:17:42 +0000226{
227 if (entering(tcp)) {
228 tprintf("%lu, ", tcp->u_arg[0]);
229 } else {
230 printstatfs(tcp, tcp->u_arg[1]);
231 tprintf(", %lu", tcp->u_arg[2]);
232 }
233 return 0;
234}
235#endif /* ALPHA */