Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Eric Andersen | c499601 | 1999-10-20 22:08:37 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Mini df implementation for busybox |
| 4 | * |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 5 | * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org> |
Eric Andersen | c499601 | 1999-10-20 22:08:37 +0000 | [diff] [blame] | 6 | * based on original code by (I think) Bruce Perens <bruce@pixar.com>. |
| 7 | * |
Denys Vlasenko | 0ef64bd | 2010-08-16 20:14:46 +0200 | [diff] [blame] | 8 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
Eric Andersen | c499601 | 1999-10-20 22:08:37 +0000 | [diff] [blame] | 9 | */ |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 10 | /* Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org) |
| 11 | * |
| 12 | * Size reduction. Removed floating point dependency. Added error checking |
Eric Andersen | aff114c | 2004-04-14 17:51:38 +0000 | [diff] [blame] | 13 | * on output. Output stats on 0-sized filesystems if specifically listed on |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 14 | * the command line. Properly round *-blocks, Used, and Available quantities. |
Denis Vlasenko | d66aa3c | 2008-08-28 22:42:52 +0000 | [diff] [blame] | 15 | * |
| 16 | * Aug 28, 2008 Bernhard Reutner-Fischer |
| 17 | * |
| 18 | * Implement -P and -B; better coreutils compat; cleanup |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 19 | */ |
Denys Vlasenko | af3f420 | 2016-11-23 14:46:56 +0100 | [diff] [blame] | 20 | //config:config DF |
Denys Vlasenko | b097a84 | 2018-12-28 03:20:17 +0100 | [diff] [blame] | 21 | //config: bool "df (6.8 kb)" |
Denys Vlasenko | af3f420 | 2016-11-23 14:46:56 +0100 | [diff] [blame] | 22 | //config: default y |
| 23 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 24 | //config: df reports the amount of disk space used and available |
| 25 | //config: on filesystems. |
Denys Vlasenko | af3f420 | 2016-11-23 14:46:56 +0100 | [diff] [blame] | 26 | //config: |
| 27 | //config:config FEATURE_DF_FANCY |
| 28 | //config: bool "Enable -a, -i, -B" |
| 29 | //config: default y |
| 30 | //config: depends on DF |
| 31 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 32 | //config: -a Show all filesystems |
| 33 | //config: -i Inodes |
| 34 | //config: -B <SIZE> Blocksize |
Denys Vlasenko | 94c78aa | 2021-10-12 13:23:29 +0200 | [diff] [blame] | 35 | //config: |
| 36 | //config:config FEATURE_SKIP_ROOTFS |
| 37 | //config: bool "Skip rootfs in mount table" |
| 38 | //config: default y |
| 39 | //config: depends on DF |
| 40 | //config: help |
| 41 | //config: Ignore rootfs entry in mount table. |
| 42 | //config: |
| 43 | //config: In Linux, kernel has a special filesystem, rootfs, which is initially |
| 44 | //config: mounted on /. It contains initramfs data, if kernel is configured |
| 45 | //config: to have one. Usually, another file system is mounted over / early |
| 46 | //config: in boot process, and therefore most tools which manipulate |
| 47 | //config: mount table, such as df, will skip rootfs entry. |
| 48 | //config: |
| 49 | //config: However, some systems do not mount anything on /. |
| 50 | //config: If you need to configure busybox for one of these systems, |
| 51 | //config: you may find it useful to turn this option off to make df show |
| 52 | //config: initramfs statistics. |
| 53 | //config: |
| 54 | //config: Otherwise, choose Y. |
Denys Vlasenko | af3f420 | 2016-11-23 14:46:56 +0100 | [diff] [blame] | 55 | |
Denys Vlasenko | fc9efcb | 2017-08-07 22:19:17 +0200 | [diff] [blame] | 56 | //applet:IF_DF(APPLET_NOEXEC(df, df, BB_DIR_BIN, BB_SUID_DROP, df)) |
Denys Vlasenko | af3f420 | 2016-11-23 14:46:56 +0100 | [diff] [blame] | 57 | |
| 58 | //kbuild:lib-$(CONFIG_DF) += df.o |
| 59 | |
| 60 | /* BB_AUDIT SUSv3 _NOT_ compliant -- option -t missing. */ |
| 61 | /* http://www.opengroup.org/onlinepubs/007904975/utilities/df.html */ |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 62 | |
Pere Orga | 3442538 | 2011-03-31 14:43:25 +0200 | [diff] [blame] | 63 | //usage:#define df_trivial_usage |
| 64 | //usage: "[-Pk" |
| 65 | //usage: IF_FEATURE_HUMAN_READABLE("mh") |
Ari Sundholm | d0cdaca | 2014-09-17 20:53:58 +0200 | [diff] [blame] | 66 | //usage: "T" |
Pere Orga | 3442538 | 2011-03-31 14:43:25 +0200 | [diff] [blame] | 67 | //usage: IF_FEATURE_DF_FANCY("ai] [-B SIZE") |
Denys Vlasenko | d82c937 | 2021-06-20 15:03:21 +0200 | [diff] [blame] | 68 | //usage: "] [-t TYPE] [FILESYSTEM]..." |
Pere Orga | 3442538 | 2011-03-31 14:43:25 +0200 | [diff] [blame] | 69 | //usage:#define df_full_usage "\n\n" |
| 70 | //usage: "Print filesystem usage statistics\n" |
Pere Orga | 3442538 | 2011-03-31 14:43:25 +0200 | [diff] [blame] | 71 | //usage: "\n -P POSIX output format" |
| 72 | //usage: "\n -k 1024-byte blocks (default)" |
| 73 | //usage: IF_FEATURE_HUMAN_READABLE( |
| 74 | //usage: "\n -m 1M-byte blocks" |
| 75 | //usage: "\n -h Human readable (e.g. 1K 243M 2G)" |
| 76 | //usage: ) |
Ari Sundholm | d0cdaca | 2014-09-17 20:53:58 +0200 | [diff] [blame] | 77 | //usage: "\n -T Print filesystem type" |
Denys Vlasenko | d82c937 | 2021-06-20 15:03:21 +0200 | [diff] [blame] | 78 | //usage: "\n -t TYPE Print only mounts of this type" |
Pere Orga | 3442538 | 2011-03-31 14:43:25 +0200 | [diff] [blame] | 79 | //usage: IF_FEATURE_DF_FANCY( |
| 80 | //usage: "\n -a Show all filesystems" |
| 81 | //usage: "\n -i Inodes" |
| 82 | //usage: "\n -B SIZE Blocksize" |
| 83 | //usage: ) |
| 84 | //usage: |
| 85 | //usage:#define df_example_usage |
| 86 | //usage: "$ df\n" |
| 87 | //usage: "Filesystem 1K-blocks Used Available Use% Mounted on\n" |
| 88 | //usage: "/dev/sda3 8690864 8553540 137324 98% /\n" |
| 89 | //usage: "/dev/sda1 64216 36364 27852 57% /boot\n" |
| 90 | //usage: "$ df /dev/sda3\n" |
| 91 | //usage: "Filesystem 1K-blocks Used Available Use% Mounted on\n" |
| 92 | //usage: "/dev/sda3 8690864 8553540 137324 98% /\n" |
| 93 | //usage: "$ POSIXLY_CORRECT=sure df /dev/sda3\n" |
| 94 | //usage: "Filesystem 512B-blocks Used Available Use% Mounted on\n" |
| 95 | //usage: "/dev/sda3 17381728 17107080 274648 98% /\n" |
| 96 | //usage: "$ POSIXLY_CORRECT=yep df -P /dev/sda3\n" |
| 97 | //usage: "Filesystem 512-blocks Used Available Capacity Mounted on\n" |
| 98 | //usage: "/dev/sda3 17381728 17107080 274648 98% /\n" |
| 99 | |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 100 | #include <mntent.h> |
James Clarke | d153521 | 2017-10-07 18:53:20 +0100 | [diff] [blame] | 101 | #include <sys/statvfs.h> |
Denis Vlasenko | b6adbf1 | 2007-05-26 19:00:18 +0000 | [diff] [blame] | 102 | #include "libbb.h" |
Denys Vlasenko | 200d522 | 2009-09-22 15:34:28 +0200 | [diff] [blame] | 103 | #include "unicode.h" |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 104 | |
Denis Vlasenko | e324184 | 2007-08-13 10:36:25 +0000 | [diff] [blame] | 105 | #if !ENABLE_FEATURE_HUMAN_READABLE |
Denis Vlasenko | 08294db | 2007-08-13 12:27:49 +0000 | [diff] [blame] | 106 | static unsigned long kscale(unsigned long b, unsigned long bs) |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 107 | { |
Denis Vlasenko | 08294db | 2007-08-13 12:27:49 +0000 | [diff] [blame] | 108 | return (b * (unsigned long long) bs + 1024/2) / 1024; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 109 | } |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 110 | #endif |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 111 | |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 112 | int df_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Denys Vlasenko | e992bae | 2009-11-28 15:18:53 +0100 | [diff] [blame] | 113 | int df_main(int argc UNUSED_PARAM, char **argv) |
Eric Andersen | c499601 | 1999-10-20 22:08:37 +0000 | [diff] [blame] | 114 | { |
Denis Vlasenko | d66aa3c | 2008-08-28 22:42:52 +0000 | [diff] [blame] | 115 | unsigned long df_disp_hr = 1024; |
Matt Kraai | 92ed8a3 | 2000-12-06 15:55:23 +0000 | [diff] [blame] | 116 | int status = EXIT_SUCCESS; |
Denis Vlasenko | 67b23e6 | 2006-10-03 21:00:06 +0000 | [diff] [blame] | 117 | unsigned opt; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 118 | FILE *mount_table; |
| 119 | struct mntent *mount_entry; |
James Clarke | d153521 | 2017-10-07 18:53:20 +0100 | [diff] [blame] | 120 | struct statvfs s; |
Denis Vlasenko | f430cdb | 2007-11-15 07:02:55 +0000 | [diff] [blame] | 121 | enum { |
Denys Vlasenko | 9346ea9 | 2021-09-11 00:47:03 +0200 | [diff] [blame] | 122 | OPT_KILO = (1 << 0), |
| 123 | OPT_POSIX = (1 << 1), |
| 124 | OPT_FSTYPE = (1 << 2), |
| 125 | OPT_t = (1 << 3), |
| 126 | OPT_ALL = (1 << 4) * ENABLE_FEATURE_DF_FANCY, |
| 127 | OPT_INODE = (1 << 5) * ENABLE_FEATURE_DF_FANCY, |
| 128 | OPT_BSIZE = (1 << 6) * ENABLE_FEATURE_DF_FANCY, |
| 129 | OPT_HUMAN = (1 << (4 + 3*ENABLE_FEATURE_DF_FANCY)) * ENABLE_FEATURE_HUMAN_READABLE, |
| 130 | OPT_HUMANDEC = (1 << (5 + 3*ENABLE_FEATURE_DF_FANCY)) * ENABLE_FEATURE_HUMAN_READABLE, |
| 131 | OPT_MEGA = (1 << (6 + 3*ENABLE_FEATURE_DF_FANCY)) * ENABLE_FEATURE_HUMAN_READABLE, |
Denis Vlasenko | f430cdb | 2007-11-15 07:02:55 +0000 | [diff] [blame] | 132 | }; |
Denis Vlasenko | d66aa3c | 2008-08-28 22:42:52 +0000 | [diff] [blame] | 133 | const char *disp_units_hdr = NULL; |
Denys Vlasenko | d82c937 | 2021-06-20 15:03:21 +0200 | [diff] [blame] | 134 | char *chp, *opt_t; |
Denis Vlasenko | f430cdb | 2007-11-15 07:02:55 +0000 | [diff] [blame] | 135 | |
Denys Vlasenko | 2805502 | 2010-01-04 20:49:58 +0100 | [diff] [blame] | 136 | init_unicode(); |
Denys Vlasenko | 200d522 | 2009-09-22 15:34:28 +0200 | [diff] [blame] | 137 | |
Denys Vlasenko | a2a9113 | 2021-06-20 14:46:19 +0200 | [diff] [blame] | 138 | /* From the manpage of df from coreutils-6.10: |
| 139 | * Disk space is shown in 1K blocks by default, unless the environment |
| 140 | * variable POSIXLY_CORRECT is set, in which case 512-byte blocks are used. |
| 141 | */ |
| 142 | if (getenv("POSIXLY_CORRECT")) /* TODO - a new libbb function? */ |
| 143 | df_disp_hr = 512; |
| 144 | |
Denys Vlasenko | 22542ec | 2017-08-08 21:55:02 +0200 | [diff] [blame] | 145 | opt = getopt32(argv, "^" |
Denys Vlasenko | d82c937 | 2021-06-20 15:03:21 +0200 | [diff] [blame] | 146 | "kPTt:" |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 147 | IF_FEATURE_DF_FANCY("aiB:") |
Denys Vlasenko | 9346ea9 | 2021-09-11 00:47:03 +0200 | [diff] [blame] | 148 | IF_FEATURE_HUMAN_READABLE("hHm") |
Denys Vlasenko | 22542ec | 2017-08-08 21:55:02 +0200 | [diff] [blame] | 149 | "\0" |
| 150 | #if ENABLE_FEATURE_HUMAN_READABLE && ENABLE_FEATURE_DF_FANCY |
| 151 | "k-mB:m-Bk:B-km" |
| 152 | #elif ENABLE_FEATURE_HUMAN_READABLE |
| 153 | "k-m:m-k" |
| 154 | #endif |
Denys Vlasenko | d82c937 | 2021-06-20 15:03:21 +0200 | [diff] [blame] | 155 | , &opt_t |
Denys Vlasenko | 22542ec | 2017-08-08 21:55:02 +0200 | [diff] [blame] | 156 | IF_FEATURE_DF_FANCY(, &chp) |
| 157 | ); |
Denis Vlasenko | d66aa3c | 2008-08-28 22:42:52 +0000 | [diff] [blame] | 158 | if (opt & OPT_MEGA) |
| 159 | df_disp_hr = 1024*1024; |
| 160 | |
Denys Vlasenko | e184a88 | 2016-12-12 19:56:31 +0100 | [diff] [blame] | 161 | if (opt & OPT_BSIZE) { |
| 162 | /* GNU coreutils 8.25 accepts "-BMiB" form too */ |
| 163 | int i; |
| 164 | for (i = 0; kmg_i_suffixes[i].suffix[0]; i++) { |
| 165 | if (strcmp(kmg_i_suffixes[i].suffix, chp) == 0) { |
| 166 | df_disp_hr = kmg_i_suffixes[i].mult; |
| 167 | goto got_it; |
| 168 | } |
| 169 | } |
| 170 | /* Range used to disallow 0 */ |
| 171 | df_disp_hr = xatoul_range_sfx(chp, 1, ULONG_MAX, kmg_i_suffixes); |
| 172 | got_it: ; |
| 173 | } |
Denis Vlasenko | d66aa3c | 2008-08-28 22:42:52 +0000 | [diff] [blame] | 174 | |
Denys Vlasenko | 9346ea9 | 2021-09-11 00:47:03 +0200 | [diff] [blame] | 175 | if (opt & (OPT_HUMAN|OPT_HUMANDEC)) { |
Denis Vlasenko | f0ed376 | 2006-10-26 23:21:47 +0000 | [diff] [blame] | 176 | df_disp_hr = 0; |
Denys Vlasenko | 9346ea9 | 2021-09-11 00:47:03 +0200 | [diff] [blame] | 177 | //TODO: need to add support in make_human_readable_str() for "decimal human readable" |
| 178 | //if (opt & OPT_HUMANDEC) |
| 179 | // df_disp_hr--; |
Denis Vlasenko | f0ed376 | 2006-10-26 23:21:47 +0000 | [diff] [blame] | 180 | disp_units_hdr = " Size"; |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 181 | } |
Denis Vlasenko | d66aa3c | 2008-08-28 22:42:52 +0000 | [diff] [blame] | 182 | if (opt & OPT_INODE) |
Denis Vlasenko | f430cdb | 2007-11-15 07:02:55 +0000 | [diff] [blame] | 183 | disp_units_hdr = " Inodes"; |
Matt Kraai | 92ed8a3 | 2000-12-06 15:55:23 +0000 | [diff] [blame] | 184 | |
Denis Vlasenko | d66aa3c | 2008-08-28 22:42:52 +0000 | [diff] [blame] | 185 | if (disp_units_hdr == NULL) { |
| 186 | #if ENABLE_FEATURE_HUMAN_READABLE |
| 187 | disp_units_hdr = xasprintf("%s-blocks", |
Denys Vlasenko | 0bf44d0 | 2009-10-13 01:25:09 +0200 | [diff] [blame] | 188 | /* print df_disp_hr, show no fractionals, |
| 189 | * use suffixes if OPT_POSIX is set in opt */ |
| 190 | make_human_readable_str(df_disp_hr, 0, !!(opt & OPT_POSIX)) |
| 191 | ); |
Denis Vlasenko | d66aa3c | 2008-08-28 22:42:52 +0000 | [diff] [blame] | 192 | #else |
Denis Vlasenko | e0bcba1 | 2008-09-25 10:41:15 +0000 | [diff] [blame] | 193 | disp_units_hdr = xasprintf("%lu-blocks", df_disp_hr); |
Denis Vlasenko | d66aa3c | 2008-08-28 22:42:52 +0000 | [diff] [blame] | 194 | #endif |
| 195 | } |
Ari Sundholm | d0cdaca | 2014-09-17 20:53:58 +0200 | [diff] [blame] | 196 | |
| 197 | printf("Filesystem %s%-15sUsed Available %s Mounted on\n", |
| 198 | (opt & OPT_FSTYPE) ? "Type " : "", |
| 199 | disp_units_hdr, |
| 200 | (opt & OPT_POSIX) ? "Capacity" : "Use%"); |
Eric Andersen | c499601 | 1999-10-20 22:08:37 +0000 | [diff] [blame] | 201 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 202 | mount_table = NULL; |
| 203 | argv += optind; |
Denys Vlasenko | e992bae | 2009-11-28 15:18:53 +0100 | [diff] [blame] | 204 | if (!argv[0]) { |
Denis Vlasenko | f0ed376 | 2006-10-26 23:21:47 +0000 | [diff] [blame] | 205 | mount_table = setmntent(bb_path_mtab_file, "r"); |
Denis Vlasenko | d66aa3c | 2008-08-28 22:42:52 +0000 | [diff] [blame] | 206 | if (!mount_table) |
James Byrne | 6937487 | 2019-07-02 11:35:03 +0200 | [diff] [blame] | 207 | bb_simple_perror_msg_and_die(bb_path_mtab_file); |
Eric Andersen | c499601 | 1999-10-20 22:08:37 +0000 | [diff] [blame] | 208 | } |
| 209 | |
Denis Vlasenko | 08294db | 2007-08-13 12:27:49 +0000 | [diff] [blame] | 210 | while (1) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 211 | const char *device; |
| 212 | const char *mount_point; |
Ari Sundholm | d0cdaca | 2014-09-17 20:53:58 +0200 | [diff] [blame] | 213 | const char *fs_type; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 214 | |
| 215 | if (mount_table) { |
Denis Vlasenko | f0ed376 | 2006-10-26 23:21:47 +0000 | [diff] [blame] | 216 | mount_entry = getmntent(mount_table); |
| 217 | if (!mount_entry) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 218 | endmntent(mount_table); |
| 219 | break; |
| 220 | } |
| 221 | } else { |
Denis Vlasenko | f0ed376 | 2006-10-26 23:21:47 +0000 | [diff] [blame] | 222 | mount_point = *argv++; |
Denis Vlasenko | d66aa3c | 2008-08-28 22:42:52 +0000 | [diff] [blame] | 223 | if (!mount_point) |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 224 | break; |
Denys Vlasenko | 6ae6426 | 2009-07-18 16:22:26 +0200 | [diff] [blame] | 225 | mount_entry = find_mount_point(mount_point, 1); |
Denis Vlasenko | f0ed376 | 2006-10-26 23:21:47 +0000 | [diff] [blame] | 226 | if (!mount_entry) { |
| 227 | bb_error_msg("%s: can't find mount point", mount_point); |
Denis Vlasenko | 0354aba | 2009-03-19 03:56:20 +0000 | [diff] [blame] | 228 | set_error: |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 229 | status = EXIT_FAILURE; |
| 230 | continue; |
| 231 | } |
| 232 | } |
| 233 | |
| 234 | device = mount_entry->mnt_fsname; |
Denys Vlasenko | e20a703 | 2018-02-23 17:08:32 +0100 | [diff] [blame] | 235 | |
| 236 | /* GNU coreutils 6.10 skips certain mounts, try to be compatible */ |
| 237 | if (ENABLE_FEATURE_SKIP_ROOTFS && strcmp(device, "rootfs") == 0) |
| 238 | continue; |
| 239 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 240 | mount_point = mount_entry->mnt_dir; |
Ari Sundholm | d0cdaca | 2014-09-17 20:53:58 +0200 | [diff] [blame] | 241 | fs_type = mount_entry->mnt_type; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 242 | |
Denys Vlasenko | d82c937 | 2021-06-20 15:03:21 +0200 | [diff] [blame] | 243 | if (opt & OPT_t) { |
| 244 | if (strcmp(fs_type, opt_t) != 0) |
| 245 | continue; |
| 246 | } |
| 247 | |
James Clarke | d153521 | 2017-10-07 18:53:20 +0100 | [diff] [blame] | 248 | if (statvfs(mount_point, &s) != 0) { |
Denis Vlasenko | 0c97c9d | 2007-10-01 11:58:38 +0000 | [diff] [blame] | 249 | bb_simple_perror_msg(mount_point); |
Denis Vlasenko | 0354aba | 2009-03-19 03:56:20 +0000 | [diff] [blame] | 250 | goto set_error; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 251 | } |
Denys Vlasenko | e184a88 | 2016-12-12 19:56:31 +0100 | [diff] [blame] | 252 | /* Some uclibc versions were seen to lose f_frsize |
| 253 | * (kernel does return it, but then uclibc does not copy it) |
| 254 | */ |
| 255 | if (s.f_frsize == 0) |
| 256 | s.f_frsize = s.f_bsize; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 257 | |
Denis Vlasenko | 6d38dc3 | 2007-11-15 09:02:12 +0000 | [diff] [blame] | 258 | if ((s.f_blocks > 0) || !mount_table || (opt & OPT_ALL)) { |
Denys Vlasenko | 58cd6e1 | 2018-02-23 17:00:23 +0100 | [diff] [blame] | 259 | unsigned long long blocks_used; |
| 260 | unsigned long long blocks_total; |
| 261 | unsigned blocks_percent_used; |
| 262 | |
Denis Vlasenko | f430cdb | 2007-11-15 07:02:55 +0000 | [diff] [blame] | 263 | if (opt & OPT_INODE) { |
| 264 | s.f_blocks = s.f_files; |
| 265 | s.f_bavail = s.f_bfree = s.f_ffree; |
Natanael Copa | 8f4faa1 | 2016-06-23 10:42:40 +0200 | [diff] [blame] | 266 | s.f_frsize = 1; |
Denis Vlasenko | f430cdb | 2007-11-15 07:02:55 +0000 | [diff] [blame] | 267 | if (df_disp_hr) |
| 268 | df_disp_hr = 1; |
Denis Vlasenko | f430cdb | 2007-11-15 07:02:55 +0000 | [diff] [blame] | 269 | } |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 270 | blocks_used = s.f_blocks - s.f_bfree; |
Denys Vlasenko | 58cd6e1 | 2018-02-23 17:00:23 +0100 | [diff] [blame] | 271 | blocks_total = blocks_used + s.f_bavail; |
| 272 | blocks_percent_used = blocks_total; /* 0% if blocks_total == 0, else... */ |
| 273 | if (blocks_total != 0) { |
| 274 | /* Downscale sizes for narrower division */ |
| 275 | unsigned u; |
| 276 | while (blocks_total >= INT_MAX / 101) { |
| 277 | blocks_total >>= 1; |
| 278 | blocks_used >>= 1; |
| 279 | } |
| 280 | u = (unsigned)blocks_used * 100u + (unsigned)blocks_total / 2; |
| 281 | blocks_percent_used = u / (unsigned)blocks_total; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 282 | } |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 283 | |
Denis Vlasenko | 6d38dc3 | 2007-11-15 09:02:12 +0000 | [diff] [blame] | 284 | #ifdef WHY_WE_DO_IT_FOR_DEV_ROOT_ONLY |
Denis Vlasenko | f430cdb | 2007-11-15 07:02:55 +0000 | [diff] [blame] | 285 | if (strcmp(device, "/dev/root") == 0) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 286 | /* Adjusts device to be the real root device, |
Denys Vlasenko | a732966 | 2009-12-05 04:25:19 +0100 | [diff] [blame] | 287 | * or leaves device alone if it can't find it */ |
Denis Vlasenko | f0ed376 | 2006-10-26 23:21:47 +0000 | [diff] [blame] | 288 | device = find_block_device("/"); |
| 289 | if (!device) { |
Denis Vlasenko | 0354aba | 2009-03-19 03:56:20 +0000 | [diff] [blame] | 290 | goto set_error; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 291 | } |
| 292 | } |
Denis Vlasenko | 6d38dc3 | 2007-11-15 09:02:12 +0000 | [diff] [blame] | 293 | #endif |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 294 | |
Denys Vlasenko | 19158a8 | 2010-03-26 14:06:56 +0100 | [diff] [blame] | 295 | #if ENABLE_UNICODE_SUPPORT |
Denys Vlasenko | e17764c | 2010-01-30 23:16:21 +0100 | [diff] [blame] | 296 | { |
| 297 | uni_stat_t uni_stat; |
| 298 | char *uni_dev = unicode_conv_to_printable(&uni_stat, device); |
Ralf Friedl | 00103d3 | 2011-08-09 04:49:27 +0200 | [diff] [blame] | 299 | if (uni_stat.unicode_width > 20 && !(opt & OPT_POSIX)) { |
Denys Vlasenko | e17764c | 2010-01-30 23:16:21 +0100 | [diff] [blame] | 300 | printf("%s\n%20s", uni_dev, ""); |
| 301 | } else { |
| 302 | printf("%s%*s", uni_dev, 20 - (int)uni_stat.unicode_width, ""); |
| 303 | } |
| 304 | free(uni_dev); |
Ari Sundholm | d0cdaca | 2014-09-17 20:53:58 +0200 | [diff] [blame] | 305 | if (opt & OPT_FSTYPE) { |
| 306 | char *uni_type = unicode_conv_to_printable(&uni_stat, fs_type); |
| 307 | if (uni_stat.unicode_width > 10 && !(opt & OPT_POSIX)) |
| 308 | printf(" %s\n%31s", uni_type, ""); |
| 309 | else |
| 310 | printf(" %s%*s", uni_type, 10 - (int)uni_stat.unicode_width, ""); |
| 311 | free(uni_type); |
| 312 | } |
Denys Vlasenko | 200d522 | 2009-09-22 15:34:28 +0200 | [diff] [blame] | 313 | } |
| 314 | #else |
Ralf Friedl | 00103d3 | 2011-08-09 04:49:27 +0200 | [diff] [blame] | 315 | if (printf("\n%-20s" + 1, device) > 20 && !(opt & OPT_POSIX)) |
Denys Vlasenko | 6967578 | 2013-01-14 01:34:48 +0100 | [diff] [blame] | 316 | printf("\n%-20s", ""); |
Ari Sundholm | d0cdaca | 2014-09-17 20:53:58 +0200 | [diff] [blame] | 317 | if (opt & OPT_FSTYPE) { |
| 318 | if (printf(" %-10s", fs_type) > 11 && !(opt & OPT_POSIX)) |
| 319 | printf("\n%-30s", ""); |
| 320 | } |
Denys Vlasenko | 200d522 | 2009-09-22 15:34:28 +0200 | [diff] [blame] | 321 | #endif |
| 322 | |
Denis Vlasenko | e324184 | 2007-08-13 10:36:25 +0000 | [diff] [blame] | 323 | #if ENABLE_FEATURE_HUMAN_READABLE |
Denis Vlasenko | 08294db | 2007-08-13 12:27:49 +0000 | [diff] [blame] | 324 | printf(" %9s ", |
Natanael Copa | 8f4faa1 | 2016-06-23 10:42:40 +0200 | [diff] [blame] | 325 | /* f_blocks x f_frsize / df_disp_hr, show one fractional, |
Denys Vlasenko | 0bf44d0 | 2009-10-13 01:25:09 +0200 | [diff] [blame] | 326 | * use suffixes if df_disp_hr == 0 */ |
Natanael Copa | 8f4faa1 | 2016-06-23 10:42:40 +0200 | [diff] [blame] | 327 | make_human_readable_str(s.f_blocks, s.f_frsize, df_disp_hr)); |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 328 | |
Denis Vlasenko | 08294db | 2007-08-13 12:27:49 +0000 | [diff] [blame] | 329 | printf(" %9s " + 1, |
Natanael Copa | 8f4faa1 | 2016-06-23 10:42:40 +0200 | [diff] [blame] | 330 | /* EXPR x f_frsize / df_disp_hr, show one fractional, |
Denys Vlasenko | 0bf44d0 | 2009-10-13 01:25:09 +0200 | [diff] [blame] | 331 | * use suffixes if df_disp_hr == 0 */ |
Denis Vlasenko | 08294db | 2007-08-13 12:27:49 +0000 | [diff] [blame] | 332 | make_human_readable_str((s.f_blocks - s.f_bfree), |
Natanael Copa | 8f4faa1 | 2016-06-23 10:42:40 +0200 | [diff] [blame] | 333 | s.f_frsize, df_disp_hr)); |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 334 | |
Denis Vlasenko | 08294db | 2007-08-13 12:27:49 +0000 | [diff] [blame] | 335 | printf("%9s %3u%% %s\n", |
Natanael Copa | 8f4faa1 | 2016-06-23 10:42:40 +0200 | [diff] [blame] | 336 | /* f_bavail x f_frsize / df_disp_hr, show one fractional, |
Denys Vlasenko | 0bf44d0 | 2009-10-13 01:25:09 +0200 | [diff] [blame] | 337 | * use suffixes if df_disp_hr == 0 */ |
Natanael Copa | 8f4faa1 | 2016-06-23 10:42:40 +0200 | [diff] [blame] | 338 | make_human_readable_str(s.f_bavail, s.f_frsize, df_disp_hr), |
Denys Vlasenko | 0bf44d0 | 2009-10-13 01:25:09 +0200 | [diff] [blame] | 339 | blocks_percent_used, mount_point); |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 340 | #else |
Denis Vlasenko | 08294db | 2007-08-13 12:27:49 +0000 | [diff] [blame] | 341 | printf(" %9lu %9lu %9lu %3u%% %s\n", |
Natanael Copa | 8f4faa1 | 2016-06-23 10:42:40 +0200 | [diff] [blame] | 342 | kscale(s.f_blocks, s.f_frsize), |
| 343 | kscale(s.f_blocks - s.f_bfree, s.f_frsize), |
| 344 | kscale(s.f_bavail, s.f_frsize), |
Denys Vlasenko | 0bf44d0 | 2009-10-13 01:25:09 +0200 | [diff] [blame] | 345 | blocks_percent_used, mount_point); |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 346 | #endif |
| 347 | } |
Denis Vlasenko | 08294db | 2007-08-13 12:27:49 +0000 | [diff] [blame] | 348 | } |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 349 | |
Denis Vlasenko | d66aa3c | 2008-08-28 22:42:52 +0000 | [diff] [blame] | 350 | return status; |
Eric Andersen | c6cb79d | 1999-10-13 18:01:10 +0000 | [diff] [blame] | 351 | } |