blob: b6ebaca7a067c0dceabe19e8bb17c0e053e6a792 [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 *
6 * Copyright (C) 1999 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>
Erik Andersene49d5ec2000-02-08 19:58:47 +000035#include <sys/param.h> /* for PATH_MAX */
John Beppu0f5e1ab1999-12-09 18:23:54 +000036
Erik Andersene49d5ec2000-02-08 19:58:47 +000037typedef void (Display) (long, char *);
John Beppu0f5e1ab1999-12-09 18:23:54 +000038
Erik Andersen27fdd082000-02-19 18:16:49 +000039static const char du_usage[] =
Erik Andersene49d5ec2000-02-08 19:58:47 +000040 "du [OPTION]... [FILE]...\n\n"
Erik Andersen27fdd082000-02-19 18:16:49 +000041 "Summarize disk space used for each FILE and/or directory.\n"
42 "Disk space is printed in units of 1024 bytes.\n\n"
43 "Options:\n"
44 "\t-l\tcount sizes many times if hard linked\n"
Erik Andersene49d5ec2000-02-08 19:58:47 +000045 "\t-s\tdisplay only a total for each argument\n";
John Beppue1618e41999-12-15 18:52:17 +000046
Erik Andersene49d5ec2000-02-08 19:58:47 +000047static int du_depth = 0;
Erik Andersen27fdd082000-02-19 18:16:49 +000048static int count_hardlinks = 0;
John Beppue1618e41999-12-15 18:52:17 +000049
Erik Andersene49d5ec2000-02-08 19:58:47 +000050static Display *print;
51
52static void print_normal(long size, char *filename)
John Beppu0f5e1ab1999-12-09 18:23:54 +000053{
Erik Andersen27fdd082000-02-19 18:16:49 +000054 fprintf(stdout, "%ld\t%s\n", size, filename);
John Beppu0f5e1ab1999-12-09 18:23:54 +000055}
56
Erik Andersene49d5ec2000-02-08 19:58:47 +000057static void print_summary(long size, char *filename)
John Beppue1618e41999-12-15 18:52:17 +000058{
Erik Andersene49d5ec2000-02-08 19:58:47 +000059 if (du_depth == 1) {
60 print_normal(size, filename);
61 }
John Beppue1618e41999-12-15 18:52:17 +000062}
63
John Beppu0f5e1ab1999-12-09 18:23:54 +000064/* tiny recursive du */
Erik Andersene49d5ec2000-02-08 19:58:47 +000065static long du(char *filename)
John Beppu0f5e1ab1999-12-09 18:23:54 +000066{
Erik Andersene49d5ec2000-02-08 19:58:47 +000067 struct stat statbuf;
Erik Andersenfac10d72000-02-07 05:29:42 +000068 long sum;
Erik Andersen42387e42000-02-21 17:27:17 +000069 int len;
John Beppu14c82b61999-12-10 06:15:27 +000070
Erik Andersene49d5ec2000-02-08 19:58:47 +000071 if ((lstat(filename, &statbuf)) != 0) {
Erik Andersen42387e42000-02-21 17:27:17 +000072 printf("du: %s: %s\n", filename, strerror(errno));
Erik Andersene49d5ec2000-02-08 19:58:47 +000073 return 0;
74 }
75
76 du_depth++;
John Beppu08c965a2000-02-13 04:10:57 +000077 sum = (statbuf.st_blocks >> 1);
Erik Andersene49d5ec2000-02-08 19:58:47 +000078
Erik Andersen27fdd082000-02-19 18:16:49 +000079 /* Don't add in stuff pointed to by symbolic links */
Erik Andersen9ffdaa62000-02-11 21:55:04 +000080 if (S_ISLNK(statbuf.st_mode)) {
Erik Andersen42387e42000-02-21 17:27:17 +000081 sum = 0L;
82 if (du_depth == 1)
83 print(sum, filename);
Erik Andersen9ffdaa62000-02-11 21:55:04 +000084 }
Erik Andersene49d5ec2000-02-08 19:58:47 +000085 if (S_ISDIR(statbuf.st_mode)) {
86 DIR *dir;
87 struct dirent *entry;
88
89 dir = opendir(filename);
90 if (!dir) {
Erik Andersen42387e42000-02-21 17:27:17 +000091 du_depth--;
Erik Andersene49d5ec2000-02-08 19:58:47 +000092 return 0;
93 }
Erik Andersen42387e42000-02-21 17:27:17 +000094
95 len = strlen(filename);
96 if (filename[len - 1] == '/')
97 filename[--len] = '\0';
98
Erik Andersene49d5ec2000-02-08 19:58:47 +000099 while ((entry = readdir(dir))) {
100 char newfile[PATH_MAX + 1];
101 char *name = entry->d_name;
102
103 if ((strcmp(name, "..") == 0)
104 || (strcmp(name, ".") == 0)) {
105 continue;
106 }
107
Erik Andersen42387e42000-02-21 17:27:17 +0000108 if (len + strlen(name) + 1 > PATH_MAX) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000109 fprintf(stderr, name_too_long, "du");
Erik Andersen42387e42000-02-21 17:27:17 +0000110 du_depth--;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000111 return 0;
112 }
113 sprintf(newfile, "%s/%s", filename, name);
114
115 sum += du(newfile);
116 }
117 closedir(dir);
118 print(sum, filename);
119 }
Erik Andersen27fdd082000-02-19 18:16:49 +0000120 else if (statbuf.st_nlink > 1 && !count_hardlinks) {
121 /* Add files with hard links only once */
Erik Andersen029011b2000-03-04 21:19:32 +0000122 if (is_in_ino_dev_hashtable(&statbuf, NULL)) {
Erik Andersen42387e42000-02-21 17:27:17 +0000123 sum = 0L;
124 if (du_depth == 1)
125 print(sum, filename);
126 }
127 else {
Erik Andersen029011b2000-03-04 21:19:32 +0000128 add_to_ino_dev_hashtable(&statbuf, NULL);
Erik Andersen42387e42000-02-21 17:27:17 +0000129 }
Erik Andersen27fdd082000-02-19 18:16:49 +0000130 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000131 du_depth--;
132 return sum;
John Beppu0f5e1ab1999-12-09 18:23:54 +0000133}
134
Erik Andersene49d5ec2000-02-08 19:58:47 +0000135int du_main(int argc, char **argv)
136{
137 int i;
138 char opt;
139
140 /* default behaviour */
141 print = print_normal;
142
143 /* parse argv[] */
144 for (i = 1; i < argc; i++) {
145 if (argv[i][0] == '-') {
146 opt = argv[i][1];
147 switch (opt) {
148 case 's':
149 print = print_summary;
150 break;
Erik Andersen27fdd082000-02-19 18:16:49 +0000151 case 'l':
152 count_hardlinks = 1;
153 break;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000154 case 'h':
Erik Andersen27fdd082000-02-19 18:16:49 +0000155 case '-':
Erik Andersene49d5ec2000-02-08 19:58:47 +0000156 usage(du_usage);
157 break;
158 default:
159 fprintf(stderr, "du: invalid option -- %c\n", opt);
160 usage(du_usage);
161 }
162 } else {
163 break;
164 }
165 }
166
167 /* go through remaining args (if any) */
168 if (i >= argc) {
169 du(".");
170 } else {
171 long sum;
172
173 for (; i < argc; i++) {
174 sum = du(argv[i]);
Erik Andersen42387e42000-02-21 17:27:17 +0000175 if (sum && isDirectory(argv[i], FALSE, NULL)) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000176 print_normal(sum, argv[i]);
177 }
Erik Andersen029011b2000-03-04 21:19:32 +0000178 reset_ino_dev_hashtable();
Erik Andersene49d5ec2000-02-08 19:58:47 +0000179 }
180 }
181
182 exit(0);
183}
184
Erik Andersen029011b2000-03-04 21:19:32 +0000185/* $Id: du.c,v 1.16 2000/03/04 21:19:32 erik Exp $ */
186/*
187Local Variables:
188c-file-style: "linux"
189c-basic-offset: 4
190tab-width: 4
191End:
192*/