blob: 543527ea440304c7c6b0e9db55c0269ecefa2bfb [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 Andersenbdfd0d72001-10-24 05:00:29 +00005 * Copyright (C) 1999,2000 by Lineo, inc. and Erik Andersen
6 * Copyright (C) 1999,2000,2001 by Erik Andersen <andersee@debian.org>
Eric Andersenc4996011999-10-20 22:08:37 +00007 * based on original code by (I think) Bruce Perens <bruce@pixar.com>.
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 *
23 */
24
Manuel Novoa III cad53642003-03-19 09:13:01 +000025/* BB_AUDIT SUSv3 _NOT_ compliant -- options -P and -t missing. Also blocksize. */
26/* http://www.opengroup.org/onlinepubs/007904975/utilities/df.html */
27
28/* Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org)
29 *
30 * Size reduction. Removed floating point dependency. Added error checking
31 * on output. Output stats on 0-sized filesystems if specificly listed on
32 * the command line. Properly round *-blocks, Used, and Available quantities.
33 */
34
Eric Andersencc8ed391999-10-05 16:24:54 +000035#include <stdio.h>
Eric Andersened3ef502001-01-27 08:24:39 +000036#include <stdlib.h>
Eric Anderseneba8ed72001-03-09 14:36:42 +000037#include <string.h>
Manuel Novoa III cad53642003-03-19 09:13:01 +000038#include <unistd.h>
Eric Andersencc8ed391999-10-05 16:24:54 +000039#include <mntent.h>
Eric Andersencc8ed391999-10-05 16:24:54 +000040#include <sys/vfs.h>
Eric Andersencbe31da2001-02-20 06:14:08 +000041#include "busybox.h"
Eric Andersencc8ed391999-10-05 16:24:54 +000042
Manuel Novoa III cad53642003-03-19 09:13:01 +000043#ifndef CONFIG_FEATURE_HUMAN_READABLE
44static long kscale(long b, long bs)
Eric Andersencc8ed391999-10-05 16:24:54 +000045{
Manuel Novoa III cad53642003-03-19 09:13:01 +000046 return ( b * (long long) bs + KILOBYTE/2 ) / KILOBYTE;
Eric Andersencc8ed391999-10-05 16:24:54 +000047}
Manuel Novoa III cad53642003-03-19 09:13:01 +000048#endif
Eric Andersencc8ed391999-10-05 16:24:54 +000049
Eric Andersenc4996011999-10-20 22:08:37 +000050extern int df_main(int argc, char **argv)
51{
Manuel Novoa III cad53642003-03-19 09:13:01 +000052 long blocks_used;
53 long blocks_percent_used;
54#ifdef CONFIG_FEATURE_HUMAN_READABLE
55 unsigned long df_disp_hr = KILOBYTE;
56#endif
Matt Kraai92ed8a32000-12-06 15:55:23 +000057 int status = EXIT_SUCCESS;
Eric Andersen8876fb22003-06-20 09:01:58 +000058 unsigned long opt;
Manuel Novoa III cad53642003-03-19 09:13:01 +000059 FILE *mount_table;
60 struct mntent *mount_entry;
61 struct statfs s;
Manuel Novoa III 4eff1812003-03-19 09:42:02 +000062 static const char hdr_1k[] = "1k-blocks"; /* default display is kilobytes */
Manuel Novoa III cad53642003-03-19 09:13:01 +000063 const char *disp_units_hdr = hdr_1k;
Richard June6d0921c2001-01-22 22:35:38 +000064
Eric Andersenbdfd0d72001-10-24 05:00:29 +000065#ifdef CONFIG_FEATURE_HUMAN_READABLE
Eric Andersen8876fb22003-06-20 09:01:58 +000066 bb_opt_complementaly = "h-km:k-hm:m-hk";
67 opt = bb_getopt_ulflags(argc, argv, "hmk");
68 if(opt & 1) {
Mark Whitleyae5612c2001-03-07 17:42:07 +000069 df_disp_hr = 0;
Manuel Novoa III cad53642003-03-19 09:13:01 +000070 disp_units_hdr = " Size";
Eric Andersen8876fb22003-06-20 09:01:58 +000071 }
72 if(opt & 2) {
Manuel Novoa III 8f018392001-06-30 07:48:01 +000073 df_disp_hr = MEGABYTE;
Manuel Novoa III cad53642003-03-19 09:13:01 +000074 disp_units_hdr = "1M-blocks";
Richard June6d0921c2001-01-22 22:35:38 +000075 }
Eric Andersen8876fb22003-06-20 09:01:58 +000076#else
77 opt = bb_getopt_ulflags(argc, argv, "k");
78#endif
Matt Kraai92ed8a32000-12-06 15:55:23 +000079
Manuel Novoa III cad53642003-03-19 09:13:01 +000080 bb_printf("Filesystem%11s%-15sUsed Available Use%% Mounted on\n",
81 "", disp_units_hdr);
Eric Andersenc4996011999-10-20 22:08:37 +000082
Manuel Novoa III cad53642003-03-19 09:13:01 +000083 mount_table = NULL;
84 argv += optind;
85 if (optind >= argc) {
86 if (!(mount_table = setmntent(bb_path_mtab_file, "r"))) {
87 bb_perror_msg_and_die(bb_path_mtab_file);
Erik Andersene49d5ec2000-02-08 19:58:47 +000088 }
Eric Andersenc4996011999-10-20 22:08:37 +000089 }
90
Manuel Novoa III cad53642003-03-19 09:13:01 +000091 do {
92 const char *device;
93 const char *mount_point;
94
95 if (mount_table) {
96 if (!(mount_entry = getmntent(mount_table))) {
97 endmntent(mount_table);
98 break;
99 }
100 } else {
101 if (!(mount_point = *argv++)) {
102 break;
103 }
104 if (!(mount_entry = find_mount_point(mount_point, bb_path_mtab_file))) {
105 bb_error_msg("%s: can't find mount point.", mount_point);
106 SET_ERROR:
107 status = EXIT_FAILURE;
108 continue;
109 }
110 }
111
112 device = mount_entry->mnt_fsname;
113 mount_point = mount_entry->mnt_dir;
114
115 if (statfs(mount_point, &s) != 0) {
116 bb_perror_msg("%s", mount_point);
117 goto SET_ERROR;
118 }
119
120 if ((s.f_blocks > 0) || !mount_table){
121 blocks_used = s.f_blocks - s.f_bfree;
122 blocks_percent_used = 0;
123 if (blocks_used + s.f_bavail) {
124 blocks_percent_used = (((long long) blocks_used) * 100
125 + (blocks_used + s.f_bavail)/2
126 ) / (blocks_used + s.f_bavail);
127 }
128
Eric Andersen9d7f0f02003-06-20 09:36:49 +0000129 if (strcmp(device, "rootfs") == 0) {
130 continue;
131 } else if (strcmp(device, "/dev/root") == 0) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000132 /* Adjusts device to be the real root device,
133 * or leaves device alone if it can't find it */
Manuel Novoa III 3a9b0bf2003-03-23 20:27:33 +0000134 if ((device = find_real_root_device_name(device)) == NULL) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000135 goto SET_ERROR;
136 }
137 }
138
139#ifdef CONFIG_FEATURE_HUMAN_READABLE
140 bb_printf("%-21s%9s ", device,
141 make_human_readable_str(s.f_blocks, s.f_bsize, df_disp_hr));
142
143 bb_printf("%9s ",
144 make_human_readable_str( (s.f_blocks - s.f_bfree),
145 s.f_bsize, df_disp_hr));
146
147 bb_printf("%9s %3ld%% %s\n",
148 make_human_readable_str(s.f_bavail, s.f_bsize, df_disp_hr),
149 blocks_percent_used, mount_point);
150#else
151 bb_printf("%-21s%9ld %9ld %9ld %3ld%% %s\n",
152 device,
153 kscale(s.f_blocks, s.f_bsize),
154 kscale(s.f_blocks-s.f_bfree, s.f_bsize),
155 kscale(s.f_bavail, s.f_bsize),
156 blocks_percent_used, mount_point);
157#endif
158 }
159
160 } while (1);
161
162 bb_fflush_stdout_and_exit(status);
Eric Andersenc6cb79d1999-10-13 18:01:10 +0000163}
Erik Andersen029011b2000-03-04 21:19:32 +0000164
165/*
166Local Variables:
167c-file-style: "linux"
168c-basic-offset: 4
169tab-width: 4
170End:
171*/