-
Notifications
You must be signed in to change notification settings - Fork 4.8k
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
Cleanup internal ComWrappers cache when object enters Finalization queue #52771
Merged
AaronRobinsonMSFT
merged 9 commits into
dotnet:main
from
AaronRobinsonMSFT:cleanup_cache
May 25, 2021
Merged
Cleanup internal ComWrappers cache when object enters Finalization queue #52771
AaronRobinsonMSFT
merged 9 commits into
dotnet:main
from
AaronRobinsonMSFT:cleanup_cache
May 25, 2021
Conversation
This file contains 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
Failure is #52710 |
elinor-fung
reviewed
May 25, 2021
elinor-fung
approved these changes
May 25, 2021
is an option remove the use of Detach in the IsActive logic and narrow its use to the cache cleanup scenario only.
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
The
ComWrappers
API has a deficiency/race during native object wrapper (RCW) cleanup. This is rare but has been observed in tight loops with complex object types. The scenario occurs when native object A is freed, its memory is reused for native object B, and that memory is provided back to the runtime but the previous mapping remains to the wrapper for native object A. The issue occurs based on an incorrect expectation between when the RCW's Finalizer will run and when the mapping between nativeIUnknown*
to RCW will be removed from the internal cache.The solution is to remove the mapping when the RCW itself is scheduled for Finalization.
The issue was reported at microsoft/CsWinRT#762.
Additional issues
Fixes #53160