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