aboutsummaryrefslogtreecommitdiff
path: root/coreutils/du.c
diff options
context:
space:
mode:
authorErik Andersen <andersen@codepoet.org>2000-02-21 17:27:17 +0000
committerErik Andersen <andersen@codepoet.org>2000-02-21 17:27:17 +0000
commit42387e496463f6dbba168b5d36807b858f94fa96 (patch)
tree9958d84e73c0f497e80a110a56d7dca1b41d0565 /coreutils/du.c
parent27fdd081efa060edf7467c43d76071f1c960d228 (diff)
downloadbusybox-42387e496463f6dbba168b5d36807b858f94fa96.tar.gz
Forgot to add basename. More fixes to du from
Friedrich Vedder <fwv@myrtle.lahn.de>. -Erik
Diffstat (limited to 'coreutils/du.c')
-rw-r--r--coreutils/du.c47
1 files changed, 39 insertions, 8 deletions
diff --git a/coreutils/du.c b/coreutils/du.c
index 02d1d9737..4dc7ea13a 100644
--- a/coreutils/du.c
+++ b/coreutils/du.c
@@ -102,14 +102,30 @@ static void add_inode(const ino_t ino)
inode_hash_list[i] = inode;
}
+/* Clear inode hash list */
+static void reset_inode_list(void)
+{
+ int i;
+ INODETYPE *inode;
+
+ for (i = 0; i < HASH_SIZE; i++) {
+ while (inode_hash_list[i] != NULL) {
+ inode = inode_hash_list[i]->next;
+ free(inode_hash_list[i]);
+ inode_hash_list[i] = inode;
+ }
+ }
+}
+
/* tiny recursive du */
static long du(char *filename)
{
struct stat statbuf;
long sum;
+ int len;
if ((lstat(filename, &statbuf)) != 0) {
- fprintf(stdout, "du: %s: %s\n", filename, strerror(errno));
+ printf("du: %s: %s\n", filename, strerror(errno));
return 0;
}
@@ -118,7 +134,9 @@ static long du(char *filename)
/* Don't add in stuff pointed to by symbolic links */
if (S_ISLNK(statbuf.st_mode)) {
- return 0;
+ sum = 0L;
+ if (du_depth == 1)
+ print(sum, filename);
}
if (S_ISDIR(statbuf.st_mode)) {
DIR *dir;
@@ -126,8 +144,14 @@ static long du(char *filename)
dir = opendir(filename);
if (!dir) {
+ du_depth--;
return 0;
}
+
+ len = strlen(filename);
+ if (filename[len - 1] == '/')
+ filename[--len] = '\0';
+
while ((entry = readdir(dir))) {
char newfile[PATH_MAX + 1];
char *name = entry->d_name;
@@ -137,8 +161,9 @@ static long du(char *filename)
continue;
}
- if (strlen(filename) + strlen(name) + 1 > PATH_MAX) {
+ if (len + strlen(name) + 1 > PATH_MAX) {
fprintf(stderr, name_too_long, "du");
+ du_depth--;
return 0;
}
sprintf(newfile, "%s/%s", filename, name);
@@ -150,9 +175,14 @@ static long du(char *filename)
}
else if (statbuf.st_nlink > 1 && !count_hardlinks) {
/* Add files with hard links only once */
- if (is_in_list(statbuf.st_ino))
- return 0;
- add_inode(statbuf.st_ino);
+ if (is_in_list(statbuf.st_ino)) {
+ sum = 0L;
+ if (du_depth == 1)
+ print(sum, filename);
+ }
+ else {
+ add_inode(statbuf.st_ino);
+ }
}
du_depth--;
return sum;
@@ -198,13 +228,14 @@ int du_main(int argc, char **argv)
for (; i < argc; i++) {
sum = du(argv[i]);
- if ((sum) && (isDirectory(argv[i], FALSE, NULL))) {
+ if (sum && isDirectory(argv[i], FALSE, NULL)) {
print_normal(sum, argv[i]);
}
+ reset_inode_list();
}
}
exit(0);
}
-/* $Id: du.c,v 1.14 2000/02/19 18:16:49 erik Exp $ */
+/* $Id: du.c,v 1.15 2000/02/21 17:27:17 erik Exp $ */