qemu-gpiodev/libfuse.git
4 years agoReleased 3.9.2 fuse-3.9.2
Nikolaus Rath [Fri, 12 Jun 2020 11:12:50 +0000 (12:12 +0100)]
Released 3.9.2

4 years agofix format in test (#515)
Rosen Penev [Fri, 15 May 2020 18:34:31 +0000 (11:34 -0700)]
fix format in test (#515)

Fixes warning under 32-bit.

4 years agoAvoid closing se->fd twice in fuse_lowlevel.c (#516)
Fabian Vogt [Fri, 15 May 2020 18:32:10 +0000 (20:32 +0200)]
Avoid closing se->fd twice in fuse_lowlevel.c (#516)

If fuse_session_unmount is called before fuse_session_destroy, both
would try to close(se->fd). Avoid that by resetting it in
fuse_session_unmount.

4 years agopassthrough_ll: remove symlink fallbacks (#514)
Miklos Szeredi [Thu, 14 May 2020 19:17:50 +0000 (21:17 +0200)]
passthrough_ll: remove symlink fallbacks (#514)

* passthrough_ll/hp: remove symlink fallbacks

Path lookup in the kernel has special rules for looking up magic symlinks
under /proc.  If a filesystem operation is instructed to follow symlinks
(e.g. via AT_SYMLINK_FOLLOW or lack of AT_SYMLINK_NOFOLLOW), and the final
component is such a proc symlink, then the target of the magic symlink is
used for the operation, even if the target itself is a symlink.  I.e. path
lookup is always terminated after following a final magic symlink.

I was erronously assuming that in the above case the target symlink would
also be followed, and so workarounds were added for a couple of operations
to handle the symlink case.  Since the symlink can be handled simply by
following the proc symlink, these workardouds are not needed.

Signed-off-by: Miklos Szeredi <mszeredi@redhat.com>
Co-authored-by: Miklos Szeredi <mszeredi@redhat.com>
4 years agoDo not require C++ compiler for building
Fabrice Fontaine [Mon, 20 Apr 2020 19:20:19 +0000 (21:20 +0200)]
Do not require C++ compiler for building

Fixes:
 - http://autobuild.buildroot.org/results/a6e64213f2910b2b81e79cb1e96e558413d7f70a

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
5 years agoReleased 3.9.1 fuse-3.9.1
Nikolaus Rath [Thu, 19 Mar 2020 20:00:41 +0000 (20:00 +0000)]
Released 3.9.1

5 years agoFix issue preventing using splice with reads (#505)
Jean-Yves VET [Fri, 13 Mar 2020 19:02:41 +0000 (20:02 +0100)]
Fix issue preventing using splice with reads (#505)

Context: SPLICE_WRITE is not used with regular buffers
(i.e. when they are not file-descriptor backed buffers).
There is a bug which assumes file descriptors are used.
If the amount of data associated with those FD is lower
than twice the page size, SPLICE_WRITE is not utilized.
With regular buffers the aggregated size was always 0.
Because vmsplice (splice user pages to/from a pipe) is
called before splice in fuse_lowlevel.c, regular buffers
would also work with splice.

This patch prevents to fallback to non-splice enabled
copies when itheir is no FD involved.

5 years agoAlign help options (#500)
Andrew Gaul [Fri, 13 Mar 2020 16:48:09 +0000 (01:48 +0900)]
Align help options (#500)

5 years agoState GPL version in comment (#485)
Dr. David Alan Gilbert [Fri, 13 Mar 2020 16:46:44 +0000 (16:46 +0000)]
State GPL version in comment (#485)

IN a bunch of comments we say 'under the terms of the GNU GPL', make
it clear this is GPLv2 (as LICENSE says).

Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
5 years agopassthrough_ll: Remove unneeded variable assignment (#501)
philmd [Mon, 24 Feb 2020 21:42:41 +0000 (22:42 +0100)]
passthrough_ll: Remove unneeded variable assignment (#501)

Fix warning reported by Clang static code analyzer:

  example/passthrough_ll.c:390:5: warning: Value stored to 'saverr' is never read
      saverr = ENOMEM;
      ^        ~~~~~~

Fixes: 4a92a82f2e2
Reported-by: Clang Static Analyzer
Reviewed-by: Ján Tomko <jtomko@redhat.com>
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
5 years agoTravis-CI: Fix ImportError: No module named 'zipp' (#502)
philmd [Mon, 24 Feb 2020 21:41:28 +0000 (22:41 +0100)]
Travis-CI: Fix ImportError: No module named 'zipp' (#502)

Upgrade pip to fix [*]:

  [66/66] Linking target example/passthrough_hp.
  Traceback (most recent call last):
    File "/usr/lib/python3.5/runpy.py", line 174, in _run_module_as_main
      mod_name, mod_spec, code = _get_module_details(mod_name, _Error)
    File "/usr/lib/python3.5/runpy.py", line 133, in _get_module_details
      return _get_module_details(pkg_main_name, error)
    File "/usr/lib/python3.5/runpy.py", line 109, in _get_module_details
      __import__(pkg_name)
    File "/usr/local/lib/python3.5/dist-packages/pytest/__init__.py", line 6, in <module>
      from _pytest.assertion import register_assert_rewrite
    File "/usr/local/lib/python3.5/dist-packages/_pytest/assertion/__init__.py", line 7, in <module>
      from _pytest.assertion import rewrite
    File "/usr/local/lib/python3.5/dist-packages/_pytest/assertion/rewrite.py", line 24, in <module>
      from _pytest.assertion import util
    File "/usr/local/lib/python3.5/dist-packages/_pytest/assertion/util.py", line 14, in <module>
      import _pytest._code
    File "/usr/local/lib/python3.5/dist-packages/_pytest/_code/__init__.py", line 2, in <module>
      from .code import Code  # noqa
    File "/usr/local/lib/python3.5/dist-packages/_pytest/_code/code.py", line 28, in <module>
      import pluggy
    File "/usr/local/lib/python3.5/dist-packages/pluggy/__init__.py", line 16, in <module>
      from .manager import PluginManager, PluginValidationError
    File "/usr/local/lib/python3.5/dist-packages/pluggy/manager.py", line 11, in <module>
      import importlib_metadata
    File "/usr/local/lib/python3.5/dist-packages/importlib_metadata/__init__.py", line 9, in <module>
      import zipp
  ImportError: No module named 'zipp'
  The command "test/travis-build.sh" exited with 1.

[*] https://travis-ci.org/libfuse/libfuse/builds/651523034

Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
5 years agoInclude limits.h because of PATH_MAX usage. (#498)
maxice8 [Tue, 4 Feb 2020 14:57:25 +0000 (15:57 +0100)]
Include limits.h because of PATH_MAX usage. (#498)

Fixes build with musl libc on Alpine Linux.

5 years agoUpdate comment for the copy_file_range operation (#497)
Florian Weimer [Fri, 31 Jan 2020 18:38:41 +0000 (19:38 +0100)]
Update comment for the copy_file_range operation (#497)

copy_file_range was first implemented with copy-based emulation in
glibc 2.27, but the emulation was subsequently removed again because
correct emulation depends on why the application attempted to make a
copy.  Therefore, file systems cannot rely on low-level userspace
performing emulation.

5 years agoexamples: mark ops variables constant (#496)
zsugabubus [Thu, 30 Jan 2020 16:17:25 +0000 (16:17 +0000)]
examples: mark ops variables constant (#496)

5 years agoRemove trailing comma in enums (#494)
zsugabubus [Mon, 27 Jan 2020 16:13:11 +0000 (16:13 +0000)]
Remove trailing comma in enums (#494)

They are illegal in C89/90.

5 years agoFixes 477, optional src_dir in tst_(rmdir,unlink) (#493)
Anthony Rebello [Sat, 25 Jan 2020 10:17:09 +0000 (04:17 -0600)]
Fixes 477, optional src_dir in tst_(rmdir,unlink) (#493)

tst_rmdir and tst_unlink now pass for passthrough_hp.

Previously, tst_rmdir and tst_unlink created the directory / file
using src_dir, causing the test to fail as the cache was stale.
Now, the src_dir is optional. When cache is enabled, tst_rmdir
and tst_unlink do not provide a src_dir, forcing the test to
use mnt_dir itself.

5 years agopassthrough_ll: Use cache_readdir for directory open (#492)
Misono Tomohiro [Fri, 24 Jan 2020 15:53:32 +0000 (00:53 +0900)]
passthrough_ll: Use cache_readdir for directory open (#492)

Upstreamed from:
  https://www.redhat.com/archives/virtio-fs/2020-January/msg00106.html

Since keep_cache(FOPEN_KEEP_CACHE) has no effect for directory as
described in fuse_common.h, use cache_readdir(FOPEN_CACHE_DIR) for
diretory open when cache=always mode.

Signed-off-by: Misono Tomohiro <misono.tomohiro@jp.fujitsu.com>
5 years agopassthrough_ll: pass correct errno to fuse_reply_err()
Dr. David Alan Gilbert [Mon, 6 Jan 2020 20:32:51 +0000 (20:32 +0000)]
passthrough_ll: pass correct errno to fuse_reply_err()

fuse_reply_err() expects the error code, not its negative.

Upstreamed from https://www.redhat.com/archives/virtio-fs/2020-January/msg00000.html. Original commit message:

lo_copy_file_range() passes -errno to fuse_reply_err() and then fuse_reply_err()
changes it to errno again, so that subsequent fuse_send_reply_iov_nofree() catches
the wrong errno.(i.e. reports "fuse: bad error value: ...").

Make fuse_send_reply_iov_nofree() accept the correct -errno by passing errno
directly in lo_copy_file_range().

Signed-off-by: Xiao Yang <yangx.jy@cn.fujitsu.com>
Reviewed-by: Eryu Guan <eguan@linux.alibaba.com>
Co-authored-by: Xiao Yang <ice_yangxiao@163.com>
5 years agoFixed up ChangeLog.rst
Nikolaus Rath [Thu, 2 Jan 2020 11:08:33 +0000 (11:08 +0000)]
Fixed up ChangeLog.rst

Last two changes were not part of the released version.

5 years agoFixed memory leak in fuse_session_new()
Bill Zissimopoulos [Thu, 2 Jan 2020 11:08:03 +0000 (03:08 -0800)]
Fixed memory leak in fuse_session_new()

5 years agoFixed an issue with the linker version script. (#483)
Bill Zissimopoulos [Thu, 2 Jan 2020 11:06:18 +0000 (03:06 -0800)]
Fixed an issue with the linker version script. (#483)

Fixes #467.

5 years agoStyle: Fix an indention in comments (#480)
Changli Gao [Tue, 31 Dec 2019 10:01:26 +0000 (18:01 +0800)]
Style: Fix an indention in comments (#480)

5 years agoBump FUSE_MINOR_VERSION
Nikolaus Rath [Tue, 31 Dec 2019 09:59:28 +0000 (09:59 +0000)]
Bump FUSE_MINOR_VERSION

This was forgotten over several releases.

5 years agoMake ioctl prototype conditional on FUSE_USE_VERSION. (#482)
Bill Zissimopoulos [Tue, 31 Dec 2019 09:58:57 +0000 (01:58 -0800)]
Make ioctl prototype conditional on FUSE_USE_VERSION. (#482)

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.

5 years agoReleased 3.9.0 fuse-3.9.0
Nikolaus Rath [Sat, 14 Dec 2019 10:39:13 +0000 (10:39 +0000)]
Released 3.9.0

5 years agoKill off some proto_major < 6 checks (#476)
Dr. David Alan Gilbert [Fri, 29 Nov 2019 09:14:28 +0000 (09:14 +0000)]
Kill off some proto_major < 6 checks (#476)

fuse_init already refuses to start if we're on major < 7 ,
so we can kill off checks for old major versions.

Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
5 years agoAdded support for FUSE_EXPLICIT_INVAL_DATA to enable (#474)
Albert Chen [Wed, 27 Nov 2019 09:36:30 +0000 (01:36 -0800)]
Added support for FUSE_EXPLICIT_INVAL_DATA to enable (#474)

5 years agofix memleak in cuse_lowlevel_setup (#472)
Tomasz Kulasek [Wed, 20 Nov 2019 11:43:52 +0000 (12:43 +0100)]
fix memleak in cuse_lowlevel_setup (#472)

Local variable args is not freed on cuse_lowlevel_setup success.

Signed-off-by: Tomasz Kulasek <tomaszx.kulasek@intel.com>
5 years agoInvoke cleanup() with right arguments.
Nikolaus Rath [Wed, 20 Nov 2019 11:38:33 +0000 (11:38 +0000)]
Invoke cleanup() with right arguments.

This currently causes hangs if the test fails, cf issue #459.

5 years agoReleased 3.8.0 fuse-3.8.0
Nikolaus Rath [Sun, 3 Nov 2019 09:53:39 +0000 (09:53 +0000)]
Released 3.8.0

5 years agoImplement lseek operation (#457)
Yuri Per [Sun, 3 Nov 2019 09:44:31 +0000 (11:44 +0200)]
Implement lseek operation (#457)

5 years agoUse the -o intr mount option on FreeBSD (#462)
Alan Somers [Sun, 3 Nov 2019 09:44:12 +0000 (02:44 -0700)]
Use the -o intr mount option on FreeBSD (#462)

FUSE file systems normally indicate their interruptibility by returning
ENOSYS to the first FUSE_INTERRUPT operation.  But that causes two
problems for file systems that aren't interruptible:

1) A process may block on a signal, even if another thread could've
handled the signal.  The kernel must know whether the FUSE thread is
interruptible before deciding which thread should receive a signal.

2) The protocol allows a FUSE daemon to simply ignore FUSE_INTERRUPT
operations.  From the kernel's point of view, that is indistinguishable
from a FUSE_INTERRUPT operation arriving after the original operation
had already completed.  Thus, the kernel can't interpret an ignored
FUSE_INTERRUPT as an indication that the daemon is non-interruptible.

With the -o nointr mount option, no FUSE_INTERRUPT operations will ever
be sent.  Most FUSE file systems should require no modifications to take
advantage of this mount option.

5 years agopassthrough_ll: drop lo_dirp->fd field (#464)
Stefan Hajnoczi [Sun, 3 Nov 2019 09:43:43 +0000 (10:43 +0100)]
passthrough_ll: drop lo_dirp->fd field (#464)

fdopendir(3) takes ownership of the file descriptor.  The presence of
the lo_dirp->fd field could lead to someone incorrectly adding a
close(d->fd) cleanup call in the future.

Do not store the file descriptor in struct lo_dirp since it is unused.

Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
5 years agoUpdate README.md (#465)
Emily Herbert [Thu, 24 Oct 2019 21:46:19 +0000 (17:46 -0400)]
Update README.md (#465)

5 years agoReleased 3.7.0 fuse-3.7.0
Nikolaus Rath [Fri, 27 Sep 2019 19:01:33 +0000 (20:01 +0100)]
Released 3.7.0

5 years agoWhitelist UFSD (#451)
tenzap [Sun, 15 Sep 2019 15:56:56 +0000 (17:56 +0200)]
Whitelist UFSD (#451)

5 years agopassthrough_ll: use fuse_log() instead of err()/errx()
Stefan Hajnoczi [Tue, 10 Sep 2019 10:45:43 +0000 (12:45 +0200)]
passthrough_ll: use fuse_log() instead of err()/errx()

Send everything through fuse_log() instead of writing directly to
stderr.

Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
5 years agopassthrough_ll: use fuse_log()
Stefan Hajnoczi [Tue, 10 Sep 2019 10:39:34 +0000 (12:39 +0200)]
passthrough_ll: use fuse_log()

Make use of fuse_log() instead of printing directly to stderr.  This
demonstrates unified logging and also caught the fact that I forgot to
add fuse_log APIs to lib/fuse_versionscript.  So it's basically a test
case :).

Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
5 years agolog: move fuse_log() to the public header file
Stefan Hajnoczi [Tue, 10 Sep 2019 10:36:56 +0000 (12:36 +0200)]
log: move fuse_log() to the public header file

Applications may wish to call fuse_log() for unified logging.  This way
they don't need to define their own wrappers to invoke the log message
handler function installed by fuse_set_log_func().

Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
5 years agopassthrough_ll: fix fallocate variant ifdefs (#449)
Dr. David Alan Gilbert [Mon, 9 Sep 2019 09:14:02 +0000 (10:14 +0100)]
passthrough_ll: fix fallocate variant ifdefs (#449)

If fallocate isn't available we incorrectly check for the value of
HAVE_POSIX_FALLOCATE rather than it being defined.
We also fail to initialise 'err' in the case where neither are defined.

Fixes: 5fc562c90d7925963467 ("Add fallocate and use it instead of ...")
Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
5 years agoIntroduce callback for logging
Stefan Hajnoczi [Wed, 4 Sep 2019 14:59:18 +0000 (15:59 +0100)]
Introduce callback for logging

Introduce an API for custom log handler functions.  This allows libfuse
applications to send messages to syslog(3) or other logging systems.
See include/fuse_log.h for details.

Convert libfuse from fprintf(stderr, ...) to log_fuse(level, ...).  Most
messages are error messages with FUSE_LOG_ERR log level.  There are also
some debug messages which now use the FUSE_LOG_DEBUG log level.

Note that lib/mount_util.c is used by both libfuse and fusermount3.
Since fusermount3 does not link against libfuse, we cannot call
fuse_log() from lib/mount_util.c.  This file will continue to use
fprintf(stderr, ...) until someone figures out how to split it up.

Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
5 years agoAvoid gcc 9.1 strncpy(3) warnings (#447)
Stefan Hajnoczi [Thu, 29 Aug 2019 19:28:29 +0000 (20:28 +0100)]
Avoid gcc 9.1 strncpy(3) warnings (#447)

Recent GCC releases have warnings related to common strncpy(3) bugs.
These warnings can be avoided by explicitly NUL-terminating the buffer
or using memcpy(3) when the intention is to copy just the characters
without the NUL terminator.

This commit fixes the following warnings:

  [1/27] Compiling C object 'test/9f86d08@@test_syscalls@exe/test_syscalls.c.o'.
  In function ‘test_socket’,
      inlined from ‘main’ at ../test/test_syscalls.c:1899:9:
  ../test/test_syscalls.c:1760:2: warning: ‘strncpy’ output may be truncated copying 108 bytes from a string of length 1023 [-Wstringop-truncation]
   1760 |  strncpy(su.sun_path, testsock, sizeof(su.sun_path));
        |  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  [2/27] Compiling C object 'lib/76b5a35@@fuse3@sha/fuse.c.o'.
  ../lib/fuse.c: In function ‘add_name’:
  ../lib/fuse.c:968:2: warning: ‘strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation]
    968 |  strncpy(s, name, len);
        |  ^~~~~~~~~~~~~~~~~~~~~
  ../lib/fuse.c:944:15: note: length computed here
    944 |  size_t len = strlen(name);
        |               ^~~~~~~~~~~~
  [3/27] Compiling C object 'lib/76b5a35@@fuse3@sha/fuse_lowlevel.c.o'.
  ../lib/fuse_lowlevel.c: In function ‘fuse_add_direntry’:
  ../lib/fuse_lowlevel.c:288:2: warning: ‘strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation]
    288 |  strncpy(dirent->name, name, namelen);
        |  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  ../lib/fuse_lowlevel.c:276:12: note: length computed here
    276 |  namelen = strlen(name);
        |            ^~~~~~~~~~~~
  ../lib/fuse_lowlevel.c: In function ‘fuse_add_direntry_plus’:
  ../lib/fuse_lowlevel.c:381:2: warning: ‘strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation]
    381 |  strncpy(dirent->name, name, namelen);
        |  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  ../lib/fuse_lowlevel.c:366:12: note: length computed here
    366 |  namelen = strlen(name);
        |            ^~~~~~~~~~~~

Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
5 years agoShorten comment.
Nikolaus Rath [Fri, 23 Aug 2019 19:58:54 +0000 (20:58 +0100)]
Shorten comment.

5 years agoImprove description of READDIRPLUS_AUTO.
Nikolaus Rath [Sat, 13 Jul 2019 00:58:59 +0000 (17:58 -0700)]
Improve description of READDIRPLUS_AUTO.

5 years agoClarify bitfield padding issue (#445)
AsumFace [Fri, 23 Aug 2019 19:58:06 +0000 (21:58 +0200)]
Clarify bitfield padding issue (#445)

* Clarify bitfield padding issue

* Add a more elaborate note to fuse_file_info

5 years agofuse-lowlevel: set pipe size to max (#438)
Giuseppe Scrivano [Tue, 23 Jul 2019 19:52:16 +0000 (21:52 +0200)]
fuse-lowlevel: set pipe size to max (#438)

on failure to set the pipe size, set it to the maximum allowed by the
kernel.

If the first request required more than the maximum allowed, the
can_grow flag would be reset thus preventing any further resize.

Grow the pipe to the maximum allowed to increase the likelihood of
using splice for successive requests instead of falling back to
read/write.

Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
5 years agoSync fuse_kernel.h with Linux 5.2 (#433)
Kirill Smelkov [Tue, 9 Jul 2019 20:54:09 +0000 (23:54 +0300)]
Sync fuse_kernel.h with Linux 5.2 (#433)

5 years agoReleased 3.6.2 fuse-3.6.2
Nikolaus Rath [Tue, 9 Jul 2019 12:36:50 +0000 (05:36 -0700)]
Released 3.6.2

5 years agoDo not run passthrough test when caching is active.
Nikolaus Rath [Tue, 9 Jul 2019 12:29:49 +0000 (05:29 -0700)]
Do not run passthrough test when caching is active.

Readdir caching means that direct modifications to the source
directory will not be seen immediately, so the test becomes flaky.

Fixes: #416.
5 years agoInstall init script in /etc/ instead of $sysconfdir
Nikolaus Rath [Tue, 9 Jul 2019 12:13:50 +0000 (05:13 -0700)]
Install init script in /etc/ instead of $sysconfdir

sysconfdir defaults to /usr/local/etc which is almost always the wrong
choice.

Fixes: #427
5 years agotest_cuse: fix runtime error
Nikolaus Rath [Fri, 5 Jul 2019 10:03:31 +0000 (11:03 +0100)]
test_cuse: fix runtime error

We are no longer using the capfd mechanism.

5 years agoFix output checking in test cases
Nikolaus Rath [Thu, 4 Jul 2019 20:20:41 +0000 (21:20 +0100)]
Fix output checking in test cases

py.test's capture plugin does not work reliably when used by
other fixtures. Therefore, implement our own version.

5 years agoAdd build option to skip steps requiring root permissions
DrDaveD [Thu, 4 Jul 2019 08:01:19 +0000 (03:01 -0500)]
Add build option to skip steps requiring root permissions

5 years agoFix build with IGNORE_MTAB (#425)
Michael Forney [Sat, 15 Jun 2019 10:16:45 +0000 (03:16 -0700)]
Fix build with IGNORE_MTAB (#425)

chdir_to_parent and check_is_mount are used by should_auto_mount, added
in fuse-3.3.0, regardless of whether IGNORE_MTAB is defined.

5 years agoReleased 3.6.1 fuse-3.6.1
Nikolaus Rath [Thu, 13 Jun 2019 14:25:07 +0000 (15:25 +0100)]
Released 3.6.1

5 years agoReleased 3.6.0 fuse-3.6.0
Nikolaus Rath [Thu, 13 Jun 2019 12:01:10 +0000 (13:01 +0100)]
Released 3.6.0

5 years agofuse_lowlevel: Add max_pages support (#384)
scosu [Thu, 13 Jun 2019 11:59:10 +0000 (13:59 +0200)]
fuse_lowlevel: Add max_pages support (#384)

Starting with kernel version 4.20 fuse supports a new property
'max_pages' which is the maximum number of pages that can be used per
request. This can be set via an argument during initialization.
This new property allows writes to be larger than 128k.

This patch sets the property if the matching capability is set
(FUSE_MAX_PAGES). It will also set max_write to 1MiB. Filesystems have
the possibility to decrease this size by setting max_write to a smaller
size. The max_pages and bufsize fields are adjusted accordingly.

Cc: Constantine Shulyupin <const@MakeLinux.com>
Signed-off-by: Markus Pargmann <scosu@quobyte.com>
5 years agoAvoid pointer arithmetic with `void *`
Michael Forney [Tue, 4 Jun 2019 19:33:17 +0000 (12:33 -0700)]
Avoid pointer arithmetic with `void *`

The pointer operand to the binary `+` operator must be to a complete
object type. Since we are working with byte sizes, use `char *` instead.

5 years agoDon't return expression in function returning void
Michael Forney [Tue, 4 Jun 2019 19:30:04 +0000 (12:30 -0700)]
Don't return expression in function returning void

This is a constraint violation in ISO C[0].

[0] http://port70.net/~nsz/c/c11/n1570.html#6.8.6.4p1

5 years agoDon't omit second operand to `?` operator
Michael Forney [Tue, 4 Jun 2019 19:26:38 +0000 (12:26 -0700)]
Don't omit second operand to `?` operator

This is a GNU C extension.

5 years agoRemove incorrect comment about fuse_entry_param.generation (#420)
Alan Somers [Fri, 24 May 2019 07:54:42 +0000 (01:54 -0600)]
Remove incorrect comment about fuse_entry_param.generation (#420)

A comment said that fuse_entry_param.generation must be non-zero.
However, I can't find anything in the kernel that requires that, and
real-world file systems don't seem to follow that advice, either.

5 years agopassthrough: fix unix-domain sockets on FreeBSD (#413)
Alan Somers [Wed, 15 May 2019 20:35:57 +0000 (14:35 -0600)]
passthrough: fix unix-domain sockets on FreeBSD (#413)

FreeBSD doesn't allow creating sockets using mknod(2). Instead, one has to use socket(2)
and bind(2).  Add appropriate logic to the examples and add a test case.

5 years agoFix includes of non-system headers.
Nikolaus Rath [Sun, 12 May 2019 10:00:15 +0000 (11:00 +0100)]
Fix includes of non-system headers.

Fixes: #415.
5 years agoAdded new example filesystem
Nikolaus Rath [Sun, 5 May 2019 17:11:03 +0000 (13:11 -0400)]
Added new example filesystem

passthrough_hp puts emphasis and performance and correctness, rather
than simplicity.

5 years agoadd defines for missing SECBITs on older kernels (#409)
DrDaveD [Sun, 5 May 2019 17:36:14 +0000 (12:36 -0500)]
add defines for missing SECBITs on older kernels (#409)

5 years agoFixed type of ioctl command parameter.
Nikolaus Rath [Sun, 5 May 2019 17:32:59 +0000 (13:32 -0400)]
Fixed type of ioctl command parameter.

5 years agoFixed permissions.
Nikolaus Rath [Fri, 3 May 2019 21:45:29 +0000 (14:45 -0700)]
Fixed permissions.

5 years agoFixed Cirrus Config (#405)
Fedor Korotkov [Wed, 1 May 2019 15:19:11 +0000 (11:19 -0400)]
Fixed Cirrus Config (#405)

5 years agoAdd CI for FreeBSD (#404)
Alan Somers [Wed, 1 May 2019 15:04:26 +0000 (09:04 -0600)]
Add CI for FreeBSD (#404)

Fixes #403

5 years agoAdded issue template.
Nikolaus Rath [Tue, 30 Apr 2019 13:14:58 +0000 (06:14 -0700)]
Added issue template.

5 years agoAdded information about development status.
Nikolaus Rath [Mon, 29 Apr 2019 18:55:56 +0000 (11:55 -0700)]
Added information about development status.

5 years agoAdd fallocate and use it instead of posix_fallocate if possible (#398)
Liu Bo [Thu, 18 Apr 2019 08:55:42 +0000 (01:55 -0700)]
Add fallocate and use it instead of posix_fallocate if possible (#398)

fuse.ko has supported FALLOC_FL_KEEP_SIZE and FALLOC_FL_PUNCH_HOLE at this
moment and more modes may be supported in the future.

fallocate(2) supports modes while posix_fallocate(2) does not, so this
makes lo_fallocate use fallocate(2) instead.

Signed-off-by: Liu Bo <bo.liu@linux.alibaba.com>
5 years agoReleased 3.5.0 fuse-3.5.0
Nikolaus Rath [Tue, 16 Apr 2019 18:46:20 +0000 (19:46 +0100)]
Released 3.5.0

5 years agoAdd documentation for opting out of opendir and releasedir (#391)
Chad Austin [Tue, 16 Apr 2019 18:44:59 +0000 (11:44 -0700)]
Add documentation for opting out of opendir and releasedir (#391)

5 years agoBump minor version
Nikolaus Rath [Sun, 7 Apr 2019 14:05:00 +0000 (15:05 +0100)]
Bump minor version

cache_readdir flag is a new feature.

5 years agoAdd support for in-kernel readdir caching.
Nikolaus Rath [Sat, 6 Apr 2019 17:34:57 +0000 (18:34 +0100)]
Add support for in-kernel readdir caching.

Fixes: #394.
5 years agoSynchronize fuse_kernel.h with current kernel master.
Nikolaus Rath [Sat, 6 Apr 2019 16:57:44 +0000 (17:57 +0100)]
Synchronize fuse_kernel.h with current kernel 

5 years agoDelete FUSE_FSYNC_FDATASYNC
Nikolaus Rath [Sat, 6 Apr 2019 16:56:14 +0000 (17:56 +0100)]
Delete FUSE_FSYNC_FDATASYNC

This constant is not defined in the kernel, so it will be lost when
fuse_kernel.h is not synchronized. Instead, the kernel just passes a
flag value of "1", so for now we also use a literal in userspace.

5 years agoVarious documentation improvements
Alan Somers [Thu, 4 Apr 2019 17:04:57 +0000 (11:04 -0600)]
Various documentation improvements

See issue #389 for some related discussions.

6 years agoWhitelist smb2 (#392)
Peter Lemenkov [Wed, 3 Apr 2019 20:43:48 +0000 (22:43 +0200)]
Whitelist smb2 (#392)

See also https://bugzilla.redhat.com/1694552#c7
Signed-off-by: Peter Lemenkov <lemenkov@gmail.com>
6 years agoDefined the (*ioctl)() commands as unsigned int (#381)
Jean-Pierre André [Mon, 11 Mar 2019 17:35:23 +0000 (18:35 +0100)]
Defined the (*ioctl)() commands as unsigned int (#381)

Instead of the Posix ioctl(2) command, Linux uses its own variant of ioctl()
in which the commands are requested as "unsigned long" and truncated to
32 bits by the fuse kernel module. Transmitting the commands to user space
file systems as "unsigned int" is a workaround for processing ioctl()
commands which do not fit into a signed int.

6 years agoDefine ALLPERMS for musl libc systems. (#379)
maxice8 [Mon, 11 Mar 2019 17:32:45 +0000 (14:32 -0300)]
Define ALLPERMS for musl libc systems. (#379)

6 years agoImprove documentation for the flush method (#378)
Alan Somers [Sun, 10 Mar 2019 19:35:30 +0000 (13:35 -0600)]
Improve documentation for the flush method (#378)

Fixes: #373
6 years agoReleased 3.4.2 fuse-3.4.2
Nikolaus Rath [Sat, 9 Mar 2019 11:16:00 +0000 (11:16 +0000)]
Released 3.4.2

6 years agoImprove readdir() and file handle documentation
Chad Austin [Sat, 9 Mar 2019 11:02:24 +0000 (03:02 -0800)]
Improve readdir() and file handle documentation

Fixes: #333
6 years agoAdd HFS+ to filesystem whitelist (#347)
1c7718e7 [Sat, 9 Mar 2019 10:39:32 +0000 (12:39 +0200)]
Add HFS+ to filesystem whitelist (#347)

6 years agoWork around -Wformat-truncation=/-Wformat-overflow= warnings (#356)
Tomohiro Kusumi [Sat, 9 Mar 2019 10:39:02 +0000 (19:39 +0900)]
Work around -Wformat-truncation=/-Wformat-overflow= warnings (#356)

sprintf(3)/snprintf(3) destination buffers need to be large enough
so that gcc doesn't warn -Wformat-truncation= or -Wformat-overflow=
when source buffer size is 1024 bytes.

--
../test/test_syscalls.c:1445:47: warning: '%s' directive output may be truncated writing 1 byte into a region of size between 0 and 1023 [-Wformat-truncation=]
 #define PATH(p)  (snprintf(path, sizeof path, "%s/%s", testdir, p), path)
                                               ^~~~~~~
../test/test_syscalls.c:1458:19:
  res = mkdir(PATH("a"), 0755);
                   ~~~

Signed-off-by: Tomohiro Kusumi <kusumi.tomohiro@gmail.com>
6 years agoCorrectly include config.h ("" vs <>)
Nikolaus Rath [Sat, 9 Mar 2019 10:30:41 +0000 (10:30 +0000)]
Correctly include config.h ("" vs <>)

This isn't a system header.

Fixes: #349
6 years agoFix the changelog entry for protocol version 7.12 (#374)
Alan Somers [Sat, 9 Mar 2019 09:50:22 +0000 (02:50 -0700)]
Fix the changelog entry for protocol version 7.12 (#374)

Commit 24b35c3d97ffdbf0a1f8e8b4e94ed892343603a6 had a simple mistake in
its changelog entry.

6 years agofusermount: drop privileges for chdir()
Sam Huffman [Fri, 8 Mar 2019 21:26:31 +0000 (13:26 -0800)]
fusermount: drop privileges for chdir()

cd to mountpoint's parent directory using unprivileged rather than
privileged access. This is to ensure that unmount works on mountpoints
where root may not have privileged access.

Fixes: #376
6 years agoDocument fuse_fsync_in.fsync_flags and remove magic numbers (#375)
Alan Somers [Fri, 8 Mar 2019 21:24:50 +0000 (14:24 -0700)]
Document fuse_fsync_in.fsync_flags and remove magic numbers (#375)

6 years agoLink against libiconv when possible (#372)
HazelFZ [Mon, 4 Mar 2019 09:43:22 +0000 (17:43 +0800)]
Link against libiconv when possible (#372)

6 years agoTravis CI: Use Xenial instead of Trusty.
Nikolaus Rath [Wed, 27 Feb 2019 21:06:38 +0000 (21:06 +0000)]
Travis CI: Use Xenial instead of Trusty.

6 years agohello_ll: Fix null pointer dereference (#363)
Forty-Bot [Mon, 25 Feb 2019 21:06:42 +0000 (16:06 -0500)]
hello_ll: Fix null pointer dereference (#363)

If hello_ll is invoked without a mountpoint, it will try to call
fuse_session_mount anyway with the NULL mountpoint (which then causes a
segfault). Print out a short help message instead (taken from
passthrough_ll.c).

6 years agofuse_free_buf(): to check flags of each buffer, rather than only 0th
Albert Chen [Wed, 13 Feb 2019 09:42:15 +0000 (01:42 -0800)]
fuse_free_buf(): to check flags of each buffer, rather than only 0th

Fixes: #360
6 years agopassthrough_ll: lo_create() should honor CACHE_NEVER (#345)
Miklos Szeredi [Tue, 22 Jan 2019 20:03:00 +0000 (21:03 +0100)]
passthrough_ll: lo_create() should honor CACHE_NEVER (#345)

lo_create() did not honour CACHE_NEVER in lo_create(), which has an effect
on how I/O is performed after the open.

The value of CACHE_ALWAYS, which results in setting fi->keep_cache, only
has an effect for the state of the cache at open, and since the file was
just created the cache is always empty.  Hence setting this doesn't have an
effect on lo_create(), but keep it for symmetry with lo_open().

6 years agoClarify documentation of fuse_lowlevel_inval_inode
Nikolaus Rath [Mon, 21 Jan 2019 20:10:10 +0000 (20:10 +0000)]
Clarify documentation of fuse_lowlevel_inval_inode

Fixes: #341.
6 years agoAdd support for buildin under DragonFly BSD
Tomohiro Kusumi [Mon, 14 Jan 2019 20:28:41 +0000 (05:28 +0900)]
Add support for buildin under DragonFly BSD

70e25ea74e("Fix build on non-Linux") broke build on DragonFly BSD,
or likely anything other than FreeBSD and NetBSD that is not Linux.

Signed-off-by: Tomohiro Kusumi <kusumi.tomohiro@gmail.com>
6 years agoAdded OpenAFS to type whitelist
Nikolaus Rath [Fri, 4 Jan 2019 13:33:01 +0000 (13:33 +0000)]
Added OpenAFS to type whitelist

Fixes: #336.
6 years agoFixed memory leak.
Nikolaus Rath [Sat, 29 Dec 2018 14:52:42 +0000 (14:52 +0000)]
Fixed memory leak.

Fixes: #338.