Home | History | Annotate | Line # | Download | only in nullfs
null_vfsops.c revision 1.46.2.1
      1  1.46.2.1      tron /*	$NetBSD: null_vfsops.c,v 1.46.2.1 2004/05/29 09:04:47 tron Exp $	*/
      2       1.2       cgd 
      3       1.1   mycroft /*
      4      1.24  wrstuden  * Copyright (c) 1999 National Aeronautics & Space Administration
      5      1.24  wrstuden  * All rights reserved.
      6      1.24  wrstuden  *
      7      1.24  wrstuden  * This software was written by William Studenmund of the
      8      1.30       wiz  * Numerical Aerospace Simulation Facility, NASA Ames Research Center.
      9      1.24  wrstuden  *
     10      1.24  wrstuden  * Redistribution and use in source and binary forms, with or without
     11      1.24  wrstuden  * modification, are permitted provided that the following conditions
     12      1.24  wrstuden  * are met:
     13      1.24  wrstuden  * 1. Redistributions of source code must retain the above copyright
     14      1.24  wrstuden  *    notice, this list of conditions and the following disclaimer.
     15      1.24  wrstuden  * 2. Redistributions in binary form must reproduce the above copyright
     16      1.24  wrstuden  *    notice, this list of conditions and the following disclaimer in the
     17      1.24  wrstuden  *    documentation and/or other materials provided with the distribution.
     18      1.25     soren  * 3. Neither the name of the National Aeronautics & Space Administration
     19      1.24  wrstuden  *    nor the names of its contributors may be used to endorse or promote
     20      1.24  wrstuden  *    products derived from this software without specific prior written
     21      1.24  wrstuden  *    permission.
     22      1.24  wrstuden  *
     23      1.24  wrstuden  * THIS SOFTWARE IS PROVIDED BY THE NATIONAL AERONAUTICS & SPACE ADMINISTRATION
     24      1.24  wrstuden  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     25      1.24  wrstuden  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     26      1.24  wrstuden  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE ADMINISTRATION OR CONTRIB-
     27      1.24  wrstuden  * UTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
     28      1.24  wrstuden  * OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     29      1.24  wrstuden  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     30      1.24  wrstuden  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     31      1.24  wrstuden  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     32      1.24  wrstuden  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     33      1.24  wrstuden  * POSSIBILITY OF SUCH DAMAGE.
     34      1.24  wrstuden  */
     35      1.24  wrstuden /*
     36      1.19      fvdl  * Copyright (c) 1992, 1993, 1995
     37       1.1   mycroft  *	The Regents of the University of California.  All rights reserved.
     38       1.1   mycroft  *
     39       1.1   mycroft  * This code is derived from software donated to Berkeley by
     40       1.1   mycroft  * Jan-Simon Pendry.
     41       1.1   mycroft  *
     42       1.1   mycroft  * Redistribution and use in source and binary forms, with or without
     43       1.1   mycroft  * modification, are permitted provided that the following conditions
     44       1.1   mycroft  * are met:
     45       1.1   mycroft  * 1. Redistributions of source code must retain the above copyright
     46       1.1   mycroft  *    notice, this list of conditions and the following disclaimer.
     47       1.1   mycroft  * 2. Redistributions in binary form must reproduce the above copyright
     48       1.1   mycroft  *    notice, this list of conditions and the following disclaimer in the
     49       1.1   mycroft  *    documentation and/or other materials provided with the distribution.
     50      1.43       agc  * 3. Neither the name of the University nor the names of its contributors
     51       1.1   mycroft  *    may be used to endorse or promote products derived from this software
     52       1.1   mycroft  *    without specific prior written permission.
     53       1.1   mycroft  *
     54       1.1   mycroft  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     55       1.1   mycroft  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     56       1.1   mycroft  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     57       1.1   mycroft  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     58       1.1   mycroft  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     59       1.1   mycroft  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     60       1.1   mycroft  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     61       1.1   mycroft  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     62       1.1   mycroft  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     63       1.1   mycroft  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     64       1.1   mycroft  * SUCH DAMAGE.
     65       1.1   mycroft  *
     66       1.1   mycroft  *	from: Id: lofs_vfsops.c,v 1.9 1992/05/30 10:26:24 jsp Exp
     67       1.1   mycroft  *	from: @(#)lofs_vfsops.c	1.2 (Berkeley) 6/18/92
     68      1.19      fvdl  *	@(#)null_vfsops.c	8.7 (Berkeley) 5/14/95
     69       1.1   mycroft  */
     70       1.1   mycroft 
     71       1.1   mycroft /*
     72       1.1   mycroft  * Null Layer
     73       1.1   mycroft  * (See null_vnops.c for a description of what this does.)
     74       1.1   mycroft  */
     75      1.36     lukem 
     76      1.36     lukem #include <sys/cdefs.h>
     77  1.46.2.1      tron __KERNEL_RCSID(0, "$NetBSD: null_vfsops.c,v 1.46.2.1 2004/05/29 09:04:47 tron Exp $");
     78       1.1   mycroft 
     79       1.1   mycroft #include <sys/param.h>
     80       1.1   mycroft #include <sys/systm.h>
     81      1.44    atatat #include <sys/sysctl.h>
     82       1.1   mycroft #include <sys/time.h>
     83      1.19      fvdl #include <sys/proc.h>
     84       1.1   mycroft #include <sys/vnode.h>
     85       1.1   mycroft #include <sys/mount.h>
     86       1.1   mycroft #include <sys/namei.h>
     87       1.1   mycroft #include <sys/malloc.h>
     88      1.33     enami 
     89       1.1   mycroft #include <miscfs/nullfs/null.h>
     90      1.24  wrstuden #include <miscfs/genfs/layer_extern.h>
     91       1.1   mycroft 
     92      1.14       cgd int	nullfs_mount __P((struct mount *, const char *, void *,
     93      1.42      fvdl 	    struct nameidata *, struct proc *));
     94      1.42      fvdl int	nullfs_unmount __P((struct mount *, int, struct proc *));
     95      1.24  wrstuden 
     96       1.1   mycroft /*
     97       1.1   mycroft  * Mount null layer
     98       1.1   mycroft  */
     99       1.1   mycroft int
    100      1.42      fvdl nullfs_mount(mp, path, data, ndp, p)
    101       1.1   mycroft 	struct mount *mp;
    102      1.14       cgd 	const char *path;
    103      1.14       cgd 	void *data;
    104       1.1   mycroft 	struct nameidata *ndp;
    105      1.42      fvdl 	struct proc *p;
    106       1.1   mycroft {
    107       1.1   mycroft 	struct null_args args;
    108       1.1   mycroft 	struct vnode *lowerrootvp, *vp;
    109      1.24  wrstuden 	struct null_mount *nmp;
    110      1.24  wrstuden 	struct layer_mount *lmp;
    111      1.33     enami 	int error = 0;
    112       1.1   mycroft 
    113       1.1   mycroft #ifdef NULLFS_DIAGNOSTIC
    114      1.16  christos 	printf("nullfs_mount(mp = %p)\n", mp);
    115       1.1   mycroft #endif
    116       1.1   mycroft 
    117      1.38  christos 	if (mp->mnt_flag & MNT_GETARGS) {
    118      1.38  christos 		lmp = MOUNTTOLAYERMOUNT(mp);
    119      1.38  christos 		if (lmp == NULL)
    120      1.38  christos 			return EIO;
    121      1.38  christos 		args.la.target = NULL;
    122      1.38  christos 		vfs_showexport(mp, &args.la.export, &lmp->layerm_export);
    123      1.38  christos 		return copyout(&args, data, sizeof(args));
    124      1.38  christos 	}
    125       1.1   mycroft 	/*
    126       1.1   mycroft 	 * Get argument
    127       1.1   mycroft 	 */
    128      1.10  christos 	error = copyin(data, (caddr_t)&args, sizeof(struct null_args));
    129      1.10  christos 	if (error)
    130       1.1   mycroft 		return (error);
    131       1.1   mycroft 
    132       1.1   mycroft 	/*
    133      1.24  wrstuden 	 * Update only does export updating.
    134      1.24  wrstuden 	 */
    135      1.24  wrstuden 	if (mp->mnt_flag & MNT_UPDATE) {
    136      1.24  wrstuden 		lmp = MOUNTTOLAYERMOUNT(mp);
    137      1.33     enami 		if (args.nulla_target == NULL)
    138      1.24  wrstuden 			return (vfs_export(mp, &lmp->layerm_export,
    139      1.33     enami 			    &args.la.export));
    140      1.24  wrstuden 		else
    141      1.24  wrstuden 			return (EOPNOTSUPP);
    142      1.24  wrstuden 	}
    143      1.24  wrstuden 
    144      1.24  wrstuden 	/*
    145       1.1   mycroft 	 * Find lower node
    146       1.1   mycroft 	 */
    147      1.31     assar 	NDINIT(ndp, LOOKUP, FOLLOW|LOCKLEAF,
    148      1.42      fvdl 		UIO_USERSPACE, args.la.target, p);
    149      1.10  christos 	if ((error = namei(ndp)) != 0)
    150       1.1   mycroft 		return (error);
    151       1.1   mycroft 
    152       1.1   mycroft 	/*
    153       1.1   mycroft 	 * Sanity check on lower vnode
    154       1.1   mycroft 	 */
    155       1.1   mycroft 	lowerrootvp = ndp->ni_vp;
    156       1.1   mycroft 
    157      1.24  wrstuden 	/*
    158      1.24  wrstuden 	 * First cut at fixing up upper mount point
    159      1.24  wrstuden 	 */
    160      1.24  wrstuden 	nmp = (struct null_mount *) malloc(sizeof(struct null_mount),
    161      1.33     enami 	    M_UFSMNT, M_WAITOK);		/* XXX */
    162      1.24  wrstuden 	memset((caddr_t)nmp, 0, sizeof(struct null_mount));
    163      1.24  wrstuden 
    164      1.37     soren 	mp->mnt_data = nmp;
    165      1.24  wrstuden 	nmp->nullm_vfs = lowerrootvp->v_mount;
    166      1.24  wrstuden 	if (nmp->nullm_vfs->mnt_flag & MNT_LOCAL)
    167      1.24  wrstuden 		mp->mnt_flag |= MNT_LOCAL;
    168       1.1   mycroft 
    169       1.1   mycroft 	/*
    170      1.24  wrstuden 	 * Make sure that the mount point is sufficiently initialized
    171      1.24  wrstuden 	 * that the node create call will work.
    172       1.1   mycroft 	 */
    173      1.27     assar 	vfs_getnewfsid(mp);
    174      1.24  wrstuden 
    175      1.33     enami 	nmp->nullm_size = sizeof(struct null_node);
    176      1.24  wrstuden 	nmp->nullm_tag = VT_NULL;
    177      1.24  wrstuden 	nmp->nullm_bypass = layer_bypass;
    178      1.24  wrstuden 	nmp->nullm_alloc = layer_node_alloc;	/* the default alloc is fine */
    179      1.24  wrstuden 	nmp->nullm_vnodeop_p = null_vnodeop_p;
    180      1.24  wrstuden 	simple_lock_init(&nmp->nullm_hashlock);
    181      1.35     enami 	nmp->nullm_node_hashtbl = hashinit(desiredvnodes, HASH_LIST, M_CACHE,
    182      1.28        ad 	    M_WAITOK, &nmp->nullm_node_hash);
    183       1.1   mycroft 
    184       1.1   mycroft 	/*
    185      1.24  wrstuden 	 * Fix up null node for root vnode
    186       1.1   mycroft 	 */
    187      1.24  wrstuden 	error = layer_node_create(mp, lowerrootvp, &vp);
    188       1.1   mycroft 	/*
    189      1.24  wrstuden 	 * Make sure the fixup worked
    190       1.1   mycroft 	 */
    191       1.1   mycroft 	if (error) {
    192      1.24  wrstuden 		vput(lowerrootvp);
    193      1.34     enami 		hashdone(nmp->nullm_node_hashtbl, M_CACHE);
    194      1.24  wrstuden 		free(nmp, M_UFSMNT);	/* XXX */
    195       1.1   mycroft 		return (error);
    196       1.1   mycroft 	}
    197      1.21  wrstuden 	/*
    198      1.24  wrstuden 	 * Unlock the node
    199      1.21  wrstuden 	 */
    200      1.21  wrstuden 	VOP_UNLOCK(vp, 0);
    201       1.1   mycroft 
    202       1.1   mycroft 	/*
    203       1.1   mycroft 	 * Keep a held reference to the root vnode.
    204       1.1   mycroft 	 * It is vrele'd in nullfs_unmount.
    205       1.1   mycroft 	 */
    206      1.24  wrstuden 	vp->v_flag |= VROOT;
    207      1.24  wrstuden 	nmp->nullm_rootvp = vp;
    208       1.1   mycroft 
    209      1.39  christos 	error = set_statfs_info(path, UIO_USERSPACE, args.la.target,
    210      1.42      fvdl 	    UIO_USERSPACE, mp, p);
    211       1.1   mycroft #ifdef NULLFS_DIAGNOSTIC
    212      1.13  christos 	printf("nullfs_mount: lower %s, alias at %s\n",
    213      1.12  christos 	    mp->mnt_stat.f_mntfromname, mp->mnt_stat.f_mntonname);
    214       1.1   mycroft #endif
    215      1.39  christos 	return error;
    216       1.1   mycroft }
    217       1.1   mycroft 
    218       1.1   mycroft /*
    219       1.1   mycroft  * Free reference to null layer
    220       1.1   mycroft  */
    221       1.1   mycroft int
    222      1.42      fvdl nullfs_unmount(mp, mntflags, p)
    223       1.1   mycroft 	struct mount *mp;
    224       1.1   mycroft 	int mntflags;
    225      1.42      fvdl 	struct proc *p;
    226       1.1   mycroft {
    227      1.34     enami 	struct null_mount *nmp = MOUNTTONULLMOUNT(mp);
    228      1.34     enami 	struct vnode *null_rootvp = nmp->nullm_rootvp;
    229       1.1   mycroft 	int error;
    230       1.1   mycroft 	int flags = 0;
    231       1.1   mycroft 
    232       1.1   mycroft #ifdef NULLFS_DIAGNOSTIC
    233      1.16  christos 	printf("nullfs_unmount(mp = %p)\n", mp);
    234       1.1   mycroft #endif
    235       1.1   mycroft 
    236      1.19      fvdl 	if (mntflags & MNT_FORCE)
    237       1.1   mycroft 		flags |= FORCECLOSE;
    238       1.1   mycroft 
    239       1.1   mycroft 	/*
    240       1.1   mycroft 	 * Clear out buffer cache.  I don't think we
    241       1.1   mycroft 	 * ever get anything cached at this level at the
    242       1.1   mycroft 	 * moment, but who knows...
    243       1.1   mycroft 	 */
    244       1.1   mycroft #if 0
    245      1.33     enami 	mntflushbuf(mp, 0);
    246       1.1   mycroft 	if (mntinvalbuf(mp, 1))
    247       1.1   mycroft 		return (EBUSY);
    248       1.1   mycroft #endif
    249      1.24  wrstuden 	if (null_rootvp->v_usecount > 1)
    250       1.1   mycroft 		return (EBUSY);
    251      1.24  wrstuden 	if ((error = vflush(mp, null_rootvp, flags)) != 0)
    252       1.1   mycroft 		return (error);
    253       1.1   mycroft 
    254       1.1   mycroft #ifdef NULLFS_DIAGNOSTIC
    255      1.24  wrstuden 	vprint("alias root of lower", null_rootvp);
    256      1.33     enami #endif
    257       1.1   mycroft 	/*
    258       1.1   mycroft 	 * Release reference on underlying root vnode
    259       1.1   mycroft 	 */
    260      1.24  wrstuden 	vrele(null_rootvp);
    261      1.33     enami 
    262       1.1   mycroft 	/*
    263       1.1   mycroft 	 * And blow it away for future re-use
    264       1.1   mycroft 	 */
    265      1.24  wrstuden 	vgone(null_rootvp);
    266      1.33     enami 
    267       1.1   mycroft 	/*
    268       1.1   mycroft 	 * Finally, throw away the null_mount structure
    269       1.1   mycroft 	 */
    270      1.34     enami 	hashdone(nmp->nullm_node_hashtbl, M_CACHE);
    271       1.1   mycroft 	free(mp->mnt_data, M_UFSMNT);	/* XXX */
    272      1.33     enami 	mp->mnt_data = NULL;
    273      1.33     enami 	return (0);
    274       1.1   mycroft }
    275       1.1   mycroft 
    276      1.44    atatat SYSCTL_SETUP(sysctl_vfs_null_setup, "sysctl vfs.null subtree setup")
    277      1.44    atatat {
    278      1.44    atatat 
    279      1.46    atatat 	sysctl_createv(clog, 0, NULL, NULL,
    280      1.46    atatat 		       CTLFLAG_PERMANENT,
    281      1.44    atatat 		       CTLTYPE_NODE, "vfs", NULL,
    282      1.44    atatat 		       NULL, 0, NULL, 0,
    283      1.44    atatat 		       CTL_VFS, CTL_EOL);
    284      1.46    atatat 	sysctl_createv(clog, 0, NULL, NULL,
    285      1.46    atatat 		       CTLFLAG_PERMANENT,
    286  1.46.2.1      tron 		       CTLTYPE_NODE, "null",
    287  1.46.2.1      tron 		       SYSCTL_DESCR("Loopback file system"),
    288      1.44    atatat 		       NULL, 0, NULL, 0,
    289      1.44    atatat 		       CTL_VFS, 9, CTL_EOL);
    290      1.44    atatat 	/*
    291      1.44    atatat 	 * XXX the "9" above could be dynamic, thereby eliminating one
    292      1.44    atatat 	 * more instance of the "number to vfs" mapping problem, but
    293      1.44    atatat 	 * "9" is the order as taken from sys/mount.h
    294      1.44    atatat 	 */
    295      1.44    atatat }
    296      1.44    atatat 
    297      1.29  jdolecek extern const struct vnodeopv_desc null_vnodeop_opv_desc;
    298      1.18   thorpej 
    299      1.29  jdolecek const struct vnodeopv_desc * const nullfs_vnodeopv_descs[] = {
    300      1.19      fvdl 	&null_vnodeop_opv_desc,
    301      1.18   thorpej 	NULL,
    302      1.18   thorpej };
    303      1.18   thorpej 
    304      1.17   thorpej struct vfsops nullfs_vfsops = {
    305       1.1   mycroft 	MOUNT_NULL,
    306       1.1   mycroft 	nullfs_mount,
    307      1.24  wrstuden 	layerfs_start,
    308       1.1   mycroft 	nullfs_unmount,
    309      1.24  wrstuden 	layerfs_root,
    310      1.24  wrstuden 	layerfs_quotactl,
    311      1.24  wrstuden 	layerfs_statfs,
    312      1.24  wrstuden 	layerfs_sync,
    313      1.24  wrstuden 	layerfs_vget,
    314      1.24  wrstuden 	layerfs_fhtovp,
    315      1.24  wrstuden 	layerfs_vptofh,
    316      1.24  wrstuden 	layerfs_init,
    317      1.32       chs 	NULL,
    318      1.26  jdolecek 	layerfs_done,
    319      1.44    atatat 	NULL,
    320      1.18   thorpej 	NULL,				/* vfs_mountroot */
    321      1.24  wrstuden 	layerfs_checkexp,
    322      1.18   thorpej 	nullfs_vnodeopv_descs,
    323       1.1   mycroft };
    324