ThreadRng: fix use-after-free in TL-dtor; doc for sized iterators#1035
Merged
dhardy merged 4 commits intorust-random:masterfrom Sep 2, 2020
Merged
ThreadRng: fix use-after-free in TL-dtor; doc for sized iterators#1035dhardy merged 4 commits intorust-random:masterfrom
dhardy merged 4 commits intorust-random:masterfrom
Conversation
vks
reviewed
Sep 1, 2020
vks
reviewed
Sep 1, 2020
Contributor
|
Looks good! |
vks
approved these changes
Sep 1, 2020
RalfJung
reviewed
Sep 2, 2020
| impl ThreadRng { | ||
| #[inline(always)] | ||
| fn rng(&mut self) -> &mut ReseedingRng<Core, OsRng> { | ||
| unsafe { &mut *self.rng.get() } |
Contributor
There was a problem hiding this comment.
I think there's a subtle safety argument here: the caller is required to stop using the return mutable reference before anyone else calls this method. That is crucial to avoid aliasing mutable references.
That might be worth documenting? In particular it might be worth making the function unsafe as it is not in general safe to use by arbitrary callers.
Member
Author
There was a problem hiding this comment.
You're right of course. It's not a public function so I didn't put much thought into its signature.
This was referenced Mar 9, 2021
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.
Fixes #1022. Fixes #968 (except for 0.7 branch).
Revisiting #968, exterior access via the
rng()function is safe for variant (5). Performance impact is negligible (onnext_u32andnext_u64benchmarks). I also checked variant (4) which has a small impact.We could easily add a
safefeature to opt-out of this unsafe code, but likely that's not sensible.