#include <sys/cdefs.h>
#ifndef lint
__COPYRIGHT(
"@(#) Copyright (c) 1980, 1990, 1993, 1994\
The Regents of the University of California. All rights reserved.");
#endif
#ifndef lint
#if 0
static char sccsid[] = "@(#)df.c 8.7 (Berkeley) 4/2/94";
#else
__RCSID("$NetBSD: df.c,v 1.107 2026/04/08 00:58:36 kim Exp $");
#endif
#endif
#include <sys/param.h>
#include <sys/stat.h>
#include <sys/mount.h>
#include <assert.h>
#include <err.h>
#include <errno.h>
#include <stdbool.h>
#include <fcntl.h>
#include <locale.h>
#include <util.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <util.h>
static char *getmntpt(const char *);
static void addstat(struct statvfs *, const struct statvfs *);
static void prtstat(const struct statvfs *, int);
static int selected(const char *, size_t);
static void maketypelist(char *);
static size_t regetmntinfo(struct statvfs **, size_t);
__dead static void usage(void);
static void prthumanval(bool, int64_t, int);
static void prthuman(const struct statvfs *, int64_t, int64_t);
static int aflag, cflag, fflag, gflag, hflag, iflag, lflag;
static int Mflag, Nflag, nflag, Pflag, qflag, Wflag;
static long usize;
static char **typelist;
static size_t mntcount;
#define WIDTH_BLKSIZE 12
#define WIDTH_INODE 10
static int blksize_width = WIDTH_BLKSIZE, inode_width = WIDTH_INODE;
static int fudgeunits = 0;
#define streq(a, b) (strcmp((a), (b)) == 0)
#define warnq(args) do { if (!qflag) warnx args; } while (0)
int
main(int argc, char *argv[])
{
struct stat stbuf;
struct statvfs *mntbuf, totals;
int ch, maxwidth, width;
size_t i;
char *mntpt;
setprogname(argv[0]);
(void)setlocale(LC_ALL, "");
(void)strpct_round(STRPCT_RAZ);
while ((ch = getopt(argc, argv, "abcfGgHhiklMmNnPqt:W")) != -1)
switch (ch) {
case 'a':
aflag = 1;
break;
case 'b':
hflag = 0;
usize = 512;
break;
case 'c':
cflag = 1;
break;
case 'f':
fflag = 1;
break;
case 'g':
hflag = 0;
usize = 1024 * 1024 * 1024;
break;
case 'G':
gflag = 1;
break;
case 'H':
fudgeunits = HN_DIVISOR_1000;
case 'h':
hflag = 1;
usize = 0;
break;
case 'i':
iflag = 1;
break;
case 'k':
hflag = 0;
usize = 1024;
break;
case 'l':
lflag = 1;
break;
case 'M':
Mflag = 1;
break;
case 'm':
hflag = 0;
usize = 1024 * 1024;
break;
case 'N':
Nflag = 1;
break;
case 'n':
nflag = 1;
break;
case 'P':
Pflag = 1;
break;
case 'q':
qflag = 1;
break;
case 'W':
Wflag = 1;
break;
case 't':
if (typelist != NULL)
errx(EXIT_FAILURE,
"only one -t option may be specified.");
maketypelist(optarg);
break;
case '?':
default:
usage();
}
if (fflag && (Pflag || gflag))
errx(EXIT_FAILURE,
"only one of -f -G and -P may be specified");
if (gflag && (Pflag || iflag))
errx(EXIT_FAILURE,
"only one of -G and -P or -i may be specified");
if (Pflag && iflag)
errx(EXIT_FAILURE,
"only one of -P and -i may be specified");
if (fflag)
Nflag = 1;
#if 0
if (Pflag && (hflag || (usize != 1024 && usize != 512)))
errx(EXIT_FAILURE,
"non-standard block size incompatible with -P");
#endif
argc -= optind;
argv += optind;
mntcount = getmntinfo(&mntbuf, MNT_NOWAIT);
if (mntcount == 0)
err(EXIT_FAILURE,
"retrieving information on mounted file systems");
if (*argv == NULL) {
mntcount = regetmntinfo(&mntbuf, mntcount);
} else {
if ((mntbuf = calloc(argc, sizeof(*mntbuf))) == NULL)
err(EXIT_FAILURE, "can't allocate statvfs array");
mntcount = 0;
for (; *argv != NULL; argv++) {
if (stat(*argv, &stbuf) < 0) {
if ((mntpt = getmntpt(*argv)) == 0) {
if (!qflag)
warn("%s", *argv);
continue;
}
} else if (S_ISBLK(stbuf.st_mode)) {
if ((mntpt = getmntpt(*argv)) == 0)
mntpt = *argv;
} else
mntpt = *argv;
if (!statvfs(mntpt, &mntbuf[mntcount])) {
if (Mflag &&
!streq(mntpt, mntbuf[mntcount].f_mntonname))
warnq(("%s is not a mount point",
mntpt));
else if (lflag &&
(mntbuf[mntcount].f_flag & MNT_LOCAL) == 0)
warnq(("Warning: %s is not a local %s",
*argv, "file system"));
else if
(!selected(mntbuf[mntcount].f_fstypename,
sizeof(mntbuf[mntcount].f_fstypename)))
warnq(("Warning: %s mounted as a %s %s",
*argv,
mntbuf[mntcount].f_fstypename,
"file system"));
else
++mntcount;
} else if (!qflag)
warn("%s", *argv);
}
}
if (cflag) {
memset(&totals, 0, sizeof(totals));
totals.f_frsize = DEV_BSIZE;
strlcpy(totals.f_mntfromname, "total",
sizeof(totals.f_mntfromname));
}
maxwidth = 0;
for (i = 0; i < mntcount; i++) {
width = 0;
if (Wflag && mntbuf[i].f_mntfromlabel[0]) {
width = (int)strlen(mntbuf[i].f_mntfromlabel) + 5;
}
if (width == 0)
width = (int)strlen(mntbuf[i].f_mntfromname);
if (width > maxwidth)
maxwidth = width;
if (cflag)
addstat(&totals, &mntbuf[i]);
}
if (cflag == 0 || fflag == 0)
for (i = 0; i < mntcount; i++)
prtstat(&mntbuf[i], maxwidth);
mntcount = fflag;
if (cflag)
prtstat(&totals, maxwidth);
return 0;
}
static char *
getmntpt(const char *name)
{
size_t count, i;
struct statvfs *mntbuf;
count = getmntinfo(&mntbuf, MNT_NOWAIT);
if (count == 0)
err(EXIT_FAILURE, "Can't get mount information");
for (i = 0; i < count; i++) {
if (streq(mntbuf[i].f_mntfromname, name))
return mntbuf[i].f_mntonname;
}
return 0;
}
static enum { IN_LIST, NOT_IN_LIST } which;
static int
selected(const char *type, size_t len)
{
char **av;
if (typelist == NULL)
return 1;
for (av = typelist; *av != NULL; ++av)
if (!strncmp(type, *av, len))
return which == IN_LIST ? 1 : 0;
return which == IN_LIST ? 0 : 1;
}
static void
maketypelist(char *fslist)
{
size_t i;
char *nextcp, **av;
if ((fslist == NULL) || (fslist[0] == '\0'))
errx(EXIT_FAILURE, "empty type list");
if (fslist[0] == 'n' && fslist[1] == 'o') {
fslist += 2;
which = NOT_IN_LIST;
} else
which = IN_LIST;
for (i = 1, nextcp = fslist;
(nextcp = strchr(nextcp, ',')) != NULL; i++)
++nextcp;
if ((av = typelist = calloc((i + 1), sizeof(*av))) == NULL)
err(EXIT_FAILURE, "can't allocate type array");
av[0] = fslist;
for (i = 1, nextcp = fslist;
(nextcp = strchr(nextcp, ',')) != NULL; i++) {
*nextcp = '\0';
av[i] = ++nextcp;
}
av[i] = NULL;
}
static size_t
regetmntinfo(struct statvfs **mntbufp, size_t count)
{
size_t i, j;
struct statvfs *mntbuf;
if (!lflag && typelist == NULL && aflag)
return nflag ? count : (size_t)getmntinfo(mntbufp, MNT_WAIT);
mntbuf = *mntbufp;
j = 0;
for (i = 0; i < count; i++) {
if (!aflag && (mntbuf[i].f_flag & MNT_IGNORE) != 0)
continue;
if (lflag && (mntbuf[i].f_flag & MNT_LOCAL) == 0)
continue;
if (!selected(mntbuf[i].f_fstypename,
sizeof(mntbuf[i].f_fstypename)))
continue;
if (nflag)
mntbuf[j] = mntbuf[i];
else {
struct statvfs layerbuf = mntbuf[i];
(void)statvfs(mntbuf[i].f_mntonname, &mntbuf[j]);
if (memcmp(layerbuf.f_mntfromname,
mntbuf[j].f_mntfromname, MNAMELEN))
mntbuf[j] = layerbuf;
}
j++;
}
return j;
}
static void
prthumanval(bool bytes, int64_t value, int width)
{
char buf[6];
(void)humanize_number(buf, sizeof(buf) - (value < 0 ? 0 : 1),
value, "", HN_AUTOSCALE,
(bytes ? HN_B : HN_DIVISOR_1000) |
HN_NOSPACE | HN_DECIMAL | fudgeunits);
(void)printf("%*s", width, buf);
}
static void
prthuman(const struct statvfs *sfsp, int64_t used, int64_t bavail)
{
prthumanval(true,
(int64_t)(sfsp->f_blocks * sfsp->f_frsize),
blksize_width);
prthumanval(true,
(int64_t)(used * sfsp->f_frsize),
1 + blksize_width);
prthumanval(true,
(int64_t)(bavail * sfsp->f_frsize),
1 + blksize_width);
}
#define fsbtoblk(num, fsbs, bs) \
(((fsbs) != 0 && (uint64_t)(fsbs) < (uint64_t)(bs)) ? \
(int64_t)(num) / (int64_t)((bs) / (fsbs)) : \
(int64_t)(num) * (int64_t)((fsbs) / (bs)))
static void
addstat(struct statvfs *totalfsp, const struct statvfs *sfsp)
{
uint64_t frsize;
frsize = sfsp->f_frsize / totalfsp->f_frsize;
totalfsp->f_blocks += sfsp->f_blocks * frsize;
totalfsp->f_bfree += sfsp->f_bfree * frsize;
totalfsp->f_bavail += sfsp->f_bavail * frsize;
totalfsp->f_bresvd += sfsp->f_bresvd * frsize;
totalfsp->f_files += sfsp->f_files;
totalfsp->f_ffree += sfsp->f_ffree;
totalfsp->f_favail += sfsp->f_favail;
totalfsp->f_fresvd += sfsp->f_fresvd;
}
static void
prtstat(const struct statvfs *sfsp, int maxwidth)
{
static long blocksize;
static int headerlen, timesthrough;
static const char *header;
static const char full[] = "100";
static const char empty[] = " 0";
int64_t used, availblks, inodes;
int64_t bavail;
char pb[64];
char mntfromname[sizeof(sfsp->f_mntfromname) + 10];
if (Wflag && sfsp->f_mntfromlabel[0]) {
snprintf(mntfromname, sizeof(mntfromname), "NAME=%s",
sfsp->f_mntfromlabel);
} else {
strlcpy(mntfromname, sfsp->f_mntfromname, sizeof(mntfromname));
}
if (gflag) {
(void)printf("%10s (%-12s): %7ld block size %12ld frag size\n",
sfsp->f_mntonname, mntfromname,
sfsp->f_bsize,
sfsp->f_frsize);
(void)printf("%10" PRId64 " total blocks %10" PRId64
" free blocks %10" PRId64 " available\n",
(uint64_t)sfsp->f_blocks, (uint64_t)sfsp->f_bfree,
(uint64_t)sfsp->f_bavail);
(void)printf("%10" PRId64 " total files %10" PRId64
" free files %12lx filesys id\n",
(uint64_t)sfsp->f_files, (uint64_t)sfsp->f_ffree,
sfsp->f_fsid);
(void)printf("%10s fstype %#15lx flag %17ld filename "
"length\n", sfsp->f_fstypename, sfsp->f_flag,
sfsp->f_namemax);
(void)printf("%10lu owner %17" PRId64 " syncwrites %12" PRId64
" asyncwrites\n\n", (unsigned long)sfsp->f_owner,
sfsp->f_syncwrites, sfsp->f_asyncwrites);
return;
}
if (maxwidth < 12)
maxwidth = 12;
if (++timesthrough == 1) {
switch (blocksize = usize) {
case 512:
header = "512-blocks";
headerlen = (int)strlen(header);
break;
case 1024:
header = Pflag ? "1024-blocks" : "1K-blocks";
headerlen = (int)strlen(header);
break;
case 1024 * 1024:
header = "1M-blocks";
headerlen = (int)strlen(header);
break;
case 1024 * 1024 * 1024:
header = "1G-blocks";
headerlen = (int)strlen(header);
break;
default:
if (hflag) {
header = "Size";
headerlen = (int)strlen(header);
blksize_width = inode_width = 6;
} else
header = getbsize(&headerlen, &blocksize);
break;
}
if (blocksize >= 1024 * 1024)
blksize_width -= 3;
if (blocksize >= 1024 * 1024 * 1024)
blksize_width -= 3;
if (blksize_width < headerlen)
blksize_width = headerlen;
if (Pflag) {
if (blocksize != 1024 && blocksize != 512)
errx(EXIT_FAILURE,
"non-standard block size incompatible with -P");
(void)printf("Filesystem %s Used Available Capacity "
"Mounted on\n", header);
} else if (!Nflag) {
(void)printf("%-*.*s %*s %*s %*s %%Cap",
maxwidth, maxwidth, "Filesystem",
blksize_width, header,
blksize_width, "Used",
blksize_width, "Avail");
if (iflag) {
(void)printf(" %*s %*s %%iCap",
inode_width, "iUsed",
inode_width, "iAvail");
}
(void)printf(" Mounted on\n");
}
}
used = sfsp->f_blocks - sfsp->f_bfree;
bavail = sfsp->f_bfree - sfsp->f_bresvd;
availblks = bavail + used;
if (Pflag) {
assert(hflag == 0);
assert(blocksize > 0);
(void)printf("%s %" PRId64 " %" PRId64 " %" PRId64 " %s%% %s\n",
mntfromname,
fsbtoblk(sfsp->f_blocks, sfsp->f_frsize, blocksize),
fsbtoblk(used, sfsp->f_frsize, blocksize),
fsbtoblk(bavail, sfsp->f_frsize, blocksize),
availblks == 0 ? full : strspct(pb, sizeof(pb), used,
availblks, 0), sfsp->f_mntonname);
return;
}
if (fflag) {
if (iflag)
(void)printf("%jd", sfsp->f_ffree);
else if (hflag)
prthumanval(true, bavail * sfsp->f_frsize, 1);
else
(void)printf("%jd", fsbtoblk(bavail,
sfsp->f_frsize, blocksize));
if (mntcount != 1)
(void)printf(" %s\n", sfsp->f_mntonname);
else
(void)printf("\n");
return;
}
(void)printf("%-*.*s ", maxwidth, maxwidth, mntfromname);
if (hflag)
prthuman(sfsp, used, bavail);
else
(void)printf("%*" PRId64 " %*" PRId64 " %*" PRId64,
blksize_width,
fsbtoblk(sfsp->f_blocks, sfsp->f_frsize, blocksize),
blksize_width, fsbtoblk(used, sfsp->f_frsize, blocksize),
blksize_width, fsbtoblk(bavail, sfsp->f_frsize, blocksize));
(void)printf(" %3s%%",
availblks == 0 ? full :
strspct(pb, sizeof(pb), used, availblks, 0));
if (iflag) {
inodes = sfsp->f_files;
used = inodes - sfsp->f_ffree;
if (hflag) {
prthumanval(false,
(int64_t)used,
1 + inode_width);
prthumanval(false,
(int64_t)sfsp->f_ffree,
1 + inode_width);
} else
(void)printf(" %*jd %*jd",
inode_width, (intmax_t)used,
inode_width, (intmax_t)sfsp->f_ffree);
(void)printf(" %4s%%",
inodes == 0 ? (used == 0 ? empty : full) :
strspct(pb, sizeof(pb), used, inodes, 0));
}
(void)printf(" %s\n", sfsp->f_mntonname);
}
static void
usage(void)
{
(void)fprintf(stderr,
"Usage: %s [-aclMnqW] [-G|-bkP|-bfgHhikmN] [-t type] [file | "
"file_system]...\n",
getprogname());
exit(1);
}