- Notifications
You must be signed in to change notification settings - Fork1.2k
The reference implementation of the Linux FUSE (Filesystem in Userspace) interface
License
libfuse/libfuse
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
FUSE (Filesystem in Userspace) is an interface for userspace programsto export a filesystem to the Linux kernel. The FUSE project consistsof two components: thefuse kernel module (maintained in the regularkernel repositories) and thelibfuse userspace library (maintainedin this repository). libfuse provides the reference implementationfor communicating with the FUSE kernel module.
A FUSE file system is typically implemented as a standaloneapplication that links with libfuse. libfuse provides functions tomount the file system, unmount it, read requests from the kernel, andsend responses back. libfuse offers two APIs: a "high-level",synchronous API, and a "low-level" asynchronous API. In both cases,incoming requests from the kernel are passed to the main program usingcallbacks. When using the high-level API, the callbacks may work withfile names and paths instead of inodes, and processing of a requestfinishes when the callback function returns. When using the low-levelAPI, the callbacks must work with inodes and responses must be sentexplicitly using a separate set of API functions.
libfuse is shipped by all major Linux distributions and has been inproduction use across a wide range of systems for many years. However,at present libfuse does not have any active, regular contributors. Thecurrent maintainer continues to apply pull requests and makes regularreleases, but unfortunately has no capacity to do any developmentbeyond addressing high-impact issues. When reporting bugs, pleaseunderstand that unless you are including a pull request or arereporting a critical issue, you will probably not get a response. Ifyou are using libfuse, please consider contributing to the project.
- Linux (fully)
- BSD (mostly/best-effort)
- For OS-X, please useOSXFUSE
You can download libfuse fromhttps://github.com/libfuse/libfuse/releases. To build andinstall, you must useMeson andNinja. After downloading the tarball and.sig
file, verifyit usingsignify:
signify -V -m fuse-X.Y.Z.tar.gz -p fuse-X.Y.pub
Thefuse-X.Y.pub
file contains the signing key and needs to be obtained from atrustworthy source. Each libfuse release contains the signing key for the release after itin thesignify
directory, so you only need to manually acquire this file once when youinstall libfuse for the first time.
After you have validated the tarball, extract it, create a (temporary) build directory andrun Meson:
$ tar xzf fuse-X.Y.Z.tar.gz; cd fuse-X.Y.Z$ mkdir build; cd build$ meson setup ..
Normally, the default build options will work fine. If younevertheless want to adjust them, you can do so with themeson configure command:
$ meson configure # list options$ meson configure -D disable-mtab=true # set an optionq$ # ensure all meson options are applied to the final build system$ meson setup --reconfigure ../
To build, test, and install libfuse, you then use Ninja:
$ ninja$ sudo python3 -m pytest test/$ sudo ninja install
Running the tests requires thepy.testPython module. Instead of running the tests as root, the majority oftests can also be run as a regular user ifutil/fusermount3 is madesetuid root first:
$ sudo chown root:root util/fusermount3$ sudo chmod 4755 util/fusermount3$ python3 -m pytest test/
Thefusermount3 program is installed setuid root. This is done toallow normal users to mount their own filesystem implementations.
To limit the harm that malicious users can do this way,fusermount3enforces the following limitations:
The user can only mount on a mountpoint for which they have writepermission
The mountpoint must not be a sticky directory which isn't owned bythe user (like /tmp usually is)
No other user (including root) can access the contents of themounted filesystem (though this can be relaxed by allowing the useof theallow_other andallow_root mount options in/etc/fuse.conf)
If you intend to use theallow_other mount options, be aware thatFUSE has an unresolvedsecuritybug: if thedefault_permissions mount option is not used, the results of thefirst permission check performed by the file system for a directoryentry will be re-used for subsequent accesses as long as the inode ofthe accessed entry is present in the kernel cache - even if thepermissions have since changed, and even if the subsequent access ismade by a different user. This is of little concern if the filesystemis accessible only to the mounting user (which has full access to thefilesystem anyway), but becomes a security issue when other users areallowed to access the filesystem (since they can exploit this toperform operations on the filesystem that they do not actually havepermissions for).
This bug needs to be fixed in the Linux kernel and has been knownsince 2006 but unfortunately no fix has been applied yet. If youdepend on correct permission handling for FUSE file systems, the onlyworkaround is to usedefault_permissions
(which does not currentlysupport ACLs), or to completely disable caching of directory entryattributes.
FUSE comes with several example file systems in theexample
directory. For example, thepassthrough examples mirror the contentsof the root directory under the mountpoint. Start from there and adaptthe code!
The documentation of the API functions and necessary callbacks ismostly contained in the filesinclude/fuse.h
(for the high-levelAPI) andinclude/fuse_lowlevel.h
(for the low-level API). Anautogenerated html version of the API is available in thedoc/html
directory and athttp://libfuse.github.io/doxygen.
If you need help, please ask on thefuse-devel@lists.sourceforge.netmailing list (subscribe athttps://lists.sourceforge.net/lists/listinfo/fuse-devel).
Please report any bugs on the GitHub issue tracker athttps://github.com/libfuse/libfuse/issues.
About
The reference implementation of the Linux FUSE (Filesystem in Userspace) interface
Resources
License
Security policy
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Packages0
Uh oh!
There was an error while loading.Please reload this page.