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