]>
git.saurik.com Git - apple/file_cmds.git/blob - df/df.c
dda262ccf9c791d635062bfe0400c117919c87cf
2 * Copyright (c) 1980, 1990, 1993, 1994
3 * The Regents of the University of California. All rights reserved.
4 * (c) UNIX System Laboratories, Inc.
5 * All or some portions of this file are derived from material licensed
6 * to the University of California by American Telephone and Telegraph
7 * Co. or Unix System Laboratories, Inc. and are reproduced herein with
8 * the permission of UNIX System Laboratories, Inc.
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 3. All advertising materials mentioning features or use of this software
19 * must display the following acknowledgement:
20 * This product includes software developed by the University of
21 * California, Berkeley and its contributors.
22 * 4. Neither the name of the University nor the names of its contributors
23 * may be used to endorse or promote products derived from this software
24 * without specific prior written permission.
26 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
27 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
30 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
40 static const char copyright
[] =
41 "@(#) Copyright (c) 1980, 1990, 1993, 1994\n\
42 The Regents of the University of California. All rights reserved.\n";
47 static char sccsid
[] = "@(#)df.c 8.9 (Berkeley) 5/8/95";
49 static const char rcsid
[] =
50 "$FreeBSD: src/bin/df/df.c,v 1.23.2.9 2002/07/01 00:14:24 iedowse Exp $";
56 #include <sys/types.h>
57 typedef int32_t ufs_daddr_t
;
60 #include <sys/cdefs.h>
61 #include <sys/param.h>
63 #include <sys/mount.h>
64 #include <sys/sysctl.h>
65 #include <ufs/ufs/ufsmount.h>
66 #include <ufs/ffs/fs.h>
79 #include "get_compat.h"
81 #define COMPAT_MODE(func, mode) 1
87 #define KILO_SZ(n) (n)
88 #define MEGA_SZ(n) ((n) * (n))
89 #define GIGA_SZ(n) ((n) * (n) * (n))
90 #define TERA_SZ(n) ((n) * (n) * (n) * (n))
91 #define PETA_SZ(n) ((n) * (n) * (n) * (n) * (n))
93 #define KILO_2_SZ (KILO_SZ(1024ULL))
94 #define MEGA_2_SZ (MEGA_SZ(1024ULL))
95 #define GIGA_2_SZ (GIGA_SZ(1024ULL))
96 #define TERA_2_SZ (TERA_SZ(1024ULL))
97 #define PETA_2_SZ (PETA_SZ(1024ULL))
99 #define KILO_SI_SZ (KILO_SZ(1000ULL))
100 #define MEGA_SI_SZ (MEGA_SZ(1000ULL))
101 #define GIGA_SI_SZ (GIGA_SZ(1000ULL))
102 #define TERA_SI_SZ (TERA_SZ(1000ULL))
103 #define PETA_SI_SZ (PETA_SZ(1000ULL))
105 /* Maximum widths of various fields. */
115 unsigned long long vals_si
[] = {1, KILO_SI_SZ
, MEGA_SI_SZ
, GIGA_SI_SZ
, TERA_SI_SZ
, PETA_SI_SZ
};
116 unsigned long long vals_base2
[] = {1, KILO_2_SZ
, MEGA_2_SZ
, GIGA_2_SZ
, TERA_2_SZ
, PETA_2_SZ
};
117 unsigned long long *valp
;
119 typedef enum { NONE
, KILO
, MEGA
, GIGA
, TERA
, PETA
, UNIT_MAX
} unit_t
;
121 unit_t unitp
[] = { NONE
, KILO
, MEGA
, GIGA
, TERA
, PETA
};
123 int bread(off_t
, void *, int);
124 int checkvfsname(const char *, char **);
125 char *getmntpt(char *);
126 int longwidth(long long);
127 char *makenetvfslist(void);
128 char **makevfslist(char *);
129 void prthuman(struct statfs
*, long);
130 void prthumanval(double);
131 void prtstat(struct statfs
*, struct maxwidths
*);
132 long regetmntinfo(struct statfs
**, long, char **);
133 int ufs_df(char *, struct maxwidths
*);
134 unit_t
unit_adjust(double *);
135 void update_maxwidths(struct maxwidths
*, struct statfs
*);
138 int aflag
= 0, hflag
, iflag
, nflag
;
139 struct ufs_args mdev
;
141 static __inline
int imax(int a
, int b
)
143 return (a
> b
? a
: b
);
147 main(int argc
, char *argv
[])
150 struct statfs statfsbuf
, *mntbuf
;
151 struct maxwidths maxwidths
;
153 char *mntpath
, *mntpt
, **vfslist
;
155 int ch
, i
, rv
, tflag
= 0, kludge_tflag
= 0;
156 const char *options
= "abgHhiklmnPt:T:";
157 if (COMPAT_MODE("bin/df", "unix2003")) {
158 /* Unix2003 requires -t be "include total capicity". which df
159 already does, but it conflits with the old -t so we need to
160 *not* expect a string after -t (we provide -T in both cases
161 to cover the old use of -t) */
162 options
= "abgHhiklmnPtT:";
168 while ((ch
= getopt(argc
, argv
, options
)) != -1)
176 putenv("BLOCKSIZE=512");
180 putenv("BLOCKSIZE=1g");
195 putenv("BLOCKSIZE=1k");
200 errx(1, "-l and -T are mutually exclusive.");
203 vfslist
= makevfslist(makenetvfslist());
206 putenv("BLOCKSIZE=1m");
213 /* Unix2003 uses -t for something we do by default */
214 if (COMPAT_MODE("bin/df", "unix2003")) {
219 if (vfslist
!= NULL
) {
221 errx(1, "only one -%c option may be specified", ch
);
223 errx(1, "-l and -%c are mutually exclusive.", ch
);
227 vfslist
= makevfslist(optarg
);
236 /* If we are in unix2003 mode, have seen a -t but no -T and the first
237 non switch arg isn't a file, let's pretend they used -T on it.
238 This makes the Lexmark printer installer happy (PR-3918471) */
239 if (tflag
== 0 && kludge_tflag
&& *argv
&& stat(*argv
, &stbuf
) < 0
240 && errno
== ENOENT
) {
243 vfslist
= makevfslist(fstype
);
246 mntsize
= getmntinfo(&mntbuf
, MNT_NOWAIT
);
247 bzero(&maxwidths
, sizeof(maxwidths
));
248 for (i
= 0; i
< mntsize
; i
++)
249 update_maxwidths(&maxwidths
, &mntbuf
[i
]);
253 mntsize
= regetmntinfo(&mntbuf
, mntsize
, vfslist
);
254 bzero(&maxwidths
, sizeof(maxwidths
));
255 for (i
= 0; i
< mntsize
; i
++)
256 update_maxwidths(&maxwidths
, &mntbuf
[i
]);
257 for (i
= 0; i
< mntsize
; i
++) {
258 if (aflag
|| (mntbuf
[i
].f_flags
& MNT_IGNORE
) == 0)
259 prtstat(&mntbuf
[i
], &maxwidths
);
264 for (; *argv
; argv
++) {
265 if (stat(*argv
, &stbuf
) < 0) {
266 if ((mntpt
= getmntpt(*argv
)) == 0) {
271 } else if (S_ISCHR(stbuf
.st_mode
) || S_ISBLK(stbuf
.st_mode
)) {
272 if ((mntpt
= getmntpt(*argv
)) == 0) {
274 mntpath
= strdup("/tmp/df.XXXXXX");
275 if (mntpath
== NULL
) {
276 warn("strdup failed");
280 mntpt
= mkdtemp(mntpath
);
282 warn("mkdtemp(\"%s\") failed", mntpath
);
287 if (mount(fstype
, mntpt
, MNT_RDONLY
,
289 rv
= ufs_df(*argv
, &maxwidths
) || rv
;
293 } else if (statfs(mntpt
, &statfsbuf
) == 0) {
294 statfsbuf
.f_mntonname
[0] = '\0';
295 prtstat(&statfsbuf
, &maxwidths
);
300 (void)unmount(mntpt
, 0);
308 * Statfs does not take a `wait' flag, so we cannot
309 * implement nflag here.
311 if (statfs(mntpt
, &statfsbuf
) < 0) {
316 /* Check to make sure the arguments we've been
317 * given are satisfied. Return an error if we
318 * have been asked to list a mount point that does
319 * not match the other args we've been given (-l, -t, etc.)
321 if (checkvfsname(statfsbuf
.f_fstypename
, vfslist
)) {
326 bzero(&maxwidths
, sizeof(maxwidths
));
327 update_maxwidths(&maxwidths
, &statfsbuf
);
329 prtstat(&statfsbuf
, &maxwidths
);
338 struct statfs
*mntbuf
;
340 mntsize
= getmntinfo(&mntbuf
, MNT_NOWAIT
);
341 for (i
= 0; i
< mntsize
; i
++) {
342 if (!strcmp(mntbuf
[i
].f_mntfromname
, name
))
343 return (mntbuf
[i
].f_mntonname
);
349 * Make a pass over the filesystem info in ``mntbuf'' filtering out
350 * filesystem types not in vfslist and possibly re-stating to get
351 * current (not cached) info. Returns the new count of valid statfs bufs.
354 regetmntinfo(struct statfs
**mntbufp
, long mntsize
, char **vfslist
)
357 struct statfs
*mntbuf
;
360 return (nflag
? mntsize
: getmntinfo(mntbufp
, MNT_WAIT
));
363 for (j
= 0, i
= 0; i
< mntsize
; i
++) {
364 if (checkvfsname(mntbuf
[i
].f_fstypename
, vfslist
))
367 (void)statfs(mntbuf
[i
].f_mntonname
,&mntbuf
[j
]);
369 mntbuf
[j
] = mntbuf
[i
];
376 * Output in "human-readable" format. Uses 3 digits max and puts
377 * unit suffixes at the end. Makes output compact and easy to read,
378 * especially on huge disks.
382 unit_adjust(double *val
)
386 unsigned int unit_sz
;
390 unit_sz
= abval
? ilogb(abval
) / 10 : 0;
392 if (unit_sz
>= UNIT_MAX
) {
395 unit
= unitp
[unit_sz
];
396 *val
/= (double)valp
[unit_sz
];
403 prthuman(struct statfs
*sfsp
, long used
)
406 prthumanval((double)sfsp
->f_blocks
* (double)sfsp
->f_bsize
);
407 prthumanval((double)used
* (double)sfsp
->f_bsize
);
408 prthumanval((double)sfsp
->f_bavail
* (double)sfsp
->f_bsize
);
412 prthumanval(double bytes
)
416 unit
= unit_adjust(&bytes
);
421 (void)printf(" %5.0f%c", bytes
, "BKMGTPE"[unit
]);
423 (void)printf(" %5.1f%c", bytes
, "BKMGTPE"[unit
]);
427 * Convert statfs returned filesystem size into BLOCKSIZE units.
428 * Attempts to avoid overflow for large filesystems.
430 #define fsbtoblk(num, fsbs, bs) \
431 (((fsbs) != 0 && (fsbs) < (bs)) ? \
432 ((off_t)((unsigned)num)) / ((unsigned)(bs) / ((off_t)((unsigned)fsbs))) : ((off_t)((unsigned)num)) * ((off_t)((unsigned)fsbs)) / (bs))
435 * Print out status about a filesystem.
438 prtstat(struct statfs
*sfsp
, struct maxwidths
*mwp
)
440 static long blocksize
;
441 static int headerlen
, timesthrough
;
442 static const char *header
;
443 unsigned long used
, availblks
, inodes
;
445 if (++timesthrough
== 1) {
446 mwp
->mntfrom
= imax(mwp
->mntfrom
, strlen("Filesystem"));
449 mwp
->total
= mwp
->used
= mwp
->avail
= strlen(header
);
451 header
= getbsize(&headerlen
, &blocksize
);
452 mwp
->total
= imax(mwp
->total
, headerlen
);
454 mwp
->used
= imax(mwp
->used
, strlen("Used"));
455 mwp
->avail
= imax(mwp
->avail
, strlen("Avail"));
457 (void)printf("%-*s %-*s %*s %*s Capacity", mwp
->mntfrom
,
458 "Filesystem", mwp
->total
, header
, mwp
->used
, "Used",
459 mwp
->avail
, "Avail");
461 mwp
->iused
= imax(mwp
->iused
, strlen(" iused"));
462 mwp
->ifree
= imax(mwp
->ifree
, strlen("ifree"));
463 (void)printf(" %*s %*s %%iused", mwp
->iused
- 2,
464 "iused", mwp
->ifree
, "ifree");
466 (void)printf(" Mounted on\n");
469 (void)printf("%-*s", mwp
->mntfrom
, sfsp
->f_mntfromname
);
470 used
= (off_t
)((unsigned)sfsp
->f_blocks
) - (off_t
)((unsigned)sfsp
->f_bfree
);
471 availblks
= sfsp
->f_bavail
+ used
;
473 prthuman(sfsp
, used
);
475 (void)printf(" %*lld %*lld %*lld", mwp
->total
,
476 fsbtoblk(sfsp
->f_blocks
, sfsp
->f_bsize
, blocksize
),
477 mwp
->used
, fsbtoblk(used
, sfsp
->f_bsize
, blocksize
),
478 mwp
->avail
, fsbtoblk(sfsp
->f_bavail
, sfsp
->f_bsize
,
481 (void)printf(" %5.0f%%",
482 availblks
== 0 ? 100.0 : (double)used
/ (double)availblks
* 100.0);
484 inodes
= (unsigned)sfsp
->f_files
;
485 used
= inodes
- sfsp
->f_ffree
;
486 (void)printf(" %*lu %*lu %4.0f%% ", mwp
->iused
, used
,
487 mwp
->ifree
, (unsigned long)sfsp
->f_ffree
, inodes
== 0 ? 100.0 :
488 (double)used
/ (double)inodes
* 100.0);
491 (void)printf(" %s\n", sfsp
->f_mntonname
);
495 * Update the maximum field-width information in `mwp' based on
496 * the filesystem specified by `sfsp'.
499 update_maxwidths(struct maxwidths
*mwp
, struct statfs
*sfsp
)
501 static long blocksize
;
505 getbsize(&dummy
, &blocksize
);
507 mwp
->mntfrom
= imax(mwp
->mntfrom
, strlen(sfsp
->f_mntfromname
));
508 mwp
->total
= imax(mwp
->total
, longwidth(fsbtoblk(sfsp
->f_blocks
,
509 sfsp
->f_bsize
, blocksize
)));
510 mwp
->used
= imax(mwp
->used
, longwidth(fsbtoblk(sfsp
->f_blocks
-
511 sfsp
->f_bfree
, sfsp
->f_bsize
, blocksize
)));
512 mwp
->avail
= imax(mwp
->avail
, longwidth(fsbtoblk(sfsp
->f_bavail
,
513 sfsp
->f_bsize
, blocksize
)));
514 mwp
->iused
= imax(mwp
->iused
, longwidth((unsigned)(sfsp
->f_files
-
516 mwp
->ifree
= imax(mwp
->ifree
, longwidth((unsigned)(sfsp
->f_ffree
)));
519 /* Return the width in characters of the specified long. */
521 longwidth(long long val
)
526 /* Negative or zero values require one extra digit. */
540 * This code constitutes the pre-system call Berkeley df code for extracting
541 * information from filesystem superblocks.
548 #define sblock sb.iu_fs
553 ufs_df(char *file
, struct maxwidths
*mwp
)
555 struct statfs statfsbuf
;
563 if ((rfd
= open(file
, O_RDONLY
)) < 0) {
567 if (bread((off_t
)SBOFF
, &sblock
, SBSIZE
) == 0) {
573 strcpy(sfsp
->f_fstypename
, "ufs");
575 sfsp
->f_bsize
= sblock
.fs_fsize
;
576 sfsp
->f_iosize
= sblock
.fs_bsize
;
577 sfsp
->f_blocks
= sblock
.fs_dsize
;
578 sfsp
->f_bfree
= sblock
.fs_cstotal
.cs_nbfree
* sblock
.fs_frag
+
579 sblock
.fs_cstotal
.cs_nffree
;
580 sfsp
->f_bavail
= freespace(&sblock
, sblock
.fs_minfree
);
581 sfsp
->f_files
= sblock
.fs_ncg
* sblock
.fs_ipg
;
582 sfsp
->f_ffree
= sblock
.fs_cstotal
.cs_nifree
;
583 sfsp
->f_fsid
.val
[0] = 0;
584 sfsp
->f_fsid
.val
[1] = 0;
585 if ((mntpt
= getmntpt(file
)) == 0)
587 memmove(&sfsp
->f_mntonname
[0], mntpt
, (size_t)MNAMELEN
);
588 memmove(&sfsp
->f_mntfromname
[0], file
, (size_t)MNAMELEN
);
595 bread(off_t off
, void *buf
, int cnt
)
599 (void)lseek(rfd
, off
, SEEK_SET
);
600 if ((nr
= read(rfd
, buf
, (size_t)cnt
)) != (ssize_t
)cnt
) {
601 /* Probably a dismounted disk if errno == EIO. */
603 (void)fprintf(stderr
, "\ndf: %lld: %s\n",
604 (long long)off
, strerror(nr
> 0 ? EIO
: errno
));
614 char *t_flag
= COMPAT_MODE("bin/df", "unix2003") ? "[-t]" : "[-t type]";
615 (void)fprintf(stderr
,
616 "usage: df [-b | -H | -h | -k | -m | -P] [-ailn] [-T type] %s [file | filesystem ...]\n", t_flag
);
623 char *str
, *strptr
, **listptr
;
625 int mib
[3], maxvfsconf
, cnt
=0, i
;
627 struct ovfsconf
*ptr
;
629 int mib
[4], maxvfsconf
, cnt
=0, i
;
634 mib
[0] = CTL_VFS
; mib
[1] = VFS_GENERIC
; mib
[2] = VFS_MAXTYPENUM
;
635 miblen
=sizeof(maxvfsconf
);
636 if (sysctl(mib
, (unsigned int)(sizeof(mib
) / sizeof(mib
[0])),
637 &maxvfsconf
, &miblen
, NULL
, 0)) {
638 warnx("sysctl failed");
642 if ((listptr
= malloc(sizeof(char*) * maxvfsconf
)) == NULL
) {
643 warnx("malloc failed");
648 for (ptr
= getvfsent(); ptr
; ptr
= getvfsent())
649 if (ptr
->vfc_flags
& VFCF_NETWORK
) {
650 listptr
[cnt
++] = strdup(ptr
->vfc_name
);
651 if (listptr
[cnt
-1] == NULL
) {
652 warnx("malloc failed");
657 miblen
= sizeof (struct vfsconf
);
659 for (i
= 0; i
< maxvfsconf
; i
++) {
661 if (sysctl(mib
, 4, &vfc
, &miblen
, NULL
, 0) == 0) {
662 if (!(vfc
.vfc_flags
& MNT_LOCAL
)) {
663 listptr
[cnt
++] = strdup(vfc
.vfc_name
);
664 if (listptr
[cnt
-1] == NULL
) {
665 warnx("malloc failed");
674 (str
= malloc(sizeof(char) * (32 * cnt
+ cnt
+ 2))) == NULL
) {
676 warnx("malloc failed");
681 *str
= 'n'; *(str
+ 1) = 'o';
682 for (i
= 0, strptr
= str
+ 2; i
< cnt
; i
++, strptr
++) {
683 strncpy(strptr
, listptr
[i
], 32);
684 strptr
+= strlen(listptr
[i
]);