-
-
Notifications
You must be signed in to change notification settings - Fork 272
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
Fix vuln OSV-2023-77 #5210
Fix vuln OSV-2023-77 #5210
Changes from 6 commits
c9110c7
8cebb9c
2d5377d
b4ebd70
7e54602
64568ea
79e7168
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -116,7 +116,8 @@ | |
/* Helper routines */ | ||
static size_t H5C__cache_image_block_entry_header_size(const H5F_t *f); | ||
static size_t H5C__cache_image_block_header_size(const H5F_t *f); | ||
static herr_t H5C__decode_cache_image_header(const H5F_t *f, H5C_t *cache_ptr, const uint8_t **buf); | ||
static herr_t H5C__decode_cache_image_header(const H5F_t *f, H5C_t *cache_ptr, const uint8_t **buf, | ||
size_t buf_size); | ||
#ifndef NDEBUG /* only used in assertions */ | ||
static herr_t H5C__decode_cache_image_entry(const H5F_t *f, const H5C_t *cache_ptr, const uint8_t **buf, | ||
unsigned entry_num); | ||
|
@@ -297,7 +298,7 @@ H5C__construct_cache_image_buffer(H5F_t *f, H5C_t *cache_ptr) | |
/* needed for sanity checks */ | ||
fake_cache_ptr->image_len = cache_ptr->image_len; | ||
q = (const uint8_t *)cache_ptr->image_buffer; | ||
status = H5C__decode_cache_image_header(f, fake_cache_ptr, &q); | ||
status = H5C__decode_cache_image_header(f, fake_cache_ptr, &q, cache_ptr->image_len + 1); | ||
assert(status >= 0); | ||
|
||
assert(NULL != p); | ||
|
@@ -1267,7 +1268,7 @@ H5C__cache_image_block_header_size(const H5F_t *f) | |
*------------------------------------------------------------------------- | ||
*/ | ||
static herr_t | ||
H5C__decode_cache_image_header(const H5F_t *f, H5C_t *cache_ptr, const uint8_t **buf) | ||
H5C__decode_cache_image_header(const H5F_t *f, H5C_t *cache_ptr, const uint8_t **buf, size_t buf_size) | ||
{ | ||
uint8_t version; | ||
uint8_t flags; | ||
|
@@ -1287,6 +1288,10 @@ H5C__decode_cache_image_header(const H5F_t *f, H5C_t *cache_ptr, const uint8_t * | |
/* Point to buffer to decode */ | ||
p = *buf; | ||
|
||
/* Ensure buffer has enough data for signature comparison */ | ||
if (H5_IS_BUFFER_OVERFLOW(p, H5C__MDCI_BLOCK_SIGNATURE_LEN, *buf + buf_size)) | ||
HGOTO_ERROR(H5E_CACHE, H5E_OVERFLOW, FAIL, "Insufficient buffer size for signature"); | ||
|
||
/* Check signature */ | ||
if (memcmp(p, H5C__MDCI_BLOCK_SIGNATURE, (size_t)H5C__MDCI_BLOCK_SIGNATURE_LEN) != 0) | ||
HGOTO_ERROR(H5E_CACHE, H5E_BADVALUE, FAIL, "Bad metadata cache image header signature"); | ||
|
@@ -2386,7 +2391,7 @@ H5C__reconstruct_cache_contents(H5F_t *f, H5C_t *cache_ptr) | |
|
||
/* Decode metadata cache image header */ | ||
p = (uint8_t *)cache_ptr->image_buffer; | ||
if (H5C__decode_cache_image_header(f, cache_ptr, &p) < 0) | ||
if (H5C__decode_cache_image_header(f, cache_ptr, &p, cache_ptr->image_len + 1) < 0) | ||
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. Why are you adding '+1' here and then '-1' in the code in H5C__decode_cache_image_header? I believe that you can remove both. 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. The +1 is the real total size of the buffer, so it makes sense to pass it here as that's what the function should expect to receive. The -1 in the function is just because of how the 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. The image_len is not the actual size of the image_buffer? 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. I'm not sure if the extra byte allocated for the cache image buffer is necessary (see H5Cimage.c ~line 622), but if that +1 was removed then this becomes simple 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. Agree - those '+1' in the allocations are incorrect. Especially since we are reading, writing, and bcasting only 'image_len' everywhere in the code. |
||
HGOTO_ERROR(H5E_CACHE, H5E_CANTDECODE, FAIL, "cache image header decode failed"); | ||
assert((size_t)(p - (uint8_t *)cache_ptr->image_buffer) < cache_ptr->image_len); | ||
|
||
|
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.
This should be
*buf + buf_size - 1
(the last valid byte in *buf), but otherwise the changes look good; thanks for this fix!