fuse_new(): don't accept options that don't make sense for end-users
authorNikolaus Rath <Nikolaus@rath.org>
Wed, 19 Oct 2016 04:23:22 +0000 (21:23 -0700)
committerNikolaus Rath <Nikolaus@rath.org>
Thu, 20 Oct 2016 22:32:20 +0000 (15:32 -0700)
Several options (use_ino, etc) depend on the file system
implementation. Allowing them to be set from the command line makes no
sense.

doc/mount.fuse.8
example/hello.c
example/passthrough.c
example/passthrough_fh.c
lib/fuse.c
test/test_examples.py

index 69206e7cadee62efdecc11334657647433d7e93d..165b4f78695bab307cc6a5e375c89d181dff6371 100644 (file)
@@ -68,27 +68,10 @@ This option disables flushing the cache of the file contents on every \fBopen\fP
 \fBNOTE\fP: if this option is not specified (and neither \fBdirect_io\fP) data is still cached after the \fBopen\fP(2), so a \fBread\fP(2) system call will not always initiate a read operation.
 .TP
 \fBauto_cache\fP
-This option enables automatic flushing of the data cache on \fBopen\fP(2). The cache will only be flushed if the modification time or the size of the file has changed.
-.TP
-.TP
-\fBdirect_io\fP
-This option disables the use of page cache (file content cache) in the kernel for this filesystem. This has several affects:
-.IP 1.
-Each \fBread\fP(2) or \fBwrite\fP(2) system call will initiate one or more read or write operations, data will not be cached in the kernel.
-.IP 2.
-The return value of the read() and write() system calls will correspond to the return values of the read and write operations. This is useful for example if the file size is not known in advance (before reading it).
-.TP
-\fBhard_remove\fP
-The default behavior is that if an open file is deleted, the file is renamed to a hidden file (\fB.fuse_hiddenXXX\fP), and only removed when the file is finally released.  This relieves the filesystem implementation of having to deal with this problem.  This option disables the hiding behavior, and files are removed immediately in an unlink operation (or in a rename operation which overwrites an existing file).
-
-It is recommended that you not use the hard_remove option. When hard_remove is set, the following libc functions fail on unlinked files (returning errno of \fBENOENT\fP): \fBread\fP(2), \fBwrite\fP(2), \fBfsync\fP(2), \fBclose\fP(2), \fBf*xattr\fP(2), \fBftruncate\fP(2), \fBfstat\fP(2), \fBfchmod\fP(2), \fBfchown\fP(2)
-.TP
-\fBuse_ino\fP
-Honor the \fIst_ino\fP field in kernel functions \fBgetattr()\fP and \fBfill_dir()\fP. This value is used to fill in the
-\fIst_ino\fP field in the \fBstat\fP(2), \fBlstat\fP(2), \fBfstat\fP(2) functions and the \fId_ino\fP field in the \fBreaddir\fP(2) function. The filesystem does not have to guarantee uniqueness, however some applications rely on this value being unique for the whole filesystem.
-.TP
-\fBreaddir_ino\fP
-If \fBuse_ino\fP option is not given, still try to fill in the \fId_ino\fP field in \fBreaddir\fP(2). If the name was previously looked up, and is still in the cache, the inode number found there will be used. Otherwise it will be set to \fB-1\fP.  If \fBuse_ino\fP option is given, this option is ignored.
+This option is an alternative to
+`kernel_cache`. Instead of unconditionally keeping cached data, the
+cached data is invalidated on \fBopen\fP(2) if if the modification
+time or the size of the file has changed since it was last opened.
 .TP
 \fBumask=M\fP
 Override the permission bits in \fIst_mode\fP set by the filesystem. The resulting permission bits are the ones missing from the given umask value.  The value is given in octal representation.
@@ -111,13 +94,6 @@ The timeout in seconds for which file/directory attributes are cached.  The defa
 \fBac_attr_timeout=T\fP
 The timeout in seconds for which file attributes are cached for the purpose of checking if \fBauto_cache\fP should flush the file data on  open. The default is the value of \fBattr_timeout\fP
 .TP
-\fBintr\fP
-Allow requests to be interrupted.  Turning on this option may result in unexpected behavior, if the filesystem does not support request interruption.
-.TP
-\fBintr_signal=NUM\fP
-Specify which signal number to send to the filesystem when a request
-is interrupted.  The default is hardcoded to USR1.
-.TP
 \fBnoforget\fP
 .TP
 \fBremember=T\fP
index c587d729c9c317ca18d8eb401199063911302cfe..b7ce45bfe37055c9013e057de16ee4e11858787c 100644 (file)
@@ -68,6 +68,14 @@ static const struct fuse_opt option_spec[] = {
        FUSE_OPT_END
 };
 
+static void *hello_init(struct fuse_conn_info *conn,
+                       struct fuse_config *cfg)
+{
+       (void) conn;
+       cfg->kernel_cache = 1;
+       return NULL;
+}
+
 static int hello_getattr(const char *path, struct stat *stbuf,
                         struct fuse_file_info *fi)
 {
@@ -137,6 +145,7 @@ static int hello_read(const char *path, char *buf, size_t size, off_t offset,
 }
 
 static struct fuse_operations hello_oper = {
+       .init           = hello_init,
        .getattr        = hello_getattr,
        .readdir        = hello_readdir,
        .open           = hello_open,
index d3d0fde6f9ea05c0026660da013776e8de8d2199..403432740bd0087cd99411d1bb00054393311f2a 100644 (file)
 #include <sys/xattr.h>
 #endif
 
+static void *xmp_init(struct fuse_conn_info *conn,
+                     struct fuse_config *cfg)
+{
+       (void) conn;
+       cfg->use_ino = 1;
+       return NULL;
+}
+
 static int xmp_getattr(const char *path, struct stat *stbuf,
                       struct fuse_file_info *fi)
 {
@@ -401,6 +409,7 @@ static int xmp_removexattr(const char *path, const char *name)
 #endif /* HAVE_SETXATTR */
 
 static struct fuse_operations xmp_oper = {
+       .init           = xmp_init,
        .getattr        = xmp_getattr,
        .access         = xmp_access,
        .readlink       = xmp_readlink,
index 35d909f018187821c42c3639c6a6c1d95d311775..f74940d93d513d56d480f6335085e5d771f40e63 100644 (file)
 #endif
 #include <sys/file.h> /* flock(2) */
 
+static void *xmp_init(struct fuse_conn_info *conn,
+                     struct fuse_config *cfg)
+{
+       (void) conn;
+       cfg->use_ino = 1;
+       return NULL;
+}
+
 static int xmp_getattr(const char *path, struct stat *stbuf,
                        struct fuse_file_info *fi)
 {
@@ -544,6 +552,7 @@ static int xmp_flock(const char *path, struct fuse_file_info *fi, int op)
 }
 
 static struct fuse_operations xmp_oper = {
+       .init           = xmp_init,
        .getattr        = xmp_getattr,
        .access         = xmp_access,
        .readlink       = xmp_readlink,
index f469378a72f88301bf315185e4809134e6f3cd7e..1595cc86f427e7e07ea92f3060a6742ff0851ce0 100644 (file)
@@ -4360,10 +4360,6 @@ static const struct fuse_opt fuse_lib_opts[] = {
        FUSE_OPT_KEY("-d",                    FUSE_OPT_KEY_KEEP),
        FUSE_LIB_OPT("debug",                 debug, 1),
        FUSE_LIB_OPT("-d",                    debug, 1),
-       FUSE_LIB_OPT("hard_remove",           hard_remove, 1),
-       FUSE_LIB_OPT("use_ino",               use_ino, 1),
-       FUSE_LIB_OPT("readdir_ino",           readdir_ino, 1),
-       FUSE_LIB_OPT("direct_io",             direct_io, 1),
        FUSE_LIB_OPT("kernel_cache",          kernel_cache, 1),
        FUSE_LIB_OPT("auto_cache",            auto_cache, 1),
        FUSE_LIB_OPT("noauto_cache",          auto_cache, 0),
@@ -4380,8 +4376,6 @@ static const struct fuse_opt fuse_lib_opts[] = {
        FUSE_LIB_OPT("negative_timeout=%lf",  negative_timeout, 0),
        FUSE_LIB_OPT("noforget",              remember, -1),
        FUSE_LIB_OPT("remember=%u",           remember, 0),
-       FUSE_LIB_OPT("intr",                  intr, 1),
-       FUSE_LIB_OPT("intr_signal=%d",        intr_signal, 0),
        FUSE_LIB_OPT("modules=%s",            modules, 0),
        FUSE_OPT_END
 };
index 8868a98ebb2c669dd821424d8d9864cac773c398..5c611a184a7d842a45aa631cf15a4804fdbe5734 100755 (executable)
@@ -67,8 +67,6 @@ def test_passthrough(tmpdir, name):
     cmdline = base_cmdline + \
               [ pjoin(basename, 'example', name),
                 '-f', mnt_dir ]
-    if not name.endswith('_ll'):
-        cmdline += [ '-o', 'use_ino,readdir_ino,kernel_cache' ]
     mount_process = subprocess.Popen(cmdline)
     try:
         wait_for_mount(mount_process, mnt_dir)