Home | History | Annotate | Line # | Download | only in kern
vfs_init.c revision 1.7
      1  1.7  christos /*	$NetBSD: vfs_init.c,v 1.7 1996/10/10 22:46:38 christos Exp $	*/
      2  1.2       cgd 
      3  1.1   mycroft /*
      4  1.1   mycroft  * Copyright (c) 1989, 1993
      5  1.1   mycroft  *	The Regents of the University of California.  All rights reserved.
      6  1.1   mycroft  *
      7  1.1   mycroft  * This code is derived from software contributed
      8  1.1   mycroft  * to Berkeley by John Heidemann of the UCLA Ficus project.
      9  1.1   mycroft  *
     10  1.1   mycroft  * Source: * @(#)i405_init.c 2.10 92/04/27 UCLA Ficus project
     11  1.1   mycroft  *
     12  1.1   mycroft  * Redistribution and use in source and binary forms, with or without
     13  1.1   mycroft  * modification, are permitted provided that the following conditions
     14  1.1   mycroft  * are met:
     15  1.1   mycroft  * 1. Redistributions of source code must retain the above copyright
     16  1.1   mycroft  *    notice, this list of conditions and the following disclaimer.
     17  1.1   mycroft  * 2. Redistributions in binary form must reproduce the above copyright
     18  1.1   mycroft  *    notice, this list of conditions and the following disclaimer in the
     19  1.1   mycroft  *    documentation and/or other materials provided with the distribution.
     20  1.1   mycroft  * 3. All advertising materials mentioning features or use of this software
     21  1.1   mycroft  *    must display the following acknowledgement:
     22  1.1   mycroft  *	This product includes software developed by the University of
     23  1.1   mycroft  *	California, Berkeley and its contributors.
     24  1.1   mycroft  * 4. Neither the name of the University nor the names of its contributors
     25  1.1   mycroft  *    may be used to endorse or promote products derived from this software
     26  1.1   mycroft  *    without specific prior written permission.
     27  1.1   mycroft  *
     28  1.1   mycroft  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     29  1.1   mycroft  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     30  1.1   mycroft  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     31  1.1   mycroft  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     32  1.1   mycroft  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     33  1.1   mycroft  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     34  1.1   mycroft  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     35  1.1   mycroft  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     36  1.1   mycroft  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     37  1.1   mycroft  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     38  1.1   mycroft  * SUCH DAMAGE.
     39  1.1   mycroft  *
     40  1.2       cgd  *	@(#)vfs_init.c	8.3 (Berkeley) 1/4/94
     41  1.1   mycroft  */
     42  1.1   mycroft 
     43  1.1   mycroft 
     44  1.1   mycroft #include <sys/param.h>
     45  1.1   mycroft #include <sys/mount.h>
     46  1.1   mycroft #include <sys/time.h>
     47  1.1   mycroft #include <sys/vnode.h>
     48  1.1   mycroft #include <sys/stat.h>
     49  1.1   mycroft #include <sys/namei.h>
     50  1.1   mycroft #include <sys/ucred.h>
     51  1.1   mycroft #include <sys/buf.h>
     52  1.1   mycroft #include <sys/errno.h>
     53  1.1   mycroft #include <sys/malloc.h>
     54  1.5  christos #include <sys/systm.h>
     55  1.1   mycroft 
     56  1.1   mycroft /*
     57  1.1   mycroft  * Sigh, such primitive tools are these...
     58  1.1   mycroft  */
     59  1.1   mycroft #if 0
     60  1.1   mycroft #define DODEBUG(A) A
     61  1.1   mycroft #else
     62  1.1   mycroft #define DODEBUG(A)
     63  1.1   mycroft #endif
     64  1.1   mycroft 
     65  1.1   mycroft extern struct vnodeopv_desc *vfs_opv_descs[];
     66  1.1   mycroft 				/* a list of lists of vnodeops defns */
     67  1.1   mycroft extern struct vnodeop_desc *vfs_op_descs[];
     68  1.1   mycroft 				/* and the operations they perform */
     69  1.1   mycroft /*
     70  1.1   mycroft  * This code doesn't work if the defn is **vnodop_defns with cc.
     71  1.1   mycroft  * The problem is because of the compiler sometimes putting in an
     72  1.1   mycroft  * extra level of indirection for arrays.  It's an interesting
     73  1.1   mycroft  * "feature" of C.
     74  1.1   mycroft  */
     75  1.1   mycroft int vfs_opv_numops;
     76  1.1   mycroft 
     77  1.5  christos typedef (*PFI) __P((void *));
     78  1.5  christos 
     79  1.5  christos void vfs_opv_init __P((void));
     80  1.5  christos void vfs_opv_init_explicit __P((struct vnodeopv_desc *));
     81  1.5  christos void vfs_opv_init_default __P((struct vnodeopv_desc *));
     82  1.5  christos void vfs_op_init __P((void));
     83  1.1   mycroft 
     84  1.1   mycroft /*
     85  1.1   mycroft  * A miscellaneous routine.
     86  1.1   mycroft  * A generic "default" routine that just returns an error.
     87  1.1   mycroft  */
     88  1.5  christos /*ARGSUSED*/
     89  1.1   mycroft int
     90  1.5  christos vn_default_error(v)
     91  1.5  christos 	void *v;
     92  1.1   mycroft {
     93  1.1   mycroft 
     94  1.1   mycroft 	return (EOPNOTSUPP);
     95  1.1   mycroft }
     96  1.1   mycroft 
     97  1.1   mycroft /*
     98  1.1   mycroft  * vfs_init.c
     99  1.1   mycroft  *
    100  1.1   mycroft  * Allocate and fill in operations vectors.
    101  1.1   mycroft  *
    102  1.1   mycroft  * An undocumented feature of this approach to defining operations is that
    103  1.1   mycroft  * there can be multiple entries in vfs_opv_descs for the same operations
    104  1.1   mycroft  * vector. This allows third parties to extend the set of operations
    105  1.1   mycroft  * supported by another layer in a binary compatibile way. For example,
    106  1.1   mycroft  * assume that NFS needed to be modified to support Ficus. NFS has an entry
    107  1.1   mycroft  * (probably nfs_vnopdeop_decls) declaring all the operations NFS supports by
    108  1.1   mycroft  * default. Ficus could add another entry (ficus_nfs_vnodeop_decl_entensions)
    109  1.1   mycroft  * listing those new operations Ficus adds to NFS, all without modifying the
    110  1.1   mycroft  * NFS code. (Of couse, the OTW NFS protocol still needs to be munged, but
    111  1.1   mycroft  * that is a(whole)nother story.) This is a feature.
    112  1.1   mycroft  */
    113  1.3   mycroft 
    114  1.3   mycroft /*
    115  1.3   mycroft  * Allocate and init the vector, if it needs it.
    116  1.3   mycroft  * Also handle backwards compatibility.
    117  1.3   mycroft  */
    118  1.1   mycroft void
    119  1.3   mycroft vfs_opv_init_explicit(vfs_opv_desc)
    120  1.3   mycroft 	struct vnodeopv_desc *vfs_opv_desc;
    121  1.1   mycroft {
    122  1.5  christos 	int (**opv_desc_vector) __P((void *));
    123  1.1   mycroft 	struct vnodeopv_entry_desc *opve_descp;
    124  1.1   mycroft 
    125  1.3   mycroft 	opv_desc_vector = *(vfs_opv_desc->opv_desc_vector_p);
    126  1.3   mycroft 
    127  1.3   mycroft 	if (opv_desc_vector == NULL) {
    128  1.3   mycroft 		/* XXX - shouldn't be M_VNODE */
    129  1.3   mycroft 		MALLOC(opv_desc_vector, PFI *,
    130  1.3   mycroft 		    vfs_opv_numops * sizeof(PFI), M_VNODE, M_WAITOK);
    131  1.3   mycroft 		bzero(opv_desc_vector, vfs_opv_numops * sizeof(PFI));
    132  1.3   mycroft 		*(vfs_opv_desc->opv_desc_vector_p) = opv_desc_vector;
    133  1.7  christos 		DODEBUG(kprintf("vector at %p allocated\n",
    134  1.3   mycroft 		    opv_desc_vector_p));
    135  1.3   mycroft 	}
    136  1.3   mycroft 
    137  1.3   mycroft 	for (opve_descp = vfs_opv_desc->opv_desc_ops;
    138  1.3   mycroft 	     opve_descp->opve_op;
    139  1.3   mycroft 	     opve_descp++) {
    140  1.1   mycroft 		/*
    141  1.3   mycroft 		 * Sanity check:  is this operation listed
    142  1.3   mycroft 		 * in the list of operations?  We check this
    143  1.3   mycroft 		 * by seeing if its offest is zero.  Since
    144  1.3   mycroft 		 * the default routine should always be listed
    145  1.3   mycroft 		 * first, it should be the only one with a zero
    146  1.3   mycroft 		 * offset.  Any other operation with a zero
    147  1.3   mycroft 		 * offset is probably not listed in
    148  1.3   mycroft 		 * vfs_op_descs, and so is probably an error.
    149  1.3   mycroft 		 *
    150  1.3   mycroft 		 * A panic here means the layer programmer
    151  1.3   mycroft 		 * has committed the all-too common bug
    152  1.3   mycroft 		 * of adding a new operation to the layer's
    153  1.3   mycroft 		 * list of vnode operations but
    154  1.3   mycroft 		 * not adding the operation to the system-wide
    155  1.3   mycroft 		 * list of supported operations.
    156  1.1   mycroft 		 */
    157  1.3   mycroft 		if (opve_descp->opve_op->vdesc_offset == 0 &&
    158  1.3   mycroft 		    opve_descp->opve_op->vdesc_offset != VOFFSET(vop_default)) {
    159  1.7  christos 			kprintf("operation %s not listed in %s.\n",
    160  1.3   mycroft 			    opve_descp->opve_op->vdesc_name, "vfs_op_descs");
    161  1.3   mycroft 			panic ("vfs_opv_init: bad operation");
    162  1.1   mycroft 		}
    163  1.3   mycroft 
    164  1.3   mycroft 		/*
    165  1.3   mycroft 		 * Fill in this entry.
    166  1.3   mycroft 		 */
    167  1.3   mycroft 		opv_desc_vector[opve_descp->opve_op->vdesc_offset] =
    168  1.3   mycroft 		    opve_descp->opve_impl;
    169  1.1   mycroft 	}
    170  1.3   mycroft }
    171  1.3   mycroft 
    172  1.3   mycroft void
    173  1.3   mycroft vfs_opv_init_default(vfs_opv_desc)
    174  1.3   mycroft 	struct vnodeopv_desc *vfs_opv_desc;
    175  1.3   mycroft {
    176  1.3   mycroft 	int j;
    177  1.5  christos 	int (**opv_desc_vector) __P((void *));
    178  1.3   mycroft 
    179  1.3   mycroft 	opv_desc_vector = *(vfs_opv_desc->opv_desc_vector_p);
    180  1.3   mycroft 
    181  1.3   mycroft 	/*
    182  1.3   mycroft 	 * Force every operations vector to have a default routine.
    183  1.3   mycroft 	 */
    184  1.3   mycroft 	if (opv_desc_vector[VOFFSET(vop_default)] == NULL)
    185  1.3   mycroft 		panic("vfs_opv_init: operation vector without default routine.");
    186  1.3   mycroft 
    187  1.3   mycroft 	for (j = 0; j < vfs_opv_numops; j++)
    188  1.3   mycroft 		if (opv_desc_vector[j] == NULL)
    189  1.3   mycroft 			opv_desc_vector[j] =
    190  1.3   mycroft 			    opv_desc_vector[VOFFSET(vop_default)];
    191  1.3   mycroft }
    192  1.3   mycroft 
    193  1.3   mycroft void
    194  1.3   mycroft vfs_opv_init()
    195  1.3   mycroft {
    196  1.3   mycroft 	int i;
    197  1.3   mycroft 
    198  1.3   mycroft 	/*
    199  1.3   mycroft 	 * Allocate the dynamic vectors and fill them in.
    200  1.3   mycroft 	 */
    201  1.3   mycroft 	for (i = 0; vfs_opv_descs[i]; i++)
    202  1.3   mycroft 		vfs_opv_init_explicit(vfs_opv_descs[i]);
    203  1.3   mycroft 
    204  1.1   mycroft 	/*
    205  1.1   mycroft 	 * Finally, go back and replace unfilled routines
    206  1.3   mycroft 	 * with their default.
    207  1.1   mycroft 	 */
    208  1.3   mycroft 	for (i = 0; vfs_opv_descs[i]; i++)
    209  1.3   mycroft 		vfs_opv_init_default(vfs_opv_descs[i]);
    210  1.1   mycroft }
    211  1.1   mycroft 
    212  1.1   mycroft /*
    213  1.1   mycroft  * Initialize known vnode operations vectors.
    214  1.1   mycroft  */
    215  1.1   mycroft void
    216  1.1   mycroft vfs_op_init()
    217  1.1   mycroft {
    218  1.1   mycroft 	int i;
    219  1.1   mycroft 
    220  1.7  christos 	DODEBUG(kprintf("Vnode_interface_init.\n"));
    221  1.1   mycroft 	/*
    222  1.1   mycroft 	 * Set all vnode vectors to a well known value.
    223  1.1   mycroft 	 */
    224  1.1   mycroft 	for (i = 0; vfs_opv_descs[i]; i++)
    225  1.1   mycroft 		*(vfs_opv_descs[i]->opv_desc_vector_p) = NULL;
    226  1.1   mycroft 	/*
    227  1.1   mycroft 	 * Figure out how many ops there are by counting the table,
    228  1.1   mycroft 	 * and assign each its offset.
    229  1.1   mycroft 	 */
    230  1.1   mycroft 	for (vfs_opv_numops = 0, i = 0; vfs_op_descs[i]; i++) {
    231  1.1   mycroft 		vfs_op_descs[i]->vdesc_offset = vfs_opv_numops;
    232  1.1   mycroft 		vfs_opv_numops++;
    233  1.1   mycroft 	}
    234  1.7  christos 	DODEBUG(kprintf ("vfs_opv_numops=%d\n", vfs_opv_numops));
    235  1.1   mycroft }
    236  1.1   mycroft 
    237  1.1   mycroft /*
    238  1.1   mycroft  * Routines having to do with the management of the vnode table.
    239  1.1   mycroft  */
    240  1.1   mycroft extern struct vnodeops dead_vnodeops;
    241  1.1   mycroft extern struct vnodeops spec_vnodeops;
    242  1.1   mycroft struct vattr va_null;
    243  1.1   mycroft 
    244  1.1   mycroft /*
    245  1.1   mycroft  * Initialize the vnode structures and initialize each file system type.
    246  1.1   mycroft  */
    247  1.5  christos void
    248  1.1   mycroft vfsinit()
    249  1.1   mycroft {
    250  1.1   mycroft 	struct vfsops **vfsp;
    251  1.1   mycroft 
    252  1.1   mycroft 	/*
    253  1.1   mycroft 	 * Initialize the vnode table
    254  1.1   mycroft 	 */
    255  1.1   mycroft 	vntblinit();
    256  1.1   mycroft 	/*
    257  1.1   mycroft 	 * Initialize the vnode name cache
    258  1.1   mycroft 	 */
    259  1.1   mycroft 	nchinit();
    260  1.1   mycroft 	/*
    261  1.1   mycroft 	 * Build vnode operation vectors.
    262  1.1   mycroft 	 */
    263  1.1   mycroft 	vfs_op_init();
    264  1.1   mycroft 	vfs_opv_init();   /* finish the job */
    265  1.1   mycroft 	/*
    266  1.1   mycroft 	 * Initialize each file system type.
    267  1.1   mycroft 	 */
    268  1.1   mycroft 	vattr_null(&va_null);
    269  1.1   mycroft 	for (vfsp = &vfssw[0]; vfsp < &vfssw[nvfssw]; vfsp++) {
    270  1.1   mycroft 		if (*vfsp == NULL)
    271  1.1   mycroft 			continue;
    272  1.1   mycroft 		(*(*vfsp)->vfs_init)();
    273  1.1   mycroft 	}
    274  1.1   mycroft }
    275