1 /* fsusage.c -- return space usage of mounted filesystems
2 Copyright (C) 1991, 1992, 1996, 1998, 1999, 2002, 2003 Free Software
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2, or (at your option)
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software Foundation,
17 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
24 # include <inttypes.h>
31 # define UINTMAX_MAX ((uintmax_t) -1)
34 #include <sys/types.h>
46 # include <sys/param.h>
50 # include <sys/mount.h>
57 #if HAVE_SYS_FS_S5PARAM_H /* Fujitsu UXP/V */
58 # include <sys/fs/s5param.h>
61 #if defined HAVE_SYS_FILSYS_H && !defined _CRAY
62 # include <sys/filsys.h> /* SVR2 */
70 # include <sys/statfs.h>
73 #if HAVE_DUSTAT_H /* AIX PS/2 */
74 # include <sys/dustat.h>
77 #if HAVE_SYS_STATVFS_H /* SVR4 */
78 # include <sys/statvfs.h>
82 #include "full-read.h"
84 /* Many space usage primitives use all 1 bits to denote a value that is
85 not applicable or unknown. Propagate this information by returning
86 a uintmax_t value that is all 1 bits if X is all 1 bits, even if X
87 is unsigned and narrower than uintmax_t. */
88 #define PROPAGATE_ALL_ONES(x) \
89 ((sizeof (x) < sizeof (uintmax_t) \
90 && (~ (x) == (sizeof (x) < sizeof (int) \
91 ? - (1 << (sizeof (x) * CHAR_BIT)) \
95 /* Extract the top bit of X as an uintmax_t value. */
96 #define EXTRACT_TOP_BIT(x) ((x) \
97 & ((uintmax_t) 1 << (sizeof (x) * CHAR_BIT - 1)))
99 /* If a value is negative, many space usage primitives store it into an
100 integer variable by assignment, even if the variable's type is unsigned.
101 So, if a space usage variable X's top bit is set, convert X to the
102 uintmax_t value V such that (- (uintmax_t) V) is the negative of
103 the original value. If X's top bit is clear, just yield X.
104 Use PROPAGATE_TOP_BIT if the original value might be negative;
105 otherwise, use PROPAGATE_ALL_ONES. */
106 #define PROPAGATE_TOP_BIT(x) ((x) | ~ (EXTRACT_TOP_BIT (x) - 1))
108 /* Fill in the fields of FSP with information about space usage for
109 the filesystem on which PATH resides.
110 DISK is the device on which PATH is mounted, for space-getting
111 methods that need to know it.
112 Return 0 if successful, -1 if not. When returning -1, ensure that
113 ERRNO is either a system error value, or zero if DISK is NULL
114 on a system that requires a non-NULL value. */
116 get_fs_usage (const char *path
, const char *disk
, struct fs_usage
*fsp
)
118 #ifdef STAT_STATFS3_OSF1
122 if (statfs (path
, &fsd
, sizeof (struct statfs
)) != 0)
125 fsp
->fsu_blocksize
= PROPAGATE_ALL_ONES (fsd
.f_fsize
);
127 #endif /* STAT_STATFS3_OSF1 */
129 #ifdef STAT_STATFS2_FS_DATA /* Ultrix */
133 if (statfs (path
, &fsd
) != 1)
136 fsp
->fsu_blocksize
= 1024;
137 fsp
->fsu_blocks
= PROPAGATE_ALL_ONES (fsd
.fd_req
.btot
);
138 fsp
->fsu_bfree
= PROPAGATE_ALL_ONES (fsd
.fd_req
.bfree
);
139 fsp
->fsu_bavail
= PROPAGATE_TOP_BIT (fsd
.fd_req
.bfreen
);
140 fsp
->fsu_bavail_top_bit_set
= EXTRACT_TOP_BIT (fsd
.fd_req
.bfreen
) != 0;
141 fsp
->fsu_files
= PROPAGATE_ALL_ONES (fsd
.fd_req
.gtot
);
142 fsp
->fsu_ffree
= PROPAGATE_ALL_ONES (fsd
.fd_req
.gfree
);
144 #endif /* STAT_STATFS2_FS_DATA */
146 #ifdef STAT_READ_FILSYS /* SVR2 */
148 # define SUPERBOFF (SUPERB * 512)
160 fd
= open (disk
, O_RDONLY
);
163 lseek (fd
, (off_t
) SUPERBOFF
, 0);
164 if (full_read (fd
, (char *) &fsd
, sizeof fsd
) != sizeof fsd
)
171 fsp
->fsu_blocksize
= (fsd
.s_type
== Fs2b
? 1024 : 512);
172 fsp
->fsu_blocks
= PROPAGATE_ALL_ONES (fsd
.s_fsize
);
173 fsp
->fsu_bfree
= PROPAGATE_ALL_ONES (fsd
.s_tfree
);
174 fsp
->fsu_bavail
= PROPAGATE_TOP_BIT (fsd
.s_tfree
);
175 fsp
->fsu_bavail_top_bit_set
= EXTRACT_TOP_BIT (fsd
.s_tfree
) != 0;
176 fsp
->fsu_files
= (fsd
.s_isize
== -1
178 : (fsd
.s_isize
- 2) * INOPB
* (fsd
.s_type
== Fs2b
? 2 : 1));
179 fsp
->fsu_ffree
= PROPAGATE_ALL_ONES (fsd
.s_tinode
);
181 #endif /* STAT_READ_FILSYS */
183 #ifdef STAT_STATFS2_BSIZE /* 4.3BSD, SunOS 4, HP-UX, AIX */
187 if (statfs (path
, &fsd
) < 0)
190 fsp
->fsu_blocksize
= PROPAGATE_ALL_ONES (fsd
.f_bsize
);
192 # ifdef STATFS_TRUNCATES_BLOCK_COUNTS
194 /* In SunOS 4.1.2, 4.1.3, and 4.1.3_U1, the block counts in the
195 struct statfs are truncated to 2GB. These conditions detect that
196 truncation, presumably without botching the 4.1.1 case, in which
197 the values are not truncated. The correct counts are stored in
198 undocumented spare fields. */
199 if (fsd
.f_blocks
== 0x7fffffff / fsd
.f_bsize
&& fsd
.f_spare
[0] > 0)
201 fsd
.f_blocks
= fsd
.f_spare
[0];
202 fsd
.f_bfree
= fsd
.f_spare
[1];
203 fsd
.f_bavail
= fsd
.f_spare
[2];
205 # endif /* STATFS_TRUNCATES_BLOCK_COUNTS */
207 #endif /* STAT_STATFS2_BSIZE */
209 #ifdef STAT_STATFS2_FSIZE /* 4.4BSD */
213 if (statfs (path
, &fsd
) < 0)
216 fsp
->fsu_blocksize
= PROPAGATE_ALL_ONES (fsd
.f_fsize
);
218 #endif /* STAT_STATFS2_FSIZE */
220 #ifdef STAT_STATFS4 /* SVR3, Dynix, Irix, AIX */
222 # if !_AIX && !defined _SEQUENT_ && !defined DOLPHIN
223 # define f_bavail f_bfree
228 if (statfs (path
, &fsd
, sizeof fsd
, 0) < 0)
231 /* Empirically, the block counts on most SVR3 and SVR3-derived
232 systems seem to always be in terms of 512-byte blocks,
233 no matter what value f_bsize has. */
234 # if _AIX || defined _CRAY
235 fsp
->fsu_blocksize
= PROPAGATE_ALL_ONES (fsd
.f_bsize
);
237 fsp
->fsu_blocksize
= 512;
240 #endif /* STAT_STATFS4 */
242 #ifdef STAT_STATVFS /* SVR4 */
246 if (statvfs (path
, &fsd
) < 0)
249 /* f_frsize isn't guaranteed to be supported. */
250 fsp
->fsu_blocksize
= (fsd
.f_frsize
251 ? PROPAGATE_ALL_ONES (fsd
.f_frsize
)
252 : PROPAGATE_ALL_ONES (fsd
.f_bsize
));
254 #endif /* STAT_STATVFS */
256 #if !defined STAT_STATFS2_FS_DATA && !defined STAT_READ_FILSYS
257 /* !Ultrix && !SVR2 */
259 fsp
->fsu_blocks
= PROPAGATE_ALL_ONES (fsd
.f_blocks
);
260 fsp
->fsu_bfree
= PROPAGATE_ALL_ONES (fsd
.f_bfree
);
261 fsp
->fsu_bavail
= PROPAGATE_TOP_BIT (fsd
.f_bavail
);
262 fsp
->fsu_bavail_top_bit_set
= EXTRACT_TOP_BIT (fsd
.f_bavail
) != 0;
263 fsp
->fsu_files
= PROPAGATE_ALL_ONES (fsd
.f_files
);
264 fsp
->fsu_ffree
= PROPAGATE_ALL_ONES (fsd
.f_ffree
);
266 #endif /* not STAT_STATFS2_FS_DATA && not STAT_READ_FILSYS */
271 #if defined _AIX && defined _I386
272 /* AIX PS/2 does not supply statfs. */
275 statfs (char *path
, struct statfs
*fsb
)
280 if (stat (path
, &stats
))
282 if (dustat (stats
.st_dev
, 0, &fsd
, sizeof (fsd
)))
285 fsb
->f_bsize
= fsd
.du_bsize
;
286 fsb
->f_blocks
= fsd
.du_fsize
- fsd
.du_isize
;
287 fsb
->f_bfree
= fsd
.du_tfree
;
288 fsb
->f_bavail
= fsd
.du_tfree
;
289 fsb
->f_files
= (fsd
.du_isize
- 2) * fsd
.du_inopb
;
290 fsb
->f_ffree
= fsd
.du_tinode
;
291 fsb
->f_fsid
.val
[0] = fsd
.du_site
;
292 fsb
->f_fsid
.val
[1] = fsd
.du_pckno
;
296 #endif /* _AIX && _I386 */