2000-02-08 19:58:47 +00:00
|
|
|
/* vi: set sw=4 ts=4: */
|
1999-10-20 22:08:37 +00:00
|
|
|
/*
|
|
|
|
* Mini df implementation for busybox
|
|
|
|
*
|
2004-03-15 08:29:22 +00:00
|
|
|
* Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
|
1999-10-20 22:08:37 +00:00
|
|
|
* based on original code by (I think) Bruce Perens <bruce@pixar.com>.
|
|
|
|
*
|
2006-05-19 19:29:19 +00:00
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
1999-10-20 22:08:37 +00:00
|
|
|
*/
|
|
|
|
|
2003-03-19 09:13:01 +00:00
|
|
|
/* BB_AUDIT SUSv3 _NOT_ compliant -- options -P and -t missing. Also blocksize. */
|
|
|
|
/* http://www.opengroup.org/onlinepubs/007904975/utilities/df.html */
|
|
|
|
|
|
|
|
/* Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org)
|
|
|
|
*
|
|
|
|
* Size reduction. Removed floating point dependency. Added error checking
|
2004-04-14 17:51:38 +00:00
|
|
|
* on output. Output stats on 0-sized filesystems if specifically listed on
|
2003-03-19 09:13:01 +00:00
|
|
|
* the command line. Properly round *-blocks, Used, and Available quantities.
|
|
|
|
*/
|
|
|
|
|
1999-10-05 16:24:54 +00:00
|
|
|
#include <mntent.h>
|
|
|
|
#include <sys/vfs.h>
|
2007-05-26 19:00:18 +00:00
|
|
|
#include "libbb.h"
|
1999-10-05 16:24:54 +00:00
|
|
|
|
2007-08-13 10:36:25 +00:00
|
|
|
#if !ENABLE_FEATURE_HUMAN_READABLE
|
2007-08-13 12:27:49 +00:00
|
|
|
static unsigned long kscale(unsigned long b, unsigned long bs)
|
2003-03-19 09:13:01 +00:00
|
|
|
{
|
2007-08-13 12:27:49 +00:00
|
|
|
return (b * (unsigned long long) bs + 1024/2) / 1024;
|
2003-03-19 09:13:01 +00:00
|
|
|
}
|
2001-01-22 22:35:38 +00:00
|
|
|
#endif
|
1999-10-05 16:24:54 +00:00
|
|
|
|
2007-10-11 10:05:36 +00:00
|
|
|
int df_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2006-03-06 20:47:33 +00:00
|
|
|
int df_main(int argc, char **argv)
|
1999-10-05 16:24:54 +00:00
|
|
|
{
|
2007-08-13 12:27:49 +00:00
|
|
|
unsigned long blocks_used;
|
|
|
|
unsigned blocks_percent_used;
|
|
|
|
#if ENABLE_FEATURE_HUMAN_READABLE
|
|
|
|
unsigned df_disp_hr = 1024;
|
2001-02-20 21:52:49 +00:00
|
|
|
#endif
|
2000-12-06 15:55:23 +00:00
|
|
|
int status = EXIT_SUCCESS;
|
2006-10-03 21:00:06 +00:00
|
|
|
unsigned opt;
|
2003-03-19 09:13:01 +00:00
|
|
|
FILE *mount_table;
|
|
|
|
struct mntent *mount_entry;
|
|
|
|
struct statfs s;
|
2007-08-12 20:58:27 +00:00
|
|
|
/* default display is kilobytes */
|
2007-08-13 12:27:49 +00:00
|
|
|
const char *disp_units_hdr = "1k-blocks";
|
2001-01-22 22:35:38 +00:00
|
|
|
|
2007-11-15 07:02:55 +00:00
|
|
|
enum {
|
2007-11-15 09:02:12 +00:00
|
|
|
OPT_ALL = (1 << 0),
|
|
|
|
OPT_INODE = (ENABLE_FEATURE_HUMAN_READABLE ? (1 << 4) : (1 << 2))
|
2007-11-15 07:02:55 +00:00
|
|
|
* ENABLE_FEATURE_DF_INODE
|
|
|
|
};
|
|
|
|
|
2007-08-13 12:27:49 +00:00
|
|
|
#if ENABLE_FEATURE_HUMAN_READABLE
|
2006-10-03 21:00:06 +00:00
|
|
|
opt_complementary = "h-km:k-hm:m-hk";
|
2007-11-15 09:02:12 +00:00
|
|
|
opt = getopt32(argv, "ahmk" USE_FEATURE_DF_INODE("i"));
|
|
|
|
if (opt & (1 << 1)) { // -h
|
2006-10-26 23:21:47 +00:00
|
|
|
df_disp_hr = 0;
|
|
|
|
disp_units_hdr = " Size";
|
2003-06-20 09:01:58 +00:00
|
|
|
}
|
2007-11-15 09:02:12 +00:00
|
|
|
if (opt & (1 << 2)) { // -m
|
2006-10-27 09:05:02 +00:00
|
|
|
df_disp_hr = 1024*1024;
|
2006-10-26 23:21:47 +00:00
|
|
|
disp_units_hdr = "1M-blocks";
|
2001-01-22 22:35:38 +00:00
|
|
|
}
|
2007-11-15 07:02:55 +00:00
|
|
|
if (opt & OPT_INODE) {
|
|
|
|
disp_units_hdr = " Inodes";
|
|
|
|
}
|
2003-06-20 09:01:58 +00:00
|
|
|
#else
|
2007-11-15 09:02:12 +00:00
|
|
|
opt = getopt32(argv, "ak" USE_FEATURE_DF_INODE("i"));
|
2003-06-20 09:01:58 +00:00
|
|
|
#endif
|
2000-12-06 15:55:23 +00:00
|
|
|
|
2007-11-15 09:02:12 +00:00
|
|
|
printf("Filesystem %-15sUsed Available Use%% Mounted on\n",
|
|
|
|
disp_units_hdr);
|
1999-10-20 22:08:37 +00:00
|
|
|
|
2003-03-19 09:13:01 +00:00
|
|
|
mount_table = NULL;
|
|
|
|
argv += optind;
|
|
|
|
if (optind >= argc) {
|
2006-10-26 23:21:47 +00:00
|
|
|
mount_table = setmntent(bb_path_mtab_file, "r");
|
|
|
|
if (!mount_table) {
|
2003-03-19 09:13:01 +00:00
|
|
|
bb_perror_msg_and_die(bb_path_mtab_file);
|
2000-02-08 19:58:47 +00:00
|
|
|
}
|
2003-03-19 09:13:01 +00:00
|
|
|
}
|
1999-10-20 22:08:37 +00:00
|
|
|
|
2007-08-13 12:27:49 +00:00
|
|
|
while (1) {
|
2003-03-19 09:13:01 +00:00
|
|
|
const char *device;
|
|
|
|
const char *mount_point;
|
1999-10-06 20:25:32 +00:00
|
|
|
|
2003-03-19 09:13:01 +00:00
|
|
|
if (mount_table) {
|
2006-10-26 23:21:47 +00:00
|
|
|
mount_entry = getmntent(mount_table);
|
|
|
|
if (!mount_entry) {
|
2003-03-19 09:13:01 +00:00
|
|
|
endmntent(mount_table);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else {
|
2006-10-26 23:21:47 +00:00
|
|
|
mount_point = *argv++;
|
|
|
|
if (!mount_point) {
|
2003-03-19 09:13:01 +00:00
|
|
|
break;
|
|
|
|
}
|
2006-10-26 23:21:47 +00:00
|
|
|
mount_entry = find_mount_point(mount_point, bb_path_mtab_file);
|
|
|
|
if (!mount_entry) {
|
|
|
|
bb_error_msg("%s: can't find mount point", mount_point);
|
2006-12-31 18:57:37 +00:00
|
|
|
SET_ERROR:
|
2000-12-06 15:55:23 +00:00
|
|
|
status = EXIT_FAILURE;
|
2003-03-19 09:13:01 +00:00
|
|
|
continue;
|
|
|
|
}
|
2000-02-08 19:58:47 +00:00
|
|
|
}
|
1999-10-06 20:25:32 +00:00
|
|
|
|
2003-03-19 09:13:01 +00:00
|
|
|
device = mount_entry->mnt_fsname;
|
|
|
|
mount_point = mount_entry->mnt_dir;
|
|
|
|
|
|
|
|
if (statfs(mount_point, &s) != 0) {
|
2007-10-01 11:58:38 +00:00
|
|
|
bb_simple_perror_msg(mount_point);
|
2003-03-19 09:13:01 +00:00
|
|
|
goto SET_ERROR;
|
|
|
|
}
|
2004-03-15 08:29:22 +00:00
|
|
|
|
2007-11-15 09:02:12 +00:00
|
|
|
if ((s.f_blocks > 0) || !mount_table || (opt & OPT_ALL)) {
|
2007-11-15 07:02:55 +00:00
|
|
|
if (opt & OPT_INODE) {
|
|
|
|
s.f_blocks = s.f_files;
|
|
|
|
s.f_bavail = s.f_bfree = s.f_ffree;
|
|
|
|
s.f_bsize = 1;
|
|
|
|
#if ENABLE_FEATURE_HUMAN_READABLE
|
|
|
|
if (df_disp_hr)
|
|
|
|
df_disp_hr = 1;
|
|
|
|
#endif
|
|
|
|
}
|
2003-03-19 09:13:01 +00:00
|
|
|
blocks_used = s.f_blocks - s.f_bfree;
|
|
|
|
blocks_percent_used = 0;
|
|
|
|
if (blocks_used + s.f_bavail) {
|
2007-08-13 12:27:49 +00:00
|
|
|
blocks_percent_used = (blocks_used * 100ULL
|
2006-10-26 23:21:47 +00:00
|
|
|
+ (blocks_used + s.f_bavail)/2
|
|
|
|
) / (blocks_used + s.f_bavail);
|
2003-03-19 09:13:01 +00:00
|
|
|
}
|
2004-03-15 08:29:22 +00:00
|
|
|
|
2007-11-15 09:02:12 +00:00
|
|
|
#ifdef WHY_IT_SHOULD_BE_HIDDEN
|
2003-06-20 09:36:49 +00:00
|
|
|
if (strcmp(device, "rootfs") == 0) {
|
|
|
|
continue;
|
2007-11-15 07:02:55 +00:00
|
|
|
}
|
2007-11-15 09:02:12 +00:00
|
|
|
#endif
|
|
|
|
#ifdef WHY_WE_DO_IT_FOR_DEV_ROOT_ONLY
|
|
|
|
/* ... and also this is the only user of find_block_device */
|
2007-11-15 07:02:55 +00:00
|
|
|
if (strcmp(device, "/dev/root") == 0) {
|
2003-03-19 09:13:01 +00:00
|
|
|
/* Adjusts device to be the real root device,
|
|
|
|
* or leaves device alone if it can't find it */
|
2006-10-26 23:21:47 +00:00
|
|
|
device = find_block_device("/");
|
|
|
|
if (!device) {
|
2003-03-19 09:13:01 +00:00
|
|
|
goto SET_ERROR;
|
|
|
|
}
|
|
|
|
}
|
2007-11-15 09:02:12 +00:00
|
|
|
#endif
|
2004-03-15 08:29:22 +00:00
|
|
|
|
2007-08-13 12:27:49 +00:00
|
|
|
if (printf("\n%-20s" + 1, device) > 20)
|
|
|
|
printf("\n%-20s", "");
|
2007-08-13 10:36:25 +00:00
|
|
|
#if ENABLE_FEATURE_HUMAN_READABLE
|
2007-08-13 12:27:49 +00:00
|
|
|
printf(" %9s ",
|
2006-10-26 23:21:47 +00:00
|
|
|
make_human_readable_str(s.f_blocks, s.f_bsize, df_disp_hr));
|
2004-03-15 08:29:22 +00:00
|
|
|
|
2007-08-13 12:27:49 +00:00
|
|
|
printf(" %9s " + 1,
|
|
|
|
make_human_readable_str((s.f_blocks - s.f_bfree),
|
2006-10-26 23:21:47 +00:00
|
|
|
s.f_bsize, df_disp_hr));
|
2004-03-15 08:29:22 +00:00
|
|
|
|
2007-08-13 12:27:49 +00:00
|
|
|
printf("%9s %3u%% %s\n",
|
|
|
|
make_human_readable_str(s.f_bavail, s.f_bsize, df_disp_hr),
|
|
|
|
blocks_percent_used, mount_point);
|
2003-03-19 09:13:01 +00:00
|
|
|
#else
|
2007-08-13 12:27:49 +00:00
|
|
|
printf(" %9lu %9lu %9lu %3u%% %s\n",
|
|
|
|
kscale(s.f_blocks, s.f_bsize),
|
|
|
|
kscale(s.f_blocks-s.f_bfree, s.f_bsize),
|
|
|
|
kscale(s.f_bavail, s.f_bsize),
|
|
|
|
blocks_percent_used, mount_point);
|
2003-03-19 09:13:01 +00:00
|
|
|
#endif
|
|
|
|
}
|
2007-08-13 12:27:49 +00:00
|
|
|
}
|
2003-03-19 09:13:01 +00:00
|
|
|
|
2006-10-26 23:21:47 +00:00
|
|
|
fflush_stdout_and_exit(status);
|
1999-10-20 22:08:37 +00:00
|
|
|
}
|