Merge pull request #699 from RalfJung/stacked-borrows-2

test another version of 'creating a shared ref must not leak the Unique'
This commit is contained in:
Oliver Scherer 2019-04-19 09:55:44 +02:00 committed by GitHub
commit f26c2cb4eb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 25 additions and 0 deletions

View file

@ -625,6 +625,11 @@ trait EvalContextPrivExt<'a, 'mir, 'tcx: 'a+'mir>: crate::MiriEvalContextExt<'a,
};
// Reborrow.
// TODO: With `two_phase == true`, this performs a weak reborrow for a `Unique`. That
// can lead to some possibly surprising effects, if the parent permission is
// `SharedReadWrite` then we now have a `Unique` in the middle of them, which "splits"
// them in terms of what remains valid when the `Unique` gets used. Is that really
// what we want?
this.reborrow(place, size, kind, new_tag, /*force_weak:*/ two_phase, protect)?;
let new_place = place.replace_tag(new_tag);
// Handle two-phase borrows.

View file

@ -0,0 +1,20 @@
// Creating a shared reference does not leak the data to raw pointers,
// not even when interior mutability is involved.
use std::cell::Cell;
use std::ptr;
fn main() { unsafe {
let x = &mut Cell::new(0);
let raw = x as *mut Cell<i32>;
let x = &mut *raw;
let _shr = &*x;
// The state here is interesting because the top of the stack is [Unique, SharedReadWrite],
// just like if we had done `x as *mut _`.
// If we said that reading from a lower item is fine if the top item is `SharedReadWrite`
// (one way to maybe preserve a stack discipline), then we could now read from `raw`
// without invalidating `x`. That would be bad! It would mean that creating `shr`
// leaked `x` to `raw`.
let _val = ptr::read(raw);
let _val = *x.get_mut(); //~ ERROR borrow stack
} }