Skip to content

Commit a14b1db

Browse files
committed
addr_of on places derived from raw pointers should preserve permissions
1 parent 1ef4f5d commit a14b1db

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

library/core/src/ptr/mod.rs

+5-2
Original file line numberDiff line numberDiff line change
@@ -2286,8 +2286,11 @@ impl<F: FnPtr> fmt::Debug for F {
22862286
/// use `&raw const` instead.
22872287
///
22882288
/// It is still an open question whether writing through an `addr_of!`-created pointer is permitted
2289-
/// or not. Until that is decided, the same rules as for shared references apply: it is UB to write
2290-
/// through a pointer created with this operation, except for bytes located inside an `UnsafeCell`.
2289+
/// or not. Specifically, if the place `expr` evaluates to is based on a raw pointer, then the
2290+
/// result of `addr_of!` inherits all permissions from that raw pointer. However, if the place is
2291+
/// based on a reference, local variable, or `static`, then until all details are decided, the same
2292+
/// rules as for shared references apply: it is UB to write through a pointer created with this
2293+
/// operation, except for bytes located inside an `UnsafeCell`.
22912294
///
22922295
/// Creating a reference with `&`/`&mut` is only allowed if the pointer is properly aligned
22932296
/// and points to initialized data. For cases where those requirements do not hold,

0 commit comments

Comments
 (0)