1 /* vi: set sw=4 ts=4: */
3 * Mini du implementation for busybox
6 * Copyright (C) 1999,2000 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
26 #define BB_DECLARE_EXTERN
27 #define bb_need_name_too_long
30 #include <sys/types.h>
36 typedef void (Display) (long, char *);
38 static int du_depth = 0;
39 static int count_hardlinks = 0;
41 static Display *print;
43 static void print_normal(long size, char *filename)
45 fprintf(stdout, "%ld\t%s\n", size, filename);
48 static void print_summary(long size, char *filename)
51 print_normal(size, filename);
55 /* tiny recursive du */
56 static long du(char *filename)
62 if ((lstat(filename, &statbuf)) != 0) {
63 printf("du: %s: %s\n", filename, strerror(errno));
68 sum = (statbuf.st_blocks >> 1);
70 /* Don't add in stuff pointed to by symbolic links */
71 if (S_ISLNK(statbuf.st_mode)) {
76 if (S_ISDIR(statbuf.st_mode)) {
80 dir = opendir(filename);
86 len = strlen(filename);
87 if (filename[len - 1] == '/')
88 filename[--len] = '\0';
90 while ((entry = readdir(dir))) {
91 char newfile[BUFSIZ + 1];
92 char *name = entry->d_name;
94 if ((strcmp(name, "..") == 0)
95 || (strcmp(name, ".") == 0)) {
99 if (len + strlen(name) + 1 > BUFSIZ) {
100 errorMsg(name_too_long);
104 sprintf(newfile, "%s/%s", filename, name);
109 print(sum, filename);
111 else if (statbuf.st_nlink > 1 && !count_hardlinks) {
112 /* Add files with hard links only once */
113 if (is_in_ino_dev_hashtable(&statbuf, NULL)) {
116 print(sum, filename);
119 add_to_ino_dev_hashtable(&statbuf, NULL);
126 int du_main(int argc, char **argv)
131 /* default behaviour */
132 print = print_normal;
135 while ((c = getopt(argc, argv, "sl")) != EOF) {
138 print = print_summary;
148 /* go through remaining args (if any) */
149 if (optind >= argc) {
154 for (i=optind; i < argc; i++) {
156 if (sum && isDirectory(argv[i], FALSE, NULL)) {
157 print_normal(sum, argv[i]);
159 reset_ino_dev_hashtable();
166 /* $Id: du.c,v 1.25 2000/09/25 21:45:57 andersen Exp $ */
169 c-file-style: "linux"