blob: 2e49b2147745224c2a0001099a51b6d010aaab37 [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 *
Eric Andersenbdfd0d72001-10-24 05:00:29 +00005 * Copyright (C) 1999,2000,2001 by Lineo, inc. and John Beppu
6 * Copyright (C) 1999,2000,2001 by John Beppu <beppu@codepoet.org>
Eric Andersen265d2292002-04-06 23:16:44 +00007 * Copyright (C) 2002 Edward Betts <edward@debian.org>
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"
Eric Andersencbe31da2001-02-20 06:14:08 +000034
John Beppu0f5e1ab1999-12-09 18:23:54 +000035
Eric Andersenbdfd0d72001-10-24 05:00:29 +000036#ifdef CONFIG_FEATURE_HUMAN_READABLE
Eric Andersenec9fad92001-03-07 06:04:08 +000037static unsigned long disp_hr = KILOBYTE;
Richard June6d0921c2001-01-22 22:35:38 +000038#endif
39
Aaron Lehmann5d3cb7c2002-08-23 07:28:45 +000040static int du_depth /*= 0*/;
41static int count_hardlinks /*= 0*/;
42static int one_file_system /*= 0*/;
Glenn L McGrath14dad702002-08-23 03:25:22 +000043static dev_t dir_dev;
John Beppue1618e41999-12-15 18:52:17 +000044
Glenn L McGrath14dad702002-08-23 03:25:22 +000045static void (*print) (long, char *);
Erik Andersene49d5ec2000-02-08 19:58:47 +000046
47static void print_normal(long size, char *filename)
John Beppu0f5e1ab1999-12-09 18:23:54 +000048{
Eric Andersenbdfd0d72001-10-24 05:00:29 +000049#ifdef CONFIG_FEATURE_HUMAN_READABLE
Glenn L McGrath14dad702002-08-23 03:25:22 +000050 printf("%s\t%s\n", make_human_readable_str(size << 10, 1, disp_hr),
51 filename);
Richard June6d0921c2001-01-22 22:35:38 +000052#else
Matt Kraai12f417e2001-01-18 02:57:08 +000053 printf("%ld\t%s\n", size, filename);
Richard June6d0921c2001-01-22 22:35:38 +000054#endif
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;
John Beppu14c82b61999-12-10 06:15:27 +000069
Erik Andersene49d5ec2000-02-08 19:58:47 +000070 if ((lstat(filename, &statbuf)) != 0) {
Eric Andersene5dfced2001-04-09 22:48:12 +000071 perror_msg("%s", filename);
72 return 0;
Erik Andersene49d5ec2000-02-08 19:58:47 +000073 }
Eric Andersen265d2292002-04-06 23:16:44 +000074 if (du_depth == 0)
75 dir_dev = statbuf.st_dev;
76 else if (one_file_system && dir_dev != statbuf.st_dev)
77 return 0;
Erik Andersene49d5ec2000-02-08 19:58:47 +000078
79 du_depth++;
John Beppu08c965a2000-02-13 04:10:57 +000080 sum = (statbuf.st_blocks >> 1);
Erik Andersene49d5ec2000-02-08 19:58:47 +000081
Erik Andersen27fdd082000-02-19 18:16:49 +000082 /* Don't add in stuff pointed to by symbolic links */
Erik Andersen9ffdaa62000-02-11 21:55:04 +000083 if (S_ISLNK(statbuf.st_mode)) {
Erik Andersen42387e42000-02-21 17:27:17 +000084 sum = 0L;
Eric Andersen8fa1bf72001-06-30 17:54:20 +000085 if (du_depth == 1) {
86 }
Erik Andersen9ffdaa62000-02-11 21:55:04 +000087 }
Erik Andersene49d5ec2000-02-08 19:58:47 +000088 if (S_ISDIR(statbuf.st_mode)) {
89 DIR *dir;
90 struct dirent *entry;
Eric Andersen04b03542001-05-07 22:49:43 +000091 char *newfile;
Erik Andersene49d5ec2000-02-08 19:58:47 +000092
93 dir = opendir(filename);
94 if (!dir) {
Erik Andersen42387e42000-02-21 17:27:17 +000095 du_depth--;
Erik Andersene49d5ec2000-02-08 19:58:47 +000096 return 0;
97 }
Erik Andersen42387e42000-02-21 17:27:17 +000098
Eric Andersen04b03542001-05-07 22:49:43 +000099 newfile = last_char_is(filename, '/');
100 if (newfile)
101 *newfile = '\0';
Erik Andersen42387e42000-02-21 17:27:17 +0000102
Erik Andersene49d5ec2000-02-08 19:58:47 +0000103 while ((entry = readdir(dir))) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000104 char *name = entry->d_name;
105
106 if ((strcmp(name, "..") == 0)
107 || (strcmp(name, ".") == 0)) {
108 continue;
109 }
Eric Andersene5dfced2001-04-09 22:48:12 +0000110 newfile = concat_path_file(filename, name);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000111 sum += du(newfile);
Eric Andersene5dfced2001-04-09 22:48:12 +0000112 free(newfile);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000113 }
114 closedir(dir);
115 print(sum, filename);
Glenn L McGrath14dad702002-08-23 03:25:22 +0000116 } else if (statbuf.st_nlink > 1 && !count_hardlinks) {
Erik Andersen27fdd082000-02-19 18:16:49 +0000117 /* Add files with hard links only once */
Erik Andersen029011b2000-03-04 21:19:32 +0000118 if (is_in_ino_dev_hashtable(&statbuf, NULL)) {
Erik Andersen42387e42000-02-21 17:27:17 +0000119 sum = 0L;
120 if (du_depth == 1)
121 print(sum, filename);
Glenn L McGrath14dad702002-08-23 03:25:22 +0000122 } else {
Erik Andersen029011b2000-03-04 21:19:32 +0000123 add_to_ino_dev_hashtable(&statbuf, NULL);
Erik Andersen42387e42000-02-21 17:27:17 +0000124 }
Erik Andersen27fdd082000-02-19 18:16:49 +0000125 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000126 du_depth--;
127 return sum;
John Beppu0f5e1ab1999-12-09 18:23:54 +0000128}
129
Erik Andersene49d5ec2000-02-08 19:58:47 +0000130int du_main(int argc, char **argv)
131{
Matt Kraai92ed8a32000-12-06 15:55:23 +0000132 int status = EXIT_SUCCESS;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000133 int i;
Pavel Roskin47d49262000-07-17 16:17:19 +0000134 int c;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000135
136 /* default behaviour */
137 print = print_normal;
138
139 /* parse argv[] */
Eric Andersen265d2292002-04-06 23:16:44 +0000140 while ((c = getopt(argc, argv, "slx"
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000141#ifdef CONFIG_FEATURE_HUMAN_READABLE
Glenn L McGrath14dad702002-08-23 03:25:22 +0000142 "hm"
Richard June6d0921c2001-01-22 22:35:38 +0000143#endif
Glenn L McGrath14dad702002-08-23 03:25:22 +0000144 "k")) != EOF) {
145 switch (c) {
146 case 's':
147 print = print_summary;
148 break;
149 case 'l':
150 count_hardlinks = 1;
151 break;
152 case 'x':
153 one_file_system = 1;
154 break;
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000155#ifdef CONFIG_FEATURE_HUMAN_READABLE
Glenn L McGrath14dad702002-08-23 03:25:22 +0000156 case 'h':
157 disp_hr = 0;
158 break;
159 case 'm':
160 disp_hr = MEGABYTE;
161 break;
Richard June6d0921c2001-01-22 22:35:38 +0000162#endif
Glenn L McGrath14dad702002-08-23 03:25:22 +0000163 case 'k':
164 break;
165 default:
166 show_usage();
167 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000168 }
169
170 /* go through remaining args (if any) */
Eric Andersen17ad45a2000-07-14 18:38:26 +0000171 if (optind >= argc) {
Matt Kraai92ed8a32000-12-06 15:55:23 +0000172 if (du(".") == 0)
173 status = EXIT_FAILURE;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000174 } else {
175 long sum;
176
Glenn L McGrath14dad702002-08-23 03:25:22 +0000177 for (i = optind; i < argc; i++) {
Eric Andersen8fa1bf72001-06-30 17:54:20 +0000178 sum = du(argv[i]);
Glenn L McGrath14dad702002-08-23 03:25:22 +0000179 if (is_directory(argv[i], FALSE, NULL) == FALSE) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000180 print_normal(sum, argv[i]);
181 }
Erik Andersen029011b2000-03-04 21:19:32 +0000182 reset_ino_dev_hashtable();
Erik Andersene49d5ec2000-02-08 19:58:47 +0000183 }
184 }
185
Matt Kraai92ed8a32000-12-06 15:55:23 +0000186 return status;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000187}
188
Aaron Lehmann5d3cb7c2002-08-23 07:28:45 +0000189/* $Id: du.c,v 1.55 2002/08/23 07:28:45 aaronl Exp $ */
Erik Andersen029011b2000-03-04 21:19:32 +0000190/*
191Local Variables:
192c-file-style: "linux"
193c-basic-offset: 4
194tab-width: 4
195End:
196*/