blob: 29427c779571bba0439e3effe762e4136f43f661 [file] [log] [blame]
Erik Andersene49d5ec2000-02-08 19:58:47 +00001/* vi: set sw=4 ts=4: */
John Beppu0f5e1ab1999-12-09 18:23:54 +00002/*
3 * Mini du implementation for busybox
4 *
Eric Andersenbdfd0d72001-10-24 05:00:29 +00005 * Copyright (C) 1999,2000,2001 by Lineo, inc. and John Beppu
6 * Copyright (C) 1999,2000,2001 by John Beppu <beppu@codepoet.org>
Eric Andersen265d2292002-04-06 23:16:44 +00007 * Copyright (C) 2002 Edward Betts <edward@debian.org>
John Beppu0f5e1ab1999-12-09 18:23:54 +00008 *
Bernhard Reutner-Fischercb448162006-04-12 07:35:12 +00009 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
John Beppu0f5e1ab1999-12-09 18:23:54 +000010 */
11
Manuel Novoa III cad53642003-03-19 09:13:01 +000012/* 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
Eric Andersened3ef502001-01-27 08:24:39 +000026#include <stdlib.h>
Manuel Novoa III cad53642003-03-19 09:13:01 +000027#include <limits.h>
28#include <unistd.h>
29#include <dirent.h>
30#include <sys/stat.h>
Eric Andersencbe31da2001-02-20 06:14:08 +000031#include "busybox.h"
Eric Andersencbe31da2001-02-20 06:14:08 +000032
Eric Andersenbdfd0d72001-10-24 05:00:29 +000033#ifdef CONFIG_FEATURE_HUMAN_READABLE
Rob Landley5fe8d5b2006-04-25 22:40:53 +000034# ifdef CONFIG_FEATURE_DU_DEFAULT_BLOCKSIZE_1K
Eric Andersenec9fad92001-03-07 06:04:08 +000035static unsigned long disp_hr = KILOBYTE;
Manuel Novoa III cad53642003-03-19 09:13:01 +000036# else
37static unsigned long disp_hr = 512;
38# endif
Rob Landley5fe8d5b2006-04-25 22:40:53 +000039#elif defined CONFIG_FEATURE_DU_DEFAULT_BLOCKSIZE_1K
Manuel Novoa III cad53642003-03-19 09:13:01 +000040static unsigned int disp_k = 1;
41#else
42static unsigned int disp_k; /* bss inits to 0 */
Richard June6d0921c2001-01-22 22:35:38 +000043#endif
44
Manuel Novoa III cad53642003-03-19 09:13:01 +000045static int max_print_depth = INT_MAX;
"Vladimir N. Oleynik"57545c82006-01-31 12:06:57 +000046static nlink_t count_hardlinks = 1;
Manuel Novoa III cad53642003-03-19 09:13:01 +000047
48static int status
49#if EXIT_SUCCESS == 0
50 = EXIT_SUCCESS
51#endif
52 ;
53static int print_files;
54static int slink_depth;
55static int du_depth;
56static int one_file_system;
Glenn L McGrath14dad702002-08-23 03:25:22 +000057static dev_t dir_dev;
John Beppue1618e41999-12-15 18:52:17 +000058
Erik Andersene49d5ec2000-02-08 19:58:47 +000059
Manuel Novoa III cad53642003-03-19 09:13:01 +000060static void print(long size, char *filename)
John Beppu0f5e1ab1999-12-09 18:23:54 +000061{
Manuel Novoa III cad53642003-03-19 09:13:01 +000062 /* TODO - May not want to defer error checking here. */
Eric Andersenbdfd0d72001-10-24 05:00:29 +000063#ifdef CONFIG_FEATURE_HUMAN_READABLE
Manuel Novoa III cad53642003-03-19 09:13:01 +000064 bb_printf("%s\t%s\n", make_human_readable_str(size, 512, disp_hr),
Glenn L McGrath14dad702002-08-23 03:25:22 +000065 filename);
Richard June6d0921c2001-01-22 22:35:38 +000066#else
Glenn L McGrathc66ebe42004-03-10 09:58:51 +000067 if (disp_k) {
68 size++;
69 size >>= 1;
70 }
71 bb_printf("%ld\t%s\n", size, filename);
Richard June6d0921c2001-01-22 22:35:38 +000072#endif
John Beppu0f5e1ab1999-12-09 18:23:54 +000073}
74
75/* tiny recursive du */
Erik Andersene49d5ec2000-02-08 19:58:47 +000076static long du(char *filename)
John Beppu0f5e1ab1999-12-09 18:23:54 +000077{
Erik Andersene49d5ec2000-02-08 19:58:47 +000078 struct stat statbuf;
Erik Andersenfac10d72000-02-07 05:29:42 +000079 long sum;
John Beppu14c82b61999-12-10 06:15:27 +000080
Erik Andersene49d5ec2000-02-08 19:58:47 +000081 if ((lstat(filename, &statbuf)) != 0) {
Manuel Novoa III cad53642003-03-19 09:13:01 +000082 bb_perror_msg("%s", filename);
83 status = EXIT_FAILURE;
Eric Andersene5dfced2001-04-09 22:48:12 +000084 return 0;
Erik Andersene49d5ec2000-02-08 19:58:47 +000085 }
86
Manuel Novoa III cad53642003-03-19 09:13:01 +000087 if (one_file_system) {
88 if (du_depth == 0) {
89 dir_dev = statbuf.st_dev;
90 } else if (dir_dev != statbuf.st_dev) {
91 return 0;
Eric Andersen8fa1bf72001-06-30 17:54:20 +000092 }
Erik Andersen9ffdaa62000-02-11 21:55:04 +000093 }
Manuel Novoa III cad53642003-03-19 09:13:01 +000094
95 sum = statbuf.st_blocks;
96
97 if (S_ISLNK(statbuf.st_mode)) {
98 if (slink_depth > du_depth) { /* -H or -L */
99 if ((stat(filename, &statbuf)) != 0) {
100 bb_perror_msg("%s", filename);
101 status = EXIT_FAILURE;
102 return 0;
103 }
104 sum = statbuf.st_blocks;
105 if (slink_depth == 1) {
106 slink_depth = INT_MAX; /* Convert -H to -L. */
107 }
108 }
109 }
110
111 if (statbuf.st_nlink > count_hardlinks) {
112 /* Add files/directories with links only once */
113 if (is_in_ino_dev_hashtable(&statbuf, NULL)) {
114 return 0;
115 }
116 add_to_ino_dev_hashtable(&statbuf, NULL);
117 }
118
Erik Andersene49d5ec2000-02-08 19:58:47 +0000119 if (S_ISDIR(statbuf.st_mode)) {
120 DIR *dir;
121 struct dirent *entry;
Eric Andersen04b03542001-05-07 22:49:43 +0000122 char *newfile;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000123
Rob Landley86b4d642006-08-03 17:58:17 +0000124 dir = warn_opendir(filename);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000125 if (!dir) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000126 status = EXIT_FAILURE;
127 return sum;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000128 }
Erik Andersen42387e42000-02-21 17:27:17 +0000129
Eric Andersen04b03542001-05-07 22:49:43 +0000130 newfile = last_char_is(filename, '/');
131 if (newfile)
132 *newfile = '\0';
Erik Andersen42387e42000-02-21 17:27:17 +0000133
Erik Andersene49d5ec2000-02-08 19:58:47 +0000134 while ((entry = readdir(dir))) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000135 char *name = entry->d_name;
136
Glenn L McGrath393183d2003-05-26 14:07:50 +0000137 newfile = concat_subpath_file(filename, name);
138 if(newfile == NULL)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000139 continue;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000140 ++du_depth;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000141 sum += du(newfile);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000142 --du_depth;
Eric Andersene5dfced2001-04-09 22:48:12 +0000143 free(newfile);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000144 }
145 closedir(dir);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000146 } else if (du_depth > print_files) {
147 return sum;
Erik Andersen27fdd082000-02-19 18:16:49 +0000148 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000149 if (du_depth <= max_print_depth) {
150 print(sum, filename);
151 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000152 return sum;
John Beppu0f5e1ab1999-12-09 18:23:54 +0000153}
154
Erik Andersene49d5ec2000-02-08 19:58:47 +0000155int du_main(int argc, char **argv)
156{
Manuel Novoa III cad53642003-03-19 09:13:01 +0000157 long total;
158 int slink_depth_save;
Eric Andersen8876fb22003-06-20 09:01:58 +0000159 int print_final_total;
160 char *smax_print_depth;
161 unsigned long opt;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000162
Rob Landley5fe8d5b2006-04-25 22:40:53 +0000163#ifdef CONFIG_FEATURE_DU_DEFUALT_BLOCKSIZE_1K
Manuel Novoa III cad53642003-03-19 09:13:01 +0000164 if (getenv("POSIXLY_CORRECT")) { /* TODO - a new libbb function? */
165#ifdef CONFIG_FEATURE_HUMAN_READABLE
166 disp_hr = 512;
167#else
168 disp_k = 0;
169#endif
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000170 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000171#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000172
Manuel Novoa III cad53642003-03-19 09:13:01 +0000173 /* Note: SUSv3 specifies that -a and -s options can not be used together
174 * in strictly conforming applications. However, it also says that some
175 * du implementations may produce output when -a and -s are used together.
176 * gnu du exits with an error code in this case. We choose to simply
177 * ignore -a. This is consistent with -s being equivalent to -d 0.
178 */
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000179#ifdef CONFIG_FEATURE_HUMAN_READABLE
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000180 bb_opt_complementally = "h-km:k-hm:m-hk:H-L:L-H:s-d:d-s";
Eric Andersen8876fb22003-06-20 09:01:58 +0000181 opt = bb_getopt_ulflags(argc, argv, "aHkLsx" "d:" "lc" "hm", &smax_print_depth);
182 if((opt & (1 << 9))) {
183 /* -h opt */
184 disp_hr = 0;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000185 }
Eric Andersen8876fb22003-06-20 09:01:58 +0000186 if((opt & (1 << 10))) {
187 /* -m opt */
188 disp_hr = MEGABYTE;
189 }
190 if((opt & (1 << 2))) {
191 /* -k opt */
192 disp_hr = KILOBYTE;
193 }
194#else
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000195 bb_opt_complementally = "H-L:L-H:s-d:d-s";
Eric Andersen8876fb22003-06-20 09:01:58 +0000196 opt = bb_getopt_ulflags(argc, argv, "aHkLsx" "d:" "lc", &smax_print_depth);
Rob Landley5fe8d5b2006-04-25 22:40:53 +0000197#if !defined CONFIG_FEATURE_DU_DEFAULT_BLOCKSIZE_1K
Eric Andersen8876fb22003-06-20 09:01:58 +0000198 if((opt & (1 << 2))) {
199 /* -k opt */
200 disp_k = 1;
201 }
202#endif
203#endif
204 if((opt & (1 << 0))) {
205 /* -a opt */
206 print_files = INT_MAX;
207 }
208 if((opt & (1 << 1))) {
209 /* -H opt */
210 slink_depth = 1;
211 }
212 if((opt & (1 << 3))) {
213 /* -L opt */
214 slink_depth = INT_MAX;
215 }
216 if((opt & (1 << 4))) {
217 /* -s opt */
218 max_print_depth = 0;
219 }
220 one_file_system = opt & (1 << 5); /* -x opt */
221 if((opt & (1 << 6))) {
222 /* -d opt */
223 max_print_depth = bb_xgetularg10_bnd(smax_print_depth, 0, INT_MAX);
224 }
225 if((opt & (1 << 7))) {
226 /* -l opt */
Glenn L McGrath44c0e172004-03-10 09:10:53 +0000227 count_hardlinks = INT_MAX;
Eric Andersen8876fb22003-06-20 09:01:58 +0000228 }
229 print_final_total = opt & (1 << 8); /* -c opt */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000230
231 /* go through remaining args (if any) */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000232 argv += optind;
Eric Andersen17ad45a2000-07-14 18:38:26 +0000233 if (optind >= argc) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000234 *--argv = ".";
235 if (slink_depth == 1) {
236 slink_depth = 0;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000237 }
238 }
239
Manuel Novoa III cad53642003-03-19 09:13:01 +0000240 slink_depth_save = slink_depth;
241 total = 0;
242 do {
243 total += du(*argv);
244 slink_depth = slink_depth_save;
245 } while (*++argv);
Eric Andersen8876fb22003-06-20 09:01:58 +0000246#ifdef CONFIG_FEATURE_CLEAN_UP
Manuel Novoa III cad53642003-03-19 09:13:01 +0000247 reset_ino_dev_hashtable();
Eric Andersen8876fb22003-06-20 09:01:58 +0000248#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000249
Manuel Novoa III cad53642003-03-19 09:13:01 +0000250 if (print_final_total) {
251 print(total, "total");
252 }
253
254 bb_fflush_stdout_and_exit(status);
255}