Home | History | Annotate | Line # | Download | only in umapfs
umap_vfsops.c revision 1.39.2.9
      1  1.39.2.9     skrll /*	$NetBSD: umap_vfsops.c,v 1.39.2.9 2005/11/10 14:10:32 skrll Exp $	*/
      2       1.2       cgd 
      3       1.1   mycroft /*
      4       1.1   mycroft  * Copyright (c) 1992, 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 donated to Berkeley by
      8       1.1   mycroft  * the UCLA Ficus project.
      9       1.1   mycroft  *
     10       1.1   mycroft  * Redistribution and use in source and binary forms, with or without
     11       1.1   mycroft  * modification, are permitted provided that the following conditions
     12       1.1   mycroft  * are met:
     13       1.1   mycroft  * 1. Redistributions of source code must retain the above copyright
     14       1.1   mycroft  *    notice, this list of conditions and the following disclaimer.
     15       1.1   mycroft  * 2. Redistributions in binary form must reproduce the above copyright
     16       1.1   mycroft  *    notice, this list of conditions and the following disclaimer in the
     17       1.1   mycroft  *    documentation and/or other materials provided with the distribution.
     18  1.39.2.3     skrll  * 3. Neither the name of the University nor the names of its contributors
     19       1.1   mycroft  *    may be used to endorse or promote products derived from this software
     20       1.1   mycroft  *    without specific prior written permission.
     21       1.1   mycroft  *
     22       1.1   mycroft  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     23       1.1   mycroft  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     24       1.1   mycroft  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     25       1.1   mycroft  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     26       1.1   mycroft  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     27       1.1   mycroft  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     28       1.1   mycroft  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     29       1.1   mycroft  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     30       1.1   mycroft  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     31       1.1   mycroft  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     32       1.1   mycroft  * SUCH DAMAGE.
     33       1.1   mycroft  *
     34       1.1   mycroft  *	from: @(#)null_vfsops.c       1.5 (Berkeley) 7/10/92
     35      1.18      fvdl  *	@(#)umap_vfsops.c	8.8 (Berkeley) 5/14/95
     36       1.1   mycroft  */
     37       1.1   mycroft 
     38       1.1   mycroft /*
     39       1.1   mycroft  * Umap Layer
     40       1.1   mycroft  * (See mount_umap(8) for a description of this layer.)
     41       1.1   mycroft  */
     42      1.32     lukem 
     43      1.32     lukem #include <sys/cdefs.h>
     44  1.39.2.9     skrll __KERNEL_RCSID(0, "$NetBSD: umap_vfsops.c,v 1.39.2.9 2005/11/10 14:10:32 skrll Exp $");
     45       1.1   mycroft 
     46       1.1   mycroft #include <sys/param.h>
     47       1.1   mycroft #include <sys/systm.h>
     48  1.39.2.3     skrll #include <sys/sysctl.h>
     49      1.18      fvdl #include <sys/proc.h>
     50       1.1   mycroft #include <sys/time.h>
     51       1.1   mycroft #include <sys/vnode.h>
     52       1.1   mycroft #include <sys/mount.h>
     53       1.1   mycroft #include <sys/namei.h>
     54       1.1   mycroft #include <sys/malloc.h>
     55       1.1   mycroft #include <miscfs/umapfs/umap.h>
     56      1.23  wrstuden #include <miscfs/genfs/layer_extern.h>
     57       1.1   mycroft 
     58  1.39.2.9     skrll int	umapfs_mount(struct mount *, const char *, void *,
     59  1.39.2.9     skrll 			  struct nameidata *, struct lwp *);
     60  1.39.2.9     skrll int	umapfs_unmount(struct mount *, int, struct lwp *);
     61       1.9  christos 
     62       1.1   mycroft /*
     63       1.1   mycroft  * Mount umap layer
     64       1.1   mycroft  */
     65       1.1   mycroft int
     66  1.39.2.5     skrll umapfs_mount(mp, path, data, ndp, l)
     67       1.1   mycroft 	struct mount *mp;
     68      1.12       cgd 	const char *path;
     69      1.12       cgd 	void *data;
     70       1.1   mycroft 	struct nameidata *ndp;
     71  1.39.2.5     skrll 	struct lwp *l;
     72       1.1   mycroft {
     73       1.1   mycroft 	struct umap_args args;
     74       1.1   mycroft 	struct vnode *lowerrootvp, *vp;
     75       1.1   mycroft 	struct umap_mount *amp;
     76  1.39.2.5     skrll 	struct proc *p = l->l_proc;
     77       1.1   mycroft 	int error;
     78      1.22  perseant #ifdef UMAPFS_DIAGNOSTIC
     79      1.22  perseant 	int i;
     80      1.22  perseant #endif
     81  1.39.2.5     skrll 
     82      1.35  christos 	if (mp->mnt_flag & MNT_GETARGS) {
     83      1.35  christos 		amp = MOUNTTOUMAPMOUNT(mp);
     84      1.35  christos 		if (amp == NULL)
     85      1.35  christos 			return EIO;
     86      1.35  christos 		args.la.target = NULL;
     87      1.35  christos 		args.nentries = amp->info_nentries;
     88      1.35  christos 		args.gnentries = amp->info_gnentries;
     89      1.35  christos 		return copyout(&args, data, sizeof(args));
     90      1.35  christos 	}
     91      1.21    bouyer 
     92      1.21    bouyer 	/* only for root */
     93      1.21    bouyer 	if ((error = suser(p->p_ucred, &p->p_acflag)) != 0)
     94      1.21    bouyer 		return error;
     95       1.1   mycroft 
     96       1.1   mycroft #ifdef UMAPFS_DIAGNOSTIC
     97      1.15  christos 	printf("umapfs_mount(mp = %p)\n", mp);
     98       1.1   mycroft #endif
     99       1.1   mycroft 
    100       1.1   mycroft 	/*
    101       1.1   mycroft 	 * Get argument
    102       1.1   mycroft 	 */
    103  1.39.2.3     skrll 	error = copyin(data, &args, sizeof(struct umap_args));
    104       1.9  christos 	if (error)
    105       1.1   mycroft 		return (error);
    106       1.1   mycroft 
    107       1.1   mycroft 	/*
    108  1.39.2.9     skrll 	 * Update is not supported
    109      1.23  wrstuden 	 */
    110  1.39.2.9     skrll 	if (mp->mnt_flag & MNT_UPDATE)
    111  1.39.2.9     skrll 		return EOPNOTSUPP;
    112      1.23  wrstuden 
    113      1.23  wrstuden 	/*
    114       1.1   mycroft 	 * Find lower node
    115       1.1   mycroft 	 */
    116      1.28     assar 	NDINIT(ndp, LOOKUP, FOLLOW|LOCKLEAF,
    117  1.39.2.5     skrll 		UIO_USERSPACE, args.umap_target, l);
    118       1.9  christos 	if ((error = namei(ndp)) != 0)
    119       1.1   mycroft 		return (error);
    120       1.1   mycroft 
    121       1.1   mycroft 	/*
    122       1.1   mycroft 	 * Sanity check on lower vnode
    123       1.1   mycroft 	 */
    124       1.1   mycroft 	lowerrootvp = ndp->ni_vp;
    125       1.1   mycroft #ifdef UMAPFS_DIAGNOSTIC
    126      1.15  christos 	printf("vp = %p, check for VDIR...\n", lowerrootvp);
    127       1.1   mycroft #endif
    128       1.1   mycroft 
    129       1.1   mycroft 	if (lowerrootvp->v_type != VDIR) {
    130       1.1   mycroft 		vput(lowerrootvp);
    131       1.1   mycroft 		return (EINVAL);
    132       1.1   mycroft 	}
    133       1.1   mycroft 
    134       1.1   mycroft #ifdef UMAPFS_DIAGNOSTIC
    135      1.15  christos 	printf("mp = %p\n", mp);
    136       1.1   mycroft #endif
    137       1.1   mycroft 
    138       1.1   mycroft 	amp = (struct umap_mount *) malloc(sizeof(struct umap_mount),
    139       1.1   mycroft 				M_UFSMNT, M_WAITOK);	/* XXX */
    140  1.39.2.3     skrll 	memset(amp, 0, sizeof(struct umap_mount));
    141       1.1   mycroft 
    142      1.34     soren 	mp->mnt_data = amp;
    143  1.39.2.3     skrll 	mp->mnt_leaf = lowerrootvp->v_mount->mnt_leaf;
    144       1.1   mycroft 	amp->umapm_vfs = lowerrootvp->v_mount;
    145      1.23  wrstuden 	if (amp->umapm_vfs->mnt_flag & MNT_LOCAL)
    146      1.23  wrstuden 		mp->mnt_flag |= MNT_LOCAL;
    147       1.1   mycroft 
    148  1.39.2.7     skrll 	/*
    149       1.1   mycroft 	 * Now copy in the number of entries and maps for umap mapping.
    150       1.1   mycroft 	 */
    151      1.30        tv 	if (args.nentries > MAPFILEENTRIES || args.gnentries > GMAPFILEENTRIES) {
    152      1.29  jdolecek 		vput(lowerrootvp);
    153      1.29  jdolecek 		return (error);
    154      1.29  jdolecek 	}
    155      1.29  jdolecek 
    156       1.1   mycroft 	amp->info_nentries = args.nentries;
    157       1.1   mycroft 	amp->info_gnentries = args.gnentries;
    158  1.39.2.7     skrll 	error = copyin(args.mapdata, amp->info_mapdata,
    159       1.1   mycroft 	    2*sizeof(u_long)*args.nentries);
    160      1.23  wrstuden 	if (error) {
    161      1.23  wrstuden 		vput(lowerrootvp);
    162       1.1   mycroft 		return (error);
    163      1.23  wrstuden 	}
    164       1.1   mycroft 
    165      1.22  perseant #ifdef UMAPFS_DIAGNOSTIC
    166      1.11  christos 	printf("umap_mount:nentries %d\n",args.nentries);
    167       1.1   mycroft 	for (i = 0; i < args.nentries; i++)
    168      1.22  perseant 		printf("   %ld maps to %ld\n", amp->info_mapdata[i][0],
    169       1.1   mycroft 	 	    amp->info_mapdata[i][1]);
    170       1.1   mycroft #endif
    171       1.1   mycroft 
    172  1.39.2.7     skrll 	error = copyin(args.gmapdata, amp->info_gmapdata,
    173      1.13     mikel 	    2*sizeof(u_long)*args.gnentries);
    174      1.23  wrstuden 	if (error) {
    175      1.23  wrstuden 		vput(lowerrootvp);
    176       1.1   mycroft 		return (error);
    177      1.23  wrstuden 	}
    178       1.1   mycroft 
    179      1.22  perseant #ifdef UMAPFS_DIAGNOSTIC
    180      1.11  christos 	printf("umap_mount:gnentries %d\n",args.gnentries);
    181       1.1   mycroft 	for (i = 0; i < args.gnentries; i++)
    182  1.39.2.7     skrll 		printf("\tgroup %ld maps to %ld\n",
    183       1.1   mycroft 		    amp->info_gmapdata[i][0],
    184       1.1   mycroft 	 	    amp->info_gmapdata[i][1]);
    185       1.1   mycroft #endif
    186       1.1   mycroft 
    187       1.1   mycroft 	/*
    188      1.23  wrstuden 	 * Make sure the mount point's sufficiently initialized
    189      1.23  wrstuden 	 * that the node create call will work.
    190       1.1   mycroft 	 */
    191      1.25     assar 	vfs_getnewfsid(mp);
    192      1.23  wrstuden 	amp->umapm_size = sizeof(struct umap_node);
    193      1.23  wrstuden 	amp->umapm_tag = VT_UMAP;
    194      1.23  wrstuden 	amp->umapm_bypass = umap_bypass;
    195      1.23  wrstuden 	amp->umapm_alloc = layer_node_alloc;	/* the default alloc is fine */
    196      1.23  wrstuden 	amp->umapm_vnodeop_p = umap_vnodeop_p;
    197      1.23  wrstuden 	simple_lock_init(&amp->umapm_hashlock);
    198      1.26        ad 	amp->umapm_node_hashtbl = hashinit(NUMAPNODECACHE, HASH_LIST, M_CACHE,
    199      1.26        ad 	    M_WAITOK, &amp->umapm_node_hash);
    200      1.23  wrstuden 
    201      1.23  wrstuden 
    202       1.1   mycroft 	/*
    203      1.23  wrstuden 	 * fix up umap node for root vnode.
    204       1.1   mycroft 	 */
    205      1.23  wrstuden 	error = layer_node_create(mp, lowerrootvp, &vp);
    206       1.1   mycroft 	/*
    207       1.1   mycroft 	 * Make sure the node alias worked
    208       1.1   mycroft 	 */
    209       1.1   mycroft 	if (error) {
    210      1.23  wrstuden 		vput(lowerrootvp);
    211       1.1   mycroft 		free(amp, M_UFSMNT);	/* XXX */
    212       1.1   mycroft 		return (error);
    213       1.1   mycroft 	}
    214      1.23  wrstuden 	/*
    215      1.23  wrstuden 	 * Unlock the node (either the lower or the alias)
    216      1.23  wrstuden 	 */
    217      1.23  wrstuden 	VOP_UNLOCK(vp, 0);
    218       1.1   mycroft 
    219       1.1   mycroft 	/*
    220       1.1   mycroft 	 * Keep a held reference to the root vnode.
    221       1.1   mycroft 	 * It is vrele'd in umapfs_unmount.
    222       1.1   mycroft 	 */
    223      1.23  wrstuden 	vp->v_flag |= VROOT;
    224      1.23  wrstuden 	amp->umapm_rootvp = vp;
    225       1.1   mycroft 
    226  1.39.2.3     skrll 	error = set_statvfs_info(path, UIO_USERSPACE, args.umap_target,
    227  1.39.2.5     skrll 	    UIO_USERSPACE, mp, l);
    228       1.1   mycroft #ifdef UMAPFS_DIAGNOSTIC
    229      1.11  christos 	printf("umapfs_mount: lower %s, alias at %s\n",
    230       1.1   mycroft 		mp->mnt_stat.f_mntfromname, mp->mnt_stat.f_mntonname);
    231       1.1   mycroft #endif
    232      1.36  christos 	return error;
    233       1.1   mycroft }
    234       1.1   mycroft 
    235       1.1   mycroft /*
    236       1.1   mycroft  * Free reference to umap layer
    237       1.1   mycroft  */
    238       1.1   mycroft int
    239  1.39.2.5     skrll umapfs_unmount(mp, mntflags, l)
    240       1.1   mycroft 	struct mount *mp;
    241       1.1   mycroft 	int mntflags;
    242  1.39.2.5     skrll 	struct lwp *l;
    243       1.1   mycroft {
    244  1.39.2.9     skrll 	struct vnode *rtvp = MOUNTTOUMAPMOUNT(mp)->umapm_rootvp;
    245       1.1   mycroft 	int error;
    246       1.1   mycroft 	int flags = 0;
    247       1.1   mycroft 
    248       1.1   mycroft #ifdef UMAPFS_DIAGNOSTIC
    249      1.15  christos 	printf("umapfs_unmount(mp = %p)\n", mp);
    250       1.1   mycroft #endif
    251       1.1   mycroft 
    252      1.18      fvdl 	if (mntflags & MNT_FORCE)
    253       1.1   mycroft 		flags |= FORCECLOSE;
    254       1.1   mycroft 
    255       1.1   mycroft 	/*
    256       1.1   mycroft 	 * Clear out buffer cache.  I don't think we
    257       1.1   mycroft 	 * ever get anything cached at this level at the
    258       1.1   mycroft 	 * moment, but who knows...
    259       1.1   mycroft 	 */
    260       1.1   mycroft #ifdef notyet
    261  1.39.2.7     skrll 	mntflushbuf(mp, 0);
    262       1.1   mycroft 	if (mntinvalbuf(mp, 1))
    263       1.1   mycroft 		return (EBUSY);
    264       1.1   mycroft #endif
    265  1.39.2.9     skrll 	if (rtvp->v_usecount > 1)
    266       1.1   mycroft 		return (EBUSY);
    267  1.39.2.9     skrll 	if ((error = vflush(mp, rtvp, flags)) != 0)
    268       1.1   mycroft 		return (error);
    269       1.1   mycroft 
    270       1.1   mycroft #ifdef UMAPFS_DIAGNOSTIC
    271  1.39.2.9     skrll 	vprint("alias root of lower", rtvp);
    272  1.39.2.7     skrll #endif
    273       1.1   mycroft 	/*
    274       1.1   mycroft 	 * Release reference on underlying root vnode
    275       1.1   mycroft 	 */
    276  1.39.2.9     skrll 	vrele(rtvp);
    277       1.1   mycroft 	/*
    278       1.1   mycroft 	 * And blow it away for future re-use
    279       1.1   mycroft 	 */
    280  1.39.2.9     skrll 	vgone(rtvp);
    281       1.1   mycroft 	/*
    282       1.1   mycroft 	 * Finally, throw away the umap_mount structure
    283       1.1   mycroft 	 */
    284       1.1   mycroft 	free(mp->mnt_data, M_UFSMNT);	/* XXX */
    285       1.1   mycroft 	mp->mnt_data = 0;
    286       1.1   mycroft 	return (0);
    287       1.1   mycroft }
    288       1.1   mycroft 
    289  1.39.2.3     skrll SYSCTL_SETUP(sysctl_vfs_umap_setup, "sysctl vfs.umap subtree setup")
    290  1.39.2.3     skrll {
    291  1.39.2.3     skrll 
    292  1.39.2.3     skrll 	sysctl_createv(clog, 0, NULL, NULL,
    293  1.39.2.3     skrll 		       CTLFLAG_PERMANENT,
    294  1.39.2.3     skrll 		       CTLTYPE_NODE, "vfs", NULL,
    295  1.39.2.3     skrll 		       NULL, 0, NULL, 0,
    296  1.39.2.3     skrll 		       CTL_VFS, CTL_EOL);
    297  1.39.2.3     skrll 	sysctl_createv(clog, 0, NULL, NULL,
    298  1.39.2.3     skrll 		       CTLFLAG_PERMANENT,
    299  1.39.2.3     skrll 		       CTLTYPE_NODE, "umap",
    300  1.39.2.3     skrll 		       SYSCTL_DESCR("UID/GID remapping file system"),
    301  1.39.2.3     skrll 		       NULL, 0, NULL, 0,
    302  1.39.2.3     skrll 		       CTL_VFS, 10, CTL_EOL);
    303  1.39.2.3     skrll 	/*
    304  1.39.2.3     skrll 	 * XXX the "10" above could be dynamic, thereby eliminating
    305  1.39.2.3     skrll 	 * one more instance of the "number to vfs" mapping problem,
    306  1.39.2.3     skrll 	 * but "10" is the order as taken from sys/mount.h
    307  1.39.2.3     skrll 	 */
    308  1.39.2.3     skrll }
    309  1.39.2.3     skrll 
    310      1.27  jdolecek extern const struct vnodeopv_desc umapfs_vnodeop_opv_desc;
    311      1.17   thorpej 
    312      1.27  jdolecek const struct vnodeopv_desc * const umapfs_vnodeopv_descs[] = {
    313      1.17   thorpej 	&umapfs_vnodeop_opv_desc,
    314      1.17   thorpej 	NULL,
    315      1.17   thorpej };
    316      1.17   thorpej 
    317      1.16   thorpej struct vfsops umapfs_vfsops = {
    318       1.1   mycroft 	MOUNT_UMAP,
    319       1.1   mycroft 	umapfs_mount,
    320      1.23  wrstuden 	layerfs_start,
    321       1.1   mycroft 	umapfs_unmount,
    322      1.23  wrstuden 	layerfs_root,
    323      1.23  wrstuden 	layerfs_quotactl,
    324  1.39.2.3     skrll 	layerfs_statvfs,
    325      1.23  wrstuden 	layerfs_sync,
    326      1.23  wrstuden 	layerfs_vget,
    327      1.23  wrstuden 	layerfs_fhtovp,
    328      1.23  wrstuden 	layerfs_vptofh,
    329      1.23  wrstuden 	layerfs_init,
    330      1.31       chs 	NULL,
    331      1.24  jdolecek 	layerfs_done,
    332      1.17   thorpej 	NULL,				/* vfs_mountroot */
    333  1.39.2.3     skrll 	layerfs_snapshot,
    334  1.39.2.6     skrll 	vfs_stdextattrctl,
    335      1.17   thorpej 	umapfs_vnodeopv_descs,
    336       1.1   mycroft };
    337  1.39.2.8     skrll VFS_ATTACH(umapfs_vfsops);
    338