-
Notifications
You must be signed in to change notification settings - Fork 522
[API] Fix -Werror=alloc-size-larger-than= warning in runtime_context.h #3709
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
marcalff
merged 2 commits into
open-telemetry:main
from
marcalff:fix_runtime_context_warning
Oct 23, 2025
Merged
Changes from all commits
Commits
Show all changes
2 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -241,6 +241,26 @@ class ThreadLocalContextStorage : public RuntimeContextStorage | |
| { | ||
| friend class ThreadLocalContextStorage; | ||
|
|
||
| /** | ||
| * Limit the max stack depth. | ||
| * The stack will still work beyond this limit, | ||
| * counting push() and pop() properly, | ||
| * but will not record contexts. | ||
| * | ||
| * In practice, this should not affect instrumented applications, | ||
| * the limit is set to 1 million nested scopes. | ||
| * | ||
| * The whole reason for this limit to exist is to prevent | ||
| * compiler warnings like: | ||
| * error: argument 1 value ‘18446744073709551615’ | ||
| * exceeds maximum object size 9223372036854775807 | ||
| * [-Werror=alloc-size-larger-than=] | ||
| * on this line of code: | ||
| * Context *temp = new Context[new_capacity]; | ||
| * when compiling with gcc and optimizations (-flto). | ||
| */ | ||
| static constexpr size_t max_capacity_ = 1000000; | ||
|
|
||
| Stack() noexcept : size_(0), capacity_(0), base_(nullptr) {} | ||
|
|
||
| // Pops the top Context off the stack. | ||
|
|
@@ -250,6 +270,11 @@ class ThreadLocalContextStorage : public RuntimeContextStorage | |
| { | ||
| return; | ||
| } | ||
| if (size_ > max_capacity_) | ||
| { | ||
| size_ -= 1; | ||
| return; | ||
| } | ||
| // Store empty Context before decrementing `size`, to ensure | ||
| // the shared_ptr object (if stored in prev context object ) are released. | ||
| // The stack is not resized, and the unused memory would be reutilised | ||
|
|
@@ -278,6 +303,10 @@ class ThreadLocalContextStorage : public RuntimeContextStorage | |
| { | ||
| return Context(); | ||
| } | ||
| if (size_ > max_capacity_) | ||
| { | ||
| return Context(); | ||
| } | ||
| return base_[size_ - 1]; | ||
| } | ||
|
|
||
|
|
@@ -286,6 +315,10 @@ class ThreadLocalContextStorage : public RuntimeContextStorage | |
| void Push(const Context &context) noexcept | ||
| { | ||
| size_++; | ||
| if (size_ > max_capacity_) | ||
| { | ||
| return; | ||
| } | ||
| if (size_ > capacity_) | ||
| { | ||
| Resize(size_ * 2); | ||
|
Contributor
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. @marcalff |
||
|
|
@@ -299,8 +332,14 @@ class ThreadLocalContextStorage : public RuntimeContextStorage | |
| size_t old_size = size_ - 1; | ||
| if (new_capacity == 0) | ||
| { | ||
| // First increase | ||
| new_capacity = 2; | ||
| } | ||
| if (new_capacity > max_capacity_) | ||
| { | ||
| // Last increase | ||
| new_capacity = max_capacity_; | ||
| } | ||
| Context *temp = new Context[new_capacity]; | ||
| if (base_ != nullptr) | ||
| { | ||
|
|
||
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.
Just curious - should it return the last valid context, instead of empty one ?
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.
Good question.
In my understanding,
Scopewill attach and detach contexts on creation and destruction, adding/removing from the stack.If the code returns the last valid context, then we will have:
So, I think
Top()andPop()should return an empty context instead, once the stack depth goes beyond the limit.This is very theoretical, because any process with 1 million nested scopes in the call stack will never reach this point, being long dead, already killed for other reasons (stack overflow, out of memory).