blob: 7cb888de86efc692c0c84697900d602a5840f6d9 [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 *
Eric Andersen8ec10a92001-01-27 09:33:39 +00006 * Copyright (C) 1999,2000,2001 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
John Beppu0f5e1ab1999-12-09 18:23:54 +000025#include <sys/types.h>
26#include <fcntl.h>
27#include <dirent.h>
28#include <stdio.h>
Eric Andersened3ef502001-01-27 08:24:39 +000029#include <stdlib.h>
30#include <getopt.h>
Eric Anderseneba8ed72001-03-09 14:36:42 +000031#include <string.h>
John Beppu98355411999-12-10 07:40:08 +000032#include <errno.h>
Eric Andersencbe31da2001-02-20 06:14:08 +000033#include "busybox.h"
34#define BB_DECLARE_EXTERN
35#define bb_need_name_too_long
36#include "messages.c"
37
John Beppu0f5e1ab1999-12-09 18:23:54 +000038
Richard June6d0921c2001-01-22 22:35:38 +000039#ifdef BB_FEATURE_HUMAN_READABLE
Eric Andersenec9fad92001-03-07 06:04:08 +000040static unsigned long disp_hr = KILOBYTE;
Richard June6d0921c2001-01-22 22:35:38 +000041#endif
42
Erik Andersene49d5ec2000-02-08 19:58:47 +000043typedef void (Display) (long, char *);
John Beppu0f5e1ab1999-12-09 18:23:54 +000044
Erik Andersene49d5ec2000-02-08 19:58:47 +000045static int du_depth = 0;
Erik Andersen27fdd082000-02-19 18:16:49 +000046static int count_hardlinks = 0;
John Beppue1618e41999-12-15 18:52:17 +000047
Erik Andersene49d5ec2000-02-08 19:58:47 +000048static Display *print;
49
50static void print_normal(long size, char *filename)
John Beppu0f5e1ab1999-12-09 18:23:54 +000051{
Eric Andersenec9fad92001-03-07 06:04:08 +000052 unsigned long base;
Richard June6d0921c2001-01-22 22:35:38 +000053#ifdef BB_FEATURE_HUMAN_READABLE
Eric Andersenec9fad92001-03-07 06:04:08 +000054 switch (disp_hr) {
55 case MEGABYTE:
56 base = KILOBYTE;
57 break;
58 case KILOBYTE:
59 base = 1;
60 break;
61 default:
62 base = 0;
63 }
Mark Whitleyae5612c2001-03-07 17:42:07 +000064 printf("%s\t%s\n", make_human_readable_str(size, base), filename);
Richard June6d0921c2001-01-22 22:35:38 +000065#else
Matt Kraai12f417e2001-01-18 02:57:08 +000066 printf("%ld\t%s\n", size, filename);
Richard June6d0921c2001-01-22 22:35:38 +000067#endif
John Beppu0f5e1ab1999-12-09 18:23:54 +000068}
69
Erik Andersene49d5ec2000-02-08 19:58:47 +000070static void print_summary(long size, char *filename)
John Beppue1618e41999-12-15 18:52:17 +000071{
Erik Andersene49d5ec2000-02-08 19:58:47 +000072 if (du_depth == 1) {
Mark Whitleyae5612c2001-03-07 17:42:07 +000073 printf("summary\n");
Erik Andersene49d5ec2000-02-08 19:58:47 +000074 print_normal(size, filename);
75 }
John Beppue1618e41999-12-15 18:52:17 +000076}
77
John Beppu0f5e1ab1999-12-09 18:23:54 +000078/* tiny recursive du */
Erik Andersene49d5ec2000-02-08 19:58:47 +000079static long du(char *filename)
John Beppu0f5e1ab1999-12-09 18:23:54 +000080{
Erik Andersene49d5ec2000-02-08 19:58:47 +000081 struct stat statbuf;
Erik Andersenfac10d72000-02-07 05:29:42 +000082 long sum;
Erik Andersen42387e42000-02-21 17:27:17 +000083 int len;
John Beppu14c82b61999-12-10 06:15:27 +000084
Erik Andersene49d5ec2000-02-08 19:58:47 +000085 if ((lstat(filename, &statbuf)) != 0) {
Eric Andersenb12e5062000-12-12 23:17:26 +000086 perror_msg_and_die("%s", filename);
Erik Andersene49d5ec2000-02-08 19:58:47 +000087 }
88
89 du_depth++;
John Beppu08c965a2000-02-13 04:10:57 +000090 sum = (statbuf.st_blocks >> 1);
Erik Andersene49d5ec2000-02-08 19:58:47 +000091
Erik Andersen27fdd082000-02-19 18:16:49 +000092 /* Don't add in stuff pointed to by symbolic links */
Erik Andersen9ffdaa62000-02-11 21:55:04 +000093 if (S_ISLNK(statbuf.st_mode)) {
Erik Andersen42387e42000-02-21 17:27:17 +000094 sum = 0L;
95 if (du_depth == 1)
96 print(sum, filename);
Erik Andersen9ffdaa62000-02-11 21:55:04 +000097 }
Erik Andersene49d5ec2000-02-08 19:58:47 +000098 if (S_ISDIR(statbuf.st_mode)) {
99 DIR *dir;
100 struct dirent *entry;
101
102 dir = opendir(filename);
103 if (!dir) {
Erik Andersen42387e42000-02-21 17:27:17 +0000104 du_depth--;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000105 return 0;
106 }
Erik Andersen42387e42000-02-21 17:27:17 +0000107
108 len = strlen(filename);
109 if (filename[len - 1] == '/')
110 filename[--len] = '\0';
111
Erik Andersene49d5ec2000-02-08 19:58:47 +0000112 while ((entry = readdir(dir))) {
Erik Andersen4f3f7572000-04-28 00:18:56 +0000113 char newfile[BUFSIZ + 1];
Erik Andersene49d5ec2000-02-08 19:58:47 +0000114 char *name = entry->d_name;
115
116 if ((strcmp(name, "..") == 0)
117 || (strcmp(name, ".") == 0)) {
118 continue;
119 }
120
Erik Andersen4f3f7572000-04-28 00:18:56 +0000121 if (len + strlen(name) + 1 > BUFSIZ) {
Mark Whitleyf57c9442000-12-07 19:56:48 +0000122 error_msg(name_too_long);
Erik Andersen42387e42000-02-21 17:27:17 +0000123 du_depth--;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000124 return 0;
125 }
126 sprintf(newfile, "%s/%s", filename, name);
127
128 sum += du(newfile);
129 }
130 closedir(dir);
131 print(sum, filename);
132 }
Erik Andersen27fdd082000-02-19 18:16:49 +0000133 else if (statbuf.st_nlink > 1 && !count_hardlinks) {
134 /* Add files with hard links only once */
Erik Andersen029011b2000-03-04 21:19:32 +0000135 if (is_in_ino_dev_hashtable(&statbuf, NULL)) {
Erik Andersen42387e42000-02-21 17:27:17 +0000136 sum = 0L;
137 if (du_depth == 1)
138 print(sum, filename);
139 }
140 else {
Erik Andersen029011b2000-03-04 21:19:32 +0000141 add_to_ino_dev_hashtable(&statbuf, NULL);
Erik Andersen42387e42000-02-21 17:27:17 +0000142 }
Erik Andersen27fdd082000-02-19 18:16:49 +0000143 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000144 du_depth--;
145 return sum;
John Beppu0f5e1ab1999-12-09 18:23:54 +0000146}
147
Erik Andersene49d5ec2000-02-08 19:58:47 +0000148int du_main(int argc, char **argv)
149{
Matt Kraai92ed8a32000-12-06 15:55:23 +0000150 int status = EXIT_SUCCESS;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000151 int i;
Pavel Roskin47d49262000-07-17 16:17:19 +0000152 int c;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000153
154 /* default behaviour */
155 print = print_normal;
156
157 /* parse argv[] */
Richard June6d0921c2001-01-22 22:35:38 +0000158 while ((c = getopt(argc, argv, "sl"
159#ifdef BB_FEATURE_HUMAN_READABLE
160"hm"
161#endif
162"k")) != EOF) {
Eric Andersen17ad45a2000-07-14 18:38:26 +0000163 switch (c) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000164 case 's':
Eric Andersen17ad45a2000-07-14 18:38:26 +0000165 print = print_summary;
166 break;
Erik Andersen27fdd082000-02-19 18:16:49 +0000167 case 'l':
Eric Andersen17ad45a2000-07-14 18:38:26 +0000168 count_hardlinks = 1;
169 break;
Richard June6d0921c2001-01-22 22:35:38 +0000170#ifdef BB_FEATURE_HUMAN_READABLE
Eric Andersenec9fad92001-03-07 06:04:08 +0000171 case 'h': disp_hr = 0; break;
172 case 'm': disp_hr = MEGABYTE; break;
Richard June6d0921c2001-01-22 22:35:38 +0000173#endif
Eric Andersen8b728a22001-03-06 23:14:43 +0000174 case 'k': break;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000175 default:
Eric Andersen67991cf2001-02-14 21:23:06 +0000176 show_usage();
Erik Andersene49d5ec2000-02-08 19:58:47 +0000177 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000178 }
179
180 /* go through remaining args (if any) */
Eric Andersen17ad45a2000-07-14 18:38:26 +0000181 if (optind >= argc) {
Matt Kraai92ed8a32000-12-06 15:55:23 +0000182 if (du(".") == 0)
183 status = EXIT_FAILURE;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000184 } else {
185 long sum;
186
Eric Andersen17ad45a2000-07-14 18:38:26 +0000187 for (i=optind; i < argc; i++) {
Matt Kraaie8849702000-12-06 15:56:31 +0000188 if ((sum = du(argv[i])) == 0)
Matt Kraai92ed8a32000-12-06 15:55:23 +0000189 status = EXIT_FAILURE;
Richard June6d0921c2001-01-22 22:35:38 +0000190 if(is_directory(argv[i], FALSE, NULL)==FALSE) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000191 print_normal(sum, argv[i]);
192 }
Erik Andersen029011b2000-03-04 21:19:32 +0000193 reset_ino_dev_hashtable();
Erik Andersene49d5ec2000-02-08 19:58:47 +0000194 }
195 }
196
Matt Kraai92ed8a32000-12-06 15:55:23 +0000197 return status;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000198}
199
Eric Anderseneba8ed72001-03-09 14:36:42 +0000200/* $Id: du.c,v 1.43 2001/03/09 14:36:42 andersen Exp $ */
Erik Andersen029011b2000-03-04 21:19:32 +0000201/*
202Local Variables:
203c-file-style: "linux"
204c-basic-offset: 4
205tab-width: 4
206End:
207*/