2000-02-08 19:58:47 +00:00
|
|
|
/* vi: set sw=4 ts=4: */
|
1999-12-09 18:23:54 +00:00
|
|
|
/*
|
|
|
|
* Mini du implementation for busybox
|
|
|
|
*
|
2001-10-24 05:00:29 +00:00
|
|
|
* Copyright (C) 1999,2000,2001 by Lineo, inc. and John Beppu
|
|
|
|
* Copyright (C) 1999,2000,2001 by John Beppu <beppu@codepoet.org>
|
2002-04-06 23:16:44 +00:00
|
|
|
* Copyright (C) 2002 Edward Betts <edward@debian.org>
|
1999-12-09 18:23:54 +00:00
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <dirent.h>
|
|
|
|
#include <stdio.h>
|
2001-01-27 08:24:39 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <getopt.h>
|
2001-03-09 14:36:42 +00:00
|
|
|
#include <string.h>
|
1999-12-10 07:40:08 +00:00
|
|
|
#include <errno.h>
|
2001-02-20 06:14:08 +00:00
|
|
|
#include "busybox.h"
|
|
|
|
|
1999-12-09 18:23:54 +00:00
|
|
|
|
2001-10-24 05:00:29 +00:00
|
|
|
#ifdef CONFIG_FEATURE_HUMAN_READABLE
|
2001-03-07 06:04:08 +00:00
|
|
|
static unsigned long disp_hr = KILOBYTE;
|
2001-01-22 22:35:38 +00:00
|
|
|
#endif
|
|
|
|
|
2002-08-23 07:28:45 +00:00
|
|
|
static int du_depth /*= 0*/;
|
|
|
|
static int count_hardlinks /*= 0*/;
|
|
|
|
static int one_file_system /*= 0*/;
|
2002-08-23 03:25:22 +00:00
|
|
|
static dev_t dir_dev;
|
1999-12-09 18:23:54 +00:00
|
|
|
|
2002-08-23 03:25:22 +00:00
|
|
|
static void (*print) (long, char *);
|
2000-02-08 19:58:47 +00:00
|
|
|
|
|
|
|
static void print_normal(long size, char *filename)
|
1999-12-09 18:23:54 +00:00
|
|
|
{
|
2001-10-24 05:00:29 +00:00
|
|
|
#ifdef CONFIG_FEATURE_HUMAN_READABLE
|
2002-08-23 03:25:22 +00:00
|
|
|
printf("%s\t%s\n", make_human_readable_str(size << 10, 1, disp_hr),
|
|
|
|
filename);
|
2001-01-22 22:35:38 +00:00
|
|
|
#else
|
2001-01-18 02:57:08 +00:00
|
|
|
printf("%ld\t%s\n", size, filename);
|
2001-01-22 22:35:38 +00:00
|
|
|
#endif
|
1999-12-09 18:23:54 +00:00
|
|
|
}
|
|
|
|
|
2000-02-08 19:58:47 +00:00
|
|
|
static void print_summary(long size, char *filename)
|
1999-12-15 18:52:17 +00:00
|
|
|
{
|
2000-02-08 19:58:47 +00:00
|
|
|
if (du_depth == 1) {
|
|
|
|
print_normal(size, filename);
|
|
|
|
}
|
1999-12-15 18:52:17 +00:00
|
|
|
}
|
|
|
|
|
1999-12-09 18:23:54 +00:00
|
|
|
/* tiny recursive du */
|
2000-02-08 19:58:47 +00:00
|
|
|
static long du(char *filename)
|
1999-12-09 18:23:54 +00:00
|
|
|
{
|
2000-02-08 19:58:47 +00:00
|
|
|
struct stat statbuf;
|
|
|
|
long sum;
|
|
|
|
|
|
|
|
if ((lstat(filename, &statbuf)) != 0) {
|
2001-04-09 22:48:12 +00:00
|
|
|
perror_msg("%s", filename);
|
|
|
|
return 0;
|
1999-12-09 18:23:54 +00:00
|
|
|
}
|
2002-04-06 23:16:44 +00:00
|
|
|
if (du_depth == 0)
|
|
|
|
dir_dev = statbuf.st_dev;
|
|
|
|
else if (one_file_system && dir_dev != statbuf.st_dev)
|
|
|
|
return 0;
|
2000-02-08 19:58:47 +00:00
|
|
|
|
|
|
|
du_depth++;
|
2000-02-13 04:10:57 +00:00
|
|
|
sum = (statbuf.st_blocks >> 1);
|
2000-02-08 19:58:47 +00:00
|
|
|
|
2000-02-19 18:16:49 +00:00
|
|
|
/* Don't add in stuff pointed to by symbolic links */
|
2000-02-11 21:55:04 +00:00
|
|
|
if (S_ISLNK(statbuf.st_mode)) {
|
2000-02-21 17:27:17 +00:00
|
|
|
sum = 0L;
|
2001-06-30 17:54:20 +00:00
|
|
|
if (du_depth == 1) {
|
|
|
|
}
|
2000-02-11 21:55:04 +00:00
|
|
|
}
|
2000-02-08 19:58:47 +00:00
|
|
|
if (S_ISDIR(statbuf.st_mode)) {
|
|
|
|
DIR *dir;
|
|
|
|
struct dirent *entry;
|
2001-05-07 22:49:43 +00:00
|
|
|
char *newfile;
|
2000-02-08 19:58:47 +00:00
|
|
|
|
|
|
|
dir = opendir(filename);
|
|
|
|
if (!dir) {
|
2000-02-21 17:27:17 +00:00
|
|
|
du_depth--;
|
2000-02-08 19:58:47 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2000-02-21 17:27:17 +00:00
|
|
|
|
2001-05-07 22:49:43 +00:00
|
|
|
newfile = last_char_is(filename, '/');
|
|
|
|
if (newfile)
|
|
|
|
*newfile = '\0';
|
2000-02-21 17:27:17 +00:00
|
|
|
|
2000-02-08 19:58:47 +00:00
|
|
|
while ((entry = readdir(dir))) {
|
|
|
|
char *name = entry->d_name;
|
|
|
|
|
|
|
|
if ((strcmp(name, "..") == 0)
|
|
|
|
|| (strcmp(name, ".") == 0)) {
|
|
|
|
continue;
|
|
|
|
}
|
2001-04-09 22:48:12 +00:00
|
|
|
newfile = concat_path_file(filename, name);
|
2000-02-08 19:58:47 +00:00
|
|
|
sum += du(newfile);
|
2001-04-09 22:48:12 +00:00
|
|
|
free(newfile);
|
2000-02-08 19:58:47 +00:00
|
|
|
}
|
|
|
|
closedir(dir);
|
|
|
|
print(sum, filename);
|
2002-08-23 03:25:22 +00:00
|
|
|
} else if (statbuf.st_nlink > 1 && !count_hardlinks) {
|
2000-02-19 18:16:49 +00:00
|
|
|
/* Add files with hard links only once */
|
2000-03-04 21:19:32 +00:00
|
|
|
if (is_in_ino_dev_hashtable(&statbuf, NULL)) {
|
2000-02-21 17:27:17 +00:00
|
|
|
sum = 0L;
|
|
|
|
if (du_depth == 1)
|
|
|
|
print(sum, filename);
|
2002-08-23 03:25:22 +00:00
|
|
|
} else {
|
2000-03-04 21:19:32 +00:00
|
|
|
add_to_ino_dev_hashtable(&statbuf, NULL);
|
2000-02-21 17:27:17 +00:00
|
|
|
}
|
2000-02-19 18:16:49 +00:00
|
|
|
}
|
2000-02-08 19:58:47 +00:00
|
|
|
du_depth--;
|
|
|
|
return sum;
|
1999-12-09 18:23:54 +00:00
|
|
|
}
|
|
|
|
|
2000-02-08 19:58:47 +00:00
|
|
|
int du_main(int argc, char **argv)
|
1999-12-09 18:23:54 +00:00
|
|
|
{
|
2000-12-06 15:55:23 +00:00
|
|
|
int status = EXIT_SUCCESS;
|
2000-02-08 19:58:47 +00:00
|
|
|
int i;
|
2000-07-17 16:17:19 +00:00
|
|
|
int c;
|
2000-02-08 19:58:47 +00:00
|
|
|
|
|
|
|
/* default behaviour */
|
|
|
|
print = print_normal;
|
|
|
|
|
|
|
|
/* parse argv[] */
|
2002-04-06 23:16:44 +00:00
|
|
|
while ((c = getopt(argc, argv, "slx"
|
2001-10-24 05:00:29 +00:00
|
|
|
#ifdef CONFIG_FEATURE_HUMAN_READABLE
|
2002-08-23 03:25:22 +00:00
|
|
|
"hm"
|
2001-01-22 22:35:38 +00:00
|
|
|
#endif
|
2002-08-23 03:25:22 +00:00
|
|
|
"k")) != EOF) {
|
|
|
|
switch (c) {
|
|
|
|
case 's':
|
|
|
|
print = print_summary;
|
|
|
|
break;
|
|
|
|
case 'l':
|
|
|
|
count_hardlinks = 1;
|
|
|
|
break;
|
|
|
|
case 'x':
|
|
|
|
one_file_system = 1;
|
|
|
|
break;
|
2001-10-24 05:00:29 +00:00
|
|
|
#ifdef CONFIG_FEATURE_HUMAN_READABLE
|
2002-08-23 03:25:22 +00:00
|
|
|
case 'h':
|
|
|
|
disp_hr = 0;
|
|
|
|
break;
|
|
|
|
case 'm':
|
|
|
|
disp_hr = MEGABYTE;
|
|
|
|
break;
|
2001-01-22 22:35:38 +00:00
|
|
|
#endif
|
2002-08-23 03:25:22 +00:00
|
|
|
case 'k':
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
show_usage();
|
|
|
|
}
|
1999-12-10 06:15:27 +00:00
|
|
|
}
|
|
|
|
|
2000-02-08 19:58:47 +00:00
|
|
|
/* go through remaining args (if any) */
|
2000-07-14 18:38:26 +00:00
|
|
|
if (optind >= argc) {
|
2000-12-06 15:55:23 +00:00
|
|
|
if (du(".") == 0)
|
|
|
|
status = EXIT_FAILURE;
|
2000-02-08 19:58:47 +00:00
|
|
|
} else {
|
|
|
|
long sum;
|
|
|
|
|
2002-08-23 03:25:22 +00:00
|
|
|
for (i = optind; i < argc; i++) {
|
2001-06-30 17:54:20 +00:00
|
|
|
sum = du(argv[i]);
|
2002-08-23 03:25:22 +00:00
|
|
|
if (is_directory(argv[i], FALSE, NULL) == FALSE) {
|
2000-02-08 19:58:47 +00:00
|
|
|
print_normal(sum, argv[i]);
|
|
|
|
}
|
2000-03-04 21:19:32 +00:00
|
|
|
reset_ino_dev_hashtable();
|
2000-02-08 19:58:47 +00:00
|
|
|
}
|
1999-12-10 06:15:27 +00:00
|
|
|
}
|
|
|
|
|
2000-12-06 15:55:23 +00:00
|
|
|
return status;
|
1999-12-09 18:23:54 +00:00
|
|
|
}
|
|
|
|
|
2002-08-23 07:28:45 +00:00
|
|
|
/* $Id: du.c,v 1.55 2002/08/23 07:28:45 aaronl Exp $ */
|
2000-03-04 21:19:32 +00:00
|
|
|
/*
|
|
|
|
Local Variables:
|
|
|
|
c-file-style: "linux"
|
|
|
|
c-basic-offset: 4
|
|
|
|
tab-width: 4
|
|
|
|
End:
|
|
|
|
*/
|