Home | History | Annotate | Line # | Download | only in overlay
overlay_vfsops.c revision 1.56.14.1
      1  1.56.14.1    bouyer /*	$NetBSD: overlay_vfsops.c,v 1.56.14.1 2014/04/21 10:14:18 bouyer Exp $	*/
      2        1.1  wrstuden 
      3        1.1  wrstuden /*
      4        1.1  wrstuden  * Copyright (c) 1999, 2000 National Aeronautics & Space Administration
      5        1.1  wrstuden  * All rights reserved.
      6        1.1  wrstuden  *
      7        1.1  wrstuden  * This software was written by William Studenmund of the
      8        1.7       wiz  * Numerical Aerospace Simulation Facility, NASA Ames Research Center.
      9        1.1  wrstuden  *
     10        1.1  wrstuden  * Redistribution and use in source and binary forms, with or without
     11        1.1  wrstuden  * modification, are permitted provided that the following conditions
     12        1.1  wrstuden  * are met:
     13        1.1  wrstuden  * 1. Redistributions of source code must retain the above copyright
     14        1.1  wrstuden  *    notice, this list of conditions and the following disclaimer.
     15        1.1  wrstuden  * 2. Redistributions in binary form must reproduce the above copyright
     16        1.1  wrstuden  *    notice, this list of conditions and the following disclaimer in the
     17        1.1  wrstuden  *    documentation and/or other materials provided with the distribution.
     18        1.2     soren  * 3. Neither the name of the National Aeronautics & Space Administration
     19        1.1  wrstuden  *    nor the names of its contributors may be used to endorse or promote
     20        1.1  wrstuden  *    products derived from this software without specific prior written
     21        1.1  wrstuden  *    permission.
     22        1.1  wrstuden  *
     23        1.1  wrstuden  * THIS SOFTWARE IS PROVIDED BY THE NATIONAL AERONAUTICS & SPACE ADMINISTRATION
     24        1.1  wrstuden  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     25        1.1  wrstuden  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     26        1.1  wrstuden  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE ADMINISTRATION OR CONTRIB-
     27        1.1  wrstuden  * UTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
     28        1.1  wrstuden  * OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     29        1.1  wrstuden  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     30        1.1  wrstuden  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     31        1.1  wrstuden  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     32        1.1  wrstuden  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     33        1.1  wrstuden  * POSSIBILITY OF SUCH DAMAGE.
     34        1.1  wrstuden  */
     35        1.1  wrstuden /*
     36        1.1  wrstuden  * Copyright (c) 1992, 1993, 1995
     37        1.1  wrstuden  *	The Regents of the University of California.  All rights reserved.
     38        1.1  wrstuden  *
     39        1.1  wrstuden  * This code is derived from software donated to Berkeley by
     40        1.1  wrstuden  * Jan-Simon Pendry.
     41        1.1  wrstuden  *
     42        1.1  wrstuden  * Redistribution and use in source and binary forms, with or without
     43        1.1  wrstuden  * modification, are permitted provided that the following conditions
     44        1.1  wrstuden  * are met:
     45        1.1  wrstuden  * 1. Redistributions of source code must retain the above copyright
     46        1.1  wrstuden  *    notice, this list of conditions and the following disclaimer.
     47        1.1  wrstuden  * 2. Redistributions in binary form must reproduce the above copyright
     48        1.1  wrstuden  *    notice, this list of conditions and the following disclaimer in the
     49        1.1  wrstuden  *    documentation and/or other materials provided with the distribution.
     50       1.18       agc  * 3. Neither the name of the University nor the names of its contributors
     51        1.1  wrstuden  *    may be used to endorse or promote products derived from this software
     52        1.1  wrstuden  *    without specific prior written permission.
     53        1.1  wrstuden  *
     54        1.1  wrstuden  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     55        1.1  wrstuden  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     56        1.1  wrstuden  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     57        1.1  wrstuden  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     58        1.1  wrstuden  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     59        1.1  wrstuden  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     60        1.1  wrstuden  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     61        1.1  wrstuden  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     62        1.1  wrstuden  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     63        1.1  wrstuden  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     64        1.1  wrstuden  * SUCH DAMAGE.
     65        1.1  wrstuden  *
     66        1.1  wrstuden  *	from: Id: lofs_vfsops.c,v 1.9 1992/05/30 10:26:24 jsp Exp
     67        1.1  wrstuden  *	from: @(#)lofs_vfsops.c	1.2 (Berkeley) 6/18/92
     68        1.1  wrstuden  *	@(#)null_vfsops.c	8.7 (Berkeley) 5/14/95
     69        1.1  wrstuden  */
     70        1.1  wrstuden 
     71        1.1  wrstuden /*
     72        1.7       wiz  * Overlay Layer
     73        1.7       wiz  * (See overlay_vnops.c for a description of what this does.)
     74        1.1  wrstuden  */
     75        1.9     lukem 
     76        1.9     lukem #include <sys/cdefs.h>
     77  1.56.14.1    bouyer __KERNEL_RCSID(0, "$NetBSD: overlay_vfsops.c,v 1.56.14.1 2014/04/21 10:14:18 bouyer Exp $");
     78        1.1  wrstuden 
     79        1.1  wrstuden #include <sys/param.h>
     80        1.1  wrstuden #include <sys/systm.h>
     81       1.19    atatat #include <sys/sysctl.h>
     82        1.1  wrstuden #include <sys/time.h>
     83        1.1  wrstuden #include <sys/proc.h>
     84        1.1  wrstuden #include <sys/vnode.h>
     85        1.1  wrstuden #include <sys/mount.h>
     86        1.1  wrstuden #include <sys/namei.h>
     87        1.1  wrstuden #include <sys/malloc.h>
     88       1.51    rumble #include <sys/module.h>
     89        1.1  wrstuden #include <miscfs/overlay/overlay.h>
     90        1.1  wrstuden #include <miscfs/genfs/layer_extern.h>
     91        1.1  wrstuden 
     92       1.54        ad MODULE(MODULE_CLASS_VFS, overlay, "layerfs");
     93       1.51    rumble 
     94       1.43     pooka VFS_PROTOS(ov);
     95        1.1  wrstuden 
     96       1.53    rumble static struct sysctllog *overlay_sysctl_log;
     97       1.53    rumble 
     98        1.1  wrstuden #define	NOVERLAYNODECACHE	16
     99        1.1  wrstuden 
    100        1.1  wrstuden /*
    101        1.1  wrstuden  * Mount overlay layer
    102        1.1  wrstuden  */
    103        1.1  wrstuden int
    104       1.45     pooka ov_mount(struct mount *mp, const char *path, void *data, size_t *data_len)
    105        1.1  wrstuden {
    106       1.45     pooka 	struct lwp *l = curlwp;
    107        1.1  wrstuden 	int error = 0;
    108       1.40       dsl 	struct overlay_args *args = data;
    109        1.1  wrstuden 	struct vnode *lowerrootvp, *vp;
    110        1.1  wrstuden 	struct overlay_mount *nmp;
    111        1.1  wrstuden 	struct layer_mount *lmp;
    112        1.1  wrstuden 
    113        1.1  wrstuden #ifdef OVERLAYFS_DIAGNOSTIC
    114        1.1  wrstuden 	printf("ov_mount(mp = %p)\n", mp);
    115        1.1  wrstuden #endif
    116        1.1  wrstuden 
    117  1.56.14.1    bouyer 	if (args == NULL)
    118  1.56.14.1    bouyer 		return EINVAL;
    119       1.40       dsl 	if (*data_len < sizeof *args)
    120       1.40       dsl 		return EINVAL;
    121       1.40       dsl 
    122       1.12  christos 	if (mp->mnt_flag & MNT_GETARGS) {
    123       1.12  christos 		lmp = MOUNTTOLAYERMOUNT(mp);
    124       1.12  christos 		if (lmp == NULL)
    125       1.12  christos 			return EIO;
    126       1.40       dsl 		args->la.target = NULL;
    127       1.40       dsl 		*data_len = sizeof *args;
    128       1.40       dsl 		return 0;
    129       1.12  christos 	}
    130        1.1  wrstuden 
    131        1.1  wrstuden 	/*
    132       1.32      jmmv 	 * Update is not supported
    133        1.1  wrstuden 	 */
    134       1.32      jmmv 	if (mp->mnt_flag & MNT_UPDATE)
    135       1.32      jmmv 		return EOPNOTSUPP;
    136        1.1  wrstuden 
    137        1.1  wrstuden 	/*
    138        1.1  wrstuden 	 * Find lower node
    139        1.1  wrstuden 	 */
    140        1.1  wrstuden 	lowerrootvp = mp->mnt_vnodecovered;
    141       1.56   hannken 	vref(lowerrootvp);
    142       1.56   hannken 	if ((error = vn_lock(lowerrootvp, LK_EXCLUSIVE | LK_RETRY))) {
    143       1.56   hannken 		vrele(lowerrootvp);
    144        1.1  wrstuden 		return (error);
    145       1.56   hannken 	}
    146        1.1  wrstuden 
    147        1.1  wrstuden 	/*
    148        1.1  wrstuden 	 * First cut at fixing up upper mount point
    149        1.1  wrstuden 	 */
    150        1.1  wrstuden 	nmp = (struct overlay_mount *) malloc(sizeof(struct overlay_mount),
    151        1.1  wrstuden 				M_UFSMNT, M_WAITOK);	/* XXX */
    152       1.23       jrf 	memset(nmp, 0, sizeof(struct overlay_mount));
    153        1.1  wrstuden 
    154       1.11     soren 	mp->mnt_data = nmp;
    155        1.1  wrstuden 	nmp->ovm_vfs = lowerrootvp->v_mount;
    156        1.1  wrstuden 	if (nmp->ovm_vfs->mnt_flag & MNT_LOCAL)
    157        1.1  wrstuden 		mp->mnt_flag |= MNT_LOCAL;
    158        1.1  wrstuden 
    159        1.1  wrstuden 	/*
    160        1.1  wrstuden 	 * Make sure that the mount point is sufficiently initialized
    161        1.1  wrstuden 	 * that the node create call will work.
    162        1.1  wrstuden 	 */
    163        1.4     assar 	vfs_getnewfsid(mp);
    164        1.1  wrstuden 
    165        1.1  wrstuden 	nmp->ovm_size = sizeof (struct overlay_node);
    166        1.1  wrstuden 	nmp->ovm_tag = VT_OVERLAY;
    167        1.1  wrstuden 	nmp->ovm_bypass = layer_bypass;
    168        1.1  wrstuden 	nmp->ovm_alloc = layer_node_alloc;	/* the default alloc is fine */
    169        1.1  wrstuden 	nmp->ovm_vnodeop_p = overlay_vnodeop_p;
    170       1.44        ad 	mutex_init(&nmp->ovm_hashlock, MUTEX_DEFAULT, IPL_NONE);
    171       1.50        ad 	nmp->ovm_node_hashtbl = hashinit(NOVERLAYNODECACHE, HASH_LIST, true,
    172       1.50        ad 	     &nmp->ovm_node_hash);
    173        1.1  wrstuden 
    174        1.1  wrstuden 	/*
    175        1.1  wrstuden 	 * Fix up overlay node for root vnode
    176        1.1  wrstuden 	 */
    177        1.1  wrstuden 	error = layer_node_create(mp, lowerrootvp, &vp);
    178        1.1  wrstuden 	/*
    179        1.1  wrstuden 	 * Make sure the fixup worked
    180        1.1  wrstuden 	 */
    181        1.1  wrstuden 	if (error) {
    182        1.1  wrstuden 		vput(lowerrootvp);
    183       1.50        ad 		hashdone(nmp->ovm_node_hashtbl, HASH_LIST, nmp->ovm_node_hash);
    184        1.1  wrstuden 		free(nmp, M_UFSMNT);	/* XXX */
    185        1.1  wrstuden 		return (error);
    186        1.1  wrstuden 	}
    187        1.1  wrstuden 	/*
    188        1.1  wrstuden 	 * Unlock the node
    189        1.1  wrstuden 	 */
    190       1.55   hannken 	VOP_UNLOCK(vp);
    191        1.1  wrstuden 
    192        1.1  wrstuden 	/*
    193        1.1  wrstuden 	 * Keep a held reference to the root vnode.
    194        1.1  wrstuden 	 * It is vrele'd in ov_unmount.
    195        1.1  wrstuden 	 */
    196       1.44        ad 	vp->v_vflag |= VV_ROOT;
    197        1.1  wrstuden 	nmp->ovm_rootvp = vp;
    198        1.1  wrstuden 
    199       1.40       dsl 	error = set_statvfs_info(path, UIO_USERSPACE, args->la.target,
    200       1.41     pooka 	    UIO_USERSPACE, mp->mnt_op->vfs_name, mp, l);
    201        1.1  wrstuden #ifdef OVERLAYFS_DIAGNOSTIC
    202        1.1  wrstuden 	printf("ov_mount: lower %s, alias at %s\n",
    203        1.1  wrstuden 	    mp->mnt_stat.f_mntfromname, mp->mnt_stat.f_mntonname);
    204        1.1  wrstuden #endif
    205       1.13  christos 	return error;
    206        1.1  wrstuden }
    207        1.1  wrstuden 
    208        1.1  wrstuden /*
    209        1.1  wrstuden  * Free reference to overlay layer
    210        1.1  wrstuden  */
    211        1.1  wrstuden int
    212       1.45     pooka ov_unmount(struct mount *mp, int mntflags)
    213        1.1  wrstuden {
    214        1.1  wrstuden 	struct vnode *overlay_rootvp = MOUNTTOOVERLAYMOUNT(mp)->ovm_rootvp;
    215       1.50        ad 	struct overlay_mount *omp;
    216        1.1  wrstuden 	int error;
    217        1.1  wrstuden 	int flags = 0;
    218        1.1  wrstuden 
    219        1.1  wrstuden #ifdef OVERLAYFS_DIAGNOSTIC
    220        1.1  wrstuden 	printf("ov_unmount(mp = %p)\n", mp);
    221        1.1  wrstuden #endif
    222        1.1  wrstuden 
    223        1.1  wrstuden 	if (mntflags & MNT_FORCE)
    224        1.1  wrstuden 		flags |= FORCECLOSE;
    225        1.1  wrstuden 
    226       1.39     pooka 	if (overlay_rootvp->v_usecount > 1 && (mntflags & MNT_FORCE) == 0)
    227        1.1  wrstuden 		return (EBUSY);
    228        1.1  wrstuden 	if ((error = vflush(mp, overlay_rootvp, flags)) != 0)
    229        1.1  wrstuden 		return (error);
    230        1.1  wrstuden 
    231        1.1  wrstuden #ifdef OVERLAYFS_DIAGNOSTIC
    232        1.1  wrstuden 	vprint("alias root of lower", overlay_rootvp);
    233       1.29     perry #endif
    234        1.1  wrstuden 	/*
    235       1.47        ad 	 * Blow it away for future re-use
    236        1.1  wrstuden 	 */
    237        1.1  wrstuden 	vgone(overlay_rootvp);
    238        1.1  wrstuden 	/*
    239        1.1  wrstuden 	 * Finally, throw away the overlay_mount structure
    240        1.1  wrstuden 	 */
    241       1.50        ad 	omp = mp->mnt_data;
    242       1.50        ad 	mutex_destroy(&omp->ovm_hashlock);
    243       1.50        ad 	hashdone(omp->ovm_node_hashtbl, HASH_LIST, omp->ovm_node_hash);
    244       1.50        ad 	free(omp, M_UFSMNT);	/* XXX */
    245       1.52    simonb 	mp->mnt_data = NULL;
    246        1.1  wrstuden 	return 0;
    247        1.1  wrstuden }
    248        1.1  wrstuden 
    249        1.6  jdolecek extern const struct vnodeopv_desc overlay_vnodeop_opv_desc;
    250        1.1  wrstuden 
    251        1.6  jdolecek const struct vnodeopv_desc * const ov_vnodeopv_descs[] = {
    252        1.1  wrstuden 	&overlay_vnodeop_opv_desc,
    253        1.1  wrstuden 	NULL,
    254        1.1  wrstuden };
    255        1.1  wrstuden 
    256        1.1  wrstuden struct vfsops overlay_vfsops = {
    257        1.1  wrstuden 	MOUNT_OVERLAY,
    258       1.40       dsl 	sizeof (struct overlay_args),
    259        1.1  wrstuden 	ov_mount,
    260        1.1  wrstuden 	layerfs_start,
    261        1.1  wrstuden 	ov_unmount,
    262        1.1  wrstuden 	layerfs_root,
    263        1.1  wrstuden 	layerfs_quotactl,
    264       1.22  christos 	layerfs_statvfs,
    265        1.1  wrstuden 	layerfs_sync,
    266        1.1  wrstuden 	layerfs_vget,
    267        1.1  wrstuden 	layerfs_fhtovp,
    268        1.1  wrstuden 	layerfs_vptofh,
    269        1.1  wrstuden 	layerfs_init,
    270        1.8       chs 	NULL,
    271        1.3  jdolecek 	layerfs_done,
    272        1.1  wrstuden 	NULL,				/* vfs_mountroot */
    273       1.26  wrstuden 	layerfs_snapshot,
    274       1.28   thorpej 	vfs_stdextattrctl,
    275       1.42     pooka 	(void *)eopnotsupp,		/* vfs_suspendctl */
    276       1.48  dholland 	layerfs_renamelock_enter,
    277       1.48  dholland 	layerfs_renamelock_exit,
    278       1.49        ad 	(void *)eopnotsupp,
    279        1.1  wrstuden 	ov_vnodeopv_descs,
    280       1.34  christos 	0,
    281       1.34  christos 	{ NULL, NULL },
    282        1.1  wrstuden };
    283       1.51    rumble 
    284       1.51    rumble static int
    285       1.51    rumble overlay_modcmd(modcmd_t cmd, void *arg)
    286       1.51    rumble {
    287       1.53    rumble 	int error;
    288       1.51    rumble 
    289       1.51    rumble 	switch (cmd) {
    290       1.51    rumble 	case MODULE_CMD_INIT:
    291       1.53    rumble 		error = vfs_attach(&overlay_vfsops);
    292       1.53    rumble 		if (error != 0)
    293       1.53    rumble 			break;
    294       1.53    rumble 		sysctl_createv(&overlay_sysctl_log, 0, NULL, NULL,
    295       1.53    rumble 			       CTLFLAG_PERMANENT, CTLTYPE_NODE, "vfs", NULL,
    296       1.53    rumble 			       NULL, 0, NULL, 0,
    297       1.53    rumble 			       CTL_VFS, CTL_EOL);
    298       1.53    rumble 		sysctl_createv(&overlay_sysctl_log, 0, NULL, NULL,
    299       1.53    rumble 			       CTLFLAG_PERMANENT, CTLTYPE_NODE, "overlay",
    300       1.53    rumble 			       SYSCTL_DESCR("Overlay file system"),
    301       1.53    rumble 			       NULL, 0, NULL, 0,
    302       1.53    rumble 			       CTL_VFS, CTL_CREATE, CTL_EOL);
    303       1.53    rumble 		break;
    304       1.51    rumble 	case MODULE_CMD_FINI:
    305       1.53    rumble 		error = vfs_detach(&overlay_vfsops);
    306       1.53    rumble 		if (error != 0)
    307       1.53    rumble 			break;
    308       1.53    rumble 		sysctl_teardown(&overlay_sysctl_log);
    309       1.53    rumble 		break;
    310       1.51    rumble 	default:
    311       1.53    rumble 		error = ENOTTY;
    312       1.53    rumble 		break;
    313       1.51    rumble 	}
    314       1.53    rumble 
    315       1.53    rumble 	return (error);
    316       1.51    rumble }
    317