-
-
Notifications
You must be signed in to change notification settings - Fork 351
Reject chunked datasets with mismatched chunk/dspace rank at open time #6508
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
Draft
mattjala
wants to merge
3
commits into
HDFGroup:develop
Choose a base branch
from
mattjala:h5repack_hyperslab_sigfpe
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from 1 commit
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -1120,6 +1120,13 @@ H5D__chunk_init(H5F_t *f, H5D_t *dset, hid_t dapl_id, bool open_op) | |
| assert(dset); | ||
| H5D_CHUNK_STORAGE_INDEX_CHK(sc); | ||
|
|
||
| /* When opening an existing dataset, validate that the stored chunk | ||
| * dimensionality is consistent with the dataspace rank. H5D__chunk_construct() | ||
| * performs this check at creation time, but it must also be performed | ||
| * here to catch malformed files. */ | ||
| if (open_op && dset->shared->layout.u.chunk.ndims != dset->shared->ndims + 1) | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is this check specific to this place in the dataset code? It seems like something that would be worth validating at the layout message decode time instead. |
||
| HGOTO_ERROR(H5E_DATASET, H5E_BADVALUE, FAIL, "dimensionality of chunks doesn't match the dataspace"); | ||
|
|
||
| if (NULL == (dapl = (H5P_genplist_t *)H5I_object(dapl_id))) | ||
| HGOTO_ERROR(H5E_ID, H5E_BADID, FAIL, "can't find object for fapl ID"); | ||
|
|
||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,164 @@ | ||
| /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * | ||
| * Copyright by The HDF Group. * | ||
| * All rights reserved. * | ||
| * * | ||
| * This file is part of HDF5. The full HDF5 copyright notice, including * | ||
| * terms governing use, modification, and redistribution, is contained in * | ||
| * the LICENSE file, which can be found at the root of the source code * | ||
| * distribution tree, or in https://www.hdfgroup.org/licenses. * | ||
| * If you do not have access to either file, you may request a copy from * | ||
| * help@hdfgroup.org. * | ||
| * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ | ||
|
|
||
| /* | ||
| * Generate an HDF5 file with a chunked dataset whose stored chunk layout | ||
| * dimensionality does not match the dataset's dataspace rank. | ||
| * | ||
| * A valid 3-D chunked dataset of native int is written, then the version-3 | ||
| * chunk layout message's "dimensionality" byte is patched from 4 down to 3. | ||
| * The stored chunk rank includes an extra element-size dimension, so a valid | ||
| * 3-D dataset stores 4. Patching it to 3 makes the layout describe a 2-D | ||
| * chunk over a 3-D dataspace. | ||
| * | ||
| */ | ||
|
|
||
| #include "h5test.h" | ||
|
|
||
| #define BAD_CHUNK_FILE "bad_chunk_ndims.h5" | ||
| #define BAD_CHUNK_DSET "dset" | ||
|
|
||
| /* Read an entire file into a newly allocated buffer. */ | ||
| static unsigned char * | ||
| slurp(const char *name, size_t *len_out) | ||
| { | ||
| FILE *f = fopen(name, "rb"); | ||
| long len; | ||
| unsigned char *buf; | ||
|
|
||
| if (!f) | ||
| return NULL; | ||
| if (fseek(f, 0, SEEK_END) != 0 || (len = ftell(f)) < 0 || fseek(f, 0, SEEK_SET) != 0) { | ||
| fclose(f); | ||
| return NULL; | ||
| } | ||
| if (NULL == (buf = malloc((size_t)len))) { | ||
| fclose(f); | ||
| return NULL; | ||
| } | ||
| if (fread(buf, 1, (size_t)len, f) != (size_t)len) { | ||
| free(buf); | ||
| fclose(f); | ||
| return NULL; | ||
| } | ||
| fclose(f); | ||
| *len_out = (size_t)len; | ||
| return buf; | ||
| } | ||
|
|
||
| /* Write a buffer back out to a file. */ | ||
| static int | ||
| spew(const char *name, const unsigned char *buf, size_t len) | ||
| { | ||
| FILE *f = fopen(name, "wb"); | ||
| if (!f) | ||
| return -1; | ||
| if (fwrite(buf, 1, len, f) != len) { | ||
| fclose(f); | ||
| return -1; | ||
| } | ||
| return fclose(f) == 0 ? 0 : -1; | ||
| } | ||
|
|
||
| /* Find the unique occurrence of pattern in buf; return offset or (size_t)-1. */ | ||
| static size_t | ||
| find_once(const unsigned char *buf, size_t len, const unsigned char *pat, size_t patlen) | ||
| { | ||
| size_t i, found = (size_t)-1; | ||
|
|
||
| if (patlen == 0 || len < patlen) | ||
| return (size_t)-1; | ||
| for (i = 0; i <= len - patlen; i++) { | ||
| if (memcmp(buf + i, pat, patlen) == 0) { | ||
| if (found != (size_t)-1) | ||
| return (size_t)-1; /* not unique */ | ||
| found = i; | ||
| } | ||
| } | ||
| return found; | ||
| } | ||
|
|
||
| int | ||
| main(void) | ||
| { | ||
| hid_t fapl = H5I_INVALID_HID, file = H5I_INVALID_HID, sid = H5I_INVALID_HID; | ||
| hid_t dcpl = H5I_INVALID_HID, dset = H5I_INVALID_HID; | ||
| hsize_t dims[3] = {3, 4, 5}; | ||
| hsize_t chunk[3] = {2, 2, 4}; /* last chunk size equals sizeof(int) */ | ||
|
mattjala marked this conversation as resolved.
Outdated
|
||
| int data[3 * 4 * 5]; | ||
| unsigned char *buf = NULL; | ||
| size_t len, off; | ||
| int i; | ||
|
|
||
| /* Version-3 chunk layout message header immediately followed after the 8-byte b-tree address | ||
| * by the four chunk sizes {2, 2, 4, sizeof(int)=4} as little-endian | ||
| * uint32 values. This anchor uniquely locates the layout message. */ | ||
|
mattjala marked this conversation as resolved.
Outdated
|
||
| static const unsigned char layout_dims[] = {2, 0, 0, 0, 2, 0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0}; | ||
|
|
||
| for (i = 0; i < 3 * 4 * 5; i++) | ||
| data[i] = i; | ||
|
|
||
| if ((fapl = H5Pcreate(H5P_FILE_ACCESS)) < 0) | ||
| TEST_ERROR; | ||
| if (H5Pset_libver_bounds(fapl, H5F_LIBVER_EARLIEST, H5F_LIBVER_LATEST) < 0) | ||
| TEST_ERROR; | ||
| if ((file = H5Fcreate(BAD_CHUNK_FILE, H5F_ACC_TRUNC, H5P_DEFAULT, fapl)) < 0) | ||
| TEST_ERROR; | ||
| if ((sid = H5Screate_simple(3, dims, NULL)) < 0) | ||
| TEST_ERROR; | ||
|
|
||
| if ((dcpl = H5Pcreate(H5P_DATASET_CREATE)) < 0) | ||
| TEST_ERROR; | ||
| if (H5Pset_chunk(dcpl, 3, chunk) < 0) | ||
| TEST_ERROR; | ||
|
|
||
| if ((dset = H5Dcreate2(file, BAD_CHUNK_DSET, H5T_NATIVE_INT, sid, H5P_DEFAULT, dcpl, H5P_DEFAULT)) < 0) | ||
| TEST_ERROR; | ||
| if (H5Dwrite(dset, H5T_NATIVE_INT, H5S_ALL, H5S_ALL, H5P_DEFAULT, data) < 0) | ||
| TEST_ERROR; | ||
|
|
||
| if (H5Dclose(dset) < 0 || H5Pclose(dcpl) < 0 || H5Sclose(sid) < 0 || H5Fclose(file) < 0 || | ||
| H5Pclose(fapl) < 0) | ||
| TEST_ERROR; | ||
|
|
||
| /* Patch the chunk layout's dimensionality byte from 4 to 3. */ | ||
| if (NULL == (buf = slurp(BAD_CHUNK_FILE, &len))) | ||
| TEST_ERROR; | ||
| if ((off = find_once(buf, len, layout_dims, sizeof(layout_dims))) == (size_t)-1) | ||
| TEST_ERROR; | ||
| /* Layout header is 3 bytes (version, class, ndims) + 8-byte address before | ||
| * the chunk sizes, so the ndims byte is 11 bytes before the sizes. */ | ||
| if (off < 11 || buf[off - 11] != 3 /* version */ || buf[off - 10] != 2 /* chunked */ || | ||
| buf[off - 9] != 4 /* ndims */) | ||
| TEST_ERROR; | ||
| buf[off - 9] = 3; | ||
| if (spew(BAD_CHUNK_FILE, buf, len) < 0) | ||
| TEST_ERROR; | ||
|
|
||
| free(buf); | ||
| printf("Generated %s\n", BAD_CHUNK_FILE); | ||
| return EXIT_SUCCESS; | ||
|
|
||
| error: | ||
| free(buf); | ||
| H5E_BEGIN_TRY | ||
| { | ||
| H5Dclose(dset); | ||
| H5Pclose(dcpl); | ||
| H5Sclose(sid); | ||
| H5Fclose(file); | ||
| H5Pclose(fapl); | ||
| } | ||
| H5E_END_TRY | ||
| fprintf(stderr, "failed to generate %s\n", BAD_CHUNK_FILE); | ||
| return EXIT_FAILURE; | ||
| } | ||
Binary file not shown.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
disagrees->disagreedwould not be caught->was not caught