blob: ed9f7156a1e87f90fce7da62fb81f4fa115d3dfe [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
Erik Andersene49d5ec2000-02-08 19:58:47 +000040typedef void (Display) (long, char *);
John Beppu0f5e1ab1999-12-09 18:23:54 +000041
Erik Andersene49d5ec2000-02-08 19:58:47 +000042static int du_depth = 0;
Erik Andersen27fdd082000-02-19 18:16:49 +000043static int count_hardlinks = 0;
Eric Andersen265d2292002-04-06 23:16:44 +000044static int one_file_system = 0;
45static dev_t dir_dev = 0;
John Beppue1618e41999-12-15 18:52:17 +000046
Erik Andersene49d5ec2000-02-08 19:58:47 +000047static Display *print;
48
49static void print_normal(long size, char *filename)
John Beppu0f5e1ab1999-12-09 18:23:54 +000050{
Eric Andersenbdfd0d72001-10-24 05:00:29 +000051#ifdef CONFIG_FEATURE_HUMAN_READABLE
Eric Andersenf429bac2001-06-13 08:02:45 +000052 printf("%s\t%s\n", make_human_readable_str(size<<10, 1, disp_hr), filename);
Richard June6d0921c2001-01-22 22:35:38 +000053#else
Matt Kraai12f417e2001-01-18 02:57:08 +000054 printf("%ld\t%s\n", size, filename);
Richard June6d0921c2001-01-22 22:35:38 +000055#endif
John Beppu0f5e1ab1999-12-09 18:23:54 +000056}
57
Erik Andersene49d5ec2000-02-08 19:58:47 +000058static void print_summary(long size, char *filename)
John Beppue1618e41999-12-15 18:52:17 +000059{
Erik Andersene49d5ec2000-02-08 19:58:47 +000060 if (du_depth == 1) {
61 print_normal(size, filename);
62 }
John Beppue1618e41999-12-15 18:52:17 +000063}
64
John Beppu0f5e1ab1999-12-09 18:23:54 +000065/* tiny recursive du */
Erik Andersene49d5ec2000-02-08 19:58:47 +000066static long du(char *filename)
John Beppu0f5e1ab1999-12-09 18:23:54 +000067{
Erik Andersene49d5ec2000-02-08 19:58:47 +000068 struct stat statbuf;
Erik Andersenfac10d72000-02-07 05:29:42 +000069 long sum;
John Beppu14c82b61999-12-10 06:15:27 +000070
Erik Andersene49d5ec2000-02-08 19:58:47 +000071 if ((lstat(filename, &statbuf)) != 0) {
Eric Andersene5dfced2001-04-09 22:48:12 +000072 perror_msg("%s", filename);
73 return 0;
Erik Andersene49d5ec2000-02-08 19:58:47 +000074 }
Eric Andersen265d2292002-04-06 23:16:44 +000075 if (du_depth == 0)
76 dir_dev = statbuf.st_dev;
77 else if (one_file_system && dir_dev != statbuf.st_dev)
78 return 0;
Erik Andersene49d5ec2000-02-08 19:58:47 +000079
80 du_depth++;
John Beppu08c965a2000-02-13 04:10:57 +000081 sum = (statbuf.st_blocks >> 1);
Erik Andersene49d5ec2000-02-08 19:58:47 +000082
Erik Andersen27fdd082000-02-19 18:16:49 +000083 /* Don't add in stuff pointed to by symbolic links */
Erik Andersen9ffdaa62000-02-11 21:55:04 +000084 if (S_ISLNK(statbuf.st_mode)) {
Erik Andersen42387e42000-02-21 17:27:17 +000085 sum = 0L;
Eric Andersen8fa1bf72001-06-30 17:54:20 +000086 if (du_depth == 1) {
87 }
Erik Andersen9ffdaa62000-02-11 21:55:04 +000088 }
Erik Andersene49d5ec2000-02-08 19:58:47 +000089 if (S_ISDIR(statbuf.st_mode)) {
90 DIR *dir;
91 struct dirent *entry;
Eric Andersen04b03542001-05-07 22:49:43 +000092 char *newfile;
Erik Andersene49d5ec2000-02-08 19:58:47 +000093
94 dir = opendir(filename);
95 if (!dir) {
Erik Andersen42387e42000-02-21 17:27:17 +000096 du_depth--;
Erik Andersene49d5ec2000-02-08 19:58:47 +000097 return 0;
98 }
Erik Andersen42387e42000-02-21 17:27:17 +000099
Eric Andersen04b03542001-05-07 22:49:43 +0000100 newfile = last_char_is(filename, '/');
101 if (newfile)
102 *newfile = '\0';
Erik Andersen42387e42000-02-21 17:27:17 +0000103
Erik Andersene49d5ec2000-02-08 19:58:47 +0000104 while ((entry = readdir(dir))) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000105 char *name = entry->d_name;
106
107 if ((strcmp(name, "..") == 0)
108 || (strcmp(name, ".") == 0)) {
109 continue;
110 }
Eric Andersene5dfced2001-04-09 22:48:12 +0000111 newfile = concat_path_file(filename, name);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000112 sum += du(newfile);
Eric Andersene5dfced2001-04-09 22:48:12 +0000113 free(newfile);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000114 }
115 closedir(dir);
116 print(sum, filename);
117 }
Erik Andersen27fdd082000-02-19 18:16:49 +0000118 else if (statbuf.st_nlink > 1 && !count_hardlinks) {
119 /* Add files with hard links only once */
Erik Andersen029011b2000-03-04 21:19:32 +0000120 if (is_in_ino_dev_hashtable(&statbuf, NULL)) {
Erik Andersen42387e42000-02-21 17:27:17 +0000121 sum = 0L;
122 if (du_depth == 1)
123 print(sum, filename);
124 }
125 else {
Erik Andersen029011b2000-03-04 21:19:32 +0000126 add_to_ino_dev_hashtable(&statbuf, NULL);
Erik Andersen42387e42000-02-21 17:27:17 +0000127 }
Erik Andersen27fdd082000-02-19 18:16:49 +0000128 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000129 du_depth--;
130 return sum;
John Beppu0f5e1ab1999-12-09 18:23:54 +0000131}
132
Erik Andersene49d5ec2000-02-08 19:58:47 +0000133int du_main(int argc, char **argv)
134{
Matt Kraai92ed8a32000-12-06 15:55:23 +0000135 int status = EXIT_SUCCESS;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000136 int i;
Pavel Roskin47d49262000-07-17 16:17:19 +0000137 int c;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000138
139 /* default behaviour */
140 print = print_normal;
141
142 /* parse argv[] */
Eric Andersen265d2292002-04-06 23:16:44 +0000143 while ((c = getopt(argc, argv, "slx"
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000144#ifdef CONFIG_FEATURE_HUMAN_READABLE
Richard June6d0921c2001-01-22 22:35:38 +0000145"hm"
146#endif
147"k")) != EOF) {
Eric Andersen17ad45a2000-07-14 18:38:26 +0000148 switch (c) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000149 case 's':
Eric Andersen17ad45a2000-07-14 18:38:26 +0000150 print = print_summary;
151 break;
Erik Andersen27fdd082000-02-19 18:16:49 +0000152 case 'l':
Eric Andersen17ad45a2000-07-14 18:38:26 +0000153 count_hardlinks = 1;
154 break;
Eric Andersen265d2292002-04-06 23:16:44 +0000155 case 'x':
156 one_file_system = 1;
157 break;
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000158#ifdef CONFIG_FEATURE_HUMAN_READABLE
Eric Andersenec9fad92001-03-07 06:04:08 +0000159 case 'h': disp_hr = 0; break;
160 case 'm': disp_hr = MEGABYTE; break;
Richard June6d0921c2001-01-22 22:35:38 +0000161#endif
Eric Andersen8b728a22001-03-06 23:14:43 +0000162 case 'k': break;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000163 default:
Eric Andersen67991cf2001-02-14 21:23:06 +0000164 show_usage();
Erik Andersene49d5ec2000-02-08 19:58:47 +0000165 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000166 }
167
168 /* go through remaining args (if any) */
Eric Andersen17ad45a2000-07-14 18:38:26 +0000169 if (optind >= argc) {
Matt Kraai92ed8a32000-12-06 15:55:23 +0000170 if (du(".") == 0)
171 status = EXIT_FAILURE;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000172 } else {
173 long sum;
174
Eric Andersen17ad45a2000-07-14 18:38:26 +0000175 for (i=optind; i < argc; i++) {
Eric Andersen8fa1bf72001-06-30 17:54:20 +0000176 sum = du(argv[i]);
Richard June6d0921c2001-01-22 22:35:38 +0000177 if(is_directory(argv[i], FALSE, NULL)==FALSE) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000178 print_normal(sum, argv[i]);
179 }
Erik Andersen029011b2000-03-04 21:19:32 +0000180 reset_ino_dev_hashtable();
Erik Andersene49d5ec2000-02-08 19:58:47 +0000181 }
182 }
183
Matt Kraai92ed8a32000-12-06 15:55:23 +0000184 return status;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000185}
186
Eric Andersen265d2292002-04-06 23:16:44 +0000187/* $Id: du.c,v 1.53 2002/04/06 23:16:44 andersen Exp $ */
Erik Andersen029011b2000-03-04 21:19:32 +0000188/*
189Local Variables:
190c-file-style: "linux"
191c-basic-offset: 4
192tab-width: 4
193End:
194*/