blob: a04dba6d3677befedd5add3c2ed4ccb974f32cf5 [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) {
Eric Andersenb12e5062000-12-12 23:17:26 +000063 perror_msg_and_die("%s", filename);
Erik Andersene49d5ec2000-02-08 19:58:47 +000064 }
65
66 du_depth++;
John Beppu08c965a2000-02-13 04:10:57 +000067 sum = (statbuf.st_blocks >> 1);
Erik Andersene49d5ec2000-02-08 19:58:47 +000068
Erik Andersen27fdd082000-02-19 18:16:49 +000069 /* Don't add in stuff pointed to by symbolic links */
Erik Andersen9ffdaa62000-02-11 21:55:04 +000070 if (S_ISLNK(statbuf.st_mode)) {
Erik Andersen42387e42000-02-21 17:27:17 +000071 sum = 0L;
72 if (du_depth == 1)
73 print(sum, filename);
Erik Andersen9ffdaa62000-02-11 21:55:04 +000074 }
Erik Andersene49d5ec2000-02-08 19:58:47 +000075 if (S_ISDIR(statbuf.st_mode)) {
76 DIR *dir;
77 struct dirent *entry;
78
79 dir = opendir(filename);
80 if (!dir) {
Erik Andersen42387e42000-02-21 17:27:17 +000081 du_depth--;
Erik Andersene49d5ec2000-02-08 19:58:47 +000082 return 0;
83 }
Erik Andersen42387e42000-02-21 17:27:17 +000084
85 len = strlen(filename);
86 if (filename[len - 1] == '/')
87 filename[--len] = '\0';
88
Erik Andersene49d5ec2000-02-08 19:58:47 +000089 while ((entry = readdir(dir))) {
Erik Andersen4f3f7572000-04-28 00:18:56 +000090 char newfile[BUFSIZ + 1];
Erik Andersene49d5ec2000-02-08 19:58:47 +000091 char *name = entry->d_name;
92
93 if ((strcmp(name, "..") == 0)
94 || (strcmp(name, ".") == 0)) {
95 continue;
96 }
97
Erik Andersen4f3f7572000-04-28 00:18:56 +000098 if (len + strlen(name) + 1 > BUFSIZ) {
Mark Whitleyf57c9442000-12-07 19:56:48 +000099 error_msg(name_too_long);
Erik Andersen42387e42000-02-21 17:27:17 +0000100 du_depth--;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000101 return 0;
102 }
103 sprintf(newfile, "%s/%s", filename, name);
104
105 sum += du(newfile);
106 }
107 closedir(dir);
108 print(sum, filename);
109 }
Erik Andersen27fdd082000-02-19 18:16:49 +0000110 else if (statbuf.st_nlink > 1 && !count_hardlinks) {
111 /* Add files with hard links only once */
Erik Andersen029011b2000-03-04 21:19:32 +0000112 if (is_in_ino_dev_hashtable(&statbuf, NULL)) {
Erik Andersen42387e42000-02-21 17:27:17 +0000113 sum = 0L;
114 if (du_depth == 1)
115 print(sum, filename);
116 }
117 else {
Erik Andersen029011b2000-03-04 21:19:32 +0000118 add_to_ino_dev_hashtable(&statbuf, NULL);
Erik Andersen42387e42000-02-21 17:27:17 +0000119 }
Erik Andersen27fdd082000-02-19 18:16:49 +0000120 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000121 du_depth--;
122 return sum;
John Beppu0f5e1ab1999-12-09 18:23:54 +0000123}
124
Erik Andersene49d5ec2000-02-08 19:58:47 +0000125int du_main(int argc, char **argv)
126{
Matt Kraai92ed8a32000-12-06 15:55:23 +0000127 int status = EXIT_SUCCESS;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000128 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) {
Matt Kraai92ed8a32000-12-06 15:55:23 +0000150 if (du(".") == 0)
151 status = EXIT_FAILURE;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000152 } else {
153 long sum;
154
Eric Andersen17ad45a2000-07-14 18:38:26 +0000155 for (i=optind; i < argc; i++) {
Matt Kraaie8849702000-12-06 15:56:31 +0000156 if ((sum = du(argv[i])) == 0)
Matt Kraai92ed8a32000-12-06 15:55:23 +0000157 status = EXIT_FAILURE;
Eric Andersen9df38332000-12-09 17:07:12 +0000158 if (is_directory(argv[i], FALSE, NULL)==FALSE) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000159 print_normal(sum, argv[i]);
160 }
Erik Andersen029011b2000-03-04 21:19:32 +0000161 reset_ino_dev_hashtable();
Erik Andersene49d5ec2000-02-08 19:58:47 +0000162 }
163 }
164
Matt Kraai92ed8a32000-12-06 15:55:23 +0000165 return status;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000166}
167
Eric Andersenb12e5062000-12-12 23:17:26 +0000168/* $Id: du.c,v 1.32 2000/12/12 23:17:26 andersen Exp $ */
Erik Andersen029011b2000-03-04 21:19:32 +0000169/*
170Local Variables:
171c-file-style: "linux"
172c-basic-offset: 4
173tab-width: 4
174End:
175*/