blob: a0f1606fe8dc2c5cc497f90143e53da8cb427ea3 [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
Eric Andersen3570a342000-09-25 21:45:58 +000025#include "busybox.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 Andersene49d5ec2000-02-08 19:58:47 +000038static int du_depth = 0;
Erik Andersen27fdd082000-02-19 18:16:49 +000039static int count_hardlinks = 0;
John Beppue1618e41999-12-15 18:52:17 +000040
Erik Andersene49d5ec2000-02-08 19:58:47 +000041static Display *print;
42
43static void print_normal(long size, char *filename)
John Beppu0f5e1ab1999-12-09 18:23:54 +000044{
Erik Andersen27fdd082000-02-19 18:16:49 +000045 fprintf(stdout, "%ld\t%s\n", size, filename);
John Beppu0f5e1ab1999-12-09 18:23:54 +000046}
47
Erik Andersene49d5ec2000-02-08 19:58:47 +000048static void print_summary(long size, char *filename)
John Beppue1618e41999-12-15 18:52:17 +000049{
Erik Andersene49d5ec2000-02-08 19:58:47 +000050 if (du_depth == 1) {
51 print_normal(size, filename);
52 }
John Beppue1618e41999-12-15 18:52:17 +000053}
54
John Beppu0f5e1ab1999-12-09 18:23:54 +000055/* tiny recursive du */
Erik Andersene49d5ec2000-02-08 19:58:47 +000056static long du(char *filename)
John Beppu0f5e1ab1999-12-09 18:23:54 +000057{
Erik Andersene49d5ec2000-02-08 19:58:47 +000058 struct stat statbuf;
Erik Andersenfac10d72000-02-07 05:29:42 +000059 long sum;
Erik Andersen42387e42000-02-21 17:27:17 +000060 int len;
John Beppu14c82b61999-12-10 06:15:27 +000061
Erik Andersene49d5ec2000-02-08 19:58:47 +000062 if ((lstat(filename, &statbuf)) != 0) {
Erik Andersen42387e42000-02-21 17:27:17 +000063 printf("du: %s: %s\n", filename, strerror(errno));
Erik Andersene49d5ec2000-02-08 19:58:47 +000064 return 0;
65 }
66
67 du_depth++;
John Beppu08c965a2000-02-13 04:10:57 +000068 sum = (statbuf.st_blocks >> 1);
Erik Andersene49d5ec2000-02-08 19:58:47 +000069
Erik Andersen27fdd082000-02-19 18:16:49 +000070 /* Don't add in stuff pointed to by symbolic links */
Erik Andersen9ffdaa62000-02-11 21:55:04 +000071 if (S_ISLNK(statbuf.st_mode)) {
Erik Andersen42387e42000-02-21 17:27:17 +000072 sum = 0L;
73 if (du_depth == 1)
74 print(sum, filename);
Erik Andersen9ffdaa62000-02-11 21:55:04 +000075 }
Erik Andersene49d5ec2000-02-08 19:58:47 +000076 if (S_ISDIR(statbuf.st_mode)) {
77 DIR *dir;
78 struct dirent *entry;
79
80 dir = opendir(filename);
81 if (!dir) {
Erik Andersen42387e42000-02-21 17:27:17 +000082 du_depth--;
Erik Andersene49d5ec2000-02-08 19:58:47 +000083 return 0;
84 }
Erik Andersen42387e42000-02-21 17:27:17 +000085
86 len = strlen(filename);
87 if (filename[len - 1] == '/')
88 filename[--len] = '\0';
89
Erik Andersene49d5ec2000-02-08 19:58:47 +000090 while ((entry = readdir(dir))) {
Erik Andersen4f3f7572000-04-28 00:18:56 +000091 char newfile[BUFSIZ + 1];
Erik Andersene49d5ec2000-02-08 19:58:47 +000092 char *name = entry->d_name;
93
94 if ((strcmp(name, "..") == 0)
95 || (strcmp(name, ".") == 0)) {
96 continue;
97 }
98
Erik Andersen4f3f7572000-04-28 00:18:56 +000099 if (len + strlen(name) + 1 > BUFSIZ) {
Matt Kraaid537a952000-07-14 01:51:25 +0000100 errorMsg(name_too_long);
Erik Andersen42387e42000-02-21 17:27:17 +0000101 du_depth--;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000102 return 0;
103 }
104 sprintf(newfile, "%s/%s", filename, name);
105
106 sum += du(newfile);
107 }
108 closedir(dir);
109 print(sum, filename);
110 }
Erik Andersen27fdd082000-02-19 18:16:49 +0000111 else if (statbuf.st_nlink > 1 && !count_hardlinks) {
112 /* Add files with hard links only once */
Erik Andersen029011b2000-03-04 21:19:32 +0000113 if (is_in_ino_dev_hashtable(&statbuf, NULL)) {
Erik Andersen42387e42000-02-21 17:27:17 +0000114 sum = 0L;
115 if (du_depth == 1)
116 print(sum, filename);
117 }
118 else {
Erik Andersen029011b2000-03-04 21:19:32 +0000119 add_to_ino_dev_hashtable(&statbuf, NULL);
Erik Andersen42387e42000-02-21 17:27:17 +0000120 }
Erik Andersen27fdd082000-02-19 18:16:49 +0000121 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000122 du_depth--;
123 return sum;
John Beppu0f5e1ab1999-12-09 18:23:54 +0000124}
125
Erik Andersene49d5ec2000-02-08 19:58:47 +0000126int du_main(int argc, char **argv)
127{
128 int i;
Pavel Roskin47d49262000-07-17 16:17:19 +0000129 int c;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000130
131 /* default behaviour */
132 print = print_normal;
133
134 /* parse argv[] */
Eric Andersen17ad45a2000-07-14 18:38:26 +0000135 while ((c = getopt(argc, argv, "sl")) != EOF) {
136 switch (c) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000137 case 's':
Eric Andersen17ad45a2000-07-14 18:38:26 +0000138 print = print_summary;
139 break;
Erik Andersen27fdd082000-02-19 18:16:49 +0000140 case 'l':
Eric Andersen17ad45a2000-07-14 18:38:26 +0000141 count_hardlinks = 1;
142 break;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000143 default:
Eric Andersen17ad45a2000-07-14 18:38:26 +0000144 usage(du_usage);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000145 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000146 }
147
148 /* go through remaining args (if any) */
Eric Andersen17ad45a2000-07-14 18:38:26 +0000149 if (optind >= argc) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000150 du(".");
151 } else {
152 long sum;
153
Eric Andersen17ad45a2000-07-14 18:38:26 +0000154 for (i=optind; i < argc; i++) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000155 sum = du(argv[i]);
Erik Andersen42387e42000-02-21 17:27:17 +0000156 if (sum && isDirectory(argv[i], FALSE, NULL)) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000157 print_normal(sum, argv[i]);
158 }
Erik Andersen029011b2000-03-04 21:19:32 +0000159 reset_ino_dev_hashtable();
Erik Andersene49d5ec2000-02-08 19:58:47 +0000160 }
161 }
162
Matt Kraai3e856ce2000-12-01 02:55:13 +0000163 return EXIT_SUCCESS;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000164}
165
Matt Kraai3e856ce2000-12-01 02:55:13 +0000166/* $Id: du.c,v 1.26 2000/12/01 02:55:13 kraai Exp $ */
Erik Andersen029011b2000-03-04 21:19:32 +0000167/*
168Local Variables:
169c-file-style: "linux"
170c-basic-offset: 4
171tab-width: 4
172End:
173*/