blob: c4fb3a38d5d9d24d42d2254e57d16fda5622675e [file] [log] [blame]
Erik Andersene49d5ec2000-02-08 19:58:47 +00001/* vi: set sw=4 ts=4: */
John Beppu0f5e1ab1999-12-09 18:23:54 +00002/*
3 * Mini du implementation for busybox
4 *
5 *
Erik Andersen61677fe2000-04-13 01:18:56 +00006 * Copyright (C) 1999,2000 by Lineo, inc.
Eric Andersen70e2f0b1999-12-10 06:45:42 +00007 * Written by John Beppu <beppu@lineo.com>
John Beppu0f5e1ab1999-12-09 18:23:54 +00008 *
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.
13 *
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.
18 *
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
22 *
23 */
24
25#include "internal.h"
Erik Andersenfac10d72000-02-07 05:29:42 +000026#define BB_DECLARE_EXTERN
27#define bb_need_name_too_long
28#include "messages.c"
29
John Beppu0f5e1ab1999-12-09 18:23:54 +000030#include <sys/types.h>
31#include <fcntl.h>
32#include <dirent.h>
33#include <stdio.h>
John Beppu98355411999-12-10 07:40:08 +000034#include <errno.h>
John Beppu0f5e1ab1999-12-09 18:23:54 +000035
Erik Andersene49d5ec2000-02-08 19:58:47 +000036typedef void (Display) (long, char *);
John Beppu0f5e1ab1999-12-09 18:23:54 +000037
Erik Andersen27fdd082000-02-19 18:16:49 +000038static const char du_usage[] =
Erik Andersene49d5ec2000-02-08 19:58:47 +000039 "du [OPTION]... [FILE]...\n\n"
Erik Andersen27fdd082000-02-19 18:16:49 +000040 "Summarize disk space used for each FILE and/or directory.\n"
41 "Disk space is printed in units of 1024 bytes.\n\n"
42 "Options:\n"
43 "\t-l\tcount sizes many times if hard linked\n"
Erik Andersene49d5ec2000-02-08 19:58:47 +000044 "\t-s\tdisplay only a total for each argument\n";
John Beppue1618e41999-12-15 18:52:17 +000045
Erik Andersene49d5ec2000-02-08 19:58:47 +000046static int du_depth = 0;
Erik Andersen27fdd082000-02-19 18:16:49 +000047static int count_hardlinks = 0;
John Beppue1618e41999-12-15 18:52:17 +000048
Erik Andersene49d5ec2000-02-08 19:58:47 +000049static Display *print;
50
51static void print_normal(long size, char *filename)
John Beppu0f5e1ab1999-12-09 18:23:54 +000052{
Erik Andersen27fdd082000-02-19 18:16:49 +000053 fprintf(stdout, "%ld\t%s\n", size, filename);
John Beppu0f5e1ab1999-12-09 18:23:54 +000054}
55
Erik Andersene49d5ec2000-02-08 19:58:47 +000056static void print_summary(long size, char *filename)
John Beppue1618e41999-12-15 18:52:17 +000057{
Erik Andersene49d5ec2000-02-08 19:58:47 +000058 if (du_depth == 1) {
59 print_normal(size, filename);
60 }
John Beppue1618e41999-12-15 18:52:17 +000061}
62
John Beppu0f5e1ab1999-12-09 18:23:54 +000063/* tiny recursive du */
Erik Andersene49d5ec2000-02-08 19:58:47 +000064static long du(char *filename)
John Beppu0f5e1ab1999-12-09 18:23:54 +000065{
Erik Andersene49d5ec2000-02-08 19:58:47 +000066 struct stat statbuf;
Erik Andersenfac10d72000-02-07 05:29:42 +000067 long sum;
Erik Andersen42387e42000-02-21 17:27:17 +000068 int len;
John Beppu14c82b61999-12-10 06:15:27 +000069
Erik Andersene49d5ec2000-02-08 19:58:47 +000070 if ((lstat(filename, &statbuf)) != 0) {
Erik Andersen42387e42000-02-21 17:27:17 +000071 printf("du: %s: %s\n", filename, strerror(errno));
Erik Andersene49d5ec2000-02-08 19:58:47 +000072 return 0;
73 }
74
75 du_depth++;
John Beppu08c965a2000-02-13 04:10:57 +000076 sum = (statbuf.st_blocks >> 1);
Erik Andersene49d5ec2000-02-08 19:58:47 +000077
Erik Andersen27fdd082000-02-19 18:16:49 +000078 /* Don't add in stuff pointed to by symbolic links */
Erik Andersen9ffdaa62000-02-11 21:55:04 +000079 if (S_ISLNK(statbuf.st_mode)) {
Erik Andersen42387e42000-02-21 17:27:17 +000080 sum = 0L;
81 if (du_depth == 1)
82 print(sum, filename);
Erik Andersen9ffdaa62000-02-11 21:55:04 +000083 }
Erik Andersene49d5ec2000-02-08 19:58:47 +000084 if (S_ISDIR(statbuf.st_mode)) {
85 DIR *dir;
86 struct dirent *entry;
87
88 dir = opendir(filename);
89 if (!dir) {
Erik Andersen42387e42000-02-21 17:27:17 +000090 du_depth--;
Erik Andersene49d5ec2000-02-08 19:58:47 +000091 return 0;
92 }
Erik Andersen42387e42000-02-21 17:27:17 +000093
94 len = strlen(filename);
95 if (filename[len - 1] == '/')
96 filename[--len] = '\0';
97
Erik Andersene49d5ec2000-02-08 19:58:47 +000098 while ((entry = readdir(dir))) {
Erik Andersen4f3f7572000-04-28 00:18:56 +000099 char newfile[BUFSIZ + 1];
Erik Andersene49d5ec2000-02-08 19:58:47 +0000100 char *name = entry->d_name;
101
102 if ((strcmp(name, "..") == 0)
103 || (strcmp(name, ".") == 0)) {
104 continue;
105 }
106
Erik Andersen4f3f7572000-04-28 00:18:56 +0000107 if (len + strlen(name) + 1 > BUFSIZ) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000108 fprintf(stderr, name_too_long, "du");
Erik Andersen42387e42000-02-21 17:27:17 +0000109 du_depth--;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000110 return 0;
111 }
112 sprintf(newfile, "%s/%s", filename, name);
113
114 sum += du(newfile);
115 }
116 closedir(dir);
117 print(sum, filename);
118 }
Erik Andersen27fdd082000-02-19 18:16:49 +0000119 else if (statbuf.st_nlink > 1 && !count_hardlinks) {
120 /* Add files with hard links only once */
Erik Andersen029011b2000-03-04 21:19:32 +0000121 if (is_in_ino_dev_hashtable(&statbuf, NULL)) {
Erik Andersen42387e42000-02-21 17:27:17 +0000122 sum = 0L;
123 if (du_depth == 1)
124 print(sum, filename);
125 }
126 else {
Erik Andersen029011b2000-03-04 21:19:32 +0000127 add_to_ino_dev_hashtable(&statbuf, NULL);
Erik Andersen42387e42000-02-21 17:27:17 +0000128 }
Erik Andersen27fdd082000-02-19 18:16:49 +0000129 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000130 du_depth--;
131 return sum;
John Beppu0f5e1ab1999-12-09 18:23:54 +0000132}
133
Erik Andersene49d5ec2000-02-08 19:58:47 +0000134int du_main(int argc, char **argv)
135{
136 int i;
137 char opt;
138
139 /* default behaviour */
140 print = print_normal;
141
142 /* parse argv[] */
143 for (i = 1; i < argc; i++) {
144 if (argv[i][0] == '-') {
145 opt = argv[i][1];
146 switch (opt) {
147 case 's':
148 print = print_summary;
149 break;
Erik Andersen27fdd082000-02-19 18:16:49 +0000150 case 'l':
151 count_hardlinks = 1;
152 break;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000153 case 'h':
Erik Andersen27fdd082000-02-19 18:16:49 +0000154 case '-':
Erik Andersene49d5ec2000-02-08 19:58:47 +0000155 usage(du_usage);
156 break;
157 default:
158 fprintf(stderr, "du: invalid option -- %c\n", opt);
159 usage(du_usage);
160 }
161 } else {
162 break;
163 }
164 }
165
166 /* go through remaining args (if any) */
167 if (i >= argc) {
168 du(".");
169 } else {
170 long sum;
171
172 for (; i < argc; i++) {
173 sum = du(argv[i]);
Erik Andersen42387e42000-02-21 17:27:17 +0000174 if (sum && isDirectory(argv[i], FALSE, NULL)) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000175 print_normal(sum, argv[i]);
176 }
Erik Andersen029011b2000-03-04 21:19:32 +0000177 reset_ino_dev_hashtable();
Erik Andersene49d5ec2000-02-08 19:58:47 +0000178 }
179 }
180
181 exit(0);
182}
183
Erik Andersen4f3f7572000-04-28 00:18:56 +0000184/* $Id: du.c,v 1.18 2000/04/28 00:18:56 erik Exp $ */
Erik Andersen029011b2000-03-04 21:19:32 +0000185/*
186Local Variables:
187c-file-style: "linux"
188c-basic-offset: 4
189tab-width: 4
190End:
191*/