blob: 82730806edce899470c23e8668e5526bdc7f7104 [file] [log] [blame]
Erik Andersene49d5ec2000-02-08 19:58:47 +00001/* vi: set sw=4 ts=4: */
Eric Andersenc4996011999-10-20 22:08:37 +00002/*
3 * Mini df implementation for busybox
4 *
Eric Andersenc7bda1c2004-03-15 08:29:22 +00005 * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
Eric Andersenc4996011999-10-20 22:08:37 +00006 * based on original code by (I think) Bruce Perens <bruce@pixar.com>.
7 *
Bernhard Reutner-Fischerb1629b12006-05-19 19:29:19 +00008 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
Eric Andersenc4996011999-10-20 22:08:37 +00009 */
10
Manuel Novoa III cad53642003-03-19 09:13:01 +000011/* BB_AUDIT SUSv3 _NOT_ compliant -- options -P and -t missing. Also blocksize. */
12/* http://www.opengroup.org/onlinepubs/007904975/utilities/df.html */
13
14/* Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org)
15 *
16 * Size reduction. Removed floating point dependency. Added error checking
Eric Andersenaff114c2004-04-14 17:51:38 +000017 * on output. Output stats on 0-sized filesystems if specifically listed on
Manuel Novoa III cad53642003-03-19 09:13:01 +000018 * the command line. Properly round *-blocks, Used, and Available quantities.
19 */
20
Eric Andersencc8ed391999-10-05 16:24:54 +000021#include <mntent.h>
Eric Andersencc8ed391999-10-05 16:24:54 +000022#include <sys/vfs.h>
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000023#include "libbb.h"
Eric Andersencc8ed391999-10-05 16:24:54 +000024
Manuel Novoa III cad53642003-03-19 09:13:01 +000025#ifndef CONFIG_FEATURE_HUMAN_READABLE
26static long kscale(long b, long bs)
Eric Andersencc8ed391999-10-05 16:24:54 +000027{
Denis Vlasenkodca0b702006-10-27 09:05:02 +000028 return ( b * (long long) bs + 1024/2 ) / 1024;
Eric Andersencc8ed391999-10-05 16:24:54 +000029}
Manuel Novoa III cad53642003-03-19 09:13:01 +000030#endif
Eric Andersencc8ed391999-10-05 16:24:54 +000031
Denis Vlasenko06af2162007-02-03 17:28:39 +000032int df_main(int argc, char **argv);
Rob Landleydfba7412006-03-06 20:47:33 +000033int df_main(int argc, char **argv)
Eric Andersenc4996011999-10-20 22:08:37 +000034{
Manuel Novoa III cad53642003-03-19 09:13:01 +000035 long blocks_used;
36 long blocks_percent_used;
37#ifdef CONFIG_FEATURE_HUMAN_READABLE
Denis Vlasenkodca0b702006-10-27 09:05:02 +000038 unsigned long df_disp_hr = 1024;
Manuel Novoa III cad53642003-03-19 09:13:01 +000039#endif
Matt Kraai92ed8a32000-12-06 15:55:23 +000040 int status = EXIT_SUCCESS;
Denis Vlasenko67b23e62006-10-03 21:00:06 +000041 unsigned opt;
Manuel Novoa III cad53642003-03-19 09:13:01 +000042 FILE *mount_table;
43 struct mntent *mount_entry;
44 struct statfs s;
Manuel Novoa III 4eff1812003-03-19 09:42:02 +000045 static const char hdr_1k[] = "1k-blocks"; /* default display is kilobytes */
Manuel Novoa III cad53642003-03-19 09:13:01 +000046 const char *disp_units_hdr = hdr_1k;
Richard June6d0921c2001-01-22 22:35:38 +000047
Eric Andersenbdfd0d72001-10-24 05:00:29 +000048#ifdef CONFIG_FEATURE_HUMAN_READABLE
Denis Vlasenko67b23e62006-10-03 21:00:06 +000049 opt_complementary = "h-km:k-hm:m-hk";
50 opt = getopt32(argc, argv, "hmk");
Denis Vlasenkof0ed3762006-10-26 23:21:47 +000051 if (opt & 1) {
52 df_disp_hr = 0;
53 disp_units_hdr = " Size";
Eric Andersen8876fb22003-06-20 09:01:58 +000054 }
Denis Vlasenkof0ed3762006-10-26 23:21:47 +000055 if (opt & 2) {
Denis Vlasenkodca0b702006-10-27 09:05:02 +000056 df_disp_hr = 1024*1024;
Denis Vlasenkof0ed3762006-10-26 23:21:47 +000057 disp_units_hdr = "1M-blocks";
Richard June6d0921c2001-01-22 22:35:38 +000058 }
Eric Andersen8876fb22003-06-20 09:01:58 +000059#else
Denis Vlasenko67b23e62006-10-03 21:00:06 +000060 opt = getopt32(argc, argv, "k");
Eric Andersen8876fb22003-06-20 09:01:58 +000061#endif
Matt Kraai92ed8a32000-12-06 15:55:23 +000062
Denis Vlasenkof0ed3762006-10-26 23:21:47 +000063 printf("Filesystem%11s%-15sUsed Available Use%% Mounted on\n",
Manuel Novoa III cad53642003-03-19 09:13:01 +000064 "", disp_units_hdr);
Eric Andersenc4996011999-10-20 22:08:37 +000065
Manuel Novoa III cad53642003-03-19 09:13:01 +000066 mount_table = NULL;
67 argv += optind;
68 if (optind >= argc) {
Denis Vlasenkof0ed3762006-10-26 23:21:47 +000069 mount_table = setmntent(bb_path_mtab_file, "r");
70 if (!mount_table) {
Manuel Novoa III cad53642003-03-19 09:13:01 +000071 bb_perror_msg_and_die(bb_path_mtab_file);
Erik Andersene49d5ec2000-02-08 19:58:47 +000072 }
Eric Andersenc4996011999-10-20 22:08:37 +000073 }
74
Manuel Novoa III cad53642003-03-19 09:13:01 +000075 do {
76 const char *device;
77 const char *mount_point;
78
79 if (mount_table) {
Denis Vlasenkof0ed3762006-10-26 23:21:47 +000080 mount_entry = getmntent(mount_table);
81 if (!mount_entry) {
Manuel Novoa III cad53642003-03-19 09:13:01 +000082 endmntent(mount_table);
83 break;
84 }
85 } else {
Denis Vlasenkof0ed3762006-10-26 23:21:47 +000086 mount_point = *argv++;
87 if (!mount_point) {
Manuel Novoa III cad53642003-03-19 09:13:01 +000088 break;
89 }
Denis Vlasenkof0ed3762006-10-26 23:21:47 +000090 mount_entry = find_mount_point(mount_point, bb_path_mtab_file);
91 if (!mount_entry) {
92 bb_error_msg("%s: can't find mount point", mount_point);
Denis Vlasenko98ee06d2006-12-31 18:57:37 +000093 SET_ERROR:
Manuel Novoa III cad53642003-03-19 09:13:01 +000094 status = EXIT_FAILURE;
95 continue;
96 }
97 }
98
99 device = mount_entry->mnt_fsname;
100 mount_point = mount_entry->mnt_dir;
101
102 if (statfs(mount_point, &s) != 0) {
103 bb_perror_msg("%s", mount_point);
104 goto SET_ERROR;
105 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000106
Manuel Novoa III cad53642003-03-19 09:13:01 +0000107 if ((s.f_blocks > 0) || !mount_table){
108 blocks_used = s.f_blocks - s.f_bfree;
109 blocks_percent_used = 0;
110 if (blocks_used + s.f_bavail) {
111 blocks_percent_used = (((long long) blocks_used) * 100
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000112 + (blocks_used + s.f_bavail)/2
113 ) / (blocks_used + s.f_bavail);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000114 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000115
Eric Andersen9d7f0f02003-06-20 09:36:49 +0000116 if (strcmp(device, "rootfs") == 0) {
117 continue;
118 } else if (strcmp(device, "/dev/root") == 0) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000119 /* Adjusts device to be the real root device,
120 * or leaves device alone if it can't find it */
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000121 device = find_block_device("/");
122 if (!device) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000123 goto SET_ERROR;
124 }
125 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000126
Manuel Novoa III cad53642003-03-19 09:13:01 +0000127#ifdef CONFIG_FEATURE_HUMAN_READABLE
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000128 printf("%-20s %9s ", device,
129 make_human_readable_str(s.f_blocks, s.f_bsize, df_disp_hr));
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000130
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000131 printf("%9s ",
132 make_human_readable_str( (s.f_blocks - s.f_bfree),
133 s.f_bsize, df_disp_hr));
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000134
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000135 printf("%9s %3ld%% %s\n",
Manuel Novoa III cad53642003-03-19 09:13:01 +0000136 make_human_readable_str(s.f_bavail, s.f_bsize, df_disp_hr),
137 blocks_percent_used, mount_point);
138#else
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000139 printf("%-20s %9ld %9ld %9ld %3ld%% %s\n",
Manuel Novoa III cad53642003-03-19 09:13:01 +0000140 device,
141 kscale(s.f_blocks, s.f_bsize),
142 kscale(s.f_blocks-s.f_bfree, s.f_bsize),
143 kscale(s.f_bavail, s.f_bsize),
144 blocks_percent_used, mount_point);
145#endif
146 }
147
148 } while (1);
149
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000150 fflush_stdout_and_exit(status);
Eric Andersenc6cb79d1999-10-13 18:01:10 +0000151}