]>
git.saurik.com Git - apple/file_cmds.git/blob - du/du.c
c49d9011a8ab9541aa26f5529c89831820e3560b
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>
74 #define COMPAT_MODE(func, mode) (1)
77 #define KILO_SZ(n) (n)
78 #define MEGA_SZ(n) ((n) * (n))
79 #define GIGA_SZ(n) ((n) * (n) * (n))
80 #define TERA_SZ(n) ((n) * (n) * (n) * (n))
81 #define PETA_SZ(n) ((n) * (n) * (n) * (n) * (n))
83 #define KILO_2_SZ (KILO_SZ(1024ULL))
84 #define MEGA_2_SZ (MEGA_SZ(1024ULL))
85 #define GIGA_2_SZ (GIGA_SZ(1024ULL))
86 #define TERA_2_SZ (TERA_SZ(1024ULL))
87 #define PETA_2_SZ (PETA_SZ(1024ULL))
89 #define KILO_SI_SZ (KILO_SZ(1000ULL))
90 #define MEGA_SI_SZ (MEGA_SZ(1000ULL))
91 #define GIGA_SI_SZ (GIGA_SZ(1000ULL))
92 #define TERA_SI_SZ (TERA_SZ(1000ULL))
93 #define PETA_SI_SZ (PETA_SZ(1000ULL))
95 #define TWO_TB (2LL * 1024LL * 1024LL * 1024LL * 1024LL)
97 unsigned long long vals_si
[] = {1, KILO_SI_SZ
, MEGA_SI_SZ
, GIGA_SI_SZ
, TERA_SI_SZ
, PETA_SI_SZ
};
98 unsigned long long vals_base2
[] = {1, KILO_2_SZ
, MEGA_2_SZ
, GIGA_2_SZ
, TERA_2_SZ
, PETA_2_SZ
};
99 unsigned long long *valp
;
101 typedef enum { NONE
, KILO
, MEGA
, GIGA
, TERA
, PETA
, UNIT_MAX
} unit_t
;
103 int unitp
[] = { NONE
, KILO
, MEGA
, GIGA
, TERA
, PETA
};
105 SLIST_HEAD(ignhead
, ignentry
) ignores
;
108 SLIST_ENTRY(ignentry
) next
;
111 static int linkchk(FTSENT
*);
112 static int dirlinkchk(FTSENT
*);
113 static void usage(void);
114 void prthumanval(double);
115 unit_t
unit_adjust(double *);
116 void ignoreadd(const char *);
117 void ignoreclean(void);
118 int ignorep(FTSENT
*);
121 main(int argc
, char *argv
[])
125 off_t savednumber
= 0;
130 int Hflag
, Lflag
, Pflag
, aflag
, sflag
, dflag
, cflag
, hflag
, ch
, notused
, rval
;
132 static char dot
[] = ".";
133 off_t
*ftsnum
, *ftsparnum
;
135 setlocale(LC_ALL
, "");
137 Hflag
= Lflag
= Pflag
= aflag
= sflag
= dflag
= cflag
= hflag
= 0;
140 ftsoptions
= FTS_NOCHDIR
;
142 SLIST_INIT(&ignores
);
144 while ((ch
= getopt(argc
, argv
, "HI:LPasd:cghkmrx")) != -1)
170 depth
= atoi(optarg
);
171 if (errno
== ERANGE
|| depth
< 0) {
172 warnx("invalid argument to option d: %s", optarg
);
180 putenv("BLOCKSIZE=512");
186 putenv("BLOCKSIZE=1024");
190 putenv("BLOCKSIZE=1048576");
194 putenv("BLOCKSIZE=1g");
196 case 'r': /* Compatibility. */
199 ftsoptions
|= FTS_XDEV
;
211 * Because of the way that fts(3) works, logical walks will not count
212 * the blocks actually used by symbolic links. We rationalize this by
213 * noting that users computing logical sizes are likely to do logical
214 * copies, so not counting the links is correct. The real reason is
215 * that we'd have to re-implement the kernel's symbolic link traversing
216 * algorithm to get this right. If, for example, you have relative
217 * symbolic links referencing other relative symbolic links, it gets
218 * very nasty, very fast. The bottom line is that it's documented in
219 * the man page, so it's a feature.
222 if (Hflag
+ Lflag
+ Pflag
> 1)
225 if (Hflag
+ Lflag
+ Pflag
== 0)
226 Pflag
= 1; /* -P (physical) is default */
229 ftsoptions
|= FTS_COMFOLLOW
;
232 ftsoptions
|= FTS_LOGICAL
;
235 ftsoptions
|= FTS_PHYSICAL
;
255 (void) getbsize(¬used
, &blocksize
);
260 if ((fts
= fts_open(argv
, ftsoptions
, NULL
)) == NULL
)
263 while ((p
= fts_read(fts
)) != NULL
) {
264 switch (p
->fts_info
) {
266 if (ignorep(p
) || dirlinkchk(p
))
267 fts_set(fts
, p
, FTS_SKIP
);
273 ftsparnum
= (off_t
*)&p
->fts_parent
->fts_number
;
274 ftsnum
= (off_t
*)&p
->fts_number
;
275 if (p
->fts_statp
->st_size
< TWO_TB
) {
276 ftsparnum
[0] += ftsnum
[0] += p
->fts_statp
->st_blocks
;
278 ftsparnum
[0] += ftsnum
[0] += howmany(p
->fts_statp
->st_size
, 512LL);
281 if (p
->fts_level
<= depth
) {
283 (void) prthumanval(howmany(*ftsnum
, blocksize
));
284 (void) printf("\t%s\n", p
->fts_path
);
286 (void) printf("%jd\t%s\n",
287 (intmax_t)howmany(*ftsnum
, blocksize
),
292 case FTS_DC
: /* Ignore. */
293 if (COMPAT_MODE("bin/du", "unix2003")) {
294 errx(1, "Can't follow symlink cycle from %s to %s", p
->fts_path
, p
->fts_cycle
->fts_path
);
297 case FTS_DNR
: /* Warn, continue. */
300 warnx("%s: %s", p
->fts_path
, strerror(p
->fts_errno
));
304 if (COMPAT_MODE("bin/du", "unix2003")) {
306 int rc
= stat(p
->fts_path
, &sb
);
307 if (rc
< 0 && errno
== ELOOP
) {
308 errx(1, "Too many symlinks at %s", p
->fts_path
);
315 if (p
->fts_statp
->st_nlink
> 1 && linkchk(p
))
318 if (listall
|| p
->fts_level
== 0) {
320 if (p
->fts_statp
->st_size
< TWO_TB
) {
321 (void) prthumanval(howmany(p
->fts_statp
->st_blocks
,
324 (void) prthumanval(howmany(howmany(p
->fts_statp
->st_size
, 512LL),
327 (void) printf("\t%s\n", p
->fts_path
);
329 if (p
->fts_statp
->st_size
< TWO_TB
) {
330 (void) printf("%jd\t%s\n",
331 (intmax_t)howmany(p
->fts_statp
->st_blocks
, blocksize
),
334 (void) printf("%jd\t%s\n",
335 (intmax_t)howmany(howmany(p
->fts_statp
->st_size
, 512LL), blocksize
),
341 ftsparnum
= (off_t
*)&p
->fts_parent
->fts_number
;
342 if (p
->fts_statp
->st_size
< TWO_TB
) {
343 ftsparnum
[0] += p
->fts_statp
->st_blocks
;
345 ftsparnum
[0] += p
->fts_statp
->st_size
/ 512LL;
348 savednumber
= ((off_t
*)&p
->fts_parent
->fts_number
)[0];
356 (void) prthumanval(howmany(savednumber
, blocksize
));
357 (void) printf("\ttotal\n");
359 (void) printf("%jd\ttotal\n", (intmax_t)howmany(savednumber
, blocksize
));
371 struct links_entry
*next
;
372 struct links_entry
*previous
;
377 static const size_t links_hash_initial_size
= 8192;
378 static struct links_entry
**buckets
;
379 static struct links_entry
*free_list
;
380 static size_t number_buckets
;
381 static unsigned long number_entries
;
382 static char stop_allocating
;
383 struct links_entry
*le
, **new_buckets
;
390 /* If necessary, initialize the hash table. */
391 if (buckets
== NULL
) {
392 number_buckets
= links_hash_initial_size
;
393 buckets
= malloc(number_buckets
* sizeof(buckets
[0]));
395 errx(1, "No memory for hardlink detection");
396 for (i
= 0; i
< number_buckets
; i
++)
400 /* If the hash table is getting too full, enlarge it. */
401 if (number_entries
> number_buckets
* 10 && !stop_allocating
) {
402 new_size
= number_buckets
* 2;
403 new_buckets
= malloc(new_size
* sizeof(struct links_entry
*));
405 /* Try releasing the free list to see if that helps. */
406 if (new_buckets
== NULL
&& free_list
!= NULL
) {
407 while (free_list
!= NULL
) {
409 free_list
= le
->next
;
412 new_buckets
= malloc(new_size
* sizeof(new_buckets
[0]));
415 if (new_buckets
== NULL
) {
417 warnx("No more memory for tracking hard links");
419 memset(new_buckets
, 0,
420 new_size
* sizeof(struct links_entry
*));
421 for (i
= 0; i
< number_buckets
; i
++) {
422 while (buckets
[i
] != NULL
) {
423 /* Remove entry from old bucket. */
425 buckets
[i
] = le
->next
;
427 /* Add entry to new bucket. */
428 hash
= (le
->dev
^ le
->ino
) % new_size
;
430 if (new_buckets
[hash
] != NULL
)
431 new_buckets
[hash
]->previous
=
433 le
->next
= new_buckets
[hash
];
435 new_buckets
[hash
] = le
;
439 buckets
= new_buckets
;
440 number_buckets
= new_size
;
444 /* Try to locate this entry in the hash table. */
445 hash
= ( st
->st_dev
^ st
->st_ino
) % number_buckets
;
446 for (le
= buckets
[hash
]; le
!= NULL
; le
= le
->next
) {
447 if (le
->dev
== st
->st_dev
&& le
->ino
== st
->st_ino
) {
449 * Save memory by releasing an entry when we've seen
452 if (--le
->links
<= 0) {
453 if (le
->previous
!= NULL
)
454 le
->previous
->next
= le
->next
;
455 if (le
->next
!= NULL
)
456 le
->next
->previous
= le
->previous
;
457 if (buckets
[hash
] == le
)
458 buckets
[hash
] = le
->next
;
460 /* Recycle this node through the free list */
461 if (stop_allocating
) {
464 le
->next
= free_list
;
475 /* Add this entry to the links cache. */
476 if (free_list
!= NULL
) {
477 /* Pull a node from the free list if we can. */
479 free_list
= le
->next
;
481 /* Malloc one if we have to. */
482 le
= malloc(sizeof(struct links_entry
));
485 warnx("No more memory for tracking hard links");
488 le
->dev
= st
->st_dev
;
489 le
->ino
= st
->st_ino
;
490 le
->links
= st
->st_nlink
- 1;
492 le
->next
= buckets
[hash
];
494 if (buckets
[hash
] != NULL
)
495 buckets
[hash
]->previous
= le
;
501 dirlinkchk(FTSENT
*p
)
504 struct links_entry
*next
;
505 struct links_entry
*previous
;
510 static const size_t links_hash_initial_size
= 8192;
511 static struct links_entry
**buckets
;
512 static struct links_entry
*free_list
;
513 static size_t number_buckets
;
514 static unsigned long number_entries
;
515 static char stop_allocating
;
516 struct links_entry
*le
, **new_buckets
;
524 struct attrlist attrList
;
526 memset(&attrList
, 0, sizeof(attrList
));
527 attrList
.bitmapcount
= ATTR_BIT_MAP_COUNT
;
528 attrList
.dirattr
= ATTR_DIR_LINKCOUNT
;
529 if (-1 == getattrlist(p
->fts_path
, &attrList
, &buf
, sizeof(buf
), 0))
531 if (buf
.linkcount
== 1)
535 /* If necessary, initialize the hash table. */
536 if (buckets
== NULL
) {
537 number_buckets
= links_hash_initial_size
;
538 buckets
= malloc(number_buckets
* sizeof(buckets
[0]));
540 errx(1, "No memory for directory hardlink detection");
541 for (i
= 0; i
< number_buckets
; i
++)
545 /* If the hash table is getting too full, enlarge it. */
546 if (number_entries
> number_buckets
* 10 && !stop_allocating
) {
547 new_size
= number_buckets
* 2;
548 new_buckets
= malloc(new_size
* sizeof(struct links_entry
*));
550 /* Try releasing the free list to see if that helps. */
551 if (new_buckets
== NULL
&& free_list
!= NULL
) {
552 while (free_list
!= NULL
) {
554 free_list
= le
->next
;
557 new_buckets
= malloc(new_size
* sizeof(new_buckets
[0]));
560 if (new_buckets
== NULL
) {
562 warnx("No more memory for tracking directory hard links");
564 memset(new_buckets
, 0,
565 new_size
* sizeof(struct links_entry
*));
566 for (i
= 0; i
< number_buckets
; i
++) {
567 while (buckets
[i
] != NULL
) {
568 /* Remove entry from old bucket. */
570 buckets
[i
] = le
->next
;
572 /* Add entry to new bucket. */
573 hash
= (le
->dev
^ le
->ino
) % new_size
;
575 if (new_buckets
[hash
] != NULL
)
576 new_buckets
[hash
]->previous
=
578 le
->next
= new_buckets
[hash
];
580 new_buckets
[hash
] = le
;
584 buckets
= new_buckets
;
585 number_buckets
= new_size
;
589 /* Try to locate this entry in the hash table. */
590 hash
= ( st
->st_dev
^ st
->st_ino
) % number_buckets
;
591 for (le
= buckets
[hash
]; le
!= NULL
; le
= le
->next
) {
592 if (le
->dev
== st
->st_dev
&& le
->ino
== st
->st_ino
) {
594 * Save memory by releasing an entry when we've seen
597 if (--le
->links
<= 0) {
598 if (le
->previous
!= NULL
)
599 le
->previous
->next
= le
->next
;
600 if (le
->next
!= NULL
)
601 le
->next
->previous
= le
->previous
;
602 if (buckets
[hash
] == le
)
603 buckets
[hash
] = le
->next
;
605 /* Recycle this node through the free list */
606 if (stop_allocating
) {
609 le
->next
= free_list
;
619 /* Add this entry to the links cache. */
620 if (free_list
!= NULL
) {
621 /* Pull a node from the free list if we can. */
623 free_list
= le
->next
;
625 /* Malloc one if we have to. */
626 le
= malloc(sizeof(struct links_entry
));
629 warnx("No more memory for tracking hard links");
632 le
->dev
= st
->st_dev
;
633 le
->ino
= st
->st_ino
;
634 le
->links
= buf
.linkcount
- 1;
636 le
->next
= buckets
[hash
];
638 if (buckets
[hash
] != NULL
)
639 buckets
[hash
]->previous
= le
;
645 * Output in "human-readable" format. Uses 3 digits max and puts
646 * unit suffixes at the end. Makes output compact and easy to read,
647 * especially on huge disks.
651 unit_adjust(double *val
)
655 unsigned int unit_sz
;
659 unit_sz
= abval
? ilogb(abval
) / 10 : 0;
661 if (unit_sz
>= UNIT_MAX
) {
664 unit
= unitp
[unit_sz
];
665 *val
/= (double)valp
[unit_sz
];
672 prthumanval(double bytes
)
677 unit
= unit_adjust(&bytes
);
682 (void)printf("%3.0f%c", bytes
, "BKMGTPE"[unit
]);
684 (void)printf("%3.1f%c", bytes
, "BKMGTPE"[unit
]);
690 (void)fprintf(stderr
,
691 "usage: du [-H | -L | -P] [-a | -s | -d depth] [-c] [-h | -k | -m | -g] [-x] [-I mask] [file ...]\n");
696 ignoreadd(const char *mask
)
698 struct ignentry
*ign
;
700 ign
= calloc(1, sizeof(*ign
));
702 errx(1, "cannot allocate memory");
703 ign
->mask
= strdup(mask
);
704 if (ign
->mask
== NULL
)
705 errx(1, "cannot allocate memory");
706 SLIST_INSERT_HEAD(&ignores
, ign
, next
);
712 struct ignentry
*ign
;
714 while (!SLIST_EMPTY(&ignores
)) {
715 ign
= SLIST_FIRST(&ignores
);
716 SLIST_REMOVE_HEAD(&ignores
, next
);
725 struct ignentry
*ign
;
728 if (S_ISDIR(ent
->fts_statp
->st_mode
) && !strcmp("fd", ent
->fts_name
)) {
730 int rc
= statfs(ent
->fts_accpath
, &sfsb
);
731 if (rc
>= 0 && !strcmp("devfs", sfsb
.f_fstypename
)) {
732 /* Don't cd into /dev/fd/N since one of those is likely to be
733 the cwd as of the start of du which causes all manner of
734 unpleasant surprises */
738 #endif /* __APPLE__ */
739 SLIST_FOREACH(ign
, &ignores
, next
)
740 if (fnmatch(ign
->mask
, ent
->fts_name
, 0) != FNM_NOMATCH
)