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