Do not pass unsupported mount options to the kernel.
authorNikolaus Rath <Nikolaus@rath.org>
Mon, 8 May 2023 23:12:08 +0000 (16:12 -0700)
committerNikolaus Rath <Nikolaus@rath.org>
Fri, 12 May 2023 22:27:43 +0000 (23:27 +0100)
The filesystem daemon is responsible for implementing eg. st_atime updates, so passing
options like relatime to the kernel results in them being silently ignored. Instead, such
options need to be interpreted (and filtered out) by the filesystem daemon.

include/fuse_lowlevel.h
lib/mount.c

index 6500e2961654a350945342492342dd816703c8b1..9142b1c368e8d7ee85354b0a10162c7f715bce95 100644 (file)
@@ -313,6 +313,12 @@ struct fuse_lowlevel_ops {
         * expected to reset the setuid and setgid bits if the file
         * size or owner is being changed.
         *
+        * This method will not be called to update st_atime or st_ctime implicitly
+        * (eg. after a read() request), and only be called to implicitly update st_mtime
+        * if writeback caching is active. It is the filesystem's responsibility to update
+        * these timestamps when needed, and (if desired) to implement mount options like
+        * `noatime` or `relatime`.
+        *
         * If the setattr was invoked from the ftruncate() system call
         * under Linux kernel versions 2.6.15 or later, the fi->fh will
         * contain the value set by the open method or will be undefined
index 9c233a39dfc170b872e71c665547f7b00aa6ae10..d71e6fc5571904039e9fc948c493bffc5cb8f74d 100644 (file)
@@ -111,15 +111,8 @@ static const struct fuse_opt fuse_mount_opts[] = {
        FUSE_OPT_KEY("async",                   KEY_KERN_FLAG),
        FUSE_OPT_KEY("sync",                    KEY_KERN_FLAG),
        FUSE_OPT_KEY("dirsync",                 KEY_KERN_FLAG),
-       FUSE_OPT_KEY("atime",                   KEY_KERN_FLAG),
        FUSE_OPT_KEY("noatime",                 KEY_KERN_FLAG),
-       FUSE_OPT_KEY("diratime",                KEY_KERN_FLAG),
        FUSE_OPT_KEY("nodiratime",              KEY_KERN_FLAG),
-       FUSE_OPT_KEY("lazytime",                KEY_KERN_FLAG),
-       FUSE_OPT_KEY("nolazytime",              KEY_KERN_FLAG),
-       FUSE_OPT_KEY("relatime",                KEY_KERN_FLAG),
-       FUSE_OPT_KEY("norelatime",              KEY_KERN_FLAG),
-       FUSE_OPT_KEY("strictatime",             KEY_KERN_FLAG),
        FUSE_OPT_KEY("nostrictatime",           KEY_KERN_FLAG),
        FUSE_OPT_END
 };
@@ -158,15 +151,9 @@ static const struct mount_flags mount_flags[] = {
        {"noexec",  MS_NOEXEC,      1},
        {"async",   MS_SYNCHRONOUS, 0},
        {"sync",    MS_SYNCHRONOUS, 1},
-       {"atime",   MS_NOATIME,     0},
        {"noatime", MS_NOATIME,     1},
-       {"diratime",        MS_NODIRATIME,      0},
        {"nodiratime",      MS_NODIRATIME,      1},
-       {"lazytime",        MS_LAZYTIME,        1},
-       {"nolazytime",      MS_LAZYTIME,        0},
-       {"relatime",        MS_RELATIME,        1},
        {"norelatime",      MS_RELATIME,        0},
-       {"strictatime",     MS_STRICTATIME,     1},
        {"nostrictatime",   MS_STRICTATIME,     0},
 #ifndef __NetBSD__
        {"dirsync", MS_DIRSYNC,     1},