b5e68d8f84758636079c7df862d60b1a5fdeb764
[oweals/busybox.git] / coreutils / du.c
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  *
9  * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
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
26 #include "libbb.h"
27
28 struct globals {
29 #if ENABLE_FEATURE_HUMAN_READABLE
30         unsigned long disp_hr;
31 #else
32         unsigned disp_k;
33 #endif
34
35         int max_print_depth;
36         nlink_t count_hardlinks;
37
38         bool status;
39         bool one_file_system;
40         int print_files;
41         int slink_depth;
42         int du_depth;
43         dev_t dir_dev;
44 };
45 #define G (*(struct globals*)&bb_common_bufsiz1)
46
47
48 static void print(unsigned long size, const char *filename)
49 {
50         /* TODO - May not want to defer error checking here. */
51 #if ENABLE_FEATURE_HUMAN_READABLE
52         printf("%s\t%s\n", make_human_readable_str(size, 512, G.disp_hr),
53                         filename);
54 #else
55         if (G.disp_k) {
56                 size++;
57                 size >>= 1;
58         }
59         printf("%ld\t%s\n", size, filename);
60 #endif
61 }
62
63 /* tiny recursive du */
64 static unsigned long du(const char *filename)
65 {
66         struct stat statbuf;
67         unsigned long sum;
68
69         if (lstat(filename, &statbuf) != 0) {
70                 bb_perror_msg("%s", filename);
71                 G.status = EXIT_FAILURE;
72                 return 0;
73         }
74
75         if (G.one_file_system) {
76                 if (G.du_depth == 0) {
77                         G.dir_dev = statbuf.st_dev;
78                 } else if (G.dir_dev != statbuf.st_dev) {
79                         return 0;
80                 }
81         }
82
83         sum = statbuf.st_blocks;
84
85         if (S_ISLNK(statbuf.st_mode)) {
86                 if (G.slink_depth > G.du_depth) {       /* -H or -L */
87                         if (stat(filename, &statbuf) != 0) {
88                                 bb_perror_msg("%s", filename);
89                                 G.status = EXIT_FAILURE;
90                                 return 0;
91                         }
92                         sum = statbuf.st_blocks;
93                         if (G.slink_depth == 1) {
94                                 G.slink_depth = INT_MAX;        /* Convert -H to -L. */
95                         }
96                 }
97         }
98
99         if (statbuf.st_nlink > G.count_hardlinks) {
100                 /* Add files/directories with links only once */
101                 if (is_in_ino_dev_hashtable(&statbuf)) {
102                         return 0;
103                 }
104                 add_to_ino_dev_hashtable(&statbuf, NULL);
105         }
106
107         if (S_ISDIR(statbuf.st_mode)) {
108                 DIR *dir;
109                 struct dirent *entry;
110                 char *newfile;
111
112                 dir = warn_opendir(filename);
113                 if (!dir) {
114                         G.status = EXIT_FAILURE;
115                         return sum;
116                 }
117
118                 newfile = last_char_is(filename, '/');
119                 if (newfile)
120                         *newfile = '\0';
121
122                 while ((entry = readdir(dir))) {
123                         char *name = entry->d_name;
124
125                         newfile = concat_subpath_file(filename, name);
126                         if (newfile == NULL)
127                                 continue;
128                         ++G.du_depth;
129                         sum += du(newfile);
130                         --G.du_depth;
131                         free(newfile);
132                 }
133                 closedir(dir);
134         } else if (G.du_depth > G.print_files) {
135                 return sum;
136         }
137         if (G.du_depth <= G.max_print_depth) {
138                 print(sum, filename);
139         }
140         return sum;
141 }
142
143 int du_main(int argc, char **argv);
144 int du_main(int argc, char **argv)
145 {
146         unsigned long total;
147         int slink_depth_save;
148         bool print_final_total;
149         char *smax_print_depth;
150         unsigned opt;
151
152 #if ENABLE_FEATURE_HUMAN_READABLE
153         USE_FEATURE_DU_DEFAULT_BLOCKSIZE_1K(G.disp_hr = 1024;)
154         SKIP_FEATURE_DU_DEFAULT_BLOCKSIZE_1K(G.disp_hr = 512;)
155         if (getenv("POSIXLY_CORRECT"))  /* TODO - a new libbb function? */
156                 G.disp_hr = 512;
157 #else
158         USE_FEATURE_DU_DEFAULT_BLOCKSIZE_1K(G.disp_k = 1;)
159         /* SKIP_FEATURE_DU_DEFAULT_BLOCKSIZE_1K(G.disp_k = 0;) - G is pre-zeroed */
160 #endif
161         G.max_print_depth = INT_MAX;
162         G.count_hardlinks = 1;
163
164         /* Note: SUSv3 specifies that -a and -s options cannot be used together
165          * in strictly conforming applications.  However, it also says that some
166          * du implementations may produce output when -a and -s are used together.
167          * gnu du exits with an error code in this case.  We choose to simply
168          * ignore -a.  This is consistent with -s being equivalent to -d 0.
169          */
170 #if ENABLE_FEATURE_HUMAN_READABLE
171         opt_complementary = "h-km:k-hm:m-hk:H-L:L-H:s-d:d-s";
172         opt = getopt32(argv, "aHkLsx" "d:" "lc" "hm", &smax_print_depth);
173         argv += optind;
174         if (opt & (1 << 9)) {
175                 /* -h opt */
176                 G.disp_hr = 0;
177         }
178         if (opt & (1 << 10)) {
179                 /* -m opt */
180                 G.disp_hr = 1024*1024;
181         }
182         if (opt & (1 << 2)) {
183                 /* -k opt */
184                 G.disp_hr = 1024;
185         }
186 #else
187         opt_complementary = "H-L:L-H:s-d:d-s";
188         opt = getopt32(argv, "aHkLsx" "d:" "lc", &smax_print_depth);
189         argv += optind;
190 #if !ENABLE_FEATURE_DU_DEFAULT_BLOCKSIZE_1K
191         if (opt & (1 << 2)) {
192                 /* -k opt */
193                 G.disp_k = 1;
194         }
195 #endif
196 #endif
197         if (opt & (1 << 0)) {
198                 /* -a opt */
199                 G.print_files = INT_MAX;
200         }
201         if (opt & (1 << 1)) {
202                 /* -H opt */
203                 G.slink_depth = 1;
204         }
205         if (opt & (1 << 3)) {
206                 /* -L opt */
207                 G.slink_depth = INT_MAX;
208         }
209         if (opt & (1 << 4)) {
210                 /* -s opt */
211                 G.max_print_depth = 0;
212         }
213         G.one_file_system = opt & (1 << 5); /* -x opt */
214         if (opt & (1 << 6)) {
215                 /* -d opt */
216                 G.max_print_depth = xatoi_u(smax_print_depth);
217         }
218         if (opt & (1 << 7)) {
219                 /* -l opt */
220                 G.count_hardlinks = MAXINT(nlink_t);
221         }
222         print_final_total = opt & (1 << 8); /* -c opt */
223
224         /* go through remaining args (if any) */
225         if (!*argv) {
226                 *--argv = (char*)".";
227                 if (G.slink_depth == 1) {
228                         G.slink_depth = 0;
229                 }
230         }
231
232         slink_depth_save = G.slink_depth;
233         total = 0;
234         do {
235                 total += du(*argv);
236                 G.slink_depth = slink_depth_save;
237         } while (*++argv);
238
239         if (ENABLE_FEATURE_CLEAN_UP)
240                 reset_ino_dev_hashtable();
241         if (print_final_total)
242                 print(total, "total");
243
244         fflush_stdout_and_exit(G.status);
245 }