aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorGravatar Nikolaus Rath <Nikolaus@rath.org>2016-10-27 12:46:16 -0700
committerGravatar Nikolaus Rath <Nikolaus@rath.org>2016-10-27 12:46:16 -0700
commitba653b1c24f1a16be1d5d1269c2a091fd5718b6d (patch)
treec9bc4e6e6e7cc89349d6b38bce8ceea5625c78e9 /doc
parentd73b198c1c65026e39b93314f110053cc3b05caa (diff)
Improve documentation of -o default_permissions
Diffstat (limited to 'doc')
-rw-r--r--doc/mount.fuse.810
1 files changed, 9 insertions, 1 deletions
diff --git a/doc/mount.fuse.8 b/doc/mount.fuse.8
index 120c2dc..52e8f92 100644
--- a/doc/mount.fuse.8
+++ b/doc/mount.fuse.8
@@ -22,7 +22,15 @@ privileged user.
These are FUSE specific mount options that can be specified for all filesystems:
.TP
\fBdefault_permissions\fP
-By default FUSE doesn't check file access permissions, the filesystem is free to implement it's access policy or leave it to the underlying file access mechanism (e.g. in case of network filesystems). This option enables permission checking, restricting access based on file mode. This is option is usually useful together with the \fBallow_other\fP mount option.
+This option instructs the kernel to perform its own permission check
+instead of deferring all permission checking to the FUSE
+filesystem. The check by the kernel is done in addition to any
+permission checks by the filesystem, and both have to succeed for an
+operation to be allowed. The kernel performs a standard UNIX permission
+check (based on mode bits and ownership of the directory entry, and
+uid/gid of the acessing process). If the filesystem supports extended
+attributes and the kernel is sufficiently recent, it may also take
+into account access control lists (ACLs).
.TP
\fBallow_other\fP
This option overrides the security measure restricting file access to the user mounting the filesystem. So all users (including root) can access the files. This option is by default only allowed to root, but this restriction can be removed with a configuration option described in the previous section.