]>
git.saurik.com Git - apple/file_cmds.git/blob - du/du.c
99564dafff539b719c623eb938014ea30c8ade0f
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>
70 #include <get_compat.h>
72 #define COMPAT_MODE(func, mode) (1)
75 #define KILO_SZ(n) (n)
76 #define MEGA_SZ(n) ((n) * (n))
77 #define GIGA_SZ(n) ((n) * (n) * (n))
78 #define TERA_SZ(n) ((n) * (n) * (n) * (n))
79 #define PETA_SZ(n) ((n) * (n) * (n) * (n) * (n))
81 #define KILO_2_SZ (KILO_SZ(1024ULL))
82 #define MEGA_2_SZ (MEGA_SZ(1024ULL))
83 #define GIGA_2_SZ (GIGA_SZ(1024ULL))
84 #define TERA_2_SZ (TERA_SZ(1024ULL))
85 #define PETA_2_SZ (PETA_SZ(1024ULL))
87 #define KILO_SI_SZ (KILO_SZ(1000ULL))
88 #define MEGA_SI_SZ (MEGA_SZ(1000ULL))
89 #define GIGA_SI_SZ (GIGA_SZ(1000ULL))
90 #define TERA_SI_SZ (TERA_SZ(1000ULL))
91 #define PETA_SI_SZ (PETA_SZ(1000ULL))
93 #define TWO_TB (2LL * 1024LL * 1024LL * 1024LL * 1024LL)
95 unsigned long long vals_si
[] = {1, KILO_SI_SZ
, MEGA_SI_SZ
, GIGA_SI_SZ
, TERA_SI_SZ
, PETA_SI_SZ
};
96 unsigned long long vals_base2
[] = {1, KILO_2_SZ
, MEGA_2_SZ
, GIGA_2_SZ
, TERA_2_SZ
, PETA_2_SZ
};
97 unsigned long long *valp
;
99 typedef enum { NONE
, KILO
, MEGA
, GIGA
, TERA
, PETA
, UNIT_MAX
} unit_t
;
101 int unitp
[] = { NONE
, KILO
, MEGA
, GIGA
, TERA
, PETA
};
103 SLIST_HEAD(ignhead
, ignentry
) ignores
;
106 SLIST_ENTRY(ignentry
) next
;
109 static int linkchk(FTSENT
*);
110 static void usage(void);
111 void prthumanval(double);
112 unit_t
unit_adjust(double *);
113 void ignoreadd(const char *);
114 void ignoreclean(void);
115 int ignorep(FTSENT
*);
118 main(int argc
, char *argv
[])
122 off_t savednumber
= 0;
127 int Hflag
, Lflag
, Pflag
, aflag
, sflag
, dflag
, cflag
, hflag
, ch
, notused
, rval
;
129 static char dot
[] = ".";
130 off_t
*ftsnum
, *ftsparnum
;
132 setlocale(LC_ALL
, "");
134 Hflag
= Lflag
= Pflag
= aflag
= sflag
= dflag
= cflag
= hflag
= 0;
139 SLIST_INIT(&ignores
);
141 while ((ch
= getopt(argc
, argv
, "HI:LPasd:cghkmrx")) != -1)
167 depth
= atoi(optarg
);
168 if (errno
== ERANGE
|| depth
< 0) {
169 warnx("invalid argument to option d: %s", optarg
);
177 putenv("BLOCKSIZE=512");
183 putenv("BLOCKSIZE=1024");
187 putenv("BLOCKSIZE=1048576");
191 putenv("BLOCKSIZE=1g");
193 case 'r': /* Compatibility. */
196 ftsoptions
|= FTS_XDEV
;
208 * Because of the way that fts(3) works, logical walks will not count
209 * the blocks actually used by symbolic links. We rationalize this by
210 * noting that users computing logical sizes are likely to do logical
211 * copies, so not counting the links is correct. The real reason is
212 * that we'd have to re-implement the kernel's symbolic link traversing
213 * algorithm to get this right. If, for example, you have relative
214 * symbolic links referencing other relative symbolic links, it gets
215 * very nasty, very fast. The bottom line is that it's documented in
216 * the man page, so it's a feature.
219 if (Hflag
+ Lflag
+ Pflag
> 1)
222 if (Hflag
+ Lflag
+ Pflag
== 0)
223 Pflag
= 1; /* -P (physical) is default */
226 ftsoptions
|= FTS_COMFOLLOW
;
229 ftsoptions
|= FTS_LOGICAL
;
232 ftsoptions
|= FTS_PHYSICAL
;
252 (void) getbsize(¬used
, &blocksize
);
257 if ((fts
= fts_open(argv
, ftsoptions
, NULL
)) == NULL
)
260 while ((p
= fts_read(fts
)) != NULL
) {
261 switch (p
->fts_info
) {
262 case FTS_D
: /* Ignore. */
264 fts_set(fts
, p
, FTS_SKIP
);
270 ftsparnum
= (off_t
*)&p
->fts_parent
->fts_number
;
271 ftsnum
= (off_t
*)&p
->fts_number
;
272 if (p
->fts_statp
->st_size
< TWO_TB
) {
273 ftsparnum
[0] += ftsnum
[0] += p
->fts_statp
->st_blocks
;
275 ftsparnum
[0] += ftsnum
[0] += howmany(p
->fts_statp
->st_size
, 512LL);
278 if (p
->fts_level
<= depth
) {
280 (void) prthumanval(howmany(*ftsnum
, blocksize
));
281 (void) printf("\t%s\n", p
->fts_path
);
283 (void) printf("%jd\t%s\n",
284 (intmax_t)howmany(*ftsnum
, blocksize
),
289 case FTS_DC
: /* Ignore. */
290 if (COMPAT_MODE("bin/du", "unix2003")) {
291 errx(1, "Can't follow symlink cycle from %s to %s", p
->fts_path
, p
->fts_cycle
->fts_path
);
294 case FTS_DNR
: /* Warn, continue. */
297 warnx("%s: %s", p
->fts_path
, strerror(p
->fts_errno
));
301 if (COMPAT_MODE("bin/du", "unix2003")) {
303 int rc
= stat(p
->fts_path
, &sb
);
304 if (rc
< 0 && errno
== ELOOP
) {
305 errx(1, "Too many symlinks at %s", p
->fts_path
);
312 if (p
->fts_statp
->st_nlink
> 1 && linkchk(p
))
315 if (listall
|| p
->fts_level
== 0) {
317 if (p
->fts_statp
->st_size
< TWO_TB
) {
318 (void) prthumanval(howmany(p
->fts_statp
->st_blocks
,
321 (void) prthumanval(howmany(howmany(p
->fts_statp
->st_size
, 512LL),
324 (void) printf("\t%s\n", p
->fts_path
);
326 if (p
->fts_statp
->st_size
< TWO_TB
) {
327 (void) printf("%jd\t%s\n",
328 (intmax_t)howmany(p
->fts_statp
->st_blocks
, blocksize
),
331 (void) printf("%jd\t%s\n",
332 (intmax_t)howmany(howmany(p
->fts_statp
->st_size
, 512LL), blocksize
),
338 ftsparnum
= (off_t
*)&p
->fts_parent
->fts_number
;
339 if (p
->fts_statp
->st_size
< TWO_TB
) {
340 ftsparnum
[0] += p
->fts_statp
->st_blocks
;
342 ftsparnum
[0] += p
->fts_statp
->st_size
/ 512LL;
345 savednumber
= ((off_t
*)&p
->fts_parent
->fts_number
)[0];
353 (void) prthumanval(howmany(savednumber
, blocksize
));
354 (void) printf("\ttotal\n");
356 (void) printf("%jd\ttotal\n", (intmax_t)howmany(savednumber
, blocksize
));
368 struct links_entry
*next
;
369 struct links_entry
*previous
;
374 static const size_t links_hash_initial_size
= 8192;
375 static struct links_entry
**buckets
;
376 static struct links_entry
*free_list
;
377 static size_t number_buckets
;
378 static unsigned long number_entries
;
379 static char stop_allocating
;
380 struct links_entry
*le
, **new_buckets
;
387 /* If necessary, initialize the hash table. */
388 if (buckets
== NULL
) {
389 number_buckets
= links_hash_initial_size
;
390 buckets
= malloc(number_buckets
* sizeof(buckets
[0]));
392 errx(1, "No memory for hardlink detection");
393 for (i
= 0; i
< number_buckets
; i
++)
397 /* If the hash table is getting too full, enlarge it. */
398 if (number_entries
> number_buckets
* 10 && !stop_allocating
) {
399 new_size
= number_buckets
* 2;
400 new_buckets
= malloc(new_size
* sizeof(struct links_entry
*));
402 /* Try releasing the free list to see if that helps. */
403 if (new_buckets
== NULL
&& free_list
!= NULL
) {
404 while (free_list
!= NULL
) {
406 free_list
= le
->next
;
409 new_buckets
= malloc(new_size
* sizeof(new_buckets
[0]));
412 if (new_buckets
== NULL
) {
414 warnx("No more memory for tracking hard links");
416 memset(new_buckets
, 0,
417 new_size
* sizeof(struct links_entry
*));
418 for (i
= 0; i
< number_buckets
; i
++) {
419 while (buckets
[i
] != NULL
) {
420 /* Remove entry from old bucket. */
422 buckets
[i
] = le
->next
;
424 /* Add entry to new bucket. */
425 hash
= (le
->dev
^ le
->ino
) % new_size
;
427 if (new_buckets
[hash
] != NULL
)
428 new_buckets
[hash
]->previous
=
430 le
->next
= new_buckets
[hash
];
432 new_buckets
[hash
] = le
;
436 buckets
= new_buckets
;
437 number_buckets
= new_size
;
441 /* Try to locate this entry in the hash table. */
442 hash
= ( st
->st_dev
^ st
->st_ino
) % number_buckets
;
443 for (le
= buckets
[hash
]; le
!= NULL
; le
= le
->next
) {
444 if (le
->dev
== st
->st_dev
&& le
->ino
== st
->st_ino
) {
446 * Save memory by releasing an entry when we've seen
449 if (--le
->links
<= 0) {
450 if (le
->previous
!= NULL
)
451 le
->previous
->next
= le
->next
;
452 if (le
->next
!= NULL
)
453 le
->next
->previous
= le
->previous
;
454 if (buckets
[hash
] == le
)
455 buckets
[hash
] = le
->next
;
457 /* Recycle this node through the free list */
458 if (stop_allocating
) {
461 le
->next
= free_list
;
472 /* Add this entry to the links cache. */
473 if (free_list
!= NULL
) {
474 /* Pull a node from the free list if we can. */
476 free_list
= le
->next
;
478 /* Malloc one if we have to. */
479 le
= malloc(sizeof(struct links_entry
));
482 warnx("No more memory for tracking hard links");
485 le
->dev
= st
->st_dev
;
486 le
->ino
= st
->st_ino
;
487 le
->links
= st
->st_nlink
- 1;
489 le
->next
= buckets
[hash
];
491 if (buckets
[hash
] != NULL
)
492 buckets
[hash
]->previous
= le
;
498 * Output in "human-readable" format. Uses 3 digits max and puts
499 * unit suffixes at the end. Makes output compact and easy to read,
500 * especially on huge disks.
504 unit_adjust(double *val
)
508 unsigned int unit_sz
;
512 unit_sz
= abval
? ilogb(abval
) / 10 : 0;
514 if (unit_sz
>= UNIT_MAX
) {
517 unit
= unitp
[unit_sz
];
518 *val
/= (double)valp
[unit_sz
];
525 prthumanval(double bytes
)
530 unit
= unit_adjust(&bytes
);
535 (void)printf("%3.0f%c", bytes
, "BKMGTPE"[unit
]);
537 (void)printf("%3.1f%c", bytes
, "BKMGTPE"[unit
]);
543 (void)fprintf(stderr
,
544 "usage: du [-H | -L | -P] [-a | -s | -d depth] [-c] [-h | -k | -m | -g] [-x] [-I mask] [file ...]\n");
549 ignoreadd(const char *mask
)
551 struct ignentry
*ign
;
553 ign
= calloc(1, sizeof(*ign
));
555 errx(1, "cannot allocate memory");
556 ign
->mask
= strdup(mask
);
557 if (ign
->mask
== NULL
)
558 errx(1, "cannot allocate memory");
559 SLIST_INSERT_HEAD(&ignores
, ign
, next
);
565 struct ignentry
*ign
;
567 while (!SLIST_EMPTY(&ignores
)) {
568 ign
= SLIST_FIRST(&ignores
);
569 SLIST_REMOVE_HEAD(&ignores
, next
);
578 struct ignentry
*ign
;
581 if (S_ISDIR(ent
->fts_statp
->st_mode
) && !strcmp("fd", ent
->fts_name
)) {
583 int rc
= statfs(ent
->fts_accpath
, &sfsb
);
584 if (rc
>= 0 && !strcmp("fdesc", sfsb
.f_fstypename
)) {
585 /* Don't cd into /dev/fd/N since one of those is likely to be
586 the cwd as of the start of du which causes all manner of
587 unpleasant surprises */
591 #endif /* __APPLE__ */
592 SLIST_FOREACH(ign
, &ignores
, next
)
593 if (fnmatch(ign
->mask
, ent
->fts_name
, 0) != FNM_NOMATCH
)