2002-09-29 01:14:03 +04:00
|
|
|
/* $NetBSD: du.c,v 1.19 2002/09/28 21:14:03 provos Exp $ */
|
1995-03-28 21:50:08 +04:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
1995-03-28 21:50:08 +04:00
|
|
|
* Copyright (c) 1989, 1993, 1994
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
1993-03-21 12:45:37 +03:00
|
|
|
*
|
|
|
|
* This code is derived from software contributed to Berkeley by
|
|
|
|
* Chris Newcomb.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by the University of
|
|
|
|
* California, Berkeley and its contributors.
|
|
|
|
* 4. Neither the name of the University nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
1997-10-18 17:21:42 +04:00
|
|
|
#include <sys/cdefs.h>
|
1993-03-21 12:45:37 +03:00
|
|
|
#ifndef lint
|
1997-10-18 17:21:42 +04:00
|
|
|
__COPYRIGHT("@(#) Copyright (c) 1989, 1993, 1994\n\
|
|
|
|
The Regents of the University of California. All rights reserved.\n");
|
1993-03-21 12:45:37 +03:00
|
|
|
#endif /* not lint */
|
|
|
|
|
|
|
|
#ifndef lint
|
1995-03-28 21:50:08 +04:00
|
|
|
#if 0
|
1995-09-28 09:19:55 +03:00
|
|
|
static char sccsid[] = "@(#)du.c 8.5 (Berkeley) 5/4/95";
|
1995-03-28 21:50:08 +04:00
|
|
|
#else
|
2002-09-29 01:14:03 +04:00
|
|
|
__RCSID("$NetBSD: du.c,v 1.19 2002/09/28 21:14:03 provos Exp $");
|
1995-03-28 21:50:08 +04:00
|
|
|
#endif
|
1993-03-21 12:45:37 +03:00
|
|
|
#endif /* not lint */
|
|
|
|
|
1993-10-13 21:33:45 +03:00
|
|
|
#include <sys/types.h>
|
1993-03-21 12:45:37 +03:00
|
|
|
#include <sys/stat.h>
|
1995-03-28 21:50:08 +04:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
#include <dirent.h>
|
1994-01-27 23:32:37 +03:00
|
|
|
#include <err.h>
|
1995-03-28 21:50:08 +04:00
|
|
|
#include <errno.h>
|
|
|
|
#include <fts.h>
|
2002-09-27 07:33:33 +04:00
|
|
|
#include <util.h>
|
1995-03-28 21:50:08 +04:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1997-10-18 17:21:42 +04:00
|
|
|
int linkchk __P((FTSENT *));
|
|
|
|
int main __P((int, char **));
|
2002-09-27 07:33:33 +04:00
|
|
|
void prstat __P((const char *, int64_t));
|
1997-10-18 17:21:42 +04:00
|
|
|
void usage __P((void));
|
1993-08-06 21:05:08 +04:00
|
|
|
|
2002-09-27 07:33:33 +04:00
|
|
|
int hflag;
|
|
|
|
long blocksize;
|
|
|
|
|
1995-03-28 21:50:08 +04:00
|
|
|
int
|
1993-03-21 12:45:37 +03:00
|
|
|
main(argc, argv)
|
|
|
|
int argc;
|
1993-08-06 21:05:08 +04:00
|
|
|
char *argv[];
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
1995-03-28 21:50:08 +04:00
|
|
|
FTS *fts;
|
|
|
|
FTSENT *p;
|
2002-09-29 01:14:03 +04:00
|
|
|
int64_t totalblocks;
|
1995-03-28 21:50:08 +04:00
|
|
|
int ftsoptions, listdirs, listfiles;
|
2000-12-30 19:00:33 +03:00
|
|
|
int Hflag, Lflag, Pflag, aflag, ch, cflag, kmflag, notused, rval, sflag;
|
1993-03-21 12:45:37 +03:00
|
|
|
char **save;
|
|
|
|
|
|
|
|
save = argv;
|
2000-12-30 19:00:33 +03:00
|
|
|
Hflag = Lflag = Pflag = aflag = cflag = kmflag = sflag = 0;
|
1996-10-18 11:20:31 +04:00
|
|
|
totalblocks = 0;
|
1995-03-28 21:50:08 +04:00
|
|
|
ftsoptions = FTS_PHYSICAL;
|
2002-09-27 07:33:33 +04:00
|
|
|
while ((ch = getopt(argc, argv, "HLPachkmrsx")) != -1)
|
1995-03-28 21:50:08 +04:00
|
|
|
switch (ch) {
|
|
|
|
case 'H':
|
|
|
|
Hflag = 1;
|
|
|
|
Lflag = Pflag = 0;
|
|
|
|
break;
|
|
|
|
case 'L':
|
|
|
|
Lflag = 1;
|
|
|
|
Hflag = Pflag = 0;
|
|
|
|
break;
|
|
|
|
case 'P':
|
|
|
|
Pflag = 1;
|
|
|
|
Hflag = Lflag = 0;
|
|
|
|
break;
|
1993-03-21 12:45:37 +03:00
|
|
|
case 'a':
|
|
|
|
aflag = 1;
|
|
|
|
break;
|
1996-10-18 11:20:31 +04:00
|
|
|
case 'c':
|
|
|
|
cflag = 1;
|
|
|
|
break;
|
2002-09-27 07:33:33 +04:00
|
|
|
case 'h':
|
|
|
|
hflag = 1;
|
|
|
|
break;
|
1993-03-21 12:45:37 +03:00
|
|
|
case 'k':
|
1993-08-06 21:05:08 +04:00
|
|
|
blocksize = 1024;
|
2000-12-30 19:00:33 +03:00
|
|
|
kmflag = 1;
|
1993-03-21 12:45:37 +03:00
|
|
|
break;
|
2000-12-30 19:00:33 +03:00
|
|
|
case 'm':
|
|
|
|
blocksize = 1024 * 1024;
|
|
|
|
kmflag = 1;
|
|
|
|
break;
|
1998-02-15 20:08:17 +03:00
|
|
|
case 'r':
|
|
|
|
break;
|
1993-03-21 12:45:37 +03:00
|
|
|
case 's':
|
|
|
|
sflag = 1;
|
|
|
|
break;
|
|
|
|
case 'x':
|
|
|
|
ftsoptions |= FTS_XDEV;
|
|
|
|
break;
|
|
|
|
case '?':
|
|
|
|
default:
|
|
|
|
usage();
|
|
|
|
}
|
1995-03-28 21:50:08 +04:00
|
|
|
argc -= optind;
|
1993-03-21 12:45:37 +03:00
|
|
|
argv += optind;
|
|
|
|
|
1995-03-28 21:50:08 +04:00
|
|
|
/*
|
|
|
|
* XXX
|
|
|
|
* Because of the way that fts(3) works, logical walks will not count
|
|
|
|
* the blocks actually used by symbolic links. We rationalize this by
|
|
|
|
* noting that users computing logical sizes are likely to do logical
|
|
|
|
* copies, so not counting the links is correct. The real reason is
|
|
|
|
* that we'd have to re-implement the kernel's symbolic link traversing
|
|
|
|
* algorithm to get this right. If, for example, you have relative
|
|
|
|
* symbolic links referencing other relative symbolic links, it gets
|
|
|
|
* very nasty, very fast. The bottom line is that it's documented in
|
|
|
|
* the man page, so it's a feature.
|
|
|
|
*/
|
|
|
|
if (Hflag)
|
|
|
|
ftsoptions |= FTS_COMFOLLOW;
|
|
|
|
if (Lflag) {
|
|
|
|
ftsoptions &= ~FTS_PHYSICAL;
|
|
|
|
ftsoptions |= FTS_LOGICAL;
|
|
|
|
}
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
if (aflag) {
|
|
|
|
if (sflag)
|
|
|
|
usage();
|
|
|
|
listdirs = listfiles = 1;
|
|
|
|
} else if (sflag)
|
|
|
|
listdirs = listfiles = 0;
|
|
|
|
else {
|
|
|
|
listfiles = 0;
|
|
|
|
listdirs = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!*argv) {
|
|
|
|
argv = save;
|
|
|
|
argv[0] = ".";
|
|
|
|
argv[1] = NULL;
|
|
|
|
}
|
|
|
|
|
2000-12-30 19:00:33 +03:00
|
|
|
if (!kmflag)
|
1994-01-25 23:25:08 +03:00
|
|
|
(void)getbsize(¬used, &blocksize);
|
1993-08-06 21:05:08 +04:00
|
|
|
blocksize /= 512;
|
|
|
|
|
|
|
|
if ((fts = fts_open(argv, ftsoptions, NULL)) == NULL)
|
1997-10-18 17:21:42 +04:00
|
|
|
err(1, "fts_open `%s'", *argv);
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1995-09-28 09:19:55 +03:00
|
|
|
for (rval = 0; (p = fts_read(fts)) != NULL;)
|
1995-03-28 21:50:08 +04:00
|
|
|
switch (p->fts_info) {
|
|
|
|
case FTS_D: /* Ignore. */
|
1993-03-21 12:45:37 +03:00
|
|
|
break;
|
|
|
|
case FTS_DP:
|
|
|
|
p->fts_parent->fts_number +=
|
1993-08-06 05:36:45 +04:00
|
|
|
p->fts_number += p->fts_statp->st_blocks;
|
1996-10-18 11:20:31 +04:00
|
|
|
if (cflag)
|
|
|
|
totalblocks += p->fts_statp->st_blocks;
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
|
|
|
* If listing each directory, or not listing files
|
|
|
|
* or directories and this is post-order of the
|
|
|
|
* root of a traversal, display the total.
|
|
|
|
*/
|
1997-10-18 17:21:42 +04:00
|
|
|
if (listdirs || (!listfiles && !p->fts_level))
|
2002-09-27 07:33:33 +04:00
|
|
|
prstat(p->fts_path, p->fts_number);
|
1993-03-21 12:45:37 +03:00
|
|
|
break;
|
1995-03-28 21:50:08 +04:00
|
|
|
case FTS_DC: /* Ignore. */
|
|
|
|
break;
|
|
|
|
case FTS_DNR: /* Warn, continue. */
|
1993-03-21 12:45:37 +03:00
|
|
|
case FTS_ERR:
|
|
|
|
case FTS_NS:
|
1995-09-28 09:19:55 +03:00
|
|
|
warnx("%s: %s", p->fts_path, strerror(p->fts_errno));
|
|
|
|
rval = 1;
|
1993-03-21 12:45:37 +03:00
|
|
|
break;
|
|
|
|
default:
|
1993-08-06 05:36:45 +04:00
|
|
|
if (p->fts_statp->st_nlink > 1 && linkchk(p))
|
1993-03-21 12:45:37 +03:00
|
|
|
break;
|
|
|
|
/*
|
|
|
|
* If listing each file, or a non-directory file was
|
|
|
|
* the root of a traversal, display the total.
|
|
|
|
*/
|
|
|
|
if (listfiles || !p->fts_level)
|
2002-09-27 07:33:33 +04:00
|
|
|
prstat(p->fts_path, p->fts_statp->st_blocks);
|
1993-08-06 05:36:45 +04:00
|
|
|
p->fts_parent->fts_number += p->fts_statp->st_blocks;
|
1996-10-18 11:20:31 +04:00
|
|
|
if (cflag)
|
|
|
|
totalblocks += p->fts_statp->st_blocks;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
1993-08-06 21:05:08 +04:00
|
|
|
if (errno)
|
1995-03-28 21:50:08 +04:00
|
|
|
err(1, "fts_read");
|
1996-10-18 11:20:31 +04:00
|
|
|
if (cflag)
|
2002-09-27 07:33:33 +04:00
|
|
|
prstat("total", totalblocks);
|
|
|
|
exit(rval);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
2002-09-27 07:33:33 +04:00
|
|
|
void
|
|
|
|
prstat(const char *fname, int64_t blocks)
|
|
|
|
{
|
|
|
|
if (hflag) {
|
|
|
|
char buf[5];
|
|
|
|
int64_t sz = blocks * 512;
|
|
|
|
|
|
|
|
humanize_number(buf, sizeof(buf), sz, "", HN_AUTOSCALE,
|
|
|
|
HN_B | HN_NOSPACE | HN_DECIMAL);
|
|
|
|
|
|
|
|
(void)printf("%s\t%s\n", buf, fname);
|
|
|
|
} else
|
|
|
|
(void)printf("%lld\t%s\n",
|
|
|
|
(long long)howmany(blocks, (int64_t)blocksize),
|
|
|
|
fname);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
typedef struct _ID {
|
|
|
|
dev_t dev;
|
|
|
|
ino_t inode;
|
|
|
|
} ID;
|
|
|
|
|
1993-08-06 21:05:08 +04:00
|
|
|
int
|
1993-03-21 12:45:37 +03:00
|
|
|
linkchk(p)
|
1995-03-28 21:50:08 +04:00
|
|
|
FTSENT *p;
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
|
|
|
static ID *files;
|
|
|
|
static int maxfiles, nfiles;
|
1995-03-28 21:50:08 +04:00
|
|
|
ID *fp, *start;
|
|
|
|
ino_t ino;
|
|
|
|
dev_t dev;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1993-08-06 05:36:45 +04:00
|
|
|
ino = p->fts_statp->st_ino;
|
|
|
|
dev = p->fts_statp->st_dev;
|
1995-03-28 21:50:08 +04:00
|
|
|
if ((start = files) != NULL)
|
1993-03-21 12:45:37 +03:00
|
|
|
for (fp = start + nfiles - 1; fp >= start; --fp)
|
|
|
|
if (ino == fp->inode && dev == fp->dev)
|
1995-03-28 21:50:08 +04:00
|
|
|
return (1);
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1993-08-06 21:05:08 +04:00
|
|
|
if (nfiles == maxfiles && (files = realloc((char *)files,
|
|
|
|
(u_int)(sizeof(ID) * (maxfiles += 128)))) == NULL)
|
1997-10-18 17:21:42 +04:00
|
|
|
err(1, "realloc");
|
1993-03-21 12:45:37 +03:00
|
|
|
files[nfiles].inode = ino;
|
|
|
|
files[nfiles].dev = dev;
|
|
|
|
++nfiles;
|
1995-03-28 21:50:08 +04:00
|
|
|
return (0);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
1993-08-06 21:05:08 +04:00
|
|
|
void
|
1993-03-21 12:45:37 +03:00
|
|
|
usage()
|
|
|
|
{
|
1995-03-28 21:50:08 +04:00
|
|
|
|
|
|
|
(void)fprintf(stderr,
|
2002-09-27 07:33:33 +04:00
|
|
|
"usage: du [-H | -L | -P] [-a | -s] [-chkmrx] [file ...]\n");
|
1993-08-06 21:05:08 +04:00
|
|
|
exit(1);
|
|
|
|
}
|