NetBSD/sys/kern/vfs_conf.c

301 lines
6.9 KiB
C
Raw Normal View History

1995-11-12 01:00:15 +03:00
/* $NetBSD: vfs_conf.c,v 1.22 1995/11/11 22:00:15 mycroft Exp $ */
1993-03-21 12:45:37 +03:00
/*
1994-06-08 15:28:29 +04:00
* Copyright (c) 1989, 1993
* The Regents of the University of California. All rights reserved.
1993-03-21 12:45:37 +03:00
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the University of
* California, Berkeley and its contributors.
* 4. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* @(#)vfs_conf.c 8.8 (Berkeley) 3/31/94
1993-03-21 12:45:37 +03:00
*/
1993-12-18 07:21:37 +03:00
#include <sys/param.h>
#include <sys/mount.h>
1994-06-08 15:28:29 +04:00
#include <sys/vnode.h>
1993-03-21 12:45:37 +03:00
/*
* These define the root filesystem and device.
*/
struct mount *rootfs;
struct vnode *rootvnode;
1993-03-21 12:45:37 +03:00
/*
* Set up the filesystem operations for vnodes.
* The types are defined in mount.h.
*/
1994-03-10 00:21:37 +03:00
#ifdef FFS
1995-11-12 01:00:15 +03:00
extern struct vfsops ffs_vfsops;
1994-03-10 00:21:37 +03:00
#endif
1993-03-21 12:45:37 +03:00
1994-06-08 15:28:29 +04:00
#ifdef LFS
extern struct vfsops lfs_vfsops;
1993-03-21 12:45:37 +03:00
#endif
#ifdef MFS
extern struct vfsops mfs_vfsops;
#endif
#ifdef MSDOSFS
brought in fixed/renamed/matching MS-DOS FS code, from Jeff Polk <polk@bsdi.com>. His notes are as follows: ------------------------------------------------------------------------------ July 22, 1993 - Changed name of entire package from PCFS to MSDOSFS - Fixed bugs: root directory size in clusters instead of bytes growing directory didn't update in-core size link, symlink, mknod didn't free locked parent (deadlock) lookup returned real error on create and rename instead of EJUSTRETURN rename changed `.' entry in child instead of name entry in parent rename removed `.' entry in child instead of removing entry in parent when moving a directory from one dir to another createde() left new node locked when write of parent failed (deadlock) removede() decremented refcount even on error (rmdir's which failed due to write errors left in-core cache entries inconsistent) changed validation for filesystem to not check for the boot signature since some disks (e.g., mtools) aren't bootable directories are always show current time as modify time (needed for NFS export since DOS never updates dir mod times -- ctime is true create time). - Added support for cookies changes to the readdir() vnode interface (#ifdef __bsdi__) - Punted on the whole problem of inode generation numbers. This means that there's a chance of using a stale file handle to access a new file, but it doesn't appear to be the common case, and I don't see how to generate reasonable generation numbers without changing something on the disk (which is the way the SVR4 filesystem survival kit guys did it). I don't think it would be very safe to change the on-disk format. Jeff Polk (polk@BSDI.COM) ------------------------------------------------------------------------------
1993-08-13 15:35:13 +04:00
extern struct vfsops msdosfs_vfsops;
#endif
1994-06-08 15:28:29 +04:00
#ifdef NFSCLIENT
extern struct vfsops nfs_vfsops;
1993-03-21 12:45:37 +03:00
#endif
#ifdef FDESC
extern struct vfsops fdesc_vfsops;
#endif
1994-06-08 15:28:29 +04:00
#ifdef PORTAL
extern struct vfsops portal_vfsops;
#endif
#ifdef NULLFS
extern struct vfsops null_vfsops;
#endif
#ifdef UMAPFS
extern struct vfsops umap_vfsops;
#endif
#ifdef KERNFS
extern struct vfsops kernfs_vfsops;
#endif
1993-08-24 16:56:22 +04:00
#ifdef PROCFS
extern struct vfsops procfs_vfsops;
#endif
1994-06-08 15:28:29 +04:00
#ifdef AFS
extern struct vfsops afs_vfsops;
1993-12-22 16:43:18 +03:00
#endif
1994-06-08 15:28:29 +04:00
#ifdef CD9660
extern struct vfsops cd9660_vfsops;
#endif
#ifdef UNION
extern struct vfsops union_vfsops;
1993-12-22 16:43:18 +03:00
#endif
1994-05-11 22:50:36 +04:00
#ifdef ADOSFS
1994-06-08 15:28:29 +04:00
extern struct vfsops adosfs_vfsops;
1994-05-11 22:50:36 +04:00
#endif
/*
* XXX ORDERING MATTERS, for COMPAT_09. when that goes away,
* empty slots can go away.
*/
1993-03-21 12:45:37 +03:00
struct vfsops *vfssw[] = {
1994-06-08 15:28:29 +04:00
NULL, /* 0 = MOUNT_NONE */
1994-03-10 00:21:37 +03:00
#ifdef FFS
1995-11-12 01:00:15 +03:00
&ffs_vfsops, /* 1 = MOUNT_FFS */
1994-03-10 00:21:37 +03:00
#else
1994-06-08 15:28:29 +04:00
NULL,
1994-03-10 00:21:37 +03:00
#endif
1993-04-11 00:18:57 +04:00
#ifdef NFSCLIENT
1993-03-21 12:45:37 +03:00
&nfs_vfsops, /* 2 = MOUNT_NFS */
#else
1994-06-08 15:28:29 +04:00
NULL,
1993-03-21 12:45:37 +03:00
#endif
#ifdef MFS
&mfs_vfsops, /* 3 = MOUNT_MFS */
#else
1994-06-08 15:28:29 +04:00
NULL,
1993-03-21 12:45:37 +03:00
#endif
#ifdef MSDOSFS
brought in fixed/renamed/matching MS-DOS FS code, from Jeff Polk <polk@bsdi.com>. His notes are as follows: ------------------------------------------------------------------------------ July 22, 1993 - Changed name of entire package from PCFS to MSDOSFS - Fixed bugs: root directory size in clusters instead of bytes growing directory didn't update in-core size link, symlink, mknod didn't free locked parent (deadlock) lookup returned real error on create and rename instead of EJUSTRETURN rename changed `.' entry in child instead of name entry in parent rename removed `.' entry in child instead of removing entry in parent when moving a directory from one dir to another createde() left new node locked when write of parent failed (deadlock) removede() decremented refcount even on error (rmdir's which failed due to write errors left in-core cache entries inconsistent) changed validation for filesystem to not check for the boot signature since some disks (e.g., mtools) aren't bootable directories are always show current time as modify time (needed for NFS export since DOS never updates dir mod times -- ctime is true create time). - Added support for cookies changes to the readdir() vnode interface (#ifdef __bsdi__) - Punted on the whole problem of inode generation numbers. This means that there's a chance of using a stale file handle to access a new file, but it doesn't appear to be the common case, and I don't see how to generate reasonable generation numbers without changing something on the disk (which is the way the SVR4 filesystem survival kit guys did it). I don't think it would be very safe to change the on-disk format. Jeff Polk (polk@BSDI.COM) ------------------------------------------------------------------------------
1993-08-13 15:35:13 +04:00
&msdosfs_vfsops, /* 4 = MOUNT_MSDOS */
#else
1994-06-08 15:28:29 +04:00
NULL,
#endif
1994-06-08 15:28:29 +04:00
#ifdef LFS
&lfs_vfsops, /* 5 = MOUNT_LFS */
1993-03-21 12:45:37 +03:00
#else
1994-06-08 15:28:29 +04:00
NULL,
1993-03-21 12:45:37 +03:00
#endif
1994-06-08 15:28:29 +04:00
NULL, /* 6 = MOUNT_LOFS */
#ifdef FDESC
1994-06-08 15:28:29 +04:00
&fdesc_vfsops, /* 7 = MOUNT_FDESC */
#else
1994-06-08 15:28:29 +04:00
NULL,
#endif
#ifdef PORTAL
&portal_vfsops, /* 8 = MOUNT_PORTAL */
#else
NULL,
#endif
#ifdef NULLFS
&null_vfsops, /* 9 = MOUNT_NULL */
#else
NULL,
#endif
#ifdef UMAPFS
&umap_vfsops, /* 10 = MOUNT_UMAP */
#else
NULL,
#endif
#ifdef KERNFS
1994-06-08 15:28:29 +04:00
&kernfs_vfsops, /* 11 = MOUNT_KERNFS */
#else
1994-06-08 15:28:29 +04:00
NULL,
#endif
1993-08-24 16:56:22 +04:00
#ifdef PROCFS
1994-06-08 15:28:29 +04:00
&procfs_vfsops, /* 12 = MOUNT_PROCFS */
1993-08-24 16:56:22 +04:00
#else
1994-06-08 15:28:29 +04:00
NULL,
1993-08-24 16:56:22 +04:00
#endif
1994-06-08 15:28:29 +04:00
#ifdef AFS
&afs_vfsops, /* 13 = MOUNT_AFS */
1993-12-22 16:43:18 +03:00
#else
1994-06-08 15:28:29 +04:00
NULL,
1993-12-22 16:43:18 +03:00
#endif
1994-06-08 15:28:29 +04:00
#ifdef CD9660
&cd9660_vfsops, /* 14 = MOUNT_ISOFS */
1993-12-22 16:43:18 +03:00
#else
1994-06-08 15:28:29 +04:00
NULL,
#endif
#ifdef UNION
&union_vfsops, /* 15 = MOUNT_UNION */
#else
NULL,
1993-12-22 16:43:18 +03:00
#endif
1994-05-11 22:50:36 +04:00
#ifdef ADOSFS
1994-06-08 15:28:29 +04:00
&adosfs_vfsops, /* 16 = MOUNT_ADOSFS */
1994-05-11 22:50:36 +04:00
#else
1994-06-08 15:28:29 +04:00
NULL,
1994-05-11 22:50:36 +04:00
#endif
#ifdef LKM /* for LKM's. add new FS's before these */
1994-06-08 15:28:29 +04:00
NULL,
NULL,
NULL,
NULL,
#endif
0
};
int nvfssw = sizeof(vfssw) / sizeof(vfssw[0]);
/*
* vfs_opv_descs enumerates the list of vnode classes, each with it's own
* vnode operation vector. It is consulted at system boot to build operation
* vectors. It is NULL terminated.
*/
extern struct vnodeopv_desc ffs_vnodeop_opv_desc;
extern struct vnodeopv_desc ffs_specop_opv_desc;
extern struct vnodeopv_desc ffs_fifoop_opv_desc;
extern struct vnodeopv_desc lfs_vnodeop_opv_desc;
extern struct vnodeopv_desc lfs_specop_opv_desc;
extern struct vnodeopv_desc lfs_fifoop_opv_desc;
extern struct vnodeopv_desc mfs_vnodeop_opv_desc;
extern struct vnodeopv_desc dead_vnodeop_opv_desc;
extern struct vnodeopv_desc fifo_vnodeop_opv_desc;
extern struct vnodeopv_desc spec_vnodeop_opv_desc;
extern struct vnodeopv_desc nfsv2_vnodeop_opv_desc;
extern struct vnodeopv_desc spec_nfsv2nodeop_opv_desc;
extern struct vnodeopv_desc fifo_nfsv2nodeop_opv_desc;
extern struct vnodeopv_desc fdesc_vnodeop_opv_desc;
extern struct vnodeopv_desc portal_vnodeop_opv_desc;
extern struct vnodeopv_desc null_vnodeop_opv_desc;
extern struct vnodeopv_desc umap_vnodeop_opv_desc;
extern struct vnodeopv_desc kernfs_vnodeop_opv_desc;
extern struct vnodeopv_desc procfs_vnodeop_opv_desc;
extern struct vnodeopv_desc cd9660_vnodeop_opv_desc;
extern struct vnodeopv_desc cd9660_specop_opv_desc;
extern struct vnodeopv_desc cd9660_fifoop_opv_desc;
extern struct vnodeopv_desc union_vnodeop_opv_desc;
extern struct vnodeopv_desc msdosfs_vnodeop_opv_desc;
extern struct vnodeopv_desc adosfs_vnodeop_opv_desc;
struct vnodeopv_desc *vfs_opv_descs[] = {
#ifdef FFS
&ffs_vnodeop_opv_desc,
&ffs_specop_opv_desc,
#ifdef FIFO
&ffs_fifoop_opv_desc,
#endif
#endif
&dead_vnodeop_opv_desc,
#ifdef FIFO
&fifo_vnodeop_opv_desc,
#endif
&spec_vnodeop_opv_desc,
#ifdef LFS
&lfs_vnodeop_opv_desc,
&lfs_specop_opv_desc,
#ifdef FIFO
&lfs_fifoop_opv_desc,
#endif
#endif
#ifdef MFS
&mfs_vnodeop_opv_desc,
#endif
#ifdef NFSCLIENT
&nfsv2_vnodeop_opv_desc,
&spec_nfsv2nodeop_opv_desc,
#ifdef FIFO
&fifo_nfsv2nodeop_opv_desc,
#endif
#endif
#ifdef FDESC
&fdesc_vnodeop_opv_desc,
#endif
#ifdef PORTAL
&portal_vnodeop_opv_desc,
#endif
#ifdef NULLFS
&null_vnodeop_opv_desc,
#endif
#ifdef UMAPFS
&umap_vnodeop_opv_desc,
#endif
#ifdef KERNFS
&kernfs_vnodeop_opv_desc,
#endif
#ifdef PROCFS
&procfs_vnodeop_opv_desc,
#endif
#ifdef CD9660
&cd9660_vnodeop_opv_desc,
&cd9660_specop_opv_desc,
#ifdef FIFO
&cd9660_fifoop_opv_desc,
#endif
#endif
#ifdef UNION
&union_vnodeop_opv_desc,
#endif
#ifdef MSDOSFS
&msdosfs_vnodeop_opv_desc,
#endif
#ifdef ADOSFS
&adosfs_vnodeop_opv_desc,
#endif
1994-06-08 15:28:29 +04:00
NULL
1993-03-21 12:45:37 +03:00
};