blob: 702a9aa1409efc1f6cc2eb5ffa99350ee5f9fd57 [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 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 *
23 */
24
Manuel Novoa III cad53642003-03-19 09:13:01 +000025/* BB_AUDIT SUSv3 compliant (unless default blocksize set to 1k) */
26/* http://www.opengroup.org/onlinepubs/007904975/utilities/du.html */
27
28/* Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org)
29 *
30 * Mostly rewritten for SUSv3 compliance and to fix bugs/defects.
31 * 1) Added support for SUSv3 -a, -H, -L, gnu -c, and (busybox) -d options.
32 * The -d option allows setting of max depth (similar to gnu --max-depth).
33 * 2) Fixed incorrect size calculations for links and directories, especially
34 * when errors occurred. Calculates sizes should now match gnu du output.
35 * 3) Added error checking of output.
36 * 4) Fixed busybox bug #1284 involving long overflow with human_readable.
37 */
38
Eric Andersened3ef502001-01-27 08:24:39 +000039#include <stdlib.h>
Manuel Novoa III cad53642003-03-19 09:13:01 +000040#include <limits.h>
41#include <unistd.h>
42#include <dirent.h>
43#include <sys/stat.h>
Eric Andersencbe31da2001-02-20 06:14:08 +000044#include "busybox.h"
Eric Andersencbe31da2001-02-20 06:14:08 +000045
Eric Andersenbdfd0d72001-10-24 05:00:29 +000046#ifdef CONFIG_FEATURE_HUMAN_READABLE
Manuel Novoa III cad53642003-03-19 09:13:01 +000047# ifdef CONFIG_FEATURE_DU_DEFALT_BLOCKSIZE_1K
Eric Andersenec9fad92001-03-07 06:04:08 +000048static unsigned long disp_hr = KILOBYTE;
Manuel Novoa III cad53642003-03-19 09:13:01 +000049# else
50static unsigned long disp_hr = 512;
51# endif
52#elif defined CONFIG_FEATURE_DU_DEFALT_BLOCKSIZE_1K
53static unsigned int disp_k = 1;
54#else
55static unsigned int disp_k; /* bss inits to 0 */
Richard June6d0921c2001-01-22 22:35:38 +000056#endif
57
Manuel Novoa III cad53642003-03-19 09:13:01 +000058static int max_print_depth = INT_MAX;
59static int count_hardlinks = INT_MAX;
60
61static int status
62#if EXIT_SUCCESS == 0
63 = EXIT_SUCCESS
64#endif
65 ;
66static int print_files;
67static int slink_depth;
68static int du_depth;
69static int one_file_system;
Glenn L McGrath14dad702002-08-23 03:25:22 +000070static dev_t dir_dev;
John Beppue1618e41999-12-15 18:52:17 +000071
Erik Andersene49d5ec2000-02-08 19:58:47 +000072
Manuel Novoa III cad53642003-03-19 09:13:01 +000073static void print(long size, char *filename)
John Beppu0f5e1ab1999-12-09 18:23:54 +000074{
Manuel Novoa III cad53642003-03-19 09:13:01 +000075 /* TODO - May not want to defer error checking here. */
Eric Andersenbdfd0d72001-10-24 05:00:29 +000076#ifdef CONFIG_FEATURE_HUMAN_READABLE
Manuel Novoa III cad53642003-03-19 09:13:01 +000077 bb_printf("%s\t%s\n", make_human_readable_str(size, 512, disp_hr),
Glenn L McGrath14dad702002-08-23 03:25:22 +000078 filename);
Richard June6d0921c2001-01-22 22:35:38 +000079#else
Manuel Novoa III cad53642003-03-19 09:13:01 +000080 bb_printf("%ld\t%s\n", size >> disp_k, filename);
Richard June6d0921c2001-01-22 22:35:38 +000081#endif
John Beppu0f5e1ab1999-12-09 18:23:54 +000082}
83
84/* tiny recursive du */
Erik Andersene49d5ec2000-02-08 19:58:47 +000085static long du(char *filename)
John Beppu0f5e1ab1999-12-09 18:23:54 +000086{
Erik Andersene49d5ec2000-02-08 19:58:47 +000087 struct stat statbuf;
Erik Andersenfac10d72000-02-07 05:29:42 +000088 long sum;
John Beppu14c82b61999-12-10 06:15:27 +000089
Erik Andersene49d5ec2000-02-08 19:58:47 +000090 if ((lstat(filename, &statbuf)) != 0) {
Manuel Novoa III cad53642003-03-19 09:13:01 +000091 bb_perror_msg("%s", filename);
92 status = EXIT_FAILURE;
Eric Andersene5dfced2001-04-09 22:48:12 +000093 return 0;
Erik Andersene49d5ec2000-02-08 19:58:47 +000094 }
95
Manuel Novoa III cad53642003-03-19 09:13:01 +000096 if (one_file_system) {
97 if (du_depth == 0) {
98 dir_dev = statbuf.st_dev;
99 } else if (dir_dev != statbuf.st_dev) {
100 return 0;
Eric Andersen8fa1bf72001-06-30 17:54:20 +0000101 }
Erik Andersen9ffdaa62000-02-11 21:55:04 +0000102 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000103
104 sum = statbuf.st_blocks;
105
106 if (S_ISLNK(statbuf.st_mode)) {
107 if (slink_depth > du_depth) { /* -H or -L */
108 if ((stat(filename, &statbuf)) != 0) {
109 bb_perror_msg("%s", filename);
110 status = EXIT_FAILURE;
111 return 0;
112 }
113 sum = statbuf.st_blocks;
114 if (slink_depth == 1) {
115 slink_depth = INT_MAX; /* Convert -H to -L. */
116 }
117 }
118 }
119
120 if (statbuf.st_nlink > count_hardlinks) {
121 /* Add files/directories with links only once */
122 if (is_in_ino_dev_hashtable(&statbuf, NULL)) {
123 return 0;
124 }
125 add_to_ino_dev_hashtable(&statbuf, NULL);
126 }
127
Erik Andersene49d5ec2000-02-08 19:58:47 +0000128 if (S_ISDIR(statbuf.st_mode)) {
129 DIR *dir;
130 struct dirent *entry;
Eric Andersen04b03542001-05-07 22:49:43 +0000131 char *newfile;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000132
133 dir = opendir(filename);
134 if (!dir) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000135 bb_perror_msg("%s", filename);
136 status = EXIT_FAILURE;
137 return sum;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000138 }
Erik Andersen42387e42000-02-21 17:27:17 +0000139
Eric Andersen04b03542001-05-07 22:49:43 +0000140 newfile = last_char_is(filename, '/');
141 if (newfile)
142 *newfile = '\0';
Erik Andersen42387e42000-02-21 17:27:17 +0000143
Erik Andersene49d5ec2000-02-08 19:58:47 +0000144 while ((entry = readdir(dir))) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000145 char *name = entry->d_name;
146
Manuel Novoa III cad53642003-03-19 09:13:01 +0000147 if ((name[0] == '.') && (!name[1] || (name[1] == '.' && !name[2]))) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000148 continue;
149 }
Eric Andersene5dfced2001-04-09 22:48:12 +0000150 newfile = concat_path_file(filename, name);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000151 ++du_depth;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000152 sum += du(newfile);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000153 --du_depth;
Eric Andersene5dfced2001-04-09 22:48:12 +0000154 free(newfile);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000155 }
156 closedir(dir);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000157 } else if (du_depth > print_files) {
158 return sum;
Erik Andersen27fdd082000-02-19 18:16:49 +0000159 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000160 if (du_depth <= max_print_depth) {
161 print(sum, filename);
162 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000163 return sum;
John Beppu0f5e1ab1999-12-09 18:23:54 +0000164}
165
Erik Andersene49d5ec2000-02-08 19:58:47 +0000166int du_main(int argc, char **argv)
167{
Manuel Novoa III cad53642003-03-19 09:13:01 +0000168 long total;
169 int slink_depth_save;
170 int print_final_total = 0;
Pavel Roskin47d49262000-07-17 16:17:19 +0000171 int c;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000172
Manuel Novoa III cad53642003-03-19 09:13:01 +0000173#ifdef CONFIG_FEATURE_DU_DEFALT_BLOCKSIZE_1K
174 if (getenv("POSIXLY_CORRECT")) { /* TODO - a new libbb function? */
175#ifdef CONFIG_FEATURE_HUMAN_READABLE
176 disp_hr = 512;
177#else
178 disp_k = 0;
179#endif
180 }
181#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000182
Manuel Novoa III cad53642003-03-19 09:13:01 +0000183 /* Note: SUSv3 specifies that -a and -s options can not be used together
184 * in strictly conforming applications. However, it also says that some
185 * du implementations may produce output when -a and -s are used together.
186 * gnu du exits with an error code in this case. We choose to simply
187 * ignore -a. This is consistent with -s being equivalent to -d 0.
188 */
189
190 while ((c = getopt(argc, argv, "aHkLsx" "d:" "lc"
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000191#ifdef CONFIG_FEATURE_HUMAN_READABLE
Glenn L McGrath14dad702002-08-23 03:25:22 +0000192 "hm"
Richard June6d0921c2001-01-22 22:35:38 +0000193#endif
Manuel Novoa III cad53642003-03-19 09:13:01 +0000194 )) > 0) {
Glenn L McGrath14dad702002-08-23 03:25:22 +0000195 switch (c) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000196 case 'a':
197 print_files = INT_MAX;
198 break;
199 case 'H':
200 slink_depth = 1;
201 break;
202 case 'k':
203#ifdef CONFIG_FEATURE_HUMAN_READABLE
204 disp_hr = KILOBYTE;
205#elif !defined CONFIG_FEATURE_DU_DEFALT_BLOCKSIZE_1K
206 disp_k = 1;
207#endif
208 break;
209 case 'L':
210 slink_depth = INT_MAX;
211 break;
Glenn L McGrath14dad702002-08-23 03:25:22 +0000212 case 's':
Manuel Novoa III cad53642003-03-19 09:13:01 +0000213 max_print_depth = 0;
214 break;
215 case 'x':
216 one_file_system = 1;
217 break;
218
219 case 'd':
220 max_print_depth = bb_xgetularg10_bnd(optarg, 0, INT_MAX);
Glenn L McGrath14dad702002-08-23 03:25:22 +0000221 break;
222 case 'l':
223 count_hardlinks = 1;
224 break;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000225 case 'c':
226 print_final_total = 1;
Glenn L McGrath14dad702002-08-23 03:25:22 +0000227 break;
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000228#ifdef CONFIG_FEATURE_HUMAN_READABLE
Glenn L McGrath14dad702002-08-23 03:25:22 +0000229 case 'h':
230 disp_hr = 0;
231 break;
232 case 'm':
233 disp_hr = MEGABYTE;
234 break;
Richard June6d0921c2001-01-22 22:35:38 +0000235#endif
Glenn L McGrath14dad702002-08-23 03:25:22 +0000236 default:
Manuel Novoa III cad53642003-03-19 09:13:01 +0000237 bb_show_usage();
Glenn L McGrath14dad702002-08-23 03:25:22 +0000238 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000239 }
240
241 /* go through remaining args (if any) */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000242 argv += optind;
Eric Andersen17ad45a2000-07-14 18:38:26 +0000243 if (optind >= argc) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000244 *--argv = ".";
245 if (slink_depth == 1) {
246 slink_depth = 0;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000247 }
248 }
249
Manuel Novoa III cad53642003-03-19 09:13:01 +0000250 slink_depth_save = slink_depth;
251 total = 0;
252 do {
253 total += du(*argv);
254 slink_depth = slink_depth_save;
255 } while (*++argv);
256 reset_ino_dev_hashtable();
Erik Andersene49d5ec2000-02-08 19:58:47 +0000257
Manuel Novoa III cad53642003-03-19 09:13:01 +0000258 if (print_final_total) {
259 print(total, "total");
260 }
261
262 bb_fflush_stdout_and_exit(status);
263}