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.
[Warning] This PR is generated by AI
PR Title: Fix for Heap-Buffer-Overflow Vulnerability in HDF5 - OSV-2024-390
PR Description:
H5MM_memcpy
) in theH5O__cache_chk_serialize
function. If the requested length exceeds the size of the source buffer, the function will exit with an error, preventing the overflow. This fix improves the security and stability of the program by ensuring memory operations are safely bounded.Sanitizer Report Summary:
The sanitizer detected a heap-buffer-overflow error. The program attempted to access memory beyond the allocated buffer size of 8 bytes by trying to read 64 bytes at an offset of 8. The issue was identified in the
H5O__cache_chk_serialize
function, which is part of the object header cache serialization logic.Full Sanitizer Report:
Files Modified:
src/H5Ocache.c
Patch Validation:
The patch has been validated and confirmed to resolve the heap-buffer-overflow vulnerability identified in the sanitizer report. No new bugs or regressions were introduced during testing.
Links: