Scoped cache broken due to operator== ABA problem #409
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.
See the wikipedia description for the ABA problem.
At some point, ReferenceCount was updated to implement IEquatable (possibly because code analysis said this is a good idea). This changed
operator ==
from the default which tests whether two references of that type refer to the same object, to comparing for field equality.This broke the
Scoped
class. Specifically, this line and this line are now susceptible to the ABA problem because the equality operator is checking field values:if (oldRefCount == Interlocked.CompareExchange(ref this.refCount, oldRefCount.IncrementCopy(), oldRefCount))
This issue does not affect SingletonCache, because it does not depend on
operator==
oroperator!=
.There was a further bug in
Scoped.DecrementReferenceCount()
caused by reading a stale value ofthis.refCount.Count
after it was replaced by a compare exchange call.