2 * Copyright (c) 2003,2004 The DragonFly Project. All rights reserved.
4 * This code is derived from software contributed to The DragonFly Project
5 * by Matthew Dillon <dillon@backplane.com>
7 * Redistribution and use in source and binary forms, with or without
8 * 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
15 * the documentation and/or other materials provided with the
17 * 3. Neither the name of The DragonFly Project nor the names of its
18 * contributors may be used to endorse or promote products derived
19 * from this software without specific, prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
24 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
25 * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
26 * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
27 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
28 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
29 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
30 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
31 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 * Copyright (c) 1989, 1993
36 * The Regents of the University of California. All rights reserved.
38 * This code is derived from software contributed
39 * to Berkeley by John Heidemann of the UCLA Ficus project.
41 * Source: * @(#)i405_init.c 2.10 92/04/27 UCLA Ficus project
43 * Redistribution and use in source and binary forms, with or without
44 * modification, are permitted provided that the following conditions
46 * 1. Redistributions of source code must retain the above copyright
47 * notice, this list of conditions and the following disclaimer.
48 * 2. Redistributions in binary form must reproduce the above copyright
49 * notice, this list of conditions and the following disclaimer in the
50 * documentation and/or other materials provided with the distribution.
51 * 3. All advertising materials mentioning features or use of this software
52 * must display the following acknowledgement:
53 * This product includes software developed by the University of
54 * California, Berkeley and its contributors.
55 * 4. Neither the name of the University nor the names of its contributors
56 * may be used to endorse or promote products derived from this software
57 * without specific prior written permission.
59 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
60 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
61 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
62 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
63 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
64 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
65 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
66 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
67 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
68 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
71 * @(#)vfs_init.c 8.3 (Berkeley) 1/4/94
72 * $FreeBSD: src/sys/kern/vfs_init.c,v 1.59 2002/04/30 18:44:32 dillon Exp $
73 * $DragonFly: src/sys/kern/vfs_init.c,v 1.15 2008/06/01 19:27:35 dillon Exp $
76 * Manage vnode VOP operations vectors
78 #include <sys/param.h>
79 #include <sys/systm.h>
80 #include <sys/kernel.h>
81 #include <sys/mount.h>
82 #include <sys/sysctl.h>
83 #include <sys/vnode.h>
84 #include <sys/malloc.h>
85 #include <sys/objcache.h>
87 static MALLOC_DEFINE(M_VNODEOP
, "vnodeops", "vnode operations vectors");
88 static MALLOC_DEFINE(M_NAMEI
, "nameibufs", "namei path buffers");
93 struct objcache
*namei_oc
;
96 * vfs_init() will set maxvfsconf
97 * to the highest defined type number.
100 struct vfsconf
*vfsconf
;
102 static TAILQ_HEAD(, vnodeopv_node
) vnodeopv_list
;
103 static void vfs_calc_vnodeops(struct vop_ops
*ops
);
106 * Add a vnode operations (vnops) vector to the global list.
109 vfs_nadd_vnodeops_sysinit(void *data
)
111 struct vop_ops
*ops
= data
;
113 vfs_add_vnodeops(NULL
, ops
, NULL
); /* mount, template, newcopy */
117 * Unlink previously added vnode operations vector.
120 vfs_nrm_vnodeops_sysinit(void *data
)
122 struct vop_ops
*ops
= data
;
124 vfs_rm_vnodeops(NULL
, ops
, NULL
);
128 vfs_add_vnodeops(struct mount
*mp
, struct vop_ops
*template,
129 struct vop_ops
**ops_pp
)
134 KKASSERT(*ops_pp
== NULL
);
135 *ops_pp
= kmalloc(sizeof(*ops
), M_VNODEOP
, M_WAITOK
);
137 bcopy(template, ops
, sizeof(*ops
));
142 vfs_calc_vnodeops(ops
);
143 ops
->head
.vv_mount
= mp
;
146 if (mp
->mnt_vn_coherency_ops
)
147 mp
->mnt_vn_use_ops
= mp
->mnt_vn_coherency_ops
;
148 else if (mp
->mnt_vn_journal_ops
)
149 mp
->mnt_vn_use_ops
= mp
->mnt_vn_journal_ops
;
151 mp
->mnt_vn_use_ops
= mp
->mnt_vn_norm_ops
;
156 * Remove a previously installed operations vector.
158 * NOTE: Either template or ops_pp may be NULL, but not both.
161 vfs_rm_vnodeops(struct mount
*mp
, struct vop_ops
*template,
162 struct vop_ops
**ops_pp
)
174 KKASSERT(mp
== ops
->head
.vv_mount
);
176 if (mp
->mnt_vn_coherency_ops
)
177 mp
->mnt_vn_use_ops
= mp
->mnt_vn_coherency_ops
;
178 else if (mp
->mnt_vn_journal_ops
)
179 mp
->mnt_vn_use_ops
= mp
->mnt_vn_journal_ops
;
181 mp
->mnt_vn_use_ops
= mp
->mnt_vn_norm_ops
;
184 kfree(ops
, M_VNODEOP
);
188 * Calculate the VFS operations vector array. This function basically
189 * replaces any NULL entry with the default entry.
192 vfs_calc_vnodeops(struct vop_ops
*ops
)
196 for (off
= __offsetof(struct vop_ops
, vop_ops_first_field
);
197 off
<= __offsetof(struct vop_ops
, vop_ops_last_field
);
198 off
+= sizeof(void *)
200 if (*(void **)((char *)ops
+ off
) == NULL
)
201 *(void **)((char *)ops
+ off
) = ops
->vop_default
;
206 * Routines having to do with the management of the vnode table.
208 struct vattr va_null
;
211 * Initialize the vnode structures and initialize each file system type.
217 TAILQ_INIT(&vnodeopv_list
);
218 namei_oc
= objcache_create_simple(M_NAMEI
, MAXPATHLEN
);
221 * Initialize the vnode table
228 * Initialize the vnode name cache
232 * Initialize each file system type.
233 * Vfs type numbers must be distinct from VFS_GENERIC (and VFS_VFSCONF).
235 vattr_null(&va_null
);
236 maxvfsconf
= VFS_GENERIC
+ 1;
238 SYSINIT(vfs
, SI_SUB_VFS
, SI_ORDER_FIRST
, vfsinit
, NULL
)
243 * After doing general initialisation, this function will
244 * call the filesystem specific initialisation vector op,
245 * i.e. vfsops->vfs_init().
248 vfs_register(struct vfsconf
*vfc
)
250 struct sysctl_oid
*oidp
;
251 struct vfsconf
*vfsp
;
252 struct vfsops
*vfsops
= NULL
;
256 for (vfsp
= vfsconf
; vfsp
->vfc_next
; vfsp
= vfsp
->vfc_next
)
257 if (strcmp(vfc
->vfc_name
, vfsp
->vfc_name
) == 0)
260 vfc
->vfc_typenum
= maxvfsconf
++;
262 vfsp
->vfc_next
= vfc
;
265 vfc
->vfc_next
= NULL
;
268 * If this filesystem has a sysctl node under vfs
269 * (i.e. vfs.xxfs), then change the oid number of that node to
270 * match the filesystem's type number. This allows user code
271 * which uses the type number to read sysctl variables defined
272 * by the filesystem to continue working. Since the oids are
273 * in a sorted list, we need to make sure the order is
274 * preserved by re-registering the oid after modifying its
277 SLIST_FOREACH(oidp
, &sysctl__vfs_children
, oid_link
)
278 if (strcmp(oidp
->oid_name
, vfc
->vfc_name
) == 0) {
279 sysctl_unregister_oid(oidp
);
280 oidp
->oid_number
= vfc
->vfc_typenum
;
281 sysctl_register_oid(oidp
);
285 * Initialise unused fields in the file system's vfsops vector.
287 * NOTE the file system should provide the mount and unmount ops
288 * at the least. In order for unmount to succeed, we also need
289 * the file system to provide us with vfsops->vfs_root otherwise
290 * the unmount(2) operation will not succeed.
292 vfsops
= vfc
->vfc_vfsops
;
293 KKASSERT(vfc
->vfc_vfsops
!= NULL
);
294 KKASSERT(vfsops
->vfs_mount
!= NULL
);
295 KKASSERT(vfsops
->vfs_root
!= NULL
);
296 KKASSERT(vfsops
->vfs_unmount
!= NULL
);
298 if (vfsops
->vfs_root
== NULL
) {
299 /* return file system's root vnode */
300 vfsops
->vfs_root
= vfs_stdroot
;
302 if (vfsops
->vfs_start
== NULL
) {
304 * Make file system operational before first use. This
305 * routine is called at mount-time for initialising MFS,
306 * not used by other file systems.
308 vfsops
->vfs_start
= vfs_stdstart
;
310 if (vfsops
->vfs_quotactl
== NULL
) {
312 vfsops
->vfs_quotactl
= vfs_stdquotactl
;
314 if (vfsops
->vfs_statfs
== NULL
) {
315 /* return file system's status */
316 vfsops
->vfs_statfs
= vfs_stdstatfs
;
318 if (vfsops
->vfs_statvfs
== NULL
) {
319 /* return file system's status */
320 vfsops
->vfs_statvfs
= vfs_stdstatvfs
;
322 if (vfsops
->vfs_sync
== NULL
) {
324 * Flush dirty buffers. File systems can use vfs_stdsync()
325 * by explicitly setting it in the vfsops->vfs_sync vector
328 vfsops
->vfs_sync
= vfs_stdnosync
;
330 if (vfsops
->vfs_vget
== NULL
) {
331 /* convert an inode number to a vnode */
332 vfsops
->vfs_vget
= vfs_stdvget
;
334 if (vfsops
->vfs_fhtovp
== NULL
) {
335 /* turn an NFS file handle into a vnode */
336 vfsops
->vfs_fhtovp
= vfs_stdfhtovp
;
338 if (vfsops
->vfs_checkexp
== NULL
) {
339 /* check if file system is exported */
340 vfsops
->vfs_checkexp
= vfs_stdcheckexp
;
342 if (vfsops
->vfs_vptofh
== NULL
) {
343 /* turn a vnode into an NFS file handle */
344 vfsops
->vfs_vptofh
= vfs_stdvptofh
;
346 if (vfsops
->vfs_init
== NULL
) {
347 /* file system specific initialisation */
348 vfsops
->vfs_init
= vfs_stdinit
;
350 if (vfsops
->vfs_uninit
== NULL
) {
351 /* file system specific uninitialisation */
352 vfsops
->vfs_uninit
= vfs_stduninit
;
354 if (vfsops
->vfs_extattrctl
== NULL
) {
355 /* extended attribute control */
356 vfsops
->vfs_extattrctl
= vfs_stdextattrctl
;
360 * Call init function for this VFS...
362 (*(vfc
->vfc_vfsops
->vfs_init
))(vfc
);
369 * Remove previously registered VFS.
371 * After doing general de-registration like removing sysctl
372 * nodes etc, it will call the filesystem specific vector
373 * op, i.e. vfsops->vfs_uninit().
377 vfs_unregister(struct vfsconf
*vfc
)
379 struct vfsconf
*vfsp
, *prev_vfsp
;
380 int error
, i
, maxtypenum
;
382 i
= vfc
->vfc_typenum
;
385 for (vfsp
= vfsconf
; vfsp
;
386 prev_vfsp
= vfsp
, vfsp
= vfsp
->vfc_next
) {
387 if (!strcmp(vfc
->vfc_name
, vfsp
->vfc_name
))
392 if (vfsp
->vfc_refcount
)
394 if (vfc
->vfc_vfsops
->vfs_uninit
!= NULL
) {
395 error
= (*vfc
->vfc_vfsops
->vfs_uninit
)(vfsp
);
400 prev_vfsp
->vfc_next
= vfsp
->vfc_next
;
402 vfsconf
= vfsp
->vfc_next
;
403 maxtypenum
= VFS_GENERIC
;
404 for (vfsp
= vfsconf
; vfsp
!= NULL
; vfsp
= vfsp
->vfc_next
)
405 if (maxtypenum
< vfsp
->vfc_typenum
)
406 maxtypenum
= vfsp
->vfc_typenum
;
407 maxvfsconf
= maxtypenum
+ 1;
412 vfs_modevent(module_t mod
, int type
, void *data
)
417 vfc
= (struct vfsconf
*)data
;
422 error
= vfs_register(vfc
);
427 error
= vfs_unregister(vfc
);
429 default: /* including MOD_SHUTDOWN */