No empty .Rs/.Re
[netbsd-mini2440.git] / share / man / man9 / vfsops.9
blob61f1b33fb3126a325d68be09f3ff5dc53fbaef3b
1 .\"     $NetBSD: vfsops.9,v 1.41 2009/03/17 00:10:37 joerg Exp $
2 .\"
3 .\" Copyright (c) 2001 The NetBSD Foundation, Inc.
4 .\" All rights reserved.
5 .\"
6 .\" This code is derived from software contributed to The NetBSD Foundation
7 .\" by Gregory McGarry.
8 .\"
9 .\" Redistribution and use in source and binary forms, with or without
10 .\" modification, are permitted provided that the following conditions
11 .\" are met:
12 .\" 1. Redistributions of source code must retain the above copyright
13 .\"    notice, this list of conditions and the following disclaimer.
14 .\" 2. Redistributions in binary form must reproduce the above copyright
15 .\"    notice, this list of conditions and the following disclaimer in the
16 .\"    documentation and/or other materials provided with the distribution.
17 .\"
18 .\" THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
19 .\" ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
20 .\" TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
21 .\" PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
22 .\" BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23 .\" CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24 .\" SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25 .\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26 .\" CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27 .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28 .\" POSSIBILITY OF SUCH DAMAGE.
29 .\"
30 .Dd April 22, 2009
31 .Dt VFSOPS 9
32 .Os
33 .Sh NAME
34 .Nm vfsops ,
35 .Nm VFS_MOUNT ,
36 .Nm VFS_START ,
37 .Nm VFS_UNMOUNT ,
38 .Nm VFS_ROOT ,
39 .Nm VFS_QUOTACTL ,
40 .Nm VFS_STATVFS ,
41 .Nm VFS_SYNC ,
42 .Nm VFS_VGET ,
43 .Nm VFS_FHTOVP ,
44 .Nm VFS_VPTOFH ,
45 .Nm VFS_SNAPSHOT ,
46 .Nm VFS_SUSPENDCTL
47 .Nd kernel file system interface
48 .Sh SYNOPSIS
49 .In sys/param.h
50 .In sys/mount.h
51 .In sys/vnode.h
52 .Ft int
53 .Fo VFS_MOUNT
54 .Fa "struct mount *mp" "const char *path" "void *data" "size_t *dlen"
55 .Fc
56 .Ft int
57 .Fn VFS_START "struct mount *mp" "int flags"
58 .Ft int
59 .Fn VFS_UNMOUNT "struct mount *mp" "int mntflags"
60 .Ft int
61 .Fn VFS_ROOT "struct mount *mp" "struct vnode **vpp"
62 .Ft int
63 .Fn VFS_QUOTACTL "struct mount *mp" "int cmds" "uid_t uid" "void *arg"
64 .Ft int
65 .Fn VFS_STATVFS "struct mount *mp" "struct statvfs *sbp"
66 .Ft int
67 .Fn VFS_SYNC "struct mount *mp" "int waitfor" "kauth_cred_t cred"
68 .Ft int
69 .Fn VFS_VGET "struct mount *mp" "ino_t ino" "struct vnode **vpp"
70 .Ft int
71 .Fn VFS_FHTOVP "struct mount *mp" "struct fid *fhp" "struct vnode **vpp"
72 .Ft int
73 .Fn VFS_VPTOFH "struct vnode *vp" "struct fid *fhp" "size_t *fh_size"
74 .Ft int
75 .Fn VFS_SNAPSHOT "struct mount *mp" "struct vnode *vp" "struct timespec *ts"
76 .Ft int
77 .Fn VFS_SUSPENDCTL "struct mount *mp" "int cmd"
78 .Sh DESCRIPTION
79 In a similar fashion to the
80 .Xr vnode 9
81 interface, all operations that are done on a file system are conducted
82 through a single interface that allows the system to carry out
83 operations on a file system without knowing its construction or type.
84 .Pp
85 All supported file systems in the kernel have an entry in the
86 .Va vfs_list_initial
87 table.
88 This table is generated by
89 .Xr config 1
90 and is a
91 .Dv NULL Ns No -terminated
92 list of
93 .Vt vfsops
94 structures.
95 The vfsops structure describes the operations that can be done to a
96 specific file system type.
97 The following table lists the elements of the vfsops vector, the
98 corresponding invocation macro, and a description of the element.
99 .Pp
100 .Bl -column "int (*vfs_suspendctl)()" "VFS_SUSPENDCTL" -compact
101 .It Sy Vector element Ta Sy Macro Ta Sy Description
103 .It int (*vfs_mount)() \
104 Ta Dv VFS_MOUNT \
105 Ta Mount a file system
107 .It int (*vfs_start)() \
108 Ta Dv VFS_START \
109 Ta Make operational
111 .It int (*vfs_unmount)() \
112 Ta Dv VFS_UNMOUNT \
113 Ta Unmount a file system
115 .It int (*vfs_root)() \
116 Ta Dv VFS_ROOT \
117 Ta Get the file system root vnode
119 .It int (*vfs_quotactl)() \
120 Ta Dv VFS_QUOTACTL \
121 Ta Query/modify space quotas
123 .It int (*vfs_statvfs)() \
124 Ta Dv VFS_STATVFS \
125 Ta Get file system statistics
127 .It int (*vfs_sync)() \
128 Ta Dv VFS_SYNC \
129 Ta Flush file system buffers
131 .It int (*vfs_vget)() \
132 Ta Dv VFS_VGET \
133 Ta Get vnode from file id
135 .It int (*vfs_fhtovp)() \
136 Ta Dv VFS_FHTOVP \
137 Ta NFS file handle to vnode lookup
139 .It int (*vfs_vptofh)() \
140 Ta Dv VFS_VPTOFH \
141 Ta Vnode to NFS file handle lookup
143 .It void (*vfs_init)() \
144 Ta \- \
145 Ta Initialize file system
147 .It void (*vfs_reinit)() \
148 Ta \- \
149 Ta Reinitialize file system
151 .It void (*vfs_done)() \
152 Ta \- \
153 Ta Cleanup unmounted file system
155 .It int (*vfs_mountroot)() \
156 Ta \- \
157 Ta Mount the root file system
159 .It int (*vfs_snapshot)() \
160 Ta Dv VFS_SNAPSHOT \
161 Ta Take a snapshot
163 .It int (*vfs_suspendctl)() \
164 Ta Dv VFS_SUSPENDCTL \
165 Ta Suspend or resume
168 Some additional non-function members of the vfsops structure are the
169 file system name
170 .Fa vfs_name
171 and a reference count
172 .Fa vfs_refcount .
173 It is not mandatory for a file system type to support a particular
174 operation, but it must assign each member function pointer to a
175 suitable function to do the minimum required of it.
176 In most cases, such functions either do nothing or return an error
177 value to the effect that it is not supported.
178 .Fa vfs_reinit ,
179 .Fa vfs_mountroot ,
180 .Fa vfs_fhtovp ,
182 .Fa vfs_vptofh
185 .Dv NULL .
187 At system boot, each file system with an entry in
188 .Va vfs_list_initial
189 is established and initialized.
190 Each initialized file system is recorded by the kernel in the list
191 .Va vfs_list
192 and the file system specific initialization function
193 .Fa vfs_init
194 in its vfsops vector is invoked.
195 When the file system is no longer needed
196 .Fa vfs_done
197 is invoked to run file system specific cleanups and the file system is
198 removed from the kernel list.
200 At system boot, the root file system is mounted by invoking the file
201 system type specific
202 .Fa vfs_mountroot
203 function in the vfsops vector.
204 All file systems that can be mounted as a root file system must define
205 this function.
206 It is responsible for initializing to list of mount structures for
207 all future mounted file systems.
209 Kernel state which affects a specific file system type can be
210 queried and modified using the
211 .Xr sysctl 8
212 interface.
213 .Sh FUNCTIONS
214 .Bl -tag -width compact
215 .It Fn VFS_MOUNT "mp" "path" "data" "dlen"
216 Mount a file system specified by the mount structure
217 .Fa mp
218 on the mount point described by
219 .Fa path .
220 The argument
221 .Fa data
222 contains file system type specific data, while the argument
223 .Fa dlen
224 points to a location specifying the length of the data.
226 .Fn VFS_MOUNT
227 initializes the mount structure for the mounted file system.
228 This structure records mount-specific information for the file system and
229 records the list of vnodes associated with the file system.
230 This function is invoked both to mount new file systems and to change the
231 attributes of an existing file system.
232 If the flag
233 .Dv MNT_UPDATE
234 is set in
235 .Va mp-\*[Gt]mnt_flag ,
236 the file system should update its state.
237 This can be used, for instance, to convert a read-only file system to
238 read-write.
239 The current attributes for a mounted file system can be fetched by
240 specifying
241 .Dv MNT_GETARGS .
242 If neither
243 .Dv MNT_UPDATE
245 .Dv MNT_GETARGS
246 are specified, a new file system will attempted to be mounted.
247 .It Fn VFS_START "mp" "flags"
248 Make the file system specified by the mount structure
249 .Fa mp
250 operational.
251 The argument
252 .Fa flags
253 is a set of flags for controlling the operation of
254 .Fn VFS_START .
255 This function is invoked after
256 .Fn VFS_MOUNT
257 and before the first access to the file system.
258 .It Fn VFS_UNMOUNT "mp" "mntflags"
259 Unmount a file system specified by the mount structure
260 .Fa mp .
261 .Fn VFS_UNMOUNT
262 performs any file system type specific operations required before the
263 file system is unmounted, such are flushing buffers.
265 .Dv MNT_FORCE
266 is specified in the flags
267 .Fa mntflags
268 then open files are forcibly closed.
269 The function also deallocates space associated with data structure
270 that were allocated for the file system when it was mounted.
271 .It Fn VFS_ROOT "mp" "vpp"
272 Get the root vnode of the file system specified by the mount
273 structure
274 .Fa mp .
275 The vnode is returned in the address given by
276 .Fa vpp .
277 This function is used by the pathname translation algorithms when a
278 vnode that has been covered by a mounted file system is encountered.
279 While resolving the pathname, the pathname translation algorithm will
280 have to go through the directory tree in the file system associated
281 with that mount point and therefore requires the root vnode of the
282 file system.
283 .It Fn VFS_QUOTACTL "mp" "cmds" "uid" "arg"
284 Query/modify user space quotas for the file system specified by the
285 mount structure
286 .Fa mp .
287 The argument specifies the control command to perform.
288 The userid is specified in
289 .Fa id
291 .Fa arg
292 allows command-specific data to be returned to the system call
293 interface.
294 .Fn VFS_QUOTACTL
295 is the file system type specific implementation of the
296 .Xr quotactl 2
297 system call.
298 .It Fn VFS_STATVFS "mp" "sbp"
299 Get file system statistics for the file system specified by the mount
300 structure
301 .Fa mp .
302 A statvfs structure filled with the statistics is returned in
303 .Fa sbp .
304 .Fn VFS_STATVFS
305 is the file system type specific implementation of the
306 .Xr statvfs 2
308 .Xr fstatvfs 2
309 system calls.
310 .It Fn VFS_SYNC "mp" "waitfor" "cred"
311 Flush file system I/O buffers for the file system specified by the mount
312 structure
313 .Fa mp .
315 .Fa waitfor
316 argument indicates whether a partial flush or complete flush should be
317 performed.
318 The argument
319 .Fa cred
320 specifies the calling credentials.
321 .Fn VFS_SYNC
322 does not provide any return value since the operation can never fail.
323 .It Fn VFS_VGET "mp" "ino" "vpp"
324 Get vnode for a file system type specific file id
325 .Fa ino
326 for the file system specified by the mount structure
327 .Fa mp .
328 The vnode is returned in the address specified
329 .Fa vpp .
330 The function is optional for file systems which have a unique id
331 number for every file in the file system.
332 It is used internally by the UFS file system and also by the NFSv3
333 server to implement the READDIRPLUS NFS call.
334 If the file system does not support this function, it should return
335 .Er EOPNOTSUPP .
336 .It Fn VFS_FHTOVP "mp" "fhp" "vpp"
337 Get the vnode for the file handle
338 .Fa fhp
339 in the file system specified by the mount structure
340 .Fa mp .
341 The locked vnode is returned in
342 .Fa vpp .
344 When exporting, the call to
345 .Fn VFS_FHTOVP
346 should follow a call to
347 .Fn netexport_check ,
348 which checks if the file is accessible to the client.
350 If file handles are not supported by the file system, this function
351 must return
352 .Er EOPNOTSUPP .
353 .It Fn VFS_VPTOFH "vp" "fhp" "fh_size"
354 Get a file handle for the vnode specified by
355 .Fa vp .
356 The file handle is returned in
357 .Fa fhp .
358 The contents of the file handle are defined by the file system and are
359 not examined by any other subsystems.
360 It should contain enough information to uniquely identify a file within
361 the file system as well as noticing when a file has been removed and
362 the file system resources have been recycled for a new file.
364 The parameter
365 .Fa fh_size
366 points to the container size for the file handle.
367 This parameter should be updated to the size of the finished file handle.
368 Note that it is legal to call this function with
369 .Fa fhp
370 set to
371 .Dv NULL
372 in case
373 .Fa fh_size
374 is zero.
375 In case
376 .Fa fh_size
377 indicates a storage space too small, the storage space required for
378 the file handle corresponding to
379 .Fa vp
380 should be filled in and
381 .Er E2BIG
382 should be returned.
384 If file handles are not supported by the file system, this function
385 must return
386 .Er EOPNOTSUPP .
387 .It Fn VFS_SNAPSHOT "mp" "vp" "ts"
388 Take a snapshot of the file system specified by the mount structure
389 .Fa mp
390 and make it accessible through the locked vnode
391 .Fa vp .
393 .Fa ts
394 is not
395 .Dv NULL
396 it will receive the time this snapshot was taken.
397 If the file system does not support this function, it should return
398 .Er EOPNOTSUPP .
399 .It Fn VFS_SUSPENDCTL "mp" "cmd"
400 Suspend or resume all operations on this file system.
401 .Fa cmd
402 is either
403 .Dv SUSPEND_SUSPEND
404 to suspend or
405 .Dv SUSPEND_RESUME
406 to resume operations.
407 If the file system does not support this function, it should return
408 .Er EOPNOTSUPP .
410 .Sh CODE REFERENCES
411 This section describes places within the
413 source tree where actual code implementing or using the vfs
414 operations can be found.
415 All pathnames are relative to
416 .Pa /usr/src .
418 The vfs operations are implemented within the files
419 .Pa sys/kern/vfs_subr.c
421 .Pa sys/kern/vfs_init.c .
422 .Sh SEE ALSO
423 .Xr intro 9 ,
424 .Xr namei 9 ,
425 .Xr vfs 9 ,
426 .Xr vfssubr 9 ,
427 .Xr vnode 9 ,
428 .Xr vnodeops 9
429 .Sh HISTORY
430 The vfs operations vector, its functions and the corresponding macros
431 appeared in
432 .Bx 4.3 .