Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hdffv 11052 #2315

Merged
merged 10 commits into from
Dec 16, 2022
14 changes: 11 additions & 3 deletions test/tmisc.c
Original file line number Diff line number Diff line change
Expand Up @@ -6060,15 +6060,23 @@ test_misc36(void)
static void
test_misc37(void)
{
const char *fname;
const char *testfile = H5_get_srcdir_filename(CVE_2020_10812_FILENAME);
hbool_t driver_is_default_compatible;
hid_t fid;
herr_t ret;

/* Output message about test being performed */
MESSAGE(5, ("Fix for HDFFV-11052/CVE-2020-10812"));

fname = H5_get_srcdir_filename(CVE_2020_10812_FILENAME);
fid = H5Fopen(fname, H5F_ACC_RDONLY, H5P_DEFAULT);
ret = h5_driver_is_default_vfd_compatible(H5P_DEFAULT, &driver_is_default_compatible);
CHECK(ret, FAIL, "h5_driver_is_default_vfd_compatible");

if (!driver_is_default_compatible) {
HDprintf("-- SKIPPED --\n");
return;
}

fid = H5Fopen(testfile, H5F_ACC_RDONLY, H5P_DEFAULT);
CHECK(fid, FAIL, "H5Fopen");

/* This should fail due to the illegal file size.
Expand Down