[lldb][TypeSystem] ForEach: Don't hold the TypeSystemMap lock across callback #6780
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
TypeSystemMap::m_mutexguards against concurrent modifications of members ofTypeSystemMap. In particular,m_map.TypeSystemMap::ForEachiterates through the entirem_mapcalling a user-specified callback for each entry. This is all done whilem_mutexis locked. However, there's nothing that guarantees that the callback itself won't call back intoTypeSystemMapAPIs on the same thread. This lead to double-lockingm_mutex, which is undefined behaviour. We've seen this cause a deadlock in the swift plugin with following backtrace:Our solution is to simply iterate over a local copy of
m_map.Testing
Differential Revision: https://reviews.llvm.org/D149949
(cherry picked from commit dda3a6a)