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 | * |
Bernhard Reutner-Fischer | b1629b1 | 2006-05-19 19:29:19 +0000 | [diff] [blame] | 8 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. |
Eric Andersen | c499601 | 1999-10-20 22:08:37 +0000 | [diff] [blame] | 9 | */ |
| 10 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 11 | /* BB_AUDIT SUSv3 _NOT_ compliant -- options -P and -t missing. Also blocksize. */ |
| 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 |
Eric Andersen | aff114c | 2004-04-14 17:51:38 +0000 | [diff] [blame] | 17 | * 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] | 18 | * the command line. Properly round *-blocks, Used, and Available quantities. |
| 19 | */ |
| 20 | |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 21 | #include <stdio.h> |
Eric Andersen | ed3ef50 | 2001-01-27 08:24:39 +0000 | [diff] [blame] | 22 | #include <stdlib.h> |
Eric Andersen | eba8ed7 | 2001-03-09 14:36:42 +0000 | [diff] [blame] | 23 | #include <string.h> |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 24 | #include <unistd.h> |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 25 | #include <mntent.h> |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 26 | #include <sys/vfs.h> |
Eric Andersen | cbe31da | 2001-02-20 06:14:08 +0000 | [diff] [blame] | 27 | #include "busybox.h" |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 28 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 29 | #ifndef CONFIG_FEATURE_HUMAN_READABLE |
| 30 | static long kscale(long b, long bs) |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 31 | { |
Denis Vlasenko | dca0b70 | 2006-10-27 09:05:02 +0000 | [diff] [blame] | 32 | return ( b * (long long) bs + 1024/2 ) / 1024; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 33 | } |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 34 | #endif |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 35 | |
Denis Vlasenko | 06af216 | 2007-02-03 17:28:39 +0000 | [diff] [blame] | 36 | int df_main(int argc, char **argv); |
Rob Landley | dfba741 | 2006-03-06 20:47:33 +0000 | [diff] [blame] | 37 | int df_main(int argc, char **argv) |
Eric Andersen | c499601 | 1999-10-20 22:08:37 +0000 | [diff] [blame] | 38 | { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 39 | long blocks_used; |
| 40 | long blocks_percent_used; |
| 41 | #ifdef CONFIG_FEATURE_HUMAN_READABLE |
Denis Vlasenko | dca0b70 | 2006-10-27 09:05:02 +0000 | [diff] [blame] | 42 | unsigned long df_disp_hr = 1024; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 43 | #endif |
Matt Kraai | 92ed8a3 | 2000-12-06 15:55:23 +0000 | [diff] [blame] | 44 | int status = EXIT_SUCCESS; |
Denis Vlasenko | 67b23e6 | 2006-10-03 21:00:06 +0000 | [diff] [blame] | 45 | unsigned opt; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 46 | FILE *mount_table; |
| 47 | struct mntent *mount_entry; |
| 48 | struct statfs s; |
Manuel Novoa III | 4eff181 | 2003-03-19 09:42:02 +0000 | [diff] [blame] | 49 | static const char hdr_1k[] = "1k-blocks"; /* default display is kilobytes */ |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 50 | const char *disp_units_hdr = hdr_1k; |
Richard June | 6d0921c | 2001-01-22 22:35:38 +0000 | [diff] [blame] | 51 | |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 52 | #ifdef CONFIG_FEATURE_HUMAN_READABLE |
Denis Vlasenko | 67b23e6 | 2006-10-03 21:00:06 +0000 | [diff] [blame] | 53 | opt_complementary = "h-km:k-hm:m-hk"; |
| 54 | opt = getopt32(argc, argv, "hmk"); |
Denis Vlasenko | f0ed376 | 2006-10-26 23:21:47 +0000 | [diff] [blame] | 55 | if (opt & 1) { |
| 56 | df_disp_hr = 0; |
| 57 | disp_units_hdr = " Size"; |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 58 | } |
Denis Vlasenko | f0ed376 | 2006-10-26 23:21:47 +0000 | [diff] [blame] | 59 | if (opt & 2) { |
Denis Vlasenko | dca0b70 | 2006-10-27 09:05:02 +0000 | [diff] [blame] | 60 | df_disp_hr = 1024*1024; |
Denis Vlasenko | f0ed376 | 2006-10-26 23:21:47 +0000 | [diff] [blame] | 61 | disp_units_hdr = "1M-blocks"; |
Richard June | 6d0921c | 2001-01-22 22:35:38 +0000 | [diff] [blame] | 62 | } |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 63 | #else |
Denis Vlasenko | 67b23e6 | 2006-10-03 21:00:06 +0000 | [diff] [blame] | 64 | opt = getopt32(argc, argv, "k"); |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 65 | #endif |
Matt Kraai | 92ed8a3 | 2000-12-06 15:55:23 +0000 | [diff] [blame] | 66 | |
Denis Vlasenko | f0ed376 | 2006-10-26 23:21:47 +0000 | [diff] [blame] | 67 | printf("Filesystem%11s%-15sUsed Available Use%% Mounted on\n", |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 68 | "", disp_units_hdr); |
Eric Andersen | c499601 | 1999-10-20 22:08:37 +0000 | [diff] [blame] | 69 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 70 | mount_table = NULL; |
| 71 | argv += optind; |
| 72 | if (optind >= argc) { |
Denis Vlasenko | f0ed376 | 2006-10-26 23:21:47 +0000 | [diff] [blame] | 73 | mount_table = setmntent(bb_path_mtab_file, "r"); |
| 74 | if (!mount_table) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 75 | bb_perror_msg_and_die(bb_path_mtab_file); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 76 | } |
Eric Andersen | c499601 | 1999-10-20 22:08:37 +0000 | [diff] [blame] | 77 | } |
| 78 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 79 | do { |
| 80 | const char *device; |
| 81 | const char *mount_point; |
| 82 | |
| 83 | if (mount_table) { |
Denis Vlasenko | f0ed376 | 2006-10-26 23:21:47 +0000 | [diff] [blame] | 84 | mount_entry = getmntent(mount_table); |
| 85 | if (!mount_entry) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 86 | endmntent(mount_table); |
| 87 | break; |
| 88 | } |
| 89 | } else { |
Denis Vlasenko | f0ed376 | 2006-10-26 23:21:47 +0000 | [diff] [blame] | 90 | mount_point = *argv++; |
| 91 | if (!mount_point) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 92 | break; |
| 93 | } |
Denis Vlasenko | f0ed376 | 2006-10-26 23:21:47 +0000 | [diff] [blame] | 94 | mount_entry = find_mount_point(mount_point, bb_path_mtab_file); |
| 95 | if (!mount_entry) { |
| 96 | bb_error_msg("%s: can't find mount point", mount_point); |
Denis Vlasenko | 98ee06d | 2006-12-31 18:57:37 +0000 | [diff] [blame] | 97 | SET_ERROR: |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 98 | status = EXIT_FAILURE; |
| 99 | continue; |
| 100 | } |
| 101 | } |
| 102 | |
| 103 | device = mount_entry->mnt_fsname; |
| 104 | mount_point = mount_entry->mnt_dir; |
| 105 | |
| 106 | if (statfs(mount_point, &s) != 0) { |
| 107 | bb_perror_msg("%s", mount_point); |
| 108 | goto SET_ERROR; |
| 109 | } |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 110 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 111 | if ((s.f_blocks > 0) || !mount_table){ |
| 112 | blocks_used = s.f_blocks - s.f_bfree; |
| 113 | blocks_percent_used = 0; |
| 114 | if (blocks_used + s.f_bavail) { |
| 115 | blocks_percent_used = (((long long) blocks_used) * 100 |
Denis Vlasenko | f0ed376 | 2006-10-26 23:21:47 +0000 | [diff] [blame] | 116 | + (blocks_used + s.f_bavail)/2 |
| 117 | ) / (blocks_used + s.f_bavail); |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 118 | } |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 119 | |
Eric Andersen | 9d7f0f0 | 2003-06-20 09:36:49 +0000 | [diff] [blame] | 120 | if (strcmp(device, "rootfs") == 0) { |
| 121 | continue; |
| 122 | } else if (strcmp(device, "/dev/root") == 0) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 123 | /* Adjusts device to be the real root device, |
| 124 | * or leaves device alone if it can't find it */ |
Denis Vlasenko | f0ed376 | 2006-10-26 23:21:47 +0000 | [diff] [blame] | 125 | device = find_block_device("/"); |
| 126 | if (!device) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 127 | goto SET_ERROR; |
| 128 | } |
| 129 | } |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 130 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 131 | #ifdef CONFIG_FEATURE_HUMAN_READABLE |
Denis Vlasenko | f0ed376 | 2006-10-26 23:21:47 +0000 | [diff] [blame] | 132 | printf("%-20s %9s ", device, |
| 133 | make_human_readable_str(s.f_blocks, s.f_bsize, df_disp_hr)); |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 134 | |
Denis Vlasenko | f0ed376 | 2006-10-26 23:21:47 +0000 | [diff] [blame] | 135 | printf("%9s ", |
| 136 | make_human_readable_str( (s.f_blocks - s.f_bfree), |
| 137 | s.f_bsize, df_disp_hr)); |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 138 | |
Denis Vlasenko | f0ed376 | 2006-10-26 23:21:47 +0000 | [diff] [blame] | 139 | printf("%9s %3ld%% %s\n", |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 140 | make_human_readable_str(s.f_bavail, s.f_bsize, df_disp_hr), |
| 141 | blocks_percent_used, mount_point); |
| 142 | #else |
Denis Vlasenko | f0ed376 | 2006-10-26 23:21:47 +0000 | [diff] [blame] | 143 | printf("%-20s %9ld %9ld %9ld %3ld%% %s\n", |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 144 | device, |
| 145 | kscale(s.f_blocks, s.f_bsize), |
| 146 | kscale(s.f_blocks-s.f_bfree, s.f_bsize), |
| 147 | kscale(s.f_bavail, s.f_bsize), |
| 148 | blocks_percent_used, mount_point); |
| 149 | #endif |
| 150 | } |
| 151 | |
| 152 | } while (1); |
| 153 | |
Denis Vlasenko | f0ed376 | 2006-10-26 23:21:47 +0000 | [diff] [blame] | 154 | fflush_stdout_and_exit(status); |
Eric Andersen | c6cb79d | 1999-10-13 18:01:10 +0000 | [diff] [blame] | 155 | } |