summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikolaus Rath <Nikolaus@rath.org>2018-07-24 08:00:09 +0100
committerNikolaus Rath <Nikolaus@rath.org>2018-07-25 11:05:35 +0100
commit6172ece7177fec28f3a771bbd445d5e9b9d5acd0 (patch)
treeb850bffecf7089bdefd24c3eaa5c3c1687c8fa07
parent3eb3c6995f35ace4684a4842b42a08ce4cf166b2 (diff)
downloadfuse-6172ece7177fec28f3a771bbd445d5e9b9d5acd0.tar.gz
Released 2.9.8fuse-2.9.8
-rw-r--r--AUTHORS20
-rw-r--r--ChangeLog13
-rw-r--r--configure.ac2
-rw-r--r--lib/Makefile.am2
4 files changed, 13 insertions, 24 deletions
diff --git a/AUTHORS b/AUTHORS
index 3aae1ac..9872ba8 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -16,26 +16,18 @@ Contributors
CUSE has been written by Tejun Heo <teheo@suse.de>. Furthermore, the
following people have contributed patches (autogenerated list):
+Alexander <aleksandr.rvachev@eltex-co.ru>
Anatol Pomozov <anatol.pomozov@gmail.com>
-Antonio SJ Musumeci <trapexit@spawn.link>
-Christopher Harrison <ch12@sanger.ac.uk>
+Bill Zissimopoulos <billziss@navimatics.com>
+Carl Edquist <edquist@cs.wisc.edu>
Csaba Henk <csaba.henk@creo.hu>
-cvs2git <>
Dalvik Khertel <khertel@outlook.com>
Daniel Thau <danthau@bedrocklinux.org>
David McNab <david@rebirthing.co.nz>
-David Sheets <sheets@alum.mit.edu>
Emmanuel Dreyfus <manu@netbsd.org>
-Enke Chen <enkechen@yahoo.com>
-Eric Engestrom <eric@engestrom.ch>
-Eric Wong <normalperson@yhbt.net>
Fabrice Bauzac <fbauzac@amadeus.com>
-Feng Shuo <steve.shuo.feng@gmail.com>
Hendrik Brueckner <brueckner@linux.vnet.ibm.com>
-Ikey Doherty <michael.i.doherty@intel.com>
-Jan Blumschein <jan@jan-blumschein.de>
-Joachim Schiele <joachim.schiele@daimler.com>
-Joachim Schiele <js@lastlog.de>
+Jann Horn <jannh@google.com>
John Muir <john@jmuir.com>
Laszlo Papp <ext-laszlo.papp@nokia.com>
Madan Valluri <mvalluri@cumulus-systems.com>
@@ -50,10 +42,6 @@ Nikolaus Rath <Nikolaus@rath.org>
Olivier Blin <olivier.blin@softathome.com>
Ratna_Bolla@dell.com <Ratna_Bolla@dell.com>
Reuben Hawkins <reubenhwk@gmail.com>
-Richard W.M. Jones <rjones@redhat.com>
-Riku Voipio <riku.voipio@linaro.org>
Roland Bauerschmidt <rb@debian.org>
-Sam Stuewe <halosghost@archlinux.info>
Sebastian Pipping <sebastian@pipping.org>
therealneworld@gmail.com <therealneworld@gmail.com>
-Winfried Koehler <w_scan@gmx-topmail.de>
diff --git a/ChangeLog b/ChangeLog
index 0149cb3..8f6536f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,16 +1,17 @@
-Unreleased Changes
-==================
+FUSE 2.9.8 (2018-07-24)
+=======================
+* SECURITY UPDATE: In previous versions of libfuse it was possible to
+ for unprivileged users to specify the `allow_other` option even when
+ this was forbidden in `/etc/fuse.conf`. The vulnerability is
+ present only on systems where SELinux is active (including in
+ permissive mode).
* libfuse no longer segfaults when fuse_interrupted() is called outside
the event loop.
* The fusermount binary has been hardened in several ways to reduce
potential attack surface. Most importantly, mountpoints and mount
options must now match a hard-coded whitelist. It is expected that
this whitelist covers all regular use-cases.
-
-FUSE 2.9.8
-==========
-
* Fixed rename deadlock on FreeBSD.
FUSE 2.9.7 (2016-06-20)
diff --git a/configure.ac b/configure.ac
index 8f1a63a..a96da7f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
-AC_INIT(fuse, 2.9.7)
+AC_INIT(fuse, 2.9.8)
AC_PREREQ(2.59d)
AC_CONFIG_MACRO_DIR([m4])
diff --git a/lib/Makefile.am b/lib/Makefile.am
index b0f195e..5cbc6b5 100644
--- a/lib/Makefile.am
+++ b/lib/Makefile.am
@@ -37,7 +37,7 @@ libfuse_la_SOURCES = \
$(iconv_source) \
$(mount_source)
-libfuse_la_LDFLAGS = -pthread @libfuse_libs@ -version-number 2:9:7 \
+libfuse_la_LDFLAGS = -pthread @libfuse_libs@ -version-number 2:9:8 \
-Wl,--version-script,$(srcdir)/fuse_versionscript
if NETBSD