Static-ify a variable. make du work with all the human-readable variants
[oweals/busybox.git] / coreutils / df.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Mini df implementation for busybox
4  *
5  * Copyright (C) 1999,2000,2001 by Lineo, inc.
6  * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
7  * 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
25 #include <stdio.h>
26 #include <stdlib.h>
27 #include <mntent.h>
28 #include <sys/vfs.h>
29 #include <getopt.h>
30 #include "busybox.h"
31
32 extern const char mtab_file[];  /* Defined in utility.c */
33 #ifdef BB_FEATURE_HUMAN_READABLE
34 static unsigned long disp_hr = KILOBYTE; 
35 #endif
36
37 static int df(char *device, const char *mountPoint)
38 {
39         struct statfs s;
40         long blocks_used;
41         long blocks_percent_used;
42 #ifdef BB_FEATURE_HUMAN_READABLE
43         long base;
44 #endif  
45
46         if (statfs(mountPoint, &s) != 0) {
47                 perror_msg("%s", mountPoint);
48                 return FALSE;
49         }
50
51         if (s.f_blocks > 0) {
52                 blocks_used = s.f_blocks - s.f_bfree;
53                 if(blocks_used == 0)
54                         blocks_percent_used = 0;
55                 else {
56                         blocks_percent_used = (long)
57                           (blocks_used * 100.0 / (blocks_used + s.f_bavail) + 0.5);
58                 }
59                 if (strcmp(device, "/dev/root") == 0) {
60                         /* Adjusts device to be the real root device,
61                          * or leaves device alone if it can't find it */
62                         find_real_root_device_name( device);
63                 }
64                 #ifdef BB_FEATURE_HUMAN_READABLE
65                 switch (disp_hr) {
66                         case MEGABYTE:
67                                 base = KILOBYTE;
68                                 break;
69                         case KILOBYTE:
70                                 base = 1;
71                                 break;
72                         default:
73                                 base = 0;
74                 }
75                 printf("%-20s %9s ", device,
76                            format(s.f_blocks * (s.f_bsize/KILOBYTE), base));
77                 printf("%9s ",
78                            format((s.f_blocks - s.f_bfree) * (s.f_bsize/KILOBYTE), base));
79                 printf("%9s %3ld%% %s\n",
80                            format(s.f_bavail * (s.f_bsize/KILOBYTE), base),
81                            blocks_percent_used, mountPoint);
82 #else
83                 printf("%-20s %9ld %9ld %9ld %3ld%% %s\n",
84                                 device,
85                                 (long) (s.f_blocks * (s.f_bsize / KILOBYTE)),
86                                 (long) ((s.f_blocks - s.f_bfree) * (s.f_bsize / KILOBYTE)),
87                                 (long) (s.f_bavail * (s.f_bsize / KILOBYTE)),
88                                 blocks_percent_used, mountPoint);
89 #endif
90         }
91
92         return TRUE;
93 }
94
95 extern int df_main(int argc, char **argv)
96 {
97         int status = EXIT_SUCCESS;
98         int opt = 0;
99         int i = 0;
100
101         while ((opt = getopt(argc, argv, 
102 #ifdef BB_FEATURE_HUMAN_READABLE
103         "hm"
104 #endif
105         "k"
106 )) > 0)
107         {
108                 switch (opt) {
109 #ifdef BB_FEATURE_HUMAN_READABLE
110                         case 'h': disp_hr = 0;         break;
111                         case 'm': disp_hr = MEGABYTE;  break;
112 #endif
113                         case 'k': break;
114                         default:
115                                           show_usage();
116                 }
117         }
118
119         printf("%-20s %-14s %s %s %s %s\n", "Filesystem",
120 #ifdef BB_FEATURE_HUMAN_READABLE
121                         (KILOBYTE == disp_hr) ? "1k-blocks" :
122                         (MEGABYTE == disp_hr) ? "1M-blocks" : "     Size",
123 #else
124                    "1k-blocks",
125 #endif
126                "Used", "Available", "Use%", "Mounted on");
127
128
129         if(optind < argc) {
130                 struct mntent *mountEntry;
131                 for(i = optind; i < argc; i++)
132                 {
133                         if ((mountEntry = find_mount_point(argv[i], mtab_file)) == 0) {
134                                 error_msg("%s: can't find mount point.", argv[i]);
135                                 status = EXIT_FAILURE;
136                         } else if (!df(mountEntry->mnt_fsname, mountEntry->mnt_dir))
137                                 status = EXIT_FAILURE;
138                 }
139         } else {
140                 FILE *mountTable;
141                 struct mntent *mountEntry;
142
143                 mountTable = setmntent(mtab_file, "r");
144                 if (mountTable == 0) {
145                         perror_msg("%s", mtab_file);
146                         return EXIT_FAILURE;
147                 }
148
149                 while ((mountEntry = getmntent(mountTable))) {
150                         if (!df(mountEntry->mnt_fsname, mountEntry->mnt_dir))
151                                 status = EXIT_FAILURE;
152                 }
153                 endmntent(mountTable);
154         }
155
156         return status;
157 }
158
159 /*
160 Local Variables:
161 c-file-style: "linux"
162 c-basic-offset: 4
163 tab-width: 4
164 End:
165 */