1 /* vi: set sw=4 ts=4: */
3 * Mini du implementation for busybox
6 * Copyright (C) 1999,2000,2001 by Lineo, inc.
7 * Written by John Beppu <beppu@lineo.com>
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.
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.
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
25 #include <sys/types.h>
36 #ifdef BB_FEATURE_HUMAN_READABLE
37 static unsigned long disp_hr = KILOBYTE;
40 typedef void (Display) (long, char *);
42 static int du_depth = 0;
43 static int count_hardlinks = 0;
45 static Display *print;
47 static void print_normal(long size, char *filename)
49 #ifdef BB_FEATURE_HUMAN_READABLE
50 printf("%s\t%s\n", make_human_readable_str(size<<10, 1, disp_hr), filename);
52 printf("%ld\t%s\n", size, filename);
56 static void print_summary(long size, char *filename)
59 print_normal(size, filename);
63 #define HASH_SIZE 311 /* Should be prime */
64 #define hash_inode(i) ((i) % HASH_SIZE)
66 typedef struct ino_dev_hash_bucket_struct {
67 struct ino_dev_hash_bucket_struct *next;
71 } ino_dev_hashtable_bucket_t;
73 static ino_dev_hashtable_bucket_t *ino_dev_hashtable[HASH_SIZE];
76 * Return 1 if statbuf->st_ino && statbuf->st_dev are recorded in
77 * `ino_dev_hashtable', else return 0
79 * If NAME is a non-NULL pointer to a character pointer, and there is
80 * a match, then set *NAME to the value of the name slot in that
83 static int is_in_ino_dev_hashtable(const struct stat *statbuf, char **name)
85 ino_dev_hashtable_bucket_t *bucket;
87 bucket = ino_dev_hashtable[hash_inode(statbuf->st_ino)];
88 while (bucket != NULL) {
89 if ((bucket->ino == statbuf->st_ino) &&
90 (bucket->dev == statbuf->st_dev))
92 if (name) *name = bucket->name;
95 bucket = bucket->next;
100 /* Add statbuf to statbuf hash table */
101 static void add_to_ino_dev_hashtable(const struct stat *statbuf, const char *name)
105 ino_dev_hashtable_bucket_t *bucket;
107 i = hash_inode(statbuf->st_ino);
108 s = name ? strlen(name) : 0;
109 bucket = xmalloc(sizeof(ino_dev_hashtable_bucket_t) + s);
110 bucket->ino = statbuf->st_ino;
111 bucket->dev = statbuf->st_dev;
113 strcpy(bucket->name, name);
115 bucket->name[0] = '\0';
116 bucket->next = ino_dev_hashtable[i];
117 ino_dev_hashtable[i] = bucket;
120 /* Clear statbuf hash table */
121 static void reset_ino_dev_hashtable(void)
124 ino_dev_hashtable_bucket_t *bucket;
126 for (i = 0; i < HASH_SIZE; i++) {
127 while (ino_dev_hashtable[i] != NULL) {
128 bucket = ino_dev_hashtable[i]->next;
129 free(ino_dev_hashtable[i]);
130 ino_dev_hashtable[i] = bucket;
135 /* tiny recursive du */
136 static long du(char *filename)
141 if ((lstat(filename, &statbuf)) != 0) {
142 perror_msg("%s", filename);
147 sum = (statbuf.st_blocks >> 1);
149 /* Don't add in stuff pointed to by symbolic links */
150 if (S_ISLNK(statbuf.st_mode)) {
155 if (S_ISDIR(statbuf.st_mode)) {
157 struct dirent *entry;
160 dir = opendir(filename);
166 newfile = last_char_is(filename, '/');
170 while ((entry = readdir(dir))) {
171 char *name = entry->d_name;
173 if ((strcmp(name, "..") == 0)
174 || (strcmp(name, ".") == 0)) {
177 newfile = concat_path_file(filename, name);
182 print(sum, filename);
184 else if (statbuf.st_nlink > 1 && !count_hardlinks) {
185 /* Add files with hard links only once */
186 if (is_in_ino_dev_hashtable(&statbuf, NULL)) {
189 print(sum, filename);
192 add_to_ino_dev_hashtable(&statbuf, NULL);
199 int du_main(int argc, char **argv)
201 int status = EXIT_SUCCESS;
205 /* default behaviour */
206 print = print_normal;
209 while ((c = getopt(argc, argv, "sl"
210 #ifdef BB_FEATURE_HUMAN_READABLE
216 print = print_summary;
221 #ifdef BB_FEATURE_HUMAN_READABLE
222 case 'h': disp_hr = 0; break;
223 case 'm': disp_hr = MEGABYTE; break;
231 /* go through remaining args (if any) */
232 if (optind >= argc) {
234 status = EXIT_FAILURE;
238 for (i=optind; i < argc; i++) {
240 if(is_directory(argv[i], FALSE, NULL)==FALSE) {
241 print_normal(sum, argv[i]);
243 reset_ino_dev_hashtable();
250 /* $Id: du.c,v 1.50 2001/06/30 17:54:20 andersen Exp $ */
253 c-file-style: "linux"