]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - share/man/man5/fusefs.5
[skip ci] update copyright headers in fusefs files
[FreeBSD/FreeBSD.git] / share / man / man5 / fusefs.5
1 .\"
2 .\" SPDX-License-Identifier: BSD-2-Clause-FreeBSD
3 .\"
4 .\" Copyright (c) 2019 The FreeBSD Foundation
5 .\"
6 .\" This documentation was written by BFF Storage Systems, LLC under
7 .\" sponsorship from the FreeBSD Foundation.
8 .\"
9 .\" Redistribution and use in source and binary forms, with or without
10 .\" modification, are permitted provided that the following conditions
11 .\" are met:
12 .\" 1. Redistributions of source code must retain the above copyright
13 .\"    notice, this list of conditions and the following disclaimer.
14 .\" 2. Redistributions in binary form must reproduce the above copyright
15 .\"    notice, this list of conditions and the following disclaimer in the
16 .\"    documentation and/or other materials provided with the distribution.
17 .\"
18 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
19 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
22 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28 .\" SUCH DAMAGE.
29 .\"
30 .\" $FreeBSD$
31 .Dd June 27, 2019
32 .Dt FUSEFS 5
33 .Os
34 .Sh NAME
35 .Nm fusefs
36 .Nd "File system in USErspace"
37 .Sh SYNOPSIS
38 To link into the kernel:
39 .Bd -ragged -offset indent
40 .Cd "options FUSEFS"
41 .Ed
42 .Pp
43 To load as a loadable kernel module:
44 .Pp
45 .Dl "kldload fusefs"
46 .Sh DESCRIPTION
47 The
48 .Nm
49 driver implements a file system that is serviced by a userspace program.
50 .Pp
51 There are many uses for
52 .Nm .
53 Userspace daemons can access libraries or programming languages that cannot run
54 in kernel-mode, for example.
55 .Nm
56 is also useful for developing and debugging file systems, because a crash of
57 the daemon will not take down the entire operating system.
58 Finally, the
59 .Nm
60 API is portable.
61 Many daemons can run on multiple operating systems with minimal modifications.
62 .Sh SYSCTL VARIABLES
63 The following 
64 .Xr sysctl 8
65 variables are available:
66 .Bl -tag -width indent
67 .It Va vfs.fusefs.kernelabi_major
68 Major version of the FUSE kernel ABI supported by this driver.
69 .It Va vfs.fusefs.kernelabi_minor
70 Minor version of the FUSE kernel ABI supported by this driver.
71 .It Va vfs.fusefs.data_cache_mode
72 Controls how
73 .Nm
74 will cache file data for pre-7.23 file systems.
75 A value of 0 will disable caching entirely.
76 Every data access will be forwarded to the daemon.
77 A value of 1 will select write-through caching.
78 Reads will be cached in the VFS layer as usual.
79 Writes will be immediately forwarded to the daemon, and also added to the cache.
80 A value of 2 will select write-back caching.
81 Reads and writes will both be cached, and writes will occasionally be flushed
82 to the daemon by the page daemon.
83 Write-back caching is usually unsafe, especially for FUSE file systems that
84 require network access.
85 .Pp
86 FUSE file systems using protocol 7.23 or later specify their cache behavior
87 on a per-mountpoint basis, ignoring this sysctl.
88 .It Va vfs.fusefs.stats.filehandle_count
89 Current number of open FUSE file handles.
90 .It Va vfs.fusefs.stats.lookup_cache_hits
91 Total number of lookup cache hits.
92 .It Va vfs.fusefs.stats.lookup_cache_misses
93 Total number of lookup cache misses.
94 .It Va vfs.fusefs.stats.node_count
95 Current number of allocated FUSE vnodes.
96 .It Va vfs.fusefs.stats.ticket_count
97 Current number of allocated FUSE tickets, which is roughly equal to the number
98 number of FUSE operations currently being processed by daemons.
99 .\" Undocumented sysctls
100 .\" ====================
101 .\" vfs.fusefs.enforce_dev_perms: I don't understand it well enough.
102 .\" vfs.fusefs.iov_credit: I don't understand it well enough
103 .\" vfs.fusefs.iov_permanent_bufsize: I don't understand it well enough
104 .Sh SEE ALSO
105 .Xr mount_fusefs 8
106 .Sh HISTORY
107 The
108 .Nm fuse
109 driver was written as the part of the
110 .Fx
111 implementation of the FUSE userspace file system framework (see
112 .Xr https://github.com/libfuse/libfuse )
113 and first appeared in the
114 .Pa sysutils/fusefs-kmod
115 port, supporting
116 .Fx 6.0 .
117 It was added to the base system in
118 .Fx 10.0 ,
119 and renamed to
120 .Nm
121 for
122 .Fx 12.1 .
123 .Sh AUTHORS
124 .An -nosplit
125 The
126 .Nm fuse
127 driver was originally written by
128 .An Csaba Henk
129 as a Google Summer of Code project in 2005.
130 It was further developed by
131 .An Ilya Putsikau
132 during Google Summer of Code 2011, and that version was integrated into the
133 base system by
134 .An Attilio Rao Aq Mt attilio@FreeBSD.org .
135 .Pp
136 This manual page was written by
137 .An Alan Somers Aq Mt asomers@FreeBSD.org .