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