hush/coreutils/df.c

150 lines
3.8 KiB
C
Raw Normal View History

/* vi: set sw=4 ts=4: */
1999-10-20 22:08:37 +00:00
/*
* Mini df implementation for busybox
*
* 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>.
*
* 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
* 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 <stdio.h>
#include <stdlib.h>
#include <string.h>
2003-03-19 09:13:01 +00:00
#include <unistd.h>
1999-10-05 16:24:54 +00:00
#include <mntent.h>
#include <sys/vfs.h>
#include "busybox.h"
1999-10-05 16:24:54 +00:00
2003-03-19 09:13:01 +00:00
#ifndef CONFIG_FEATURE_HUMAN_READABLE
static long kscale(long b, long bs)
{
return ( b * (long long) bs + KILOBYTE/2 ) / KILOBYTE;
}
#endif
1999-10-05 16:24:54 +00:00
int df_main(int argc, char **argv)
1999-10-05 16:24:54 +00:00
{
long blocks_used;
long blocks_percent_used;
#ifdef CONFIG_FEATURE_HUMAN_READABLE
unsigned long df_disp_hr = KILOBYTE;
2001-02-20 21:52:49 +00:00
#endif
2000-12-06 15:55:23 +00:00
int status = EXIT_SUCCESS;
unsigned long opt;
2003-03-19 09:13:01 +00:00
FILE *mount_table;
struct mntent *mount_entry;
struct statfs s;
2003-03-19 09:42:02 +00:00
static const char hdr_1k[] = "1k-blocks"; /* default display is kilobytes */
2003-03-19 09:13:01 +00:00
const char *disp_units_hdr = hdr_1k;
#ifdef CONFIG_FEATURE_HUMAN_READABLE
bb_opt_complementally = "h-km:k-hm:m-hk";
opt = bb_getopt_ulflags(argc, argv, "hmk");
if(opt & 1) {
df_disp_hr = 0;
2003-03-19 09:13:01 +00:00
disp_units_hdr = " Size";
}
if(opt & 2) {
df_disp_hr = MEGABYTE;
2003-03-19 09:13:01 +00:00
disp_units_hdr = "1M-blocks";
}
#else
opt = bb_getopt_ulflags(argc, argv, "k");
#endif
2000-12-06 15:55:23 +00:00
2003-03-19 09:13:01 +00:00
bb_printf("Filesystem%11s%-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) {
if (!(mount_table = setmntent(bb_path_mtab_file, "r"))) {
bb_perror_msg_and_die(bb_path_mtab_file);
}
2003-03-19 09:13:01 +00:00
}
1999-10-20 22:08:37 +00:00
2003-03-19 09:13:01 +00:00
do {
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) {
if (!(mount_entry = getmntent(mount_table))) {
endmntent(mount_table);
break;
}
} else {
if (!(mount_point = *argv++)) {
break;
}
if (!(mount_entry = find_mount_point(mount_point, bb_path_mtab_file))) {
bb_error_msg("%s: can't find mount point.", mount_point);
SET_ERROR:
2000-12-06 15:55:23 +00:00
status = EXIT_FAILURE;
2003-03-19 09:13:01 +00:00
continue;
}
}
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) {
bb_perror_msg("%s", mount_point);
goto SET_ERROR;
}
2003-03-19 09:13:01 +00:00
if ((s.f_blocks > 0) || !mount_table){
blocks_used = s.f_blocks - s.f_bfree;
blocks_percent_used = 0;
if (blocks_used + s.f_bavail) {
blocks_percent_used = (((long long) blocks_used) * 100
+ (blocks_used + s.f_bavail)/2
) / (blocks_used + s.f_bavail);
}
if (strcmp(device, "rootfs") == 0) {
continue;
} else 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 */
Major rewrite of mount, umount, losetup. Untangled lots of code, shrunk things down a bit, fixed a number of funky corner cases, added support for several new features (things like mount --move, mount --bind, lazy unounts, automatic detection of loop mounts, and so on). Probably broke several other things, but it's fixable. (Bang on it, tell me what doesn't work for you...) Note: you no longer need to say "-o loop". It does that for you when necessary. Still need to add "user mount" support, which involves making mount suid. Not too hard to do under the new infrastructure, just haven't done it yet... The previous code had the following notes, that belong in the version control comments: - * 3/21/1999 Charles P. Wright <cpwright@cpwright.com> - * searches through fstab when -a is passed - * will try mounting stuff with all fses when passed -t auto - * - * 1999-04-17 Dave Cinege...Rewrote -t auto. Fixed ro mtab. - * - * 1999-10-07 Erik Andersen <andersen@codepoet.org>. - * Rewrite of a lot of code. Removed mtab usage (I plan on - * putting it back as a compile-time option some time), - * major adjustments to option parsing, and some serious - * dieting all around. - * - * 1999-11-06 mtab support is back - andersee - * - * 2000-01-12 Ben Collins <bcollins@debian.org>, Borrowed utils-linux's - * mount to add loop support. - * - * 2000-04-30 Dave Cinege <dcinege@psychosis.com> - * Rewrote fstab while loop and lower mount section. Can now do - * single mounts from fstab. Can override fstab options for single - * mount. Common mount_one call for single mounts and 'all'. Fixed - * mtab updating and stale entries. Removed 'remount' default. - *
2005-08-10 20:35:54 +00:00
if ((device = find_block_device("/")) == NULL) {
2003-03-19 09:13:01 +00:00
goto SET_ERROR;
}
}
2003-03-19 09:13:01 +00:00
#ifdef CONFIG_FEATURE_HUMAN_READABLE
bb_printf("%-20s %9s ", device,
2003-03-19 09:13:01 +00:00
make_human_readable_str(s.f_blocks, s.f_bsize, df_disp_hr));
2003-03-19 09:13:01 +00:00
bb_printf("%9s ",
make_human_readable_str( (s.f_blocks - s.f_bfree),
s.f_bsize, df_disp_hr));
2003-03-19 09:13:01 +00:00
bb_printf("%9s %3ld%% %s\n",
make_human_readable_str(s.f_bavail, s.f_bsize, df_disp_hr),
blocks_percent_used, mount_point);
#else
bb_printf("%-20s %9ld %9ld %9ld %3ld%% %s\n",
2003-03-19 09:13:01 +00:00
device,
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);
#endif
}
} while (1);
bb_fflush_stdout_and_exit(status);
1999-10-20 22:08:37 +00:00
}