Panic/return false on overflow in no_threads read/try_read impl#154526
Open
asder8215 wants to merge 2 commits intorust-lang:mainfrom
Open
Panic/return false on overflow in no_threads read/try_read impl#154526asder8215 wants to merge 2 commits intorust-lang:mainfrom
asder8215 wants to merge 2 commits intorust-lang:mainfrom
Conversation
Collaborator
|
rustbot has assigned @Mark-Simulacrum. Use Why was this reviewer chosen?The reviewer was selected based on:
|
This comment has been minimized.
This comment has been minimized.
72d3ad4 to
f4404dc
Compare
This comment has been minimized.
This comment has been minimized.
f4404dc to
4b0caec
Compare
Mark-Simulacrum
requested changes
Mar 29, 2026
| assert!(m == isize::MAX, "too many active read locks on RwLock"); | ||
|
|
||
| if m >= 0 { | ||
| self.mode.set(m + 1); |
Member
There was a problem hiding this comment.
Let's write this as m.checked_add(1).expect("rwlock overflowed read locks"), and same with below.
I would also move the subtraction in the unlock code to do the same. It's not as necessary, but I think it would be good to confirm we are in fact holding a read lock and should be cheap for this implementation.
Collaborator
|
Reminder, once the PR becomes ready for a review, use |
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.
As per discussion with Mark in #153555, it's possible for
no_threadsimpl ofRwLockto trigger a silent overflow onRwLock::read/RwLock::try_readif we try to acquire more thanisize::MAXread locks. This PR adds an explicit panic/return false when our read lock counter is atisize::MAXforRwLock::read/RwLock::try_read; the message is similar to that of sys/sync/rwlock/futex.rs here.