2000-02-09 01:28:47 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
1999-12-09 23:53:54 +05:30
|
|
|
/*
|
|
|
|
* Mini du implementation for busybox
|
|
|
|
*
|
2001-10-24 10:30:29 +05:30
|
|
|
* Copyright (C) 1999,2000,2001 by Lineo, inc. and John Beppu
|
|
|
|
* Copyright (C) 1999,2000,2001 by John Beppu <beppu@codepoet.org>
|
2002-04-07 04:46:44 +05:30
|
|
|
* Copyright (C) 2002 Edward Betts <edward@debian.org>
|
1999-12-09 23:53:54 +05:30
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2003-03-19 14:43:01 +05:30
|
|
|
/* BB_AUDIT SUSv3 compliant (unless default blocksize set to 1k) */
|
|
|
|
/* http://www.opengroup.org/onlinepubs/007904975/utilities/du.html */
|
|
|
|
|
|
|
|
/* Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org)
|
|
|
|
*
|
|
|
|
* Mostly rewritten for SUSv3 compliance and to fix bugs/defects.
|
|
|
|
* 1) Added support for SUSv3 -a, -H, -L, gnu -c, and (busybox) -d options.
|
|
|
|
* The -d option allows setting of max depth (similar to gnu --max-depth).
|
|
|
|
* 2) Fixed incorrect size calculations for links and directories, especially
|
|
|
|
* when errors occurred. Calculates sizes should now match gnu du output.
|
|
|
|
* 3) Added error checking of output.
|
|
|
|
* 4) Fixed busybox bug #1284 involving long overflow with human_readable.
|
|
|
|
*/
|
|
|
|
|
2001-01-27 13:54:39 +05:30
|
|
|
#include <stdlib.h>
|
2003-03-19 14:43:01 +05:30
|
|
|
#include <limits.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <dirent.h>
|
|
|
|
#include <sys/stat.h>
|
2001-02-20 11:44:08 +05:30
|
|
|
#include "busybox.h"
|
|
|
|
|
2001-10-24 10:30:29 +05:30
|
|
|
#ifdef CONFIG_FEATURE_HUMAN_READABLE
|
2003-03-19 14:43:01 +05:30
|
|
|
# ifdef CONFIG_FEATURE_DU_DEFALT_BLOCKSIZE_1K
|
2001-03-07 11:34:08 +05:30
|
|
|
static unsigned long disp_hr = KILOBYTE;
|
2003-03-19 14:43:01 +05:30
|
|
|
# else
|
|
|
|
static unsigned long disp_hr = 512;
|
|
|
|
# endif
|
|
|
|
#elif defined CONFIG_FEATURE_DU_DEFALT_BLOCKSIZE_1K
|
|
|
|
static unsigned int disp_k = 1;
|
|
|
|
#else
|
|
|
|
static unsigned int disp_k; /* bss inits to 0 */
|
2001-01-23 04:05:38 +05:30
|
|
|
#endif
|
|
|
|
|
2003-03-19 14:43:01 +05:30
|
|
|
static int max_print_depth = INT_MAX;
|
|
|
|
static int count_hardlinks = INT_MAX;
|
|
|
|
|
|
|
|
static int status
|
|
|
|
#if EXIT_SUCCESS == 0
|
|
|
|
= EXIT_SUCCESS
|
|
|
|
#endif
|
|
|
|
;
|
|
|
|
static int print_files;
|
|
|
|
static int slink_depth;
|
|
|
|
static int du_depth;
|
|
|
|
static int one_file_system;
|
2002-08-23 08:55:22 +05:30
|
|
|
static dev_t dir_dev;
|
1999-12-09 23:53:54 +05:30
|
|
|
|
2000-02-09 01:28:47 +05:30
|
|
|
|
2003-03-19 14:43:01 +05:30
|
|
|
static void print(long size, char *filename)
|
1999-12-09 23:53:54 +05:30
|
|
|
{
|
2003-03-19 14:43:01 +05:30
|
|
|
/* TODO - May not want to defer error checking here. */
|
2001-10-24 10:30:29 +05:30
|
|
|
#ifdef CONFIG_FEATURE_HUMAN_READABLE
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_printf("%s\t%s\n", make_human_readable_str(size, 512, disp_hr),
|
2002-08-23 08:55:22 +05:30
|
|
|
filename);
|
2001-01-23 04:05:38 +05:30
|
|
|
#else
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_printf("%ld\t%s\n", size >> disp_k, filename);
|
2001-01-23 04:05:38 +05:30
|
|
|
#endif
|
1999-12-09 23:53:54 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
/* tiny recursive du */
|
2000-02-09 01:28:47 +05:30
|
|
|
static long du(char *filename)
|
1999-12-09 23:53:54 +05:30
|
|
|
{
|
2000-02-09 01:28:47 +05:30
|
|
|
struct stat statbuf;
|
|
|
|
long sum;
|
|
|
|
|
|
|
|
if ((lstat(filename, &statbuf)) != 0) {
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_perror_msg("%s", filename);
|
|
|
|
status = EXIT_FAILURE;
|
2001-04-10 04:18:12 +05:30
|
|
|
return 0;
|
1999-12-09 23:53:54 +05:30
|
|
|
}
|
2000-02-09 01:28:47 +05:30
|
|
|
|
2003-03-19 14:43:01 +05:30
|
|
|
if (one_file_system) {
|
|
|
|
if (du_depth == 0) {
|
|
|
|
dir_dev = statbuf.st_dev;
|
|
|
|
} else if (dir_dev != statbuf.st_dev) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sum = statbuf.st_blocks;
|
2000-02-09 01:28:47 +05:30
|
|
|
|
2000-02-12 03:25:04 +05:30
|
|
|
if (S_ISLNK(statbuf.st_mode)) {
|
2003-03-19 14:43:01 +05:30
|
|
|
if (slink_depth > du_depth) { /* -H or -L */
|
|
|
|
if ((stat(filename, &statbuf)) != 0) {
|
|
|
|
bb_perror_msg("%s", filename);
|
|
|
|
status = EXIT_FAILURE;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
sum = statbuf.st_blocks;
|
|
|
|
if (slink_depth == 1) {
|
|
|
|
slink_depth = INT_MAX; /* Convert -H to -L. */
|
|
|
|
}
|
2001-06-30 23:24:20 +05:30
|
|
|
}
|
2000-02-12 03:25:04 +05:30
|
|
|
}
|
2003-03-19 14:43:01 +05:30
|
|
|
|
|
|
|
if (statbuf.st_nlink > count_hardlinks) {
|
|
|
|
/* Add files/directories with links only once */
|
|
|
|
if (is_in_ino_dev_hashtable(&statbuf, NULL)) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
add_to_ino_dev_hashtable(&statbuf, NULL);
|
|
|
|
}
|
|
|
|
|
2000-02-09 01:28:47 +05:30
|
|
|
if (S_ISDIR(statbuf.st_mode)) {
|
|
|
|
DIR *dir;
|
|
|
|
struct dirent *entry;
|
2001-05-08 04:19:43 +05:30
|
|
|
char *newfile;
|
2000-02-09 01:28:47 +05:30
|
|
|
|
|
|
|
dir = opendir(filename);
|
|
|
|
if (!dir) {
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_perror_msg("%s", filename);
|
|
|
|
status = EXIT_FAILURE;
|
|
|
|
return sum;
|
2000-02-09 01:28:47 +05:30
|
|
|
}
|
2000-02-21 22:57:17 +05:30
|
|
|
|
2001-05-08 04:19:43 +05:30
|
|
|
newfile = last_char_is(filename, '/');
|
|
|
|
if (newfile)
|
|
|
|
*newfile = '\0';
|
2000-02-21 22:57:17 +05:30
|
|
|
|
2000-02-09 01:28:47 +05:30
|
|
|
while ((entry = readdir(dir))) {
|
|
|
|
char *name = entry->d_name;
|
|
|
|
|
2003-05-26 19:37:50 +05:30
|
|
|
newfile = concat_subpath_file(filename, name);
|
|
|
|
if(newfile == NULL)
|
2000-02-09 01:28:47 +05:30
|
|
|
continue;
|
2003-03-19 14:43:01 +05:30
|
|
|
++du_depth;
|
2000-02-09 01:28:47 +05:30
|
|
|
sum += du(newfile);
|
2003-03-19 14:43:01 +05:30
|
|
|
--du_depth;
|
2001-04-10 04:18:12 +05:30
|
|
|
free(newfile);
|
2000-02-09 01:28:47 +05:30
|
|
|
}
|
|
|
|
closedir(dir);
|
2003-03-19 14:43:01 +05:30
|
|
|
} else if (du_depth > print_files) {
|
|
|
|
return sum;
|
|
|
|
}
|
|
|
|
if (du_depth <= max_print_depth) {
|
2000-02-09 01:28:47 +05:30
|
|
|
print(sum, filename);
|
2000-02-19 23:46:49 +05:30
|
|
|
}
|
2000-02-09 01:28:47 +05:30
|
|
|
return sum;
|
1999-12-09 23:53:54 +05:30
|
|
|
}
|
|
|
|
|
2000-02-09 01:28:47 +05:30
|
|
|
int du_main(int argc, char **argv)
|
1999-12-09 23:53:54 +05:30
|
|
|
{
|
2003-03-19 14:43:01 +05:30
|
|
|
long total;
|
|
|
|
int slink_depth_save;
|
2003-06-20 14:31:58 +05:30
|
|
|
int print_final_total;
|
|
|
|
char *smax_print_depth;
|
|
|
|
unsigned long opt;
|
2000-02-09 01:28:47 +05:30
|
|
|
|
2003-03-19 14:43:01 +05:30
|
|
|
#ifdef CONFIG_FEATURE_DU_DEFALT_BLOCKSIZE_1K
|
|
|
|
if (getenv("POSIXLY_CORRECT")) { /* TODO - a new libbb function? */
|
|
|
|
#ifdef CONFIG_FEATURE_HUMAN_READABLE
|
|
|
|
disp_hr = 512;
|
|
|
|
#else
|
|
|
|
disp_k = 0;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Note: SUSv3 specifies that -a and -s options can not be used together
|
|
|
|
* in strictly conforming applications. However, it also says that some
|
|
|
|
* du implementations may produce output when -a and -s are used together.
|
|
|
|
* gnu du exits with an error code in this case. We choose to simply
|
|
|
|
* ignore -a. This is consistent with -s being equivalent to -d 0.
|
|
|
|
*/
|
|
|
|
#ifdef CONFIG_FEATURE_HUMAN_READABLE
|
2003-06-20 14:31:58 +05:30
|
|
|
bb_opt_complementaly = "h-km:k-hm:m-hk:H-L:L-H:s-d:d-s";
|
|
|
|
opt = bb_getopt_ulflags(argc, argv, "aHkLsx" "d:" "lc" "hm", &smax_print_depth);
|
|
|
|
if((opt & (1 << 9))) {
|
|
|
|
/* -h opt */
|
|
|
|
disp_hr = 0;
|
|
|
|
}
|
|
|
|
if((opt & (1 << 10))) {
|
|
|
|
/* -m opt */
|
|
|
|
disp_hr = MEGABYTE;
|
|
|
|
}
|
|
|
|
if((opt & (1 << 2))) {
|
|
|
|
/* -k opt */
|
2003-03-19 14:43:01 +05:30
|
|
|
disp_hr = KILOBYTE;
|
2003-06-20 14:31:58 +05:30
|
|
|
}
|
|
|
|
#else
|
|
|
|
bb_opt_complementaly = "H-L:L-H:s-d:d-s";
|
|
|
|
opt = bb_getopt_ulflags(argc, argv, "aHkLsx" "d:" "lc", &smax_print_depth);
|
|
|
|
#if !defined CONFIG_FEATURE_DU_DEFALT_BLOCKSIZE_1K
|
|
|
|
if((opt & (1 << 2))) {
|
|
|
|
/* -k opt */
|
2003-03-19 14:43:01 +05:30
|
|
|
disp_k = 1;
|
2003-06-20 14:31:58 +05:30
|
|
|
}
|
|
|
|
#endif
|
2003-03-19 14:43:01 +05:30
|
|
|
#endif
|
2003-06-20 14:31:58 +05:30
|
|
|
if((opt & (1 << 0))) {
|
|
|
|
/* -a opt */
|
|
|
|
print_files = INT_MAX;
|
|
|
|
}
|
|
|
|
if((opt & (1 << 1))) {
|
|
|
|
/* -H opt */
|
|
|
|
slink_depth = 1;
|
|
|
|
}
|
|
|
|
if((opt & (1 << 3))) {
|
|
|
|
/* -L opt */
|
2003-03-19 14:43:01 +05:30
|
|
|
slink_depth = INT_MAX;
|
2003-06-20 14:31:58 +05:30
|
|
|
}
|
|
|
|
if((opt & (1 << 4))) {
|
|
|
|
/* -s opt */
|
2003-03-19 14:43:01 +05:30
|
|
|
max_print_depth = 0;
|
2002-08-23 08:55:22 +05:30
|
|
|
}
|
2003-06-20 14:31:58 +05:30
|
|
|
one_file_system = opt & (1 << 5); /* -x opt */
|
|
|
|
if((opt & (1 << 6))) {
|
|
|
|
/* -d opt */
|
|
|
|
max_print_depth = bb_xgetularg10_bnd(smax_print_depth, 0, INT_MAX);
|
1999-12-10 11:45:27 +05:30
|
|
|
}
|
2003-06-20 14:31:58 +05:30
|
|
|
if((opt & (1 << 7))) {
|
|
|
|
/* -l opt */
|
|
|
|
count_hardlinks = 1;
|
|
|
|
}
|
|
|
|
print_final_total = opt & (1 << 8); /* -c opt */
|
1999-12-10 11:45:27 +05:30
|
|
|
|
2000-02-09 01:28:47 +05:30
|
|
|
/* go through remaining args (if any) */
|
2003-03-19 14:43:01 +05:30
|
|
|
argv += optind;
|
2000-07-15 00:08:26 +05:30
|
|
|
if (optind >= argc) {
|
2003-03-19 14:43:01 +05:30
|
|
|
*--argv = ".";
|
|
|
|
if (slink_depth == 1) {
|
|
|
|
slink_depth = 0;
|
2000-02-09 01:28:47 +05:30
|
|
|
}
|
1999-12-10 11:45:27 +05:30
|
|
|
}
|
|
|
|
|
2003-03-19 14:43:01 +05:30
|
|
|
slink_depth_save = slink_depth;
|
|
|
|
total = 0;
|
|
|
|
do {
|
|
|
|
total += du(*argv);
|
|
|
|
slink_depth = slink_depth_save;
|
|
|
|
} while (*++argv);
|
2003-06-20 14:31:58 +05:30
|
|
|
#ifdef CONFIG_FEATURE_CLEAN_UP
|
2003-03-19 14:43:01 +05:30
|
|
|
reset_ino_dev_hashtable();
|
2003-06-20 14:31:58 +05:30
|
|
|
#endif
|
1999-12-09 23:53:54 +05:30
|
|
|
|
2003-03-19 14:43:01 +05:30
|
|
|
if (print_final_total) {
|
|
|
|
print(total, "total");
|
|
|
|
}
|
|
|
|
|
|
|
|
bb_fflush_stdout_and_exit(status);
|
|
|
|
}
|