Home | History | Annotate | Line # | Download | only in puffs
puffs_msgif.c revision 1.38
      1  1.38    pooka /*	$NetBSD: puffs_msgif.c,v 1.38 2007/06/06 01:54:59 pooka Exp $	*/
      2   1.1    pooka 
      3   1.1    pooka /*
      4  1.16    pooka  * Copyright (c) 2005, 2006, 2007  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.38    pooka __KERNEL_RCSID(0, "$NetBSD: puffs_msgif.c,v 1.38 2007/06/06 01:54:59 pooka Exp $");
     34   1.1    pooka 
     35   1.1    pooka #include <sys/param.h>
     36  1.16    pooka #include <sys/fstrans.h>
     37   1.1    pooka #include <sys/malloc.h>
     38   1.1    pooka #include <sys/mount.h>
     39   1.1    pooka #include <sys/vnode.h>
     40   1.1    pooka #include <sys/lock.h>
     41   1.1    pooka 
     42   1.1    pooka #include <fs/puffs/puffs_msgif.h>
     43   1.1    pooka #include <fs/puffs/puffs_sys.h>
     44   1.1    pooka 
     45  1.22    pooka /*
     46  1.22    pooka  * waitq data structures
     47  1.22    pooka  */
     48  1.22    pooka 
     49  1.22    pooka /*
     50  1.22    pooka  * While a request is going to userspace, park the caller within the
     51  1.22    pooka  * kernel.  This is the kernel counterpart of "struct puffs_req".
     52  1.22    pooka  */
     53  1.22    pooka struct puffs_park {
     54  1.22    pooka 	struct puffs_req	*park_preq;	/* req followed by buf	*/
     55  1.22    pooka 	uint64_t		park_id;	/* duplicate of preq_id */
     56  1.22    pooka 
     57  1.22    pooka 	size_t			park_copylen;	/* userspace copylength	*/
     58  1.22    pooka 	size_t			park_maxlen;	/* max size in comeback */
     59  1.24    pooka 
     60  1.24    pooka 	parkdone_fn		park_done;
     61  1.24    pooka 	void			*park_donearg;
     62  1.22    pooka 
     63  1.22    pooka 	int			park_flags;
     64  1.26    pooka 	int			park_refcount;
     65  1.22    pooka 
     66  1.22    pooka 	kcondvar_t		park_cv;
     67  1.26    pooka 	kmutex_t		park_mtx;
     68  1.26    pooka 
     69  1.22    pooka 	TAILQ_ENTRY(puffs_park) park_entries;
     70  1.22    pooka };
     71  1.22    pooka #define PARKFLAG_WAITERGONE	0x01
     72  1.26    pooka #define PARKFLAG_DONE		0x02
     73  1.26    pooka #define PARKFLAG_ONQUEUE1	0x04
     74  1.26    pooka #define PARKFLAG_ONQUEUE2	0x08
     75  1.26    pooka #define PARKFLAG_CALL		0x10
     76  1.31    pooka #define PARKFLAG_WANTREPLY	0x20
     77  1.22    pooka 
     78  1.22    pooka static struct pool_cache parkpc;
     79  1.22    pooka static struct pool parkpool;
     80  1.22    pooka 
     81  1.22    pooka static int
     82  1.22    pooka makepark(void *arg, void *obj, int flags)
     83  1.22    pooka {
     84  1.22    pooka 	struct puffs_park *park = obj;
     85  1.22    pooka 
     86  1.26    pooka 	mutex_init(&park->park_mtx, MUTEX_DEFAULT, IPL_NONE);
     87  1.22    pooka 	cv_init(&park->park_cv, "puffsrpl");
     88  1.22    pooka 
     89  1.22    pooka 	return 0;
     90  1.22    pooka }
     91  1.22    pooka 
     92  1.22    pooka static void
     93  1.22    pooka nukepark(void *arg, void *obj)
     94  1.22    pooka {
     95  1.22    pooka 	struct puffs_park *park = obj;
     96  1.22    pooka 
     97  1.22    pooka 	cv_destroy(&park->park_cv);
     98  1.26    pooka 	mutex_destroy(&park->park_mtx);
     99  1.22    pooka }
    100  1.22    pooka 
    101  1.22    pooka void
    102  1.22    pooka puffs_msgif_init()
    103  1.22    pooka {
    104  1.22    pooka 
    105  1.22    pooka 	pool_init(&parkpool, sizeof(struct puffs_park), 0, 0, 0,
    106  1.22    pooka 	    "puffprkl", &pool_allocator_nointr, IPL_NONE);
    107  1.22    pooka 	pool_cache_init(&parkpc, &parkpool, makepark, nukepark, NULL);
    108  1.22    pooka }
    109  1.22    pooka 
    110  1.22    pooka void
    111  1.22    pooka puffs_msgif_destroy()
    112  1.22    pooka {
    113  1.22    pooka 
    114  1.22    pooka 	pool_cache_destroy(&parkpc);
    115  1.22    pooka 	pool_destroy(&parkpool);
    116  1.22    pooka }
    117  1.22    pooka 
    118  1.22    pooka void *
    119  1.26    pooka puffs_park_alloc(int waitok)
    120  1.26    pooka {
    121  1.26    pooka 	struct puffs_park *park;
    122  1.26    pooka 
    123  1.26    pooka 	park = pool_cache_get(&parkpc, waitok ? PR_WAITOK : PR_NOWAIT);
    124  1.26    pooka 	if (park) {
    125  1.26    pooka 		park->park_refcount = 1;
    126  1.26    pooka 		mutex_enter(&park->park_mtx);
    127  1.26    pooka 	}
    128  1.26    pooka 
    129  1.26    pooka 	return park;
    130  1.26    pooka }
    131  1.26    pooka 
    132  1.26    pooka static void
    133  1.26    pooka puffs_park_reference(struct puffs_park *park)
    134  1.22    pooka {
    135  1.22    pooka 
    136  1.26    pooka 	mutex_enter(&park->park_mtx);
    137  1.26    pooka 	park->park_refcount++;
    138  1.22    pooka }
    139  1.22    pooka 
    140  1.22    pooka void
    141  1.26    pooka puffs_park_release(void *arg, int fullnuke)
    142  1.22    pooka {
    143  1.26    pooka 	struct puffs_park *park = arg;
    144  1.22    pooka 
    145  1.26    pooka 	KASSERT(mutex_owned(&park->park_mtx));
    146  1.26    pooka 	--park->park_refcount;
    147  1.26    pooka 
    148  1.26    pooka 	mutex_exit(&park->park_mtx);
    149  1.26    pooka 	if (park->park_refcount == 0 || fullnuke)
    150  1.26    pooka 		pool_cache_put(&parkpc, park);
    151  1.22    pooka }
    152  1.22    pooka 
    153  1.26    pooka #ifdef PUFFSDEBUG
    154  1.26    pooka static void
    155  1.26    pooka parkdump(struct puffs_park *park)
    156  1.26    pooka {
    157  1.26    pooka 
    158  1.26    pooka 	DPRINTF(("park %p, preq %p, id %" PRIu64 "\n"
    159  1.26    pooka 	    "\tcopy %zu, max %zu - done: %p/%p\n"
    160  1.26    pooka 	    "\tflags 0x%08x, refcount %d, cv/mtx: %p/%p\n",
    161  1.26    pooka 	    park, park->park_preq, park->park_id,
    162  1.26    pooka 	    park->park_copylen, park->park_maxlen,
    163  1.26    pooka 	    park->park_done, park->park_donearg,
    164  1.26    pooka 	    park->park_flags, park->park_refcount,
    165  1.26    pooka 	    &park->park_cv, &park->park_mtx));
    166  1.26    pooka }
    167  1.26    pooka 
    168  1.26    pooka static void
    169  1.26    pooka parkqdump(struct puffs_wq *q, int dumpall)
    170  1.26    pooka {
    171  1.26    pooka 	struct puffs_park *park;
    172  1.26    pooka 	int total = 0;
    173  1.26    pooka 
    174  1.26    pooka 	TAILQ_FOREACH(park, q, park_entries) {
    175  1.26    pooka 		if (dumpall)
    176  1.26    pooka 			parkdump(park);
    177  1.26    pooka 		total++;
    178  1.26    pooka 	}
    179  1.29    pooka 	DPRINTF(("puffs waitqueue at %p dumped, %d total\n", q, total));
    180  1.26    pooka 
    181  1.26    pooka }
    182  1.26    pooka #endif /* PUFFSDEBUG */
    183  1.22    pooka 
    184  1.22    pooka /*
    185  1.22    pooka  * Converts a non-FAF op to a FAF.  This simply involves making copies
    186  1.22    pooka  * of the park and request structures and tagging the request as a FAF.
    187  1.22    pooka  * It is safe to block here, since the original op is not a FAF.
    188  1.22    pooka  */
    189  1.22    pooka static void
    190  1.25    pooka puffs_reqtofaf(struct puffs_park *park)
    191  1.22    pooka {
    192  1.22    pooka 	struct puffs_req *newpreq;
    193  1.22    pooka 
    194  1.25    pooka 	KASSERT((park->park_preq->preq_opclass & PUFFSOPFLAG_FAF) == 0);
    195  1.22    pooka 
    196  1.25    pooka 	MALLOC(newpreq, struct puffs_req *, park->park_copylen,
    197  1.22    pooka 	    M_PUFFS, M_ZERO | M_WAITOK);
    198  1.22    pooka 
    199  1.25    pooka 	memcpy(newpreq, park->park_preq, park->park_copylen);
    200  1.22    pooka 
    201  1.25    pooka 	park->park_preq = newpreq;
    202  1.25    pooka 	park->park_preq->preq_opclass |= PUFFSOPFLAG_FAF;
    203  1.36    pooka 	park->park_flags &= ~PARKFLAG_WANTREPLY;
    204  1.22    pooka }
    205  1.22    pooka 
    206   1.1    pooka 
    207   1.1    pooka /*
    208   1.1    pooka  * kernel-user-kernel waitqueues
    209   1.1    pooka  */
    210   1.1    pooka 
    211  1.35    pooka static int touser(struct puffs_mount *, struct puffs_park *, uint64_t);
    212   1.1    pooka 
    213   1.4    pooka uint64_t
    214   1.1    pooka puffs_getreqid(struct puffs_mount *pmp)
    215   1.1    pooka {
    216  1.14    pooka 	uint64_t rv;
    217   1.1    pooka 
    218  1.22    pooka 	mutex_enter(&pmp->pmp_lock);
    219   1.1    pooka 	rv = pmp->pmp_nextreq++;
    220  1.22    pooka 	mutex_exit(&pmp->pmp_lock);
    221   1.1    pooka 
    222   1.1    pooka 	return rv;
    223   1.1    pooka }
    224   1.1    pooka 
    225   1.1    pooka /* vfs request */
    226   1.1    pooka int
    227   1.1    pooka puffs_vfstouser(struct puffs_mount *pmp, int optype, void *kbuf, size_t buflen)
    228   1.1    pooka {
    229  1.25    pooka 	struct puffs_park *park;
    230   1.1    pooka 
    231  1.26    pooka 	park = puffs_park_alloc(1);
    232  1.25    pooka 	park->park_preq = kbuf;
    233   1.1    pooka 
    234  1.25    pooka 	park->park_preq->preq_opclass = PUFFSOP_VFS;
    235  1.25    pooka 	park->park_preq->preq_optype = optype;
    236   1.1    pooka 
    237  1.25    pooka 	park->park_maxlen = park->park_copylen = buflen;
    238  1.25    pooka 	park->park_flags = 0;
    239   1.1    pooka 
    240  1.35    pooka 	return touser(pmp, park, puffs_getreqid(pmp));
    241   1.1    pooka }
    242   1.1    pooka 
    243  1.16    pooka void
    244  1.16    pooka puffs_suspendtouser(struct puffs_mount *pmp, int status)
    245  1.16    pooka {
    246  1.16    pooka 	struct puffs_vfsreq_suspend *pvfsr_susp;
    247  1.25    pooka 	struct puffs_park *park;
    248  1.16    pooka 
    249  1.16    pooka 	pvfsr_susp = malloc(sizeof(struct puffs_vfsreq_suspend),
    250  1.16    pooka 	    M_PUFFS, M_WAITOK | M_ZERO);
    251  1.26    pooka 	park = puffs_park_alloc(1);
    252  1.16    pooka 
    253  1.16    pooka 	pvfsr_susp->pvfsr_status = status;
    254  1.25    pooka 	park->park_preq = (struct puffs_req *)pvfsr_susp;
    255  1.16    pooka 
    256  1.25    pooka 	park->park_preq->preq_opclass = PUFFSOP_VFS | PUFFSOPFLAG_FAF;
    257  1.25    pooka 	park->park_preq->preq_optype = PUFFS_VFS_SUSPEND;
    258  1.16    pooka 
    259  1.25    pooka 	park->park_maxlen = park->park_copylen
    260  1.16    pooka 	    = sizeof(struct puffs_vfsreq_suspend);
    261  1.25    pooka 	park->park_flags = 0;
    262  1.16    pooka 
    263  1.35    pooka 	(void)touser(pmp, park, 0);
    264  1.16    pooka }
    265  1.16    pooka 
    266   1.1    pooka /*
    267   1.1    pooka  * vnode level request
    268   1.1    pooka  */
    269   1.1    pooka int
    270   1.1    pooka puffs_vntouser(struct puffs_mount *pmp, int optype,
    271  1.35    pooka 	void *kbuf, size_t buflen, size_t maxdelta,
    272  1.35    pooka 	struct vnode *vp_opc, struct vnode *vp_aux)
    273   1.1    pooka {
    274  1.25    pooka 	struct puffs_park *park;
    275  1.35    pooka 	struct puffs_req *preq;
    276  1.35    pooka 	void *cookie = VPTOPNC(vp_opc);
    277  1.35    pooka 	struct puffs_node *pnode;
    278  1.35    pooka 	int rv;
    279   1.1    pooka 
    280  1.26    pooka 	park = puffs_park_alloc(1);
    281  1.25    pooka 	park->park_preq = kbuf;
    282   1.9    pooka 
    283  1.25    pooka 	park->park_preq->preq_opclass = PUFFSOP_VN;
    284  1.25    pooka 	park->park_preq->preq_optype = optype;
    285  1.25    pooka 	park->park_preq->preq_cookie = cookie;
    286  1.25    pooka 
    287  1.25    pooka 	park->park_copylen = buflen;
    288  1.25    pooka 	park->park_maxlen = buflen + maxdelta;
    289  1.25    pooka 	park->park_flags = 0;
    290   1.1    pooka 
    291  1.35    pooka 	rv = touser(pmp, park, puffs_getreqid(pmp));
    292  1.35    pooka 
    293  1.35    pooka 	/*
    294  1.35    pooka 	 * Check if the user server requests that inactive be called
    295  1.35    pooka 	 * when the time is right.
    296  1.35    pooka 	 */
    297  1.35    pooka 	preq = park->park_preq;
    298  1.35    pooka 	if (preq->preq_setbacks & PUFFS_SETBACK_INACT_N1) {
    299  1.35    pooka 		pnode = vp_opc->v_data;
    300  1.35    pooka 		pnode->pn_stat |= PNODE_DOINACT;
    301  1.35    pooka 	}
    302  1.35    pooka 	if (preq->preq_setbacks & PUFFS_SETBACK_INACT_N2) {
    303  1.35    pooka 		/* if no vp_aux, just ignore */
    304  1.35    pooka 		if (vp_aux) {
    305  1.35    pooka 			pnode = vp_aux->v_data;
    306  1.35    pooka 			pnode->pn_stat |= PNODE_DOINACT;
    307  1.35    pooka 		}
    308  1.35    pooka 	}
    309  1.37    pooka 	if (preq->preq_setbacks & PUFFS_SETBACK_NOREF_N1) {
    310  1.37    pooka 		pnode = vp_opc->v_data;
    311  1.37    pooka 		pnode->pn_stat |= PNODE_NOREFS;
    312  1.37    pooka 	}
    313  1.37    pooka 	if (preq->preq_setbacks & PUFFS_SETBACK_NOREF_N2) {
    314  1.37    pooka 		/* if no vp_aux, just ignore */
    315  1.37    pooka 		if (vp_aux) {
    316  1.37    pooka 			pnode = vp_aux->v_data;
    317  1.37    pooka 			pnode->pn_stat |= PNODE_NOREFS;
    318  1.37    pooka 		}
    319  1.37    pooka 	}
    320  1.35    pooka 
    321  1.35    pooka 	return rv;
    322   1.1    pooka }
    323   1.1    pooka 
    324   1.1    pooka /*
    325   1.1    pooka  * vnode level request, caller-controller req id
    326   1.1    pooka  */
    327   1.1    pooka int
    328   1.1    pooka puffs_vntouser_req(struct puffs_mount *pmp, int optype,
    329  1.35    pooka 	void *kbuf, size_t buflen, size_t maxdelta,
    330  1.35    pooka 	uint64_t reqid, struct vnode *vp_opc, struct vnode *vp_aux)
    331   1.1    pooka {
    332  1.25    pooka 	struct puffs_park *park;
    333  1.35    pooka 	void *cookie = VPTOPNC(vp_opc);
    334   1.9    pooka 
    335  1.26    pooka 	park = puffs_park_alloc(1);
    336  1.25    pooka 	park->park_preq = kbuf;
    337   1.1    pooka 
    338  1.25    pooka 	park->park_preq->preq_opclass = PUFFSOP_VN;
    339  1.25    pooka 	park->park_preq->preq_optype = optype;
    340  1.25    pooka 	park->park_preq->preq_cookie = cookie;
    341  1.25    pooka 
    342  1.25    pooka 	park->park_copylen = buflen;
    343  1.25    pooka 	park->park_maxlen = buflen + maxdelta;
    344  1.25    pooka 	park->park_flags = 0;
    345   1.1    pooka 
    346  1.35    pooka 	return touser(pmp, park, reqid);
    347   1.1    pooka }
    348   1.1    pooka 
    349  1.24    pooka void
    350  1.24    pooka puffs_vntouser_call(struct puffs_mount *pmp, int optype,
    351  1.35    pooka 	void *kbuf, size_t buflen, size_t maxdelta,
    352  1.24    pooka 	parkdone_fn donefn, void *donearg,
    353  1.35    pooka 	struct vnode *vp_opc, struct vnode *vp_aux)
    354   1.1    pooka {
    355  1.25    pooka 	struct puffs_park *park;
    356  1.35    pooka 	void *cookie = VPTOPNC(vp_opc);
    357   1.1    pooka 
    358  1.26    pooka 	park = puffs_park_alloc(1);
    359  1.25    pooka 	park->park_preq = kbuf;
    360   1.1    pooka 
    361  1.25    pooka 	park->park_preq->preq_opclass = PUFFSOP_VN;
    362  1.25    pooka 	park->park_preq->preq_optype = optype;
    363  1.25    pooka 	park->park_preq->preq_cookie = cookie;
    364  1.25    pooka 
    365  1.25    pooka 	park->park_copylen = buflen;
    366  1.25    pooka 	park->park_maxlen = buflen + maxdelta;
    367  1.25    pooka 	park->park_done = donefn;
    368  1.25    pooka 	park->park_donearg = donearg;
    369  1.25    pooka 	park->park_flags = PARKFLAG_CALL;
    370   1.1    pooka 
    371  1.35    pooka 	(void) touser(pmp, park, puffs_getreqid(pmp));
    372  1.20    pooka }
    373  1.20    pooka 
    374  1.20    pooka /*
    375   1.4    pooka  * Notice: kbuf will be free'd later.  I must be allocated from the
    376   1.4    pooka  * kernel heap and it's ownership is shifted to this function from
    377   1.4    pooka  * now on, i.e. the caller is not allowed to use it anymore!
    378   1.4    pooka  */
    379   1.4    pooka void
    380   1.4    pooka puffs_vntouser_faf(struct puffs_mount *pmp, int optype,
    381  1.35    pooka 	void *kbuf, size_t buflen, struct vnode *vp_opc)
    382   1.4    pooka {
    383  1.25    pooka 	struct puffs_park *park;
    384  1.35    pooka 	void *cookie = VPTOPNC(vp_opc);
    385   1.4    pooka 
    386   1.4    pooka 	/* XXX: is it allowable to sleep here? */
    387  1.26    pooka 	park = puffs_park_alloc(0);
    388  1.25    pooka 	if (park == NULL)
    389   1.4    pooka 		return; /* 2bad */
    390   1.4    pooka 
    391  1.25    pooka 	park->park_preq = kbuf;
    392   1.9    pooka 
    393  1.25    pooka 	park->park_preq->preq_opclass = PUFFSOP_VN | PUFFSOPFLAG_FAF;
    394  1.25    pooka 	park->park_preq->preq_optype = optype;
    395  1.25    pooka 	park->park_preq->preq_cookie = cookie;
    396   1.9    pooka 
    397  1.25    pooka 	park->park_maxlen = park->park_copylen = buflen;
    398  1.25    pooka 	park->park_flags = 0;
    399   1.4    pooka 
    400  1.35    pooka 	(void)touser(pmp, park, 0);
    401   1.4    pooka }
    402   1.4    pooka 
    403  1.21    pooka void
    404  1.25    pooka puffs_cacheop(struct puffs_mount *pmp, struct puffs_park *park,
    405  1.21    pooka 	struct puffs_cacheinfo *pcinfo, size_t pcilen, void *cookie)
    406  1.21    pooka {
    407  1.21    pooka 
    408  1.25    pooka 	park->park_preq = (struct puffs_req *)pcinfo;
    409  1.25    pooka 	park->park_preq->preq_opclass = PUFFSOP_CACHE | PUFFSOPFLAG_FAF;
    410  1.25    pooka 	park->park_preq->preq_optype = PCACHE_TYPE_WRITE; /* XXX */
    411  1.25    pooka 	park->park_preq->preq_cookie = cookie;
    412  1.21    pooka 
    413  1.25    pooka 	park->park_maxlen = park->park_copylen = pcilen;
    414  1.26    pooka 	park->park_flags = 0;
    415  1.21    pooka 
    416  1.35    pooka 	(void)touser(pmp, park, 0);
    417  1.21    pooka }
    418  1.21    pooka 
    419   1.4    pooka /*
    420   1.1    pooka  * Wait for the userspace ping-pong game in calling process context.
    421   1.1    pooka  *
    422   1.1    pooka  * This unlocks vnodes if they are supplied.  vp1 is the vnode
    423   1.1    pooka  * before in the locking order, i.e. the one which must be locked
    424   1.1    pooka  * before accessing vp2.  This is done here so that operations are
    425   1.1    pooka  * already ordered in the queue when vnodes are unlocked (I'm not
    426   1.1    pooka  * sure if that's really necessary, but it can't hurt).  Okok, maybe
    427   1.1    pooka  * there's a slight ugly-factor also, but let's not worry about that.
    428   1.1    pooka  */
    429   1.1    pooka static int
    430  1.35    pooka touser(struct puffs_mount *pmp, struct puffs_park *park, uint64_t reqid)
    431   1.1    pooka {
    432  1.26    pooka 	struct lwp *l = curlwp;
    433  1.16    pooka 	struct mount *mp;
    434   1.9    pooka 	struct puffs_req *preq;
    435  1.19    pooka 	int rv = 0;
    436   1.1    pooka 
    437  1.16    pooka 	mp = PMPTOMP(pmp);
    438  1.25    pooka 	preq = park->park_preq;
    439  1.25    pooka 	preq->preq_id = park->park_id = reqid;
    440  1.25    pooka 	preq->preq_buflen = ALIGN(park->park_maxlen);
    441  1.19    pooka 
    442  1.31    pooka 	if (PUFFSOP_WANTREPLY(preq->preq_opclass))
    443  1.31    pooka 		park->park_flags |= PARKFLAG_WANTREPLY;
    444  1.31    pooka 
    445  1.19    pooka 	/*
    446  1.19    pooka 	 * To support PCATCH, yet another movie: check if there are signals
    447  1.19    pooka 	 * pending and we are issueing a non-FAF.  If so, return an error
    448  1.19    pooka 	 * directly UNLESS we are issueing INACTIVE.  In that case, convert
    449  1.19    pooka 	 * it to a FAF, fire off to the file server and return an error.
    450  1.19    pooka 	 * Yes, this is bordering disgusting.  Barfbags are on me.
    451  1.19    pooka 	 */
    452  1.31    pooka 	if ((park->park_flags & PARKFLAG_WANTREPLY)
    453  1.25    pooka 	   && (park->park_flags & PARKFLAG_CALL) == 0
    454  1.19    pooka 	   && (l->l_flag & LW_PENDSIG) != 0 && sigispending(l, 0)) {
    455  1.19    pooka 		if (PUFFSOP_OPCLASS(preq->preq_opclass) == PUFFSOP_VN
    456  1.19    pooka 		    && preq->preq_optype == PUFFS_VN_INACTIVE) {
    457  1.25    pooka 			puffs_reqtofaf(park);
    458  1.25    pooka 			DPRINTF(("puffs touser: converted to FAF %p\n", park));
    459  1.19    pooka 			rv = EINTR;
    460  1.19    pooka 		} else {
    461  1.26    pooka 			puffs_park_release(park, 0);
    462  1.19    pooka 			return EINTR;
    463  1.19    pooka 		}
    464  1.19    pooka 	}
    465  1.16    pooka 
    466  1.16    pooka 	/*
    467  1.16    pooka 	 * test for suspension lock.
    468  1.16    pooka 	 *
    469  1.16    pooka 	 * Note that we *DO NOT* keep the lock, since that might block
    470  1.16    pooka 	 * lock acquiring PLUS it would give userlandia control over
    471  1.16    pooka 	 * the lock.  The operation queue enforces a strict ordering:
    472  1.16    pooka 	 * when the fs server gets in the op stream, it knows things
    473  1.16    pooka 	 * are in order.  The kernel locks can't guarantee that for
    474  1.16    pooka 	 * userspace, in any case.
    475  1.16    pooka 	 *
    476  1.16    pooka 	 * BUT: this presents a problem for ops which have a consistency
    477  1.16    pooka 	 * clause based on more than one operation.  Unfortunately such
    478  1.16    pooka 	 * operations (read, write) do not reliably work yet.
    479  1.16    pooka 	 *
    480  1.16    pooka 	 * Ya, Ya, it's wrong wong wrong, me be fixink this someday.
    481  1.18    pooka 	 *
    482  1.18    pooka 	 * XXX: and there is one more problem.  We sometimes need to
    483  1.18    pooka 	 * take a lazy lock in case the fs is suspending and we are
    484  1.18    pooka 	 * executing as the fs server context.  This might happen
    485  1.18    pooka 	 * e.g. in the case that the user server triggers a reclaim
    486  1.18    pooka 	 * in the kernel while the fs is suspending.  It's not a very
    487  1.18    pooka 	 * likely event, but it needs to be fixed some day.
    488  1.16    pooka 	 */
    489  1.22    pooka 
    490  1.22    pooka 	/*
    491  1.22    pooka 	 * MOREXXX: once PUFFS_WCACHEINFO is enabled, we can't take
    492  1.22    pooka 	 * the mutex here, since getpages() might be called locked.
    493  1.22    pooka 	 */
    494  1.18    pooka 	fstrans_start(mp, FSTRANS_NORMAL);
    495  1.22    pooka 	mutex_enter(&pmp->pmp_lock);
    496  1.16    pooka 	fstrans_done(mp);
    497  1.16    pooka 
    498  1.13    pooka 	if (pmp->pmp_status != PUFFSTAT_RUNNING) {
    499  1.22    pooka 		mutex_exit(&pmp->pmp_lock);
    500  1.26    pooka 		puffs_park_release(park, 0);
    501   1.1    pooka 		return ENXIO;
    502   1.1    pooka 	}
    503   1.1    pooka 
    504  1.26    pooka #ifdef PUFFSDEBUG
    505  1.26    pooka 	parkqdump(&pmp->pmp_req_touser, puffsdebug > 1);
    506  1.26    pooka 	parkqdump(&pmp->pmp_req_replywait, puffsdebug > 1);
    507  1.26    pooka #endif
    508  1.26    pooka 
    509  1.25    pooka 	TAILQ_INSERT_TAIL(&pmp->pmp_req_touser, park, park_entries);
    510  1.26    pooka 	park->park_flags |= PARKFLAG_ONQUEUE1;
    511  1.34    pooka 	puffs_mp_reference(pmp);
    512  1.34    pooka 	pmp->pmp_req_touser_count++;
    513  1.26    pooka 	mutex_exit(&pmp->pmp_lock);
    514   1.1    pooka 
    515  1.20    pooka 	DPRINTF(("touser: req %" PRIu64 ", preq: %p, park: %p, "
    516  1.25    pooka 	    "c/t: 0x%x/0x%x, f: 0x%x\n", preq->preq_id, preq, park,
    517  1.25    pooka 	    preq->preq_opclass, preq->preq_optype, park->park_flags));
    518  1.15    pooka 
    519  1.22    pooka 	cv_broadcast(&pmp->pmp_req_waiter_cv);
    520   1.1    pooka 	selnotify(pmp->pmp_sel, 0);
    521   1.1    pooka 
    522  1.31    pooka 	if ((park->park_flags & PARKFLAG_WANTREPLY)
    523  1.25    pooka 	    && (park->park_flags & PARKFLAG_CALL) == 0) {
    524  1.19    pooka 		int error;
    525  1.19    pooka 
    526  1.26    pooka 		error = cv_wait_sig(&park->park_cv, &park->park_mtx);
    527  1.19    pooka 		if (error) {
    528  1.25    pooka 			park->park_flags |= PARKFLAG_WAITERGONE;
    529  1.26    pooka 			if (park->park_flags & PARKFLAG_DONE) {
    530  1.22    pooka 				rv = preq->preq_rv;
    531  1.26    pooka 				puffs_park_release(park, 0);
    532  1.19    pooka 			} else {
    533  1.26    pooka 				/*
    534  1.26    pooka 				 * ok, we marked it as going away, but
    535  1.26    pooka 				 * still need to do queue ops.  take locks
    536  1.26    pooka 				 * in correct order.
    537  1.26    pooka 				 *
    538  1.26    pooka 				 * We don't want to release our reference
    539  1.26    pooka 				 * if it's on replywait queue to avoid error
    540  1.26    pooka 				 * to file server.  putop() code will DTRT.
    541  1.26    pooka 				 */
    542  1.26    pooka 				KASSERT(park->park_flags &
    543  1.26    pooka 				    (PARKFLAG_ONQUEUE1 | PARKFLAG_ONQUEUE2));
    544  1.26    pooka 				mutex_exit(&park->park_mtx);
    545  1.26    pooka 
    546  1.26    pooka 				mutex_enter(&pmp->pmp_lock);
    547  1.26    pooka 				mutex_enter(&park->park_mtx);
    548  1.36    pooka 				if (park->park_flags & PARKFLAG_ONQUEUE1) {
    549  1.26    pooka 					TAILQ_REMOVE(&pmp->pmp_req_touser,
    550  1.26    pooka 					    park, park_entries);
    551  1.36    pooka 					pmp->pmp_req_touser_count--;
    552  1.36    pooka 					park->park_flags &= ~PARKFLAG_ONQUEUE1;
    553  1.36    pooka 				}
    554  1.26    pooka 				if ((park->park_flags & PARKFLAG_ONQUEUE2) == 0)
    555  1.26    pooka 					puffs_park_release(park, 0);
    556  1.26    pooka 				else
    557  1.26    pooka 					mutex_exit(&park->park_mtx);
    558  1.26    pooka 				mutex_exit(&pmp->pmp_lock);
    559  1.26    pooka 
    560  1.22    pooka 				rv = error;
    561  1.19    pooka 			}
    562  1.22    pooka 		} else {
    563  1.22    pooka 			rv = preq->preq_rv;
    564  1.26    pooka 			puffs_park_release(park, 0);
    565  1.19    pooka 		}
    566  1.22    pooka 
    567  1.16    pooka 		/*
    568  1.16    pooka 		 * retake the lock and release.  This makes sure (haha,
    569  1.16    pooka 		 * I'm humorous) that we don't process the same vnode in
    570  1.16    pooka 		 * multiple threads due to the locks hacks we have in
    571  1.16    pooka 		 * puffs_lock().  In reality this is well protected by
    572  1.16    pooka 		 * the biglock, but once that's gone, well, hopefully
    573  1.16    pooka 		 * this will be fixed for real.  (and when you read this
    574  1.16    pooka 		 * comment in 2017 and subsequently barf, my condolences ;).
    575  1.16    pooka 		 */
    576  1.19    pooka 		if (rv == 0 && !fstrans_is_owner(mp)) {
    577  1.17  hannken 			fstrans_start(mp, FSTRANS_NORMAL);
    578  1.16    pooka 			fstrans_done(mp);
    579  1.16    pooka 		}
    580  1.22    pooka 	} else {
    581  1.26    pooka 		mutex_exit(&park->park_mtx);
    582  1.16    pooka 	}
    583  1.16    pooka 
    584  1.22    pooka 	mutex_enter(&pmp->pmp_lock);
    585  1.34    pooka 	puffs_mp_release(pmp);
    586  1.22    pooka 	mutex_exit(&pmp->pmp_lock);
    587  1.16    pooka 
    588  1.19    pooka 	return rv;
    589   1.1    pooka }
    590   1.1    pooka 
    591   1.1    pooka 
    592   1.9    pooka /*
    593   1.9    pooka  * getop: scan through queued requests until:
    594   1.9    pooka  *  1) max number of requests satisfied
    595   1.9    pooka  *     OR
    596   1.9    pooka  *  2) buffer runs out of space
    597   1.9    pooka  *     OR
    598   1.9    pooka  *  3) nonblocking is set AND there are no operations available
    599   1.9    pooka  *     OR
    600   1.9    pooka  *  4) at least one operation was transferred AND there are no more waiting
    601   1.9    pooka  */
    602  1.10    pooka int
    603  1.10    pooka puffs_getop(struct puffs_mount *pmp, struct puffs_reqh_get *phg, int nonblock)
    604   1.1    pooka {
    605   1.1    pooka 	struct puffs_park *park;
    606   1.9    pooka 	struct puffs_req *preq;
    607   1.9    pooka 	uint8_t *bufpos;
    608   1.9    pooka 	int error, donesome;
    609   1.9    pooka 
    610   1.9    pooka 	donesome = error = 0;
    611   1.9    pooka 	bufpos = phg->phg_buf;
    612   1.1    pooka 
    613  1.22    pooka 	mutex_enter(&pmp->pmp_lock);
    614   1.9    pooka 	while (phg->phg_nops == 0 || donesome != phg->phg_nops) {
    615   1.1    pooka  again:
    616   1.9    pooka 		if (pmp->pmp_status != PUFFSTAT_RUNNING) {
    617   1.9    pooka 			/* if we got some, they don't really matter anymore */
    618   1.9    pooka 			error = ENXIO;
    619   1.9    pooka 			goto out;
    620   1.9    pooka 		}
    621   1.9    pooka 		if (TAILQ_EMPTY(&pmp->pmp_req_touser)) {
    622  1.12    pooka 			if (donesome)
    623  1.12    pooka 				goto out;
    624  1.12    pooka 
    625  1.12    pooka 			if (nonblock) {
    626  1.12    pooka 				error = EWOULDBLOCK;
    627   1.9    pooka 				goto out;
    628   1.9    pooka 			}
    629   1.9    pooka 
    630  1.22    pooka 			error = cv_wait_sig(&pmp->pmp_req_waiter_cv,
    631  1.22    pooka 			    &pmp->pmp_lock);
    632  1.11    pooka 			if (error)
    633  1.11    pooka 				goto out;
    634  1.11    pooka 			else
    635  1.11    pooka 				goto again;
    636   1.9    pooka 		}
    637   1.9    pooka 
    638   1.9    pooka 		park = TAILQ_FIRST(&pmp->pmp_req_touser);
    639  1.26    pooka 		puffs_park_reference(park);
    640  1.22    pooka 
    641  1.22    pooka 		/* If it's a goner, don't process any furher */
    642  1.22    pooka 		if (park->park_flags & PARKFLAG_WAITERGONE) {
    643  1.26    pooka 			puffs_park_release(park, 0);
    644  1.22    pooka 			continue;
    645  1.22    pooka 		}
    646  1.22    pooka 
    647  1.26    pooka 		preq = park->park_preq;
    648  1.26    pooka 		if (phg->phg_buflen < preq->preq_buflen) {
    649  1.26    pooka 			if (!donesome)
    650  1.26    pooka 				error = E2BIG;
    651  1.26    pooka 			puffs_park_release(park, 0);
    652  1.26    pooka 			goto out;
    653  1.26    pooka 		}
    654  1.28    pooka 
    655  1.28    pooka 		TAILQ_REMOVE(&pmp->pmp_req_touser, park, park_entries);
    656  1.28    pooka 		KASSERT(park->park_flags & PARKFLAG_ONQUEUE1);
    657  1.28    pooka 		park->park_flags &= ~PARKFLAG_ONQUEUE1;
    658  1.34    pooka 		pmp->pmp_req_touser_count--;
    659  1.34    pooka 		KASSERT(pmp->pmp_req_touser_count >= 0);
    660  1.27    pooka 		mutex_exit(&pmp->pmp_lock);
    661  1.26    pooka 
    662   1.9    pooka 		DPRINTF(("puffsgetop: get op %" PRIu64 " (%d.), from %p "
    663   1.9    pooka 		    "len %zu (buflen %zu), target %p\n", preq->preq_id,
    664   1.9    pooka 		    donesome, preq, park->park_copylen, preq->preq_buflen,
    665   1.9    pooka 		    bufpos));
    666   1.9    pooka 
    667   1.9    pooka 		if ((error = copyout(preq, bufpos, park->park_copylen)) != 0) {
    668  1.26    pooka 			DPRINTF(("puffs_getop: copyout failed: %d\n", error));
    669   1.9    pooka 			/*
    670   1.9    pooka 			 * ok, user server is probably trying to cheat.
    671  1.26    pooka 			 * stuff op back & return error to user.  We need
    672  1.26    pooka 			 * to take locks in the correct order.
    673   1.9    pooka 			 */
    674  1.26    pooka 			mutex_exit(&park->park_mtx);
    675  1.33    pooka 
    676  1.33    pooka 			/*
    677  1.33    pooka 			 * XXX: ONQUEUE1 | ONQUEUE2 invariant doesn't
    678  1.33    pooka 			 * hold here
    679  1.33    pooka 			 */
    680  1.33    pooka 
    681  1.26    pooka 			mutex_enter(&pmp->pmp_lock);
    682  1.26    pooka 			mutex_enter(&park->park_mtx);
    683  1.26    pooka 			if ((park->park_flags & PARKFLAG_WAITERGONE) == 0) {
    684  1.26    pooka 				 TAILQ_INSERT_HEAD(&pmp->pmp_req_touser, park,
    685  1.26    pooka 				     park_entries);
    686  1.26    pooka 				 park->park_flags |= PARKFLAG_ONQUEUE1;
    687  1.34    pooka 				 pmp->pmp_req_touser_count++;
    688  1.26    pooka 			}
    689   1.9    pooka 
    690  1.26    pooka 			if (donesome)
    691   1.9    pooka 				error = 0;
    692  1.26    pooka 			puffs_park_release(park, 0);
    693  1.26    pooka 			goto out;
    694   1.9    pooka 		}
    695   1.9    pooka 		bufpos += preq->preq_buflen;
    696   1.9    pooka 		phg->phg_buflen -= preq->preq_buflen;
    697   1.9    pooka 		donesome++;
    698   1.9    pooka 
    699  1.32    pooka 		/* XXXfixme: taking this lock in the wrong order */
    700  1.22    pooka 		mutex_enter(&pmp->pmp_lock);
    701  1.32    pooka 
    702  1.31    pooka 		if (park->park_flags & PARKFLAG_WANTREPLY) {
    703  1.22    pooka 			TAILQ_INSERT_TAIL(&pmp->pmp_req_replywait, park,
    704  1.22    pooka 			    park_entries);
    705  1.26    pooka 			park->park_flags |= PARKFLAG_ONQUEUE2;
    706  1.26    pooka 			puffs_park_release(park, 0);
    707   1.9    pooka 		} else {
    708   1.9    pooka 			free(preq, M_PUFFS);
    709  1.26    pooka 			puffs_park_release(park, 1);
    710   1.1    pooka 		}
    711   1.1    pooka 	}
    712   1.1    pooka 
    713   1.9    pooka  out:
    714  1.34    pooka 	phg->phg_more = pmp->pmp_req_touser_count;
    715  1.22    pooka 	mutex_exit(&pmp->pmp_lock);
    716   1.1    pooka 
    717   1.9    pooka 	phg->phg_nops = donesome;
    718   1.4    pooka 
    719   1.9    pooka 	return error;
    720   1.1    pooka }
    721   1.1    pooka 
    722  1.10    pooka int
    723  1.10    pooka puffs_putop(struct puffs_mount *pmp, struct puffs_reqh_put *php)
    724   1.1    pooka {
    725   1.1    pooka 	struct puffs_park *park;
    726  1.19    pooka 	struct puffs_req tmpreq;
    727  1.19    pooka 	struct puffs_req *nextpreq;
    728   1.9    pooka 	void *userbuf;
    729   1.9    pooka 	uint64_t id;
    730   1.9    pooka 	size_t reqlen;
    731  1.26    pooka 	int donesome, error, wgone, release;
    732   1.9    pooka 
    733  1.19    pooka 	donesome = error = wgone = 0;
    734   1.9    pooka 
    735   1.9    pooka 	id = php->php_id;
    736   1.9    pooka 	userbuf = php->php_buf;
    737   1.9    pooka 	reqlen = php->php_buflen;
    738   1.1    pooka 
    739  1.22    pooka 	mutex_enter(&pmp->pmp_lock);
    740   1.9    pooka 	while (donesome != php->php_nops) {
    741  1.26    pooka 		release = 0;
    742  1.19    pooka #ifdef PUFFSDEBUG
    743   1.9    pooka 		DPRINTF(("puffsputop: searching for %" PRIu64 ", ubuf: %p, "
    744   1.9    pooka 		    "len %zu\n", id, userbuf, reqlen));
    745   1.9    pooka #endif
    746   1.9    pooka 		TAILQ_FOREACH(park, &pmp->pmp_req_replywait, park_entries) {
    747  1.19    pooka 			if (park->park_id == id)
    748   1.9    pooka 				break;
    749   1.9    pooka 		}
    750   1.9    pooka 
    751   1.9    pooka 		if (park == NULL) {
    752  1.24    pooka 			DPRINTF(("puffsputop: no request: %" PRIu64 "\n", id));
    753   1.9    pooka 			error = EINVAL;
    754   1.1    pooka 			break;
    755   1.1    pooka 		}
    756  1.24    pooka 
    757  1.26    pooka 		puffs_park_reference(park);
    758  1.24    pooka 		if (reqlen == 0 || reqlen > park->park_maxlen) {
    759  1.24    pooka 			DPRINTF(("puffsputop: invalid buffer length: "
    760  1.24    pooka 			    "%zu\n", reqlen));
    761  1.24    pooka 			error = E2BIG;
    762  1.26    pooka 			puffs_park_release(park, 0);
    763  1.24    pooka 			break;
    764  1.24    pooka 		}
    765  1.22    pooka 		wgone = park->park_flags & PARKFLAG_WAITERGONE;
    766  1.26    pooka 
    767  1.26    pooka 		/* check if it's still on the queue after acquiring lock */
    768  1.26    pooka 		if (park->park_flags & PARKFLAG_ONQUEUE2) {
    769  1.26    pooka 			TAILQ_REMOVE(&pmp->pmp_req_replywait, park,
    770  1.26    pooka 			    park_entries);
    771  1.26    pooka 			park->park_flags &= ~PARKFLAG_ONQUEUE2;
    772  1.26    pooka 		}
    773  1.26    pooka 
    774  1.22    pooka 		mutex_exit(&pmp->pmp_lock);
    775   1.9    pooka 
    776  1.19    pooka 		/*
    777  1.19    pooka 		 * If the caller has gone south, go to next, collect
    778  1.19    pooka 		 * $200 and free the structure there instead of wakeup.
    779  1.26    pooka 		 * We also need to copyin the header info.  Flag structure
    780  1.26    pooka 		 * release to mode total and utter destruction.
    781  1.19    pooka 		 */
    782  1.22    pooka 		if (wgone) {
    783  1.19    pooka 			DPRINTF(("puffs_putop: bad service - waiter gone for "
    784  1.19    pooka 			    "park %p\n", park));
    785  1.19    pooka 			error = copyin(userbuf, &tmpreq,
    786  1.19    pooka 			    sizeof(struct puffs_req));
    787  1.26    pooka 			release = 1;
    788  1.19    pooka 			if (error)
    789  1.19    pooka 				goto loopout;
    790  1.19    pooka 			nextpreq = &tmpreq;
    791  1.19    pooka 			goto next;
    792  1.19    pooka 		}
    793  1.19    pooka 
    794   1.9    pooka 		DPRINTF(("puffsputpop: copyin from %p to %p, len %zu\n",
    795   1.9    pooka 		    userbuf, park->park_preq, reqlen));
    796   1.9    pooka 		error = copyin(userbuf, park->park_preq, reqlen);
    797   1.9    pooka 		if (error)
    798   1.9    pooka 			goto loopout;
    799  1.19    pooka 		nextpreq = park->park_preq;
    800   1.9    pooka 
    801  1.19    pooka  next:
    802   1.9    pooka 		/* all's well, prepare for next op */
    803  1.19    pooka 		id = nextpreq->preq_id;
    804  1.19    pooka 		reqlen = nextpreq->preq_buflen;
    805  1.19    pooka 		userbuf = nextpreq->preq_nextbuf;
    806   1.9    pooka 		donesome++;
    807   1.9    pooka 
    808   1.9    pooka  loopout:
    809  1.31    pooka 		if (error && !wgone)
    810   1.9    pooka 			park->park_preq->preq_rv = error;
    811  1.24    pooka 
    812  1.24    pooka 		if (park->park_flags & PARKFLAG_CALL) {
    813  1.24    pooka 			park->park_done(park->park_preq, park->park_donearg);
    814  1.26    pooka 			release = 1;
    815  1.20    pooka 		}
    816   1.1    pooka 
    817  1.22    pooka 		if (!wgone) {
    818  1.24    pooka 			DPRINTF(("puffs_putop: flagging done for "
    819  1.24    pooka 			    "park %p\n", park));
    820  1.22    pooka 
    821  1.24    pooka 			cv_signal(&park->park_cv);
    822  1.19    pooka 		}
    823  1.33    pooka 		park->park_flags |= PARKFLAG_DONE;
    824  1.26    pooka 		puffs_park_release(park, release);
    825  1.19    pooka 
    826  1.26    pooka 		mutex_enter(&pmp->pmp_lock);
    827   1.9    pooka 		if (error)
    828   1.9    pooka 			break;
    829  1.19    pooka 		wgone = 0;
    830   1.1    pooka 	}
    831   1.1    pooka 
    832  1.22    pooka 	mutex_exit(&pmp->pmp_lock);
    833   1.9    pooka 	php->php_nops -= donesome;
    834   1.1    pooka 
    835   1.1    pooka 	return error;
    836   1.1    pooka }
    837   1.1    pooka 
    838  1.22    pooka /*
    839  1.22    pooka  * We're dead, kaput, RIP, slightly more than merely pining for the
    840  1.22    pooka  * fjords, belly-up, fallen, lifeless, finished, expired, gone to meet
    841  1.22    pooka  * our maker, ceased to be, etcetc.  YASD.  It's a dead FS!
    842  1.22    pooka  *
    843  1.22    pooka  * Caller must hold puffs mutex.
    844  1.22    pooka  */
    845  1.22    pooka void
    846  1.22    pooka puffs_userdead(struct puffs_mount *pmp)
    847  1.22    pooka {
    848  1.32    pooka 	struct puffs_park *park, *park_next;
    849  1.22    pooka 
    850  1.22    pooka 	/*
    851  1.22    pooka 	 * Mark filesystem status as dying so that operations don't
    852  1.22    pooka 	 * attempt to march to userspace any longer.
    853  1.22    pooka 	 */
    854  1.22    pooka 	pmp->pmp_status = PUFFSTAT_DYING;
    855  1.22    pooka 
    856  1.22    pooka 	/* signal waiters on REQUEST TO file server queue */
    857  1.32    pooka 	for (park = TAILQ_FIRST(&pmp->pmp_req_touser); park; park = park_next) {
    858  1.24    pooka 		uint8_t opclass;
    859  1.24    pooka 
    860  1.26    pooka 		puffs_park_reference(park);
    861  1.32    pooka 		park_next = TAILQ_NEXT(park, park_entries);
    862  1.26    pooka 
    863  1.26    pooka 		KASSERT(park->park_flags & PARKFLAG_ONQUEUE1);
    864  1.22    pooka 		TAILQ_REMOVE(&pmp->pmp_req_touser, park, park_entries);
    865  1.26    pooka 		park->park_flags &= ~PARKFLAG_ONQUEUE1;
    866  1.34    pooka 		pmp->pmp_req_touser_count--;
    867  1.22    pooka 
    868  1.31    pooka 		/*
    869  1.31    pooka 		 * If the waiter is gone, we may *NOT* access preq anymore.
    870  1.31    pooka 		 */
    871  1.31    pooka 		if (park->park_flags & PARKFLAG_WAITERGONE) {
    872  1.31    pooka 			KASSERT((park->park_flags & PARKFLAG_CALL) == 0);
    873  1.31    pooka 			KASSERT(park->park_flags & PARKFLAG_WANTREPLY);
    874  1.31    pooka 			puffs_park_release(park, 0);
    875  1.22    pooka 		} else {
    876  1.31    pooka 			opclass = park->park_preq->preq_opclass;
    877  1.23    pooka 			park->park_preq->preq_rv = ENXIO;
    878  1.31    pooka 
    879  1.31    pooka 			if (park->park_flags & PARKFLAG_CALL) {
    880  1.31    pooka 				park->park_done(park->park_preq,
    881  1.31    pooka 				    park->park_donearg);
    882  1.31    pooka 				puffs_park_release(park, 1);
    883  1.31    pooka 			} else if ((park->park_flags & PARKFLAG_WANTREPLY)==0) {
    884  1.31    pooka 				free(park->park_preq, M_PUFFS);
    885  1.31    pooka 				puffs_park_release(park, 1);
    886  1.31    pooka 			} else {
    887  1.31    pooka 				park->park_preq->preq_rv = ENXIO;
    888  1.31    pooka 				cv_signal(&park->park_cv);
    889  1.31    pooka 				puffs_park_release(park, 0);
    890  1.31    pooka 			}
    891  1.22    pooka 		}
    892  1.22    pooka 	}
    893  1.22    pooka 
    894  1.22    pooka 	/* signal waiters on RESPONSE FROM file server queue */
    895  1.32    pooka 	for (park=TAILQ_FIRST(&pmp->pmp_req_replywait); park; park=park_next) {
    896  1.26    pooka 		puffs_park_reference(park);
    897  1.32    pooka 		park_next = TAILQ_NEXT(park, park_entries);
    898  1.26    pooka 
    899  1.26    pooka 		KASSERT(park->park_flags & PARKFLAG_ONQUEUE2);
    900  1.31    pooka 		KASSERT(park->park_flags & PARKFLAG_WANTREPLY);
    901  1.26    pooka 
    902  1.23    pooka 		TAILQ_REMOVE(&pmp->pmp_req_replywait, park, park_entries);
    903  1.26    pooka 		park->park_flags &= ~PARKFLAG_ONQUEUE2;
    904  1.26    pooka 
    905  1.31    pooka 		/*
    906  1.31    pooka 		 * If the waiter is gone, we may *NOT* access preq anymore.
    907  1.31    pooka 		 */
    908  1.31    pooka 		if (park->park_flags & PARKFLAG_WAITERGONE) {
    909  1.31    pooka 			KASSERT((park->park_flags & PARKFLAG_CALL) == 0);
    910  1.31    pooka 			puffs_park_release(park, 0);
    911  1.22    pooka 		} else {
    912  1.31    pooka 			park->park_preq->preq_rv = ENXIO;
    913  1.31    pooka 			if (park->park_flags & PARKFLAG_CALL) {
    914  1.31    pooka 				park->park_done(park->park_preq,
    915  1.31    pooka 				    park->park_donearg);
    916  1.31    pooka 				puffs_park_release(park, 1);
    917  1.31    pooka 			} else {
    918  1.31    pooka 				cv_signal(&park->park_cv);
    919  1.31    pooka 				puffs_park_release(park, 0);
    920  1.31    pooka 			}
    921  1.22    pooka 		}
    922  1.22    pooka 	}
    923  1.22    pooka }
    924  1.22    pooka 
    925   1.1    pooka /* this is probably going to die away at some point? */
    926   1.9    pooka /*
    927   1.9    pooka  * XXX: currently bitrotted
    928   1.9    pooka  */
    929   1.9    pooka #if 0
    930   1.1    pooka static int
    931   1.1    pooka puffssizeop(struct puffs_mount *pmp, struct puffs_sizeop *psop_user)
    932   1.1    pooka {
    933   1.1    pooka 	struct puffs_sizepark *pspark;
    934   1.1    pooka 	void *kernbuf;
    935   1.1    pooka 	size_t copylen;
    936   1.1    pooka 	int error;
    937   1.1    pooka 
    938   1.1    pooka 	/* locate correct op */
    939  1.22    pooka 	mutex_enter(&pmp->pmp_lock);
    940   1.1    pooka 	TAILQ_FOREACH(pspark, &pmp->pmp_req_sizepark, pkso_entries) {
    941   1.1    pooka 		if (pspark->pkso_reqid == psop_user->pso_reqid) {
    942   1.1    pooka 			TAILQ_REMOVE(&pmp->pmp_req_sizepark, pspark,
    943   1.1    pooka 			    pkso_entries);
    944   1.1    pooka 			break;
    945   1.1    pooka 		}
    946   1.1    pooka 	}
    947  1.22    pooka 	mutex_exit(&pmp->pmp_lock);
    948   1.1    pooka 
    949   1.1    pooka 	if (pspark == NULL)
    950   1.1    pooka 		return EINVAL;
    951   1.1    pooka 
    952   1.1    pooka 	error = 0;
    953   1.1    pooka 	copylen = MIN(pspark->pkso_bufsize, psop_user->pso_bufsize);
    954   1.1    pooka 
    955   1.1    pooka 	/*
    956   1.1    pooka 	 * XXX: uvm stuff to avoid bouncy-bouncy copying?
    957   1.1    pooka 	 */
    958   1.1    pooka 	if (PUFFS_SIZEOP_UIO(pspark->pkso_reqtype)) {
    959   1.1    pooka 		kernbuf = malloc(copylen, M_PUFFS, M_WAITOK | M_ZERO);
    960   1.1    pooka 		if (pspark->pkso_reqtype == PUFFS_SIZEOPREQ_UIO_IN) {
    961   1.1    pooka 			error = copyin(psop_user->pso_userbuf,
    962   1.1    pooka 			    kernbuf, copylen);
    963   1.1    pooka 			if (error) {
    964   1.1    pooka 				printf("psop ERROR1 %d\n", error);
    965   1.1    pooka 				goto escape;
    966   1.1    pooka 			}
    967   1.1    pooka 		}
    968   1.1    pooka 		error = uiomove(kernbuf, copylen, pspark->pkso_uio);
    969   1.1    pooka 		if (error) {
    970   1.1    pooka 			printf("uiomove from kernel %p, len %d failed: %d\n",
    971   1.1    pooka 			    kernbuf, (int)copylen, error);
    972   1.1    pooka 			goto escape;
    973   1.1    pooka 		}
    974   1.1    pooka 
    975   1.1    pooka 		if (pspark->pkso_reqtype == PUFFS_SIZEOPREQ_UIO_OUT) {
    976   1.1    pooka 			error = copyout(kernbuf,
    977   1.1    pooka 			    psop_user->pso_userbuf, copylen);
    978   1.1    pooka 			if (error) {
    979   1.1    pooka 				printf("psop ERROR2 %d\n", error);
    980   1.1    pooka 				goto escape;
    981   1.1    pooka 			}
    982   1.1    pooka 		}
    983   1.1    pooka  escape:
    984   1.1    pooka 		free(kernbuf, M_PUFFS);
    985   1.1    pooka 	} else if (PUFFS_SIZEOP_BUF(pspark->pkso_reqtype)) {
    986   1.1    pooka 		copylen = MAX(pspark->pkso_bufsize, psop_user->pso_bufsize);
    987   1.1    pooka 		if (pspark->pkso_reqtype == PUFFS_SIZEOPREQ_BUF_IN) {
    988   1.1    pooka 			error = copyin(psop_user->pso_userbuf,
    989   1.1    pooka 			pspark->pkso_copybuf, copylen);
    990   1.1    pooka 		} else {
    991   1.1    pooka 			error = copyout(pspark->pkso_copybuf,
    992   1.1    pooka 			    psop_user->pso_userbuf, copylen);
    993   1.1    pooka 		}
    994   1.1    pooka 	}
    995   1.1    pooka #ifdef DIAGNOSTIC
    996   1.1    pooka 	else
    997   1.1    pooka 		panic("puffssizeop: invalid reqtype %d\n",
    998   1.1    pooka 		    pspark->pkso_reqtype);
    999   1.1    pooka #endif /* DIAGNOSTIC */
   1000   1.1    pooka 
   1001   1.1    pooka 	return error;
   1002   1.1    pooka }
   1003   1.9    pooka #endif
   1004