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