Commit Graph

17 Commits

Author SHA1 Message Date
Adolf Belka
adb57f7a2e fuse: Update to version 3.15.0
- Update from version 3.13.0 to 3.15.0
- Update of rootfile
- Changelog
    3.15.0 (2023-06-09)
	* Improved support for some less common systems (32 bit, alternative libcs)
	* Unsupported mount options are no longer silently accepted.
	* auto_unmount is now compatible with allow_other.
    3.14.1 (2023-03-26)
	* The extended attribute name passed to the setxattr() handler is no longer
	  truncated at the beginning (bug introduced in 3.13.0).
	* As a result of the above, the additional setattr() flags introduced in 3.14 are no
	  longer available for now. They will hopefully be reintroduced in the next release.
	* Further improvements of configuration header handling.
    3.14.0 (2023-02-17)
	* Properly fix the header installation issue. The fix in 3.13.1 resulted
	  in conflicts with other packages.
	* Introduce additional setattr() flags (FORCE, KILL_SUID, KILL_SGID, FILE,
          KILL_PRIV, OPEN, TIMES_SET)
    3.13.1 (2023-02-03)
	* Fixed an issue that resulted in errors when attempting to compile against
	  installed libfuse headers (because libc symbol versioning support was not
	  detected correctly in this case).

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
2023-07-26 16:09:00 +00:00
Adolf Belka
cdb528e22f fuse: Update to version 3.13.0
- Update from version 3.11.0 to 3.13.0
- Update of rootfile
- Changelog
libfuse 3.13.0 (2023-01-13)
- There is a new low-level API function `fuse_session_custom_io` that allows to implement
  a daemon with a custom io. This can be used to create a daemon that can process incoming
  FUSE requests to other destinations than `/dev/fuse`.
- A segfault when loading custom FUSE modules has been fixed.
- There is a new `fuse_notify_expire_entry` function.
- A deadlock when resolving paths in the high-level API has been fixed.
- libfuse can now be build explicitly for C libraries without symbol versioning support.
libfuse 3.12.0 (2022-09-08)
- There is a new build parameter to specify where the SysV init script should be
  installed.
- The *max_idle_threads* parameter has been deprecated in favor of the new max_threads*
  parameter (which avoids the excessive overhead of creating and destructing threads).
  Using max_threads == 1 and calling fuse_session_loop_mt() will run single threaded
  similar to fuse_session_loop().
The following changes apply when using the most recent API (-DFUSE_USE_VERSION=312,
see `example/passthrough_hp.cc` for an example for how to usse the new API):
- `struct fuse_loop_config` is now private and has to be constructed using
  - fuse_loop_cfg_create()* and detroyed with *fuse_loop_cfg_destroy()*.  Parameters can be
- changed using `fuse_loop_cfg_set_*()` functions.
  - fuse_session_loop_mt()* now accepts `struct fuse_loop_config *` as NULL pointer.
  - fuse_parse_cmdline()* now accepts a *max_threads* option.

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
Reviewed-by: Peter Müller <peter.mueller@ipfire.org>
2023-01-23 15:20:05 +00:00
Adolf Belka
37ddc46691 fuse: Update to version 3.11.0
- Update from 3.10.4 to 3.11.0
- Update of rootfile
- Changelog
   fuse 3.11.0 (2022-05-02)
	* Add support for flag FOPEN_NOFLUSH for avoiding flush on close.
	* Fixed returning an error condition to ioctl(2)
   fuse 3.10.5 (2021-09-06)
	* Various improvements to make unit tests more robust.

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
Reviewed-by: Peter Müller <peter.mueller@ipfire.org>
2022-05-30 19:11:14 +00:00
Peter Müller
9a7e4d8506 Switch checksums from MD5 to BLAKE2
Historically, the MD5 checksums in our LFS files serve as a protection
against broken downloads, or accidentally corrupted source files.

While the sources are nowadays downloaded via HTTPS, it make sense to
beef up integrity protection for them, since transparently intercepting
TLS is believed to be feasible for more powerful actors, and the state
of the public PKI ecosystem is clearly not helping.

Therefore, this patch switches from MD5 to BLAKE2, updating all LFS
files as well as make.sh to deal with this checksum algorithm. BLAKE2 is
notably faster (and more secure) than SHA2, so the performance penalty
introduced by this patch is negligible, if noticeable at all.

In preparation of this patch, the toolchain files currently used have
been supplied with BLAKE2 checksums as well on
https://source.ipfire.org/.

Cc: Michael Tremer <michael.tremer@ipfire.org>
Signed-off-by: Peter Müller <peter.mueller@ipfire.org>
Acked-by: Michael Tremer <michael.tremeripfire.org>
2022-04-02 14:19:25 +00:00
Michael Tremer
8713283245 fuse: Disable building examples
These won't build with GCC 11

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
2021-07-05 07:42:39 +02:00
Adolf Belka
b217d8a70f fuse: Update to 3.10.4
- Update from 3.10.3 to 3.10.4
- Update of rootfile
- Changelog
   * Building of unit tests is now optional.
   * Fixed a test failure when running tests under XFS.
   * Fixed memory leaks in examples.
   * Minor documentation fixes.

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
2021-06-17 20:02:19 +00:00
Adolf Belka
6a2d0484ca fuse: Update to 3.10.3
- Update from 3.10.1 to 3.10.3
- Update of rootfile
- Changelog
   libfuse 3.10.3 (2021-04-12)
     * Fix returning d_ino and d_type from readdir(3) in non-plus mode
   libfuse 3.10.2 (2021-02-05)
     * Allow "nonempty" as a mount option, for backwards compatibility with fusermount 2. The
       option has no effect since mounting over non-empty directories is allowed by default.
     * Fix returning inode numbers from readdir() in offset==0 mode.
     * FUSE filesystems can now be mounted underneath EXFAT mountpoints.
     * Various minor bugfixes.

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
2021-04-20 09:08:15 +00:00
Adolf Belka
35b8dc552d fuse: Update to 3.10.1
- Update fuse from 2.9.7 to 3.10.1
- Update also required by sshfs update
- Changelog is available at https://github.com/libfuse/libfuse/releases
- Build had to be changed from autools to meson/ninja
- Rootfiles changed
- namespace conflict fix patch no longer required. Fix now built into kernel.h

Signed-off-by: Adolf Belka <ahb.ipfire@gmail.com>
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
2021-01-06 15:21:02 +00:00
Peter Müller
eee037b890 update disclaimer in LFS files
Most of these files still used old dates and/or domain names for contact
mail addresses. This is now replaced by an up-to-date copyright line.

Just some housekeeping... :-)

Signed-off-by: Peter Müller <peter.mueller@link38.eu>
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
2018-09-10 19:20:36 +01:00
Matthias Fischer
8f6e4eaff7 Update for numerous lfs-files: removed deprecated configure options
Also includes some reformatting, but no changes to configuration.

Signed-off-by: Matthias Fischer <matthias.fischer@ipfire.org>
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
2017-12-05 17:02:24 +00:00
Michael Tremer
7502d6f898 fuse: Update to 2.9.7
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
2017-05-18 12:10:23 +01:00
Matthias Fischer
ef8b6053f3 ntfs-3g: Update to 2014.2.15
fuse: Update to 2.9.3
2015-03-02 21:12:20 +01:00
Christian Schmidt
a8e4c65724 Updated fuse to current stable. 2010-03-11 20:41:34 +01:00
Maniacikarus
22b270adb4 Upgraded fuse to current stable 2008-12-07 14:11:55 +01:00
ms
70df830214 Ein Paar Dateien fuer die GPLv3 angepasst.
git-svn-id: http://svn.ipfire.org/svn/ipfire/trunk@853 ea5c0bd1-69bd-2848-81d8-4f18e57aeed8
2007-08-29 13:25:32 +00:00
ms
8e055e6555 Fuse bereinigt.
git-svn-id: http://svn.ipfire.org/svn/ipfire/trunk@786 ea5c0bd1-69bd-2848-81d8-4f18e57aeed8
2007-08-19 21:39:43 +00:00
ms
d02350a277 NTFS-Treiber eingebaut fuer das Festplattenfeature von Silvio
Morning Reconnect auf 5 Uhr verschoben...


git-svn-id: http://svn.ipfire.org/svn/ipfire/trunk@419 ea5c0bd1-69bd-2848-81d8-4f18e57aeed8
2007-02-15 09:22:09 +00:00