Fixed to pass -Wundef
[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 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 "internal.h"
26 #include <stdio.h>
27 #include <mntent.h>
28 #include <sys/stat.h>
29 #include <sys/vfs.h>
30
31 extern const char mtab_file[];  /* Defined in utility.c */
32
33 static int df(char *device, const char *mountPoint)
34 {
35         struct statfs s;
36         long blocks_used;
37         long blocks_percent_used;
38
39         if (statfs(mountPoint, &s) != 0) {
40                 perror(mountPoint);
41                 return FALSE;
42         }
43
44         if (s.f_blocks > 0) {
45                 blocks_used = s.f_blocks - s.f_bfree;
46                 blocks_percent_used = (long)
47                         (blocks_used * 100.0 / (blocks_used + s.f_bavail) + 0.5);
48                 if (strcmp(device, "/dev/root") == 0) {
49                         /* Adjusts device to be the real root device,
50                          * or leaves device alone if it can't find it */
51                         find_real_root_device_name( device);
52                 }
53                 printf("%-20s %9ld %9ld %9ld %3ld%% %s\n",
54                            device,
55                            (long) (s.f_blocks * (s.f_bsize / 1024.0)),
56                            (long) ((s.f_blocks - s.f_bfree) * (s.f_bsize / 1024.0)),
57                            (long) (s.f_bavail * (s.f_bsize / 1024.0)),
58                            blocks_percent_used, mountPoint);
59
60         }
61
62         return TRUE;
63 }
64
65 extern int df_main(int argc, char **argv)
66 {
67         printf("%-20s %-14s %s %s %s %s\n", "Filesystem",
68                    "1k-blocks", "Used", "Available", "Use%", "Mounted on");
69
70         if (argc > 1) {
71                 struct mntent *mountEntry;
72                 int status;
73
74                 if (**(argv + 1) == '-') {
75                         usage(df_usage);
76                 }
77                 while (argc > 1) {
78                         if ((mountEntry = findMountPoint(argv[1], mtab_file)) == 0) {
79                                 errorMsg("%s: can't find mount point.\n", argv[1]);
80                                 exit(FALSE);
81                         }
82                         status = df(mountEntry->mnt_fsname, mountEntry->mnt_dir);
83                         if (status != 0)
84                                 exit(status);
85                         argc--;
86                         argv++;
87                 }
88                 exit(TRUE);
89         } else {
90                 FILE *mountTable;
91                 struct mntent *mountEntry;
92
93                 mountTable = setmntent(mtab_file, "r");
94                 if (mountTable == 0) {
95                         perror(mtab_file);
96                         exit(FALSE);
97                 }
98
99                 while ((mountEntry = getmntent(mountTable))) {
100                         df(mountEntry->mnt_fsname, mountEntry->mnt_dir);
101                 }
102                 endmntent(mountTable);
103         }
104
105         return(TRUE);
106 }
107
108 /*
109 Local Variables:
110 c-file-style: "linux"
111 c-basic-offset: 4
112 tab-width: 4
113 End:
114 */