15 Commits

Author SHA1 Message Date
Adolf Belka
5aba1a15f7 file: Update to version 5.45
- Update from version 5.44 to 5.45
- Update of rootfile not required
- Changelog
    5.45
	* PR/465: psrok1: Avoid muslc asctime_r crash
	* add SIMH tape format support
	* bump the max size of the elf section notes to be read to 128K
	  and make it configurable
	* PR/415: Fix decompression with program returning empty
	* PR/408: fix -p with seccomp
	* PR/412: fix MinGW compilation

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
2024-01-31 17:04:48 +00:00
Adolf Belka
5e1002b75b file: Update to version 5.44
- Update from version 5.40 to 5.44
- Update of rootfile not required
- Changelog
	* release 5.44
		* Handle nan's so that we don't get internal floating point exceptions
		  when they are enabled (Vincent Mihalkovic)
		* PR/397: Restore the ability to process files from stdin immediately.
		* fixed various clustefuzz issues
		* Fix error detection for decompression code (Vincent Mihalkovic)
		* Add MAGIC_NO_COMPRESS_FORK and use it to produce a more
		  meaningful error message if we are sandboxing.
		* Add built-in lzip decompression support (Michal Gorny)
		* Add built-in zstd decompression support (Martin Rodriguez Reboredo)
	* release 5.43
		* Add octal indirect magic (Michal Gorny)
		* PR/374: avoid infinite loop in non-wide code (piru)
		* PR/373: Obey MAGIC_CONTINUE with multiple magic files (vismarli)
		* Fix bug with large flist (Florian Weimer)
	        * PR/364: Detect non-nul-terminated core filenames from QEMU
		  (mam-ableton)
		* PR/359: Add support for http://ndjson.org/ (darose)
		* PR/362: Fix wide printing (ro-ee)
		* PR/358: Fix width for -f - (jpalus)
		* PR/356: Fix JSON constant parsing (davewhite)
	* release 5.42
		* PR/348: add missing cases to prevent file from aborting on
		  random magic files.
		* PR/351: octalify filenames when not raw before printing.
		* fix regex cacheing bug (Dirk Mueller)
		* merge file_regcomp and file_regerror() to simplify the code
		  and reduce memory requirements for storing regexes (Dirk Mueller)
		* cache regex (Dirk Mueller)
		* detect filesystem full by flushing output (Dirk Mueller)
		* implement running decompressor programs using
		  posix_spawnp(2) instead of vfork(2)
		* Add support for msdos dates and times
		* use the system byte swapping functions if available (Werner Fink)
	* release 5.41
		* Avinash Sonawane: Fix tzname detection
		* Fix relationship tests with "search" magic, don't short circuit
		  logic
		* Fix memory leak in compile mode
		* PR/272: kiefermat: Only set returnval = 1 when we printed something
		  (in all cases print or !print). This simplifies the logic and fixes
		  the issue in the PR with -k and --mime-type there was no continuation
		  printed before the default case.
		* PR/270: Don't translate unprintable characters in %s magic formats
		  when -r
		* PR/269: Avoid undefined behavior with clang (adding offset to NULL)
		* Add a new flag (f) that requires that the match is a full word,
		   not a partial word match.
		* Add varint types (unused)
		* PR/256: mutableVoid: If the file is less than 3 bytes, use the file
		  length to determine type
		* PR/259: aleksandr.v.novichkov: mime printing through indirect magic
		  is not taken into account, use match directly so that it does.
		* count the total bytes found not the total byte positions
		  in order to determine encoding (Anatol Belski)

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
Reviewed-by: Peter Müller <peter.mueller@ipfire.org>
2023-01-09 18:37:09 +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
Adolf Belka
05599e171c file: Update to 5.40
- Update from 5.39 to 5.40
- Update of rootfile not needed
- Changelog
   * release 5.40
	* PR/234: Add limit to the number of bytes to scan for encoding
	* PR/230: Fix /T (trim flag) for regex
	* PR/77: Trim trailing separator.
	* PR/211: Convert system read errors from corrupt ELF
	  files into human readable error messages
	* fix multithreaded decompression file descriptor issue
	  by using close-on-exec (Denys Vlasenko)
	* Exclude surrogate pairs from utf-8 detection (Michael Liu)
	* Include # to the list of ignored format chars (Werner Fink)

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
2021-04-14 17:22:53 +00:00
Peter Müller
f55a00fea3 file: update to 5.39
Signed-off-by: Peter Müller <peter.mueller@ipfire.org>
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
2020-11-05 23:29:18 +00:00
Michael Tremer
1eb657a66c file: Update to 5.38
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
Signed-off-by: Arne Fitzenreiter <arne_f@ipfire.org>
2019-12-29 19:15:57 +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
Marcel Lorenz
361cc1bd0c file: update to 5.30
Signed-off-by: Marcel Lorenz <marcel.lorenz@ipfire.org>
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
2017-04-06 09:57:50 +01:00
Marcel Lorenz
cde96f746a file: update to 5.28
Signed-off-by: Marcel Lorenz <marcel.lorenz@ipfire.org>
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
2016-09-24 12:56:09 +01:00
matthias.fischer@ipfire.org
f258651779 file: Update to 5.24
Signed-off-by: Matthias Fischer <matthias.fischer@ipfire.org>
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
2015-08-17 20:34:33 +01:00
Matthias Fischer
264b8ae7df file: Update to 5.20 2014-11-29 21:19:19 +01:00
Michael Tremer
83c883b4e5 file: Update to 5.11. 2012-08-24 17:10:35 +02: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
9b0ff0a0b6 Zwischencommit beim Umzug auf LFS 6.2.
git-svn-id: http://svn.ipfire.org/svn/ipfire/trunk@299 ea5c0bd1-69bd-2848-81d8-4f18e57aeed8
2006-10-01 10:51:18 +00:00
ipfire
cd1a292722 git-svn-id: http://svn.ipfire.org/svn/ipfire/IPFire/source@16 ea5c0bd1-69bd-2848-81d8-4f18e57aeed8 2006-02-15 21:15:54 +00:00