xref: /freebsd/sys/fs/fuse/fuse_ipc.c (revision a1c9f4ad0d65957158d62d04619f150159d18f4d)
151369649SPedro F. Giffuni /*-
251369649SPedro F. Giffuni  * SPDX-License-Identifier: BSD-3-Clause
351369649SPedro F. Giffuni  *
45fe58019SAttilio Rao  * Copyright (c) 2007-2009 Google Inc. and Amit Singh
55fe58019SAttilio Rao  * All rights reserved.
65fe58019SAttilio Rao  *
75fe58019SAttilio Rao  * Redistribution and use in source and binary forms, with or without
85fe58019SAttilio Rao  * modification, are permitted provided that the following conditions are
95fe58019SAttilio Rao  * met:
105fe58019SAttilio Rao  *
115fe58019SAttilio Rao  * * Redistributions of source code must retain the above copyright
125fe58019SAttilio Rao  *   notice, this list of conditions and the following disclaimer.
135fe58019SAttilio Rao  * * Redistributions in binary form must reproduce the above
145fe58019SAttilio Rao  *   copyright notice, this list of conditions and the following disclaimer
155fe58019SAttilio Rao  *   in the documentation and/or other materials provided with the
165fe58019SAttilio Rao  *   distribution.
175fe58019SAttilio Rao  * * Neither the name of Google Inc. nor the names of its
185fe58019SAttilio Rao  *   contributors may be used to endorse or promote products derived from
195fe58019SAttilio Rao  *   this software without specific prior written permission.
205fe58019SAttilio Rao  *
215fe58019SAttilio Rao  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
225fe58019SAttilio Rao  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
235fe58019SAttilio Rao  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
245fe58019SAttilio Rao  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
255fe58019SAttilio Rao  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
265fe58019SAttilio Rao  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
275fe58019SAttilio Rao  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
285fe58019SAttilio Rao  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
295fe58019SAttilio Rao  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
305fe58019SAttilio Rao  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
315fe58019SAttilio Rao  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
325fe58019SAttilio Rao  *
335fe58019SAttilio Rao  * Copyright (C) 2005 Csaba Henk.
345fe58019SAttilio Rao  * All rights reserved.
355fe58019SAttilio Rao  *
365fe58019SAttilio Rao  * Redistribution and use in source and binary forms, with or without
375fe58019SAttilio Rao  * modification, are permitted provided that the following conditions
385fe58019SAttilio Rao  * are met:
395fe58019SAttilio Rao  * 1. Redistributions of source code must retain the above copyright
405fe58019SAttilio Rao  *    notice, this list of conditions and the following disclaimer.
415fe58019SAttilio Rao  * 2. Redistributions in binary form must reproduce the above copyright
425fe58019SAttilio Rao  *    notice, this list of conditions and the following disclaimer in the
435fe58019SAttilio Rao  *    documentation and/or other materials provided with the distribution.
445fe58019SAttilio Rao  *
455fe58019SAttilio Rao  * THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS ``AS IS'' AND
465fe58019SAttilio Rao  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
475fe58019SAttilio Rao  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
485fe58019SAttilio Rao  * ARE DISCLAIMED.  IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE
495fe58019SAttilio Rao  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
505fe58019SAttilio Rao  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
515fe58019SAttilio Rao  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
525fe58019SAttilio Rao  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
535fe58019SAttilio Rao  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
545fe58019SAttilio Rao  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
555fe58019SAttilio Rao  * SUCH DAMAGE.
565fe58019SAttilio Rao  */
575fe58019SAttilio Rao 
585fe58019SAttilio Rao #include <sys/cdefs.h>
595fe58019SAttilio Rao __FBSDID("$FreeBSD$");
605fe58019SAttilio Rao 
61cf169498SAlan Somers #include <sys/param.h>
625fe58019SAttilio Rao #include <sys/module.h>
635fe58019SAttilio Rao #include <sys/systm.h>
645fe58019SAttilio Rao #include <sys/errno.h>
655fe58019SAttilio Rao #include <sys/kernel.h>
665fe58019SAttilio Rao #include <sys/conf.h>
675fe58019SAttilio Rao #include <sys/uio.h>
685fe58019SAttilio Rao #include <sys/malloc.h>
695fe58019SAttilio Rao #include <sys/queue.h>
705fe58019SAttilio Rao #include <sys/lock.h>
715fe58019SAttilio Rao #include <sys/sx.h>
725fe58019SAttilio Rao #include <sys/mutex.h>
735fe58019SAttilio Rao #include <sys/proc.h>
745fe58019SAttilio Rao #include <sys/mount.h>
75cf169498SAlan Somers #include <sys/sdt.h>
765fe58019SAttilio Rao #include <sys/vnode.h>
775fe58019SAttilio Rao #include <sys/signalvar.h>
785fe58019SAttilio Rao #include <sys/syscallsubr.h>
795fe58019SAttilio Rao #include <sys/sysctl.h>
805fe58019SAttilio Rao #include <vm/uma.h>
815fe58019SAttilio Rao 
825fe58019SAttilio Rao #include "fuse.h"
835fe58019SAttilio Rao #include "fuse_node.h"
845fe58019SAttilio Rao #include "fuse_ipc.h"
855fe58019SAttilio Rao #include "fuse_internal.h"
865fe58019SAttilio Rao 
87419e7ff6SAlan Somers SDT_PROVIDER_DECLARE(fusefs);
88cf169498SAlan Somers /*
89cf169498SAlan Somers  * Fuse trace probe:
90cf169498SAlan Somers  * arg0: verbosity.  Higher numbers give more verbose messages
91cf169498SAlan Somers  * arg1: Textual message
92cf169498SAlan Somers  */
93419e7ff6SAlan Somers SDT_PROBE_DEFINE2(fusefs, , ipc, trace, "int", "char*");
945fe58019SAttilio Rao 
95723c7768SAlan Somers static void fdisp_make_pid(struct fuse_dispatcher *fdip, enum fuse_opcode op,
96723c7768SAlan Somers     struct fuse_data *data, uint64_t nid, pid_t pid, struct ucred *cred);
973d070fdcSAlan Somers static void fuse_interrupt_send(struct fuse_ticket *otick, int err);
985fe58019SAttilio Rao static struct fuse_ticket *fticket_alloc(struct fuse_data *data);
995fe58019SAttilio Rao static void fticket_refresh(struct fuse_ticket *ftick);
1005fe58019SAttilio Rao static void fticket_destroy(struct fuse_ticket *ftick);
1015fe58019SAttilio Rao static int fticket_wait_answer(struct fuse_ticket *ftick);
10202295cafSConrad Meyer static inline int
1035fe58019SAttilio Rao fticket_aw_pull_uio(struct fuse_ticket *ftick,
1045fe58019SAttilio Rao     struct uio *uio);
1055fe58019SAttilio Rao 
1065fe58019SAttilio Rao static int fuse_body_audit(struct fuse_ticket *ftick, size_t blen);
1075fe58019SAttilio Rao 
1085fe58019SAttilio Rao static fuse_handler_t fuse_standard_handler;
1095fe58019SAttilio Rao 
110123af6ecSAlan Somers SYSCTL_NODE(_vfs, OID_AUTO, fusefs, CTLFLAG_RW, 0, "FUSE tunables");
1115fe58019SAttilio Rao static int fuse_ticket_count = 0;
1125fe58019SAttilio Rao 
113123af6ecSAlan Somers SYSCTL_INT(_vfs_fusefs, OID_AUTO, ticket_count, CTLFLAG_RW,
1145fe58019SAttilio Rao     &fuse_ticket_count, 0, "number of allocated tickets");
1155fe58019SAttilio Rao static long fuse_iov_permanent_bufsize = 1 << 19;
1165fe58019SAttilio Rao 
117123af6ecSAlan Somers SYSCTL_LONG(_vfs_fusefs, OID_AUTO, iov_permanent_bufsize, CTLFLAG_RW,
1185fe58019SAttilio Rao     &fuse_iov_permanent_bufsize, 0,
1195fe58019SAttilio Rao     "limit for permanently stored buffer size for fuse_iovs");
1205fe58019SAttilio Rao static int fuse_iov_credit = 16;
1215fe58019SAttilio Rao 
122123af6ecSAlan Somers SYSCTL_INT(_vfs_fusefs, OID_AUTO, iov_credit, CTLFLAG_RW,
1235fe58019SAttilio Rao     &fuse_iov_credit, 0,
1245fe58019SAttilio Rao     "how many times is an oversized fuse_iov tolerated");
1255fe58019SAttilio Rao 
1265fe58019SAttilio Rao MALLOC_DEFINE(M_FUSEMSG, "fuse_msgbuf", "fuse message buffer");
1275fe58019SAttilio Rao static uma_zone_t ticket_zone;
1285fe58019SAttilio Rao 
129723c7768SAlan Somers /*
130723c7768SAlan Somers  * TODO: figure out how to timeout INTERRUPT requests, because the daemon may
131723c7768SAlan Somers  * leagally never respond
132723c7768SAlan Somers  */
133723c7768SAlan Somers static int
134723c7768SAlan Somers fuse_interrupt_callback(struct fuse_ticket *tick, struct uio *uio)
1355fe58019SAttilio Rao {
136a1542146SAlan Somers 	struct fuse_ticket *otick, *x_tick;
137a1542146SAlan Somers 	struct fuse_interrupt_in *fii;
138102c7ac0SAlan Somers 	struct fuse_data *data = tick->tk_data;
139a1542146SAlan Somers 	bool found = false;
140a1542146SAlan Somers 
141a1542146SAlan Somers 	fii = (struct fuse_interrupt_in*)((char*)tick->tk_ms_fiov.base +
142a1542146SAlan Somers 		sizeof(struct fuse_in_header));
143a1542146SAlan Somers 
144a1542146SAlan Somers 	fuse_lck_mtx_lock(data->aw_mtx);
145a1542146SAlan Somers 	TAILQ_FOREACH_SAFE(otick, &data->aw_head, tk_aw_link, x_tick) {
146a1542146SAlan Somers 		if (otick->tk_unique == fii->unique) {
147a1542146SAlan Somers 			found = true;
148a1542146SAlan Somers 			break;
149a1542146SAlan Somers 		}
150a1542146SAlan Somers 	}
151a1542146SAlan Somers 	fuse_lck_mtx_unlock(data->aw_mtx);
152a1542146SAlan Somers 
153a1542146SAlan Somers 	if (!found) {
154a1542146SAlan Somers 		/* Original is already complete.  Just return */
155a1542146SAlan Somers 		return 0;
156a1542146SAlan Somers 	}
157a1542146SAlan Somers 
158a1542146SAlan Somers 	/* Clear the original ticket's interrupt association */
159a1542146SAlan Somers 	otick->irq_unique = 0;
160a1542146SAlan Somers 
161102c7ac0SAlan Somers 	if (tick->tk_aw_ohead.error == ENOSYS) {
162102c7ac0SAlan Somers 		fsess_set_notimpl(data->mp, FUSE_INTERRUPT);
163102c7ac0SAlan Somers 		return 0;
164102c7ac0SAlan Somers 	} else if (tick->tk_aw_ohead.error == EAGAIN) {
165723c7768SAlan Somers 		/*
166723c7768SAlan Somers 		 * There are two reasons we might get this:
167723c7768SAlan Somers 		 * 1) the daemon received the INTERRUPT request before the
168723c7768SAlan Somers 		 *    original, or
169723c7768SAlan Somers 		 * 2) the daemon received the INTERRUPT request after it
170723c7768SAlan Somers 		 *    completed the original request.
171723c7768SAlan Somers 		 * In the first case we should re-send the INTERRUPT.  In the
172723c7768SAlan Somers 		 * second, we should ignore it.
173723c7768SAlan Somers 		 */
174723c7768SAlan Somers 		/* Resend */
1753d070fdcSAlan Somers 		fuse_interrupt_send(otick, EINTR);
176723c7768SAlan Somers 		return 0;
177723c7768SAlan Somers 	} else {
178723c7768SAlan Somers 		/* Illegal FUSE_INTERRUPT response */
179723c7768SAlan Somers 		return EINVAL;
180723c7768SAlan Somers 	}
1815fe58019SAttilio Rao }
1825fe58019SAttilio Rao 
1833d070fdcSAlan Somers /* Interrupt the operation otick.  Return err as its error code */
184723c7768SAlan Somers void
1853d070fdcSAlan Somers fuse_interrupt_send(struct fuse_ticket *otick, int err)
1865fe58019SAttilio Rao {
187723c7768SAlan Somers 	struct fuse_dispatcher fdi;
188723c7768SAlan Somers 	struct fuse_interrupt_in *fii;
189723c7768SAlan Somers 	struct fuse_in_header *ftick_hdr;
190723c7768SAlan Somers 	struct fuse_data *data = otick->tk_data;
1913d070fdcSAlan Somers 	struct fuse_ticket *tick, *xtick;
192723c7768SAlan Somers 	struct ucred reused_creds;
19361b0a927SAlan Somers 	gid_t reused_groups[1];
1945fe58019SAttilio Rao 
195a1542146SAlan Somers 	if (otick->irq_unique == 0) {
1963d070fdcSAlan Somers 		/*
1973d070fdcSAlan Somers 		 * If the daemon hasn't yet received otick, then we can answer
1983d070fdcSAlan Somers 		 * it ourselves and return.
1993d070fdcSAlan Somers 		 */
2003d070fdcSAlan Somers 		fuse_lck_mtx_lock(data->ms_mtx);
2013d070fdcSAlan Somers 		STAILQ_FOREACH_SAFE(tick, &otick->tk_data->ms_head, tk_ms_link,
2023d070fdcSAlan Somers 			xtick) {
2033d070fdcSAlan Somers 			if (tick == otick) {
2043d070fdcSAlan Somers 				STAILQ_REMOVE(&otick->tk_data->ms_head, tick,
2053d070fdcSAlan Somers 					fuse_ticket, tk_ms_link);
2060a7c63e0SAlan Somers 				otick->tk_data->ms_count--;
2073d070fdcSAlan Somers 				otick->tk_ms_link.stqe_next = NULL;
2083d070fdcSAlan Somers 				fuse_lck_mtx_unlock(data->ms_mtx);
2093d070fdcSAlan Somers 
2103d070fdcSAlan Somers 				fuse_lck_mtx_lock(otick->tk_aw_mtx);
2113d070fdcSAlan Somers 				if (!fticket_answered(otick)) {
2123d070fdcSAlan Somers 					fticket_set_answered(otick);
2133d070fdcSAlan Somers 					otick->tk_aw_errno = err;
2143d070fdcSAlan Somers 					wakeup(otick);
2153d070fdcSAlan Somers 				}
2163d070fdcSAlan Somers 				fuse_lck_mtx_unlock(otick->tk_aw_mtx);
2173d070fdcSAlan Somers 
2183d070fdcSAlan Somers 				fuse_ticket_drop(tick);
2193d070fdcSAlan Somers 				return;
2203d070fdcSAlan Somers 			}
2213d070fdcSAlan Somers 		}
2223d070fdcSAlan Somers 		fuse_lck_mtx_unlock(data->ms_mtx);
2233d070fdcSAlan Somers 
2243d070fdcSAlan Somers 		/*
225102c7ac0SAlan Somers 		 * If the fuse daemon doesn't support interrupts, then there's
226102c7ac0SAlan Somers 		 * nothing more that we can do
227102c7ac0SAlan Somers 		 */
228102c7ac0SAlan Somers 		if (!fsess_isimpl(data->mp, FUSE_INTERRUPT))
229102c7ac0SAlan Somers 			return;
230102c7ac0SAlan Somers 
231102c7ac0SAlan Somers 		/*
2323d070fdcSAlan Somers 		 * If the fuse daemon has already received otick, then we must
2333d070fdcSAlan Somers 		 * send FUSE_INTERRUPT.
2343d070fdcSAlan Somers 		 */
235723c7768SAlan Somers 		ftick_hdr = fticket_in_header(otick);
236723c7768SAlan Somers 		reused_creds.cr_uid = ftick_hdr->uid;
23761b0a927SAlan Somers 		reused_groups[0] = ftick_hdr->gid;
23861b0a927SAlan Somers 		reused_creds.cr_groups = reused_groups;
239723c7768SAlan Somers 		fdisp_init(&fdi, sizeof(*fii));
240723c7768SAlan Somers 		fdisp_make_pid(&fdi, FUSE_INTERRUPT, data, ftick_hdr->nodeid,
241723c7768SAlan Somers 			ftick_hdr->pid, &reused_creds);
242723c7768SAlan Somers 
243723c7768SAlan Somers 		fii = fdi.indata;
244723c7768SAlan Somers 		fii->unique = otick->tk_unique;
245723c7768SAlan Somers 		fuse_insert_callback(fdi.tick, fuse_interrupt_callback);
246723c7768SAlan Somers 
247a1542146SAlan Somers 		otick->irq_unique = fdi.tick->tk_unique;
248268c28edSAlan Somers 		/* Interrupt ops should be delivered ASAP */
249268c28edSAlan Somers 		fuse_insert_message(fdi.tick, true);
250723c7768SAlan Somers 		fdisp_destroy(&fdi);
251a1542146SAlan Somers 	} else {
252a1542146SAlan Somers 		/* This ticket has already been interrupted */
253a1542146SAlan Somers 	}
2545fe58019SAttilio Rao }
2555fe58019SAttilio Rao 
2565fe58019SAttilio Rao void
2575fe58019SAttilio Rao fiov_init(struct fuse_iov *fiov, size_t size)
2585fe58019SAttilio Rao {
2595fe58019SAttilio Rao 	uint32_t msize = FU_AT_LEAST(size);
2605fe58019SAttilio Rao 
2615fe58019SAttilio Rao 	fiov->len = 0;
2625fe58019SAttilio Rao 
2635fe58019SAttilio Rao 	fiov->base = malloc(msize, M_FUSEMSG, M_WAITOK | M_ZERO);
2645fe58019SAttilio Rao 
2655fe58019SAttilio Rao 	fiov->allocated_size = msize;
2665fe58019SAttilio Rao 	fiov->credit = fuse_iov_credit;
2675fe58019SAttilio Rao }
2685fe58019SAttilio Rao 
2695fe58019SAttilio Rao void
2705fe58019SAttilio Rao fiov_teardown(struct fuse_iov *fiov)
2715fe58019SAttilio Rao {
2725fe58019SAttilio Rao 	MPASS(fiov->base != NULL);
2735fe58019SAttilio Rao 	free(fiov->base, M_FUSEMSG);
2745fe58019SAttilio Rao }
2755fe58019SAttilio Rao 
2765fe58019SAttilio Rao void
2775fe58019SAttilio Rao fiov_adjust(struct fuse_iov *fiov, size_t size)
2785fe58019SAttilio Rao {
2795fe58019SAttilio Rao 	if (fiov->allocated_size < size ||
2805fe58019SAttilio Rao 	    (fuse_iov_permanent_bufsize >= 0 &&
2815fe58019SAttilio Rao 	    fiov->allocated_size - size > fuse_iov_permanent_bufsize &&
2825fe58019SAttilio Rao 	    --fiov->credit < 0)) {
2835fe58019SAttilio Rao 
2845fe58019SAttilio Rao 		fiov->base = realloc(fiov->base, FU_AT_LEAST(size), M_FUSEMSG,
2855fe58019SAttilio Rao 		    M_WAITOK | M_ZERO);
2865fe58019SAttilio Rao 		if (!fiov->base) {
2875fe58019SAttilio Rao 			panic("FUSE: realloc failed");
2885fe58019SAttilio Rao 		}
2895fe58019SAttilio Rao 		fiov->allocated_size = FU_AT_LEAST(size);
2905fe58019SAttilio Rao 		fiov->credit = fuse_iov_credit;
2918d013becSAlan Somers 		/* Clear data buffer after reallocation */
2928d013becSAlan Somers 		bzero(fiov->base, size);
2938d013becSAlan Somers 	} else if (size > fiov->len) {
2948d013becSAlan Somers 		/* Clear newly extended portion of data buffer */
2958d013becSAlan Somers 		bzero((char*)fiov->base + fiov->len, size - fiov->len);
2965fe58019SAttilio Rao 	}
2975fe58019SAttilio Rao 	fiov->len = size;
2985fe58019SAttilio Rao }
2995fe58019SAttilio Rao 
30012292a99SAlan Somers /* Resize the fiov if needed, and clear it's buffer */
3015fe58019SAttilio Rao void
3025fe58019SAttilio Rao fiov_refresh(struct fuse_iov *fiov)
3035fe58019SAttilio Rao {
3045fe58019SAttilio Rao 	fiov_adjust(fiov, 0);
3055fe58019SAttilio Rao }
3065fe58019SAttilio Rao 
3075fe58019SAttilio Rao static int
3085fe58019SAttilio Rao fticket_ctor(void *mem, int size, void *arg, int flags)
3095fe58019SAttilio Rao {
3105fe58019SAttilio Rao 	struct fuse_ticket *ftick = mem;
3115fe58019SAttilio Rao 	struct fuse_data *data = arg;
3125fe58019SAttilio Rao 
3135fe58019SAttilio Rao 	FUSE_ASSERT_MS_DONE(ftick);
3145fe58019SAttilio Rao 	FUSE_ASSERT_AW_DONE(ftick);
3155fe58019SAttilio Rao 
3165fe58019SAttilio Rao 	ftick->tk_data = data;
3175fe58019SAttilio Rao 
3185fe58019SAttilio Rao 	if (ftick->tk_unique != 0)
3195fe58019SAttilio Rao 		fticket_refresh(ftick);
3205fe58019SAttilio Rao 
3215fe58019SAttilio Rao 	/* May be truncated to 32 bits */
3225fe58019SAttilio Rao 	ftick->tk_unique = atomic_fetchadd_long(&data->ticketer, 1);
3235fe58019SAttilio Rao 	if (ftick->tk_unique == 0)
3245fe58019SAttilio Rao 		ftick->tk_unique = atomic_fetchadd_long(&data->ticketer, 1);
3255fe58019SAttilio Rao 
326a1542146SAlan Somers 	ftick->irq_unique = 0;
327a1542146SAlan Somers 
3285fe58019SAttilio Rao 	refcount_init(&ftick->tk_refcount, 1);
3295fe58019SAttilio Rao 	atomic_add_acq_int(&fuse_ticket_count, 1);
3305fe58019SAttilio Rao 
3315fe58019SAttilio Rao 	return 0;
3325fe58019SAttilio Rao }
3335fe58019SAttilio Rao 
3345fe58019SAttilio Rao static void
3355fe58019SAttilio Rao fticket_dtor(void *mem, int size, void *arg)
3365fe58019SAttilio Rao {
337f220ef0bSAlan Somers #ifdef INVARIANTS
3385fe58019SAttilio Rao 	struct fuse_ticket *ftick = mem;
339f220ef0bSAlan Somers #endif
3405fe58019SAttilio Rao 
3415fe58019SAttilio Rao 	FUSE_ASSERT_MS_DONE(ftick);
3425fe58019SAttilio Rao 	FUSE_ASSERT_AW_DONE(ftick);
3435fe58019SAttilio Rao 
3445fe58019SAttilio Rao 	atomic_subtract_acq_int(&fuse_ticket_count, 1);
3455fe58019SAttilio Rao }
3465fe58019SAttilio Rao 
3475fe58019SAttilio Rao static int
3485fe58019SAttilio Rao fticket_init(void *mem, int size, int flags)
3495fe58019SAttilio Rao {
3505fe58019SAttilio Rao 	struct fuse_ticket *ftick = mem;
3515fe58019SAttilio Rao 
3525fe58019SAttilio Rao 	bzero(ftick, sizeof(struct fuse_ticket));
3535fe58019SAttilio Rao 
3545fe58019SAttilio Rao 	fiov_init(&ftick->tk_ms_fiov, sizeof(struct fuse_in_header));
3555fe58019SAttilio Rao 	ftick->tk_ms_type = FT_M_FIOV;
3565fe58019SAttilio Rao 
3575fe58019SAttilio Rao 	mtx_init(&ftick->tk_aw_mtx, "fuse answer delivery mutex", NULL, MTX_DEF);
3585fe58019SAttilio Rao 	fiov_init(&ftick->tk_aw_fiov, 0);
3595fe58019SAttilio Rao 	ftick->tk_aw_type = FT_A_FIOV;
3605fe58019SAttilio Rao 
3615fe58019SAttilio Rao 	return 0;
3625fe58019SAttilio Rao }
3635fe58019SAttilio Rao 
3645fe58019SAttilio Rao static void
3655fe58019SAttilio Rao fticket_fini(void *mem, int size)
3665fe58019SAttilio Rao {
3675fe58019SAttilio Rao 	struct fuse_ticket *ftick = mem;
3685fe58019SAttilio Rao 
3695fe58019SAttilio Rao 	fiov_teardown(&ftick->tk_ms_fiov);
3705fe58019SAttilio Rao 	fiov_teardown(&ftick->tk_aw_fiov);
3715fe58019SAttilio Rao 	mtx_destroy(&ftick->tk_aw_mtx);
3725fe58019SAttilio Rao }
3735fe58019SAttilio Rao 
37402295cafSConrad Meyer static inline struct fuse_ticket *
3755fe58019SAttilio Rao fticket_alloc(struct fuse_data *data)
3765fe58019SAttilio Rao {
3775fe58019SAttilio Rao 	return uma_zalloc_arg(ticket_zone, data, M_WAITOK);
3785fe58019SAttilio Rao }
3795fe58019SAttilio Rao 
38002295cafSConrad Meyer static inline void
3815fe58019SAttilio Rao fticket_destroy(struct fuse_ticket *ftick)
3825fe58019SAttilio Rao {
3835fe58019SAttilio Rao 	return uma_zfree(ticket_zone, ftick);
3845fe58019SAttilio Rao }
3855fe58019SAttilio Rao 
38602295cafSConrad Meyer static inline
3875fe58019SAttilio Rao void
3885fe58019SAttilio Rao fticket_refresh(struct fuse_ticket *ftick)
3895fe58019SAttilio Rao {
3905fe58019SAttilio Rao 	FUSE_ASSERT_MS_DONE(ftick);
3915fe58019SAttilio Rao 	FUSE_ASSERT_AW_DONE(ftick);
3925fe58019SAttilio Rao 
3935fe58019SAttilio Rao 	fiov_refresh(&ftick->tk_ms_fiov);
3945fe58019SAttilio Rao 	ftick->tk_ms_bufdata = NULL;
3955fe58019SAttilio Rao 	ftick->tk_ms_bufsize = 0;
3965fe58019SAttilio Rao 	ftick->tk_ms_type = FT_M_FIOV;
3975fe58019SAttilio Rao 
3985fe58019SAttilio Rao 	bzero(&ftick->tk_aw_ohead, sizeof(struct fuse_out_header));
3995fe58019SAttilio Rao 
4005fe58019SAttilio Rao 	fiov_refresh(&ftick->tk_aw_fiov);
4015fe58019SAttilio Rao 	ftick->tk_aw_errno = 0;
4025fe58019SAttilio Rao 	ftick->tk_aw_bufdata = NULL;
4035fe58019SAttilio Rao 	ftick->tk_aw_bufsize = 0;
4045fe58019SAttilio Rao 	ftick->tk_aw_type = FT_A_FIOV;
4055fe58019SAttilio Rao 
4065fe58019SAttilio Rao 	ftick->tk_flag = 0;
4075fe58019SAttilio Rao }
4085fe58019SAttilio Rao 
40912292a99SAlan Somers /* Prepar the ticket to be reused, but don't clear its data buffers */
41012292a99SAlan Somers static inline void
41112292a99SAlan Somers fticket_reset(struct fuse_ticket *ftick)
41212292a99SAlan Somers {
41312292a99SAlan Somers 	FUSE_ASSERT_MS_DONE(ftick);
41412292a99SAlan Somers 	FUSE_ASSERT_AW_DONE(ftick);
41512292a99SAlan Somers 
41612292a99SAlan Somers 	ftick->tk_ms_bufdata = NULL;
41712292a99SAlan Somers 	ftick->tk_ms_bufsize = 0;
41812292a99SAlan Somers 	ftick->tk_ms_type = FT_M_FIOV;
41912292a99SAlan Somers 
42012292a99SAlan Somers 	bzero(&ftick->tk_aw_ohead, sizeof(struct fuse_out_header));
42112292a99SAlan Somers 
42212292a99SAlan Somers 	ftick->tk_aw_errno = 0;
42312292a99SAlan Somers 	ftick->tk_aw_bufdata = NULL;
42412292a99SAlan Somers 	ftick->tk_aw_bufsize = 0;
42512292a99SAlan Somers 	ftick->tk_aw_type = FT_A_FIOV;
42612292a99SAlan Somers 
42712292a99SAlan Somers 	ftick->tk_flag = 0;
42812292a99SAlan Somers }
42912292a99SAlan Somers 
4305fe58019SAttilio Rao static int
4315fe58019SAttilio Rao fticket_wait_answer(struct fuse_ticket *ftick)
4325fe58019SAttilio Rao {
433723c7768SAlan Somers 	struct thread *td = curthread;
434723c7768SAlan Somers 	sigset_t blockedset, oldset;
435ebbfe00eSAlan Somers 	int err = 0, stops_deferred;
4365fe58019SAttilio Rao 	struct fuse_data *data;
4373d070fdcSAlan Somers 
438d5024ba2SAlan Somers 	if (fsess_isimpl(ftick->tk_data->mp, FUSE_INTERRUPT)) {
439ebbfe00eSAlan Somers 		SIGEMPTYSET(blockedset);
440d5024ba2SAlan Somers 	} else {
441d5024ba2SAlan Somers 		/* May as well block all signals */
442d5024ba2SAlan Somers 		SIGFILLSET(blockedset);
443d5024ba2SAlan Somers 		SIGDELSET(blockedset, SIGKILL);
444d5024ba2SAlan Somers 	}
445ebbfe00eSAlan Somers 	stops_deferred = sigdeferstop(SIGDEFERSTOP_SILENT);
4463d070fdcSAlan Somers 	kern_sigprocmask(td, SIG_BLOCK, NULL, &oldset, 0);
4475fe58019SAttilio Rao 
448c02ccc7eSAlan Somers 	fuse_lck_mtx_lock(ftick->tk_aw_mtx);
449c02ccc7eSAlan Somers 
450723c7768SAlan Somers retry:
4515fe58019SAttilio Rao 	if (fticket_answered(ftick)) {
4525fe58019SAttilio Rao 		goto out;
4535fe58019SAttilio Rao 	}
4545fe58019SAttilio Rao 	data = ftick->tk_data;
4555fe58019SAttilio Rao 
4565fe58019SAttilio Rao 	if (fdata_get_dead(data)) {
4575fe58019SAttilio Rao 		err = ENOTCONN;
4585fe58019SAttilio Rao 		fticket_set_answered(ftick);
4595fe58019SAttilio Rao 		goto out;
4605fe58019SAttilio Rao 	}
4613d070fdcSAlan Somers 	kern_sigprocmask(td, SIG_BLOCK, &blockedset, NULL, 0);
4625fe58019SAttilio Rao 	err = msleep(ftick, &ftick->tk_aw_mtx, PCATCH, "fu_ans",
4635fe58019SAttilio Rao 	    data->daemon_timeout * hz);
464723c7768SAlan Somers 	kern_sigprocmask(td, SIG_SETMASK, &oldset, NULL, 0);
465723c7768SAlan Somers 	if (err == EWOULDBLOCK) {
466419e7ff6SAlan Somers 		SDT_PROBE2(fusefs, , ipc, trace, 3,
467723c7768SAlan Somers 			"fticket_wait_answer: EWOULDBLOCK");
4685fe58019SAttilio Rao #ifdef XXXIP				/* die conditionally */
4695fe58019SAttilio Rao 		if (!fdata_get_dead(data)) {
4705fe58019SAttilio Rao 			fdata_set_dead(data);
4715fe58019SAttilio Rao 		}
4725fe58019SAttilio Rao #endif
4735fe58019SAttilio Rao 		err = ETIMEDOUT;
4745fe58019SAttilio Rao 		fticket_set_answered(ftick);
475723c7768SAlan Somers 	} else if ((err == EINTR || err == ERESTART)) {
476723c7768SAlan Somers 		/*
477723c7768SAlan Somers 		 * Whether we get EINTR or ERESTART depends on whether
478723c7768SAlan Somers 		 * SA_RESTART was set by sigaction(2).
479723c7768SAlan Somers 		 *
480723c7768SAlan Somers 		 * Try to interrupt the operation and wait for an EINTR response
481723c7768SAlan Somers 		 * to the original operation.  If the file system does not
482723c7768SAlan Somers 		 * support FUSE_INTERRUPT, then we'll just wait for it to
483723c7768SAlan Somers 		 * complete like normal.  If it does support FUSE_INTERRUPT,
484723c7768SAlan Somers 		 * then it will either respond EINTR to the original operation,
485723c7768SAlan Somers 		 * or EAGAIN to the interrupt.
486723c7768SAlan Somers 		 */
487723c7768SAlan Somers 		int sig;
488ebbfe00eSAlan Somers 		bool fatal;
489723c7768SAlan Somers 
490419e7ff6SAlan Somers 		SDT_PROBE2(fusefs, , ipc, trace, 4,
491723c7768SAlan Somers 			"fticket_wait_answer: interrupt");
492723c7768SAlan Somers 		fuse_lck_mtx_unlock(ftick->tk_aw_mtx);
4933d070fdcSAlan Somers 		fuse_interrupt_send(ftick, err);
494723c7768SAlan Somers 
495723c7768SAlan Somers 		PROC_LOCK(td->td_proc);
496723c7768SAlan Somers 		mtx_lock(&td->td_proc->p_sigacts->ps_mtx);
497723c7768SAlan Somers 		sig = cursig(td);
498ebbfe00eSAlan Somers 		fatal = sig_isfatal(td->td_proc, sig);
499723c7768SAlan Somers 		mtx_unlock(&td->td_proc->p_sigacts->ps_mtx);
500723c7768SAlan Somers 		PROC_UNLOCK(td->td_proc);
5013d070fdcSAlan Somers 
5023d070fdcSAlan Somers 		fuse_lck_mtx_lock(ftick->tk_aw_mtx);
503ebbfe00eSAlan Somers 		if (!fatal) {
504a1542146SAlan Somers 			/*
505a1542146SAlan Somers 			 * Block the just-delivered signal while we wait for an
506a1542146SAlan Somers 			 * interrupt response
507a1542146SAlan Somers 			 */
508723c7768SAlan Somers 			SIGADDSET(blockedset, sig);
509723c7768SAlan Somers 			goto retry;
510a1542146SAlan Somers 		} else {
511a1542146SAlan Somers 			/* Return immediately for fatal signals */
512a1542146SAlan Somers 		}
513723c7768SAlan Somers 	} else if (err) {
514419e7ff6SAlan Somers 		SDT_PROBE2(fusefs, , ipc, trace, 6,
515723c7768SAlan Somers 			"fticket_wait_answer: other error");
516723c7768SAlan Somers 	} else {
517419e7ff6SAlan Somers 		SDT_PROBE2(fusefs, , ipc, trace, 7, "fticket_wait_answer: OK");
5185fe58019SAttilio Rao 	}
5195fe58019SAttilio Rao out:
5205fe58019SAttilio Rao 	if (!(err || fticket_answered(ftick))) {
521419e7ff6SAlan Somers 		SDT_PROBE2(fusefs, , ipc, trace, 1,
522cf169498SAlan Somers 			"FUSE: requester was woken up but still no answer");
5235fe58019SAttilio Rao 		err = ENXIO;
5245fe58019SAttilio Rao 	}
5255fe58019SAttilio Rao 	fuse_lck_mtx_unlock(ftick->tk_aw_mtx);
526ebbfe00eSAlan Somers 	sigallowstop(stops_deferred);
5275fe58019SAttilio Rao 
5285fe58019SAttilio Rao 	return err;
5295fe58019SAttilio Rao }
5305fe58019SAttilio Rao 
53102295cafSConrad Meyer static	inline
5325fe58019SAttilio Rao int
5335fe58019SAttilio Rao fticket_aw_pull_uio(struct fuse_ticket *ftick, struct uio *uio)
5345fe58019SAttilio Rao {
5355fe58019SAttilio Rao 	int err = 0;
5365fe58019SAttilio Rao 	size_t len = uio_resid(uio);
5375fe58019SAttilio Rao 
5385fe58019SAttilio Rao 	if (len) {
5395fe58019SAttilio Rao 		switch (ftick->tk_aw_type) {
5405fe58019SAttilio Rao 		case FT_A_FIOV:
5415fe58019SAttilio Rao 			fiov_adjust(fticket_resp(ftick), len);
5425fe58019SAttilio Rao 			err = uiomove(fticket_resp(ftick)->base, len, uio);
5435fe58019SAttilio Rao 			break;
5445fe58019SAttilio Rao 
5455fe58019SAttilio Rao 		case FT_A_BUF:
5465fe58019SAttilio Rao 			ftick->tk_aw_bufsize = len;
5475fe58019SAttilio Rao 			err = uiomove(ftick->tk_aw_bufdata, len, uio);
5485fe58019SAttilio Rao 			break;
5495fe58019SAttilio Rao 
5505fe58019SAttilio Rao 		default:
5515fe58019SAttilio Rao 			panic("FUSE: unknown answer type for ticket %p", ftick);
5525fe58019SAttilio Rao 		}
5535fe58019SAttilio Rao 	}
5545fe58019SAttilio Rao 	return err;
5555fe58019SAttilio Rao }
5565fe58019SAttilio Rao 
5575fe58019SAttilio Rao int
5585fe58019SAttilio Rao fticket_pull(struct fuse_ticket *ftick, struct uio *uio)
5595fe58019SAttilio Rao {
5605fe58019SAttilio Rao 	int err = 0;
5615fe58019SAttilio Rao 
5625fe58019SAttilio Rao 	if (ftick->tk_aw_ohead.error) {
5635fe58019SAttilio Rao 		return 0;
5645fe58019SAttilio Rao 	}
5655fe58019SAttilio Rao 	err = fuse_body_audit(ftick, uio_resid(uio));
5665fe58019SAttilio Rao 	if (!err) {
5675fe58019SAttilio Rao 		err = fticket_aw_pull_uio(ftick, uio);
5685fe58019SAttilio Rao 	}
5695fe58019SAttilio Rao 	return err;
5705fe58019SAttilio Rao }
5715fe58019SAttilio Rao 
5725fe58019SAttilio Rao struct fuse_data *
5735fe58019SAttilio Rao fdata_alloc(struct cdev *fdev, struct ucred *cred)
5745fe58019SAttilio Rao {
5755fe58019SAttilio Rao 	struct fuse_data *data;
5765fe58019SAttilio Rao 
5775fe58019SAttilio Rao 	data = malloc(sizeof(struct fuse_data), M_FUSEMSG, M_WAITOK | M_ZERO);
5785fe58019SAttilio Rao 
5795fe58019SAttilio Rao 	data->fdev = fdev;
5805fe58019SAttilio Rao 	mtx_init(&data->ms_mtx, "fuse message list mutex", NULL, MTX_DEF);
5815fe58019SAttilio Rao 	STAILQ_INIT(&data->ms_head);
5820a7c63e0SAlan Somers 	data->ms_count = 0;
5833429092cSAlan Somers 	knlist_init_mtx(&data->ks_rsel.si_note, &data->ms_mtx);
5845fe58019SAttilio Rao 	mtx_init(&data->aw_mtx, "fuse answer list mutex", NULL, MTX_DEF);
5855fe58019SAttilio Rao 	TAILQ_INIT(&data->aw_head);
5865fe58019SAttilio Rao 	data->daemoncred = crhold(cred);
5875fe58019SAttilio Rao 	data->daemon_timeout = FUSE_DEFAULT_DAEMON_TIMEOUT;
5885fe58019SAttilio Rao 	sx_init(&data->rename_lock, "fuse rename lock");
5895fe58019SAttilio Rao 	data->ref = 1;
5905fe58019SAttilio Rao 
5915fe58019SAttilio Rao 	return data;
5925fe58019SAttilio Rao }
5935fe58019SAttilio Rao 
5945fe58019SAttilio Rao void
5955fe58019SAttilio Rao fdata_trydestroy(struct fuse_data *data)
5965fe58019SAttilio Rao {
5975fe58019SAttilio Rao 	data->ref--;
5985fe58019SAttilio Rao 	MPASS(data->ref >= 0);
5995fe58019SAttilio Rao 	if (data->ref != 0)
6005fe58019SAttilio Rao 		return;
6015fe58019SAttilio Rao 
6025fe58019SAttilio Rao 	/* Driving off stage all that stuff thrown at device... */
6035fe58019SAttilio Rao 	sx_destroy(&data->rename_lock);
6045fe58019SAttilio Rao 	crfree(data->daemoncred);
6053429092cSAlan Somers 	mtx_destroy(&data->aw_mtx);
6063429092cSAlan Somers 	knlist_delete(&data->ks_rsel.si_note, curthread, 0);
6073429092cSAlan Somers 	knlist_destroy(&data->ks_rsel.si_note);
6083429092cSAlan Somers 	mtx_destroy(&data->ms_mtx);
6095fe58019SAttilio Rao 
6105fe58019SAttilio Rao 	free(data, M_FUSEMSG);
6115fe58019SAttilio Rao }
6125fe58019SAttilio Rao 
6135fe58019SAttilio Rao void
6145fe58019SAttilio Rao fdata_set_dead(struct fuse_data *data)
6155fe58019SAttilio Rao {
6165fe58019SAttilio Rao 	FUSE_LOCK();
6175fe58019SAttilio Rao 	if (fdata_get_dead(data)) {
6185fe58019SAttilio Rao 		FUSE_UNLOCK();
6195fe58019SAttilio Rao 		return;
6205fe58019SAttilio Rao 	}
6215fe58019SAttilio Rao 	fuse_lck_mtx_lock(data->ms_mtx);
6225fe58019SAttilio Rao 	data->dataflags |= FSESS_DEAD;
6235fe58019SAttilio Rao 	wakeup_one(data);
6245fe58019SAttilio Rao 	selwakeuppri(&data->ks_rsel, PZERO + 1);
6255fe58019SAttilio Rao 	wakeup(&data->ticketer);
6265fe58019SAttilio Rao 	fuse_lck_mtx_unlock(data->ms_mtx);
6275fe58019SAttilio Rao 	FUSE_UNLOCK();
6285fe58019SAttilio Rao }
6295fe58019SAttilio Rao 
6305fe58019SAttilio Rao struct fuse_ticket *
6315fe58019SAttilio Rao fuse_ticket_fetch(struct fuse_data *data)
6325fe58019SAttilio Rao {
6335fe58019SAttilio Rao 	int err = 0;
6345fe58019SAttilio Rao 	struct fuse_ticket *ftick;
6355fe58019SAttilio Rao 
6365fe58019SAttilio Rao 	ftick = fticket_alloc(data);
6375fe58019SAttilio Rao 
6385fe58019SAttilio Rao 	if (!(data->dataflags & FSESS_INITED)) {
6395fe58019SAttilio Rao 		/* Sleep until get answer for INIT messsage */
6405fe58019SAttilio Rao 		FUSE_LOCK();
6415fe58019SAttilio Rao 		if (!(data->dataflags & FSESS_INITED) && data->ticketer > 2) {
6425fe58019SAttilio Rao 			err = msleep(&data->ticketer, &fuse_mtx, PCATCH | PDROP,
6435fe58019SAttilio Rao 			    "fu_ini", 0);
6445fe58019SAttilio Rao 			if (err)
6455fe58019SAttilio Rao 				fdata_set_dead(data);
6465fe58019SAttilio Rao 		} else
6475fe58019SAttilio Rao 			FUSE_UNLOCK();
6485fe58019SAttilio Rao 	}
6495fe58019SAttilio Rao 	return ftick;
6505fe58019SAttilio Rao }
6515fe58019SAttilio Rao 
6525fe58019SAttilio Rao int
6535fe58019SAttilio Rao fuse_ticket_drop(struct fuse_ticket *ftick)
6545fe58019SAttilio Rao {
6555fe58019SAttilio Rao 	int die;
6565fe58019SAttilio Rao 
6575fe58019SAttilio Rao 	die = refcount_release(&ftick->tk_refcount);
6585fe58019SAttilio Rao 	if (die)
6595fe58019SAttilio Rao 		fticket_destroy(ftick);
6605fe58019SAttilio Rao 
6615fe58019SAttilio Rao 	return die;
6625fe58019SAttilio Rao }
6635fe58019SAttilio Rao 
6645fe58019SAttilio Rao void
6655fe58019SAttilio Rao fuse_insert_callback(struct fuse_ticket *ftick, fuse_handler_t * handler)
6665fe58019SAttilio Rao {
6675fe58019SAttilio Rao 	if (fdata_get_dead(ftick->tk_data)) {
6685fe58019SAttilio Rao 		return;
6695fe58019SAttilio Rao 	}
6705fe58019SAttilio Rao 	ftick->tk_aw_handler = handler;
6715fe58019SAttilio Rao 
6725fe58019SAttilio Rao 	fuse_lck_mtx_lock(ftick->tk_data->aw_mtx);
6735fe58019SAttilio Rao 	fuse_aw_push(ftick);
6745fe58019SAttilio Rao 	fuse_lck_mtx_unlock(ftick->tk_data->aw_mtx);
6755fe58019SAttilio Rao }
6765fe58019SAttilio Rao 
677268c28edSAlan Somers /*
678268c28edSAlan Somers  * Insert a new upgoing ticket into the message queue
679268c28edSAlan Somers  *
680268c28edSAlan Somers  * If urgent is true, insert at the front of the queue.  Otherwise, insert in
681268c28edSAlan Somers  * FIFO order.
682268c28edSAlan Somers  */
6835fe58019SAttilio Rao void
684268c28edSAlan Somers fuse_insert_message(struct fuse_ticket *ftick, bool urgent)
6855fe58019SAttilio Rao {
6865fe58019SAttilio Rao 	if (ftick->tk_flag & FT_DIRTY) {
6875fe58019SAttilio Rao 		panic("FUSE: ticket reused without being refreshed");
6885fe58019SAttilio Rao 	}
6895fe58019SAttilio Rao 	ftick->tk_flag |= FT_DIRTY;
6905fe58019SAttilio Rao 
6915fe58019SAttilio Rao 	if (fdata_get_dead(ftick->tk_data)) {
6925fe58019SAttilio Rao 		return;
6935fe58019SAttilio Rao 	}
6945fe58019SAttilio Rao 	fuse_lck_mtx_lock(ftick->tk_data->ms_mtx);
695268c28edSAlan Somers 	if (urgent)
696268c28edSAlan Somers 		fuse_ms_push_head(ftick);
697268c28edSAlan Somers 	else
6985fe58019SAttilio Rao 		fuse_ms_push(ftick);
6995fe58019SAttilio Rao 	wakeup_one(ftick->tk_data);
7005fe58019SAttilio Rao 	selwakeuppri(&ftick->tk_data->ks_rsel, PZERO + 1);
7013429092cSAlan Somers 	KNOTE_LOCKED(&ftick->tk_data->ks_rsel.si_note, 0);
7025fe58019SAttilio Rao 	fuse_lck_mtx_unlock(ftick->tk_data->ms_mtx);
7035fe58019SAttilio Rao }
7045fe58019SAttilio Rao 
7055fe58019SAttilio Rao static int
7065fe58019SAttilio Rao fuse_body_audit(struct fuse_ticket *ftick, size_t blen)
7075fe58019SAttilio Rao {
7085fe58019SAttilio Rao 	int err = 0;
7095fe58019SAttilio Rao 	enum fuse_opcode opcode;
7105fe58019SAttilio Rao 
7115fe58019SAttilio Rao 	opcode = fticket_opcode(ftick);
7125fe58019SAttilio Rao 
7135fe58019SAttilio Rao 	switch (opcode) {
714*a1c9f4adSAlan Somers 	case FUSE_BMAP:
715*a1c9f4adSAlan Somers 		err = (blen == sizeof(struct fuse_bmap_out)) ? 0 : EINVAL;
716*a1c9f4adSAlan Somers 		break;
717*a1c9f4adSAlan Somers 
71816bd2d47SAlan Somers 	case FUSE_LINK:
7195fe58019SAttilio Rao 	case FUSE_LOOKUP:
72016bd2d47SAlan Somers 	case FUSE_MKDIR:
72116bd2d47SAlan Somers 	case FUSE_MKNOD:
72216bd2d47SAlan Somers 	case FUSE_SYMLINK:
72316bd2d47SAlan Somers 		if (fuse_libabi_geq(ftick->tk_data, 7, 9)) {
72416bd2d47SAlan Somers 			err = (blen == sizeof(struct fuse_entry_out)) ?
72516bd2d47SAlan Somers 				0 : EINVAL;
72616bd2d47SAlan Somers 		} else {
72716bd2d47SAlan Somers 			err = (blen == FUSE_COMPAT_ENTRY_OUT_SIZE) ? 0 : EINVAL;
72816bd2d47SAlan Somers 		}
7295fe58019SAttilio Rao 		break;
7305fe58019SAttilio Rao 
7315fe58019SAttilio Rao 	case FUSE_FORGET:
7325fe58019SAttilio Rao 		panic("FUSE: a handler has been intalled for FUSE_FORGET");
7335fe58019SAttilio Rao 		break;
7345fe58019SAttilio Rao 
7355fe58019SAttilio Rao 	case FUSE_GETATTR:
7365fe58019SAttilio Rao 	case FUSE_SETATTR:
73716bd2d47SAlan Somers 		if (fuse_libabi_geq(ftick->tk_data, 7, 9)) {
73816bd2d47SAlan Somers 			err = (blen == sizeof(struct fuse_attr_out)) ?
73916bd2d47SAlan Somers 			  0 : EINVAL;
74016bd2d47SAlan Somers 		} else {
74116bd2d47SAlan Somers 			err = (blen == FUSE_COMPAT_ATTR_OUT_SIZE) ? 0 : EINVAL;
74216bd2d47SAlan Somers 		}
7435fe58019SAttilio Rao 		break;
7445fe58019SAttilio Rao 
7455fe58019SAttilio Rao 	case FUSE_READLINK:
7465fe58019SAttilio Rao 		err = (PAGE_SIZE >= blen) ? 0 : EINVAL;
7475fe58019SAttilio Rao 		break;
7485fe58019SAttilio Rao 
7495fe58019SAttilio Rao 	case FUSE_UNLINK:
7505fe58019SAttilio Rao 		err = (blen == 0) ? 0 : EINVAL;
7515fe58019SAttilio Rao 		break;
7525fe58019SAttilio Rao 
7535fe58019SAttilio Rao 	case FUSE_RMDIR:
7545fe58019SAttilio Rao 		err = (blen == 0) ? 0 : EINVAL;
7555fe58019SAttilio Rao 		break;
7565fe58019SAttilio Rao 
7575fe58019SAttilio Rao 	case FUSE_RENAME:
7585fe58019SAttilio Rao 		err = (blen == 0) ? 0 : EINVAL;
7595fe58019SAttilio Rao 		break;
7605fe58019SAttilio Rao 
7615fe58019SAttilio Rao 	case FUSE_OPEN:
7625fe58019SAttilio Rao 		err = (blen == sizeof(struct fuse_open_out)) ? 0 : EINVAL;
7635fe58019SAttilio Rao 		break;
7645fe58019SAttilio Rao 
7655fe58019SAttilio Rao 	case FUSE_READ:
7665fe58019SAttilio Rao 		err = (((struct fuse_read_in *)(
7675fe58019SAttilio Rao 		    (char *)ftick->tk_ms_fiov.base +
7685fe58019SAttilio Rao 		    sizeof(struct fuse_in_header)
7695fe58019SAttilio Rao 		    ))->size >= blen) ? 0 : EINVAL;
7705fe58019SAttilio Rao 		break;
7715fe58019SAttilio Rao 
7725fe58019SAttilio Rao 	case FUSE_WRITE:
7735fe58019SAttilio Rao 		err = (blen == sizeof(struct fuse_write_out)) ? 0 : EINVAL;
7745fe58019SAttilio Rao 		break;
7755fe58019SAttilio Rao 
7765fe58019SAttilio Rao 	case FUSE_STATFS:
7775fe58019SAttilio Rao 		if (fuse_libabi_geq(ftick->tk_data, 7, 4)) {
7785fe58019SAttilio Rao 			err = (blen == sizeof(struct fuse_statfs_out)) ?
7795fe58019SAttilio Rao 			  0 : EINVAL;
7805fe58019SAttilio Rao 		} else {
7815fe58019SAttilio Rao 			err = (blen == FUSE_COMPAT_STATFS_SIZE) ? 0 : EINVAL;
7825fe58019SAttilio Rao 		}
7835fe58019SAttilio Rao 		break;
7845fe58019SAttilio Rao 
7855fe58019SAttilio Rao 	case FUSE_RELEASE:
7865fe58019SAttilio Rao 		err = (blen == 0) ? 0 : EINVAL;
7875fe58019SAttilio Rao 		break;
7885fe58019SAttilio Rao 
7895fe58019SAttilio Rao 	case FUSE_FSYNC:
7905fe58019SAttilio Rao 		err = (blen == 0) ? 0 : EINVAL;
7915fe58019SAttilio Rao 		break;
7925fe58019SAttilio Rao 
7935fe58019SAttilio Rao 	case FUSE_SETXATTR:
79404660064SFedor Uporov 		err = (blen == 0) ? 0 : EINVAL;
7955fe58019SAttilio Rao 		break;
7965fe58019SAttilio Rao 
7975fe58019SAttilio Rao 	case FUSE_GETXATTR:
7985fe58019SAttilio Rao 	case FUSE_LISTXATTR:
79904660064SFedor Uporov 		/*
80004660064SFedor Uporov 		 * These can have varying response lengths, and 0 length
80104660064SFedor Uporov 		 * isn't necessarily invalid.
80204660064SFedor Uporov 		 */
80304660064SFedor Uporov 		err = 0;
8045fe58019SAttilio Rao 		break;
8055fe58019SAttilio Rao 
8065fe58019SAttilio Rao 	case FUSE_REMOVEXATTR:
80704660064SFedor Uporov 		err = (blen == 0) ? 0 : EINVAL;
8085fe58019SAttilio Rao 		break;
8095fe58019SAttilio Rao 
8105fe58019SAttilio Rao 	case FUSE_FLUSH:
8115fe58019SAttilio Rao 		err = (blen == 0) ? 0 : EINVAL;
8125fe58019SAttilio Rao 		break;
8135fe58019SAttilio Rao 
8145fe58019SAttilio Rao 	case FUSE_INIT:
8155fe58019SAttilio Rao 		if (blen == sizeof(struct fuse_init_out) || blen == 8) {
8165fe58019SAttilio Rao 			err = 0;
8175fe58019SAttilio Rao 		} else {
8185fe58019SAttilio Rao 			err = EINVAL;
8195fe58019SAttilio Rao 		}
8205fe58019SAttilio Rao 		break;
8215fe58019SAttilio Rao 
8225fe58019SAttilio Rao 	case FUSE_OPENDIR:
8235fe58019SAttilio Rao 		err = (blen == sizeof(struct fuse_open_out)) ? 0 : EINVAL;
8245fe58019SAttilio Rao 		break;
8255fe58019SAttilio Rao 
8265fe58019SAttilio Rao 	case FUSE_READDIR:
8275fe58019SAttilio Rao 		err = (((struct fuse_read_in *)(
8285fe58019SAttilio Rao 		    (char *)ftick->tk_ms_fiov.base +
8295fe58019SAttilio Rao 		    sizeof(struct fuse_in_header)
8305fe58019SAttilio Rao 		    ))->size >= blen) ? 0 : EINVAL;
8315fe58019SAttilio Rao 		break;
8325fe58019SAttilio Rao 
8335fe58019SAttilio Rao 	case FUSE_RELEASEDIR:
8345fe58019SAttilio Rao 		err = (blen == 0) ? 0 : EINVAL;
8355fe58019SAttilio Rao 		break;
8365fe58019SAttilio Rao 
8375fe58019SAttilio Rao 	case FUSE_FSYNCDIR:
8385fe58019SAttilio Rao 		err = (blen == 0) ? 0 : EINVAL;
8395fe58019SAttilio Rao 		break;
8405fe58019SAttilio Rao 
8415fe58019SAttilio Rao 	case FUSE_GETLK:
842f067b609SAlan Somers 		err = (blen == sizeof(struct fuse_lk_out)) ? 0 : EINVAL;
8435fe58019SAttilio Rao 		break;
8445fe58019SAttilio Rao 
8455fe58019SAttilio Rao 	case FUSE_SETLK:
846f067b609SAlan Somers 		err = (blen == 0) ? 0 : EINVAL;
8475fe58019SAttilio Rao 		break;
8485fe58019SAttilio Rao 
8495fe58019SAttilio Rao 	case FUSE_SETLKW:
850f067b609SAlan Somers 		err = (blen == 0) ? 0 : EINVAL;
8515fe58019SAttilio Rao 		break;
8525fe58019SAttilio Rao 
8535fe58019SAttilio Rao 	case FUSE_ACCESS:
8545fe58019SAttilio Rao 		err = (blen == 0) ? 0 : EINVAL;
8555fe58019SAttilio Rao 		break;
8565fe58019SAttilio Rao 
8575fe58019SAttilio Rao 	case FUSE_CREATE:
85816bd2d47SAlan Somers 		if (fuse_libabi_geq(ftick->tk_data, 7, 9)) {
8595fe58019SAttilio Rao 			err = (blen == sizeof(struct fuse_entry_out) +
8605fe58019SAttilio Rao 			    sizeof(struct fuse_open_out)) ? 0 : EINVAL;
86116bd2d47SAlan Somers 		} else {
86216bd2d47SAlan Somers 			err = (blen == FUSE_COMPAT_ENTRY_OUT_SIZE +
86316bd2d47SAlan Somers 			    sizeof(struct fuse_open_out)) ? 0 : EINVAL;
86416bd2d47SAlan Somers 		}
8655fe58019SAttilio Rao 		break;
8665fe58019SAttilio Rao 
8675fe58019SAttilio Rao 	case FUSE_DESTROY:
8685fe58019SAttilio Rao 		err = (blen == 0) ? 0 : EINVAL;
8695fe58019SAttilio Rao 		break;
8705fe58019SAttilio Rao 
8715fe58019SAttilio Rao 	default:
8725fe58019SAttilio Rao 		panic("FUSE: opcodes out of sync (%d)\n", opcode);
8735fe58019SAttilio Rao 	}
8745fe58019SAttilio Rao 
8755fe58019SAttilio Rao 	return err;
8765fe58019SAttilio Rao }
8775fe58019SAttilio Rao 
87802295cafSConrad Meyer static inline void
87902295cafSConrad Meyer fuse_setup_ihead(struct fuse_in_header *ihead, struct fuse_ticket *ftick,
88002295cafSConrad Meyer     uint64_t nid, enum fuse_opcode op, size_t blen, pid_t pid,
8815fe58019SAttilio Rao     struct ucred *cred)
8825fe58019SAttilio Rao {
8835fe58019SAttilio Rao 	ihead->len = sizeof(*ihead) + blen;
8845fe58019SAttilio Rao 	ihead->unique = ftick->tk_unique;
8855fe58019SAttilio Rao 	ihead->nodeid = nid;
8865fe58019SAttilio Rao 	ihead->opcode = op;
8875fe58019SAttilio Rao 
8885fe58019SAttilio Rao 	ihead->pid = pid;
8895fe58019SAttilio Rao 	ihead->uid = cred->cr_uid;
89061b0a927SAlan Somers 	ihead->gid = cred->cr_groups[0];
8915fe58019SAttilio Rao }
8925fe58019SAttilio Rao 
8935fe58019SAttilio Rao /*
8945fe58019SAttilio Rao  * fuse_standard_handler just pulls indata and wakes up pretender.
8955fe58019SAttilio Rao  * Doesn't try to interpret data, that's left for the pretender.
8965fe58019SAttilio Rao  * Though might do a basic size verification before the pull-in takes place
8975fe58019SAttilio Rao  */
8985fe58019SAttilio Rao 
8995fe58019SAttilio Rao static int
9005fe58019SAttilio Rao fuse_standard_handler(struct fuse_ticket *ftick, struct uio *uio)
9015fe58019SAttilio Rao {
9025fe58019SAttilio Rao 	int err = 0;
9035fe58019SAttilio Rao 
9045fe58019SAttilio Rao 	err = fticket_pull(ftick, uio);
9055fe58019SAttilio Rao 
9065fe58019SAttilio Rao 	fuse_lck_mtx_lock(ftick->tk_aw_mtx);
9075fe58019SAttilio Rao 
9085fe58019SAttilio Rao 	if (!fticket_answered(ftick)) {
9095fe58019SAttilio Rao 		fticket_set_answered(ftick);
9105fe58019SAttilio Rao 		ftick->tk_aw_errno = err;
9115fe58019SAttilio Rao 		wakeup(ftick);
9125fe58019SAttilio Rao 	}
9135fe58019SAttilio Rao 	fuse_lck_mtx_unlock(ftick->tk_aw_mtx);
9145fe58019SAttilio Rao 
9155fe58019SAttilio Rao 	return err;
9165fe58019SAttilio Rao }
9175fe58019SAttilio Rao 
91812292a99SAlan Somers /*
91912292a99SAlan Somers  * Reinitialize a dispatcher from a pid and node id, without resizing or
92012292a99SAlan Somers  * clearing its data buffers
92112292a99SAlan Somers  */
92212292a99SAlan Somers static void
92312292a99SAlan Somers fdisp_refresh_pid(struct fuse_dispatcher *fdip, enum fuse_opcode op,
92412292a99SAlan Somers     struct mount *mp, uint64_t nid, pid_t pid, struct ucred *cred)
92512292a99SAlan Somers {
92612292a99SAlan Somers 	MPASS(fdip->tick);
9278d013becSAlan Somers 	MPASS2(sizeof(fdip->finh) + fdip->iosize <= fdip->tick->tk_ms_fiov.len,
9288d013becSAlan Somers 		"Must use fdisp_make_pid to increase the size of the fiov");
92912292a99SAlan Somers 	fticket_reset(fdip->tick);
93012292a99SAlan Somers 
93112292a99SAlan Somers 	FUSE_DIMALLOC(&fdip->tick->tk_ms_fiov, fdip->finh,
93212292a99SAlan Somers 	    fdip->indata, fdip->iosize);
93312292a99SAlan Somers 
93412292a99SAlan Somers 	fuse_setup_ihead(fdip->finh, fdip->tick, nid, op, fdip->iosize, pid,
93512292a99SAlan Somers 		cred);
93612292a99SAlan Somers }
93712292a99SAlan Somers 
93812292a99SAlan Somers /* Initialize a dispatcher from a pid and node id */
93912292a99SAlan Somers static void
94002295cafSConrad Meyer fdisp_make_pid(struct fuse_dispatcher *fdip, enum fuse_opcode op,
941723c7768SAlan Somers     struct fuse_data *data, uint64_t nid, pid_t pid, struct ucred *cred)
9425fe58019SAttilio Rao {
9435fe58019SAttilio Rao 	if (fdip->tick) {
9445fe58019SAttilio Rao 		fticket_refresh(fdip->tick);
9455fe58019SAttilio Rao 	} else {
9465fe58019SAttilio Rao 		fdip->tick = fuse_ticket_fetch(data);
9475fe58019SAttilio Rao 	}
9485fe58019SAttilio Rao 
9498d013becSAlan Somers 	/* FUSE_DIMALLOC will bzero the fiovs when it enlarges them */
9505fe58019SAttilio Rao 	FUSE_DIMALLOC(&fdip->tick->tk_ms_fiov, fdip->finh,
9515fe58019SAttilio Rao 	    fdip->indata, fdip->iosize);
9525fe58019SAttilio Rao 
9535fe58019SAttilio Rao 	fuse_setup_ihead(fdip->finh, fdip->tick, nid, op, fdip->iosize, pid, cred);
9545fe58019SAttilio Rao }
9555fe58019SAttilio Rao 
9565fe58019SAttilio Rao void
95702295cafSConrad Meyer fdisp_make(struct fuse_dispatcher *fdip, enum fuse_opcode op, struct mount *mp,
95802295cafSConrad Meyer     uint64_t nid, struct thread *td, struct ucred *cred)
9595fe58019SAttilio Rao {
960723c7768SAlan Somers 	struct fuse_data *data = fuse_get_mpdata(mp);
9615fe58019SAttilio Rao 	RECTIFY_TDCR(td, cred);
9625fe58019SAttilio Rao 
963723c7768SAlan Somers 	return fdisp_make_pid(fdip, op, data, nid, td->td_proc->p_pid, cred);
9645fe58019SAttilio Rao }
9655fe58019SAttilio Rao 
9665fe58019SAttilio Rao void
96702295cafSConrad Meyer fdisp_make_vp(struct fuse_dispatcher *fdip, enum fuse_opcode op,
96802295cafSConrad Meyer     struct vnode *vp, struct thread *td, struct ucred *cred)
9695fe58019SAttilio Rao {
970723c7768SAlan Somers 	struct mount *mp = vnode_mount(vp);
971723c7768SAlan Somers 	struct fuse_data *data = fuse_get_mpdata(mp);
972723c7768SAlan Somers 
9735fe58019SAttilio Rao 	RECTIFY_TDCR(td, cred);
974723c7768SAlan Somers 	return fdisp_make_pid(fdip, op, data, VTOI(vp),
9755fe58019SAttilio Rao 	    td->td_proc->p_pid, cred);
9765fe58019SAttilio Rao }
9775fe58019SAttilio Rao 
97812292a99SAlan Somers /* Refresh a fuse_dispatcher so it can be reused, but don't zero its data */
97912292a99SAlan Somers void
98012292a99SAlan Somers fdisp_refresh_vp(struct fuse_dispatcher *fdip, enum fuse_opcode op,
98112292a99SAlan Somers     struct vnode *vp, struct thread *td, struct ucred *cred)
98212292a99SAlan Somers {
98312292a99SAlan Somers 	RECTIFY_TDCR(td, cred);
98412292a99SAlan Somers 	return fdisp_refresh_pid(fdip, op, vnode_mount(vp), VTOI(vp),
98512292a99SAlan Somers 	    td->td_proc->p_pid, cred);
98612292a99SAlan Somers }
98712292a99SAlan Somers 
98812292a99SAlan Somers void
98912292a99SAlan Somers fdisp_refresh(struct fuse_dispatcher *fdip)
99012292a99SAlan Somers {
99112292a99SAlan Somers 	fticket_refresh(fdip->tick);
99212292a99SAlan Somers }
99312292a99SAlan Somers 
994419e7ff6SAlan Somers SDT_PROBE_DEFINE2(fusefs, , ipc, fdisp_wait_answ_error, "char*", "int");
995cf169498SAlan Somers 
9965fe58019SAttilio Rao int
9975fe58019SAttilio Rao fdisp_wait_answ(struct fuse_dispatcher *fdip)
9985fe58019SAttilio Rao {
9995fe58019SAttilio Rao 	int err = 0;
10005fe58019SAttilio Rao 
10015fe58019SAttilio Rao 	fdip->answ_stat = 0;
10025fe58019SAttilio Rao 	fuse_insert_callback(fdip->tick, fuse_standard_handler);
1003268c28edSAlan Somers 	fuse_insert_message(fdip->tick, false);
10045fe58019SAttilio Rao 
10055fe58019SAttilio Rao 	if ((err = fticket_wait_answer(fdip->tick))) {
10065fe58019SAttilio Rao 		fuse_lck_mtx_lock(fdip->tick->tk_aw_mtx);
10075fe58019SAttilio Rao 
10085fe58019SAttilio Rao 		if (fticket_answered(fdip->tick)) {
10095fe58019SAttilio Rao 			/*
10105fe58019SAttilio Rao 	                 * Just between noticing the interrupt and getting here,
10115fe58019SAttilio Rao 	                 * the standard handler has completed his job.
10125fe58019SAttilio Rao 	                 * So we drop the ticket and exit as usual.
10135fe58019SAttilio Rao 	                 */
1014419e7ff6SAlan Somers 			SDT_PROBE2(fusefs, , ipc, fdisp_wait_answ_error,
1015cf169498SAlan Somers 				"IPC: interrupted, already answered", err);
10165fe58019SAttilio Rao 			fuse_lck_mtx_unlock(fdip->tick->tk_aw_mtx);
10175fe58019SAttilio Rao 			goto out;
10185fe58019SAttilio Rao 		} else {
10195fe58019SAttilio Rao 			/*
10205fe58019SAttilio Rao 	                 * So we were faster than the standard handler.
10215fe58019SAttilio Rao 	                 * Then by setting the answered flag we get *him*
10225fe58019SAttilio Rao 	                 * to drop the ticket.
10235fe58019SAttilio Rao 	                 */
1024419e7ff6SAlan Somers 			SDT_PROBE2(fusefs, , ipc, fdisp_wait_answ_error,
1025cf169498SAlan Somers 				"IPC: interrupted, setting to answered", err);
10265fe58019SAttilio Rao 			fticket_set_answered(fdip->tick);
10275fe58019SAttilio Rao 			fuse_lck_mtx_unlock(fdip->tick->tk_aw_mtx);
10285fe58019SAttilio Rao 			return err;
10295fe58019SAttilio Rao 		}
10305fe58019SAttilio Rao 	}
10315fe58019SAttilio Rao 
10327e0aac24SAlan Somers 	if (fdip->tick->tk_aw_errno == ENOTCONN) {
10337e0aac24SAlan Somers 		/* The daemon died while we were waiting for a response */
10347e0aac24SAlan Somers 		err = ENOTCONN;
10357e0aac24SAlan Somers 		goto out;
10367e0aac24SAlan Somers 	} else if (fdip->tick->tk_aw_errno) {
10377e0aac24SAlan Somers 		/*
10387e0aac24SAlan Somers 		 * There was some sort of communication error with the daemon
10397e0aac24SAlan Somers 		 * that the client wouldn't understand.
10407e0aac24SAlan Somers 		 */
1041419e7ff6SAlan Somers 		SDT_PROBE2(fusefs, , ipc, fdisp_wait_answ_error,
1042cf169498SAlan Somers 			"IPC: explicit EIO-ing", fdip->tick->tk_aw_errno);
10435fe58019SAttilio Rao 		err = EIO;
10445fe58019SAttilio Rao 		goto out;
10455fe58019SAttilio Rao 	}
10465fe58019SAttilio Rao 	if ((err = fdip->tick->tk_aw_ohead.error)) {
1047419e7ff6SAlan Somers 		SDT_PROBE2(fusefs, , ipc, fdisp_wait_answ_error,
1048cf169498SAlan Somers 			"IPC: setting status", fdip->tick->tk_aw_ohead.error);
10495fe58019SAttilio Rao 		/*
10505fe58019SAttilio Rao 	         * This means a "proper" fuse syscall error.
10515fe58019SAttilio Rao 	         * We record this value so the caller will
10525fe58019SAttilio Rao 	         * be able to know it's not a boring messaging
10535fe58019SAttilio Rao 	         * failure, if she wishes so (and if not, she can
10545fe58019SAttilio Rao 	         * just simply propagate the return value of this routine).
10555fe58019SAttilio Rao 	         * [XXX Maybe a bitflag would do the job too,
10565fe58019SAttilio Rao 	         * if other flags needed, this will be converted thusly.]
10575fe58019SAttilio Rao 	         */
10585fe58019SAttilio Rao 		fdip->answ_stat = err;
10595fe58019SAttilio Rao 		goto out;
10605fe58019SAttilio Rao 	}
10615fe58019SAttilio Rao 	fdip->answ = fticket_resp(fdip->tick)->base;
10625fe58019SAttilio Rao 	fdip->iosize = fticket_resp(fdip->tick)->len;
10635fe58019SAttilio Rao 
10645fe58019SAttilio Rao 	return 0;
10655fe58019SAttilio Rao 
10665fe58019SAttilio Rao out:
10675fe58019SAttilio Rao 	return err;
10685fe58019SAttilio Rao }
10695fe58019SAttilio Rao 
10705fe58019SAttilio Rao void
10715fe58019SAttilio Rao fuse_ipc_init(void)
10725fe58019SAttilio Rao {
10735fe58019SAttilio Rao 	ticket_zone = uma_zcreate("fuse_ticket", sizeof(struct fuse_ticket),
10745fe58019SAttilio Rao 	    fticket_ctor, fticket_dtor, fticket_init, fticket_fini,
10755fe58019SAttilio Rao 	    UMA_ALIGN_PTR, 0);
10765fe58019SAttilio Rao }
10775fe58019SAttilio Rao 
10785fe58019SAttilio Rao void
10795fe58019SAttilio Rao fuse_ipc_destroy(void)
10805fe58019SAttilio Rao {
10815fe58019SAttilio Rao 	uma_zdestroy(ticket_zone);
10825fe58019SAttilio Rao }
1083