2007-04-25 23:52:39 +08:00
|
|
|
/*
|
2007-12-12 22:25:40 +08:00
|
|
|
FUSE: Filesystem in Userspace
|
|
|
|
Copyright (C) 2001-2007 Miklos Szeredi <miklos@szeredi.hu>
|
2007-04-25 23:52:39 +08:00
|
|
|
|
2007-12-12 22:25:40 +08:00
|
|
|
This program can be distributed under the terms of the GNU LGPLv2.
|
|
|
|
See the file COPYING.LIB.
|
2007-04-25 23:52:39 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
|
|
|
int fuse_mnt_add_mount(const char *progname, const char *fsname,
|
2007-12-12 22:25:40 +08:00
|
|
|
const char *mnt, const char *type, const char *opts);
|
2010-11-08 23:00:16 +08:00
|
|
|
int fuse_mnt_remove_mount(const char *progname, const char *mnt);
|
2010-01-27 02:20:13 +08:00
|
|
|
int fuse_mnt_umount(const char *progname, const char *abs_mnt,
|
|
|
|
const char *rel_mnt, int lazy);
|
2007-04-25 23:52:39 +08:00
|
|
|
char *fuse_mnt_resolve_path(const char *progname, const char *orig);
|
2007-06-21 05:37:58 +08:00
|
|
|
int fuse_mnt_check_fuseblk(void);
|
Allow passing `/dev/fuse` file descriptor from parent process
This adds support for a mode of operation in which a privileged parent
process opens `/dev/fuse` and takes care of mounting. The FUSE file
system daemon can then run as an unprivileged child that merely
processes requests on the FUSE file descriptor, which get passed using
the special `/dev/fd/%u` syntax for the mountpoint parameter.
The main benefit is that no privileged operations need to be performed
by the FUSE file system daemon itself directly or indirectly, so the
FUSE process can run with fully unprivileged and mechanisms like
securebits and no_new_privs can be used to prevent subprocesses from
re-acquiring privilege via setuid, fscaps, etc. This reduces risk in
case the FUSE file system gets exploited by malicious file system
data.
Below is an example that illustrates this. Note that I'm using shell
for presentation purposes, the expectation is that the parent process
will implement the equivalent of the `mount -i` and `capsh` commands.
```
\# example/hello can mount successfully with privilege
$ sudo sh -c "LD_LIBRARY_PATH=build/lib ./example/hello /mnt/tmp"
$ sudo cat /mnt/tmp/hello
Hello World!
$ sudo umount /mnt/tmp
\# example/hello fails to mount without privilege
$ sudo capsh --drop=all --secbits=0x2f -- -c 'LD_LIBRARY_PATH=build/lib ./example/hello -f /mnt/tmp'
fusermount3: mount failed: Operation not permitted
\# Passing FUSE file descriptor via /dev/fd/%u allows example/hello to work without privilege
$ sudo sh -c '
exec 17<>/dev/fuse
mount -i -o nodev,nosuid,noexec,fd=17,rootmode=40000,user_id=0,group_id=0 -t fuse hello /mnt/tmp
capsh --drop=all --secbits=0x2f -- -c "LD_LIBRARY_PATH=build/lib example/hello /dev/fd/17"
'
$ sudo cat /mnt/tmp/hello
Hello World!
$ sudo umount /mnt/tmp
```
2018-08-27 21:17:57 +08:00
|
|
|
int fuse_mnt_parse_fuse_fd(const char *mountpoint);
|