ls: make --color more compatible with coreutils
[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-2004 by Erik Andersen <andersen@codepoet.org>
6  * based on original code by (I think) Bruce Perens <bruce@pixar.com>.
7  *
8  * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
9  */
10
11 /* BB_AUDIT SUSv3 _NOT_ compliant -- option -t missing. */
12 /* http://www.opengroup.org/onlinepubs/007904975/utilities/df.html */
13
14 /* Mar 16, 2003      Manuel Novoa III   (mjn3@codepoet.org)
15  *
16  * Size reduction.  Removed floating point dependency.  Added error checking
17  * on output.  Output stats on 0-sized filesystems if specifically listed on
18  * the command line.  Properly round *-blocks, Used, and Available quantities.
19  *
20  * Aug 28, 2008      Bernhard Reutner-Fischer
21  *
22  * Implement -P and -B; better coreutils compat; cleanup
23  */
24
25 #include <mntent.h>
26 #include <sys/vfs.h>
27 #include "libbb.h"
28
29 #if !ENABLE_FEATURE_HUMAN_READABLE
30 static unsigned long kscale(unsigned long b, unsigned long bs)
31 {
32         return (b * (unsigned long long) bs + 1024/2) / 1024;
33 }
34 #endif
35
36 int df_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
37 int df_main(int argc, char **argv)
38 {
39         unsigned long blocks_used;
40         unsigned blocks_percent_used;
41         unsigned long df_disp_hr = 1024;
42         int status = EXIT_SUCCESS;
43         unsigned opt;
44         FILE *mount_table;
45         struct mntent *mount_entry;
46         struct statfs s;
47         static const char ignored_mounts[] ALIGN1 = "rootfs\0";
48
49         enum {
50                 OPT_KILO  = (1 << 0),
51                 OPT_POSIX = (1 << 1),
52                 OPT_ALL   = (1 << 2) * ENABLE_FEATURE_DF_FANCY,
53                 OPT_INODE = (1 << 3) * ENABLE_FEATURE_DF_FANCY,
54                 OPT_BSIZE = (1 << 4) * ENABLE_FEATURE_DF_FANCY,
55                 OPT_HUMAN = (1 << (2 + 3*ENABLE_FEATURE_DF_FANCY)) * ENABLE_FEATURE_HUMAN_READABLE,
56                 OPT_MEGA  = (1 << (3 + 3*ENABLE_FEATURE_DF_FANCY)) * ENABLE_FEATURE_HUMAN_READABLE,
57         };
58         const char *disp_units_hdr = NULL;
59         char *chp;
60
61 #if ENABLE_FEATURE_HUMAN_READABLE && ENABLE_FEATURE_DF_FANCY
62         opt_complementary = "k-mB:m-Bk:B-km";
63 #elif ENABLE_FEATURE_HUMAN_READABLE
64         opt_complementary = "k-m:m-k";
65 #endif
66         opt = getopt32(argv, "kP"
67                         IF_FEATURE_DF_FANCY("aiB:")
68                         IF_FEATURE_HUMAN_READABLE("hm")
69                         IF_FEATURE_DF_FANCY(, &chp));
70         if (opt & OPT_MEGA)
71                 df_disp_hr = 1024*1024;
72
73         if (opt & OPT_BSIZE)
74                 df_disp_hr = xatoul_range(chp, 1, ULONG_MAX); /* disallow 0 */
75
76         /* From the manpage of df from coreutils-6.10:
77            Disk space is shown in 1K blocks by default, unless the environment
78            variable POSIXLY_CORRECT is set, in which case 512-byte blocks are used.
79         */
80         if (getenv("POSIXLY_CORRECT")) /* TODO - a new libbb function? */
81                 df_disp_hr = 512;
82
83         if (opt & OPT_HUMAN) {
84                 df_disp_hr = 0;
85                 disp_units_hdr = "     Size";
86         }
87         if (opt & OPT_INODE)
88                 disp_units_hdr = "   Inodes";
89
90         if (disp_units_hdr == NULL) {
91 #if ENABLE_FEATURE_HUMAN_READABLE
92                 disp_units_hdr = xasprintf("%s-blocks",
93                         make_human_readable_str(df_disp_hr, 0, !!(opt & OPT_POSIX)));
94 #else
95                 disp_units_hdr = xasprintf("%lu-blocks", df_disp_hr);
96 #endif
97         }
98         printf("Filesystem           %-15sUsed Available %s Mounted on\n",
99                         disp_units_hdr, (opt & OPT_POSIX) ? "Capacity" : "Use%");
100
101         mount_table = NULL;
102         argv += optind;
103         if (optind >= argc) {
104                 mount_table = setmntent(bb_path_mtab_file, "r");
105                 if (!mount_table)
106                         bb_perror_msg_and_die(bb_path_mtab_file);
107         }
108
109         while (1) {
110                 const char *device;
111                 const char *mount_point;
112
113                 if (mount_table) {
114                         mount_entry = getmntent(mount_table);
115                         if (!mount_entry) {
116                                 endmntent(mount_table);
117                                 break;
118                         }
119                 } else {
120                         mount_point = *argv++;
121                         if (!mount_point)
122                                 break;
123                         mount_entry = find_mount_point(mount_point, bb_path_mtab_file);
124                         if (!mount_entry) {
125                                 bb_error_msg("%s: can't find mount point", mount_point);
126  set_error:
127                                 status = EXIT_FAILURE;
128                                 continue;
129                         }
130                 }
131
132                 device = mount_entry->mnt_fsname;
133                 mount_point = mount_entry->mnt_dir;
134
135                 if (statfs(mount_point, &s) != 0) {
136                         bb_simple_perror_msg(mount_point);
137                         goto set_error;
138                 }
139
140                 if ((s.f_blocks > 0) || !mount_table || (opt & OPT_ALL)) {
141                         if (opt & OPT_INODE) {
142                                 s.f_blocks = s.f_files;
143                                 s.f_bavail = s.f_bfree = s.f_ffree;
144                                 s.f_bsize = 1;
145
146                                 if (df_disp_hr)
147                                         df_disp_hr = 1;
148                         }
149                         blocks_used = s.f_blocks - s.f_bfree;
150                         blocks_percent_used = 0;
151                         if (blocks_used + s.f_bavail) {
152                                 blocks_percent_used = (blocks_used * 100ULL
153                                                 + (blocks_used + s.f_bavail)/2
154                                                 ) / (blocks_used + s.f_bavail);
155                         }
156
157                         /* GNU coreutils 6.10 skip certain mounts, try to be compatible.  */
158                         if (index_in_strings(device, ignored_mounts) != -1)
159                                 continue;
160
161 #ifdef WHY_WE_DO_IT_FOR_DEV_ROOT_ONLY
162 /* ... and also this is the only user of find_block_device */
163                         if (strcmp(device, "/dev/root") == 0) {
164                                 /* Adjusts device to be the real root device,
165                                 * or leaves device alone if it can't find it */
166                                 device = find_block_device("/");
167                                 if (!device) {
168                                         goto set_error;
169                                 }
170                         }
171 #endif
172
173                         if (printf("\n%-20s" + 1, device) > 20)
174                                     printf("\n%-20s", "");
175 #if ENABLE_FEATURE_HUMAN_READABLE
176                         printf(" %9s ",
177                                 make_human_readable_str(s.f_blocks, s.f_bsize, df_disp_hr));
178
179                         printf(" %9s " + 1,
180                                 make_human_readable_str((s.f_blocks - s.f_bfree),
181                                                 s.f_bsize, df_disp_hr));
182
183                         printf("%9s %3u%% %s\n",
184                                         make_human_readable_str(s.f_bavail, s.f_bsize, df_disp_hr),
185                                         blocks_percent_used, mount_point);
186 #else
187                         printf(" %9lu %9lu %9lu %3u%% %s\n",
188                                         kscale(s.f_blocks, s.f_bsize),
189                                         kscale(s.f_blocks - s.f_bfree, s.f_bsize),
190                                         kscale(s.f_bavail, s.f_bsize),
191                                         blocks_percent_used, mount_point);
192 #endif
193                 }
194         }
195
196         return status;
197 }