Home | History | Annotate | Line # | Download | only in puffs
puffs_vfsops.c revision 1.28.2.2
      1  1.28.2.2     yamt /*	$NetBSD: puffs_vfsops.c,v 1.28.2.2 2007/04/15 16:03:47 yamt Exp $	*/
      2       1.1    pooka 
      3       1.1    pooka /*
      4       1.1    pooka  * Copyright (c) 2005, 2006  Antti Kantee.  All Rights Reserved.
      5       1.1    pooka  *
      6       1.1    pooka  * Development of this software was supported by the
      7       1.1    pooka  * Google Summer of Code program and the Ulla Tuominen Foundation.
      8       1.1    pooka  * The Google SoC project was mentored by Bill Studenmund.
      9       1.1    pooka  *
     10       1.1    pooka  * Redistribution and use in source and binary forms, with or without
     11       1.1    pooka  * modification, are permitted provided that the following conditions
     12       1.1    pooka  * are met:
     13       1.1    pooka  * 1. Redistributions of source code must retain the above copyright
     14       1.1    pooka  *    notice, this list of conditions and the following disclaimer.
     15       1.1    pooka  * 2. Redistributions in binary form must reproduce the above copyright
     16       1.1    pooka  *    notice, this list of conditions and the following disclaimer in the
     17       1.1    pooka  *    documentation and/or other materials provided with the distribution.
     18       1.1    pooka  * 3. The name of the company nor the name of the author may be used to
     19       1.1    pooka  *    endorse or promote products derived from this software without specific
     20       1.1    pooka  *    prior written permission.
     21       1.1    pooka  *
     22       1.1    pooka  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
     23       1.1    pooka  * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
     24       1.1    pooka  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
     25       1.1    pooka  * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
     26       1.1    pooka  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     27       1.1    pooka  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
     28       1.1    pooka  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     29       1.1    pooka  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     30       1.1    pooka  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     31       1.1    pooka  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     32       1.1    pooka  * SUCH DAMAGE.
     33       1.1    pooka  */
     34       1.1    pooka 
     35       1.1    pooka #include <sys/cdefs.h>
     36  1.28.2.2     yamt __KERNEL_RCSID(0, "$NetBSD: puffs_vfsops.c,v 1.28.2.2 2007/04/15 16:03:47 yamt Exp $");
     37       1.1    pooka 
     38       1.1    pooka #include <sys/param.h>
     39       1.1    pooka #include <sys/mount.h>
     40       1.1    pooka #include <sys/malloc.h>
     41       1.1    pooka #include <sys/extattr.h>
     42       1.1    pooka #include <sys/queue.h>
     43       1.1    pooka #include <sys/vnode.h>
     44       1.1    pooka #include <sys/dirent.h>
     45       1.1    pooka #include <sys/kauth.h>
     46      1.26    pooka #include <sys/fstrans.h>
     47       1.1    pooka 
     48       1.1    pooka #include <lib/libkern/libkern.h>
     49       1.1    pooka 
     50       1.1    pooka #include <fs/puffs/puffs_msgif.h>
     51       1.1    pooka #include <fs/puffs/puffs_sys.h>
     52       1.1    pooka 
     53       1.1    pooka VFS_PROTOS(puffs);
     54       1.1    pooka 
     55  1.28.2.2     yamt MALLOC_JUSTDEFINE(M_PUFFS, "puffs", "Pass-to-Userspace Framework File System");
     56       1.1    pooka 
     57      1.22    pooka #ifndef PUFFS_PNODEBUCKETS
     58      1.22    pooka #define PUFFS_PNODEBUCKETS 256
     59      1.22    pooka #endif
     60      1.22    pooka #ifndef PUFFS_MAXPNODEBUCKETS
     61  1.28.2.2     yamt #define PUFFS_MAXPNODEBUCKETS 8192
     62      1.22    pooka #endif
     63  1.28.2.2     yamt int puffs_pnodebuckets_default = PUFFS_PNODEBUCKETS;
     64  1.28.2.2     yamt int puffs_maxpnodebuckets = PUFFS_MAXPNODEBUCKETS;
     65      1.22    pooka 
     66       1.1    pooka int
     67       1.1    pooka puffs_mount(struct mount *mp, const char *path, void *data,
     68       1.1    pooka 	    struct nameidata *ndp, struct lwp *l)
     69       1.1    pooka {
     70      1.22    pooka 	struct puffs_mount *pmp = NULL;
     71  1.28.2.2     yamt 	struct puffs_kargs *args;
     72      1.17    pooka 	char namebuf[PUFFSNAMESIZE+sizeof(PUFFS_NAMEPREFIX)+1]; /* spooky */
     73      1.22    pooka 	int error = 0, i;
     74       1.1    pooka 
     75       1.1    pooka 	if (mp->mnt_flag & MNT_GETARGS) {
     76       1.1    pooka 		pmp = MPTOPUFFSMP(mp);
     77  1.28.2.2     yamt 		return copyout(&pmp->pmp_args,data,sizeof(struct puffs_kargs));
     78       1.1    pooka 	}
     79       1.1    pooka 
     80       1.1    pooka 	/* update is not supported currently */
     81       1.1    pooka 	if (mp->mnt_flag & MNT_UPDATE)
     82       1.1    pooka 		return EOPNOTSUPP;
     83       1.1    pooka 
     84       1.1    pooka 	/*
     85       1.1    pooka 	 * We need the file system name
     86       1.1    pooka 	 */
     87       1.1    pooka 	if (!data)
     88       1.1    pooka 		return EINVAL;
     89       1.1    pooka 
     90  1.28.2.2     yamt 	MALLOC(args, struct puffs_kargs *, sizeof(struct puffs_kargs),
     91      1.17    pooka 	    M_PUFFS, M_WAITOK);
     92      1.17    pooka 
     93  1.28.2.2     yamt 	error = copyin(data, args, sizeof(struct puffs_kargs));
     94       1.1    pooka 	if (error)
     95      1.17    pooka 		goto out;
     96      1.17    pooka 
     97      1.17    pooka 	/* devel phase */
     98      1.17    pooka 	if (args->pa_vers != (PUFFSVERSION | PUFFSDEVELVERS)) {
     99      1.17    pooka 		printf("puffs_mount: development version mismatch\n");
    100      1.17    pooka 		error = EINVAL;
    101      1.17    pooka 		goto out;
    102      1.17    pooka 	}
    103       1.1    pooka 
    104       1.8    pooka 	/* nuke spy bits */
    105      1.17    pooka 	args->pa_flags &= PUFFS_KFLAG_MASK;
    106       1.8    pooka 
    107       1.1    pooka 	/* build real name */
    108      1.17    pooka 	(void)strlcpy(namebuf, PUFFS_NAMEPREFIX, sizeof(namebuf));
    109      1.17    pooka 	(void)strlcat(namebuf, args->pa_name, sizeof(namebuf));
    110       1.1    pooka 
    111       1.1    pooka 	/* inform user server if it got the max request size it wanted */
    112      1.17    pooka 	if (args->pa_maxreqlen == 0 || args->pa_maxreqlen > PUFFS_REQ_MAXSIZE)
    113      1.17    pooka 		args->pa_maxreqlen = PUFFS_REQ_MAXSIZE;
    114      1.17    pooka 	else if (args->pa_maxreqlen < PUFFS_REQSTRUCT_MAX)
    115      1.17    pooka 		args->pa_maxreqlen = PUFFS_REQSTRUCT_MAX;
    116      1.17    pooka 	(void)strlcpy(args->pa_name, namebuf, sizeof(args->pa_name));
    117       1.1    pooka 
    118  1.28.2.2     yamt 	error = copyout(args, data, sizeof(struct puffs_kargs));
    119       1.1    pooka 	if (error)
    120      1.17    pooka 		goto out;
    121       1.1    pooka 
    122       1.1    pooka 	error = set_statvfs_info(path, UIO_USERSPACE, namebuf,
    123       1.1    pooka 	    UIO_SYSSPACE, mp, l);
    124       1.1    pooka 	if (error)
    125      1.17    pooka 		goto out;
    126      1.10    pooka 	mp->mnt_stat.f_iosize = DEV_BSIZE;
    127       1.1    pooka 
    128       1.1    pooka 	MALLOC(pmp, struct puffs_mount *, sizeof(struct puffs_mount),
    129       1.1    pooka 	    M_PUFFS, M_WAITOK | M_ZERO);
    130       1.1    pooka 
    131       1.6    pooka 	mp->mnt_fs_bshift = DEV_BSHIFT;
    132       1.6    pooka 	mp->mnt_dev_bshift = DEV_BSHIFT;
    133       1.6    pooka 	mp->mnt_flag &= ~MNT_LOCAL; /* we don't really know, so ... */
    134       1.1    pooka 	mp->mnt_data = pmp;
    135      1.26    pooka 	mp->mnt_iflag |= IMNT_HAS_TRANS;
    136       1.6    pooka 
    137       1.1    pooka 	pmp->pmp_status = PUFFSTAT_MOUNTING;
    138       1.1    pooka 	pmp->pmp_nextreq = 0;
    139       1.1    pooka 	pmp->pmp_mp = mp;
    140      1.17    pooka 	pmp->pmp_req_maxsize = args->pa_maxreqlen;
    141      1.17    pooka 	pmp->pmp_args = *args;
    142       1.1    pooka 
    143      1.22    pooka 	/* puffs_node hash buckets */
    144  1.28.2.2     yamt 	if (args->pa_nhashbuckets)
    145  1.28.2.2     yamt 		pmp->pmp_npnodehash = args->pa_nhashbuckets;
    146  1.28.2.2     yamt 	else
    147  1.28.2.2     yamt 		pmp->pmp_npnodehash = puffs_pnodebuckets_default;
    148  1.28.2.2     yamt 
    149      1.22    pooka 	if (pmp->pmp_npnodehash < 1)
    150      1.22    pooka 		pmp->pmp_npnodehash = 1;
    151  1.28.2.2     yamt 	if (pmp->pmp_npnodehash > PUFFS_MAXPNODEBUCKETS) {
    152      1.22    pooka 		pmp->pmp_npnodehash = PUFFS_MAXPNODEBUCKETS;
    153  1.28.2.2     yamt 		printf("puffs_mount: using %zu hash buckets. "
    154  1.28.2.2     yamt 		    "adjust puffs_maxpnodebuckets for more\n",
    155  1.28.2.2     yamt 		    pmp->pmp_npnodehash);
    156  1.28.2.2     yamt 	}
    157  1.28.2.2     yamt 
    158      1.22    pooka 	pmp->pmp_pnodehash = malloc
    159      1.22    pooka 	    (sizeof(struct puffs_pnode_hashlist *) * pmp->pmp_npnodehash,
    160      1.22    pooka 	    M_PUFFS, M_WAITOK);
    161      1.22    pooka 	for (i = 0; i < pmp->pmp_npnodehash; i++)
    162      1.22    pooka 		LIST_INIT(&pmp->pmp_pnodehash[i]);
    163      1.22    pooka 
    164       1.1    pooka 	/*
    165       1.1    pooka 	 * Inform the fileops processing code that we have a mountpoint.
    166       1.1    pooka 	 * If it doesn't know about anyone with our pid/fd having the
    167       1.1    pooka 	 * device open, punt
    168       1.1    pooka 	 */
    169      1.17    pooka 	if (puffs_setpmp(l->l_proc->p_pid, args->pa_fd, pmp)) {
    170      1.17    pooka 		error = ENOENT;
    171      1.17    pooka 		goto out;
    172       1.1    pooka 	}
    173       1.1    pooka 
    174  1.28.2.2     yamt 	mutex_init(&pmp->pmp_lock, MUTEX_DEFAULT, IPL_NONE);
    175  1.28.2.2     yamt 	cv_init(&pmp->pmp_req_waiter_cv, "puffsget");
    176  1.28.2.2     yamt 	cv_init(&pmp->pmp_req_waitersink_cv, "puffsink");
    177  1.28.2.2     yamt 	cv_init(&pmp->pmp_unmounting_cv, "puffsum");
    178  1.28.2.2     yamt 	cv_init(&pmp->pmp_suspend_cv, "pufsusum");
    179       1.1    pooka 	TAILQ_INIT(&pmp->pmp_req_touser);
    180       1.1    pooka 	TAILQ_INIT(&pmp->pmp_req_replywait);
    181       1.1    pooka 	TAILQ_INIT(&pmp->pmp_req_sizepark);
    182       1.1    pooka 
    183       1.1    pooka 	DPRINTF(("puffs_mount: mount point at %p, puffs specific at %p\n",
    184       1.1    pooka 	    mp, MPTOPUFFSMP(mp)));
    185       1.1    pooka 
    186       1.1    pooka 	vfs_getnewfsid(mp);
    187       1.1    pooka 
    188      1.17    pooka  out:
    189      1.22    pooka 	if (error && pmp && pmp->pmp_pnodehash)
    190      1.22    pooka 		free(pmp->pmp_pnodehash, M_PUFFS);
    191      1.22    pooka 	if (error && pmp)
    192      1.22    pooka 		FREE(pmp, M_PUFFS);
    193      1.17    pooka 	FREE(args, M_PUFFS);
    194      1.17    pooka 	return error;
    195       1.1    pooka }
    196       1.1    pooka 
    197       1.1    pooka /*
    198       1.1    pooka  * This is called from the first "Hello, I'm alive" ioctl
    199       1.1    pooka  * from userspace.
    200       1.1    pooka  */
    201       1.1    pooka int
    202       1.7    pooka puffs_start2(struct puffs_mount *pmp, struct puffs_startreq *sreq)
    203       1.1    pooka {
    204       1.1    pooka 	struct puffs_node *pn;
    205       1.1    pooka 	struct mount *mp;
    206       1.1    pooka 
    207       1.1    pooka 	mp = PMPTOMP(pmp);
    208       1.1    pooka 
    209  1.28.2.2     yamt 	mutex_enter(&pmp->pmp_lock);
    210       1.1    pooka 
    211       1.1    pooka 	/*
    212       1.1    pooka 	 * if someone has issued a VFS_ROOT() already, fill in the
    213       1.1    pooka 	 * vnode cookie.
    214       1.1    pooka 	 */
    215       1.2    pooka 	pn = NULL;
    216       1.1    pooka 	if (pmp->pmp_root) {
    217       1.1    pooka 		pn = VPTOPP(pmp->pmp_root);
    218       1.1    pooka 		pn->pn_cookie = sreq->psr_cookie;
    219       1.1    pooka 	}
    220       1.1    pooka 
    221       1.1    pooka 	/* We're good to fly */
    222       1.1    pooka 	pmp->pmp_rootcookie = sreq->psr_cookie;
    223       1.1    pooka 	pmp->pmp_status = PUFFSTAT_RUNNING;
    224  1.28.2.2     yamt 	mutex_exit(&pmp->pmp_lock);
    225       1.1    pooka 
    226       1.9    pooka 	/* do the VFS_STATVFS() we missed out on in sys_mount() */
    227       1.9    pooka 	copy_statvfs_info(&sreq->psr_sb, mp);
    228       1.9    pooka 	(void)memcpy(&mp->mnt_stat, &sreq->psr_sb, sizeof(mp->mnt_stat));
    229      1.11    pooka 	mp->mnt_stat.f_iosize = DEV_BSIZE;
    230       1.1    pooka 
    231       1.2    pooka 	DPRINTF(("puffs_start2: root vp %p, cur root pnode %p, cookie %p\n",
    232       1.1    pooka 	    pmp->pmp_root, pn, sreq->psr_cookie));
    233       1.1    pooka 
    234       1.1    pooka 	return 0;
    235       1.1    pooka }
    236       1.1    pooka 
    237       1.1    pooka int
    238       1.1    pooka puffs_start(struct mount *mp, int flags, struct lwp *l)
    239       1.1    pooka {
    240       1.1    pooka 
    241       1.1    pooka 	/*
    242       1.1    pooka 	 * This cannot travel to userspace, as this is called from
    243       1.1    pooka 	 * the kernel context of the process doing mount(2).  But
    244       1.1    pooka 	 * it's probably a safe bet that the process doing mount(2)
    245       1.1    pooka 	 * realizes it needs to start the filesystem also...
    246       1.1    pooka 	 */
    247       1.1    pooka 	return 0;
    248       1.1    pooka }
    249       1.1    pooka 
    250       1.1    pooka int
    251       1.1    pooka puffs_unmount(struct mount *mp, int mntflags, struct lwp *l)
    252       1.1    pooka {
    253       1.1    pooka 	struct puffs_mount *pmp;
    254       1.1    pooka 	int error, force;
    255       1.1    pooka 
    256       1.1    pooka 	PUFFS_VFSREQ(unmount);
    257       1.1    pooka 
    258       1.1    pooka 	error = 0;
    259       1.1    pooka 	force = mntflags & MNT_FORCE;
    260       1.1    pooka 	pmp = MPTOPUFFSMP(mp);
    261       1.1    pooka 
    262       1.1    pooka 	DPRINTF(("puffs_unmount: detach filesystem from vfs, current "
    263       1.1    pooka 	    "status 0x%x\n", pmp->pmp_status));
    264       1.1    pooka 
    265       1.1    pooka 	/*
    266       1.1    pooka 	 * flush all the vnodes.  VOP_RECLAIM() takes care that the
    267       1.1    pooka 	 * root vnode does not get flushed until unmount.  The
    268       1.1    pooka 	 * userspace root node cookie is stored in the mount
    269       1.1    pooka 	 * structure, so we can always re-instantiate a root vnode,
    270       1.1    pooka 	 * should userspace unmount decide it doesn't want to
    271       1.1    pooka 	 * cooperate.
    272       1.1    pooka 	 */
    273       1.1    pooka 	error = vflush(mp, NULLVP, force ? FORCECLOSE : 0);
    274       1.1    pooka 	if (error)
    275       1.1    pooka 		goto out;
    276       1.1    pooka 
    277       1.1    pooka 	/*
    278       1.1    pooka 	 * If we are not DYING, we should ask userspace's opinion
    279       1.1    pooka 	 * about the situation
    280       1.1    pooka 	 */
    281  1.28.2.2     yamt 	mutex_enter(&pmp->pmp_lock);
    282       1.1    pooka 	if (pmp->pmp_status != PUFFSTAT_DYING) {
    283      1.16    pooka 		pmp->pmp_unmounting = 1;
    284  1.28.2.2     yamt 		mutex_exit(&pmp->pmp_lock);
    285      1.16    pooka 
    286       1.1    pooka 		unmount_arg.pvfsr_flags = mntflags;
    287       1.1    pooka 		unmount_arg.pvfsr_pid = puffs_lwp2pid(l);
    288      1.16    pooka 
    289       1.1    pooka 		error = puffs_vfstouser(pmp, PUFFS_VFS_UNMOUNT,
    290       1.1    pooka 		     &unmount_arg, sizeof(unmount_arg));
    291      1.16    pooka 		DPRINTF(("puffs_unmount: error %d force %d\n", error, force));
    292      1.16    pooka 
    293  1.28.2.2     yamt 		mutex_enter(&pmp->pmp_lock);
    294      1.16    pooka 		pmp->pmp_unmounting = 0;
    295  1.28.2.2     yamt 		cv_broadcast(&pmp->pmp_unmounting_cv);
    296       1.1    pooka 	}
    297       1.1    pooka 
    298       1.1    pooka 	/*
    299       1.1    pooka 	 * if userspace cooperated or we really need to die,
    300       1.1    pooka 	 * screw what userland thinks and just die.
    301       1.1    pooka 	 */
    302       1.1    pooka 	if (error == 0 || force) {
    303      1.26    pooka 		/* tell waiters & other resources to go unwait themselves */
    304      1.26    pooka 		puffs_userdead(pmp);
    305       1.1    pooka 		puffs_nukebypmp(pmp);
    306      1.26    pooka 
    307      1.26    pooka 		/*
    308      1.26    pooka 		 * Sink waiters.  This is still not perfect, since the
    309      1.26    pooka 		 * draining is done after userret, not when they really
    310      1.26    pooka 		 * exit the file system.  It will probably work as almost
    311      1.26    pooka 		 * no call will block and therefore cause a context switch
    312      1.26    pooka 		 * and therefore will protected by the biglock after
    313      1.26    pooka 		 * exiting userspace.  But ... it's an imperfect world.
    314      1.26    pooka 		 */
    315  1.28.2.2     yamt 		while (pmp->pmp_req_waiters != 0)
    316  1.28.2.2     yamt 			cv_wait(&pmp->pmp_req_waitersink_cv, &pmp->pmp_lock);
    317  1.28.2.2     yamt 		mutex_exit(&pmp->pmp_lock);
    318      1.26    pooka 
    319      1.26    pooka 		/* free resources now that we hopefully have no waiters left */
    320  1.28.2.2     yamt 		cv_destroy(&pmp->pmp_req_waiter_cv);
    321  1.28.2.2     yamt 		cv_destroy(&pmp->pmp_req_waitersink_cv);
    322  1.28.2.2     yamt 		cv_destroy(&pmp->pmp_unmounting_cv);
    323  1.28.2.2     yamt 		cv_destroy(&pmp->pmp_suspend_cv);
    324  1.28.2.2     yamt 		mutex_destroy(&pmp->pmp_lock);
    325  1.28.2.2     yamt 
    326      1.22    pooka 		free(pmp->pmp_pnodehash, M_PUFFS);
    327       1.1    pooka 		FREE(pmp, M_PUFFS);
    328       1.1    pooka 		error = 0;
    329      1.16    pooka 	} else {
    330  1.28.2.2     yamt 		mutex_exit(&pmp->pmp_lock);
    331       1.1    pooka 	}
    332       1.1    pooka 
    333       1.1    pooka  out:
    334       1.2    pooka 	DPRINTF(("puffs_unmount: return %d\n", error));
    335       1.1    pooka 	return error;
    336       1.1    pooka }
    337       1.1    pooka 
    338       1.1    pooka /*
    339       1.1    pooka  * This doesn't need to travel to userspace
    340       1.1    pooka  */
    341       1.1    pooka int
    342       1.1    pooka puffs_root(struct mount *mp, struct vnode **vpp)
    343       1.1    pooka {
    344       1.1    pooka 	struct puffs_mount *pmp;
    345       1.1    pooka 	struct puffs_node *pn;
    346       1.1    pooka 	struct vnode *vp;
    347       1.1    pooka 
    348       1.1    pooka 	pmp = MPTOPUFFSMP(mp);
    349       1.1    pooka 
    350       1.1    pooka 	/*
    351       1.1    pooka 	 * pmp_lock must be held if vref()'ing or vrele()'ing the
    352      1.20    pooka 	 * root vnode.  the latter is controlled by puffs_inactive().
    353       1.1    pooka 	 */
    354  1.28.2.2     yamt 	mutex_enter(&pmp->pmp_lock);
    355       1.1    pooka 	vp = pmp->pmp_root;
    356       1.1    pooka 	if (vp) {
    357      1.25    pooka 		simple_lock(&vp->v_interlock);
    358  1.28.2.2     yamt 		mutex_exit(&pmp->pmp_lock);
    359       1.1    pooka 		pn = VPTOPP(vp);
    360      1.25    pooka 		if (vget(vp, LK_EXCLUSIVE | LK_RETRY | LK_INTERLOCK))
    361      1.20    pooka 			goto grabnew;
    362       1.1    pooka 		*vpp = vp;
    363       1.1    pooka 		return 0;
    364      1.25    pooka 	} else
    365  1.28.2.2     yamt 		mutex_exit(&pmp->pmp_lock);
    366      1.25    pooka 
    367      1.25    pooka 	/* XXX: this is wrong, so FIXME */
    368       1.1    pooka  grabnew:
    369       1.1    pooka 
    370       1.1    pooka 	/*
    371       1.1    pooka 	 * So, didn't have the magic root vnode available.
    372       1.1    pooka 	 * No matter, grab another an stuff it with the cookie.
    373       1.1    pooka 	 */
    374       1.6    pooka 	if (puffs_getvnode(mp, pmp->pmp_rootcookie, VDIR, 0, 0, &vp))
    375       1.1    pooka 		panic("sloppy programming");
    376       1.1    pooka 
    377  1.28.2.2     yamt 	mutex_enter(&pmp->pmp_lock);
    378       1.1    pooka 	/*
    379       1.1    pooka 	 * check if by mysterious force someone else created a root
    380       1.1    pooka 	 * vnode while we were executing.
    381       1.1    pooka 	 */
    382       1.1    pooka 	if (pmp->pmp_root) {
    383       1.1    pooka 		vref(pmp->pmp_root);
    384  1.28.2.2     yamt 		mutex_exit(&pmp->pmp_lock);
    385       1.1    pooka 		puffs_putvnode(vp);
    386       1.1    pooka 		vn_lock(pmp->pmp_root, LK_EXCLUSIVE | LK_RETRY);
    387       1.1    pooka 		*vpp = pmp->pmp_root;
    388       1.1    pooka 		return 0;
    389       1.1    pooka 	}
    390       1.1    pooka 
    391       1.1    pooka 	/* store cache */
    392       1.1    pooka 	vp->v_flag = VROOT;
    393       1.1    pooka 	pmp->pmp_root = vp;
    394  1.28.2.2     yamt 	mutex_exit(&pmp->pmp_lock);
    395       1.1    pooka 
    396       1.1    pooka 	vn_lock(pmp->pmp_root, LK_EXCLUSIVE | LK_RETRY);
    397       1.1    pooka 
    398       1.1    pooka 	*vpp = vp;
    399       1.1    pooka 	return 0;
    400       1.1    pooka }
    401       1.1    pooka 
    402       1.1    pooka int
    403       1.1    pooka puffs_statvfs(struct mount *mp, struct statvfs *sbp, struct lwp *l)
    404       1.1    pooka {
    405       1.1    pooka 	struct puffs_vfsreq_statvfs *statvfs_arg; /* too big for stack */
    406       1.1    pooka 	struct puffs_mount *pmp;
    407       1.1    pooka 	int error = 0;
    408       1.1    pooka 
    409       1.1    pooka 	pmp = MPTOPUFFSMP(mp);
    410       1.1    pooka 
    411       1.1    pooka 	/*
    412       1.1    pooka 	 * If we are mounting, it means that the userspace counterpart
    413       1.1    pooka 	 * is calling mount(2), but mount(2) also calls statvfs.  So
    414       1.1    pooka 	 * requesting statvfs from userspace would mean a deadlock.
    415       1.1    pooka 	 * Compensate.
    416       1.1    pooka 	 */
    417       1.1    pooka 	if (pmp->pmp_status == PUFFSTAT_MOUNTING)
    418       1.1    pooka 		return EINPROGRESS;
    419       1.1    pooka 
    420       1.1    pooka 	/* too big for stack */
    421       1.1    pooka 	MALLOC(statvfs_arg, struct puffs_vfsreq_statvfs *,
    422       1.1    pooka 	    sizeof(struct puffs_vfsreq_statvfs), M_PUFFS, M_WAITOK | M_ZERO);
    423       1.1    pooka 	statvfs_arg->pvfsr_pid = puffs_lwp2pid(l);
    424       1.1    pooka 
    425       1.1    pooka 	error = puffs_vfstouser(pmp, PUFFS_VFS_STATVFS,
    426       1.1    pooka 	    statvfs_arg, sizeof(*statvfs_arg));
    427      1.11    pooka 	statvfs_arg->pvfsr_sb.f_iosize = DEV_BSIZE;
    428      1.10    pooka 
    429       1.1    pooka 	/*
    430       1.1    pooka 	 * Try to produce a sensible result even in the event
    431       1.1    pooka 	 * of userspace error.
    432       1.1    pooka 	 *
    433       1.1    pooka 	 * XXX: cache the copy in non-error case
    434       1.1    pooka 	 */
    435       1.1    pooka 	if (!error) {
    436       1.1    pooka 		copy_statvfs_info(&statvfs_arg->pvfsr_sb, mp);
    437       1.1    pooka 		(void)memcpy(sbp, &statvfs_arg->pvfsr_sb,
    438       1.1    pooka 		    sizeof(struct statvfs));
    439       1.1    pooka 	} else {
    440       1.1    pooka 		copy_statvfs_info(sbp, mp);
    441       1.1    pooka 	}
    442       1.1    pooka 
    443       1.1    pooka 	FREE(statvfs_arg, M_PUFFS);
    444      1.14    pooka 	return error;
    445       1.1    pooka }
    446       1.1    pooka 
    447      1.26    pooka static int
    448  1.28.2.1     yamt pageflush(struct mount *mp, kauth_cred_t cred,
    449  1.28.2.1     yamt 	int waitfor, int suspending, struct lwp *l)
    450       1.1    pooka {
    451      1.26    pooka 	struct puffs_node *pn;
    452      1.18    pooka 	struct vnode *vp, *nvp;
    453  1.28.2.1     yamt 	int error, rv;
    454       1.1    pooka 
    455      1.26    pooka 	KASSERT(((waitfor == MNT_WAIT) && suspending) == 0);
    456      1.26    pooka 	KASSERT((suspending == 0)
    457      1.26    pooka 	    || (fstrans_is_owner(mp)
    458      1.27  hannken 	      && fstrans_getstate(mp) == FSTRANS_SUSPENDING));
    459       1.1    pooka 
    460      1.18    pooka 	error = 0;
    461      1.18    pooka 
    462      1.18    pooka 	/*
    463      1.24    pooka 	 * Sync all cached data from regular vnodes (which are not
    464      1.24    pooka 	 * currently locked, see below).  After this we call VFS_SYNC
    465      1.24    pooka 	 * for the fs server, which should handle data and metadata for
    466      1.24    pooka 	 * all the nodes it knows to exist.
    467      1.18    pooka 	 */
    468      1.18    pooka 	simple_lock(&mntvnode_slock);
    469      1.18    pooka  loop:
    470      1.18    pooka 	for (vp = TAILQ_FIRST(&mp->mnt_vnodelist); vp; vp = nvp) {
    471      1.18    pooka 		/* check if we're on the right list */
    472      1.18    pooka 		if (vp->v_mount != mp)
    473      1.18    pooka 			goto loop;
    474      1.18    pooka 
    475      1.18    pooka 		simple_lock(&vp->v_interlock);
    476      1.26    pooka 		pn = VPTOPP(vp);
    477      1.18    pooka 		nvp = TAILQ_NEXT(vp, v_mntvnodes);
    478      1.18    pooka 
    479      1.19    pooka 		if (vp->v_type != VREG || UVM_OBJ_IS_CLEAN(&vp->v_uobj)) {
    480      1.18    pooka 			simple_unlock(&vp->v_interlock);
    481      1.18    pooka 			continue;
    482      1.18    pooka 		}
    483      1.18    pooka 
    484      1.18    pooka 		simple_unlock(&mntvnode_slock);
    485      1.21    pooka 
    486      1.21    pooka 		/*
    487      1.21    pooka 		 * Here we try to get a reference to the vnode and to
    488      1.21    pooka 		 * lock it.  This is mostly cargo-culted, but I will
    489      1.21    pooka 		 * offer an explanation to why I believe this might
    490      1.21    pooka 		 * actually do the right thing.
    491      1.21    pooka 		 *
    492      1.21    pooka 		 * If the vnode is a goner, we quite obviously don't need
    493      1.21    pooka 		 * to sync it.
    494      1.21    pooka 		 *
    495      1.21    pooka 		 * If the vnode was busy, we don't need to sync it because
    496      1.21    pooka 		 * this is never called with MNT_WAIT except from
    497      1.21    pooka 		 * dounmount(), when we are wait-flushing all the dirty
    498      1.21    pooka 		 * vnodes through other routes in any case.  So there,
    499      1.21    pooka 		 * sync() doesn't actually sync.  Happy now?
    500      1.26    pooka 		 *
    501      1.26    pooka 		 * NOTE: if we're suspending, vget() does NOT lock.
    502      1.26    pooka 		 * See puffs_lock() for details.
    503      1.21    pooka 		 */
    504      1.18    pooka 		rv = vget(vp, LK_EXCLUSIVE | LK_NOWAIT | LK_INTERLOCK);
    505      1.18    pooka 		if (rv) {
    506      1.18    pooka 			simple_lock(&mntvnode_slock);
    507      1.18    pooka 			if (rv == ENOENT)
    508      1.18    pooka 				goto loop;
    509      1.18    pooka 			continue;
    510      1.18    pooka 		}
    511      1.18    pooka 
    512      1.26    pooka 		/*
    513      1.26    pooka 		 * Thread information to puffs_strategy() through the
    514      1.26    pooka 		 * pnode flags: we want to issue the putpages operations
    515      1.26    pooka 		 * as FAF if we're suspending, since it's very probable
    516      1.26    pooka 		 * that our execution context is that of the userspace
    517      1.26    pooka 		 * daemon.  We can do this because:
    518      1.26    pooka 		 *   + we send the "going to suspend" prior to this part
    519      1.26    pooka 		 *   + if any of the writes fails in userspace, it's the
    520      1.26    pooka 		 *     file system server's problem to decide if this was a
    521      1.26    pooka 		 *     failed snapshot when it gets the "snapshot complete"
    522      1.26    pooka 		 *     notification.
    523      1.26    pooka 		 *   + if any of the writes fail in the kernel already, we
    524      1.26    pooka 		 *     immediately fail *and* notify the user server of
    525      1.26    pooka 		 *     failure.
    526      1.26    pooka 		 *
    527      1.26    pooka 		 * We also do FAFs if we're called from the syncer.  This
    528      1.26    pooka 		 * is just general optimization for trickle sync: no need
    529      1.26    pooka 		 * to really guarantee that the stuff ended on backing
    530      1.26    pooka 		 * storage.
    531      1.26    pooka 		 * TODO: Maybe also hint the user server of this twist?
    532      1.26    pooka 		 */
    533  1.28.2.1     yamt 		if (suspending || waitfor == MNT_LAZY) {
    534  1.28.2.1     yamt 			simple_lock(&vp->v_interlock);
    535      1.26    pooka 			pn->pn_stat |= PNODE_SUSPEND;
    536  1.28.2.1     yamt 			simple_unlock(&vp->v_interlock);
    537  1.28.2.1     yamt 		}
    538  1.28.2.1     yamt 		rv = VOP_FSYNC(vp, cred, waitfor, 0, 0, l);
    539      1.26    pooka 		if (suspending || waitfor == MNT_LAZY) {
    540      1.26    pooka 			simple_lock(&vp->v_interlock);
    541      1.26    pooka 			pn->pn_stat &= ~PNODE_SUSPEND;
    542      1.26    pooka 			simple_unlock(&vp->v_interlock);
    543      1.26    pooka 		}
    544      1.21    pooka 		if (rv)
    545      1.18    pooka 			error = rv;
    546      1.18    pooka 		vput(vp);
    547      1.18    pooka 		simple_lock(&mntvnode_slock);
    548      1.18    pooka 	}
    549      1.18    pooka 	simple_unlock(&mntvnode_slock);
    550      1.18    pooka 
    551      1.26    pooka 	return error;
    552      1.26    pooka }
    553      1.26    pooka 
    554      1.26    pooka int
    555      1.26    pooka puffs_sync(struct mount *mp, int waitfor, struct kauth_cred *cred,
    556      1.26    pooka 	struct lwp *l)
    557      1.26    pooka {
    558      1.26    pooka 	int error, rv;
    559      1.26    pooka 
    560      1.26    pooka 	PUFFS_VFSREQ(sync);
    561      1.26    pooka 
    562  1.28.2.1     yamt 	error = pageflush(mp, cred, waitfor, 0, l);
    563      1.26    pooka 
    564      1.18    pooka 	/* sync fs */
    565       1.1    pooka 	sync_arg.pvfsr_waitfor = waitfor;
    566       1.1    pooka 	puffs_credcvt(&sync_arg.pvfsr_cred, cred);
    567       1.1    pooka 	sync_arg.pvfsr_pid = puffs_lwp2pid(l);
    568       1.1    pooka 
    569      1.18    pooka 	rv = puffs_vfstouser(MPTOPUFFSMP(mp), PUFFS_VFS_SYNC,
    570       1.1    pooka 	    &sync_arg, sizeof(sync_arg));
    571      1.18    pooka 	if (rv)
    572      1.18    pooka 		error = rv;
    573       1.1    pooka 
    574       1.1    pooka 	return error;
    575       1.1    pooka }
    576       1.1    pooka 
    577       1.1    pooka int
    578  1.28.2.2     yamt puffs_fhtovp(struct mount *mp, struct fid *fhp, struct vnode **vpp)
    579       1.1    pooka {
    580  1.28.2.2     yamt 	struct puffs_mount *pmp = MPTOPUFFSMP(mp);
    581  1.28.2.2     yamt 	struct vnode *vp;
    582  1.28.2.2     yamt 	int error;
    583       1.1    pooka 
    584  1.28.2.2     yamt 	PUFFS_VFSREQ(fhtonode);
    585       1.1    pooka 
    586  1.28.2.2     yamt 	if ((pmp->pmp_flags & PUFFS_KFLAG_CANEXPORT) == 0)
    587  1.28.2.2     yamt 		return EOPNOTSUPP;
    588       1.1    pooka 
    589  1.28.2.2     yamt 	if (fhp->fid_len < PUFFS_FHSIZE + 4)
    590  1.28.2.2     yamt 		return EINVAL;
    591  1.28.2.2     yamt 
    592  1.28.2.2     yamt 	fhtonode_arg.pvfsr_dsize = PUFFS_FHSIZE;
    593  1.28.2.2     yamt 	memcpy(fhtonode_arg.pvfsr_data, fhp->fid_data, PUFFS_FHSIZE);
    594  1.28.2.2     yamt 
    595  1.28.2.2     yamt 	error = puffs_vfstouser(pmp, PUFFS_VFS_FHTOVP,
    596  1.28.2.2     yamt 	    &fhtonode_arg, sizeof(fhtonode_arg));
    597  1.28.2.2     yamt 	if (error)
    598  1.28.2.2     yamt 		return error;
    599  1.28.2.2     yamt 
    600  1.28.2.2     yamt 	vp = puffs_pnode2vnode(pmp, fhtonode_arg.pvfsr_fhcookie, 1);
    601  1.28.2.2     yamt 	DPRINTF(("puffs_fhtovp: got cookie %p, existing vnode %p\n",
    602  1.28.2.2     yamt 	    fhtonode_arg.pvfsr_fhcookie, vp));
    603  1.28.2.2     yamt 	if (!vp) {
    604  1.28.2.2     yamt 		error = puffs_getvnode(mp, fhtonode_arg.pvfsr_fhcookie,
    605  1.28.2.2     yamt 		    fhtonode_arg.pvfsr_vtype, fhtonode_arg.pvfsr_size,
    606  1.28.2.2     yamt 		    fhtonode_arg.pvfsr_rdev, &vp);
    607  1.28.2.2     yamt 		if (error)
    608  1.28.2.2     yamt 			return error;
    609  1.28.2.2     yamt 		vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
    610  1.28.2.2     yamt 	}
    611  1.28.2.2     yamt 
    612  1.28.2.2     yamt 	*vpp = vp;
    613  1.28.2.2     yamt 	return 0;
    614       1.1    pooka }
    615       1.1    pooka 
    616       1.1    pooka int
    617  1.28.2.2     yamt puffs_vptofh(struct vnode *vp, struct fid *fhp, size_t *fh_size)
    618       1.1    pooka {
    619  1.28.2.2     yamt 	struct puffs_mount *pmp = MPTOPUFFSMP(vp->v_mount);
    620  1.28.2.2     yamt 	int error;
    621       1.1    pooka 
    622  1.28.2.2     yamt 	PUFFS_VFSREQ(nodetofh);
    623  1.28.2.2     yamt 
    624  1.28.2.2     yamt 	if ((pmp->pmp_flags & PUFFS_KFLAG_CANEXPORT) == 0)
    625  1.28.2.2     yamt 		return EOPNOTSUPP;
    626  1.28.2.2     yamt 
    627  1.28.2.2     yamt 	if (*fh_size < PUFFS_FHSIZE + 4) {
    628  1.28.2.2     yamt 		*fh_size = PUFFS_FHSIZE + 4;
    629  1.28.2.2     yamt 		return E2BIG;
    630  1.28.2.2     yamt 	}
    631  1.28.2.2     yamt 	*fh_size = PUFFS_FHSIZE + 4;
    632  1.28.2.2     yamt 
    633  1.28.2.2     yamt 	nodetofh_arg.pvfsr_fhcookie = VPTOPNC(vp);
    634  1.28.2.2     yamt 	nodetofh_arg.pvfsr_dsize = PUFFS_FHSIZE;
    635  1.28.2.2     yamt 
    636  1.28.2.2     yamt 	error = puffs_vfstouser(pmp, PUFFS_VFS_VPTOFH,
    637  1.28.2.2     yamt 	    &nodetofh_arg, sizeof(nodetofh_arg));
    638  1.28.2.2     yamt 	if (error)
    639  1.28.2.2     yamt 		return error;
    640  1.28.2.2     yamt 
    641  1.28.2.2     yamt 	fhp->fid_len = PUFFS_FHSIZE + 4;
    642  1.28.2.2     yamt 	memcpy(fhp->fid_data,
    643  1.28.2.2     yamt 	    nodetofh_arg.pvfsr_data, PUFFS_FHSIZE);
    644  1.28.2.2     yamt 
    645  1.28.2.2     yamt 	return 0;
    646       1.1    pooka }
    647       1.1    pooka 
    648       1.1    pooka void
    649       1.1    pooka puffs_init()
    650       1.1    pooka {
    651       1.1    pooka 
    652       1.5    pooka 	malloc_type_attach(M_PUFFS);
    653       1.5    pooka 
    654  1.28.2.2     yamt 	pool_init(&puffs_pnpool, sizeof(struct puffs_node), 0, 0, 0,
    655  1.28.2.2     yamt 	    "puffpnpl", &pool_allocator_nointr, IPL_NONE);
    656  1.28.2.2     yamt 	puffs_transport_init();
    657  1.28.2.2     yamt 	puffs_msgif_init();
    658       1.1    pooka }
    659       1.1    pooka 
    660       1.1    pooka void
    661       1.1    pooka puffs_done()
    662       1.1    pooka {
    663       1.1    pooka 
    664  1.28.2.2     yamt 	puffs_msgif_destroy();
    665  1.28.2.2     yamt 	puffs_transport_destroy();
    666       1.5    pooka 	pool_destroy(&puffs_pnpool);
    667       1.5    pooka 
    668  1.28.2.2     yamt 	malloc_type_detach(M_PUFFS);
    669       1.1    pooka }
    670       1.1    pooka 
    671       1.1    pooka int
    672       1.1    pooka puffs_snapshot(struct mount *mp, struct vnode *vp, struct timespec *ts)
    673       1.1    pooka {
    674       1.1    pooka 
    675       1.1    pooka 	return EOPNOTSUPP;
    676       1.1    pooka }
    677       1.1    pooka 
    678      1.26    pooka int
    679      1.26    pooka puffs_suspendctl(struct mount *mp, int cmd)
    680      1.26    pooka {
    681      1.26    pooka 	struct puffs_mount *pmp;
    682      1.26    pooka 	int error;
    683      1.26    pooka 
    684      1.26    pooka 	pmp = MPTOPUFFSMP(mp);
    685      1.26    pooka 	switch (cmd) {
    686      1.26    pooka 	case SUSPEND_SUSPEND:
    687      1.26    pooka 		DPRINTF(("puffs_suspendctl: suspending\n"));
    688      1.27  hannken 		if ((error = fstrans_setstate(mp, FSTRANS_SUSPENDING)) != 0)
    689      1.26    pooka 			break;
    690      1.26    pooka 		puffs_suspendtouser(pmp, PUFFS_SUSPEND_START);
    691      1.26    pooka 
    692  1.28.2.1     yamt 		error = pageflush(mp, FSCRED, 0, 1, curlwp);
    693      1.26    pooka 		if (error == 0)
    694      1.27  hannken 			error = fstrans_setstate(mp, FSTRANS_SUSPENDED);
    695      1.26    pooka 
    696      1.26    pooka 		if (error != 0) {
    697      1.26    pooka 			puffs_suspendtouser(pmp, PUFFS_SUSPEND_ERROR);
    698      1.27  hannken 			(void) fstrans_setstate(mp, FSTRANS_NORMAL);
    699      1.26    pooka 			break;
    700      1.26    pooka 		}
    701      1.26    pooka 
    702      1.26    pooka 		puffs_suspendtouser(pmp, PUFFS_SUSPEND_SUSPENDED);
    703      1.26    pooka 
    704      1.26    pooka 		break;
    705      1.26    pooka 
    706      1.26    pooka 	case SUSPEND_RESUME:
    707      1.26    pooka 		DPRINTF(("puffs_suspendctl: resume\n"));
    708      1.26    pooka 		error = 0;
    709      1.27  hannken 		(void) fstrans_setstate(mp, FSTRANS_NORMAL);
    710      1.26    pooka 		puffs_suspendtouser(pmp, PUFFS_SUSPEND_RESUME);
    711      1.26    pooka 		break;
    712      1.26    pooka 
    713      1.26    pooka 	default:
    714      1.26    pooka 		error = EINVAL;
    715      1.26    pooka 		break;
    716      1.26    pooka 	}
    717      1.26    pooka 
    718      1.26    pooka 	DPRINTF(("puffs_suspendctl: return %d\n", error));
    719      1.26    pooka 	return error;
    720      1.26    pooka }
    721      1.26    pooka 
    722       1.1    pooka const struct vnodeopv_desc * const puffs_vnodeopv_descs[] = {
    723       1.1    pooka 	&puffs_vnodeop_opv_desc,
    724       1.3    pooka 	&puffs_specop_opv_desc,
    725       1.4    pooka 	&puffs_fifoop_opv_desc,
    726      1.12    pooka 	&puffs_msgop_opv_desc,
    727       1.1    pooka 	NULL,
    728       1.1    pooka };
    729       1.1    pooka 
    730       1.1    pooka struct vfsops puffs_vfsops = {
    731       1.1    pooka 	MOUNT_PUFFS,
    732       1.1    pooka 	puffs_mount,		/* mount	*/
    733       1.1    pooka 	puffs_start,		/* start	*/
    734       1.1    pooka 	puffs_unmount,		/* unmount	*/
    735       1.1    pooka 	puffs_root,		/* root		*/
    736  1.28.2.2     yamt 	(void *)eopnotsupp,	/* quotactl	*/
    737       1.1    pooka 	puffs_statvfs,		/* statvfs	*/
    738       1.1    pooka 	puffs_sync,		/* sync		*/
    739  1.28.2.2     yamt 	(void *)eopnotsupp,	/* vget		*/
    740  1.28.2.2     yamt 	puffs_fhtovp,		/* fhtovp	*/
    741  1.28.2.2     yamt 	puffs_vptofh,		/* vptofh	*/
    742       1.1    pooka 	puffs_init,		/* init		*/
    743       1.1    pooka 	NULL,			/* reinit	*/
    744       1.1    pooka 	puffs_done,		/* done		*/
    745       1.1    pooka 	NULL,			/* mountroot	*/
    746       1.1    pooka 	puffs_snapshot,		/* snapshot	*/
    747       1.1    pooka 	vfs_stdextattrctl,	/* extattrctl	*/
    748      1.26    pooka 	puffs_suspendctl,	/* suspendctl	*/
    749       1.1    pooka 	puffs_vnodeopv_descs,	/* vnodeops	*/
    750       1.1    pooka 	0,			/* refcount	*/
    751       1.1    pooka 	{ NULL, NULL }
    752       1.1    pooka };
    753       1.1    pooka VFS_ATTACH(puffs_vfsops);
    754