Fix thread safety issues around the cursor and cursor sprites in the OpenGL backends #8993
+26
−9
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.
Motivation / Problem
The main/OpenGL thread unnecessarily gets the cursor sprites from the global sprite cache without holding any locks.
The OpenGL does cache the cursor sprites along with the associated sprite data, but it still looks up some of the sprite properties form the sprite cache each time.
The sprite cache, sprite processing and everything to do with fio cannot be used from more than one thread at once.
In the case where the cursor sprites are already in the cache this results in the race conditions listed in #8870.
In the case where the cursor sprites need to be added to the cache the additional race conditions listed below occur.
In the case where two threads end up writing sprites into the sprite cache at the same time, such as after the sprite cache has been cleared, the two threads writing over each other could cause the sort of invalid state induced crash seen in #8977.
Additionally, a number of cursor state properties are accessed without holding the required lock.
Additional race conditions when OpenGLBackend::DrawMouseCursor inserts a sprite into the cache
Description
Remove all direct accesses to _cursor and the sprite cache from the parts of the OpenGL code where the lock is not held.
Cache additional cursor properties as required.
Retrieve the cursor sprite properties from the local copy of the sprites, not the sprite cache sprite.
Limitations
This doesn't address the other race conditions, however the other ones that I've found so far are less important.
Checklist for review
Some things are not automated, and forgotten often. This list is a reminder for the reviewers.