2000-02-09 01:28:47 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
1999-12-09 23:53:54 +05:30
|
|
|
/*
|
|
|
|
* Mini du implementation for busybox
|
|
|
|
*
|
|
|
|
*
|
2001-01-27 15:03:39 +05:30
|
|
|
* Copyright (C) 1999,2000,2001 by Lineo, inc.
|
1999-12-10 12:15:42 +05:30
|
|
|
* Written by John Beppu <beppu@lineo.com>
|
1999-12-09 23:53:54 +05:30
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2000-09-26 03:15:58 +05:30
|
|
|
#include "busybox.h"
|
2000-02-07 10:59:42 +05:30
|
|
|
#define BB_DECLARE_EXTERN
|
|
|
|
#define bb_need_name_too_long
|
|
|
|
#include "messages.c"
|
|
|
|
|
1999-12-09 23:53:54 +05:30
|
|
|
#include <sys/types.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <dirent.h>
|
|
|
|
#include <stdio.h>
|
2001-01-27 13:54:39 +05:30
|
|
|
#include <stdlib.h>
|
|
|
|
#include <getopt.h>
|
1999-12-10 13:10:08 +05:30
|
|
|
#include <errno.h>
|
1999-12-09 23:53:54 +05:30
|
|
|
|
2001-01-23 04:05:38 +05:30
|
|
|
#ifdef BB_FEATURE_HUMAN_READABLE
|
|
|
|
unsigned long du_disp_hr = KILOBYTE;
|
|
|
|
#endif
|
|
|
|
|
2000-02-09 01:28:47 +05:30
|
|
|
typedef void (Display) (long, char *);
|
1999-12-16 00:22:17 +05:30
|
|
|
|
2000-02-09 01:28:47 +05:30
|
|
|
static int du_depth = 0;
|
2000-02-19 23:46:49 +05:30
|
|
|
static int count_hardlinks = 0;
|
1999-12-09 23:53:54 +05:30
|
|
|
|
2000-02-09 01:28:47 +05:30
|
|
|
static Display *print;
|
|
|
|
|
|
|
|
static void print_normal(long size, char *filename)
|
1999-12-09 23:53:54 +05:30
|
|
|
{
|
2001-01-23 04:05:38 +05:30
|
|
|
#ifdef BB_FEATURE_HUMAN_READABLE
|
|
|
|
printf("%s\t%s\n", format((size * KILOBYTE), du_disp_hr), filename);
|
|
|
|
#else
|
2001-01-18 08:27:08 +05:30
|
|
|
printf("%ld\t%s\n", size, filename);
|
2001-01-23 04:05:38 +05:30
|
|
|
#endif
|
1999-12-09 23:53:54 +05:30
|
|
|
}
|
|
|
|
|
2000-02-09 01:28:47 +05:30
|
|
|
static void print_summary(long size, char *filename)
|
1999-12-16 00:22:17 +05:30
|
|
|
{
|
2000-02-09 01:28:47 +05:30
|
|
|
if (du_depth == 1) {
|
2001-01-23 04:05:38 +05:30
|
|
|
printf("summary\n");
|
2000-02-09 01:28:47 +05:30
|
|
|
print_normal(size, filename);
|
|
|
|
}
|
1999-12-16 00:22:17 +05:30
|
|
|
}
|
|
|
|
|
1999-12-09 23:53:54 +05:30
|
|
|
/* tiny recursive du */
|
2000-02-09 01:28:47 +05:30
|
|
|
static long du(char *filename)
|
1999-12-09 23:53:54 +05:30
|
|
|
{
|
2000-02-09 01:28:47 +05:30
|
|
|
struct stat statbuf;
|
|
|
|
long sum;
|
2000-02-21 22:57:17 +05:30
|
|
|
int len;
|
2000-02-09 01:28:47 +05:30
|
|
|
|
|
|
|
if ((lstat(filename, &statbuf)) != 0) {
|
2000-12-13 04:47:26 +05:30
|
|
|
perror_msg_and_die("%s", filename);
|
1999-12-09 23:53:54 +05:30
|
|
|
}
|
2000-02-09 01:28:47 +05:30
|
|
|
|
|
|
|
du_depth++;
|
2000-02-13 09:40:57 +05:30
|
|
|
sum = (statbuf.st_blocks >> 1);
|
2000-02-09 01:28:47 +05:30
|
|
|
|
2000-02-19 23:46:49 +05:30
|
|
|
/* Don't add in stuff pointed to by symbolic links */
|
2000-02-12 03:25:04 +05:30
|
|
|
if (S_ISLNK(statbuf.st_mode)) {
|
2000-02-21 22:57:17 +05:30
|
|
|
sum = 0L;
|
|
|
|
if (du_depth == 1)
|
|
|
|
print(sum, filename);
|
2000-02-12 03:25:04 +05:30
|
|
|
}
|
2000-02-09 01:28:47 +05:30
|
|
|
if (S_ISDIR(statbuf.st_mode)) {
|
|
|
|
DIR *dir;
|
|
|
|
struct dirent *entry;
|
|
|
|
|
|
|
|
dir = opendir(filename);
|
|
|
|
if (!dir) {
|
2000-02-21 22:57:17 +05:30
|
|
|
du_depth--;
|
2000-02-09 01:28:47 +05:30
|
|
|
return 0;
|
|
|
|
}
|
2000-02-21 22:57:17 +05:30
|
|
|
|
|
|
|
len = strlen(filename);
|
|
|
|
if (filename[len - 1] == '/')
|
|
|
|
filename[--len] = '\0';
|
|
|
|
|
2000-02-09 01:28:47 +05:30
|
|
|
while ((entry = readdir(dir))) {
|
2000-04-28 05:48:56 +05:30
|
|
|
char newfile[BUFSIZ + 1];
|
2000-02-09 01:28:47 +05:30
|
|
|
char *name = entry->d_name;
|
|
|
|
|
|
|
|
if ((strcmp(name, "..") == 0)
|
|
|
|
|| (strcmp(name, ".") == 0)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2000-04-28 05:48:56 +05:30
|
|
|
if (len + strlen(name) + 1 > BUFSIZ) {
|
2000-12-08 01:26:48 +05:30
|
|
|
error_msg(name_too_long);
|
2000-02-21 22:57:17 +05:30
|
|
|
du_depth--;
|
2000-02-09 01:28:47 +05:30
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
sprintf(newfile, "%s/%s", filename, name);
|
|
|
|
|
|
|
|
sum += du(newfile);
|
|
|
|
}
|
|
|
|
closedir(dir);
|
|
|
|
print(sum, filename);
|
|
|
|
}
|
2000-02-19 23:46:49 +05:30
|
|
|
else if (statbuf.st_nlink > 1 && !count_hardlinks) {
|
|
|
|
/* Add files with hard links only once */
|
2000-03-05 02:49:32 +05:30
|
|
|
if (is_in_ino_dev_hashtable(&statbuf, NULL)) {
|
2000-02-21 22:57:17 +05:30
|
|
|
sum = 0L;
|
|
|
|
if (du_depth == 1)
|
|
|
|
print(sum, filename);
|
|
|
|
}
|
|
|
|
else {
|
2000-03-05 02:49:32 +05:30
|
|
|
add_to_ino_dev_hashtable(&statbuf, NULL);
|
2000-02-21 22:57:17 +05:30
|
|
|
}
|
2000-02-19 23:46:49 +05:30
|
|
|
}
|
2000-02-09 01:28:47 +05:30
|
|
|
du_depth--;
|
|
|
|
return sum;
|
1999-12-09 23:53:54 +05:30
|
|
|
}
|
|
|
|
|
2000-02-09 01:28:47 +05:30
|
|
|
int du_main(int argc, char **argv)
|
1999-12-09 23:53:54 +05:30
|
|
|
{
|
2000-12-06 21:25:23 +05:30
|
|
|
int status = EXIT_SUCCESS;
|
2000-02-09 01:28:47 +05:30
|
|
|
int i;
|
2000-07-17 21:47:19 +05:30
|
|
|
int c;
|
2000-02-09 01:28:47 +05:30
|
|
|
|
|
|
|
/* default behaviour */
|
|
|
|
print = print_normal;
|
|
|
|
|
|
|
|
/* parse argv[] */
|
2001-01-23 04:05:38 +05:30
|
|
|
while ((c = getopt(argc, argv, "sl"
|
|
|
|
#ifdef BB_FEATURE_HUMAN_READABLE
|
|
|
|
"hm"
|
|
|
|
#endif
|
|
|
|
"k")) != EOF) {
|
2000-07-15 00:08:26 +05:30
|
|
|
switch (c) {
|
2000-02-09 01:28:47 +05:30
|
|
|
case 's':
|
2000-07-15 00:08:26 +05:30
|
|
|
print = print_summary;
|
|
|
|
break;
|
2000-02-19 23:46:49 +05:30
|
|
|
case 'l':
|
2000-07-15 00:08:26 +05:30
|
|
|
count_hardlinks = 1;
|
|
|
|
break;
|
2001-01-23 04:05:38 +05:30
|
|
|
#ifdef BB_FEATURE_HUMAN_READABLE
|
|
|
|
case 'h': du_disp_hr = 0; break;
|
|
|
|
case 'm': du_disp_hr = MEGABYTE; break;
|
|
|
|
case 'k': du_disp_hr = KILOBYTE; break;
|
|
|
|
#else
|
|
|
|
case 'k': break;
|
|
|
|
#endif
|
2000-02-09 01:28:47 +05:30
|
|
|
default:
|
2000-07-15 00:08:26 +05:30
|
|
|
usage(du_usage);
|
2000-02-09 01:28:47 +05:30
|
|
|
}
|
1999-12-10 11:45:27 +05:30
|
|
|
}
|
|
|
|
|
2000-02-09 01:28:47 +05:30
|
|
|
/* go through remaining args (if any) */
|
2000-07-15 00:08:26 +05:30
|
|
|
if (optind >= argc) {
|
2000-12-06 21:25:23 +05:30
|
|
|
if (du(".") == 0)
|
|
|
|
status = EXIT_FAILURE;
|
2000-02-09 01:28:47 +05:30
|
|
|
} else {
|
|
|
|
long sum;
|
|
|
|
|
2000-07-15 00:08:26 +05:30
|
|
|
for (i=optind; i < argc; i++) {
|
2000-12-06 21:26:31 +05:30
|
|
|
if ((sum = du(argv[i])) == 0)
|
2000-12-06 21:25:23 +05:30
|
|
|
status = EXIT_FAILURE;
|
2001-01-23 04:05:38 +05:30
|
|
|
if(is_directory(argv[i], FALSE, NULL)==FALSE) {
|
2000-02-09 01:28:47 +05:30
|
|
|
print_normal(sum, argv[i]);
|
|
|
|
}
|
2000-03-05 02:49:32 +05:30
|
|
|
reset_ino_dev_hashtable();
|
2000-02-09 01:28:47 +05:30
|
|
|
}
|
1999-12-10 11:45:27 +05:30
|
|
|
}
|
|
|
|
|
2000-12-06 21:25:23 +05:30
|
|
|
return status;
|
1999-12-09 23:53:54 +05:30
|
|
|
}
|
|
|
|
|
2001-01-27 15:03:39 +05:30
|
|
|
/* $Id: du.c,v 1.36 2001/01/27 09:33:38 andersen Exp $ */
|
2000-03-05 02:49:32 +05:30
|
|
|
/*
|
|
|
|
Local Variables:
|
|
|
|
c-file-style: "linux"
|
|
|
|
c-basic-offset: 4
|
|
|
|
tab-width: 4
|
|
|
|
End:
|
|
|
|
*/
|