ubase/df.c
sin 005e90a7ff Use mntent in df(1)
I am slowly going to remove grabmntinfo and friends.
2014-02-15 18:27:39 +00:00

70 lines
1.3 KiB
C

/* See LICENSE file for copyright and license details. */
#include <mntent.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/statvfs.h>
#include "util.h"
static void mnt_show(const char *fsname, const char *dir);
static void
usage(void)
{
eprintf("usage: %s [-a]\n", argv0);
}
int
main(int argc, char *argv[])
{
struct mntent *me = NULL;
FILE *fp;
ARGBEGIN {
case 'a':
break;
case 's':
case 'h':
case 'i':
eprintf("not implemented\n");
default:
usage();
} ARGEND;
printf("Filesystem 512-blocks Used Avail Capacity Mounted on\n");
fp = setmntent("/proc/mounts", "r");
if (!fp)
eprintf("setmntent %s:", "/proc/mounts");
while ((me = getmntent(fp)) != NULL)
mnt_show(me->mnt_fsname, me->mnt_dir);
endmntent(fp);
return EXIT_SUCCESS;
}
static void
mnt_show(const char *fsname, const char *dir)
{
struct statvfs s;
unsigned long long total, used, avail;
int capacity = 0;
int bs;
statvfs(dir, &s);
bs = s.f_frsize / 512;
total = s.f_blocks * bs;
avail = s.f_bfree * bs;
used = total - avail;
if (used + avail) {
capacity = (used * 100) / (used + avail);
if (used * 100 != capacity * (used + avail))
capacity++;
}
printf("%-12s %9llu %9llu %9llu %7d%% %s\n",
fsname, total, used, avail, capacity,
dir);
}