xref: /freebsd/sys/fs/fuse/fuse_device.c (revision 8aafc8c3894e5d5d302bd04d88aec04d719b4377)
151369649SPedro F. Giffuni /*-
251369649SPedro F. Giffuni  * SPDX-License-Identifier: BSD-3-Clause
351369649SPedro F. Giffuni  *
45fe58019SAttilio Rao  * Copyright (c) 2007-2009 Google Inc.
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  *
36*8aafc8c3SAlan Somers  * Copyright (c) 2019 The FreeBSD Foundation
37*8aafc8c3SAlan Somers  *
38*8aafc8c3SAlan Somers  * Portions of this software were developed by BFF Storage Systems, LLC under
39*8aafc8c3SAlan Somers  * sponsorship from the FreeBSD Foundation.
40*8aafc8c3SAlan Somers  *
415fe58019SAttilio Rao  * Redistribution and use in source and binary forms, with or without
425fe58019SAttilio Rao  * modification, are permitted provided that the following conditions
435fe58019SAttilio Rao  * are met:
445fe58019SAttilio Rao  * 1. Redistributions of source code must retain the above copyright
455fe58019SAttilio Rao  *    notice, this list of conditions and the following disclaimer.
465fe58019SAttilio Rao  * 2. Redistributions in binary form must reproduce the above copyright
475fe58019SAttilio Rao  *    notice, this list of conditions and the following disclaimer in the
485fe58019SAttilio Rao  *    documentation and/or other materials provided with the distribution.
495fe58019SAttilio Rao  *
505fe58019SAttilio Rao  * THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS ``AS IS'' AND
515fe58019SAttilio Rao  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
525fe58019SAttilio Rao  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
535fe58019SAttilio Rao  * ARE DISCLAIMED.  IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE
545fe58019SAttilio Rao  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
555fe58019SAttilio Rao  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
565fe58019SAttilio Rao  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
575fe58019SAttilio Rao  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
585fe58019SAttilio Rao  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
595fe58019SAttilio Rao  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
605fe58019SAttilio Rao  * SUCH DAMAGE.
615fe58019SAttilio Rao  */
625fe58019SAttilio Rao 
635fe58019SAttilio Rao #include <sys/cdefs.h>
645fe58019SAttilio Rao __FBSDID("$FreeBSD$");
655fe58019SAttilio Rao 
665fe58019SAttilio Rao #include <sys/types.h>
675fe58019SAttilio Rao #include <sys/module.h>
685fe58019SAttilio Rao #include <sys/systm.h>
695fe58019SAttilio Rao #include <sys/errno.h>
705fe58019SAttilio Rao #include <sys/param.h>
715fe58019SAttilio Rao #include <sys/kernel.h>
725fe58019SAttilio Rao #include <sys/conf.h>
735fe58019SAttilio Rao #include <sys/uio.h>
745fe58019SAttilio Rao #include <sys/malloc.h>
755fe58019SAttilio Rao #include <sys/queue.h>
765fe58019SAttilio Rao #include <sys/lock.h>
775fe58019SAttilio Rao #include <sys/sx.h>
785fe58019SAttilio Rao #include <sys/mutex.h>
795fe58019SAttilio Rao #include <sys/proc.h>
805fe58019SAttilio Rao #include <sys/mount.h>
81cf169498SAlan Somers #include <sys/sdt.h>
825fe58019SAttilio Rao #include <sys/stat.h>
835fe58019SAttilio Rao #include <sys/fcntl.h>
845fe58019SAttilio Rao #include <sys/sysctl.h>
855fe58019SAttilio Rao #include <sys/poll.h>
865fe58019SAttilio Rao #include <sys/selinfo.h>
875fe58019SAttilio Rao 
885fe58019SAttilio Rao #include "fuse.h"
89c2d70d6eSAlan Somers #include "fuse_internal.h"
905fe58019SAttilio Rao #include "fuse_ipc.h"
915fe58019SAttilio Rao 
92419e7ff6SAlan Somers SDT_PROVIDER_DECLARE(fusefs);
93cf169498SAlan Somers /*
94cf169498SAlan Somers  * Fuse trace probe:
95cf169498SAlan Somers  * arg0: verbosity.  Higher numbers give more verbose messages
96cf169498SAlan Somers  * arg1: Textual message
97cf169498SAlan Somers  */
98419e7ff6SAlan Somers SDT_PROBE_DEFINE2(fusefs, , device, trace, "int", "char*");
995fe58019SAttilio Rao 
1005fe58019SAttilio Rao static struct cdev *fuse_dev;
1015fe58019SAttilio Rao 
1023429092cSAlan Somers static d_kqfilter_t fuse_device_filter;
1035fe58019SAttilio Rao static d_open_t fuse_device_open;
1045fe58019SAttilio Rao static d_poll_t fuse_device_poll;
1055fe58019SAttilio Rao static d_read_t fuse_device_read;
1065fe58019SAttilio Rao static d_write_t fuse_device_write;
1075fe58019SAttilio Rao 
1085fe58019SAttilio Rao static struct cdevsw fuse_device_cdevsw = {
1093429092cSAlan Somers 	.d_kqfilter = fuse_device_filter,
1105fe58019SAttilio Rao 	.d_open = fuse_device_open,
1115fe58019SAttilio Rao 	.d_name = "fuse",
1125fe58019SAttilio Rao 	.d_poll = fuse_device_poll,
1135fe58019SAttilio Rao 	.d_read = fuse_device_read,
1145fe58019SAttilio Rao 	.d_write = fuse_device_write,
1155fe58019SAttilio Rao 	.d_version = D_VERSION,
1165fe58019SAttilio Rao };
1175fe58019SAttilio Rao 
1183429092cSAlan Somers static int fuse_device_filt_read(struct knote *kn, long hint);
1193429092cSAlan Somers static void fuse_device_filt_detach(struct knote *kn);
1203429092cSAlan Somers 
1213429092cSAlan Somers struct filterops fuse_device_rfiltops = {
1223429092cSAlan Somers 	.f_isfd = 1,
1233429092cSAlan Somers 	.f_detach = fuse_device_filt_detach,
1243429092cSAlan Somers 	.f_event = fuse_device_filt_read,
1253429092cSAlan Somers };
1263429092cSAlan Somers 
1275fe58019SAttilio Rao /****************************
1285fe58019SAttilio Rao  *
1295fe58019SAttilio Rao  * >>> Fuse device op defs
1305fe58019SAttilio Rao  *
1315fe58019SAttilio Rao  ****************************/
1325fe58019SAttilio Rao 
1335fe58019SAttilio Rao static void
1345fe58019SAttilio Rao fdata_dtor(void *arg)
1355fe58019SAttilio Rao {
1365fe58019SAttilio Rao 	struct fuse_data *fdata;
1378b73a4c5SAlan Somers 	struct fuse_ticket *tick;
1385fe58019SAttilio Rao 
1395fe58019SAttilio Rao 	fdata = arg;
1408b73a4c5SAlan Somers 	if (fdata == NULL)
1418b73a4c5SAlan Somers 		return;
1428b73a4c5SAlan Somers 
1438b73a4c5SAlan Somers 	fdata_set_dead(fdata);
1448b73a4c5SAlan Somers 
1458b73a4c5SAlan Somers 	FUSE_LOCK();
1468b73a4c5SAlan Somers 	fuse_lck_mtx_lock(fdata->aw_mtx);
1478b73a4c5SAlan Somers 	/* wakup poll()ers */
1488b73a4c5SAlan Somers 	selwakeuppri(&fdata->ks_rsel, PZERO + 1);
1498b73a4c5SAlan Somers 	/* Don't let syscall handlers wait in vain */
1508b73a4c5SAlan Somers 	while ((tick = fuse_aw_pop(fdata))) {
1518b73a4c5SAlan Somers 		fuse_lck_mtx_lock(tick->tk_aw_mtx);
1528b73a4c5SAlan Somers 		fticket_set_answered(tick);
1538b73a4c5SAlan Somers 		tick->tk_aw_errno = ENOTCONN;
1548b73a4c5SAlan Somers 		wakeup(tick);
1558b73a4c5SAlan Somers 		fuse_lck_mtx_unlock(tick->tk_aw_mtx);
1568b73a4c5SAlan Somers 		FUSE_ASSERT_AW_DONE(tick);
1578b73a4c5SAlan Somers 		fuse_ticket_drop(tick);
1588b73a4c5SAlan Somers 	}
1598b73a4c5SAlan Somers 	fuse_lck_mtx_unlock(fdata->aw_mtx);
1608b73a4c5SAlan Somers 	FUSE_UNLOCK();
1618b73a4c5SAlan Somers 
1625fe58019SAttilio Rao 	fdata_trydestroy(fdata);
1635fe58019SAttilio Rao }
1645fe58019SAttilio Rao 
1653429092cSAlan Somers static int
1663429092cSAlan Somers fuse_device_filter(struct cdev *dev, struct knote *kn)
1673429092cSAlan Somers {
1683429092cSAlan Somers 	struct fuse_data *data;
1693429092cSAlan Somers 	int error;
1703429092cSAlan Somers 
1713429092cSAlan Somers 	error = devfs_get_cdevpriv((void **)&data);
1723429092cSAlan Somers 
1733429092cSAlan Somers 	/* EVFILT_WRITE is not supported; the device is always ready to write */
1743429092cSAlan Somers 	if (error == 0 && kn->kn_filter == EVFILT_READ) {
1753429092cSAlan Somers 		kn->kn_fop = &fuse_device_rfiltops;
1763429092cSAlan Somers 		kn->kn_hook = data;
1773429092cSAlan Somers 		knlist_add(&data->ks_rsel.si_note, kn, 0);
1783429092cSAlan Somers 		error = 0;
1793429092cSAlan Somers 	} else if (error == 0) {
1803429092cSAlan Somers 		error = EINVAL;
1813429092cSAlan Somers 		kn->kn_data = error;
1823429092cSAlan Somers 	}
1833429092cSAlan Somers 
1843429092cSAlan Somers 	return (error);
1853429092cSAlan Somers }
1863429092cSAlan Somers 
1873429092cSAlan Somers static void
1883429092cSAlan Somers fuse_device_filt_detach(struct knote *kn)
1893429092cSAlan Somers {
1903429092cSAlan Somers 	struct fuse_data *data;
1913429092cSAlan Somers 
1923429092cSAlan Somers 	data = (struct fuse_data*)kn->kn_hook;
1933429092cSAlan Somers 	MPASS(data != NULL);
1943429092cSAlan Somers 	knlist_remove(&data->ks_rsel.si_note, kn, 0);
1953429092cSAlan Somers 	kn->kn_hook = NULL;
1963429092cSAlan Somers }
1973429092cSAlan Somers 
1983429092cSAlan Somers static int
1993429092cSAlan Somers fuse_device_filt_read(struct knote *kn, long hint)
2003429092cSAlan Somers {
2013429092cSAlan Somers 	struct fuse_data *data;
2023429092cSAlan Somers 	int ready;
2033429092cSAlan Somers 
2043429092cSAlan Somers 	data = (struct fuse_data*)kn->kn_hook;
2053429092cSAlan Somers 	MPASS(data != NULL);
2063429092cSAlan Somers 
2073429092cSAlan Somers 	mtx_assert(&data->ms_mtx, MA_OWNED);
2083429092cSAlan Somers 	if (fdata_get_dead(data)) {
2093429092cSAlan Somers 		kn->kn_flags |= EV_EOF;
2103429092cSAlan Somers 		kn->kn_fflags = ENODEV;
2113429092cSAlan Somers 		kn->kn_data = 1;
2123429092cSAlan Somers 		ready = 1;
2133429092cSAlan Somers 	} else if (STAILQ_FIRST(&data->ms_head)) {
2140a7c63e0SAlan Somers 		MPASS(data->ms_count >= 1);
2150a7c63e0SAlan Somers 		kn->kn_data = data->ms_count;
2163429092cSAlan Somers 		ready = 1;
2173429092cSAlan Somers 	} else {
2183429092cSAlan Somers 		ready = 0;
2193429092cSAlan Somers 	}
2203429092cSAlan Somers 
2213429092cSAlan Somers 	return (ready);
2223429092cSAlan Somers }
2233429092cSAlan Somers 
2245fe58019SAttilio Rao /*
2255fe58019SAttilio Rao  * Resources are set up on a per-open basis
2265fe58019SAttilio Rao  */
2275fe58019SAttilio Rao static int
2285fe58019SAttilio Rao fuse_device_open(struct cdev *dev, int oflags, int devtype, struct thread *td)
2295fe58019SAttilio Rao {
2305fe58019SAttilio Rao 	struct fuse_data *fdata;
2315fe58019SAttilio Rao 	int error;
2325fe58019SAttilio Rao 
233419e7ff6SAlan Somers 	SDT_PROBE2(fusefs, , device, trace, 1, "device open");
2345fe58019SAttilio Rao 
2355fe58019SAttilio Rao 	fdata = fdata_alloc(dev, td->td_ucred);
2365fe58019SAttilio Rao 	error = devfs_set_cdevpriv(fdata, fdata_dtor);
2375fe58019SAttilio Rao 	if (error != 0)
2385fe58019SAttilio Rao 		fdata_trydestroy(fdata);
2395fe58019SAttilio Rao 	else
240419e7ff6SAlan Somers 		SDT_PROBE2(fusefs, , device, trace, 1, "device open success");
2415fe58019SAttilio Rao 	return (error);
2425fe58019SAttilio Rao }
2435fe58019SAttilio Rao 
2445fe58019SAttilio Rao int
2455fe58019SAttilio Rao fuse_device_poll(struct cdev *dev, int events, struct thread *td)
2465fe58019SAttilio Rao {
2475fe58019SAttilio Rao 	struct fuse_data *data;
2485fe58019SAttilio Rao 	int error, revents = 0;
2495fe58019SAttilio Rao 
2505fe58019SAttilio Rao 	error = devfs_get_cdevpriv((void **)&data);
2515fe58019SAttilio Rao 	if (error != 0)
2525fe58019SAttilio Rao 		return (events &
2535fe58019SAttilio Rao 		    (POLLHUP|POLLIN|POLLRDNORM|POLLOUT|POLLWRNORM));
2545fe58019SAttilio Rao 
2555fe58019SAttilio Rao 	if (events & (POLLIN | POLLRDNORM)) {
2565fe58019SAttilio Rao 		fuse_lck_mtx_lock(data->ms_mtx);
2575fe58019SAttilio Rao 		if (fdata_get_dead(data) || STAILQ_FIRST(&data->ms_head))
2585fe58019SAttilio Rao 			revents |= events & (POLLIN | POLLRDNORM);
2595fe58019SAttilio Rao 		else
2605fe58019SAttilio Rao 			selrecord(td, &data->ks_rsel);
2615fe58019SAttilio Rao 		fuse_lck_mtx_unlock(data->ms_mtx);
2625fe58019SAttilio Rao 	}
2635fe58019SAttilio Rao 	if (events & (POLLOUT | POLLWRNORM)) {
2645fe58019SAttilio Rao 		revents |= events & (POLLOUT | POLLWRNORM);
2655fe58019SAttilio Rao 	}
2665fe58019SAttilio Rao 	return (revents);
2675fe58019SAttilio Rao }
2685fe58019SAttilio Rao 
2695fe58019SAttilio Rao /*
2705fe58019SAttilio Rao  * fuse_device_read hangs on the queue of VFS messages.
2715fe58019SAttilio Rao  * When it's notified that there is a new one, it picks that and
2725fe58019SAttilio Rao  * passes up to the daemon
2735fe58019SAttilio Rao  */
2745fe58019SAttilio Rao int
2755fe58019SAttilio Rao fuse_device_read(struct cdev *dev, struct uio *uio, int ioflag)
2765fe58019SAttilio Rao {
2775fe58019SAttilio Rao 	int err;
2785fe58019SAttilio Rao 	struct fuse_data *data;
2795fe58019SAttilio Rao 	struct fuse_ticket *tick;
2805fe58019SAttilio Rao 	void *buf[] = {NULL, NULL, NULL};
2815fe58019SAttilio Rao 	int buflen[3];
2825fe58019SAttilio Rao 	int i;
2835fe58019SAttilio Rao 
284419e7ff6SAlan Somers 	SDT_PROBE2(fusefs, , device, trace, 1, "fuse device read");
2855fe58019SAttilio Rao 
2865fe58019SAttilio Rao 	err = devfs_get_cdevpriv((void **)&data);
2875fe58019SAttilio Rao 	if (err != 0)
2885fe58019SAttilio Rao 		return (err);
2895fe58019SAttilio Rao 
2905fe58019SAttilio Rao 	fuse_lck_mtx_lock(data->ms_mtx);
2915fe58019SAttilio Rao again:
2925fe58019SAttilio Rao 	if (fdata_get_dead(data)) {
293419e7ff6SAlan Somers 		SDT_PROBE2(fusefs, , device, trace, 2,
294cf169498SAlan Somers 			"we know early on that reader should be kicked so we "
295cf169498SAlan Somers 			"don't wait for news");
2965fe58019SAttilio Rao 		fuse_lck_mtx_unlock(data->ms_mtx);
2975fe58019SAttilio Rao 		return (ENODEV);
2985fe58019SAttilio Rao 	}
2995fe58019SAttilio Rao 	if (!(tick = fuse_ms_pop(data))) {
3005fe58019SAttilio Rao 		/* check if we may block */
3015fe58019SAttilio Rao 		if (ioflag & O_NONBLOCK) {
3025fe58019SAttilio Rao 			/* get outa here soon */
3035fe58019SAttilio Rao 			fuse_lck_mtx_unlock(data->ms_mtx);
3045fe58019SAttilio Rao 			return (EAGAIN);
3055fe58019SAttilio Rao 		} else {
3065fe58019SAttilio Rao 			err = msleep(data, &data->ms_mtx, PCATCH, "fu_msg", 0);
3075fe58019SAttilio Rao 			if (err != 0) {
3085fe58019SAttilio Rao 				fuse_lck_mtx_unlock(data->ms_mtx);
3095fe58019SAttilio Rao 				return (fdata_get_dead(data) ? ENODEV : err);
3105fe58019SAttilio Rao 			}
3115fe58019SAttilio Rao 			tick = fuse_ms_pop(data);
3125fe58019SAttilio Rao 		}
3135fe58019SAttilio Rao 	}
3145fe58019SAttilio Rao 	if (!tick) {
3155fe58019SAttilio Rao 		/*
3165fe58019SAttilio Rao 		 * We can get here if fuse daemon suddenly terminates,
3175fe58019SAttilio Rao 		 * eg, by being hit by a SIGKILL
3185fe58019SAttilio Rao 		 * -- and some other cases, too, tho not totally clear, when
3195fe58019SAttilio Rao 		 * (cv_signal/wakeup_one signals the whole process ?)
3205fe58019SAttilio Rao 		 */
321419e7ff6SAlan Somers 		SDT_PROBE2(fusefs, , device, trace, 1, "no message on thread");
3225fe58019SAttilio Rao 		goto again;
3235fe58019SAttilio Rao 	}
3245fe58019SAttilio Rao 	fuse_lck_mtx_unlock(data->ms_mtx);
3255fe58019SAttilio Rao 
3265fe58019SAttilio Rao 	if (fdata_get_dead(data)) {
3275fe58019SAttilio Rao 		/*
3285fe58019SAttilio Rao 		 * somebody somewhere -- eg., umount routine --
3295fe58019SAttilio Rao 		 * wants this liaison finished off
3305fe58019SAttilio Rao 		 */
331419e7ff6SAlan Somers 		SDT_PROBE2(fusefs, , device, trace, 2,
332419e7ff6SAlan Somers 			"reader is to be sacked");
3335fe58019SAttilio Rao 		if (tick) {
334419e7ff6SAlan Somers 			SDT_PROBE2(fusefs, , device, trace, 2, "weird -- "
335cf169498SAlan Somers 				"\"kick\" is set tho there is message");
3365fe58019SAttilio Rao 			FUSE_ASSERT_MS_DONE(tick);
3375fe58019SAttilio Rao 			fuse_ticket_drop(tick);
3385fe58019SAttilio Rao 		}
3395fe58019SAttilio Rao 		return (ENODEV);	/* This should make the daemon get off
3405fe58019SAttilio Rao 					 * of us */
3415fe58019SAttilio Rao 	}
342419e7ff6SAlan Somers 	SDT_PROBE2(fusefs, , device, trace, 1,
343cf169498SAlan Somers 		"fuse device read message successfully");
3445fe58019SAttilio Rao 
3455fe58019SAttilio Rao 	KASSERT(tick->tk_ms_bufdata || tick->tk_ms_bufsize == 0,
3465fe58019SAttilio Rao 	    ("non-null buf pointer with positive size"));
3475fe58019SAttilio Rao 
3485fe58019SAttilio Rao 	switch (tick->tk_ms_type) {
3495fe58019SAttilio Rao 	case FT_M_FIOV:
3505fe58019SAttilio Rao 		buf[0] = tick->tk_ms_fiov.base;
3515fe58019SAttilio Rao 		buflen[0] = tick->tk_ms_fiov.len;
3525fe58019SAttilio Rao 		break;
3535fe58019SAttilio Rao 	case FT_M_BUF:
3545fe58019SAttilio Rao 		buf[0] = tick->tk_ms_fiov.base;
3555fe58019SAttilio Rao 		buflen[0] = tick->tk_ms_fiov.len;
3565fe58019SAttilio Rao 		buf[1] = tick->tk_ms_bufdata;
3575fe58019SAttilio Rao 		buflen[1] = tick->tk_ms_bufsize;
3585fe58019SAttilio Rao 		break;
3595fe58019SAttilio Rao 	default:
3605fe58019SAttilio Rao 		panic("unknown message type for fuse_ticket %p", tick);
3615fe58019SAttilio Rao 	}
3625fe58019SAttilio Rao 
3635fe58019SAttilio Rao 	for (i = 0; buf[i]; i++) {
3645fe58019SAttilio Rao 		/*
3655fe58019SAttilio Rao 		 * Why not ban mercilessly stupid daemons who can't keep up
3665fe58019SAttilio Rao 		 * with us? (There is no much use of a partial read here...)
3675fe58019SAttilio Rao 		 */
3685fe58019SAttilio Rao 		/*
3695fe58019SAttilio Rao 		 * XXX note that in such cases Linux FUSE throws EIO at the
3705fe58019SAttilio Rao 		 * syscall invoker and stands back to the message queue. The
3715fe58019SAttilio Rao 		 * rationale should be made clear (and possibly adopt that
3725fe58019SAttilio Rao 		 * behaviour). Keeping the current scheme at least makes
3735fe58019SAttilio Rao 		 * fallacy as loud as possible...
3745fe58019SAttilio Rao 		 */
3755fe58019SAttilio Rao 		if (uio->uio_resid < buflen[i]) {
3765fe58019SAttilio Rao 			fdata_set_dead(data);
377419e7ff6SAlan Somers 			SDT_PROBE2(fusefs, , device, trace, 2,
378cf169498SAlan Somers 			    "daemon is stupid, kick it off...");
3795fe58019SAttilio Rao 			err = ENODEV;
3805fe58019SAttilio Rao 			break;
3815fe58019SAttilio Rao 		}
3825fe58019SAttilio Rao 		err = uiomove(buf[i], buflen[i], uio);
3835fe58019SAttilio Rao 		if (err)
3845fe58019SAttilio Rao 			break;
3855fe58019SAttilio Rao 	}
3865fe58019SAttilio Rao 
3875fe58019SAttilio Rao 	FUSE_ASSERT_MS_DONE(tick);
3885fe58019SAttilio Rao 	fuse_ticket_drop(tick);
3895fe58019SAttilio Rao 
3905fe58019SAttilio Rao 	return (err);
3915fe58019SAttilio Rao }
3925fe58019SAttilio Rao 
39302295cafSConrad Meyer static inline int
3945fe58019SAttilio Rao fuse_ohead_audit(struct fuse_out_header *ohead, struct uio *uio)
3955fe58019SAttilio Rao {
3965fe58019SAttilio Rao 	if (uio->uio_resid + sizeof(struct fuse_out_header) != ohead->len) {
397419e7ff6SAlan Somers 		SDT_PROBE2(fusefs, , device, trace, 1,
398419e7ff6SAlan Somers 			"Format error: body size "
399cf169498SAlan Somers 			"differs from size claimed by header");
4005fe58019SAttilio Rao 		return (EINVAL);
4015fe58019SAttilio Rao 	}
402c2d70d6eSAlan Somers 	if (uio->uio_resid && ohead->unique != 0 && ohead->error) {
403419e7ff6SAlan Somers 		SDT_PROBE2(fusefs, , device, trace, 1,
404cf169498SAlan Somers 			"Format error: non zero error but message had a body");
4055fe58019SAttilio Rao 		return (EINVAL);
4065fe58019SAttilio Rao 	}
4075fe58019SAttilio Rao 
4085fe58019SAttilio Rao 	return (0);
4095fe58019SAttilio Rao }
4105fe58019SAttilio Rao 
411c2d70d6eSAlan Somers SDT_PROBE_DEFINE1(fusefs, , device, fuse_device_write_notify,
412c2d70d6eSAlan Somers 	"struct fuse_out_header*");
413419e7ff6SAlan Somers SDT_PROBE_DEFINE1(fusefs, , device, fuse_device_write_missing_ticket,
414419e7ff6SAlan Somers 	"uint64_t");
415419e7ff6SAlan Somers SDT_PROBE_DEFINE1(fusefs, , device, fuse_device_write_found,
416419e7ff6SAlan Somers 	"struct fuse_ticket*");
4175fe58019SAttilio Rao /*
4185fe58019SAttilio Rao  * fuse_device_write first reads the header sent by the daemon.
4195fe58019SAttilio Rao  * If that's OK, looks up ticket/callback node by the unique id seen in header.
4205fe58019SAttilio Rao  * If the callback node contains a handler function, the uio is passed over
4215fe58019SAttilio Rao  * that.
4225fe58019SAttilio Rao  */
4235fe58019SAttilio Rao static int
4245fe58019SAttilio Rao fuse_device_write(struct cdev *dev, struct uio *uio, int ioflag)
4255fe58019SAttilio Rao {
4265fe58019SAttilio Rao 	struct fuse_out_header ohead;
4275fe58019SAttilio Rao 	int err = 0;
4285fe58019SAttilio Rao 	struct fuse_data *data;
429c2d70d6eSAlan Somers 	struct mount *mp;
430a1542146SAlan Somers 	struct fuse_ticket *tick, *itick, *x_tick;
4315fe58019SAttilio Rao 	int found = 0;
4325fe58019SAttilio Rao 
4335fe58019SAttilio Rao 	err = devfs_get_cdevpriv((void **)&data);
4345fe58019SAttilio Rao 	if (err != 0)
4355fe58019SAttilio Rao 		return (err);
436c2d70d6eSAlan Somers 	mp = data->mp;
4375fe58019SAttilio Rao 
4385fe58019SAttilio Rao 	if (uio->uio_resid < sizeof(struct fuse_out_header)) {
439419e7ff6SAlan Somers 		SDT_PROBE2(fusefs, , device, trace, 1,
440cf169498SAlan Somers 			"fuse_device_write got less than a header!");
4415fe58019SAttilio Rao 		fdata_set_dead(data);
4425fe58019SAttilio Rao 		return (EINVAL);
4435fe58019SAttilio Rao 	}
4445fe58019SAttilio Rao 	if ((err = uiomove(&ohead, sizeof(struct fuse_out_header), uio)) != 0)
4455fe58019SAttilio Rao 		return (err);
4465fe58019SAttilio Rao 
4475fe58019SAttilio Rao 	/*
4485fe58019SAttilio Rao 	 * We check header information (which is redundant) and compare it
4495fe58019SAttilio Rao 	 * with what we see. If we see some inconsistency we discard the
4505fe58019SAttilio Rao 	 * whole answer and proceed on as if it had never existed. In
4515fe58019SAttilio Rao 	 * particular, no pretender will be woken up, regardless the
4525fe58019SAttilio Rao 	 * "unique" value in the header.
4535fe58019SAttilio Rao 	 */
4545fe58019SAttilio Rao 	if ((err = fuse_ohead_audit(&ohead, uio))) {
4555fe58019SAttilio Rao 		fdata_set_dead(data);
4565fe58019SAttilio Rao 		return (err);
4575fe58019SAttilio Rao 	}
4585fe58019SAttilio Rao 	/* Pass stuff over to callback if there is one installed */
4595fe58019SAttilio Rao 
4605fe58019SAttilio Rao 	/* Looking for ticket with the unique id of header */
4615fe58019SAttilio Rao 	fuse_lck_mtx_lock(data->aw_mtx);
4625fe58019SAttilio Rao 	TAILQ_FOREACH_SAFE(tick, &data->aw_head, tk_aw_link,
4635fe58019SAttilio Rao 	    x_tick) {
4645fe58019SAttilio Rao 		if (tick->tk_unique == ohead.unique) {
465419e7ff6SAlan Somers 			SDT_PROBE1(fusefs, , device, fuse_device_write_found,
466723c7768SAlan Somers 				tick);
4675fe58019SAttilio Rao 			found = 1;
4685fe58019SAttilio Rao 			fuse_aw_remove(tick);
4695fe58019SAttilio Rao 			break;
4705fe58019SAttilio Rao 		}
4715fe58019SAttilio Rao 	}
472a1542146SAlan Somers 	if (found && tick->irq_unique > 0) {
473a1542146SAlan Somers 		/*
474a1542146SAlan Somers 		 * Discard the FUSE_INTERRUPT ticket that tried to interrupt
475a1542146SAlan Somers 		 * this operation
476a1542146SAlan Somers 		 */
477a1542146SAlan Somers 		TAILQ_FOREACH_SAFE(itick, &data->aw_head, tk_aw_link,
478a1542146SAlan Somers 		    x_tick) {
479a1542146SAlan Somers 			if (itick->tk_unique == tick->irq_unique) {
480a1542146SAlan Somers 				fuse_aw_remove(itick);
481c1afff11SAlan Somers 				fuse_ticket_drop(itick);
482a1542146SAlan Somers 				break;
483a1542146SAlan Somers 			}
484a1542146SAlan Somers 		}
485a1542146SAlan Somers 		tick->irq_unique = 0;
486a1542146SAlan Somers 	}
4875fe58019SAttilio Rao 	fuse_lck_mtx_unlock(data->aw_mtx);
4885fe58019SAttilio Rao 
4895fe58019SAttilio Rao 	if (found) {
4905fe58019SAttilio Rao 		if (tick->tk_aw_handler) {
4915fe58019SAttilio Rao 			/*
4925fe58019SAttilio Rao 			 * We found a callback with proper handler. In this
4935fe58019SAttilio Rao 			 * case the out header will be 0wnd by the callback,
4945fe58019SAttilio Rao 			 * so the fun of freeing that is left for her.
4955fe58019SAttilio Rao 			 * (Then, by all chance, she'll just get that's done
4965fe58019SAttilio Rao 			 * via ticket_drop(), so no manual mucking
4975fe58019SAttilio Rao 			 * around...)
4985fe58019SAttilio Rao 			 */
499419e7ff6SAlan Somers 			SDT_PROBE2(fusefs, , device, trace, 1,
500cf169498SAlan Somers 				"pass ticket to a callback");
501c2d70d6eSAlan Somers 			/* Sanitize the linuxism of negative errnos */
502c2d70d6eSAlan Somers 			ohead.error *= -1;
5035fe58019SAttilio Rao 			memcpy(&tick->tk_aw_ohead, &ohead, sizeof(ohead));
5045fe58019SAttilio Rao 			err = tick->tk_aw_handler(tick, uio);
5055fe58019SAttilio Rao 		} else {
5065fe58019SAttilio Rao 			/* pretender doesn't wanna do anything with answer */
507419e7ff6SAlan Somers 			SDT_PROBE2(fusefs, , device, trace, 1,
508cf169498SAlan Somers 				"stuff devalidated, so we drop it");
5095fe58019SAttilio Rao 		}
5105fe58019SAttilio Rao 
5115fe58019SAttilio Rao 		/*
5125fe58019SAttilio Rao 		 * As aw_mtx was not held during the callback execution the
5135fe58019SAttilio Rao 		 * ticket may have been inserted again.  However, this is safe
5145fe58019SAttilio Rao 		 * because fuse_ticket_drop() will deal with refcount anyway.
5155fe58019SAttilio Rao 		 */
5165fe58019SAttilio Rao 		fuse_ticket_drop(tick);
517c2d70d6eSAlan Somers 	} else if (ohead.unique == 0){
518c2d70d6eSAlan Somers 		/* unique == 0 means asynchronous notification */
519c2d70d6eSAlan Somers 		SDT_PROBE1(fusefs, , device, fuse_device_write_notify, &ohead);
520c2d70d6eSAlan Somers 		switch (ohead.error) {
521c2d70d6eSAlan Somers 		case FUSE_NOTIFY_INVAL_ENTRY:
522c2d70d6eSAlan Somers 			err = fuse_internal_invalidate_entry(mp, uio);
523c2d70d6eSAlan Somers 			break;
524c2d70d6eSAlan Somers 		case FUSE_NOTIFY_INVAL_INODE:
525eae1ae13SAlan Somers 			err = fuse_internal_invalidate_inode(mp, uio);
526eae1ae13SAlan Somers 			break;
5277cbb8e8aSAlan Somers 		case FUSE_NOTIFY_RETRIEVE:
5287cbb8e8aSAlan Somers 		case FUSE_NOTIFY_STORE:
5297cbb8e8aSAlan Somers 			/*
5307cbb8e8aSAlan Somers 			 * Unimplemented.  I don't know of any file systems
5317cbb8e8aSAlan Somers 			 * that use them, and the protocol isn't sound anyway,
5327cbb8e8aSAlan Somers 			 * since the notification messages don't include the
5337cbb8e8aSAlan Somers 			 * inode's generation number.  Without that, it's
5347cbb8e8aSAlan Somers 			 * possible to manipulate the cache of the wrong vnode.
5357cbb8e8aSAlan Somers 			 * Finally, it's not defined what this message should
5367cbb8e8aSAlan Somers 			 * do for a file with dirty cache.
5377cbb8e8aSAlan Somers 			 */
538eae1ae13SAlan Somers 		case FUSE_NOTIFY_POLL:
5397cbb8e8aSAlan Somers 			/* Unimplemented.  See comments in fuse_vnops */
540c2d70d6eSAlan Somers 		default:
541c2d70d6eSAlan Somers 			/* Not implemented */
542c2d70d6eSAlan Somers 			err = ENOSYS;
543c2d70d6eSAlan Somers 		}
5445fe58019SAttilio Rao 	} else {
5455fe58019SAttilio Rao 		/* no callback at all! */
546419e7ff6SAlan Somers 		SDT_PROBE1(fusefs, , device, fuse_device_write_missing_ticket,
547723c7768SAlan Somers 			ohead.unique);
548c2d70d6eSAlan Somers 		if (ohead.error == -EAGAIN) {
549a1542146SAlan Somers 			/*
550a1542146SAlan Somers 			 * This was probably a response to a FUSE_INTERRUPT
551a1542146SAlan Somers 			 * operation whose original operation is already
552a1542146SAlan Somers 			 * complete.  We can't store FUSE_INTERRUPT tickets
553a1542146SAlan Somers 			 * indefinitely because their responses are optional.
554a1542146SAlan Somers 			 * So we delete them when the original operation
555a1542146SAlan Somers 			 * completes.  And sadly the fuse_header_out doesn't
556a1542146SAlan Somers 			 * identify the opcode, so we have to guess.
557a1542146SAlan Somers 			 */
558a1542146SAlan Somers 			err = 0;
559a1542146SAlan Somers 		} else {
5605fe58019SAttilio Rao 			err = EINVAL;
5615fe58019SAttilio Rao 		}
562a1542146SAlan Somers 	}
5635fe58019SAttilio Rao 
5645fe58019SAttilio Rao 	return (err);
5655fe58019SAttilio Rao }
5665fe58019SAttilio Rao 
5675fe58019SAttilio Rao int
5685fe58019SAttilio Rao fuse_device_init(void)
5695fe58019SAttilio Rao {
5705fe58019SAttilio Rao 
5715fe58019SAttilio Rao 	fuse_dev = make_dev(&fuse_device_cdevsw, 0, UID_ROOT, GID_OPERATOR,
572b4227f34SAlan Somers 	    S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH, "fuse");
5735fe58019SAttilio Rao 	if (fuse_dev == NULL)
5745fe58019SAttilio Rao 		return (ENOMEM);
5755fe58019SAttilio Rao 	return (0);
5765fe58019SAttilio Rao }
5775fe58019SAttilio Rao 
5785fe58019SAttilio Rao void
5795fe58019SAttilio Rao fuse_device_destroy(void)
5805fe58019SAttilio Rao {
5815fe58019SAttilio Rao 
5825fe58019SAttilio Rao 	MPASS(fuse_dev != NULL);
5835fe58019SAttilio Rao 	destroy_dev(fuse_dev);
5845fe58019SAttilio Rao }
585