Make ioctl prototype conditional on FUSE_USE_VERSION. (#482)
authorBill Zissimopoulos <billziss@navimatics.com>
Tue, 31 Dec 2019 09:58:57 +0000 (01:58 -0800)
committerNikolaus Rath <Nikolaus@rath.org>
Tue, 31 Dec 2019 09:58:57 +0000 (09:58 +0000)
Define FUSE_USE_VERSION < 35 to get old ioctl prototype
with int commands; define FUSE_USE_VERSION >= 35 to get
new ioctl prototype with unsigned int commands.

Fixes #463.

ChangeLog.rst
example/ioctl.c
include/fuse.h
include/fuse_lowlevel.h
lib/meson.build
util/meson.build

index 7087e7182ee8751d8fc660933eb396e1b1a4fc0c..1ca26f4a72074751587b602a470da9bccd14ef37 100644 (file)
@@ -1,3 +1,11 @@
+libfuse 3.10.0 (2019-12-14)
+==========================
+
+* Make ioctl prototype conditional on FUSE_USE_VERSION.
+  Define FUSE_USE_VERSION < 35 to get old ioctl prototype
+  with int commands; define FUSE_USE_VERSION >= 35 to get
+  new ioctl prototype with unsigned int commands.
+
 libfuse 3.9.0 (2019-12-14)
 ==========================
 
index eab3061252e67e5c3fcf00abff3e0d68ec894477..8fdd8f69c7427f955e438d60a66145170f8c0af2 100644 (file)
@@ -22,7 +22,7 @@
  * \include ioctl.c
  */
 
-#define FUSE_USE_VERSION 31
+#define FUSE_USE_VERSION 35
 
 #include <fuse.h>
 #include <stdlib.h>
index 883f6e59fb4333021a650ca78797a459fe3096ee..4522f836f258d7893af83154755d041a0ea04bab 100644 (file)
@@ -680,8 +680,13 @@ struct fuse_operations {
         * Note : the unsigned long request submitted by the application
         * is truncated to 32 bits.
         */
+#if FUSE_USE_VERSION < 35
+       int (*ioctl) (const char *, int cmd, void *arg,
+                     struct fuse_file_info *, unsigned int flags, void *data);
+#else
        int (*ioctl) (const char *, unsigned int cmd, void *arg,
                      struct fuse_file_info *, unsigned int flags, void *data);
+#endif
 
        /**
         * Poll for IO readiness events
@@ -1189,9 +1194,15 @@ int fuse_fs_removexattr(struct fuse_fs *fs, const char *path,
                        const char *name);
 int fuse_fs_bmap(struct fuse_fs *fs, const char *path, size_t blocksize,
                 uint64_t *idx);
+#if FUSE_USE_VERSION < 35
+int fuse_fs_ioctl(struct fuse_fs *fs, const char *path, int cmd,
+                 void *arg, struct fuse_file_info *fi, unsigned int flags,
+                 void *data);
+#else
 int fuse_fs_ioctl(struct fuse_fs *fs, const char *path, unsigned int cmd,
                  void *arg, struct fuse_file_info *fi, unsigned int flags,
                  void *data);
+#endif
 int fuse_fs_poll(struct fuse_fs *fs, const char *path,
                 struct fuse_file_info *fi, struct fuse_pollhandle *ph,
                 unsigned *reventsp);
index 18c6363f07d8e87acd7353d0dba1686272c2e3de..e2b4617b9aaf8059e65ac072fec2f99c7f980829 100644 (file)
@@ -14,7 +14,7 @@
  * Low level API
  *
  * IMPORTANT: you should define FUSE_USE_VERSION before including this
- * header.  To use the newest API define it to 31 (recommended for any
+ * header.  To use the newest API define it to 35 (recommended for any
  * new application).
  */
 
@@ -1018,9 +1018,15 @@ struct fuse_lowlevel_ops {
         * Note : the unsigned long request submitted by the application
         * is truncated to 32 bits.
         */
+#if FUSE_USE_VERSION < 35
+       void (*ioctl) (fuse_req_t req, fuse_ino_t ino, int cmd,
+                      void *arg, struct fuse_file_info *fi, unsigned flags,
+                      const void *in_buf, size_t in_bufsz, size_t out_bufsz);
+#else
        void (*ioctl) (fuse_req_t req, fuse_ino_t ino, unsigned int cmd,
                       void *arg, struct fuse_file_info *fi, unsigned flags,
                       const void *in_buf, size_t in_bufsz, size_t out_bufsz);
+#endif
 
        /**
         * Poll for IO readiness
index 28f0aee52565c401211a5e9f1b710900cbc378b9..98461d8b0c22bdef4a1ec411de292a9ef74c786f 100644 (file)
@@ -37,7 +37,7 @@ libfuse = library('fuse3', libfuse_sources, version: meson.project_version(),
                   soversion: '3', include_directories: include_dirs,
                   dependencies: deps, install: true,
                   link_depends: 'fuse_versionscript',
-                  c_args: [ '-DFUSE_USE_VERSION=34',
+                  c_args: [ '-DFUSE_USE_VERSION=35',
                             '-DFUSERMOUNT_DIR="@0@"'.format(fusermount_path) ],
                   link_args: ['-Wl,--version-script,' + meson.current_source_dir()
                               + '/fuse_versionscript' ])
index 5c8f1b5868011a661d861134a78d81be62c1e7a9..577668fd5800e8b0511097d49f2ea0bfdfc1a96f 100644 (file)
@@ -11,7 +11,7 @@ executable('mount.fuse3', ['mount.fuse.c'],
            link_with: [ libfuse ],
            install: true,
            install_dir: get_option('sbindir'),
-           c_args: '-DFUSE_USE_VERSION=34')
+           c_args: '-DFUSE_USE_VERSION=35')
 
 
 udevrulesdir = get_option('udevrulesdir')