Whitespace / formatting / bracket cleanup.
[oweals/busybox.git] / 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 df_disp_hr = KILOBYTE; 
35 #endif
36
37 static int do_df(char *device, const char *mount_point)
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(mount_point, &s) != 0) {
47                 perror_msg("%s", mount_point);
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 (df_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                            make_human_readable_str(s.f_blocks * (s.f_bsize/KILOBYTE), base));
77                 printf("%9s ",
78                            make_human_readable_str((s.f_blocks - s.f_bfree) * (s.f_bsize/KILOBYTE), base));
79                 printf("%9s %3ld%% %s\n",
80                            make_human_readable_str(s.f_bavail * (s.f_bsize/KILOBYTE), base),
81                            blocks_percent_used, mount_point);
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, mount_point);
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         char disp_units_hdr[80] = "1k-blocks"; /* default display is kilobytes */
101
102         while ((opt = getopt(argc, argv, "k"
103 #ifdef BB_FEATURE_HUMAN_READABLE
104         "hm"
105 #endif
106 )) > 0)
107         {
108                 switch (opt) {
109 #ifdef BB_FEATURE_HUMAN_READABLE
110                         case 'h':
111                                 df_disp_hr = 0;
112                                 strcpy(disp_units_hdr, "     Size");
113                                 break;
114                         case 'm':
115                                 df_disp_hr = MEGABYTE;
116                                 strcpy(disp_units_hdr, "1M-blocks");
117                                 break;
118 #endif
119                         case 'k':
120                                 /* default display is kilobytes */
121                                 break;
122                         default:
123                                           show_usage();
124                 }
125         }
126
127         printf("%-20s %-14s %s %s %s %s\n", "Filesystem", disp_units_hdr,
128                "Used", "Available", "Use%", "Mounted on");
129
130         if(optind < argc) {
131                 struct mntent *mount_entry;
132                 for(i = optind; i < argc; i++)
133                 {
134                         if ((mount_entry = find_mount_point(argv[i], mtab_file)) == 0) {
135                                 error_msg("%s: can't find mount point.", argv[i]);
136                                 status = EXIT_FAILURE;
137                         } else if (!do_df(mount_entry->mnt_fsname, mount_entry->mnt_dir))
138                                 status = EXIT_FAILURE;
139                 }
140         } else {
141                 FILE *mount_table;
142                 struct mntent *mount_entry;
143
144                 mount_table = setmntent(mtab_file, "r");
145                 if (mount_table == 0) {
146                         perror_msg("%s", mtab_file);
147                         return EXIT_FAILURE;
148                 }
149
150                 while ((mount_entry = getmntent(mount_table))) {
151                         if (!do_df(mount_entry->mnt_fsname, mount_entry->mnt_dir))
152                                 status = EXIT_FAILURE;
153                 }
154                 endmntent(mount_table);
155         }
156
157         return status;
158 }
159
160 /*
161 Local Variables:
162 c-file-style: "linux"
163 c-basic-offset: 4
164 tab-width: 4
165 End:
166 */