]>
git.saurik.com Git - apple/file_cmds.git/blob - du/du.c
1bf6bc52e809d769d17e338a6ead3c2f7da7aa6b
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
37 #include <sys/cdefs.h>
39 __used
static const char copyright
[] =
40 "@(#) Copyright (c) 1989, 1993, 1994\n\
41 The Regents of the University of California. All rights reserved.\n";
46 static const char sccsid
[] = "@(#)du.c 8.5 (Berkeley) 5/4/95";
49 #include <sys/cdefs.h>
50 __FBSDID("$FreeBSD: src/usr.bin/du/du.c,v 1.38 2005/04/09 14:31:40 stefanf Exp $");
52 #include <sys/mount.h>
53 #include <sys/param.h>
54 #include <sys/queue.h>
72 #include <get_compat.h>
73 #include <sys/sysctl.h>
75 #define COMPAT_MODE(func, mode) (1)
78 #define KILO_SZ(n) (n)
79 #define MEGA_SZ(n) ((n) * (n))
80 #define GIGA_SZ(n) ((n) * (n) * (n))
81 #define TERA_SZ(n) ((n) * (n) * (n) * (n))
82 #define PETA_SZ(n) ((n) * (n) * (n) * (n) * (n))
84 #define KILO_2_SZ (KILO_SZ(1024ULL))
85 #define MEGA_2_SZ (MEGA_SZ(1024ULL))
86 #define GIGA_2_SZ (GIGA_SZ(1024ULL))
87 #define TERA_2_SZ (TERA_SZ(1024ULL))
88 #define PETA_2_SZ (PETA_SZ(1024ULL))
90 #define KILO_SI_SZ (KILO_SZ(1000ULL))
91 #define MEGA_SI_SZ (MEGA_SZ(1000ULL))
92 #define GIGA_SI_SZ (GIGA_SZ(1000ULL))
93 #define TERA_SI_SZ (TERA_SZ(1000ULL))
94 #define PETA_SI_SZ (PETA_SZ(1000ULL))
96 #define TWO_TB (2LL * 1024LL * 1024LL * 1024LL * 1024LL)
98 unsigned long long vals_si
[] = {1, KILO_SI_SZ
, MEGA_SI_SZ
, GIGA_SI_SZ
, TERA_SI_SZ
, PETA_SI_SZ
};
99 unsigned long long vals_base2
[] = {1, KILO_2_SZ
, MEGA_2_SZ
, GIGA_2_SZ
, TERA_2_SZ
, PETA_2_SZ
};
100 unsigned long long *valp
;
102 typedef enum { NONE
, KILO
, MEGA
, GIGA
, TERA
, PETA
, UNIT_MAX
} unit_t
;
104 int unitp
[] = { NONE
, KILO
, MEGA
, GIGA
, TERA
, PETA
};
106 SLIST_HEAD(ignhead
, ignentry
) ignores
;
109 SLIST_ENTRY(ignentry
) next
;
112 static int linkchk(FTSENT
*);
113 static int dirlinkchk(FTSENT
*);
114 static void usage(void);
115 void prthumanval(double);
116 unit_t
unit_adjust(double *);
117 void ignoreadd(const char *);
118 void ignoreclean(void);
119 int ignorep(FTSENT
*);
122 main(int argc
, char *argv
[])
126 off_t savednumber
= 0;
131 int Hflag
, Lflag
, Pflag
, aflag
, sflag
, dflag
, cflag
, hflag
, ch
, notused
, rval
;
133 static char dot
[] = ".";
134 off_t
*ftsnum
, *ftsparnum
;
136 setlocale(LC_ALL
, "");
138 Hflag
= Lflag
= Pflag
= aflag
= sflag
= dflag
= cflag
= hflag
= 0;
141 ftsoptions
= FTS_NOCHDIR
;
143 SLIST_INIT(&ignores
);
145 while ((ch
= getopt(argc
, argv
, "HI:LPasd:cghkmrx")) != -1)
171 depth
= atoi(optarg
);
172 if (errno
== ERANGE
|| depth
< 0) {
173 warnx("invalid argument to option d: %s", optarg
);
181 putenv("BLOCKSIZE=512");
187 putenv("BLOCKSIZE=1024");
191 putenv("BLOCKSIZE=1048576");
195 putenv("BLOCKSIZE=1g");
197 case 'r': /* Compatibility. */
200 ftsoptions
|= FTS_XDEV
;
212 * Because of the way that fts(3) works, logical walks will not count
213 * the blocks actually used by symbolic links. We rationalize this by
214 * noting that users computing logical sizes are likely to do logical
215 * copies, so not counting the links is correct. The real reason is
216 * that we'd have to re-implement the kernel's symbolic link traversing
217 * algorithm to get this right. If, for example, you have relative
218 * symbolic links referencing other relative symbolic links, it gets
219 * very nasty, very fast. The bottom line is that it's documented in
220 * the man page, so it's a feature.
223 if (Hflag
+ Lflag
+ Pflag
> 1)
226 if (Hflag
+ Lflag
+ Pflag
== 0)
227 Pflag
= 1; /* -P (physical) is default */
230 ftsoptions
|= FTS_COMFOLLOW
;
233 ftsoptions
|= FTS_LOGICAL
;
236 ftsoptions
|= FTS_PHYSICAL
;
256 (void) getbsize(¬used
, &blocksize
);
260 // "du" should not have any side effect on disk usage,
261 // so prevent materializing dataless directories upon traversal
263 (void) sysctlbyname("vfs.nspace.prevent_materialization", NULL
, NULL
, &rval
, sizeof(rval
));
264 #endif /* __APPLE__ */
268 if ((fts
= fts_open(argv
, ftsoptions
, NULL
)) == NULL
)
271 while ((p
= fts_read(fts
)) != NULL
) {
272 switch (p
->fts_info
) {
274 if (ignorep(p
) || dirlinkchk(p
))
275 fts_set(fts
, p
, FTS_SKIP
);
281 ftsparnum
= (off_t
*)&p
->fts_parent
->fts_number
;
282 ftsnum
= (off_t
*)&p
->fts_number
;
283 if (p
->fts_statp
->st_size
< TWO_TB
) {
284 ftsparnum
[0] += ftsnum
[0] += p
->fts_statp
->st_blocks
;
286 ftsparnum
[0] += ftsnum
[0] += howmany(p
->fts_statp
->st_size
, 512LL);
289 if (p
->fts_level
<= depth
) {
291 (void) prthumanval(howmany(*ftsnum
, blocksize
));
292 (void) printf("\t%s\n", p
->fts_path
);
294 (void) printf("%jd\t%s\n",
295 (intmax_t)howmany(*ftsnum
, blocksize
),
300 case FTS_DC
: /* Ignore. */
301 if (COMPAT_MODE("bin/du", "unix2003")) {
302 errx(1, "Can't follow symlink cycle from %s to %s", p
->fts_path
, p
->fts_cycle
->fts_path
);
305 case FTS_DNR
: /* Warn, continue. */
308 warnx("%s: %s", p
->fts_path
, strerror(p
->fts_errno
));
312 if (COMPAT_MODE("bin/du", "unix2003")) {
314 int rc
= stat(p
->fts_path
, &sb
);
315 if (rc
< 0 && errno
== ELOOP
) {
316 errx(1, "Too many symlinks at %s", p
->fts_path
);
323 if (p
->fts_statp
->st_nlink
> 1 && linkchk(p
))
326 if (listall
|| p
->fts_level
== 0) {
328 if (p
->fts_statp
->st_size
< TWO_TB
) {
329 (void) prthumanval(howmany(p
->fts_statp
->st_blocks
,
332 (void) prthumanval(howmany(howmany(p
->fts_statp
->st_size
, 512LL),
335 (void) printf("\t%s\n", p
->fts_path
);
337 if (p
->fts_statp
->st_size
< TWO_TB
) {
338 (void) printf("%jd\t%s\n",
339 (intmax_t)howmany(p
->fts_statp
->st_blocks
, blocksize
),
342 (void) printf("%jd\t%s\n",
343 (intmax_t)howmany(howmany(p
->fts_statp
->st_size
, 512LL), blocksize
),
349 ftsparnum
= (off_t
*)&p
->fts_parent
->fts_number
;
350 if (p
->fts_statp
->st_size
< TWO_TB
) {
351 ftsparnum
[0] += p
->fts_statp
->st_blocks
;
353 ftsparnum
[0] += p
->fts_statp
->st_size
/ 512LL;
356 savednumber
= ((off_t
*)&p
->fts_parent
->fts_number
)[0];
364 (void) prthumanval(howmany(savednumber
, blocksize
));
365 (void) printf("\ttotal\n");
367 (void) printf("%jd\ttotal\n", (intmax_t)howmany(savednumber
, blocksize
));
379 struct links_entry
*next
;
380 struct links_entry
*previous
;
385 static const size_t links_hash_initial_size
= 8192;
386 static struct links_entry
**buckets
;
387 static struct links_entry
*free_list
;
388 static size_t number_buckets
;
389 static unsigned long number_entries
;
390 static char stop_allocating
;
391 struct links_entry
*le
, **new_buckets
;
398 /* If necessary, initialize the hash table. */
399 if (buckets
== NULL
) {
400 number_buckets
= links_hash_initial_size
;
401 buckets
= malloc(number_buckets
* sizeof(buckets
[0]));
403 errx(1, "No memory for hardlink detection");
404 for (i
= 0; i
< number_buckets
; i
++)
408 /* If the hash table is getting too full, enlarge it. */
409 if (number_entries
> number_buckets
* 10 && !stop_allocating
) {
410 new_size
= number_buckets
* 2;
411 new_buckets
= malloc(new_size
* sizeof(struct links_entry
*));
413 /* Try releasing the free list to see if that helps. */
414 if (new_buckets
== NULL
&& free_list
!= NULL
) {
415 while (free_list
!= NULL
) {
417 free_list
= le
->next
;
420 new_buckets
= malloc(new_size
* sizeof(new_buckets
[0]));
423 if (new_buckets
== NULL
) {
425 warnx("No more memory for tracking hard links");
427 memset(new_buckets
, 0,
428 new_size
* sizeof(struct links_entry
*));
429 for (i
= 0; i
< number_buckets
; i
++) {
430 while (buckets
[i
] != NULL
) {
431 /* Remove entry from old bucket. */
433 buckets
[i
] = le
->next
;
435 /* Add entry to new bucket. */
436 hash
= (le
->dev
^ le
->ino
) % new_size
;
438 if (new_buckets
[hash
] != NULL
)
439 new_buckets
[hash
]->previous
=
441 le
->next
= new_buckets
[hash
];
443 new_buckets
[hash
] = le
;
447 buckets
= new_buckets
;
448 number_buckets
= new_size
;
452 /* Try to locate this entry in the hash table. */
453 hash
= ( st
->st_dev
^ st
->st_ino
) % number_buckets
;
454 for (le
= buckets
[hash
]; le
!= NULL
; le
= le
->next
) {
455 if (le
->dev
== st
->st_dev
&& le
->ino
== st
->st_ino
) {
457 * Save memory by releasing an entry when we've seen
460 if (--le
->links
<= 0) {
461 if (le
->previous
!= NULL
)
462 le
->previous
->next
= le
->next
;
463 if (le
->next
!= NULL
)
464 le
->next
->previous
= le
->previous
;
465 if (buckets
[hash
] == le
)
466 buckets
[hash
] = le
->next
;
468 /* Recycle this node through the free list */
469 if (stop_allocating
) {
472 le
->next
= free_list
;
483 /* Add this entry to the links cache. */
484 if (free_list
!= NULL
) {
485 /* Pull a node from the free list if we can. */
487 free_list
= le
->next
;
489 /* Malloc one if we have to. */
490 le
= malloc(sizeof(struct links_entry
));
493 warnx("No more memory for tracking hard links");
496 le
->dev
= st
->st_dev
;
497 le
->ino
= st
->st_ino
;
498 le
->links
= st
->st_nlink
- 1;
500 le
->next
= buckets
[hash
];
502 if (buckets
[hash
] != NULL
)
503 buckets
[hash
]->previous
= le
;
509 dirlinkchk(FTSENT
*p
)
512 struct links_entry
*next
;
513 struct links_entry
*previous
;
518 static const size_t links_hash_initial_size
= 8192;
519 static struct links_entry
**buckets
;
520 static struct links_entry
*free_list
;
521 static size_t number_buckets
;
522 static unsigned long number_entries
;
523 static char stop_allocating
;
524 struct links_entry
*le
, **new_buckets
;
532 struct attrlist attrList
;
534 memset(&attrList
, 0, sizeof(attrList
));
535 attrList
.bitmapcount
= ATTR_BIT_MAP_COUNT
;
536 attrList
.dirattr
= ATTR_DIR_LINKCOUNT
;
537 if (-1 == getattrlist(p
->fts_path
, &attrList
, &buf
, sizeof(buf
), 0))
539 if (buf
.linkcount
== 1)
543 /* If necessary, initialize the hash table. */
544 if (buckets
== NULL
) {
545 number_buckets
= links_hash_initial_size
;
546 buckets
= malloc(number_buckets
* sizeof(buckets
[0]));
548 errx(1, "No memory for directory hardlink detection");
549 for (i
= 0; i
< number_buckets
; i
++)
553 /* If the hash table is getting too full, enlarge it. */
554 if (number_entries
> number_buckets
* 10 && !stop_allocating
) {
555 new_size
= number_buckets
* 2;
556 new_buckets
= malloc(new_size
* sizeof(struct links_entry
*));
558 /* Try releasing the free list to see if that helps. */
559 if (new_buckets
== NULL
&& free_list
!= NULL
) {
560 while (free_list
!= NULL
) {
562 free_list
= le
->next
;
565 new_buckets
= malloc(new_size
* sizeof(new_buckets
[0]));
568 if (new_buckets
== NULL
) {
570 warnx("No more memory for tracking directory hard links");
572 memset(new_buckets
, 0,
573 new_size
* sizeof(struct links_entry
*));
574 for (i
= 0; i
< number_buckets
; i
++) {
575 while (buckets
[i
] != NULL
) {
576 /* Remove entry from old bucket. */
578 buckets
[i
] = le
->next
;
580 /* Add entry to new bucket. */
581 hash
= (le
->dev
^ le
->ino
) % new_size
;
583 if (new_buckets
[hash
] != NULL
)
584 new_buckets
[hash
]->previous
=
586 le
->next
= new_buckets
[hash
];
588 new_buckets
[hash
] = le
;
592 buckets
= new_buckets
;
593 number_buckets
= new_size
;
597 /* Try to locate this entry in the hash table. */
598 hash
= ( st
->st_dev
^ st
->st_ino
) % number_buckets
;
599 for (le
= buckets
[hash
]; le
!= NULL
; le
= le
->next
) {
600 if (le
->dev
== st
->st_dev
&& le
->ino
== st
->st_ino
) {
602 * Save memory by releasing an entry when we've seen
605 if (--le
->links
<= 0) {
606 if (le
->previous
!= NULL
)
607 le
->previous
->next
= le
->next
;
608 if (le
->next
!= NULL
)
609 le
->next
->previous
= le
->previous
;
610 if (buckets
[hash
] == le
)
611 buckets
[hash
] = le
->next
;
613 /* Recycle this node through the free list */
614 if (stop_allocating
) {
617 le
->next
= free_list
;
627 /* Add this entry to the links cache. */
628 if (free_list
!= NULL
) {
629 /* Pull a node from the free list if we can. */
631 free_list
= le
->next
;
633 /* Malloc one if we have to. */
634 le
= malloc(sizeof(struct links_entry
));
637 warnx("No more memory for tracking hard links");
640 le
->dev
= st
->st_dev
;
641 le
->ino
= st
->st_ino
;
642 le
->links
= buf
.linkcount
- 1;
644 le
->next
= buckets
[hash
];
646 if (buckets
[hash
] != NULL
)
647 buckets
[hash
]->previous
= le
;
653 * Output in "human-readable" format. Uses 3 digits max and puts
654 * unit suffixes at the end. Makes output compact and easy to read,
655 * especially on huge disks.
659 unit_adjust(double *val
)
663 unsigned int unit_sz
;
667 unit_sz
= abval
? ilogb(abval
) / 10 : 0;
669 if (unit_sz
>= UNIT_MAX
) {
672 unit
= unitp
[unit_sz
];
673 *val
/= (double)valp
[unit_sz
];
680 prthumanval(double bytes
)
685 unit
= unit_adjust(&bytes
);
690 (void)printf("%3.0f%c", bytes
, "BKMGTPE"[unit
]);
692 (void)printf("%3.1f%c", bytes
, "BKMGTPE"[unit
]);
698 (void)fprintf(stderr
,
699 "usage: du [-H | -L | -P] [-a | -s | -d depth] [-c] [-h | -k | -m | -g] [-x] [-I mask] [file ...]\n");
704 ignoreadd(const char *mask
)
706 struct ignentry
*ign
;
708 ign
= calloc(1, sizeof(*ign
));
710 errx(1, "cannot allocate memory");
711 ign
->mask
= strdup(mask
);
712 if (ign
->mask
== NULL
)
713 errx(1, "cannot allocate memory");
714 SLIST_INSERT_HEAD(&ignores
, ign
, next
);
720 struct ignentry
*ign
;
722 while (!SLIST_EMPTY(&ignores
)) {
723 ign
= SLIST_FIRST(&ignores
);
724 SLIST_REMOVE_HEAD(&ignores
, next
);
733 struct ignentry
*ign
;
736 if (S_ISDIR(ent
->fts_statp
->st_mode
) && !strcmp("fd", ent
->fts_name
)) {
738 int rc
= statfs(ent
->fts_accpath
, &sfsb
);
739 if (rc
>= 0 && !strcmp("devfs", sfsb
.f_fstypename
)) {
740 /* Don't cd into /dev/fd/N since one of those is likely to be
741 the cwd as of the start of du which causes all manner of
742 unpleasant surprises */
746 #endif /* __APPLE__ */
747 SLIST_FOREACH(ign
, &ignores
, next
)
748 if (fnmatch(ign
->mask
, ent
->fts_name
, 0) != FNM_NOMATCH
)