-
Notifications
You must be signed in to change notification settings - Fork 337
fix: Fix over-read and NULL deref in __hipstdpar_realloc #9372
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
Merged
Merged
Changes from all commits
Commits
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 |
|---|---|---|
| @@ -0,0 +1,159 @@ | ||
| // MIT License | ||
| // | ||
| // Copyright (c) 2026 Advanced Micro Devices, Inc. All rights reserved. | ||
| // | ||
| // Permission is hereby granted, free of charge, to any person obtaining a copy | ||
| // of this software and associated documentation files (the "Software"), to deal | ||
| // in the Software without restriction, including without limitation the rights | ||
| // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
| // copies of the Software, and to permit persons to whom the Software is | ||
| // furnished to do so, subject to the following conditions: | ||
| // | ||
| // The above copyright notice and this permission notice shall be included in all | ||
| // copies or substantial portions of the Software. | ||
| // | ||
| // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
| // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
| // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
| // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
| // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
| // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
| // SOFTWARE. | ||
|
|
||
| // Regression test for __hipstdpar_realloc, which is what std::realloc resolves | ||
| // to when translation units are compiled with --hipstdpar-interpose-alloc. | ||
| // | ||
| // The interposer used to copy n (the requested new size) bytes out of the old | ||
| // block unconditionally. Growing an allocation therefore over-read past the end | ||
| // of the old block, and realloc(nullptr, n) fed a NULL pointer straight to | ||
| // memcpy. This test exercises the fixed contract: | ||
| // * realloc(nullptr, n) behaves like malloc(n), | ||
| // * realloc(p, 0) frees p and returns nullptr, | ||
| // * growing preserves every byte of the old block (no over-read), | ||
| // * shrinking preserves the retained prefix. | ||
| // | ||
| // Interposed allocations are backed by hipMallocManaged, so the storage is | ||
| // host-accessible and the payload can be validated directly on the host. | ||
|
|
||
| #include <cstddef> | ||
| #include <cstdint> | ||
| #include <cstdlib> | ||
|
|
||
| namespace | ||
| { | ||
| // Deterministic, size-dependent fill so a stale/short copy is detectable. | ||
| std::uint8_t pattern(std::size_t i) | ||
| { | ||
| return static_cast<std::uint8_t>((i * 31u + 7u) & 0xffu); | ||
| } | ||
|
|
||
| void fill(std::uint8_t* p, std::size_t n) | ||
| { | ||
| for (std::size_t i = 0; i < n; ++i) | ||
| { | ||
| p[i] = pattern(i); | ||
| } | ||
| } | ||
|
|
||
| bool verify(const std::uint8_t* p, std::size_t n) | ||
| { | ||
| for (std::size_t i = 0; i < n; ++i) | ||
| { | ||
| if (p[i] != pattern(i)) | ||
| { | ||
| return false; | ||
| } | ||
| } | ||
| return true; | ||
| } | ||
| } // namespace | ||
|
|
||
| int main() | ||
| { | ||
| try | ||
| { | ||
| // realloc(nullptr, n) must behave like malloc(n). | ||
| { | ||
| auto p = static_cast<std::uint8_t*>(std::realloc(nullptr, 64)); | ||
| if (!p) | ||
| { | ||
| return EXIT_FAILURE; | ||
| } | ||
| fill(p, 64); | ||
| if (!verify(p, 64)) | ||
| { | ||
| return EXIT_FAILURE; | ||
| } | ||
| std::free(p); | ||
| } | ||
|
|
||
| // realloc(p, 0) must free p and return nullptr. | ||
| { | ||
| auto p = std::malloc(64); | ||
| if (!p) | ||
| { | ||
| return EXIT_FAILURE; | ||
| } | ||
| if (std::realloc(p, 0) != nullptr) | ||
| { | ||
| return EXIT_FAILURE; | ||
| } | ||
| } | ||
|
|
||
| // Growing must preserve the whole old block without over-reading past it. | ||
| { | ||
| constexpr std::size_t old_size = 32; | ||
| constexpr std::size_t new_size = 8192; | ||
|
|
||
| auto p = static_cast<std::uint8_t*>(std::malloc(old_size)); | ||
| if (!p) | ||
| { | ||
| return EXIT_FAILURE; | ||
| } | ||
| fill(p, old_size); | ||
|
|
||
| auto q = static_cast<std::uint8_t*>(std::realloc(p, new_size)); | ||
| if (!q) | ||
| { | ||
| return EXIT_FAILURE; | ||
| } | ||
| if (!verify(q, old_size)) | ||
| { | ||
| std::free(q); | ||
| return EXIT_FAILURE; | ||
| } | ||
| std::free(q); | ||
| } | ||
|
|
||
| // Shrinking must preserve the retained prefix. | ||
| { | ||
| constexpr std::size_t old_size = 8192; | ||
| constexpr std::size_t new_size = 32; | ||
|
|
||
| auto p = static_cast<std::uint8_t*>(std::malloc(old_size)); | ||
| if (!p) | ||
| { | ||
| return EXIT_FAILURE; | ||
| } | ||
| fill(p, old_size); | ||
|
|
||
| auto q = static_cast<std::uint8_t*>(std::realloc(p, new_size)); | ||
| if (!q) | ||
| { | ||
| return EXIT_FAILURE; | ||
| } | ||
| if (!verify(q, new_size)) | ||
| { | ||
| std::free(q); | ||
| return EXIT_FAILURE; | ||
| } | ||
| std::free(q); | ||
| } | ||
| } | ||
| catch (...) | ||
| { | ||
| return EXIT_FAILURE; | ||
| } | ||
|
|
||
| return EXIT_SUCCESS; | ||
| } | ||
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
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.
Uh oh!
There was an error while loading. Please reload this page.