2 * Copyright (c) 1989, 1993, 1994
3 * The Regents of the University of California. All rights reserved.
5 * This code is derived from software contributed to Berkeley by
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. All advertising materials mentioning features or use of this software
17 * must display the following acknowledgement:
18 * This product includes software developed by the University of
19 * California, Berkeley and its contributors.
20 * 4. Neither the name of the University nor the names of its contributors
21 * may be used to endorse or promote products derived from this software
22 * without specific prior written permission.
24 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 * @(#) Copyright (c) 1989, 1993, 1994 The Regents of the University of California. All rights reserved.
37 * @(#)du.c 8.5 (Berkeley) 5/4/95
38 * $FreeBSD: src/usr.bin/du/du.c,v 1.17.2.4 2002/12/12 16:29:39 trhodes Exp $
39 * $DragonFly: src/usr.bin/du/du.c,v 1.9 2006/01/12 13:43:10 corecode Exp $
42 #include <sys/param.h>
43 #include <sys/queue.h>
57 #define KILO_SZ(n) (n)
58 #define MEGA_SZ(n) ((n) * (n))
59 #define GIGA_SZ(n) ((n) * (n) * (n))
60 #define TERA_SZ(n) ((n) * (n) * (n) * (n))
61 #define PETA_SZ(n) ((n) * (n) * (n) * (n) * (n))
63 #define KILO_2_SZ (KILO_SZ(1024ULL))
64 #define MEGA_2_SZ (MEGA_SZ(1024ULL))
65 #define GIGA_2_SZ (GIGA_SZ(1024ULL))
66 #define TERA_2_SZ (TERA_SZ(1024ULL))
67 #define PETA_2_SZ (PETA_SZ(1024ULL))
69 #define KILO_SI_SZ (KILO_SZ(1000ULL))
70 #define MEGA_SI_SZ (MEGA_SZ(1000ULL))
71 #define GIGA_SI_SZ (GIGA_SZ(1000ULL))
72 #define TERA_SI_SZ (TERA_SZ(1000ULL))
73 #define PETA_SI_SZ (PETA_SZ(1000ULL))
75 #define HASHSIZE 256 /* power of 2 only */
76 #define HASHMASK (HASHSIZE - 1)
78 unsigned long long vals_si
[] = {1, KILO_SI_SZ
, MEGA_SI_SZ
, GIGA_SI_SZ
, TERA_SI_SZ
, PETA_SI_SZ
};
79 unsigned long long vals_base2
[] = {1, KILO_2_SZ
, MEGA_2_SZ
, GIGA_2_SZ
, TERA_2_SZ
, PETA_2_SZ
};
80 unsigned long long *valp
;
82 typedef enum { NONE
, KILO
, MEGA
, GIGA
, TERA
, PETA
, UNIT_MAX
} unit_t
;
84 int unitp
[] = { NONE
, KILO
, MEGA
, GIGA
, TERA
, PETA
};
86 SLIST_HEAD(ignhead
, ignentry
) ignores
;
89 SLIST_ENTRY(ignentry
) next
;
92 static int linkchk(FTSENT
*);
93 static void usage(void);
94 void prthumanval(double);
95 unit_t
unit_adjust(double *);
96 void ignoreadd(const char *);
97 void ignoreclean(void);
98 int ignorep(FTSENT
*);
100 static char period
[] = ".";
103 main(int argc
, char **argv
)
107 long blocksize
, savednumber
= 0;
111 int Hflag
, Lflag
, Pflag
, aflag
, sflag
, dflag
, cflag
, hflag
, ch
, notused
, rval
;
114 Hflag
= Lflag
= Pflag
= aflag
= sflag
= dflag
= cflag
= hflag
= 0;
119 SLIST_INIT(&ignores
);
121 while ((ch
= getopt(argc
, argv
, "HI:LPasd:chkrx")) != -1)
148 depth
= atoi(optarg
);
149 if (errno
== ERANGE
|| depth
< 0) {
150 warnx("invalid argument to option d: %s", optarg
);
158 if (putenv("BLOCKSIZE=512") == -1)
159 warn("putenv: cannot set BLOCKSIZE=512");
165 if (putenv("BLOCKSIZE=1024") == -1)
166 warn("putenv: cannot set BLOCKSIZE=1024");
168 case 'r': /* Compatibility. */
171 ftsoptions
|= FTS_XDEV
;
183 * Because of the way that fts(3) works, logical walks will not count
184 * the blocks actually used by symbolic links. We rationalize this by
185 * noting that users computing logical sizes are likely to do logical
186 * copies, so not counting the links is correct. The real reason is
187 * that we'd have to re-implement the kernel's symbolic link traversing
188 * algorithm to get this right. If, for example, you have relative
189 * symbolic links referencing other relative symbolic links, it gets
190 * very nasty, very fast. The bottom line is that it's documented in
191 * the man page, so it's a feature.
194 if (Hflag
+ Lflag
+ Pflag
> 1)
197 if (Hflag
+ Lflag
+ Pflag
== 0)
198 Pflag
= 1; /* -P (physical) is default */
201 ftsoptions
|= FTS_COMFOLLOW
;
204 ftsoptions
|= FTS_LOGICAL
;
207 ftsoptions
|= FTS_PHYSICAL
;
227 (void) getbsize(¬used
, &blocksize
);
232 if ((fts
= fts_open(argv
, ftsoptions
, NULL
)) == NULL
)
235 while ((p
= fts_read(fts
)) != NULL
) {
236 switch (p
->fts_info
) {
237 case FTS_D
: /* Ignore. */
239 fts_set(fts
, p
, FTS_SKIP
);
245 p
->fts_parent
->fts_number
+=
246 p
->fts_number
+= p
->fts_statp
->st_blocks
;
248 if (p
->fts_level
<= depth
) {
250 (void) prthumanval(howmany(p
->fts_number
, blocksize
));
251 (void) printf("\t%s\n", p
->fts_path
);
253 (void) printf("%ld\t%s\n",
254 howmany(p
->fts_number
, blocksize
),
259 case FTS_DC
: /* Ignore. */
261 case FTS_DNR
: /* Warn, continue. */
264 warnx("%s: %s", p
->fts_path
, strerror(p
->fts_errno
));
271 if (p
->fts_statp
->st_nlink
> 1 && linkchk(p
))
274 if (listall
|| p
->fts_level
== 0) {
276 (void) prthumanval(howmany(p
->fts_statp
->st_blocks
,
278 (void) printf("\t%s\n", p
->fts_path
);
280 (void) printf("%qd\t%s\n",
281 howmany(p
->fts_statp
->st_blocks
, blocksize
),
286 p
->fts_parent
->fts_number
+= p
->fts_statp
->st_blocks
;
288 savednumber
= p
->fts_parent
->fts_number
;
296 (void) prthumanval(howmany(savednumber
, blocksize
));
297 (void) printf("\ttotal\n");
299 (void) printf("%ld\ttotal\n", howmany(savednumber
, blocksize
));
311 struct links_entry
*next
;
312 struct links_entry
*previous
;
318 static const size_t links_hash_initial_size
= 8192;
319 static struct links_entry
**buckets
;
320 static struct links_entry
*free_list
;
321 static size_t number_buckets
;
322 static unsigned long number_entries
;
323 static char stop_allocating
;
324 struct links_entry
*le
, **new_buckets
;
331 /* If necessary, initialize the hash table. */
332 if (buckets
== NULL
) {
333 number_buckets
= links_hash_initial_size
;
334 buckets
= malloc(number_buckets
* sizeof(buckets
[0]));
336 errx(1, "No memory for hardlink detection");
337 for (i
= 0; i
< number_buckets
; i
++)
341 /* If the hash table is getting too full, enlarge it. */
342 if (number_entries
> number_buckets
* 10 && !stop_allocating
) {
343 new_size
= number_buckets
* 2;
344 new_buckets
= malloc(new_size
* sizeof(struct links_entry
*));
346 /* Try releasing the free list to see if that helps. */
347 if (new_buckets
== NULL
&& free_list
!= NULL
) {
348 while (free_list
!= NULL
) {
350 free_list
= le
->next
;
353 new_buckets
= malloc(new_size
* sizeof(new_buckets
[0]));
356 if (new_buckets
== NULL
) {
358 warnx("No more memory for tracking hard links");
360 memset(new_buckets
, 0, new_size
* sizeof(struct links_entry
*));
361 for (i
= 0; i
< number_buckets
; i
++) {
362 while (buckets
[i
] != NULL
) {
363 /* Remove entry from old bucket. */
365 buckets
[i
] = le
->next
;
367 /* Add entry to new bucket. */
368 hash
= (le
->dev
^ le
->ino
) % new_size
;
370 if (new_buckets
[hash
] != NULL
)
371 new_buckets
[hash
]->previous
= le
;
372 le
->next
= new_buckets
[hash
];
374 new_buckets
[hash
] = le
;
378 buckets
= new_buckets
;
379 number_buckets
= new_size
;
383 /* Try to locate this entry in the hash table. */
384 hash
= ( st
->st_dev
^ st
->st_ino
) % number_buckets
;
385 for (le
= buckets
[hash
]; le
!= NULL
; le
= le
->next
) {
386 if (le
->dev
== st
->st_dev
&& le
->ino
== st
->st_ino
) {
388 * Save memory by releasing an entry when we've seen
391 if (--le
->links
<= 0) {
392 if (le
->previous
!= NULL
)
393 le
->previous
->next
= le
->next
;
394 if (le
->next
!= NULL
)
395 le
->next
->previous
= le
->previous
;
396 if (buckets
[hash
] == le
)
397 buckets
[hash
] = le
->next
;
399 /* Recycle this node through the free list */
400 if (stop_allocating
) {
403 le
->next
= free_list
;
414 /* Add this entry to the links cache. */
415 if (free_list
!= NULL
) {
416 /* Pull a node from the free list if we can. */
418 free_list
= le
->next
;
420 /* Malloc one if we have to. */
421 le
= malloc(sizeof(struct links_entry
));
424 warnx("No more memory for tracking hard links");
427 le
->dev
= st
->st_dev
;
428 le
->ino
= st
->st_ino
;
429 le
->links
= st
->st_nlink
- 1;
431 le
->next
= buckets
[hash
];
433 if (buckets
[hash
] != NULL
)
434 buckets
[hash
]->previous
= le
;
440 * Output in "human-readable" format. Uses 3 digits max and puts
441 * unit suffixes at the end. Makes output compact and easy to read,
442 * especially on huge disks.
446 unit_adjust(double *val
)
450 unsigned int unit_sz
;
454 unit_sz
= abval
? ilogb(abval
) / 10 : 0;
456 if (unit_sz
>= UNIT_MAX
) {
459 unit
= unitp
[unit_sz
];
460 *val
/= (double)valp
[unit_sz
];
467 prthumanval(double bytes
)
472 unit
= unit_adjust(&bytes
);
477 (void)printf("%3.0f%c", bytes
, "BKMGTPE"[unit
]);
479 (void)printf("%3.1f%c", bytes
, "BKMGTPE"[unit
]);
485 (void)fprintf(stderr
,
486 "usage: du [-H | -L | -P] [-a | -s | -d depth] [-c] [-h | -k] [-x] [-I mask] [file ...]\n");
491 ignoreadd(const char *mask
)
493 struct ignentry
*ign
;
495 ign
= calloc(1, sizeof(*ign
));
497 errx(1, "cannot allocate memory");
498 ign
->mask
= strdup(mask
);
499 if (ign
->mask
== NULL
)
500 errx(1, "cannot allocate memory");
501 SLIST_INSERT_HEAD(&ignores
, ign
, next
);
507 struct ignentry
*ign
;
509 while (!SLIST_EMPTY(&ignores
)) {
510 ign
= SLIST_FIRST(&ignores
);
511 SLIST_REMOVE_HEAD(&ignores
, next
);
520 struct ignentry
*ign
;
522 SLIST_FOREACH(ign
, &ignores
, next
)
523 if (fnmatch(ign
->mask
, ent
->fts_name
, 0) != FNM_NOMATCH
)