1994-09-22 01:25:57 +00:00
|
|
|
/*
|
1997-07-23 06:48:01 +00:00
|
|
|
* lsvfs - list loaded VFSes
|
1994-09-22 01:25:57 +00:00
|
|
|
* Garrett A. Wollman, September 1994
|
|
|
|
* This file is in the public domain.
|
1995-03-16 18:37:47 +00:00
|
|
|
*
|
1999-08-28 01:08:13 +00:00
|
|
|
* $FreeBSD$
|
1994-09-22 01:25:57 +00:00
|
|
|
*/
|
|
|
|
|
1998-01-17 16:24:27 +00:00
|
|
|
#define _NEW_VFSCONF
|
|
|
|
|
1994-09-22 01:25:57 +00:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/mount.h>
|
1997-03-03 17:21:57 +00:00
|
|
|
|
1994-09-22 01:25:57 +00:00
|
|
|
#include <err.h>
|
1997-03-03 17:21:57 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
1994-09-22 01:25:57 +00:00
|
|
|
|
1998-08-29 13:53:22 +00:00
|
|
|
#define FMT "%-32.32s %5d %s\n"
|
|
|
|
#define HDRFMT "%-32.32s %5.5s %s\n"
|
|
|
|
#define DASHES "-------------------------------- ----- ---------------\n"
|
1995-03-16 18:37:47 +00:00
|
|
|
|
|
|
|
static const char *fmt_flags(int);
|
1994-09-22 01:25:57 +00:00
|
|
|
|
|
|
|
int
|
|
|
|
main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
int rv = 0;
|
1998-01-17 16:24:27 +00:00
|
|
|
struct vfsconf vfc;
|
|
|
|
struct ovfsconf *ovfcp;
|
1994-09-22 01:25:57 +00:00
|
|
|
argc--, argv++;
|
|
|
|
|
|
|
|
setvfsent(1);
|
|
|
|
|
1998-08-29 13:53:22 +00:00
|
|
|
printf(HDRFMT, "Filesystem", "Refs", "Flags");
|
1994-09-22 01:25:57 +00:00
|
|
|
fputs(DASHES, stdout);
|
|
|
|
|
|
|
|
if(argc) {
|
|
|
|
for(; argc; argc--, argv++) {
|
1999-06-03 09:03:50 +00:00
|
|
|
if (getvfsbyname(*argv, &vfc) == 0) {
|
1998-08-29 13:53:22 +00:00
|
|
|
printf(FMT, vfc.vfc_name, vfc.vfc_refcount, fmt_flags(vfc.vfc_flags));
|
1994-09-22 01:25:57 +00:00
|
|
|
} else {
|
1994-09-22 20:21:59 +00:00
|
|
|
warnx("VFS %s unknown or not loaded", *argv);
|
1994-09-22 01:25:57 +00:00
|
|
|
rv++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
2001-06-24 18:56:00 +00:00
|
|
|
while ((ovfcp = getvfsent()) != NULL) {
|
1998-08-29 13:53:22 +00:00
|
|
|
printf(FMT, ovfcp->vfc_name, ovfcp->vfc_refcount,
|
1998-01-17 16:24:27 +00:00
|
|
|
fmt_flags(ovfcp->vfc_flags));
|
1994-09-22 01:25:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
endvfsent();
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
1995-03-16 18:37:47 +00:00
|
|
|
static const char *
|
|
|
|
fmt_flags(int flags)
|
|
|
|
{
|
1995-03-16 20:29:11 +00:00
|
|
|
/*
|
|
|
|
* NB: if you add new flags, don't forget to add them here vvvvvv too.
|
|
|
|
*/
|
1997-03-03 17:21:57 +00:00
|
|
|
static char buf[sizeof
|
|
|
|
"static, network, read-only, synthetic, loopback, unicode"];
|
1995-03-16 20:29:11 +00:00
|
|
|
int comma = 0;
|
|
|
|
|
|
|
|
buf[0] = '\0';
|
|
|
|
|
|
|
|
if(flags & VFCF_STATIC) {
|
|
|
|
if(comma++) strcat(buf, ", ");
|
|
|
|
strcat(buf, "static");
|
|
|
|
}
|
|
|
|
|
|
|
|
if(flags & VFCF_NETWORK) {
|
|
|
|
if(comma++) strcat(buf, ", ");
|
|
|
|
strcat(buf, "network");
|
|
|
|
}
|
|
|
|
|
|
|
|
if(flags & VFCF_READONLY) {
|
|
|
|
if(comma++) strcat(buf, ", ");
|
|
|
|
strcat(buf, "read-only");
|
|
|
|
}
|
|
|
|
|
|
|
|
if(flags & VFCF_SYNTHETIC) {
|
|
|
|
if(comma++) strcat(buf, ", ");
|
|
|
|
strcat(buf, "synthetic");
|
|
|
|
}
|
|
|
|
|
|
|
|
if(flags & VFCF_LOOPBACK) {
|
|
|
|
if(comma++) strcat(buf, ", ");
|
|
|
|
strcat(buf, "loopback");
|
|
|
|
}
|
|
|
|
|
1997-03-03 17:21:57 +00:00
|
|
|
if(flags & VFCF_UNICODE) {
|
|
|
|
if(comma++) strcat(buf, ", ");
|
|
|
|
strcat(buf, "unicode");
|
|
|
|
}
|
|
|
|
|
1995-03-16 20:29:11 +00:00
|
|
|
return buf;
|
1995-03-16 18:37:47 +00:00
|
|
|
}
|