fix race in JoinFuture::poll when waker changes between notified check and waiters list update#104
Open
morgangallant wants to merge 1 commit intoarthurprs:masterfrom
Open
fix race in JoinFuture::poll when waker changes between notified check and waiters list update#104morgangallant wants to merge 1 commit intoarthurprs:masterfrom
morgangallant wants to merge 1 commit intoarthurprs:masterfrom
Conversation
Signed-off-by: Morgan Gallant <morgan@morgangallant.com>
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Hi there — thanks for making such a lovely crate! Ran into an issue upgrading from 0.6.2 -> 0.6.18, spent a bit of time trying to get to the bottom of this. Specifically, managed to hit this unchecked_unreachable.
I think the issue is: When a pending JoinFuture is re-polled with a different waker, poll() checks
notifiedwithout holding the state lock, then acquires the lock to update its entry in the waiters list. A concurrent insert can drain the waiters list between these two operations, leaving the find to fail and hit the unreachable.Had Claude put together a reproduction script, which consistently hits this unreachable without this fix:
(Apologies if I'm off the mark here, would love any input + help here!)