source: MondoRescue/branches/2.2.9/mindi-busybox/coreutils/du.c@ 2893

Last change on this file since 2893 was 2725, checked in by Bruno Cornec, 13 years ago
  • Update mindi-busybox to 1.18.3 to avoid problems with the tar command which is now failing on recent versions with busybox 1.7.3
File size: 5.7 KB
RevLine 
[821]1/* vi: set sw=4 ts=4: */
2/*
3 * Mini du implementation for busybox
4 *
5 * Copyright (C) 1999,2000,2001 by Lineo, inc. and John Beppu
6 * Copyright (C) 1999,2000,2001 by John Beppu <beppu@codepoet.org>
7 * Copyright (C) 2002 Edward Betts <edward@debian.org>
8 *
[2725]9 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
[821]10 */
11
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
[1765]26#include "libbb.h"
[821]27
[2725]28enum {
29 OPT_a_files_too = (1 << 0),
30 OPT_H_follow_links = (1 << 1),
31 OPT_k_kbytes = (1 << 2),
32 OPT_L_follow_links = (1 << 3),
33 OPT_s_total_norecurse = (1 << 4),
34 OPT_x_one_FS = (1 << 5),
35 OPT_d_maxdepth = (1 << 6),
36 OPT_l_hardlinks = (1 << 7),
37 OPT_c_total = (1 << 8),
38 OPT_h_for_humans = (1 << 9),
39 OPT_m_mbytes = (1 << 10),
40};
41
42struct globals {
[1765]43#if ENABLE_FEATURE_HUMAN_READABLE
[2725]44 unsigned long disp_hr;
[821]45#else
[2725]46 unsigned disp_k;
[821]47#endif
[2725]48 int max_print_depth;
49 bool status;
50 int slink_depth;
51 int du_depth;
52 dev_t dir_dev;
53} FIX_ALIASING;
54#define G (*(struct globals*)&bb_common_bufsiz1)
[821]55
56
[2725]57static void print(unsigned long size, const char *filename)
[821]58{
59 /* TODO - May not want to defer error checking here. */
[1765]60#if ENABLE_FEATURE_HUMAN_READABLE
[2725]61 printf("%s\t%s\n",
62 /* size x 512 / G.disp_hr, show one fractional,
63 * use suffixes if G.disp_hr == 0 */
64 make_human_readable_str(size, 512, G.disp_hr),
[1765]65 filename);
[821]66#else
[2725]67 if (G.disp_k) {
[821]68 size++;
69 size >>= 1;
70 }
[2725]71 printf("%lu\t%s\n", size, filename);
[821]72#endif
73}
74
75/* tiny recursive du */
[2725]76static unsigned long du(const char *filename)
[821]77{
78 struct stat statbuf;
[2725]79 unsigned long sum;
[821]80
[1765]81 if (lstat(filename, &statbuf) != 0) {
[2725]82 bb_simple_perror_msg(filename);
83 G.status = EXIT_FAILURE;
[821]84 return 0;
85 }
86
[2725]87 if (option_mask32 & OPT_x_one_FS) {
88 if (G.du_depth == 0) {
89 G.dir_dev = statbuf.st_dev;
90 } else if (G.dir_dev != statbuf.st_dev) {
[821]91 return 0;
92 }
93 }
94
95 sum = statbuf.st_blocks;
96
97 if (S_ISLNK(statbuf.st_mode)) {
[2725]98 if (G.slink_depth > G.du_depth) { /* -H or -L */
[1765]99 if (stat(filename, &statbuf) != 0) {
[2725]100 bb_simple_perror_msg(filename);
101 G.status = EXIT_FAILURE;
[821]102 return 0;
103 }
104 sum = statbuf.st_blocks;
[2725]105 if (G.slink_depth == 1) {
106 /* Convert -H to -L */
107 G.slink_depth = INT_MAX;
[821]108 }
109 }
110 }
111
[2725]112 if (!(option_mask32 & OPT_l_hardlinks)
113 && statbuf.st_nlink > 1
114 ) {
[821]115 /* Add files/directories with links only once */
[1765]116 if (is_in_ino_dev_hashtable(&statbuf)) {
[821]117 return 0;
118 }
119 add_to_ino_dev_hashtable(&statbuf, NULL);
120 }
121
122 if (S_ISDIR(statbuf.st_mode)) {
123 DIR *dir;
124 struct dirent *entry;
125 char *newfile;
126
[1765]127 dir = warn_opendir(filename);
[821]128 if (!dir) {
[2725]129 G.status = EXIT_FAILURE;
[821]130 return sum;
131 }
132
133 while ((entry = readdir(dir))) {
[2725]134 newfile = concat_subpath_file(filename, entry->d_name);
[1765]135 if (newfile == NULL)
[821]136 continue;
[2725]137 ++G.du_depth;
[821]138 sum += du(newfile);
[2725]139 --G.du_depth;
[821]140 free(newfile);
141 }
142 closedir(dir);
[2725]143 } else {
144 if (!(option_mask32 & OPT_a_files_too) && G.du_depth != 0)
145 return sum;
[821]146 }
[2725]147 if (G.du_depth <= G.max_print_depth) {
[821]148 print(sum, filename);
149 }
150 return sum;
151}
152
[2725]153int du_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
154int du_main(int argc UNUSED_PARAM, char **argv)
[821]155{
[2725]156 unsigned long total;
[821]157 int slink_depth_save;
[1765]158 unsigned opt;
[821]159
[1765]160#if ENABLE_FEATURE_HUMAN_READABLE
[2725]161 IF_FEATURE_DU_DEFAULT_BLOCKSIZE_1K(G.disp_hr = 1024;)
162 IF_NOT_FEATURE_DU_DEFAULT_BLOCKSIZE_1K(G.disp_hr = 512;)
163 if (getenv("POSIXLY_CORRECT")) /* TODO - a new libbb function? */
164 G.disp_hr = 512;
[821]165#else
[2725]166 IF_FEATURE_DU_DEFAULT_BLOCKSIZE_1K(G.disp_k = 1;)
167 /* IF_NOT_FEATURE_DU_DEFAULT_BLOCKSIZE_1K(G.disp_k = 0;) - G is pre-zeroed */
[821]168#endif
[2725]169 G.max_print_depth = INT_MAX;
[821]170
[1765]171 /* Note: SUSv3 specifies that -a and -s options cannot be used together
[821]172 * in strictly conforming applications. However, it also says that some
173 * du implementations may produce output when -a and -s are used together.
174 * gnu du exits with an error code in this case. We choose to simply
175 * ignore -a. This is consistent with -s being equivalent to -d 0.
176 */
[1765]177#if ENABLE_FEATURE_HUMAN_READABLE
[2725]178 opt_complementary = "h-km:k-hm:m-hk:H-L:L-H:s-d:d-s:d+";
179 opt = getopt32(argv, "aHkLsx" "d:" "lc" "hm", &G.max_print_depth);
180 argv += optind;
181 if (opt & OPT_h_for_humans) {
182 G.disp_hr = 0;
[821]183 }
[2725]184 if (opt & OPT_m_mbytes) {
185 G.disp_hr = 1024*1024;
[821]186 }
[2725]187 if (opt & OPT_k_kbytes) {
188 G.disp_hr = 1024;
[821]189 }
190#else
[2725]191 opt_complementary = "H-L:L-H:s-d:d-s:d+";
192 opt = getopt32(argv, "aHkLsx" "d:" "lc", &G.max_print_depth);
193 argv += optind;
[1765]194#if !ENABLE_FEATURE_DU_DEFAULT_BLOCKSIZE_1K
[2725]195 if (opt & OPT_k_kbytes) {
196 G.disp_k = 1;
[821]197 }
198#endif
199#endif
[2725]200 if (opt & OPT_H_follow_links) {
201 G.slink_depth = 1;
[821]202 }
[2725]203 if (opt & OPT_L_follow_links) {
204 G.slink_depth = INT_MAX;
[821]205 }
[2725]206 if (opt & OPT_s_total_norecurse) {
207 G.max_print_depth = 0;
[821]208 }
209
210 /* go through remaining args (if any) */
[2725]211 if (!*argv) {
[1765]212 *--argv = (char*)".";
[2725]213 if (G.slink_depth == 1) {
214 G.slink_depth = 0;
[821]215 }
216 }
217
[2725]218 slink_depth_save = G.slink_depth;
[821]219 total = 0;
220 do {
221 total += du(*argv);
[2725]222 /* otherwise du /dir /dir won't show /dir twice: */
223 reset_ino_dev_hashtable();
224 G.slink_depth = slink_depth_save;
[821]225 } while (*++argv);
[2725]226
227 if (opt & OPT_c_total)
[821]228 print(total, "total");
229
[2725]230 fflush_stdout_and_exit(G.status);
[821]231}
Note: See TracBrowser for help on using the repository browser.