Ignore "-o nonempty" (#582)
authorStephen Kitt <steve@sk2.org>
Thu, 28 Jan 2021 21:51:10 +0000 (22:51 +0100)
committerGitHub <noreply@github.com>
Thu, 28 Jan 2021 21:51:10 +0000 (21:51 +0000)
Commit 0bef21e8543d removed "-o nonempty" since mounting over
non-empty directories is always allowed. But this broke tools which
specify "-o nonempty". Since the expected behaviour is the same
anyway, ignoring the "nonempty" option seems safe, and allows programs
specifying "-o nonempty" to continue working with fusermount3.

This would fix https://bugs.debian.org/939767

Signed-off-by: Stephen Kitt <steve@sk2.org>
ChangeLog.rst
util/fusermount.c

index ecca75d90b3d84368dca99023c0f8d9a96f9d06d..47b993a6ee3611f2c5872e7d2e64365c364fab86 100644 (file)
@@ -1,3 +1,10 @@
+Unreleased Changes
+==================
+
+* Allow "nonempty" as a mount option, for backwards compatibility with
+  fusermount 2. The option has no effect since mounting over non-empty
+  directories is allowed by default.
+
 libfuse 3.10.1 (2020-12-07)
 ===========================
 
index 243d25ec5fabf79f733f5c82f5b24cb867799aba..ed62ea9cd4978ebafc5bd184907a6bf19ba75fe7 100644 (file)
@@ -773,7 +773,8 @@ static int do_mount(const char *mnt, const char **typep, mode_t rootmode,
                        blkdev = 1;
                } else if (opt_eq(s, len, "auto_unmount")) {
                        auto_unmount = 1;
-               } else if (!begins_with(s, "fd=") &&
+               } else if (!opt_eq(s, len, "nonempty") &&
+                          !begins_with(s, "fd=") &&
                           !begins_with(s, "rootmode=") &&
                           !begins_with(s, "user_id=") &&
                           !begins_with(s, "group_id=")) {