summaryrefslogtreecommitdiffstats
path: root/release_docs
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2023-09-03 18:12:53 (GMT)
committerGitHub <noreply@github.com>2023-09-03 18:12:53 (GMT)
commit90852b28c729e963a7ebf4b21fe216a44ce7ad2b (patch)
treeecf4e03b91bedd929bef5babeea8b2d9dc004ae3 /release_docs
parentb1e65333b5c19457c53d5d6e7fd5e9add81e307d (diff)
downloadhdf5-90852b28c729e963a7ebf4b21fe216a44ce7ad2b.zip
hdf5-90852b28c729e963a7ebf4b21fe216a44ce7ad2b.tar.gz
hdf5-90852b28c729e963a7ebf4b21fe216a44ce7ad2b.tar.bz2
Cherry-pick of CVE fixes from 1.10 (#3490)
* CVE-2016-4332 * CVE-2018-11202 * CVE-2018-11205 * CVE-2018-13866 * CVE-2018-13867 * CVE-2018-13871 * CVE-2018-15671
Diffstat (limited to 'release_docs')
-rw-r--r--release_docs/RELEASE.txt26
1 files changed, 26 insertions, 0 deletions
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt
index db2a6df..02e0c73 100644
--- a/release_docs/RELEASE.txt
+++ b/release_docs/RELEASE.txt
@@ -241,6 +241,32 @@ Bug Fixes since HDF5-1.12.2 release
===================================
Library
-------
+ - Fixed CVE-2018-11202
+
+ A malformed file could result in chunk index memory leaks. Under most
+ conditions (i.e., when the --enable-using-memchecker option is NOT
+ used), this would result in a small memory leak and and infinite loop
+ and abort when shutting down the library. The infinite loop would be
+ due to the "free list" package not being able to clear its resources
+ so the library couldn't shut down. When the "using a memory checker"
+ option is used, the free lists are disabled so there is just a memory
+ leak with no abort on library shutdown.
+
+ The chunk index resources are now correctly cleaned up when reading
+ misparsed files and valgrind confirms no memory leaks.
+
+ - Fixed an assertion in a previous fix for CVE-2016-4332
+
+ An assert could fail when processing corrupt files that have invalid
+ shared message flags (as in CVE-2016-4332).
+
+ The assert statement in question has been replaced with pointer checks
+ that don't raise errors. Since the function is in cleanup code, we do
+ our best to close and free things, even when presented with partially
+ initialized structs.
+
+ Fixes CVE-2016-4332 and HDFFV-9950 (confirmed via the cve_hdf5 repo)
+
- Fixed a file space allocation bug in the parallel library for chunked
datasets