monitoring: fix race condition on New* variable functions #339
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.
Resolves a race condition in the
monitoring.New*functions that could cause apanicduring concurrent variable creation.The Problem
The
New*constructor functions are intended to be goroutine-safe. However, the logic to first check if a variable exists and then create it is not an atomic operation. This creates a race condition where multiple goroutines can simultaneously determine that a variable does not exist and then all attempt to create it.This leads to a
panicin the following scenario:NewUint, checks for the variable, and sees it doesn't exist.NewUint, also checks for the variable, and sees it doesn't exist.addVarand successfully creates the new variable.addVar. Since the variable now exists (created by Goroutine B),addVarpanics.The Solution
This PR resolves the race condition by wrapping the entire "check-and-create" sequence within a single lock. This ensures that the check for a variable's existence and its subsequent creation are performed atomically, preventing other goroutines from interfering and causing a panic.
Also a benchmark was added to ensure the new synchronisation does not have a significant impact:
To reproduce the results:
Checklist
Related issues