Home | History | Annotate | Line # | Download | only in puffs
puffs_vfsops.c revision 1.16.2.7
      1  1.16.2.7  yamt /*	$NetBSD: puffs_vfsops.c,v 1.16.2.7 2007/12/07 17:32:05 yamt Exp $	*/
      2  1.16.2.2  yamt 
      3  1.16.2.2  yamt /*
      4  1.16.2.2  yamt  * Copyright (c) 2005, 2006  Antti Kantee.  All Rights Reserved.
      5  1.16.2.2  yamt  *
      6  1.16.2.2  yamt  * Development of this software was supported by the
      7  1.16.2.2  yamt  * Google Summer of Code program and the Ulla Tuominen Foundation.
      8  1.16.2.2  yamt  * The Google SoC project was mentored by Bill Studenmund.
      9  1.16.2.2  yamt  *
     10  1.16.2.2  yamt  * Redistribution and use in source and binary forms, with or without
     11  1.16.2.2  yamt  * modification, are permitted provided that the following conditions
     12  1.16.2.2  yamt  * are met:
     13  1.16.2.2  yamt  * 1. Redistributions of source code must retain the above copyright
     14  1.16.2.2  yamt  *    notice, this list of conditions and the following disclaimer.
     15  1.16.2.2  yamt  * 2. Redistributions in binary form must reproduce the above copyright
     16  1.16.2.2  yamt  *    notice, this list of conditions and the following disclaimer in the
     17  1.16.2.2  yamt  *    documentation and/or other materials provided with the distribution.
     18  1.16.2.2  yamt  *
     19  1.16.2.2  yamt  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
     20  1.16.2.2  yamt  * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
     21  1.16.2.2  yamt  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
     22  1.16.2.2  yamt  * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
     23  1.16.2.2  yamt  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     24  1.16.2.2  yamt  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
     25  1.16.2.2  yamt  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     26  1.16.2.2  yamt  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     27  1.16.2.2  yamt  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     28  1.16.2.2  yamt  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     29  1.16.2.2  yamt  * SUCH DAMAGE.
     30  1.16.2.2  yamt  */
     31  1.16.2.2  yamt 
     32  1.16.2.2  yamt #include <sys/cdefs.h>
     33  1.16.2.7  yamt __KERNEL_RCSID(0, "$NetBSD: puffs_vfsops.c,v 1.16.2.7 2007/12/07 17:32:05 yamt Exp $");
     34  1.16.2.2  yamt 
     35  1.16.2.2  yamt #include <sys/param.h>
     36  1.16.2.2  yamt #include <sys/mount.h>
     37  1.16.2.2  yamt #include <sys/malloc.h>
     38  1.16.2.2  yamt #include <sys/extattr.h>
     39  1.16.2.2  yamt #include <sys/queue.h>
     40  1.16.2.2  yamt #include <sys/vnode.h>
     41  1.16.2.2  yamt #include <sys/dirent.h>
     42  1.16.2.2  yamt #include <sys/kauth.h>
     43  1.16.2.3  yamt #include <sys/fstrans.h>
     44  1.16.2.4  yamt #include <sys/proc.h>
     45  1.16.2.2  yamt 
     46  1.16.2.6  yamt #include <dev/putter/putter_sys.h>
     47  1.16.2.2  yamt 
     48  1.16.2.2  yamt #include <fs/puffs/puffs_msgif.h>
     49  1.16.2.2  yamt #include <fs/puffs/puffs_sys.h>
     50  1.16.2.2  yamt 
     51  1.16.2.6  yamt #include <lib/libkern/libkern.h>
     52  1.16.2.6  yamt 
     53  1.16.2.4  yamt #include <nfs/nfsproto.h> /* for fh sizes */
     54  1.16.2.4  yamt 
     55  1.16.2.2  yamt VFS_PROTOS(puffs);
     56  1.16.2.2  yamt 
     57  1.16.2.3  yamt #ifndef PUFFS_PNODEBUCKETS
     58  1.16.2.3  yamt #define PUFFS_PNODEBUCKETS 256
     59  1.16.2.3  yamt #endif
     60  1.16.2.3  yamt #ifndef PUFFS_MAXPNODEBUCKETS
     61  1.16.2.4  yamt #define PUFFS_MAXPNODEBUCKETS 8192
     62  1.16.2.3  yamt #endif
     63  1.16.2.4  yamt int puffs_pnodebuckets_default = PUFFS_PNODEBUCKETS;
     64  1.16.2.4  yamt int puffs_maxpnodebuckets = PUFFS_MAXPNODEBUCKETS;
     65  1.16.2.3  yamt 
     66  1.16.2.7  yamt #define BUCKETALLOC(a) (sizeof(struct puffs_pnode_hashlist *) * (a))
     67  1.16.2.7  yamt 
     68  1.16.2.6  yamt static struct putter_ops puffs_putter = {
     69  1.16.2.6  yamt 	.pop_getout	= puffs_msgif_getout,
     70  1.16.2.6  yamt 	.pop_releaseout	= puffs_msgif_releaseout,
     71  1.16.2.6  yamt 	.pop_waitcount	= puffs_msgif_waitcount,
     72  1.16.2.6  yamt 	.pop_dispatch	= puffs_msgif_dispatch,
     73  1.16.2.6  yamt 	.pop_close	= puffs_msgif_close,
     74  1.16.2.6  yamt };
     75  1.16.2.6  yamt 
     76  1.16.2.2  yamt int
     77  1.16.2.7  yamt puffs_mount(struct mount *mp, const char *path, void *data, size_t *data_len)
     78  1.16.2.2  yamt {
     79  1.16.2.3  yamt 	struct puffs_mount *pmp = NULL;
     80  1.16.2.4  yamt 	struct puffs_kargs *args;
     81  1.16.2.4  yamt 	char fstype[_VFS_NAMELEN];
     82  1.16.2.4  yamt 	char *p;
     83  1.16.2.3  yamt 	int error = 0, i;
     84  1.16.2.7  yamt 	pid_t mntpid = curlwp->l_proc->p_pid;
     85  1.16.2.2  yamt 
     86  1.16.2.4  yamt 	if (*data_len < sizeof *args)
     87  1.16.2.4  yamt 		return EINVAL;
     88  1.16.2.4  yamt 
     89  1.16.2.2  yamt 	if (mp->mnt_flag & MNT_GETARGS) {
     90  1.16.2.2  yamt 		pmp = MPTOPUFFSMP(mp);
     91  1.16.2.4  yamt 		*(struct puffs_kargs *)data = pmp->pmp_args;
     92  1.16.2.4  yamt 		*data_len = sizeof *args;
     93  1.16.2.4  yamt 		return 0;
     94  1.16.2.2  yamt 	}
     95  1.16.2.2  yamt 
     96  1.16.2.2  yamt 	/* update is not supported currently */
     97  1.16.2.2  yamt 	if (mp->mnt_flag & MNT_UPDATE)
     98  1.16.2.2  yamt 		return EOPNOTSUPP;
     99  1.16.2.2  yamt 
    100  1.16.2.2  yamt 	/*
    101  1.16.2.2  yamt 	 * We need the file system name
    102  1.16.2.2  yamt 	 */
    103  1.16.2.2  yamt 	if (!data)
    104  1.16.2.2  yamt 		return EINVAL;
    105  1.16.2.2  yamt 
    106  1.16.2.7  yamt 	args = (struct puffs_kargs *)data;
    107  1.16.2.3  yamt 
    108  1.16.2.3  yamt 	/* devel phase */
    109  1.16.2.3  yamt 	if (args->pa_vers != (PUFFSVERSION | PUFFSDEVELVERS)) {
    110  1.16.2.5  yamt 		printf("puffs_mount: development version mismatch: "
    111  1.16.2.5  yamt 		    "kernel %d, lib %d\n",
    112  1.16.2.5  yamt 		    PUFFSVERSION, args->pa_vers & ~PUFFSDEVELVERS);
    113  1.16.2.3  yamt 		error = EINVAL;
    114  1.16.2.3  yamt 		goto out;
    115  1.16.2.3  yamt 	}
    116  1.16.2.2  yamt 
    117  1.16.2.4  yamt 	if ((args->pa_flags & ~PUFFS_KFLAG_MASK) != 0) {
    118  1.16.2.4  yamt 		printf("puffs_mount: invalid KFLAGs 0x%x\n", args->pa_flags);
    119  1.16.2.4  yamt 		error = EINVAL;
    120  1.16.2.4  yamt 		goto out;
    121  1.16.2.4  yamt 	}
    122  1.16.2.4  yamt 	if ((args->pa_fhflags & ~PUFFS_FHFLAG_MASK) != 0) {
    123  1.16.2.4  yamt 		printf("puffs_mount: invalid FHFLAGs 0x%x\n", args->pa_fhflags);
    124  1.16.2.4  yamt 		error = EINVAL;
    125  1.16.2.4  yamt 		goto out;
    126  1.16.2.4  yamt 	}
    127  1.16.2.4  yamt 
    128  1.16.2.4  yamt 	/* use dummy value for passthrough */
    129  1.16.2.4  yamt 	if (args->pa_fhflags & PUFFS_FHFLAG_PASSTHROUGH)
    130  1.16.2.4  yamt 		args->pa_fhsize = sizeof(struct fid);
    131  1.16.2.4  yamt 
    132  1.16.2.4  yamt 	/* sanitize file handle length */
    133  1.16.2.4  yamt 	if (PUFFS_TOFHSIZE(args->pa_fhsize) > FHANDLE_SIZE_MAX) {
    134  1.16.2.4  yamt 		printf("puffs_mount: handle size %zu too large\n",
    135  1.16.2.4  yamt 		    args->pa_fhsize);
    136  1.16.2.4  yamt 		error = EINVAL;
    137  1.16.2.4  yamt 		goto out;
    138  1.16.2.4  yamt 	}
    139  1.16.2.4  yamt 	/* sanity check file handle max sizes */
    140  1.16.2.4  yamt 	if (args->pa_fhsize && args->pa_fhflags & PUFFS_FHFLAG_PROTOMASK) {
    141  1.16.2.4  yamt 		size_t kfhsize = PUFFS_TOFHSIZE(args->pa_fhsize);
    142  1.16.2.4  yamt 
    143  1.16.2.4  yamt 		if (args->pa_fhflags & PUFFS_FHFLAG_NFSV2) {
    144  1.16.2.4  yamt 			if (NFSX_FHTOOBIG_P(kfhsize, 0)) {
    145  1.16.2.4  yamt 				printf("puffs_mount: fhsize larger than "
    146  1.16.2.4  yamt 				    "NFSv2 max %d\n",
    147  1.16.2.4  yamt 				    PUFFS_FROMFHSIZE(NFSX_V2FH));
    148  1.16.2.4  yamt 				error = EINVAL;
    149  1.16.2.4  yamt 				goto out;
    150  1.16.2.4  yamt 			}
    151  1.16.2.4  yamt 		}
    152  1.16.2.4  yamt 
    153  1.16.2.4  yamt 		if (args->pa_fhflags & PUFFS_FHFLAG_NFSV3) {
    154  1.16.2.4  yamt 			if (NFSX_FHTOOBIG_P(kfhsize, 1)) {
    155  1.16.2.4  yamt 				printf("puffs_mount: fhsize larger than "
    156  1.16.2.4  yamt 				    "NFSv3 max %d\n",
    157  1.16.2.4  yamt 				    PUFFS_FROMFHSIZE(NFSX_V3FHMAX));
    158  1.16.2.4  yamt 				error = EINVAL;
    159  1.16.2.4  yamt 				goto out;
    160  1.16.2.4  yamt 			}
    161  1.16.2.4  yamt 		}
    162  1.16.2.4  yamt 	}
    163  1.16.2.4  yamt 
    164  1.16.2.4  yamt 	/* don't allow non-printing characters (like my sweet umlauts.. snif) */
    165  1.16.2.4  yamt 	args->pa_typename[sizeof(args->pa_typename)-1] = '\0';
    166  1.16.2.4  yamt 	for (p = args->pa_typename; *p; p++)
    167  1.16.2.4  yamt 		if (*p < ' ' || *p > '~')
    168  1.16.2.4  yamt 			*p = '.';
    169  1.16.2.4  yamt 
    170  1.16.2.4  yamt 	args->pa_mntfromname[sizeof(args->pa_mntfromname)-1] = '\0';
    171  1.16.2.4  yamt 	for (p = args->pa_mntfromname; *p; p++)
    172  1.16.2.4  yamt 		if (*p < ' ' || *p > '~')
    173  1.16.2.4  yamt 			*p = '.';
    174  1.16.2.2  yamt 
    175  1.16.2.2  yamt 	/* build real name */
    176  1.16.2.4  yamt 	(void)strlcpy(fstype, PUFFS_TYPEPREFIX, sizeof(fstype));
    177  1.16.2.4  yamt 	(void)strlcat(fstype, args->pa_typename, sizeof(fstype));
    178  1.16.2.2  yamt 
    179  1.16.2.2  yamt 	/* inform user server if it got the max request size it wanted */
    180  1.16.2.5  yamt 	if (args->pa_maxmsglen == 0 || args->pa_maxmsglen > PUFFS_MSG_MAXSIZE)
    181  1.16.2.5  yamt 		args->pa_maxmsglen = PUFFS_MSG_MAXSIZE;
    182  1.16.2.5  yamt 	else if (args->pa_maxmsglen < 2*PUFFS_MSGSTRUCT_MAX)
    183  1.16.2.5  yamt 		args->pa_maxmsglen = 2*PUFFS_MSGSTRUCT_MAX;
    184  1.16.2.5  yamt 
    185  1.16.2.4  yamt 	(void)strlcpy(args->pa_typename, fstype, sizeof(args->pa_typename));
    186  1.16.2.4  yamt 
    187  1.16.2.4  yamt 	if (args->pa_nhashbuckets == 0)
    188  1.16.2.4  yamt 		args->pa_nhashbuckets = puffs_pnodebuckets_default;
    189  1.16.2.4  yamt 	if (args->pa_nhashbuckets < 1)
    190  1.16.2.4  yamt 		args->pa_nhashbuckets = 1;
    191  1.16.2.4  yamt 	if (args->pa_nhashbuckets > PUFFS_MAXPNODEBUCKETS) {
    192  1.16.2.4  yamt 		args->pa_nhashbuckets = puffs_maxpnodebuckets;
    193  1.16.2.4  yamt 		printf("puffs_mount: using %d hash buckets. "
    194  1.16.2.4  yamt 		    "adjust puffs_maxpnodebuckets for more\n",
    195  1.16.2.4  yamt 		    puffs_maxpnodebuckets);
    196  1.16.2.4  yamt 	}
    197  1.16.2.2  yamt 
    198  1.16.2.4  yamt 	error = set_statvfs_info(path, UIO_USERSPACE, args->pa_mntfromname,
    199  1.16.2.7  yamt 	    UIO_SYSSPACE, fstype, mp, curlwp);
    200  1.16.2.2  yamt 	if (error)
    201  1.16.2.3  yamt 		goto out;
    202  1.16.2.2  yamt 	mp->mnt_stat.f_iosize = DEV_BSIZE;
    203  1.16.2.2  yamt 
    204  1.16.2.4  yamt 	/*
    205  1.16.2.4  yamt 	 * We can't handle the VFS_STATVFS() mount_domount() does
    206  1.16.2.4  yamt 	 * after VFS_MOUNT() because we'd deadlock, so handle it
    207  1.16.2.4  yamt 	 * here already.
    208  1.16.2.4  yamt 	 */
    209  1.16.2.4  yamt 	copy_statvfs_info(&args->pa_svfsb, mp);
    210  1.16.2.4  yamt 	(void)memcpy(&mp->mnt_stat, &args->pa_svfsb, sizeof(mp->mnt_stat));
    211  1.16.2.4  yamt 
    212  1.16.2.7  yamt 	pmp = kmem_zalloc(sizeof(struct puffs_mount), KM_SLEEP);
    213  1.16.2.2  yamt 
    214  1.16.2.2  yamt 	mp->mnt_fs_bshift = DEV_BSHIFT;
    215  1.16.2.2  yamt 	mp->mnt_dev_bshift = DEV_BSHIFT;
    216  1.16.2.2  yamt 	mp->mnt_flag &= ~MNT_LOCAL; /* we don't really know, so ... */
    217  1.16.2.2  yamt 	mp->mnt_data = pmp;
    218  1.16.2.3  yamt 	mp->mnt_iflag |= IMNT_HAS_TRANS;
    219  1.16.2.2  yamt 
    220  1.16.2.2  yamt 	pmp->pmp_status = PUFFSTAT_MOUNTING;
    221  1.16.2.2  yamt 	pmp->pmp_mp = mp;
    222  1.16.2.5  yamt 	pmp->pmp_msg_maxsize = args->pa_maxmsglen;
    223  1.16.2.3  yamt 	pmp->pmp_args = *args;
    224  1.16.2.3  yamt 
    225  1.16.2.4  yamt 	pmp->pmp_npnodehash = args->pa_nhashbuckets;
    226  1.16.2.7  yamt 	pmp->pmp_pnodehash = kmem_alloc(BUCKETALLOC(pmp->pmp_npnodehash), KM_SLEEP);
    227  1.16.2.3  yamt 	for (i = 0; i < pmp->pmp_npnodehash; i++)
    228  1.16.2.3  yamt 		LIST_INIT(&pmp->pmp_pnodehash[i]);
    229  1.16.2.5  yamt 	LIST_INIT(&pmp->pmp_newcookie);
    230  1.16.2.2  yamt 
    231  1.16.2.2  yamt 	/*
    232  1.16.2.2  yamt 	 * Inform the fileops processing code that we have a mountpoint.
    233  1.16.2.2  yamt 	 * If it doesn't know about anyone with our pid/fd having the
    234  1.16.2.2  yamt 	 * device open, punt
    235  1.16.2.2  yamt 	 */
    236  1.16.2.6  yamt 	if ((pmp->pmp_pi
    237  1.16.2.6  yamt 	    = putter_attach(mntpid, args->pa_fd, pmp, &puffs_putter)) == NULL) {
    238  1.16.2.3  yamt 		error = ENOENT;
    239  1.16.2.3  yamt 		goto out;
    240  1.16.2.2  yamt 	}
    241  1.16.2.2  yamt 
    242  1.16.2.4  yamt 	/* XXX: check parameters */
    243  1.16.2.4  yamt 	pmp->pmp_root_cookie = args->pa_root_cookie;
    244  1.16.2.4  yamt 	pmp->pmp_root_vtype = args->pa_root_vtype;
    245  1.16.2.4  yamt 	pmp->pmp_root_vsize = args->pa_root_vsize;
    246  1.16.2.4  yamt 	pmp->pmp_root_rdev = args->pa_root_rdev;
    247  1.16.2.4  yamt 
    248  1.16.2.4  yamt 	mutex_init(&pmp->pmp_lock, MUTEX_DEFAULT, IPL_NONE);
    249  1.16.2.5  yamt 	cv_init(&pmp->pmp_msg_waiter_cv, "puffsget");
    250  1.16.2.4  yamt 	cv_init(&pmp->pmp_refcount_cv, "puffsref");
    251  1.16.2.4  yamt 	cv_init(&pmp->pmp_unmounting_cv, "puffsum");
    252  1.16.2.5  yamt 	TAILQ_INIT(&pmp->pmp_msg_touser);
    253  1.16.2.5  yamt 	TAILQ_INIT(&pmp->pmp_msg_replywait);
    254  1.16.2.2  yamt 
    255  1.16.2.2  yamt 	DPRINTF(("puffs_mount: mount point at %p, puffs specific at %p\n",
    256  1.16.2.2  yamt 	    mp, MPTOPUFFSMP(mp)));
    257  1.16.2.2  yamt 
    258  1.16.2.2  yamt 	vfs_getnewfsid(mp);
    259  1.16.2.2  yamt 
    260  1.16.2.3  yamt  out:
    261  1.16.2.3  yamt 	if (error && pmp && pmp->pmp_pnodehash)
    262  1.16.2.7  yamt 		kmem_free(pmp->pmp_pnodehash, BUCKETALLOC(pmp->pmp_npnodehash));
    263  1.16.2.3  yamt 	if (error && pmp)
    264  1.16.2.7  yamt 		kmem_free(pmp, sizeof(struct puffs_mount));
    265  1.16.2.3  yamt 	return error;
    266  1.16.2.2  yamt }
    267  1.16.2.2  yamt 
    268  1.16.2.2  yamt int
    269  1.16.2.7  yamt puffs_start(struct mount *mp, int flags)
    270  1.16.2.2  yamt {
    271  1.16.2.4  yamt 	struct puffs_mount *pmp = MPTOPUFFSMP(mp);
    272  1.16.2.2  yamt 
    273  1.16.2.4  yamt 	KASSERT(pmp->pmp_status == PUFFSTAT_MOUNTING);
    274  1.16.2.2  yamt 	pmp->pmp_status = PUFFSTAT_RUNNING;
    275  1.16.2.2  yamt 
    276  1.16.2.2  yamt 	return 0;
    277  1.16.2.2  yamt }
    278  1.16.2.2  yamt 
    279  1.16.2.2  yamt int
    280  1.16.2.7  yamt puffs_unmount(struct mount *mp, int mntflags)
    281  1.16.2.2  yamt {
    282  1.16.2.5  yamt 	PUFFS_MSG_VARS(vfs, unmount);
    283  1.16.2.2  yamt 	struct puffs_mount *pmp;
    284  1.16.2.2  yamt 	int error, force;
    285  1.16.2.2  yamt 
    286  1.16.2.2  yamt 	error = 0;
    287  1.16.2.2  yamt 	force = mntflags & MNT_FORCE;
    288  1.16.2.2  yamt 	pmp = MPTOPUFFSMP(mp);
    289  1.16.2.2  yamt 
    290  1.16.2.2  yamt 	DPRINTF(("puffs_unmount: detach filesystem from vfs, current "
    291  1.16.2.2  yamt 	    "status 0x%x\n", pmp->pmp_status));
    292  1.16.2.2  yamt 
    293  1.16.2.2  yamt 	/*
    294  1.16.2.2  yamt 	 * flush all the vnodes.  VOP_RECLAIM() takes care that the
    295  1.16.2.2  yamt 	 * root vnode does not get flushed until unmount.  The
    296  1.16.2.2  yamt 	 * userspace root node cookie is stored in the mount
    297  1.16.2.2  yamt 	 * structure, so we can always re-instantiate a root vnode,
    298  1.16.2.2  yamt 	 * should userspace unmount decide it doesn't want to
    299  1.16.2.2  yamt 	 * cooperate.
    300  1.16.2.2  yamt 	 */
    301  1.16.2.2  yamt 	error = vflush(mp, NULLVP, force ? FORCECLOSE : 0);
    302  1.16.2.2  yamt 	if (error)
    303  1.16.2.2  yamt 		goto out;
    304  1.16.2.2  yamt 
    305  1.16.2.2  yamt 	/*
    306  1.16.2.2  yamt 	 * If we are not DYING, we should ask userspace's opinion
    307  1.16.2.2  yamt 	 * about the situation
    308  1.16.2.2  yamt 	 */
    309  1.16.2.4  yamt 	mutex_enter(&pmp->pmp_lock);
    310  1.16.2.2  yamt 	if (pmp->pmp_status != PUFFSTAT_DYING) {
    311  1.16.2.2  yamt 		pmp->pmp_unmounting = 1;
    312  1.16.2.4  yamt 		mutex_exit(&pmp->pmp_lock);
    313  1.16.2.2  yamt 
    314  1.16.2.5  yamt 		PUFFS_MSG_ALLOC(vfs, unmount);
    315  1.16.2.7  yamt 		puffs_msg_setinfo(park_unmount,
    316  1.16.2.7  yamt 		    PUFFSOP_VFS, PUFFS_VFS_UNMOUNT, NULL);
    317  1.16.2.5  yamt 		unmount_msg->pvfsr_flags = mntflags;
    318  1.16.2.5  yamt 
    319  1.16.2.7  yamt 		PUFFS_MSG_ENQUEUEWAIT(pmp, park_unmount, error);
    320  1.16.2.5  yamt 		PUFFS_MSG_RELEASE(unmount);
    321  1.16.2.2  yamt 
    322  1.16.2.5  yamt 		error = checkerr(pmp, error, __func__);
    323  1.16.2.2  yamt 		DPRINTF(("puffs_unmount: error %d force %d\n", error, force));
    324  1.16.2.2  yamt 
    325  1.16.2.4  yamt 		mutex_enter(&pmp->pmp_lock);
    326  1.16.2.2  yamt 		pmp->pmp_unmounting = 0;
    327  1.16.2.4  yamt 		cv_broadcast(&pmp->pmp_unmounting_cv);
    328  1.16.2.2  yamt 	}
    329  1.16.2.2  yamt 
    330  1.16.2.2  yamt 	/*
    331  1.16.2.2  yamt 	 * if userspace cooperated or we really need to die,
    332  1.16.2.2  yamt 	 * screw what userland thinks and just die.
    333  1.16.2.2  yamt 	 */
    334  1.16.2.2  yamt 	if (error == 0 || force) {
    335  1.16.2.3  yamt 		/* tell waiters & other resources to go unwait themselves */
    336  1.16.2.3  yamt 		puffs_userdead(pmp);
    337  1.16.2.6  yamt 		putter_detach(pmp->pmp_pi);
    338  1.16.2.3  yamt 
    339  1.16.2.3  yamt 		/*
    340  1.16.2.4  yamt 		 * Wait until there are no more users for the mount resource.
    341  1.16.2.4  yamt 		 * Notice that this is hooked against transport_close
    342  1.16.2.4  yamt 		 * and return from touser.  In an ideal world, it would
    343  1.16.2.4  yamt 		 * be hooked against final return from all operations.
    344  1.16.2.4  yamt 		 * But currently it works well enough, since nobody
    345  1.16.2.4  yamt 		 * does weird blocking voodoo after return from touser().
    346  1.16.2.3  yamt 		 */
    347  1.16.2.4  yamt 		while (pmp->pmp_refcount != 0)
    348  1.16.2.4  yamt 			cv_wait(&pmp->pmp_refcount_cv, &pmp->pmp_lock);
    349  1.16.2.4  yamt 		mutex_exit(&pmp->pmp_lock);
    350  1.16.2.3  yamt 
    351  1.16.2.3  yamt 		/* free resources now that we hopefully have no waiters left */
    352  1.16.2.4  yamt 		cv_destroy(&pmp->pmp_unmounting_cv);
    353  1.16.2.4  yamt 		cv_destroy(&pmp->pmp_refcount_cv);
    354  1.16.2.5  yamt 		cv_destroy(&pmp->pmp_msg_waiter_cv);
    355  1.16.2.4  yamt 		mutex_destroy(&pmp->pmp_lock);
    356  1.16.2.4  yamt 
    357  1.16.2.7  yamt 		kmem_free(pmp->pmp_pnodehash, BUCKETALLOC(pmp->pmp_npnodehash));
    358  1.16.2.7  yamt 		kmem_free(pmp, sizeof(struct puffs_mount));
    359  1.16.2.2  yamt 		error = 0;
    360  1.16.2.2  yamt 	} else {
    361  1.16.2.4  yamt 		mutex_exit(&pmp->pmp_lock);
    362  1.16.2.2  yamt 	}
    363  1.16.2.2  yamt 
    364  1.16.2.2  yamt  out:
    365  1.16.2.2  yamt 	DPRINTF(("puffs_unmount: return %d\n", error));
    366  1.16.2.2  yamt 	return error;
    367  1.16.2.2  yamt }
    368  1.16.2.2  yamt 
    369  1.16.2.2  yamt /*
    370  1.16.2.2  yamt  * This doesn't need to travel to userspace
    371  1.16.2.2  yamt  */
    372  1.16.2.2  yamt int
    373  1.16.2.2  yamt puffs_root(struct mount *mp, struct vnode **vpp)
    374  1.16.2.2  yamt {
    375  1.16.2.4  yamt 	struct puffs_mount *pmp = MPTOPUFFSMP(mp);
    376  1.16.2.5  yamt 	int rv;
    377  1.16.2.2  yamt 
    378  1.16.2.5  yamt 	rv = puffs_cookie2vnode(pmp, pmp->pmp_root_cookie, 1, 1, vpp);
    379  1.16.2.5  yamt 	KASSERT(rv != PUFFS_NOSUCHCOOKIE);
    380  1.16.2.5  yamt 	return rv;
    381  1.16.2.2  yamt }
    382  1.16.2.2  yamt 
    383  1.16.2.2  yamt int
    384  1.16.2.7  yamt puffs_statvfs(struct mount *mp, struct statvfs *sbp)
    385  1.16.2.2  yamt {
    386  1.16.2.5  yamt 	PUFFS_MSG_VARS(vfs, statvfs);
    387  1.16.2.2  yamt 	struct puffs_mount *pmp;
    388  1.16.2.2  yamt 	int error = 0;
    389  1.16.2.2  yamt 
    390  1.16.2.2  yamt 	pmp = MPTOPUFFSMP(mp);
    391  1.16.2.2  yamt 
    392  1.16.2.2  yamt 	/*
    393  1.16.2.2  yamt 	 * If we are mounting, it means that the userspace counterpart
    394  1.16.2.2  yamt 	 * is calling mount(2), but mount(2) also calls statvfs.  So
    395  1.16.2.2  yamt 	 * requesting statvfs from userspace would mean a deadlock.
    396  1.16.2.2  yamt 	 * Compensate.
    397  1.16.2.2  yamt 	 */
    398  1.16.2.2  yamt 	if (pmp->pmp_status == PUFFSTAT_MOUNTING)
    399  1.16.2.2  yamt 		return EINPROGRESS;
    400  1.16.2.2  yamt 
    401  1.16.2.5  yamt 	PUFFS_MSG_ALLOC(vfs, statvfs);
    402  1.16.2.7  yamt 	puffs_msg_setinfo(park_statvfs, PUFFSOP_VFS, PUFFS_VFS_STATVFS, NULL);
    403  1.16.2.5  yamt 
    404  1.16.2.7  yamt 	PUFFS_MSG_ENQUEUEWAIT(pmp, park_statvfs, error);
    405  1.16.2.5  yamt 	error = checkerr(pmp, error, __func__);
    406  1.16.2.5  yamt 	statvfs_msg->pvfsr_sb.f_iosize = DEV_BSIZE;
    407  1.16.2.2  yamt 
    408  1.16.2.2  yamt 	/*
    409  1.16.2.2  yamt 	 * Try to produce a sensible result even in the event
    410  1.16.2.2  yamt 	 * of userspace error.
    411  1.16.2.2  yamt 	 *
    412  1.16.2.2  yamt 	 * XXX: cache the copy in non-error case
    413  1.16.2.2  yamt 	 */
    414  1.16.2.2  yamt 	if (!error) {
    415  1.16.2.5  yamt 		copy_statvfs_info(&statvfs_msg->pvfsr_sb, mp);
    416  1.16.2.5  yamt 		(void)memcpy(sbp, &statvfs_msg->pvfsr_sb,
    417  1.16.2.2  yamt 		    sizeof(struct statvfs));
    418  1.16.2.2  yamt 	} else {
    419  1.16.2.2  yamt 		copy_statvfs_info(sbp, mp);
    420  1.16.2.2  yamt 	}
    421  1.16.2.2  yamt 
    422  1.16.2.5  yamt 	PUFFS_MSG_RELEASE(statvfs);
    423  1.16.2.2  yamt 	return error;
    424  1.16.2.2  yamt }
    425  1.16.2.2  yamt 
    426  1.16.2.3  yamt static int
    427  1.16.2.7  yamt pageflush(struct mount *mp, kauth_cred_t cred, int waitfor, int suspending)
    428  1.16.2.3  yamt {
    429  1.16.2.3  yamt 	struct puffs_node *pn;
    430  1.16.2.3  yamt 	struct vnode *vp, *nvp;
    431  1.16.2.4  yamt 	int error, rv;
    432  1.16.2.3  yamt 
    433  1.16.2.3  yamt 	KASSERT(((waitfor == MNT_WAIT) && suspending) == 0);
    434  1.16.2.3  yamt 	KASSERT((suspending == 0)
    435  1.16.2.3  yamt 	    || (fstrans_is_owner(mp)
    436  1.16.2.3  yamt 	      && fstrans_getstate(mp) == FSTRANS_SUSPENDING));
    437  1.16.2.3  yamt 
    438  1.16.2.3  yamt 	error = 0;
    439  1.16.2.3  yamt 
    440  1.16.2.3  yamt 	/*
    441  1.16.2.3  yamt 	 * Sync all cached data from regular vnodes (which are not
    442  1.16.2.3  yamt 	 * currently locked, see below).  After this we call VFS_SYNC
    443  1.16.2.3  yamt 	 * for the fs server, which should handle data and metadata for
    444  1.16.2.3  yamt 	 * all the nodes it knows to exist.
    445  1.16.2.3  yamt 	 */
    446  1.16.2.3  yamt 	simple_lock(&mntvnode_slock);
    447  1.16.2.3  yamt  loop:
    448  1.16.2.3  yamt 	for (vp = TAILQ_FIRST(&mp->mnt_vnodelist); vp; vp = nvp) {
    449  1.16.2.3  yamt 		/* check if we're on the right list */
    450  1.16.2.3  yamt 		if (vp->v_mount != mp)
    451  1.16.2.3  yamt 			goto loop;
    452  1.16.2.3  yamt 
    453  1.16.2.3  yamt 		simple_lock(&vp->v_interlock);
    454  1.16.2.3  yamt 		pn = VPTOPP(vp);
    455  1.16.2.3  yamt 		nvp = TAILQ_NEXT(vp, v_mntvnodes);
    456  1.16.2.3  yamt 
    457  1.16.2.3  yamt 		if (vp->v_type != VREG || UVM_OBJ_IS_CLEAN(&vp->v_uobj)) {
    458  1.16.2.3  yamt 			simple_unlock(&vp->v_interlock);
    459  1.16.2.3  yamt 			continue;
    460  1.16.2.3  yamt 		}
    461  1.16.2.3  yamt 
    462  1.16.2.3  yamt 		simple_unlock(&mntvnode_slock);
    463  1.16.2.3  yamt 
    464  1.16.2.3  yamt 		/*
    465  1.16.2.3  yamt 		 * Here we try to get a reference to the vnode and to
    466  1.16.2.3  yamt 		 * lock it.  This is mostly cargo-culted, but I will
    467  1.16.2.3  yamt 		 * offer an explanation to why I believe this might
    468  1.16.2.3  yamt 		 * actually do the right thing.
    469  1.16.2.3  yamt 		 *
    470  1.16.2.3  yamt 		 * If the vnode is a goner, we quite obviously don't need
    471  1.16.2.3  yamt 		 * to sync it.
    472  1.16.2.3  yamt 		 *
    473  1.16.2.3  yamt 		 * If the vnode was busy, we don't need to sync it because
    474  1.16.2.3  yamt 		 * this is never called with MNT_WAIT except from
    475  1.16.2.3  yamt 		 * dounmount(), when we are wait-flushing all the dirty
    476  1.16.2.3  yamt 		 * vnodes through other routes in any case.  So there,
    477  1.16.2.3  yamt 		 * sync() doesn't actually sync.  Happy now?
    478  1.16.2.3  yamt 		 *
    479  1.16.2.3  yamt 		 * NOTE: if we're suspending, vget() does NOT lock.
    480  1.16.2.3  yamt 		 * See puffs_lock() for details.
    481  1.16.2.3  yamt 		 */
    482  1.16.2.3  yamt 		rv = vget(vp, LK_EXCLUSIVE | LK_NOWAIT | LK_INTERLOCK);
    483  1.16.2.3  yamt 		if (rv) {
    484  1.16.2.3  yamt 			simple_lock(&mntvnode_slock);
    485  1.16.2.3  yamt 			if (rv == ENOENT)
    486  1.16.2.3  yamt 				goto loop;
    487  1.16.2.3  yamt 			continue;
    488  1.16.2.3  yamt 		}
    489  1.16.2.3  yamt 
    490  1.16.2.3  yamt 		/*
    491  1.16.2.3  yamt 		 * Thread information to puffs_strategy() through the
    492  1.16.2.3  yamt 		 * pnode flags: we want to issue the putpages operations
    493  1.16.2.3  yamt 		 * as FAF if we're suspending, since it's very probable
    494  1.16.2.3  yamt 		 * that our execution context is that of the userspace
    495  1.16.2.3  yamt 		 * daemon.  We can do this because:
    496  1.16.2.3  yamt 		 *   + we send the "going to suspend" prior to this part
    497  1.16.2.3  yamt 		 *   + if any of the writes fails in userspace, it's the
    498  1.16.2.3  yamt 		 *     file system server's problem to decide if this was a
    499  1.16.2.3  yamt 		 *     failed snapshot when it gets the "snapshot complete"
    500  1.16.2.3  yamt 		 *     notification.
    501  1.16.2.3  yamt 		 *   + if any of the writes fail in the kernel already, we
    502  1.16.2.3  yamt 		 *     immediately fail *and* notify the user server of
    503  1.16.2.3  yamt 		 *     failure.
    504  1.16.2.3  yamt 		 *
    505  1.16.2.3  yamt 		 * We also do FAFs if we're called from the syncer.  This
    506  1.16.2.3  yamt 		 * is just general optimization for trickle sync: no need
    507  1.16.2.3  yamt 		 * to really guarantee that the stuff ended on backing
    508  1.16.2.3  yamt 		 * storage.
    509  1.16.2.3  yamt 		 * TODO: Maybe also hint the user server of this twist?
    510  1.16.2.3  yamt 		 */
    511  1.16.2.4  yamt 		if (suspending || waitfor == MNT_LAZY) {
    512  1.16.2.4  yamt 			simple_lock(&vp->v_interlock);
    513  1.16.2.3  yamt 			pn->pn_stat |= PNODE_SUSPEND;
    514  1.16.2.4  yamt 			simple_unlock(&vp->v_interlock);
    515  1.16.2.4  yamt 		}
    516  1.16.2.7  yamt 		rv = VOP_FSYNC(vp, cred, waitfor, 0, 0);
    517  1.16.2.3  yamt 		if (suspending || waitfor == MNT_LAZY) {
    518  1.16.2.3  yamt 			simple_lock(&vp->v_interlock);
    519  1.16.2.3  yamt 			pn->pn_stat &= ~PNODE_SUSPEND;
    520  1.16.2.3  yamt 			simple_unlock(&vp->v_interlock);
    521  1.16.2.3  yamt 		}
    522  1.16.2.3  yamt 		if (rv)
    523  1.16.2.3  yamt 			error = rv;
    524  1.16.2.3  yamt 		vput(vp);
    525  1.16.2.3  yamt 		simple_lock(&mntvnode_slock);
    526  1.16.2.3  yamt 	}
    527  1.16.2.3  yamt 	simple_unlock(&mntvnode_slock);
    528  1.16.2.3  yamt 
    529  1.16.2.3  yamt 	return error;
    530  1.16.2.3  yamt }
    531  1.16.2.3  yamt 
    532  1.16.2.2  yamt int
    533  1.16.2.7  yamt puffs_sync(struct mount *mp, int waitfor, struct kauth_cred *cred)
    534  1.16.2.2  yamt {
    535  1.16.2.5  yamt 	PUFFS_MSG_VARS(vfs, sync);
    536  1.16.2.5  yamt 	struct puffs_mount *pmp = MPTOPUFFSMP(mp);
    537  1.16.2.3  yamt 	int error, rv;
    538  1.16.2.2  yamt 
    539  1.16.2.7  yamt 	error = pageflush(mp, cred, waitfor, 0);
    540  1.16.2.3  yamt 
    541  1.16.2.3  yamt 	/* sync fs */
    542  1.16.2.5  yamt 	PUFFS_MSG_ALLOC(vfs, sync);
    543  1.16.2.5  yamt 	sync_msg->pvfsr_waitfor = waitfor;
    544  1.16.2.5  yamt 	puffs_credcvt(&sync_msg->pvfsr_cred, cred);
    545  1.16.2.7  yamt 	puffs_msg_setinfo(park_sync, PUFFSOP_VFS, PUFFS_VFS_SYNC, NULL);
    546  1.16.2.2  yamt 
    547  1.16.2.7  yamt 	PUFFS_MSG_ENQUEUEWAIT(pmp, park_sync, rv);
    548  1.16.2.5  yamt 	rv = checkerr(pmp, rv, __func__);
    549  1.16.2.3  yamt 	if (rv)
    550  1.16.2.3  yamt 		error = rv;
    551  1.16.2.2  yamt 
    552  1.16.2.5  yamt 	PUFFS_MSG_RELEASE(sync);
    553  1.16.2.2  yamt 	return error;
    554  1.16.2.2  yamt }
    555  1.16.2.2  yamt 
    556  1.16.2.2  yamt int
    557  1.16.2.4  yamt puffs_fhtovp(struct mount *mp, struct fid *fhp, struct vnode **vpp)
    558  1.16.2.2  yamt {
    559  1.16.2.5  yamt 	PUFFS_MSG_VARS(vfs, fhtonode);
    560  1.16.2.4  yamt 	struct puffs_mount *pmp = MPTOPUFFSMP(mp);
    561  1.16.2.4  yamt 	struct vnode *vp;
    562  1.16.2.4  yamt 	void *fhdata;
    563  1.16.2.4  yamt 	size_t argsize, fhlen;
    564  1.16.2.4  yamt 	int error;
    565  1.16.2.2  yamt 
    566  1.16.2.4  yamt 	if (pmp->pmp_args.pa_fhsize == 0)
    567  1.16.2.4  yamt 		return EOPNOTSUPP;
    568  1.16.2.2  yamt 
    569  1.16.2.4  yamt 	if (pmp->pmp_args.pa_fhflags & PUFFS_FHFLAG_PASSTHROUGH) {
    570  1.16.2.4  yamt 		fhlen = fhp->fid_len;
    571  1.16.2.4  yamt 		fhdata = fhp;
    572  1.16.2.4  yamt 	} else {
    573  1.16.2.4  yamt 		fhlen = PUFFS_FROMFHSIZE(fhp->fid_len);
    574  1.16.2.4  yamt 		fhdata = fhp->fid_data;
    575  1.16.2.2  yamt 
    576  1.16.2.4  yamt 		if (pmp->pmp_args.pa_fhflags & PUFFS_FHFLAG_DYNAMIC) {
    577  1.16.2.4  yamt 			if (pmp->pmp_args.pa_fhsize < fhlen)
    578  1.16.2.4  yamt 				return EINVAL;
    579  1.16.2.4  yamt 		} else {
    580  1.16.2.4  yamt 			if (pmp->pmp_args.pa_fhsize != fhlen)
    581  1.16.2.4  yamt 				return EINVAL;
    582  1.16.2.4  yamt 		}
    583  1.16.2.4  yamt 	}
    584  1.16.2.4  yamt 
    585  1.16.2.5  yamt 	argsize = sizeof(struct puffs_vfsmsg_fhtonode) + fhlen;
    586  1.16.2.5  yamt 	puffs_msgmem_alloc(argsize, &park_fhtonode, (void **)&fhtonode_msg, 1);
    587  1.16.2.5  yamt 	fhtonode_msg->pvfsr_dsize = fhlen;
    588  1.16.2.5  yamt 	memcpy(fhtonode_msg->pvfsr_data, fhdata, fhlen);
    589  1.16.2.7  yamt 	puffs_msg_setinfo(park_fhtonode, PUFFSOP_VFS, PUFFS_VFS_FHTOVP, NULL);
    590  1.16.2.4  yamt 
    591  1.16.2.7  yamt 	PUFFS_MSG_ENQUEUEWAIT(pmp, park_fhtonode, error);
    592  1.16.2.5  yamt 	error = checkerr(pmp, error, __func__);
    593  1.16.2.4  yamt 	if (error)
    594  1.16.2.4  yamt 		goto out;
    595  1.16.2.4  yamt 
    596  1.16.2.5  yamt 	error = puffs_cookie2vnode(pmp, fhtonode_msg->pvfsr_fhcookie, 1,1,&vp);
    597  1.16.2.4  yamt 	DPRINTF(("puffs_fhtovp: got cookie %p, existing vnode %p\n",
    598  1.16.2.5  yamt 	    fhtonode_msg->pvfsr_fhcookie, vp));
    599  1.16.2.5  yamt 	if (error == PUFFS_NOSUCHCOOKIE) {
    600  1.16.2.5  yamt 		error = puffs_getvnode(mp, fhtonode_msg->pvfsr_fhcookie,
    601  1.16.2.5  yamt 		    fhtonode_msg->pvfsr_vtype, fhtonode_msg->pvfsr_size,
    602  1.16.2.5  yamt 		    fhtonode_msg->pvfsr_rdev, &vp);
    603  1.16.2.4  yamt 		if (error)
    604  1.16.2.4  yamt 			goto out;
    605  1.16.2.4  yamt 		vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
    606  1.16.2.5  yamt 	} else if (error) {
    607  1.16.2.5  yamt 		goto out;
    608  1.16.2.4  yamt 	}
    609  1.16.2.4  yamt 
    610  1.16.2.4  yamt 	*vpp = vp;
    611  1.16.2.4  yamt  out:
    612  1.16.2.5  yamt 	puffs_msgmem_release(park_fhtonode);
    613  1.16.2.4  yamt 	return error;
    614  1.16.2.2  yamt }
    615  1.16.2.2  yamt 
    616  1.16.2.2  yamt int
    617  1.16.2.4  yamt puffs_vptofh(struct vnode *vp, struct fid *fhp, size_t *fh_size)
    618  1.16.2.2  yamt {
    619  1.16.2.5  yamt 	PUFFS_MSG_VARS(vfs, nodetofh);
    620  1.16.2.4  yamt 	struct puffs_mount *pmp = MPTOPUFFSMP(vp->v_mount);
    621  1.16.2.4  yamt 	size_t argsize, fhlen;
    622  1.16.2.4  yamt 	int error;
    623  1.16.2.2  yamt 
    624  1.16.2.4  yamt 	if (pmp->pmp_args.pa_fhsize == 0)
    625  1.16.2.4  yamt 		return EOPNOTSUPP;
    626  1.16.2.4  yamt 
    627  1.16.2.4  yamt 	/* if file handles are static len, we can test len immediately */
    628  1.16.2.4  yamt 	if (((pmp->pmp_args.pa_fhflags & PUFFS_FHFLAG_DYNAMIC) == 0)
    629  1.16.2.4  yamt 	    && ((pmp->pmp_args.pa_fhflags & PUFFS_FHFLAG_PASSTHROUGH) == 0)
    630  1.16.2.4  yamt 	    && (PUFFS_FROMFHSIZE(*fh_size) < pmp->pmp_args.pa_fhsize)) {
    631  1.16.2.4  yamt 		*fh_size = PUFFS_TOFHSIZE(pmp->pmp_args.pa_fhsize);
    632  1.16.2.4  yamt 		return E2BIG;
    633  1.16.2.4  yamt 	}
    634  1.16.2.4  yamt 
    635  1.16.2.4  yamt 	if (pmp->pmp_args.pa_fhflags & PUFFS_FHFLAG_PASSTHROUGH)
    636  1.16.2.4  yamt 		fhlen = *fh_size;
    637  1.16.2.4  yamt 	else
    638  1.16.2.4  yamt 		fhlen = PUFFS_FROMFHSIZE(*fh_size);
    639  1.16.2.4  yamt 
    640  1.16.2.5  yamt 	argsize = sizeof(struct puffs_vfsmsg_nodetofh) + fhlen;
    641  1.16.2.5  yamt 	puffs_msgmem_alloc(argsize, &park_nodetofh, (void **)&nodetofh_msg, 1);
    642  1.16.2.5  yamt 	nodetofh_msg->pvfsr_fhcookie = VPTOPNC(vp);
    643  1.16.2.5  yamt 	nodetofh_msg->pvfsr_dsize = fhlen;
    644  1.16.2.7  yamt 	puffs_msg_setinfo(park_nodetofh, PUFFSOP_VFS, PUFFS_VFS_VPTOFH, NULL);
    645  1.16.2.4  yamt 
    646  1.16.2.7  yamt 	PUFFS_MSG_ENQUEUEWAIT(pmp, park_nodetofh, error);
    647  1.16.2.5  yamt 	error = checkerr(pmp, error, __func__);
    648  1.16.2.4  yamt 
    649  1.16.2.4  yamt 	if (pmp->pmp_args.pa_fhflags & PUFFS_FHFLAG_PASSTHROUGH)
    650  1.16.2.5  yamt 		fhlen = nodetofh_msg->pvfsr_dsize;
    651  1.16.2.4  yamt 	else if (pmp->pmp_args.pa_fhflags & PUFFS_FHFLAG_DYNAMIC)
    652  1.16.2.5  yamt 		fhlen = PUFFS_TOFHSIZE(nodetofh_msg->pvfsr_dsize);
    653  1.16.2.4  yamt 	else
    654  1.16.2.4  yamt 		fhlen = PUFFS_TOFHSIZE(pmp->pmp_args.pa_fhsize);
    655  1.16.2.4  yamt 
    656  1.16.2.4  yamt 	if (error) {
    657  1.16.2.4  yamt 		if (error == E2BIG)
    658  1.16.2.4  yamt 			*fh_size = fhlen;
    659  1.16.2.4  yamt 		goto out;
    660  1.16.2.4  yamt 	}
    661  1.16.2.4  yamt 
    662  1.16.2.4  yamt 	if (fhlen > FHANDLE_SIZE_MAX) {
    663  1.16.2.7  yamt 		puffs_senderr(pmp, PUFFS_ERR_VPTOFH, E2BIG,
    664  1.16.2.5  yamt 		    "file handle too big", VPTOPNC(vp));
    665  1.16.2.5  yamt 		error = EPROTO;
    666  1.16.2.4  yamt 		goto out;
    667  1.16.2.4  yamt 	}
    668  1.16.2.4  yamt 
    669  1.16.2.4  yamt 	if (*fh_size < fhlen) {
    670  1.16.2.4  yamt 		*fh_size = fhlen;
    671  1.16.2.4  yamt 		error = E2BIG;
    672  1.16.2.4  yamt 		goto out;
    673  1.16.2.4  yamt 	}
    674  1.16.2.4  yamt 	*fh_size = fhlen;
    675  1.16.2.4  yamt 
    676  1.16.2.4  yamt 	if (fhp) {
    677  1.16.2.4  yamt 		if (pmp->pmp_args.pa_fhflags & PUFFS_FHFLAG_PASSTHROUGH) {
    678  1.16.2.5  yamt 			memcpy(fhp, nodetofh_msg->pvfsr_data, fhlen);
    679  1.16.2.4  yamt 		} else {
    680  1.16.2.4  yamt 			fhp->fid_len = *fh_size;
    681  1.16.2.5  yamt 			memcpy(fhp->fid_data, nodetofh_msg->pvfsr_data,
    682  1.16.2.5  yamt 			    nodetofh_msg->pvfsr_dsize);
    683  1.16.2.4  yamt 		}
    684  1.16.2.4  yamt 	}
    685  1.16.2.4  yamt 
    686  1.16.2.4  yamt  out:
    687  1.16.2.5  yamt 	puffs_msgmem_release(park_nodetofh);
    688  1.16.2.4  yamt 	return error;
    689  1.16.2.2  yamt }
    690  1.16.2.2  yamt 
    691  1.16.2.2  yamt void
    692  1.16.2.2  yamt puffs_init()
    693  1.16.2.2  yamt {
    694  1.16.2.2  yamt 
    695  1.16.2.5  yamt 	/* some checks depend on this */
    696  1.16.2.5  yamt 	KASSERT(VNOVAL == VSIZENOTSET);
    697  1.16.2.5  yamt 
    698  1.16.2.4  yamt 	pool_init(&puffs_pnpool, sizeof(struct puffs_node), 0, 0, 0,
    699  1.16.2.4  yamt 	    "puffpnpl", &pool_allocator_nointr, IPL_NONE);
    700  1.16.2.4  yamt 	puffs_msgif_init();
    701  1.16.2.2  yamt }
    702  1.16.2.2  yamt 
    703  1.16.2.2  yamt void
    704  1.16.2.2  yamt puffs_done()
    705  1.16.2.2  yamt {
    706  1.16.2.2  yamt 
    707  1.16.2.4  yamt 	puffs_msgif_destroy();
    708  1.16.2.2  yamt 	pool_destroy(&puffs_pnpool);
    709  1.16.2.2  yamt }
    710  1.16.2.2  yamt 
    711  1.16.2.2  yamt int
    712  1.16.2.2  yamt puffs_snapshot(struct mount *mp, struct vnode *vp, struct timespec *ts)
    713  1.16.2.2  yamt {
    714  1.16.2.2  yamt 
    715  1.16.2.2  yamt 	return EOPNOTSUPP;
    716  1.16.2.2  yamt }
    717  1.16.2.2  yamt 
    718  1.16.2.3  yamt int
    719  1.16.2.3  yamt puffs_suspendctl(struct mount *mp, int cmd)
    720  1.16.2.3  yamt {
    721  1.16.2.5  yamt 	PUFFS_MSG_VARS(vfs, suspend);
    722  1.16.2.3  yamt 	struct puffs_mount *pmp;
    723  1.16.2.3  yamt 	int error;
    724  1.16.2.3  yamt 
    725  1.16.2.3  yamt 	pmp = MPTOPUFFSMP(mp);
    726  1.16.2.3  yamt 	switch (cmd) {
    727  1.16.2.3  yamt 	case SUSPEND_SUSPEND:
    728  1.16.2.3  yamt 		DPRINTF(("puffs_suspendctl: suspending\n"));
    729  1.16.2.3  yamt 		if ((error = fstrans_setstate(mp, FSTRANS_SUSPENDING)) != 0)
    730  1.16.2.3  yamt 			break;
    731  1.16.2.5  yamt 		PUFFS_MSG_ALLOC(vfs, suspend);
    732  1.16.2.5  yamt 		puffs_msg_setfaf(park_suspend);
    733  1.16.2.5  yamt 		suspend_msg->pvfsr_status = PUFFS_SUSPEND_START;
    734  1.16.2.7  yamt 		puffs_msg_setinfo(park_suspend, PUFFSOP_VFS,
    735  1.16.2.7  yamt 		    PUFFS_VFS_SUSPEND, NULL);
    736  1.16.2.7  yamt 
    737  1.16.2.7  yamt 		puffs_msg_enqueue(pmp, park_suspend);
    738  1.16.2.5  yamt 		PUFFS_MSG_RELEASE(suspend);
    739  1.16.2.3  yamt 
    740  1.16.2.7  yamt 		error = pageflush(mp, FSCRED, 0, 1);
    741  1.16.2.3  yamt 		if (error == 0)
    742  1.16.2.3  yamt 			error = fstrans_setstate(mp, FSTRANS_SUSPENDED);
    743  1.16.2.3  yamt 
    744  1.16.2.3  yamt 		if (error != 0) {
    745  1.16.2.5  yamt 			PUFFS_MSG_ALLOC(vfs, suspend);
    746  1.16.2.5  yamt 			puffs_msg_setfaf(park_suspend);
    747  1.16.2.5  yamt 			suspend_msg->pvfsr_status = PUFFS_SUSPEND_ERROR;
    748  1.16.2.7  yamt 			puffs_msg_setinfo(park_suspend, PUFFSOP_VFS,
    749  1.16.2.7  yamt 			    PUFFS_VFS_SUSPEND, NULL);
    750  1.16.2.7  yamt 
    751  1.16.2.7  yamt 			puffs_msg_enqueue(pmp, park_suspend);
    752  1.16.2.5  yamt 			PUFFS_MSG_RELEASE(suspend);
    753  1.16.2.3  yamt 			(void) fstrans_setstate(mp, FSTRANS_NORMAL);
    754  1.16.2.3  yamt 			break;
    755  1.16.2.3  yamt 		}
    756  1.16.2.3  yamt 
    757  1.16.2.5  yamt 		PUFFS_MSG_ALLOC(vfs, suspend);
    758  1.16.2.5  yamt 		puffs_msg_setfaf(park_suspend);
    759  1.16.2.5  yamt 		suspend_msg->pvfsr_status = PUFFS_SUSPEND_SUSPENDED;
    760  1.16.2.7  yamt 		puffs_msg_setinfo(park_suspend, PUFFSOP_VFS,
    761  1.16.2.7  yamt 		    PUFFS_VFS_SUSPEND, NULL);
    762  1.16.2.7  yamt 
    763  1.16.2.7  yamt 		puffs_msg_enqueue(pmp, park_suspend);
    764  1.16.2.5  yamt 		PUFFS_MSG_RELEASE(suspend);
    765  1.16.2.3  yamt 
    766  1.16.2.3  yamt 		break;
    767  1.16.2.3  yamt 
    768  1.16.2.3  yamt 	case SUSPEND_RESUME:
    769  1.16.2.3  yamt 		DPRINTF(("puffs_suspendctl: resume\n"));
    770  1.16.2.3  yamt 		error = 0;
    771  1.16.2.3  yamt 		(void) fstrans_setstate(mp, FSTRANS_NORMAL);
    772  1.16.2.5  yamt 		PUFFS_MSG_ALLOC(vfs, suspend);
    773  1.16.2.5  yamt 		puffs_msg_setfaf(park_suspend);
    774  1.16.2.5  yamt 		suspend_msg->pvfsr_status = PUFFS_SUSPEND_RESUME;
    775  1.16.2.7  yamt 		puffs_msg_setinfo(park_suspend, PUFFSOP_VFS,
    776  1.16.2.7  yamt 		    PUFFS_VFS_SUSPEND, NULL);
    777  1.16.2.7  yamt 
    778  1.16.2.7  yamt 		puffs_msg_enqueue(pmp, park_suspend);
    779  1.16.2.5  yamt 		PUFFS_MSG_RELEASE(suspend);
    780  1.16.2.3  yamt 		break;
    781  1.16.2.3  yamt 
    782  1.16.2.3  yamt 	default:
    783  1.16.2.3  yamt 		error = EINVAL;
    784  1.16.2.3  yamt 		break;
    785  1.16.2.3  yamt 	}
    786  1.16.2.3  yamt 
    787  1.16.2.3  yamt 	DPRINTF(("puffs_suspendctl: return %d\n", error));
    788  1.16.2.3  yamt 	return error;
    789  1.16.2.3  yamt }
    790  1.16.2.3  yamt 
    791  1.16.2.2  yamt const struct vnodeopv_desc * const puffs_vnodeopv_descs[] = {
    792  1.16.2.2  yamt 	&puffs_vnodeop_opv_desc,
    793  1.16.2.2  yamt 	&puffs_specop_opv_desc,
    794  1.16.2.2  yamt 	&puffs_fifoop_opv_desc,
    795  1.16.2.2  yamt 	&puffs_msgop_opv_desc,
    796  1.16.2.2  yamt 	NULL,
    797  1.16.2.2  yamt };
    798  1.16.2.2  yamt 
    799  1.16.2.2  yamt struct vfsops puffs_vfsops = {
    800  1.16.2.2  yamt 	MOUNT_PUFFS,
    801  1.16.2.4  yamt 	sizeof (struct puffs_kargs),
    802  1.16.2.2  yamt 	puffs_mount,		/* mount	*/
    803  1.16.2.2  yamt 	puffs_start,		/* start	*/
    804  1.16.2.2  yamt 	puffs_unmount,		/* unmount	*/
    805  1.16.2.2  yamt 	puffs_root,		/* root		*/
    806  1.16.2.4  yamt 	(void *)eopnotsupp,	/* quotactl	*/
    807  1.16.2.2  yamt 	puffs_statvfs,		/* statvfs	*/
    808  1.16.2.2  yamt 	puffs_sync,		/* sync		*/
    809  1.16.2.4  yamt 	(void *)eopnotsupp,	/* vget		*/
    810  1.16.2.4  yamt 	puffs_fhtovp,		/* fhtovp	*/
    811  1.16.2.4  yamt 	puffs_vptofh,		/* vptofh	*/
    812  1.16.2.2  yamt 	puffs_init,		/* init		*/
    813  1.16.2.2  yamt 	NULL,			/* reinit	*/
    814  1.16.2.2  yamt 	puffs_done,		/* done		*/
    815  1.16.2.2  yamt 	NULL,			/* mountroot	*/
    816  1.16.2.2  yamt 	puffs_snapshot,		/* snapshot	*/
    817  1.16.2.2  yamt 	vfs_stdextattrctl,	/* extattrctl	*/
    818  1.16.2.3  yamt 	puffs_suspendctl,	/* suspendctl	*/
    819  1.16.2.2  yamt 	puffs_vnodeopv_descs,	/* vnodeops	*/
    820  1.16.2.2  yamt 	0,			/* refcount	*/
    821  1.16.2.2  yamt 	{ NULL, NULL }
    822  1.16.2.2  yamt };
    823  1.16.2.2  yamt VFS_ATTACH(puffs_vfsops);
    824