2018-11-12 12:30:35 -06:00
|
|
|
fn demo_mut_advanced_unique(our: &mut i32) -> i32 {
|
2022-06-21 13:27:44 -05:00
|
|
|
unknown_code_1(&*our);
|
2018-11-12 12:30:35 -06:00
|
|
|
|
2022-06-21 13:27:44 -05:00
|
|
|
// This "re-asserts" uniqueness of the reference: After writing, we know
|
|
|
|
// our tag is at the top of the stack.
|
|
|
|
*our = 5;
|
2018-11-12 12:30:35 -06:00
|
|
|
|
2022-06-21 13:27:44 -05:00
|
|
|
unknown_code_2();
|
2018-11-12 12:30:35 -06:00
|
|
|
|
2022-06-21 13:27:44 -05:00
|
|
|
// We know this will return 5
|
|
|
|
*our
|
2018-11-12 12:30:35 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
// Now comes the evil context
|
|
|
|
use std::ptr;
|
|
|
|
|
|
|
|
static mut LEAK: *mut i32 = ptr::null_mut();
|
|
|
|
|
2022-06-21 13:27:44 -05:00
|
|
|
fn unknown_code_1(x: &i32) {
|
|
|
|
unsafe {
|
|
|
|
LEAK = x as *const _ as *mut _;
|
|
|
|
}
|
|
|
|
}
|
2018-11-12 12:30:35 -06:00
|
|
|
|
2022-06-21 13:27:44 -05:00
|
|
|
fn unknown_code_2() {
|
|
|
|
unsafe {
|
2022-07-13 17:59:33 -05:00
|
|
|
*LEAK = 7; //~ ERROR: /write access .* tag does not exist in the borrow stack/
|
2022-06-21 13:27:44 -05:00
|
|
|
}
|
|
|
|
}
|
2018-11-12 12:30:35 -06:00
|
|
|
|
|
|
|
fn main() {
|
2018-11-21 03:19:00 -06:00
|
|
|
demo_mut_advanced_unique(&mut 0);
|
2018-11-12 12:30:35 -06:00
|
|
|
}
|