2 * Copyright (c) 1980, 1990, 1993, 1994
3 * The Regents of the University of California. All rights reserved.
4 * (c) UNIX System Laboratories, Inc.
5 * All or some portions of this file are derived from material licensed
6 * to the University of California by American Telephone and Telegraph
7 * Co. or Unix System Laboratories, Inc. and are reproduced herein with
8 * the permission of UNIX System Laboratories, Inc.
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 3. All advertising materials mentioning features or use of this software
19 * must display the following acknowledgement:
20 * This product includes software developed by the University of
21 * California, Berkeley and its contributors.
22 * 4. Neither the name of the University nor the names of its contributors
23 * may be used to endorse or promote products derived from this software
24 * without specific prior written permission.
26 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
27 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
30 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
38 * @(#) Copyright (c) 1980, 1990, 1993, 1994 The Regents of the University of California. All rights reserved.
39 * @(#)df.c 8.9 (Berkeley) 5/8/95
40 * $FreeBSD: src/bin/df/df.c,v 1.23.2.9 2002/07/01 00:14:24 iedowse Exp $
41 * $DragonFly: src/bin/df/df.c,v 1.13 2008/08/07 09:59:49 swildner Exp $
44 #include <sys/cdefs.h>
45 #include <sys/param.h>
47 #include <sys/mount.h>
48 #include <sys/sysctl.h>
49 #include <sys/statvfs.h>
51 #include <vfs/ufs/dinode.h>
52 #include <vfs/ufs/fs.h>
53 #include <vfs/ufs/ufsmount.h>
69 /* Maximum widths of various fields. */
79 int bread(off_t
, void *, int);
80 int checkvfsname(const char *, char **);
81 char *getmntpt(char *);
82 int quadwidth(int64_t);
83 char *makenetvfslist(void);
84 char **makevfslist(char *);
85 void prthuman(struct statvfs
*, int64_t);
86 void prthumanval(int64_t);
87 void prtstat(struct statfs
*, struct statvfs
*, struct maxwidths
*);
88 long regetmntinfo(struct statfs
**, struct statvfs
**, long, char **);
89 int ufs_df(char *, struct maxwidths
*);
90 void update_maxwidths(struct maxwidths
*, struct statfs
*, struct statvfs
*);
93 int aflag
= 0, hflag
, iflag
, nflag
;
99 return (a
> b
? a
: b
);
102 static __inline
int64_t
103 qmax(int64_t a
, int64_t b
)
105 return (a
> b
? a
: b
);
109 main(int argc
, char **argv
)
112 struct statfs statfsbuf
, *mntbuf
;
113 struct statvfs statvfsbuf
, *mntvbuf
;
114 struct maxwidths maxwidths
;
116 char *mntpath
, *mntpt
, **vfslist
;
123 while ((ch
= getopt(argc
, argv
, "abgHhiklmnPt:")) != -1)
131 if (setenv("BLOCKSIZE", "512", 1) != 0)
132 warn("setenv: cannot set BLOCKSIZE=512");
136 if (setenv("BLOCKSIZE", "1g", 1) != 0)
137 warn("setenv: cannot set BLOCKSIZE=1g");
150 if (setenv("BLOCKSIZE", "1k", 1) != 0)
151 warn("setenv: cannot set BLOCKSIZE=1k");
156 errx(1, "-l and -t are mutually exclusive.");
157 vfslist
= makevfslist(makenetvfslist());
160 if (setenv("BLOCKSIZE", "1m", 1) != 0)
161 warn("setenv: cannot set BLOCKSIZE=1m");
169 errx(1, "only one -t option may be specified");
171 vfslist
= makevfslist(optarg
);
180 mntsize
= getmntvinfo(&mntbuf
, &mntvbuf
, MNT_NOWAIT
);
181 bzero(&maxwidths
, sizeof(maxwidths
));
182 for (i
= 0; i
< mntsize
; i
++)
183 update_maxwidths(&maxwidths
, &mntbuf
[i
], &mntvbuf
[i
]);
187 mntsize
= regetmntinfo(&mntbuf
, &mntvbuf
, mntsize
, vfslist
);
188 bzero(&maxwidths
, sizeof(maxwidths
));
189 for (i
= 0; i
< mntsize
; i
++)
190 update_maxwidths(&maxwidths
, &mntbuf
[i
], &mntvbuf
[i
]);
191 for (i
= 0; i
< mntsize
; i
++) {
192 if (aflag
|| (mntbuf
[i
].f_flags
& MNT_IGNORE
) == 0)
193 prtstat(&mntbuf
[i
], &mntvbuf
[i
], &maxwidths
);
198 for (; *argv
; argv
++) {
199 if (stat(*argv
, &stbuf
) < 0) {
200 if ((mntpt
= getmntpt(*argv
)) == 0) {
205 } else if (S_ISCHR(stbuf
.st_mode
)) {
206 if ((mntpt
= getmntpt(*argv
)) == 0) {
208 mntpath
= strdup("/tmp/df.XXXXXX");
209 if (mntpath
== NULL
) {
210 warn("strdup failed");
214 mntpt
= mkdtemp(mntpath
);
216 warn("mkdtemp(\"%s\") failed", mntpath
);
221 if (mount(fstype
, mntpt
, MNT_RDONLY
,
223 rv
= ufs_df(*argv
, &maxwidths
) || rv
;
227 } else if (statfs(mntpt
, &statfsbuf
) == 0 &&
228 statvfs(mntpt
, &statvfsbuf
) == 0) {
229 statfsbuf
.f_mntonname
[0] = '\0';
230 prtstat(&statfsbuf
, &statvfsbuf
, &maxwidths
);
243 * Statfs does not take a `wait' flag, so we cannot
244 * implement nflag here.
246 if (statfs(mntpt
, &statfsbuf
) < 0) {
251 if (statvfs(mntpt
, &statvfsbuf
) < 0) {
257 bzero(&maxwidths
, sizeof(maxwidths
));
258 update_maxwidths(&maxwidths
, &statfsbuf
, &statvfsbuf
);
260 prtstat(&statfsbuf
, &statvfsbuf
, &maxwidths
);
269 struct statfs
*mntbuf
;
270 struct statvfs
*mntvbuf
;
272 mntsize
= getmntvinfo(&mntbuf
, &mntvbuf
, MNT_NOWAIT
);
273 for (i
= 0; i
< mntsize
; i
++) {
274 if (!strcmp(mntbuf
[i
].f_mntfromname
, name
))
275 return (mntbuf
[i
].f_mntonname
);
281 * Make a pass over the filesystem info in ``mntbuf'' filtering out
282 * filesystem types not in vfslist and possibly re-stating to get
283 * current (not cached) info. Returns the new count of valid statfs bufs.
286 regetmntinfo(struct statfs
**mntbufp
, struct statvfs
**mntvbufp
, long mntsize
, char **vfslist
)
289 struct statfs
*mntbuf
;
290 struct statvfs
*mntvbuf
;
293 return (nflag
? mntsize
: getmntvinfo(mntbufp
, mntvbufp
, MNT_WAIT
));
297 for (j
= 0, i
= 0; i
< mntsize
; i
++) {
298 if (checkvfsname(mntbuf
[i
].f_fstypename
, vfslist
))
301 statfs(mntbuf
[i
].f_mntonname
,&mntbuf
[j
]);
302 statvfs(mntbuf
[i
].f_mntonname
,&mntvbuf
[j
]);
304 mntbuf
[j
] = mntbuf
[i
];
305 mntvbuf
[j
] = mntvbuf
[i
];
313 prthuman(struct statvfs
*vsfsp
, int64_t used
)
315 prthumanval(vsfsp
->f_blocks
* vsfsp
->f_bsize
);
316 prthumanval(used
* vsfsp
->f_bsize
);
317 prthumanval(vsfsp
->f_bavail
* vsfsp
->f_bsize
);
321 prthumanval(int64_t bytes
)
326 flags
= HN_B
| HN_NOSPACE
| HN_DECIMAL
;
327 if (hflag
== UNITS_SI
)
328 flags
|= HN_DIVISOR_1000
;
330 humanize_number(buf
, sizeof(buf
) - (bytes
< 0 ? 0 : 1),
331 bytes
, "", HN_AUTOSCALE
, flags
);
337 * Convert statfs returned filesystem size into BLOCKSIZE units.
338 * Attempts to avoid overflow for large filesystems.
341 fsbtoblk(int64_t num
, uint64_t bsize
, u_long reqbsize
)
343 if (bsize
!= 0 && bsize
< reqbsize
)
344 return (num
/ (intmax_t)(reqbsize
/ bsize
));
346 return (num
* (intmax_t)(bsize
/ reqbsize
));
350 * Print out status about a filesystem.
353 prtstat(struct statfs
*sfsp
, struct statvfs
*vsfsp
, struct maxwidths
*mwp
)
355 static long blocksize
;
356 static int headerlen
, timesthrough
;
357 static const char *header
;
358 int64_t used
, availblks
, inodes
;
360 if (++timesthrough
== 1) {
361 mwp
->mntfrom
= imax(mwp
->mntfrom
, strlen("Filesystem"));
364 mwp
->total
= mwp
->used
= mwp
->avail
= strlen(header
);
366 header
= getbsize(&headerlen
, &blocksize
);
367 mwp
->total
= imax(mwp
->total
, headerlen
);
369 mwp
->used
= imax(mwp
->used
, strlen("Used"));
370 mwp
->avail
= imax(mwp
->avail
, strlen("Avail"));
372 printf("%-*s %-*s %*s %*s Capacity", mwp
->mntfrom
,
373 "Filesystem", mwp
->total
, header
, mwp
->used
, "Used",
374 mwp
->avail
, "Avail");
376 mwp
->iused
= imax(mwp
->iused
, strlen(" iused"));
377 mwp
->ifree
= imax(mwp
->ifree
, strlen("ifree"));
378 printf(" %*s %*s %%iused", mwp
->iused
- 2,
379 "iused", mwp
->ifree
, "ifree");
381 printf(" Mounted on\n");
383 printf("%-*s", mwp
->mntfrom
, sfsp
->f_mntfromname
);
384 used
= vsfsp
->f_blocks
- vsfsp
->f_bfree
;
385 availblks
= vsfsp
->f_bavail
+ used
;
387 prthuman(vsfsp
, used
);
389 printf(" %*jd %*jd %*jd", mwp
->total
,
390 fsbtoblk(vsfsp
->f_blocks
, vsfsp
->f_bsize
, blocksize
),
391 mwp
->used
, fsbtoblk(used
, vsfsp
->f_bsize
, blocksize
),
392 mwp
->avail
, fsbtoblk(vsfsp
->f_bavail
, vsfsp
->f_bsize
,
396 availblks
== 0 ? 100.0 : (double)used
/ (double)availblks
* 100.0);
398 inodes
= vsfsp
->f_files
;
399 used
= inodes
- vsfsp
->f_ffree
;
400 printf(" %*jd %*jd %4.0f%% ", mwp
->iused
, (intmax_t)used
,
401 mwp
->ifree
, (intmax_t)vsfsp
->f_ffree
, inodes
== 0 ? 100.0 :
402 (double)used
/ (double)inodes
* 100.0);
405 printf(" %s\n", sfsp
->f_mntonname
);
409 * Update the maximum field-width information in `mwp' based on
410 * the filesystem specified by `sfsp'.
413 update_maxwidths(struct maxwidths
*mwp
, struct statfs
*sfsp
, struct statvfs
*vsfsp
)
415 static long blocksize
;
419 getbsize(&dummy
, &blocksize
);
421 mwp
->mntfrom
= imax(mwp
->mntfrom
, strlen(sfsp
->f_mntfromname
));
422 mwp
->total
= imax(mwp
->total
, quadwidth(fsbtoblk(vsfsp
->f_blocks
,
423 vsfsp
->f_bsize
, blocksize
)));
424 mwp
->used
= imax(mwp
->used
, quadwidth(fsbtoblk(vsfsp
->f_blocks
-
425 vsfsp
->f_bfree
, vsfsp
->f_bsize
, blocksize
)));
426 mwp
->avail
= imax(mwp
->avail
, quadwidth(fsbtoblk(vsfsp
->f_bavail
,
427 vsfsp
->f_bsize
, blocksize
)));
428 mwp
->iused
= imax(mwp
->iused
, quadwidth(vsfsp
->f_files
-
430 mwp
->ifree
= imax(mwp
->ifree
, quadwidth(vsfsp
->f_ffree
));
433 /* Return the width in characters of the specified long. */
435 quadwidth(int64_t val
)
440 /* Negative or zero values require one extra digit. */
453 * This code constitutes the pre-system call Berkeley df code for extracting
454 * information from filesystem superblocks.
461 #define sblock sb.iu_fs
466 ufs_df(char *file
, struct maxwidths
*mwp
)
468 struct statfs statfsbuf
;
469 struct statvfs statvfsbuf
;
471 struct statvfs
*vsfsp
;
478 if ((rfd
= open(file
, O_RDONLY
)) < 0) {
482 if (bread((off_t
)SBOFF
, &sblock
, SBSIZE
) == 0) {
489 strcpy(sfsp
->f_fstypename
, "ufs");
491 sfsp
->f_bsize
= vsfsp
->f_bsize
= sblock
.fs_fsize
;
492 sfsp
->f_iosize
= vsfsp
->f_frsize
= sblock
.fs_bsize
;
493 sfsp
->f_blocks
= vsfsp
->f_blocks
= sblock
.fs_dsize
;
494 sfsp
->f_bfree
= vsfsp
->f_bfree
=
495 sblock
.fs_cstotal
.cs_nbfree
* sblock
.fs_frag
+
496 sblock
.fs_cstotal
.cs_nffree
;
497 sfsp
->f_bavail
= vsfsp
->f_bavail
= freespace(&sblock
, sblock
.fs_minfree
);
498 sfsp
->f_files
= vsfsp
->f_files
= sblock
.fs_ncg
* sblock
.fs_ipg
;
499 sfsp
->f_ffree
= vsfsp
->f_ffree
= sblock
.fs_cstotal
.cs_nifree
;
500 sfsp
->f_fsid
.val
[0] = 0;
501 sfsp
->f_fsid
.val
[1] = 0;
502 if ((mntpt
= getmntpt(file
)) == 0)
504 memmove(&sfsp
->f_mntonname
[0], mntpt
, (size_t)MNAMELEN
);
505 memmove(&sfsp
->f_mntfromname
[0], file
, (size_t)MNAMELEN
);
506 prtstat(sfsp
, vsfsp
, mwp
);
512 bread(off_t off
, void *buf
, int cnt
)
516 lseek(rfd
, off
, SEEK_SET
);
517 if ((nr
= read(rfd
, buf
, (size_t)cnt
)) != (ssize_t
)cnt
) {
518 /* Probably a dismounted disk if errno == EIO. */
520 fprintf(stderr
, "\ndf: %lld: %s\n",
521 (long long)off
, strerror(nr
> 0 ? EIO
: errno
));
532 "usage: df [-b | -H | -h | -k | -m | -P] [-ailn] [-t type] [file | filesystem ...]\n");
539 char *str
, *strptr
, **listptr
;
540 int mib
[3], maxvfsconf
, cnt
=0, i
;
542 struct ovfsconf
*ptr
;
544 mib
[0] = CTL_VFS
; mib
[1] = VFS_GENERIC
; mib
[2] = VFS_MAXTYPENUM
;
545 miblen
=sizeof(maxvfsconf
);
546 if (sysctl(mib
, (unsigned int)(sizeof(mib
) / sizeof(mib
[0])),
547 &maxvfsconf
, &miblen
, NULL
, 0)) {
548 warnx("sysctl failed");
552 if ((listptr
= malloc(sizeof(char*) * maxvfsconf
)) == NULL
) {
553 warnx("malloc failed");
557 for (ptr
= getvfsent(); ptr
; ptr
= getvfsent())
558 if (ptr
->vfc_flags
& VFCF_NETWORK
) {
559 listptr
[cnt
++] = strdup(ptr
->vfc_name
);
560 if (listptr
[cnt
-1] == NULL
) {
561 warnx("malloc failed");
567 (str
= malloc(sizeof(char) * (32 * cnt
+ cnt
+ 2))) == NULL
) {
569 warnx("malloc failed");
574 *str
= 'n'; *(str
+ 1) = 'o';
575 for (i
= 0, strptr
= str
+ 2; i
< cnt
; i
++, strptr
++) {
576 strncpy(strptr
, listptr
[i
], 32);
577 strptr
+= strlen(listptr
[i
]);