Home | History | Annotate | Line # | Download | only in puffs
puffs_vfsops.c revision 1.16
      1 /*	$NetBSD: puffs_vfsops.c,v 1.16 2006/12/10 22:33:31 pooka Exp $	*/
      2 
      3 /*
      4  * Copyright (c) 2005, 2006  Antti Kantee.  All Rights Reserved.
      5  *
      6  * Development of this software was supported by the
      7  * Google Summer of Code program and the Ulla Tuominen Foundation.
      8  * The Google SoC project was mentored by Bill Studenmund.
      9  *
     10  * Redistribution and use in source and binary forms, with or without
     11  * modification, are permitted provided that the following conditions
     12  * are met:
     13  * 1. Redistributions of source code must retain the above copyright
     14  *    notice, this list of conditions and the following disclaimer.
     15  * 2. Redistributions in binary form must reproduce the above copyright
     16  *    notice, this list of conditions and the following disclaimer in the
     17  *    documentation and/or other materials provided with the distribution.
     18  * 3. The name of the company nor the name of the author may be used to
     19  *    endorse or promote products derived from this software without specific
     20  *    prior written permission.
     21  *
     22  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
     23  * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
     24  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
     25  * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
     26  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     27  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
     28  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     29  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     30  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     31  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     32  * SUCH DAMAGE.
     33  */
     34 
     35 #include <sys/cdefs.h>
     36 __KERNEL_RCSID(0, "$NetBSD: puffs_vfsops.c,v 1.16 2006/12/10 22:33:31 pooka Exp $");
     37 
     38 #include <sys/param.h>
     39 #include <sys/mount.h>
     40 #include <sys/malloc.h>
     41 #include <sys/extattr.h>
     42 #include <sys/queue.h>
     43 #include <sys/vnode.h>
     44 #include <sys/dirent.h>
     45 #include <sys/kauth.h>
     46 
     47 #include <lib/libkern/libkern.h>
     48 
     49 #include <fs/puffs/puffs_msgif.h>
     50 #include <fs/puffs/puffs_sys.h>
     51 
     52 VFS_PROTOS(puffs);
     53 
     54 MALLOC_DEFINE(M_PUFFS, "puffs", "pass-to-userspace file system structures");
     55 
     56 int
     57 puffs_mount(struct mount *mp, const char *path, void *data,
     58 	    struct nameidata *ndp, struct lwp *l)
     59 {
     60 	struct puffs_mount *pmp;
     61 	struct puffs_args args;
     62 	char namebuf[PUFFSNAMESIZE+sizeof("puffs:")+1]; /* do I get a prize? */
     63 	int error;
     64 
     65 	if (mp->mnt_flag & MNT_GETARGS) {
     66 		pmp = MPTOPUFFSMP(mp);
     67 		return copyout(&pmp->pmp_args, data, sizeof(struct puffs_args));
     68 	}
     69 
     70 	/* update is not supported currently */
     71 	if (mp->mnt_flag & MNT_UPDATE)
     72 		return EOPNOTSUPP;
     73 
     74 	/*
     75 	 * We need the file system name
     76 	 */
     77 	if (!data)
     78 		return EINVAL;
     79 
     80 	error = copyin(data, &args, sizeof(struct puffs_args));
     81 	if (error)
     82 		return error;
     83 
     84 	/* nuke spy bits */
     85 	args.pa_flags &= PUFFS_KFLAG_MASK;
     86 
     87 	/* build real name */
     88 	(void)strlcpy(namebuf, "puffs:", sizeof(namebuf));
     89 	(void)strlcat(namebuf, args.pa_name, sizeof(namebuf));
     90 
     91 	/* inform user server if it got the max request size it wanted */
     92 	if (args.pa_maxreqlen == 0 || args.pa_maxreqlen > PUFFS_REQ_MAXSIZE)
     93 		args.pa_maxreqlen = PUFFS_REQ_MAXSIZE;
     94 	else if (args.pa_maxreqlen < PUFFS_REQSTRUCT_MAX)
     95 		args.pa_maxreqlen = PUFFS_REQSTRUCT_MAX;
     96 	(void)strlcpy(args.pa_name, namebuf, sizeof(args.pa_name));
     97 
     98 	error = copyout(&args, data, sizeof(struct puffs_args));
     99 	if (error)
    100 		return error;
    101 
    102 	error = set_statvfs_info(path, UIO_USERSPACE, namebuf,
    103 	    UIO_SYSSPACE, mp, l);
    104 	if (error)
    105 		return error;
    106 	mp->mnt_stat.f_iosize = DEV_BSIZE;
    107 
    108 	MALLOC(pmp, struct puffs_mount *, sizeof(struct puffs_mount),
    109 	    M_PUFFS, M_WAITOK | M_ZERO);
    110 
    111 	mp->mnt_fs_bshift = DEV_BSHIFT;
    112 	mp->mnt_dev_bshift = DEV_BSHIFT;
    113 	mp->mnt_flag &= ~MNT_LOCAL; /* we don't really know, so ... */
    114 	mp->mnt_data = pmp;
    115 
    116 	pmp->pmp_status = PUFFSTAT_MOUNTING;
    117 	pmp->pmp_nextreq = 0;
    118 	pmp->pmp_mp = mp;
    119 	pmp->pmp_req_maxsize = args.pa_maxreqlen;
    120 	pmp->pmp_args = args;
    121 
    122 	/*
    123 	 * Inform the fileops processing code that we have a mountpoint.
    124 	 * If it doesn't know about anyone with our pid/fd having the
    125 	 * device open, punt
    126 	 */
    127 	if (puffs_setpmp(l->l_proc->p_pid, args.pa_fd, pmp)) {
    128 		FREE(pmp, M_PUFFS);
    129 		return ENOENT;
    130 	}
    131 
    132 	simple_lock_init(&pmp->pmp_lock);
    133 	TAILQ_INIT(&pmp->pmp_req_touser);
    134 	TAILQ_INIT(&pmp->pmp_req_replywait);
    135 	TAILQ_INIT(&pmp->pmp_req_sizepark);
    136 
    137 	DPRINTF(("puffs_mount: mount point at %p, puffs specific at %p\n",
    138 	    mp, MPTOPUFFSMP(mp)));
    139 
    140 	vfs_getnewfsid(mp);
    141 
    142 	return 0;
    143 }
    144 
    145 /*
    146  * This is called from the first "Hello, I'm alive" ioctl
    147  * from userspace.
    148  */
    149 int
    150 puffs_start2(struct puffs_mount *pmp, struct puffs_startreq *sreq)
    151 {
    152 	struct puffs_node *pn;
    153 	struct mount *mp;
    154 
    155 	mp = PMPTOMP(pmp);
    156 
    157 	simple_lock(&pmp->pmp_lock);
    158 
    159 	/*
    160 	 * if someone has issued a VFS_ROOT() already, fill in the
    161 	 * vnode cookie.
    162 	 */
    163 	pn = NULL;
    164 	if (pmp->pmp_root) {
    165 		pn = VPTOPP(pmp->pmp_root);
    166 		pn->pn_cookie = sreq->psr_cookie;
    167 	}
    168 
    169 	/* We're good to fly */
    170 	pmp->pmp_rootcookie = sreq->psr_cookie;
    171 	pmp->pmp_status = PUFFSTAT_RUNNING;
    172 	simple_unlock(&pmp->pmp_lock);
    173 
    174 	/* do the VFS_STATVFS() we missed out on in sys_mount() */
    175 	copy_statvfs_info(&sreq->psr_sb, mp);
    176 	(void)memcpy(&mp->mnt_stat, &sreq->psr_sb, sizeof(mp->mnt_stat));
    177 	mp->mnt_stat.f_iosize = DEV_BSIZE;
    178 
    179 	DPRINTF(("puffs_start2: root vp %p, cur root pnode %p, cookie %p\n",
    180 	    pmp->pmp_root, pn, sreq->psr_cookie));
    181 
    182 	return 0;
    183 }
    184 
    185 int
    186 puffs_start(struct mount *mp, int flags, struct lwp *l)
    187 {
    188 
    189 	/*
    190 	 * This cannot travel to userspace, as this is called from
    191 	 * the kernel context of the process doing mount(2).  But
    192 	 * it's probably a safe bet that the process doing mount(2)
    193 	 * realizes it needs to start the filesystem also...
    194 	 */
    195 	return 0;
    196 }
    197 
    198 int
    199 puffs_unmount(struct mount *mp, int mntflags, struct lwp *l)
    200 {
    201 	struct puffs_mount *pmp;
    202 	int error, force;
    203 
    204 	PUFFS_VFSREQ(unmount);
    205 
    206 	error = 0;
    207 	force = mntflags & MNT_FORCE;
    208 	pmp = MPTOPUFFSMP(mp);
    209 
    210 	DPRINTF(("puffs_unmount: detach filesystem from vfs, current "
    211 	    "status 0x%x\n", pmp->pmp_status));
    212 
    213 	/*
    214 	 * flush all the vnodes.  VOP_RECLAIM() takes care that the
    215 	 * root vnode does not get flushed until unmount.  The
    216 	 * userspace root node cookie is stored in the mount
    217 	 * structure, so we can always re-instantiate a root vnode,
    218 	 * should userspace unmount decide it doesn't want to
    219 	 * cooperate.
    220 	 */
    221 	error = vflush(mp, NULLVP, force ? FORCECLOSE : 0);
    222 	if (error)
    223 		goto out;
    224 
    225 	/*
    226 	 * If we are not DYING, we should ask userspace's opinion
    227 	 * about the situation
    228 	 */
    229 	simple_lock(&pmp->pmp_lock);
    230 	if (pmp->pmp_status != PUFFSTAT_DYING) {
    231 		pmp->pmp_unmounting = 1;
    232 		simple_unlock(&pmp->pmp_lock);
    233 
    234 		unmount_arg.pvfsr_flags = mntflags;
    235 		unmount_arg.pvfsr_pid = puffs_lwp2pid(l);
    236 
    237 		error = puffs_vfstouser(pmp, PUFFS_VFS_UNMOUNT,
    238 		     &unmount_arg, sizeof(unmount_arg));
    239 		DPRINTF(("puffs_unmount: error %d force %d\n", error, force));
    240 
    241 		simple_lock(&pmp->pmp_lock);
    242 		pmp->pmp_unmounting = 0;
    243 		wakeup(&pmp->pmp_unmounting);
    244 	}
    245 
    246 	/*
    247 	 * if userspace cooperated or we really need to die,
    248 	 * screw what userland thinks and just die.
    249 	 */
    250 	if (error == 0 || force) {
    251 		pmp->pmp_status = PUFFSTAT_DYING;
    252 		puffs_nukebypmp(pmp);
    253 		simple_unlock(&pmp->pmp_lock);
    254 		FREE(pmp, M_PUFFS);
    255 		error = 0;
    256 	} else {
    257 		simple_unlock(&pmp->pmp_lock);
    258 	}
    259 
    260  out:
    261 	DPRINTF(("puffs_unmount: return %d\n", error));
    262 	return error;
    263 }
    264 
    265 /*
    266  * This doesn't need to travel to userspace
    267  */
    268 int
    269 puffs_root(struct mount *mp, struct vnode **vpp)
    270 {
    271 	struct puffs_mount *pmp;
    272 	struct puffs_node *pn;
    273 	struct vnode *vp;
    274 
    275 	pmp = MPTOPUFFSMP(mp);
    276 
    277 	/*
    278 	 * pmp_lock must be held if vref()'ing or vrele()'ing the
    279 	 * root vnode.
    280 	 */
    281 	simple_lock(&pmp->pmp_lock);
    282 	vp = pmp->pmp_root;
    283 	if (vp) {
    284 		pn = VPTOPP(vp);
    285 		if (pn->pn_stat & PNODE_INACTIVE)  {
    286 			if (vget(vp, LK_NOWAIT)) {
    287 				pmp->pmp_root = NULL;
    288 				goto grabnew;
    289 			}
    290 		} else
    291 			vref(vp);
    292 		simple_unlock(&pmp->pmp_lock);
    293 		vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
    294 		*vpp = vp;
    295 		return 0;
    296 	}
    297  grabnew:
    298 	simple_unlock(&pmp->pmp_lock);
    299 
    300 	/*
    301 	 * So, didn't have the magic root vnode available.
    302 	 * No matter, grab another an stuff it with the cookie.
    303 	 */
    304 	if (puffs_getvnode(mp, pmp->pmp_rootcookie, VDIR, 0, 0, &vp))
    305 		panic("sloppy programming");
    306 
    307 	simple_lock(&pmp->pmp_lock);
    308 	/*
    309 	 * check if by mysterious force someone else created a root
    310 	 * vnode while we were executing.
    311 	 */
    312 	if (pmp->pmp_root) {
    313 		vref(pmp->pmp_root);
    314 		simple_unlock(&pmp->pmp_lock);
    315 		puffs_putvnode(vp);
    316 		vn_lock(pmp->pmp_root, LK_EXCLUSIVE | LK_RETRY);
    317 		*vpp = pmp->pmp_root;
    318 		return 0;
    319 	}
    320 
    321 	/* store cache */
    322 	vp->v_flag = VROOT;
    323 	pmp->pmp_root = vp;
    324 	simple_unlock(&pmp->pmp_lock);
    325 
    326 	vn_lock(pmp->pmp_root, LK_EXCLUSIVE | LK_RETRY);
    327 
    328 	*vpp = vp;
    329 	return 0;
    330 }
    331 
    332 int
    333 puffs_quotactl(struct mount *mp, int cmd, uid_t uid, void *arg, struct lwp *l)
    334 {
    335 
    336 	return EOPNOTSUPP;
    337 }
    338 
    339 int
    340 puffs_statvfs(struct mount *mp, struct statvfs *sbp, struct lwp *l)
    341 {
    342 	struct puffs_vfsreq_statvfs *statvfs_arg; /* too big for stack */
    343 	struct puffs_mount *pmp;
    344 	int error = 0;
    345 
    346 	pmp = MPTOPUFFSMP(mp);
    347 
    348 	/*
    349 	 * If we are mounting, it means that the userspace counterpart
    350 	 * is calling mount(2), but mount(2) also calls statvfs.  So
    351 	 * requesting statvfs from userspace would mean a deadlock.
    352 	 * Compensate.
    353 	 */
    354 	if (pmp->pmp_status == PUFFSTAT_MOUNTING)
    355 		return EINPROGRESS;
    356 
    357 	/* too big for stack */
    358 	MALLOC(statvfs_arg, struct puffs_vfsreq_statvfs *,
    359 	    sizeof(struct puffs_vfsreq_statvfs), M_PUFFS, M_WAITOK | M_ZERO);
    360 	statvfs_arg->pvfsr_pid = puffs_lwp2pid(l);
    361 
    362 	error = puffs_vfstouser(pmp, PUFFS_VFS_STATVFS,
    363 	    statvfs_arg, sizeof(*statvfs_arg));
    364 	statvfs_arg->pvfsr_sb.f_iosize = DEV_BSIZE;
    365 
    366 	/*
    367 	 * Try to produce a sensible result even in the event
    368 	 * of userspace error.
    369 	 *
    370 	 * XXX: cache the copy in non-error case
    371 	 */
    372 	if (!error) {
    373 		copy_statvfs_info(&statvfs_arg->pvfsr_sb, mp);
    374 		(void)memcpy(sbp, &statvfs_arg->pvfsr_sb,
    375 		    sizeof(struct statvfs));
    376 	} else {
    377 		copy_statvfs_info(sbp, mp);
    378 	}
    379 
    380 	FREE(statvfs_arg, M_PUFFS);
    381 	return error;
    382 }
    383 
    384 int
    385 puffs_sync(struct mount *mp, int waitfor, struct kauth_cred *cred,
    386 	struct lwp *l)
    387 {
    388 	int error;
    389 
    390 	PUFFS_VFSREQ(sync);
    391 
    392 	sync_arg.pvfsr_waitfor = waitfor;
    393 	puffs_credcvt(&sync_arg.pvfsr_cred, cred);
    394 	sync_arg.pvfsr_pid = puffs_lwp2pid(l);
    395 
    396 	error = puffs_vfstouser(MPTOPUFFSMP(mp), PUFFS_VFS_SYNC,
    397 	    &sync_arg, sizeof(sync_arg));
    398 
    399 	return error;
    400 }
    401 
    402 int
    403 puffs_vget(struct mount *mp, ino_t ino, struct vnode **vpp)
    404 {
    405 
    406 	return EOPNOTSUPP;
    407 }
    408 
    409 #if 0
    410 /*ARGSUSED*/
    411 int
    412 puffs_fhtovp(struct mount *mp, struct fid *fhp, struct vnode **vpp)
    413 {
    414 
    415 	return EOPNOTSUPP;
    416 }
    417 
    418 /*ARGSUSED*/
    419 int
    420 puffs_vptofh(struct vnode *vp, struct fid *fhp)
    421 {
    422 
    423 	return EOPNOTSUPP;
    424 }
    425 #endif
    426 
    427 void
    428 puffs_init()
    429 {
    430 
    431 #ifdef _LKM
    432 	malloc_type_attach(M_PUFFS);
    433 	pool_init(&puffs_pnpool, sizeof(struct puffs_node), 0, 0, 0,
    434 	    "puffspnpl", &pool_allocator_nointr);
    435 #endif
    436 
    437 	return;
    438 }
    439 
    440 void
    441 puffs_done()
    442 {
    443 
    444 #ifdef _LKM
    445 	pool_destroy(&puffs_pnpool);
    446 	malloc_type_detach(M_PUFFS);
    447 #endif
    448 
    449 	return;
    450 }
    451 
    452 int
    453 puffs_snapshot(struct mount *mp, struct vnode *vp, struct timespec *ts)
    454 {
    455 
    456 	return EOPNOTSUPP;
    457 }
    458 
    459 const struct vnodeopv_desc * const puffs_vnodeopv_descs[] = {
    460 	&puffs_vnodeop_opv_desc,
    461 	&puffs_specop_opv_desc,
    462 	&puffs_fifoop_opv_desc,
    463 	&puffs_msgop_opv_desc,
    464 	NULL,
    465 };
    466 
    467 struct vfsops puffs_vfsops = {
    468 	MOUNT_PUFFS,
    469 	puffs_mount,		/* mount	*/
    470 	puffs_start,		/* start	*/
    471 	puffs_unmount,		/* unmount	*/
    472 	puffs_root,		/* root		*/
    473 	puffs_quotactl,		/* quotactl	*/
    474 	puffs_statvfs,		/* statvfs	*/
    475 	puffs_sync,		/* sync		*/
    476 	puffs_vget,		/* vget		*/
    477 	(void *)eopnotsupp,	/* fhtovp	*/
    478 	(void *)eopnotsupp,	/* vptofh	*/
    479 	puffs_init,		/* init		*/
    480 	NULL,			/* reinit	*/
    481 	puffs_done,		/* done		*/
    482 	NULL,			/* mountroot	*/
    483 	puffs_snapshot,		/* snapshot	*/
    484 	vfs_stdextattrctl,	/* extattrctl	*/
    485 	puffs_vnodeopv_descs,	/* vnodeops	*/
    486 	0,			/* refcount	*/
    487 	{ NULL, NULL }
    488 };
    489 VFS_ATTACH(puffs_vfsops);
    490