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