]>
git.saurik.com Git - apple/file_cmds.git/blob - du/du.c
8b1c46b045a5f18895f62725662ce07240583d25
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 __RCSID("$FreeBSD: src/usr.bin/du/du.c,v 1.28 2002/12/30 18:13:07 mike Exp $");
51 #include <sys/param.h>
52 #include <sys/queue.h>
65 #include <sys/param.h>
66 #include <sys/mount.h>
69 #include "get_compat.h"
71 #define COMPAT_MODE(func, mode) 1
74 #define KILO_SZ(n) (n)
75 #define MEGA_SZ(n) ((n) * (n))
76 #define GIGA_SZ(n) ((n) * (n) * (n))
77 #define TERA_SZ(n) ((n) * (n) * (n) * (n))
78 #define PETA_SZ(n) ((n) * (n) * (n) * (n) * (n))
80 #define KILO_2_SZ (KILO_SZ(1024ULL))
81 #define MEGA_2_SZ (MEGA_SZ(1024ULL))
82 #define GIGA_2_SZ (GIGA_SZ(1024ULL))
83 #define TERA_2_SZ (TERA_SZ(1024ULL))
84 #define PETA_2_SZ (PETA_SZ(1024ULL))
86 #define KILO_SI_SZ (KILO_SZ(1000ULL))
87 #define MEGA_SI_SZ (MEGA_SZ(1000ULL))
88 #define GIGA_SI_SZ (GIGA_SZ(1000ULL))
89 #define TERA_SI_SZ (TERA_SZ(1000ULL))
90 #define PETA_SI_SZ (PETA_SZ(1000ULL))
92 #define TWO_TB (2LL * 1024LL * 1024LL * 1024LL * 1024LL)
94 unsigned long long vals_si
[] = {1, KILO_SI_SZ
, MEGA_SI_SZ
, GIGA_SI_SZ
, TERA_SI_SZ
, PETA_SI_SZ
};
95 unsigned long long vals_base2
[] = {1, KILO_2_SZ
, MEGA_2_SZ
, GIGA_2_SZ
, TERA_2_SZ
, PETA_2_SZ
};
96 unsigned long long *valp
;
98 typedef enum { NONE
, KILO
, MEGA
, GIGA
, TERA
, PETA
, UNIT_MAX
} unit_t
;
100 int unitp
[] = { NONE
, KILO
, MEGA
, GIGA
, TERA
, PETA
};
102 SLIST_HEAD(ignhead
, ignentry
) ignores
;
105 SLIST_ENTRY(ignentry
) next
;
108 int linkchk(FTSENT
*);
109 static void usage(void);
110 void prthumanval(double);
111 unit_t
unit_adjust(double *);
112 void ignoreadd(const char *);
113 void ignoreclean(void);
114 int ignorep(FTSENT
*);
117 main(int argc
, char *argv
[])
125 int Hflag
, Lflag
, Pflag
, aflag
, sflag
, dflag
, cflag
, hflag
, ch
, notused
, rval
;
127 static char dot
[] = ".";
128 off_t
*ftsnum
, *ftsparnum
, savednumber
= 0;
130 Hflag
= Lflag
= Pflag
= aflag
= sflag
= dflag
= cflag
= hflag
= 0;
135 SLIST_INIT(&ignores
);
137 while ((ch
= getopt(argc
, argv
, "HI:LPasd:chkrx")) != -1)
147 if (Pflag
&& COMPAT_MODE("bin/du", "legacy")) {
155 if (Lflag
&& COMPAT_MODE("bin/du", "legacy")) {
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");
189 case 'r': /* Compatibility. */
192 ftsoptions
|= FTS_XDEV
;
204 * Because of the way that fts(3) works, logical walks will not count
205 * the blocks actually used by symbolic links. We rationalize this by
206 * noting that users computing logical sizes are likely to do logical
207 * copies, so not counting the links is correct. The real reason is
208 * that we'd have to re-implement the kernel's symbolic link traversing
209 * algorithm to get this right. If, for example, you have relative
210 * symbolic links referencing other relative symbolic links, it gets
211 * very nasty, very fast. The bottom line is that it's documented in
212 * the man page, so it's a feature.
215 if (Hflag
+ Lflag
+ Pflag
> 1)
218 if (Hflag
+ Lflag
+ Pflag
== 0)
219 Pflag
= 1; /* -P (physical) is default */
222 ftsoptions
|= FTS_COMFOLLOW
;
225 ftsoptions
|= FTS_LOGICAL
;
228 ftsoptions
|= FTS_PHYSICAL
;
248 (void) getbsize(¬used
, &blocksize
);
253 if ((fts
= fts_open(argv
, ftsoptions
, NULL
)) == NULL
)
256 while ((p
= fts_read(fts
)) != NULL
) {
257 switch (p
->fts_info
) {
258 case FTS_D
: /* Ignore. */
260 fts_set(fts
, p
, FTS_SKIP
);
266 ftsparnum
= (off_t
*)&p
->fts_parent
->fts_number
;
267 ftsnum
= (off_t
*)&p
->fts_number
;
268 if (p
->fts_statp
->st_size
< TWO_TB
) {
269 ftsparnum
[0] += ftsnum
[0] += p
->fts_statp
->st_blocks
;
271 ftsparnum
[0] += ftsnum
[0] += howmany(p
->fts_statp
->st_size
, 512LL);
274 if (p
->fts_level
<= depth
) {
276 (void) prthumanval(howmany(*ftsnum
, blocksize
));
277 (void) printf("\t%s\n", p
->fts_path
);
279 (void) printf("%lld\t%s\n",
280 howmany(*ftsnum
, blocksize
),
285 case FTS_DC
: /* Ignore. */
286 if (COMPAT_MODE("bin/du", "unix2003")) {
287 errx(1, "Can't follow symlink cycle from %s to %s", p
->fts_path
, p
->fts_cycle
->fts_path
);
290 case FTS_DNR
: /* Warn, continue. */
293 warnx("%s: %s", p
->fts_path
, strerror(p
->fts_errno
));
297 if (COMPAT_MODE("bin/du", "unix2003")) {
299 int rc
= stat(p
->fts_path
, &sb
);
300 if (rc
< 0 && errno
== ELOOP
) {
301 errx(1, "Too many symlinks at %s", p
->fts_path
);
308 if (p
->fts_statp
->st_nlink
> 1 && linkchk(p
))
311 if (listall
|| p
->fts_level
== 0) {
313 if (p
->fts_statp
->st_size
< TWO_TB
) {
314 (void) prthumanval(howmany(p
->fts_statp
->st_blocks
,
317 (void) prthumanval(howmany(howmany(p
->fts_statp
->st_size
, 512LL),
320 (void) printf("\t%s\n", p
->fts_path
);
322 if (p
->fts_statp
->st_size
< TWO_TB
) {
323 (void) printf("%qd\t%s\n",
324 (long long)howmany(p
->fts_statp
->st_blocks
, blocksize
),
327 (void) printf("%qd\t%s\n",
328 (long long)howmany(howmany(p
->fts_statp
->st_size
, 512LL), blocksize
),
334 ftsparnum
= (off_t
*)&p
->fts_parent
->fts_number
;
335 if (p
->fts_statp
->st_size
< TWO_TB
) {
336 ftsparnum
[0] += p
->fts_statp
->st_blocks
;
338 ftsparnum
[0] += p
->fts_statp
->st_size
/ 512LL;
341 savednumber
= ((off_t
*)&p
->fts_parent
->fts_number
)[0];
349 (void) prthumanval(howmany(savednumber
, blocksize
));
350 (void) printf("\ttotal\n");
352 (void) printf("%lld\ttotal\n", howmany(savednumber
, blocksize
));
371 static int maxfiles
, nfiles
;
376 ino
= p
->fts_statp
->st_ino
;
377 dev
= p
->fts_statp
->st_dev
;
378 if ((start
= files
) != NULL
)
379 for (fp
= start
+ nfiles
- 1; fp
>= start
; --fp
)
380 if (ino
== fp
->inode
&& dev
== fp
->dev
) {
384 if (nfiles
== maxfiles
&& (files
= realloc((char *)files
,
385 (u_int
)(sizeof(ID
) * (maxfiles
+= 128)))) == NULL
)
386 errx(1, "can't allocate memory");
387 files
[nfiles
].inode
= ino
;
388 files
[nfiles
].dev
= dev
;
394 * Output in "human-readable" format. Uses 3 digits max and puts
395 * unit suffixes at the end. Makes output compact and easy to read,
396 * especially on huge disks.
400 unit_adjust(double *val
)
404 unsigned int unit_sz
;
408 unit_sz
= abval
? ilogb(abval
) / 10 : 0;
410 if (unit_sz
>= UNIT_MAX
) {
413 unit
= unitp
[unit_sz
];
414 *val
/= (double)valp
[unit_sz
];
421 prthumanval(double bytes
)
426 unit
= unit_adjust(&bytes
);
431 (void)printf("%3.0f%c", bytes
, "BKMGTPE"[unit
]);
433 (void)printf("%3.1f%c", bytes
, "BKMGTPE"[unit
]);
439 (void)fprintf(stderr
,
440 "usage: du [-H | -L | -P] [-a | -s | -d depth] [-c] [-h | -k] [-x] [-I mask] [file ...]\n");
445 ignoreadd(const char *mask
)
447 struct ignentry
*ign
;
449 ign
= calloc(1, sizeof(*ign
));
451 errx(1, "cannot allocate memory");
452 ign
->mask
= strdup(mask
);
453 if (ign
->mask
== NULL
)
454 errx(1, "cannot allocate memory");
455 SLIST_INSERT_HEAD(&ignores
, ign
, next
);
461 struct ignentry
*ign
;
463 while (!SLIST_EMPTY(&ignores
)) {
464 ign
= SLIST_FIRST(&ignores
);
465 SLIST_REMOVE_HEAD(&ignores
, next
);
474 struct ignentry
*ign
;
476 if (S_ISDIR(ent
->fts_statp
->st_mode
) && !strcmp("fd", ent
->fts_name
)) {
478 int rc
= statfs(ent
->fts_accpath
, &sfsb
);
479 if (rc
>= 0 && !strcmp("fdesc", sfsb
.f_fstypename
)) {
480 /* Don't cd into /dev/fd/N since one of those is likely to be
481 the cwd as of the start of du which causes all manner of
482 unpleasant surprises */
486 SLIST_FOREACH(ign
, &ignores
, next
)
487 if (fnmatch(ign
->mask
, ent
->fts_name
, 0) != FNM_NOMATCH
)