]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - lib/libc/gen/getvfsbyname.3
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / lib / libc / gen / getvfsbyname.3
1 .\" Copyright (c) 1995
2 .\"     The Regents of the University of California.  All rights reserved.
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
6 .\" are met:
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\"    notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\"    notice, this list of conditions and the following disclaimer in the
11 .\"    documentation and/or other materials provided with the distribution.
12 .\" 4. Neither the name of the University nor the names of its contributors
13 .\"    may be used to endorse or promote products derived from this software
14 .\"    without specific prior written permission.
15 .\"
16 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
17 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
20 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 .\" SUCH DAMAGE.
27 .\"
28 .\"     @(#)kvm_getvfsbyname.3  8.3 (Berkeley) 5/4/95
29 .\" $FreeBSD$
30 .\"
31 .Dd April 5, 2007
32 .Dt GETVFSBYNAME 3
33 .Os
34 .Sh NAME
35 .Nm getvfsbyname
36 .Nd get information about a file system
37 .Sh LIBRARY
38 .Lb libc
39 .Sh SYNOPSIS
40 .In sys/param.h
41 .In sys/mount.h
42 .Ft int
43 .Fn getvfsbyname "const char *name" "struct xvfsconf *vfc"
44 .Sh DESCRIPTION
45 The
46 .Fn getvfsbyname
47 function provides access to information about a
48 file system module that is configured in the kernel.
49 If successful,
50 the requested file system
51 .Fa xvfsconf
52 is returned in the location pointed to by
53 .Fa vfc .
54 The fields in a
55 .Dq Li struct xvfsconf
56 are defined as follows:
57 .Pp
58 .Bl -tag -compact -width vfc_refcount
59 .It vfc_name
60 the name of the file system
61 .It vfc_typenum
62 the file system type number assigned by the kernel
63 .It vfc_refcount
64 the number of active mount points using the file system
65 .It vfc_flags
66 flag bits, as described below
67 .El
68 .Pp
69 The flags are defined as follows:
70 .Pp
71 .Bl -tag -width VFCF_DELEGADMIN -compact
72 .It Dv VFCF_STATIC
73 statically compiled into kernel
74 .It Dv VFCF_NETWORK
75 may get data over the network
76 .It Dv VFCF_READONLY
77 writes are not implemented
78 .It Dv VFCF_SYNTHETIC
79 data does not represent real files
80 .It Dv VFCF_LOOPBACK
81 aliases some other mounted FS
82 .It Dv VFCF_UNICODE
83 stores file names as Unicode
84 .It Dv VFCF_JAIL
85 can be mounted from within a jail if
86 .Va security.jail.mount_allowed
87 sysctl is set to
88 .Dv 1
89 .It Dv VFCF_DELEGADMIN
90 supports delegated administration if
91 .Va vfs.usermount
92 sysctl is set to
93 .Dv 1
94 .El
95 .Sh RETURN VALUES
96 .Rv -std getvfsbyname
97 .Sh ERRORS
98 The following errors may be reported:
99 .Bl -tag -width Er
100 .It Bq Er EFAULT
101 The
102 .Fa vfc
103 argument
104 points to an invalid address.
105 .It Bq Er ENOENT
106 The
107 .Fa name
108 argument
109 specifies a file system that is unknown or not configured in the kernel.
110 .El
111 .Sh SEE ALSO
112 .Xr jail 2 ,
113 .Xr mount 2 ,
114 .Xr sysctl 3 ,
115 .Xr jail 8 ,
116 .Xr mount 8 ,
117 .Xr sysctl 8
118 .Sh HISTORY
119 A variant of the
120 .Fn getvfsbyname
121 function first appeared in
122 .Fx 2.0 .