Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
SUSE:SLE-15-SP7:GA
hdf5.26545
Hot-fix-for-CVE-2020-10812.patch
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File Hot-fix-for-CVE-2020-10812.patch of Package hdf5.26545
From: Egbert Eich <eich@suse.com> Date: Wed Oct 5 09:44:02 2022 +0200 Subject: Hot fix for CVE-2020-10812 Patch-mainline: Not yet Git-repo: https://github.com/HDFGroup/hdf5 Git-commit: 454c463d030d686dc794783e34c52894db75eca9 References: CVE-2020-10812 unveils a more fundamental design flaw in H5F__dest(): this function returns FAIL if one of multiple operations fail (in this case H5AC_prep_for_file_close()) while it still proceeds to prepare the close operation, free the 'shared' member in struct H5F_t and ulimately deallocate the structure itself. When H5F__dest() signals back FAIL to the caller, the caller itself (H5F_try_close() in this case) will fail. This failure is signalled up the stack, thus the file will not be considered closed and another attempt will be made to close it - latest in the exit handler. The next attempt to close will however need the already deallocated H5F_t structure and the H5T_shared_t structure in its 'shared' member, however. This fix papers over the failure of H5AC_prep_for_file_close() by not changing the return status of H5F__dest() to fail. There are numerous other opportunities where this will happen. This may call for a more fundamental solution. Signed-off-by: Egbert Eich <eich@suse.com> Signed-off-by: Egbert Eich <eich@suse.de> --- src/H5Fint.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/H5Fint.c b/src/H5Fint.c index c8e2cad00d..b5096da90a 100644 --- a/src/H5Fint.c +++ b/src/H5Fint.c @@ -1260,7 +1260,7 @@ H5F__dest(H5F_t *f, hbool_t flush) */ if (H5AC_prep_for_file_close(f) < 0) /* Push error, but keep going */ - HDONE_ERROR(H5E_FILE, H5E_CANTFLUSH, FAIL, "metadata cache prep for close failed") + HDONE_ERROR(H5E_FILE, H5E_CANTFLUSH, ret_value, "metadata cache prep for close failed") /* Flush at this point since the file will be closed (phase 2). * Only try to flush the file if it was opened with write access, and if
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor