1 /* $NetBSD: du.c,v 1.36 2012/03/11 11:23:20 shattered Exp $ */
4 * Copyright (c) 1989, 1993, 1994
5 * The Regents of the University of California. All rights reserved.
7 * This code is derived from software contributed to Berkeley by
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 3. Neither the name of the University nor the names of its contributors
19 * may be used to endorse or promote products derived from this software
20 * without specific prior written permission.
22 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 #include <sys/cdefs.h>
37 __COPYRIGHT("@(#) Copyright (c) 1989, 1993, 1994\
38 The Regents of the University of California. All rights reserved.");
43 static char sccsid
[] = "@(#)du.c 8.5 (Berkeley) 5/4/95";
45 __RCSID("$NetBSD: du.c,v 1.36 2012/03/11 11:23:20 shattered Exp $");
49 #include <sys/param.h>
50 #include <sys/types.h>
65 /* Count inodes or file size */
66 #define COUNT (iflag ? 1 : p->fts_statp->st_blocks)
68 static int linkchk(dev_t
, ino_t
);
69 static void prstat(const char *, int64_t);
70 __dead
static void usage(void);
72 static int hflag
, iflag
;
73 static long blocksize
;
76 main(int argc
, char *argv
[])
81 int ftsoptions
, listfiles
;
83 int Hflag
, Lflag
, aflag
, ch
, cflag
, dflag
, gkmflag
, nflag
, rval
, sflag
;
84 const char *noargv
[2];
86 Hflag
= Lflag
= aflag
= cflag
= dflag
= gkmflag
= nflag
= sflag
= 0;
88 ftsoptions
= FTS_PHYSICAL
;
90 while ((ch
= getopt(argc
, argv
, "HLPacd:ghikmnrsx")) != -1)
111 depth
= atoi(optarg
);
112 if (depth
< 0 || depth
> SHRT_MAX
) {
113 warnx("invalid argument to option d: %s",
119 blocksize
= 1024 * 1024 * 1024;
133 blocksize
= 1024 * 1024;
145 ftsoptions
|= FTS_XDEV
;
156 * Because of the way that fts(3) works, logical walks will not count
157 * the blocks actually used by symbolic links. We rationalize this by
158 * noting that users computing logical sizes are likely to do logical
159 * copies, so not counting the links is correct. The real reason is
160 * that we'd have to re-implement the kernel's symbolic link traversing
161 * algorithm to get this right. If, for example, you have relative
162 * symbolic links referencing other relative symbolic links, it gets
163 * very nasty, very fast. The bottom line is that it's documented in
164 * the man page, so it's a feature.
167 ftsoptions
|= FTS_COMFOLLOW
;
169 ftsoptions
&= ~FTS_PHYSICAL
;
170 ftsoptions
|= FTS_LOGICAL
;
187 argv
= __UNCONST(noargv
);
191 (void)getbsize(NULL
, &blocksize
);
194 if ((fts
= fts_open(argv
, ftsoptions
, NULL
)) == NULL
)
195 err(1, "fts_open `%s'", *argv
);
197 for (rval
= 0; (p
= fts_read(fts
)) != NULL
;) {
199 switch (p
->fts_info
) {
205 if (p
->fts_statp
->st_flags
& UF_NODUMP
) {
206 fts_set(fts
, p
, FTS_SKIP
);
211 switch (p
->fts_info
) {
212 case FTS_D
: /* Ignore. */
215 p
->fts_parent
->fts_number
+=
216 p
->fts_number
+= COUNT
;
218 totalblocks
+= COUNT
;
220 * If listing each directory, or not listing files
221 * or directories and this is post-order of the
222 * root of a traversal, display the total.
224 if (p
->fts_level
<= depth
225 || (!listfiles
&& !p
->fts_level
))
226 prstat(p
->fts_path
, p
->fts_number
);
228 case FTS_DC
: /* Ignore. */
230 case FTS_DNR
: /* Warn, continue. */
233 warnx("%s: %s", p
->fts_path
, strerror(p
->fts_errno
));
237 if (p
->fts_statp
->st_nlink
> 1 &&
238 linkchk(p
->fts_statp
->st_dev
, p
->fts_statp
->st_ino
))
241 * If listing each file, or a non-directory file was
242 * the root of a traversal, display the total.
244 if (listfiles
|| !p
->fts_level
)
245 prstat(p
->fts_path
, COUNT
);
246 p
->fts_parent
->fts_number
+= COUNT
;
248 totalblocks
+= COUNT
;
254 prstat("total", totalblocks
);
259 prstat(const char *fname
, int64_t blocks
)
262 (void)printf("%" PRId64
"\t%s\n", blocks
, fname
);
268 int64_t sz
= blocks
* 512;
270 humanize_number(buf
, sizeof(buf
), sz
, "", HN_AUTOSCALE
,
271 HN_B
| HN_NOSPACE
| HN_DECIMAL
);
273 (void)printf("%s\t%s\n", buf
, fname
);
275 (void)printf("%" PRId64
"\t%s\n",
276 howmany(blocks
, (int64_t)blocksize
),
281 linkchk(dev_t dev
, ino_t ino
)
283 static struct entry
{
287 static int htshift
; /* log(allocated size) */
288 static int htmask
; /* allocated size - 1 */
289 static int htused
; /* 2*number of insertions */
290 static int sawzero
; /* Whether zero is in table or not */
293 /* this constant is (1<<64)/((1+sqrt(5))/2)
294 * aka (word size)/(golden ratio)
296 const uint64_t HTCONST
= 11400714819323198485ULL;
297 const int HTBITS
= CHAR_BIT
* sizeof(tmp
);
299 /* Never store zero in hashtable */
300 if (dev
== 0 && ino
== 0) {
306 /* Extend hash table if necessary, keep load under 0.5 */
307 if (htused
<<1 >= htmask
) {
308 struct entry
*ohtable
;
311 htshift
= 10; /* starting hashtable size */
313 htshift
++; /* exponential hashtable growth */
315 htmask
= (1 << htshift
) - 1;
319 htable
= calloc(htmask
+1, sizeof(*htable
));
323 /* populate newly allocated hashtable */
326 for (i
= 0; i
<= htmask
>>1; i
++)
327 if (ohtable
[i
].ino
|| ohtable
[i
].dev
)
328 linkchk(ohtable
[i
].dev
, ohtable
[i
].ino
);
333 /* multiplicative hashing */
338 h
= tmp
>> (HTBITS
- htshift
);
339 h2
= 1 | ( tmp
>> (HTBITS
- (htshift
<<1) - 1)); /* must be odd */
341 /* open address hashtable search with double hash probing */
342 while (htable
[h
].ino
|| htable
[h
].dev
) {
343 if ((htable
[h
].ino
== ino
) && (htable
[h
].dev
== dev
))
345 h
= (h
+ h2
) & htmask
;
348 /* Insert the current entry into hashtable */
359 (void)fprintf(stderr
,
360 "usage: du [-H | -L | -P] [-a | -d depth | -s] [-cghikmnrx] [file ...]\n");