]>
git.saurik.com Git - apple/file_cmds.git/blob - du/du.c
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
38 static const char copyright
[] =
39 "@(#) Copyright (c) 1989, 1993, 1994\n\
40 The Regents of the University of California. All rights reserved.\n";
45 static const char sccsid
[] = "@(#)du.c 8.5 (Berkeley) 5/4/95";
48 #include <sys/cdefs.h>
49 __FBSDID("$FreeBSD: src/usr.bin/du/du.c,v 1.38 2005/04/09 14:31:40 stefanf Exp $");
51 #include <sys/mount.h>
52 #include <sys/param.h>
53 #include <sys/queue.h>
71 #include <get_compat.h>
73 #define COMPAT_MODE(func, mode) (1)
76 #define KILO_SZ(n) (n)
77 #define MEGA_SZ(n) ((n) * (n))
78 #define GIGA_SZ(n) ((n) * (n) * (n))
79 #define TERA_SZ(n) ((n) * (n) * (n) * (n))
80 #define PETA_SZ(n) ((n) * (n) * (n) * (n) * (n))
82 #define KILO_2_SZ (KILO_SZ(1024ULL))
83 #define MEGA_2_SZ (MEGA_SZ(1024ULL))
84 #define GIGA_2_SZ (GIGA_SZ(1024ULL))
85 #define TERA_2_SZ (TERA_SZ(1024ULL))
86 #define PETA_2_SZ (PETA_SZ(1024ULL))
88 #define KILO_SI_SZ (KILO_SZ(1000ULL))
89 #define MEGA_SI_SZ (MEGA_SZ(1000ULL))
90 #define GIGA_SI_SZ (GIGA_SZ(1000ULL))
91 #define TERA_SI_SZ (TERA_SZ(1000ULL))
92 #define PETA_SI_SZ (PETA_SZ(1000ULL))
94 #define TWO_TB (2LL * 1024LL * 1024LL * 1024LL * 1024LL)
96 unsigned long long vals_si
[] = {1, KILO_SI_SZ
, MEGA_SI_SZ
, GIGA_SI_SZ
, TERA_SI_SZ
, PETA_SI_SZ
};
97 unsigned long long vals_base2
[] = {1, KILO_2_SZ
, MEGA_2_SZ
, GIGA_2_SZ
, TERA_2_SZ
, PETA_2_SZ
};
98 unsigned long long *valp
;
100 typedef enum { NONE
, KILO
, MEGA
, GIGA
, TERA
, PETA
, UNIT_MAX
} unit_t
;
102 int unitp
[] = { NONE
, KILO
, MEGA
, GIGA
, TERA
, PETA
};
104 SLIST_HEAD(ignhead
, ignentry
) ignores
;
107 SLIST_ENTRY(ignentry
) next
;
110 static int linkchk(FTSENT
*);
111 static int dirlinkchk(FTSENT
*);
112 static void usage(void);
113 void prthumanval(double);
114 unit_t
unit_adjust(double *);
115 void ignoreadd(const char *);
116 void ignoreclean(void);
117 int ignorep(FTSENT
*);
120 main(int argc
, char *argv
[])
124 off_t savednumber
= 0;
129 int Hflag
, Lflag
, Pflag
, aflag
, sflag
, dflag
, cflag
, hflag
, ch
, notused
, rval
;
131 static char dot
[] = ".";
132 off_t
*ftsnum
, *ftsparnum
;
134 setlocale(LC_ALL
, "");
136 Hflag
= Lflag
= Pflag
= aflag
= sflag
= dflag
= cflag
= hflag
= 0;
139 ftsoptions
= FTS_NOCHDIR
;
141 SLIST_INIT(&ignores
);
143 while ((ch
= getopt(argc
, argv
, "HI:LPasd:cghkmrx")) != -1)
169 depth
= atoi(optarg
);
170 if (errno
== ERANGE
|| depth
< 0) {
171 warnx("invalid argument to option d: %s", optarg
);
179 putenv("BLOCKSIZE=512");
185 putenv("BLOCKSIZE=1024");
189 putenv("BLOCKSIZE=1048576");
193 putenv("BLOCKSIZE=1g");
195 case 'r': /* Compatibility. */
198 ftsoptions
|= FTS_XDEV
;
210 * Because of the way that fts(3) works, logical walks will not count
211 * the blocks actually used by symbolic links. We rationalize this by
212 * noting that users computing logical sizes are likely to do logical
213 * copies, so not counting the links is correct. The real reason is
214 * that we'd have to re-implement the kernel's symbolic link traversing
215 * algorithm to get this right. If, for example, you have relative
216 * symbolic links referencing other relative symbolic links, it gets
217 * very nasty, very fast. The bottom line is that it's documented in
218 * the man page, so it's a feature.
221 if (Hflag
+ Lflag
+ Pflag
> 1)
224 if (Hflag
+ Lflag
+ Pflag
== 0)
225 Pflag
= 1; /* -P (physical) is default */
228 ftsoptions
|= FTS_COMFOLLOW
;
231 ftsoptions
|= FTS_LOGICAL
;
234 ftsoptions
|= FTS_PHYSICAL
;
254 (void) getbsize(¬used
, &blocksize
);
259 if ((fts
= fts_open(argv
, ftsoptions
, NULL
)) == NULL
)
262 while ((p
= fts_read(fts
)) != NULL
) {
263 switch (p
->fts_info
) {
265 if (ignorep(p
) || dirlinkchk(p
))
266 fts_set(fts
, p
, FTS_SKIP
);
272 ftsparnum
= (off_t
*)&p
->fts_parent
->fts_number
;
273 ftsnum
= (off_t
*)&p
->fts_number
;
274 if (p
->fts_statp
->st_size
< TWO_TB
) {
275 ftsparnum
[0] += ftsnum
[0] += p
->fts_statp
->st_blocks
;
277 ftsparnum
[0] += ftsnum
[0] += howmany(p
->fts_statp
->st_size
, 512LL);
280 if (p
->fts_level
<= depth
) {
282 (void) prthumanval(howmany(*ftsnum
, blocksize
));
283 (void) printf("\t%s\n", p
->fts_path
);
285 (void) printf("%jd\t%s\n",
286 (intmax_t)howmany(*ftsnum
, blocksize
),
291 case FTS_DC
: /* Ignore. */
292 if (COMPAT_MODE("bin/du", "unix2003")) {
293 errx(1, "Can't follow symlink cycle from %s to %s", p
->fts_path
, p
->fts_cycle
->fts_path
);
296 case FTS_DNR
: /* Warn, continue. */
299 warnx("%s: %s", p
->fts_path
, strerror(p
->fts_errno
));
303 if (COMPAT_MODE("bin/du", "unix2003")) {
305 int rc
= stat(p
->fts_path
, &sb
);
306 if (rc
< 0 && errno
== ELOOP
) {
307 errx(1, "Too many symlinks at %s", p
->fts_path
);
314 if (p
->fts_statp
->st_nlink
> 1 && linkchk(p
))
317 if (listall
|| p
->fts_level
== 0) {
319 if (p
->fts_statp
->st_size
< TWO_TB
) {
320 (void) prthumanval(howmany(p
->fts_statp
->st_blocks
,
323 (void) prthumanval(howmany(howmany(p
->fts_statp
->st_size
, 512LL),
326 (void) printf("\t%s\n", p
->fts_path
);
328 if (p
->fts_statp
->st_size
< TWO_TB
) {
329 (void) printf("%jd\t%s\n",
330 (intmax_t)howmany(p
->fts_statp
->st_blocks
, blocksize
),
333 (void) printf("%jd\t%s\n",
334 (intmax_t)howmany(howmany(p
->fts_statp
->st_size
, 512LL), blocksize
),
340 ftsparnum
= (off_t
*)&p
->fts_parent
->fts_number
;
341 if (p
->fts_statp
->st_size
< TWO_TB
) {
342 ftsparnum
[0] += p
->fts_statp
->st_blocks
;
344 ftsparnum
[0] += p
->fts_statp
->st_size
/ 512LL;
347 savednumber
= ((off_t
*)&p
->fts_parent
->fts_number
)[0];
355 (void) prthumanval(howmany(savednumber
, blocksize
));
356 (void) printf("\ttotal\n");
358 (void) printf("%jd\ttotal\n", (intmax_t)howmany(savednumber
, blocksize
));
370 struct links_entry
*next
;
371 struct links_entry
*previous
;
376 static const size_t links_hash_initial_size
= 8192;
377 static struct links_entry
**buckets
;
378 static struct links_entry
*free_list
;
379 static size_t number_buckets
;
380 static unsigned long number_entries
;
381 static char stop_allocating
;
382 struct links_entry
*le
, **new_buckets
;
389 /* If necessary, initialize the hash table. */
390 if (buckets
== NULL
) {
391 number_buckets
= links_hash_initial_size
;
392 buckets
= malloc(number_buckets
* sizeof(buckets
[0]));
394 errx(1, "No memory for hardlink detection");
395 for (i
= 0; i
< number_buckets
; i
++)
399 /* If the hash table is getting too full, enlarge it. */
400 if (number_entries
> number_buckets
* 10 && !stop_allocating
) {
401 new_size
= number_buckets
* 2;
402 new_buckets
= malloc(new_size
* sizeof(struct links_entry
*));
404 /* Try releasing the free list to see if that helps. */
405 if (new_buckets
== NULL
&& free_list
!= NULL
) {
406 while (free_list
!= NULL
) {
408 free_list
= le
->next
;
411 new_buckets
= malloc(new_size
* sizeof(new_buckets
[0]));
414 if (new_buckets
== NULL
) {
416 warnx("No more memory for tracking hard links");
418 memset(new_buckets
, 0,
419 new_size
* sizeof(struct links_entry
*));
420 for (i
= 0; i
< number_buckets
; i
++) {
421 while (buckets
[i
] != NULL
) {
422 /* Remove entry from old bucket. */
424 buckets
[i
] = le
->next
;
426 /* Add entry to new bucket. */
427 hash
= (le
->dev
^ le
->ino
) % new_size
;
429 if (new_buckets
[hash
] != NULL
)
430 new_buckets
[hash
]->previous
=
432 le
->next
= new_buckets
[hash
];
434 new_buckets
[hash
] = le
;
438 buckets
= new_buckets
;
439 number_buckets
= new_size
;
443 /* Try to locate this entry in the hash table. */
444 hash
= ( st
->st_dev
^ st
->st_ino
) % number_buckets
;
445 for (le
= buckets
[hash
]; le
!= NULL
; le
= le
->next
) {
446 if (le
->dev
== st
->st_dev
&& le
->ino
== st
->st_ino
) {
448 * Save memory by releasing an entry when we've seen
451 if (--le
->links
<= 0) {
452 if (le
->previous
!= NULL
)
453 le
->previous
->next
= le
->next
;
454 if (le
->next
!= NULL
)
455 le
->next
->previous
= le
->previous
;
456 if (buckets
[hash
] == le
)
457 buckets
[hash
] = le
->next
;
459 /* Recycle this node through the free list */
460 if (stop_allocating
) {
463 le
->next
= free_list
;
474 /* Add this entry to the links cache. */
475 if (free_list
!= NULL
) {
476 /* Pull a node from the free list if we can. */
478 free_list
= le
->next
;
480 /* Malloc one if we have to. */
481 le
= malloc(sizeof(struct links_entry
));
484 warnx("No more memory for tracking hard links");
487 le
->dev
= st
->st_dev
;
488 le
->ino
= st
->st_ino
;
489 le
->links
= st
->st_nlink
- 1;
491 le
->next
= buckets
[hash
];
493 if (buckets
[hash
] != NULL
)
494 buckets
[hash
]->previous
= le
;
500 dirlinkchk(FTSENT
*p
)
503 struct links_entry
*next
;
504 struct links_entry
*previous
;
509 static const size_t links_hash_initial_size
= 8192;
510 static struct links_entry
**buckets
;
511 static struct links_entry
*free_list
;
512 static size_t number_buckets
;
513 static unsigned long number_entries
;
514 static char stop_allocating
;
515 struct links_entry
*le
, **new_buckets
;
523 struct attrlist attrList
;
525 memset(&attrList
, 0, sizeof(attrList
));
526 attrList
.bitmapcount
= ATTR_BIT_MAP_COUNT
;
527 attrList
.dirattr
= ATTR_DIR_LINKCOUNT
;
528 if (-1 == getattrlist(p
->fts_path
, &attrList
, &buf
, sizeof(buf
), 0))
530 if (buf
.linkcount
== 1)
534 /* If necessary, initialize the hash table. */
535 if (buckets
== NULL
) {
536 number_buckets
= links_hash_initial_size
;
537 buckets
= malloc(number_buckets
* sizeof(buckets
[0]));
539 errx(1, "No memory for directory hardlink detection");
540 for (i
= 0; i
< number_buckets
; i
++)
544 /* If the hash table is getting too full, enlarge it. */
545 if (number_entries
> number_buckets
* 10 && !stop_allocating
) {
546 new_size
= number_buckets
* 2;
547 new_buckets
= malloc(new_size
* sizeof(struct links_entry
*));
549 /* Try releasing the free list to see if that helps. */
550 if (new_buckets
== NULL
&& free_list
!= NULL
) {
551 while (free_list
!= NULL
) {
553 free_list
= le
->next
;
556 new_buckets
= malloc(new_size
* sizeof(new_buckets
[0]));
559 if (new_buckets
== NULL
) {
561 warnx("No more memory for tracking directory hard links");
563 memset(new_buckets
, 0,
564 new_size
* sizeof(struct links_entry
*));
565 for (i
= 0; i
< number_buckets
; i
++) {
566 while (buckets
[i
] != NULL
) {
567 /* Remove entry from old bucket. */
569 buckets
[i
] = le
->next
;
571 /* Add entry to new bucket. */
572 hash
= (le
->dev
^ le
->ino
) % new_size
;
574 if (new_buckets
[hash
] != NULL
)
575 new_buckets
[hash
]->previous
=
577 le
->next
= new_buckets
[hash
];
579 new_buckets
[hash
] = le
;
583 buckets
= new_buckets
;
584 number_buckets
= new_size
;
588 /* Try to locate this entry in the hash table. */
589 hash
= ( st
->st_dev
^ st
->st_ino
) % number_buckets
;
590 for (le
= buckets
[hash
]; le
!= NULL
; le
= le
->next
) {
591 if (le
->dev
== st
->st_dev
&& le
->ino
== st
->st_ino
) {
593 * Save memory by releasing an entry when we've seen
596 if (--le
->links
<= 0) {
597 if (le
->previous
!= NULL
)
598 le
->previous
->next
= le
->next
;
599 if (le
->next
!= NULL
)
600 le
->next
->previous
= le
->previous
;
601 if (buckets
[hash
] == le
)
602 buckets
[hash
] = le
->next
;
604 /* Recycle this node through the free list */
605 if (stop_allocating
) {
608 le
->next
= free_list
;
618 /* Add this entry to the links cache. */
619 if (free_list
!= NULL
) {
620 /* Pull a node from the free list if we can. */
622 free_list
= le
->next
;
624 /* Malloc one if we have to. */
625 le
= malloc(sizeof(struct links_entry
));
628 warnx("No more memory for tracking hard links");
631 le
->dev
= st
->st_dev
;
632 le
->ino
= st
->st_ino
;
633 le
->links
= buf
.linkcount
- 1;
635 le
->next
= buckets
[hash
];
637 if (buckets
[hash
] != NULL
)
638 buckets
[hash
]->previous
= le
;
644 * Output in "human-readable" format. Uses 3 digits max and puts
645 * unit suffixes at the end. Makes output compact and easy to read,
646 * especially on huge disks.
650 unit_adjust(double *val
)
654 unsigned int unit_sz
;
658 unit_sz
= abval
? ilogb(abval
) / 10 : 0;
660 if (unit_sz
>= UNIT_MAX
) {
663 unit
= unitp
[unit_sz
];
664 *val
/= (double)valp
[unit_sz
];
671 prthumanval(double bytes
)
676 unit
= unit_adjust(&bytes
);
681 (void)printf("%3.0f%c", bytes
, "BKMGTPE"[unit
]);
683 (void)printf("%3.1f%c", bytes
, "BKMGTPE"[unit
]);
689 (void)fprintf(stderr
,
690 "usage: du [-H | -L | -P] [-a | -s | -d depth] [-c] [-h | -k | -m | -g] [-x] [-I mask] [file ...]\n");
695 ignoreadd(const char *mask
)
697 struct ignentry
*ign
;
699 ign
= calloc(1, sizeof(*ign
));
701 errx(1, "cannot allocate memory");
702 ign
->mask
= strdup(mask
);
703 if (ign
->mask
== NULL
)
704 errx(1, "cannot allocate memory");
705 SLIST_INSERT_HEAD(&ignores
, ign
, next
);
711 struct ignentry
*ign
;
713 while (!SLIST_EMPTY(&ignores
)) {
714 ign
= SLIST_FIRST(&ignores
);
715 SLIST_REMOVE_HEAD(&ignores
, next
);
724 struct ignentry
*ign
;
727 if (S_ISDIR(ent
->fts_statp
->st_mode
) && !strcmp("fd", ent
->fts_name
)) {
729 int rc
= statfs(ent
->fts_accpath
, &sfsb
);
730 if (rc
>= 0 && !strcmp("devfs", sfsb
.f_fstypename
)) {
731 /* Don't cd into /dev/fd/N since one of those is likely to be
732 the cwd as of the start of du which causes all manner of
733 unpleasant surprises */
737 #endif /* __APPLE__ */
738 SLIST_FOREACH(ign
, &ignores
, next
)
739 if (fnmatch(ign
->mask
, ent
->fts_name
, 0) != FNM_NOMATCH
)