diff options
author | M. Scot Breitenfeld <brtnfld@hdfgroup.org> | 2018-03-05 21:36:27 (GMT) |
---|---|---|
committer | M. Scot Breitenfeld <brtnfld@hdfgroup.org> | 2018-03-05 21:36:27 (GMT) |
commit | a8bea5fd26bbb5ac090c3f137b04b50f431048c6 (patch) | |
tree | 1b8c3fa11b604030ade1642730d2ffa10929394c | |
parent | 3dcc827771d147146a714831f63fbe12af99ce30 (diff) | |
parent | 3b0e80c1dcdf664f56829383aa3bc9e8ecc0f2c6 (diff) | |
download | hdf5-a8bea5fd26bbb5ac090c3f137b04b50f431048c6.zip hdf5-a8bea5fd26bbb5ac090c3f137b04b50f431048c6.tar.gz hdf5-a8bea5fd26bbb5ac090c3f137b04b50f431048c6.tar.bz2 |
Merge branch 'develop' into avoid_trunc_beta
-rw-r--r-- | release_docs/RELEASE.txt | 15 | ||||
-rw-r--r-- | src/H5T.c | 5 |
2 files changed, 20 insertions, 0 deletions
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index 4675423..480bb14 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -232,6 +232,21 @@ Bug Fixes since HDF5-1.10.1 release (DER - 2017/11/21, HDFFV-10330) + - If an HDF5 file contains a malformed compound type which contains + a member of size zero, a division by zero error will occur while + processing the type. + + This issue was reported to The HDF Group as issue #CVE-2017-17508. + + NOTE: The HDF5 C library cannot produce such a file. This condition + should only occur in a corrupt (or deliberately altered) file + or a file created by third-party software. + + Checking for zero before dividing fixes the problem. Instead of the + division by zero, the normal HDF5 error handling is invoked. + + (DER - 2018/02/26, HDFFV-10357) + Configuration ------------- - CMake @@ -5211,6 +5211,11 @@ H5T_set_loc(H5T_t *dt, H5F_t *f, H5T_loc_t loc) /* Check if the field changed size */ if(old_size != memb_type->shared->size) { + + /* Fail if the old_size is zero */ + if (0 == old_size) + HGOTO_ERROR(H5E_DATATYPE, H5E_BADVALUE, FAIL, "old_size of zero would cause division by zero"); + /* Adjust the size of the member */ dt->shared->u.compnd.memb[i].size = (dt->shared->u.compnd.memb[i].size*memb_type->shared->size)/old_size; |