Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
John Beppu | 0f5e1ab | 1999-12-09 18:23:54 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Mini du implementation for busybox |
| 4 | * |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 5 | * Copyright (C) 1999,2000,2001 by Lineo, inc. and John Beppu |
| 6 | * Copyright (C) 1999,2000,2001 by John Beppu <beppu@codepoet.org> |
Eric Andersen | 265d229 | 2002-04-06 23:16:44 +0000 | [diff] [blame] | 7 | * Copyright (C) 2002 Edward Betts <edward@debian.org> |
John Beppu | 0f5e1ab | 1999-12-09 18:23:54 +0000 | [diff] [blame] | 8 | * |
Denys Vlasenko | 0ef64bd | 2010-08-16 20:14:46 +0200 | [diff] [blame] | 9 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
John Beppu | 0f5e1ab | 1999-12-09 18:23:54 +0000 | [diff] [blame] | 10 | */ |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 11 | /* Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org) |
| 12 | * |
| 13 | * Mostly rewritten for SUSv3 compliance and to fix bugs/defects. |
| 14 | * 1) Added support for SUSv3 -a, -H, -L, gnu -c, and (busybox) -d options. |
| 15 | * The -d option allows setting of max depth (similar to gnu --max-depth). |
| 16 | * 2) Fixed incorrect size calculations for links and directories, especially |
| 17 | * when errors occurred. Calculates sizes should now match gnu du output. |
| 18 | * 3) Added error checking of output. |
| 19 | * 4) Fixed busybox bug #1284 involving long overflow with human_readable. |
| 20 | */ |
Denys Vlasenko | af3f420 | 2016-11-23 14:46:56 +0100 | [diff] [blame] | 21 | //config:config DU |
| 22 | //config: bool "du (default blocksize of 512 bytes)" |
| 23 | //config: default y |
| 24 | //config: help |
| 25 | //config: du is used to report the amount of disk space used |
| 26 | //config: for specified files. |
| 27 | //config: |
| 28 | //config:config FEATURE_DU_DEFAULT_BLOCKSIZE_1K |
| 29 | //config: bool "Use a default blocksize of 1024 bytes (1K)" |
| 30 | //config: default y |
| 31 | //config: depends on DU |
| 32 | //config: help |
| 33 | //config: Use a blocksize of (1K) instead of the default 512b. |
| 34 | |
| 35 | //applet:IF_DU(APPLET(du, BB_DIR_USR_BIN, BB_SUID_DROP)) |
| 36 | |
| 37 | //kbuild:lib-$(CONFIG_DU) += du.o |
| 38 | |
| 39 | /* BB_AUDIT SUSv3 compliant (unless default blocksize set to 1k) */ |
| 40 | /* http://www.opengroup.org/onlinepubs/007904975/utilities/du.html */ |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 41 | |
Pere Orga | 3442538 | 2011-03-31 14:43:25 +0200 | [diff] [blame] | 42 | //usage:#define du_trivial_usage |
| 43 | //usage: "[-aHLdclsx" IF_FEATURE_HUMAN_READABLE("hm") "k] [FILE]..." |
| 44 | //usage:#define du_full_usage "\n\n" |
Denys Vlasenko | bb9254a | 2012-03-05 09:59:56 +0100 | [diff] [blame] | 45 | //usage: "Summarize disk space used for each FILE and/or directory\n" |
Pere Orga | 3442538 | 2011-03-31 14:43:25 +0200 | [diff] [blame] | 46 | //usage: "\n -a Show file sizes too" |
| 47 | //usage: "\n -L Follow all symlinks" |
| 48 | //usage: "\n -H Follow symlinks on command line" |
| 49 | //usage: "\n -d N Limit output to directories (and files with -a) of depth < N" |
| 50 | //usage: "\n -c Show grand total" |
| 51 | //usage: "\n -l Count sizes many times if hard linked" |
| 52 | //usage: "\n -s Display only a total for each argument" |
| 53 | //usage: "\n -x Skip directories on different filesystems" |
| 54 | //usage: IF_FEATURE_HUMAN_READABLE( |
Denys Vlasenko | 81b6bf1 | 2012-03-05 09:52:19 +0100 | [diff] [blame] | 55 | //usage: "\n -h Sizes in human readable format (e.g., 1K 243M 2G)" |
Pere Orga | 3442538 | 2011-03-31 14:43:25 +0200 | [diff] [blame] | 56 | //usage: "\n -m Sizes in megabytes" |
| 57 | //usage: ) |
Denys Vlasenko | bb9254a | 2012-03-05 09:59:56 +0100 | [diff] [blame] | 58 | //usage: "\n -k Sizes in kilobytes" IF_FEATURE_DU_DEFAULT_BLOCKSIZE_1K(" (default)") |
| 59 | //usage: IF_NOT_FEATURE_DU_DEFAULT_BLOCKSIZE_1K( |
| 60 | //usage: "\n Default unit is 512 bytes" |
| 61 | //usage: ) |
Pere Orga | 3442538 | 2011-03-31 14:43:25 +0200 | [diff] [blame] | 62 | //usage: |
| 63 | //usage:#define du_example_usage |
| 64 | //usage: "$ du\n" |
| 65 | //usage: "16 ./CVS\n" |
| 66 | //usage: "12 ./kernel-patches/CVS\n" |
| 67 | //usage: "80 ./kernel-patches\n" |
| 68 | //usage: "12 ./tests/CVS\n" |
| 69 | //usage: "36 ./tests\n" |
| 70 | //usage: "12 ./scripts/CVS\n" |
| 71 | //usage: "16 ./scripts\n" |
| 72 | //usage: "12 ./docs/CVS\n" |
| 73 | //usage: "104 ./docs\n" |
| 74 | //usage: "2417 .\n" |
| 75 | |
Denis Vlasenko | b6adbf1 | 2007-05-26 19:00:18 +0000 | [diff] [blame] | 76 | #include "libbb.h" |
Denys Vlasenko | e6a2f4c | 2016-04-21 16:26:30 +0200 | [diff] [blame] | 77 | #include "common_bufsiz.h" |
Eric Andersen | cbe31da | 2001-02-20 06:14:08 +0000 | [diff] [blame] | 78 | |
Denis Vlasenko | 618a302 | 2008-11-11 21:15:56 +0000 | [diff] [blame] | 79 | enum { |
| 80 | OPT_a_files_too = (1 << 0), |
| 81 | OPT_H_follow_links = (1 << 1), |
| 82 | OPT_k_kbytes = (1 << 2), |
| 83 | OPT_L_follow_links = (1 << 3), |
| 84 | OPT_s_total_norecurse = (1 << 4), |
| 85 | OPT_x_one_FS = (1 << 5), |
| 86 | OPT_d_maxdepth = (1 << 6), |
| 87 | OPT_l_hardlinks = (1 << 7), |
| 88 | OPT_c_total = (1 << 8), |
| 89 | OPT_h_for_humans = (1 << 9), |
| 90 | OPT_m_mbytes = (1 << 10), |
| 91 | }; |
| 92 | |
Denis Vlasenko | 21b83cf | 2007-09-03 20:05:58 +0000 | [diff] [blame] | 93 | struct globals { |
Denis Vlasenko | f42ff90 | 2006-12-18 21:22:16 +0000 | [diff] [blame] | 94 | #if ENABLE_FEATURE_HUMAN_READABLE |
Denys Vlasenko | 93dd9fd | 2015-10-15 21:33:34 +0200 | [diff] [blame] | 95 | unsigned long disp_unit; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 96 | #else |
Denis Vlasenko | 21b83cf | 2007-09-03 20:05:58 +0000 | [diff] [blame] | 97 | unsigned disp_k; |
Richard June | 6d0921c | 2001-01-22 22:35:38 +0000 | [diff] [blame] | 98 | #endif |
Denis Vlasenko | 21b83cf | 2007-09-03 20:05:58 +0000 | [diff] [blame] | 99 | int max_print_depth; |
Denis Vlasenko | 21b83cf | 2007-09-03 20:05:58 +0000 | [diff] [blame] | 100 | bool status; |
Denis Vlasenko | 21b83cf | 2007-09-03 20:05:58 +0000 | [diff] [blame] | 101 | int slink_depth; |
| 102 | int du_depth; |
| 103 | dev_t dir_dev; |
Denys Vlasenko | 98a4c7c | 2010-02-04 15:00:15 +0100 | [diff] [blame] | 104 | } FIX_ALIASING; |
Denys Vlasenko | e6a2f4c | 2016-04-21 16:26:30 +0200 | [diff] [blame] | 105 | #define G (*(struct globals*)bb_common_bufsiz1) |
Denys Vlasenko | 47cfbf3 | 2016-04-21 18:18:48 +0200 | [diff] [blame] | 106 | #define INIT_G() do { setup_common_bufsiz(); } while (0) |
John Beppu | e1618e4 | 1999-12-15 18:52:17 +0000 | [diff] [blame] | 107 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 108 | |
Ian Wienand | 694738f | 2012-02-28 03:10:31 +0100 | [diff] [blame] | 109 | static void print(unsigned long long size, const char *filename) |
John Beppu | 0f5e1ab | 1999-12-09 18:23:54 +0000 | [diff] [blame] | 110 | { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 111 | /* TODO - May not want to defer error checking here. */ |
Denis Vlasenko | f42ff90 | 2006-12-18 21:22:16 +0000 | [diff] [blame] | 112 | #if ENABLE_FEATURE_HUMAN_READABLE |
Denys Vlasenko | 93dd9fd | 2015-10-15 21:33:34 +0200 | [diff] [blame] | 113 | # if ENABLE_DESKTOP |
| 114 | /* ~30 bytes of code for extra comtat: |
| 115 | * coreutils' du rounds sizes up: |
| 116 | * for example, 1025k file is shown as "2" by du -m. |
| 117 | * We round to nearest if human-readable [too hard to fix], |
| 118 | * else (fixed scale such as -m), we round up. To that end, |
| 119 | * add yet another half of the unit before displaying: |
| 120 | */ |
| 121 | if (G.disp_unit) |
| 122 | size += (G.disp_unit-1) / (unsigned)(512 * 2); |
| 123 | # endif |
Denys Vlasenko | 0bf44d0 | 2009-10-13 01:25:09 +0200 | [diff] [blame] | 124 | printf("%s\t%s\n", |
Denys Vlasenko | 93dd9fd | 2015-10-15 21:33:34 +0200 | [diff] [blame] | 125 | /* size x 512 / G.disp_unit. |
| 126 | * If G.disp_unit == 0, show one fractional |
| 127 | * and use suffixes |
| 128 | */ |
| 129 | make_human_readable_str(size, 512, G.disp_unit), |
Denis Vlasenko | f42ff90 | 2006-12-18 21:22:16 +0000 | [diff] [blame] | 130 | filename); |
Richard June | 6d0921c | 2001-01-22 22:35:38 +0000 | [diff] [blame] | 131 | #else |
Denis Vlasenko | 21b83cf | 2007-09-03 20:05:58 +0000 | [diff] [blame] | 132 | if (G.disp_k) { |
Glenn L McGrath | c66ebe4 | 2004-03-10 09:58:51 +0000 | [diff] [blame] | 133 | size++; |
| 134 | size >>= 1; |
| 135 | } |
Ian Wienand | 694738f | 2012-02-28 03:10:31 +0100 | [diff] [blame] | 136 | printf("%llu\t%s\n", size, filename); |
Richard June | 6d0921c | 2001-01-22 22:35:38 +0000 | [diff] [blame] | 137 | #endif |
John Beppu | 0f5e1ab | 1999-12-09 18:23:54 +0000 | [diff] [blame] | 138 | } |
| 139 | |
| 140 | /* tiny recursive du */ |
Ian Wienand | 694738f | 2012-02-28 03:10:31 +0100 | [diff] [blame] | 141 | static unsigned long long du(const char *filename) |
John Beppu | 0f5e1ab | 1999-12-09 18:23:54 +0000 | [diff] [blame] | 142 | { |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 143 | struct stat statbuf; |
Ian Wienand | 694738f | 2012-02-28 03:10:31 +0100 | [diff] [blame] | 144 | unsigned long long sum; |
John Beppu | 14c82b6 | 1999-12-10 06:15:27 +0000 | [diff] [blame] | 145 | |
Denis Vlasenko | f42ff90 | 2006-12-18 21:22:16 +0000 | [diff] [blame] | 146 | if (lstat(filename, &statbuf) != 0) { |
Denis Vlasenko | 0c97c9d | 2007-10-01 11:58:38 +0000 | [diff] [blame] | 147 | bb_simple_perror_msg(filename); |
Denis Vlasenko | 21b83cf | 2007-09-03 20:05:58 +0000 | [diff] [blame] | 148 | G.status = EXIT_FAILURE; |
Eric Andersen | e5dfced | 2001-04-09 22:48:12 +0000 | [diff] [blame] | 149 | return 0; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 150 | } |
| 151 | |
Denis Vlasenko | 618a302 | 2008-11-11 21:15:56 +0000 | [diff] [blame] | 152 | if (option_mask32 & OPT_x_one_FS) { |
Denis Vlasenko | 21b83cf | 2007-09-03 20:05:58 +0000 | [diff] [blame] | 153 | if (G.du_depth == 0) { |
| 154 | G.dir_dev = statbuf.st_dev; |
| 155 | } else if (G.dir_dev != statbuf.st_dev) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 156 | return 0; |
Eric Andersen | 8fa1bf7 | 2001-06-30 17:54:20 +0000 | [diff] [blame] | 157 | } |
Erik Andersen | 9ffdaa6 | 2000-02-11 21:55:04 +0000 | [diff] [blame] | 158 | } |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 159 | |
| 160 | sum = statbuf.st_blocks; |
| 161 | |
| 162 | if (S_ISLNK(statbuf.st_mode)) { |
Denis Vlasenko | 618a302 | 2008-11-11 21:15:56 +0000 | [diff] [blame] | 163 | if (G.slink_depth > G.du_depth) { /* -H or -L */ |
Denis Vlasenko | f42ff90 | 2006-12-18 21:22:16 +0000 | [diff] [blame] | 164 | if (stat(filename, &statbuf) != 0) { |
Denis Vlasenko | 0c97c9d | 2007-10-01 11:58:38 +0000 | [diff] [blame] | 165 | bb_simple_perror_msg(filename); |
Denis Vlasenko | 21b83cf | 2007-09-03 20:05:58 +0000 | [diff] [blame] | 166 | G.status = EXIT_FAILURE; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 167 | return 0; |
| 168 | } |
| 169 | sum = statbuf.st_blocks; |
Denis Vlasenko | 21b83cf | 2007-09-03 20:05:58 +0000 | [diff] [blame] | 170 | if (G.slink_depth == 1) { |
Denis Vlasenko | 618a302 | 2008-11-11 21:15:56 +0000 | [diff] [blame] | 171 | /* Convert -H to -L */ |
| 172 | G.slink_depth = INT_MAX; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 173 | } |
| 174 | } |
| 175 | } |
| 176 | |
Denis Vlasenko | 618a302 | 2008-11-11 21:15:56 +0000 | [diff] [blame] | 177 | if (!(option_mask32 & OPT_l_hardlinks) |
| 178 | && statbuf.st_nlink > 1 |
| 179 | ) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 180 | /* Add files/directories with links only once */ |
Denis Vlasenko | e1e93c1 | 2007-03-14 22:06:57 +0000 | [diff] [blame] | 181 | if (is_in_ino_dev_hashtable(&statbuf)) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 182 | return 0; |
| 183 | } |
| 184 | add_to_ino_dev_hashtable(&statbuf, NULL); |
| 185 | } |
| 186 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 187 | if (S_ISDIR(statbuf.st_mode)) { |
| 188 | DIR *dir; |
| 189 | struct dirent *entry; |
Eric Andersen | 04b0354 | 2001-05-07 22:49:43 +0000 | [diff] [blame] | 190 | char *newfile; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 191 | |
Rob Landley | 86b4d64 | 2006-08-03 17:58:17 +0000 | [diff] [blame] | 192 | dir = warn_opendir(filename); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 193 | if (!dir) { |
Denis Vlasenko | 21b83cf | 2007-09-03 20:05:58 +0000 | [diff] [blame] | 194 | G.status = EXIT_FAILURE; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 195 | return sum; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 196 | } |
Erik Andersen | 42387e4 | 2000-02-21 17:27:17 +0000 | [diff] [blame] | 197 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 198 | while ((entry = readdir(dir))) { |
Denis Vlasenko | 618a302 | 2008-11-11 21:15:56 +0000 | [diff] [blame] | 199 | newfile = concat_subpath_file(filename, entry->d_name); |
Denis Vlasenko | f42ff90 | 2006-12-18 21:22:16 +0000 | [diff] [blame] | 200 | if (newfile == NULL) |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 201 | continue; |
Denis Vlasenko | 21b83cf | 2007-09-03 20:05:58 +0000 | [diff] [blame] | 202 | ++G.du_depth; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 203 | sum += du(newfile); |
Denis Vlasenko | 21b83cf | 2007-09-03 20:05:58 +0000 | [diff] [blame] | 204 | --G.du_depth; |
Eric Andersen | e5dfced | 2001-04-09 22:48:12 +0000 | [diff] [blame] | 205 | free(newfile); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 206 | } |
| 207 | closedir(dir); |
Denis Vlasenko | 618a302 | 2008-11-11 21:15:56 +0000 | [diff] [blame] | 208 | } else { |
| 209 | if (!(option_mask32 & OPT_a_files_too) && G.du_depth != 0) |
| 210 | return sum; |
Erik Andersen | 27fdd08 | 2000-02-19 18:16:49 +0000 | [diff] [blame] | 211 | } |
Denis Vlasenko | 21b83cf | 2007-09-03 20:05:58 +0000 | [diff] [blame] | 212 | if (G.du_depth <= G.max_print_depth) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 213 | print(sum, filename); |
| 214 | } |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 215 | return sum; |
John Beppu | 0f5e1ab | 1999-12-09 18:23:54 +0000 | [diff] [blame] | 216 | } |
| 217 | |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 218 | int du_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 219 | int du_main(int argc UNUSED_PARAM, char **argv) |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 220 | { |
Ian Wienand | 694738f | 2012-02-28 03:10:31 +0100 | [diff] [blame] | 221 | unsigned long long total; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 222 | int slink_depth_save; |
Denis Vlasenko | 67b23e6 | 2006-10-03 21:00:06 +0000 | [diff] [blame] | 223 | unsigned opt; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 224 | |
Denys Vlasenko | 1671424 | 2011-09-21 01:59:15 +0200 | [diff] [blame] | 225 | INIT_G(); |
| 226 | |
Denis Vlasenko | f42ff90 | 2006-12-18 21:22:16 +0000 | [diff] [blame] | 227 | #if ENABLE_FEATURE_HUMAN_READABLE |
Denys Vlasenko | 93dd9fd | 2015-10-15 21:33:34 +0200 | [diff] [blame] | 228 | IF_FEATURE_DU_DEFAULT_BLOCKSIZE_1K(G.disp_unit = 1024;) |
| 229 | IF_NOT_FEATURE_DU_DEFAULT_BLOCKSIZE_1K(G.disp_unit = 512;) |
Denis Vlasenko | 21b83cf | 2007-09-03 20:05:58 +0000 | [diff] [blame] | 230 | if (getenv("POSIXLY_CORRECT")) /* TODO - a new libbb function? */ |
Denys Vlasenko | 93dd9fd | 2015-10-15 21:33:34 +0200 | [diff] [blame] | 231 | G.disp_unit = 512; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 232 | #else |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 233 | IF_FEATURE_DU_DEFAULT_BLOCKSIZE_1K(G.disp_k = 1;) |
| 234 | /* IF_NOT_FEATURE_DU_DEFAULT_BLOCKSIZE_1K(G.disp_k = 0;) - G is pre-zeroed */ |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 235 | #endif |
Denis Vlasenko | 21b83cf | 2007-09-03 20:05:58 +0000 | [diff] [blame] | 236 | G.max_print_depth = INT_MAX; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 237 | |
Denis Vlasenko | e1a0d48 | 2006-10-20 13:28:22 +0000 | [diff] [blame] | 238 | /* Note: SUSv3 specifies that -a and -s options cannot be used together |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 239 | * in strictly conforming applications. However, it also says that some |
| 240 | * du implementations may produce output when -a and -s are used together. |
| 241 | * gnu du exits with an error code in this case. We choose to simply |
| 242 | * ignore -a. This is consistent with -s being equivalent to -d 0. |
| 243 | */ |
Denis Vlasenko | f42ff90 | 2006-12-18 21:22:16 +0000 | [diff] [blame] | 244 | #if ENABLE_FEATURE_HUMAN_READABLE |
Denys Vlasenko | 237bedd | 2016-07-06 21:58:02 +0200 | [diff] [blame] | 245 | opt_complementary = "h-km:k-hm:m-hk:H-L:L-H:s-d:d-s"; |
| 246 | opt = getopt32(argv, "aHkLsx" "d:+" "lc" "hm", &G.max_print_depth); |
Denis Vlasenko | 21b83cf | 2007-09-03 20:05:58 +0000 | [diff] [blame] | 247 | argv += optind; |
Denis Vlasenko | 618a302 | 2008-11-11 21:15:56 +0000 | [diff] [blame] | 248 | if (opt & OPT_h_for_humans) { |
Denys Vlasenko | 93dd9fd | 2015-10-15 21:33:34 +0200 | [diff] [blame] | 249 | G.disp_unit = 0; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 250 | } |
Denis Vlasenko | 618a302 | 2008-11-11 21:15:56 +0000 | [diff] [blame] | 251 | if (opt & OPT_m_mbytes) { |
Denys Vlasenko | 93dd9fd | 2015-10-15 21:33:34 +0200 | [diff] [blame] | 252 | G.disp_unit = 1024*1024; |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 253 | } |
Denis Vlasenko | 618a302 | 2008-11-11 21:15:56 +0000 | [diff] [blame] | 254 | if (opt & OPT_k_kbytes) { |
Denys Vlasenko | 93dd9fd | 2015-10-15 21:33:34 +0200 | [diff] [blame] | 255 | G.disp_unit = 1024; |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 256 | } |
| 257 | #else |
Denys Vlasenko | 237bedd | 2016-07-06 21:58:02 +0200 | [diff] [blame] | 258 | opt_complementary = "H-L:L-H:s-d:d-s"; |
| 259 | opt = getopt32(argv, "aHkLsx" "d:+" "lc", &G.max_print_depth); |
Denis Vlasenko | 21b83cf | 2007-09-03 20:05:58 +0000 | [diff] [blame] | 260 | argv += optind; |
Denis Vlasenko | f42ff90 | 2006-12-18 21:22:16 +0000 | [diff] [blame] | 261 | #if !ENABLE_FEATURE_DU_DEFAULT_BLOCKSIZE_1K |
Denis Vlasenko | 618a302 | 2008-11-11 21:15:56 +0000 | [diff] [blame] | 262 | if (opt & OPT_k_kbytes) { |
Denis Vlasenko | 21b83cf | 2007-09-03 20:05:58 +0000 | [diff] [blame] | 263 | G.disp_k = 1; |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 264 | } |
| 265 | #endif |
| 266 | #endif |
Denis Vlasenko | 618a302 | 2008-11-11 21:15:56 +0000 | [diff] [blame] | 267 | if (opt & OPT_H_follow_links) { |
Denis Vlasenko | 21b83cf | 2007-09-03 20:05:58 +0000 | [diff] [blame] | 268 | G.slink_depth = 1; |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 269 | } |
Denis Vlasenko | 618a302 | 2008-11-11 21:15:56 +0000 | [diff] [blame] | 270 | if (opt & OPT_L_follow_links) { |
Denis Vlasenko | 21b83cf | 2007-09-03 20:05:58 +0000 | [diff] [blame] | 271 | G.slink_depth = INT_MAX; |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 272 | } |
Denis Vlasenko | 618a302 | 2008-11-11 21:15:56 +0000 | [diff] [blame] | 273 | if (opt & OPT_s_total_norecurse) { |
Denis Vlasenko | 21b83cf | 2007-09-03 20:05:58 +0000 | [diff] [blame] | 274 | G.max_print_depth = 0; |
Denis Vlasenko | f42ff90 | 2006-12-18 21:22:16 +0000 | [diff] [blame] | 275 | } |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 276 | |
| 277 | /* go through remaining args (if any) */ |
Denis Vlasenko | 21b83cf | 2007-09-03 20:05:58 +0000 | [diff] [blame] | 278 | if (!*argv) { |
Denis Vlasenko | a41fdf3 | 2007-01-29 22:51:00 +0000 | [diff] [blame] | 279 | *--argv = (char*)"."; |
Denis Vlasenko | 21b83cf | 2007-09-03 20:05:58 +0000 | [diff] [blame] | 280 | if (G.slink_depth == 1) { |
| 281 | G.slink_depth = 0; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 282 | } |
| 283 | } |
| 284 | |
Denis Vlasenko | 21b83cf | 2007-09-03 20:05:58 +0000 | [diff] [blame] | 285 | slink_depth_save = G.slink_depth; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 286 | total = 0; |
| 287 | do { |
| 288 | total += du(*argv); |
Denis Vlasenko | 618a302 | 2008-11-11 21:15:56 +0000 | [diff] [blame] | 289 | /* otherwise du /dir /dir won't show /dir twice: */ |
| 290 | reset_ino_dev_hashtable(); |
Denis Vlasenko | 21b83cf | 2007-09-03 20:05:58 +0000 | [diff] [blame] | 291 | G.slink_depth = slink_depth_save; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 292 | } while (*++argv); |
Denis Vlasenko | 21b83cf | 2007-09-03 20:05:58 +0000 | [diff] [blame] | 293 | |
Denis Vlasenko | 618a302 | 2008-11-11 21:15:56 +0000 | [diff] [blame] | 294 | if (opt & OPT_c_total) |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 295 | print(total, "total"); |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 296 | |
Denis Vlasenko | 21b83cf | 2007-09-03 20:05:58 +0000 | [diff] [blame] | 297 | fflush_stdout_and_exit(G.status); |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 298 | } |