You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I observed that in the following code snippet, although it does not violate the current documented safety requirements of Box::from_raw, it ultimately triggers two instances of Undefined Behavior (UB):
Invalid memory layout during deallocation (when Drop)
Usage of invalid UTF-8 bytes (if print)
Although the cast from [u8] to *mut str seems to be the root cause, it requires no unsafe block and can compile successfully. These UBs appear only when the user constructs Box<str> with Box::from_raw.
Dose this suggest that the current safety documentation for Box::from_raw is incomplete? Should we explicitly mandate that the caller must ensure the memory contains valid UTF-8 when constructing Box<str>?
This UB is documented. The from_raw documentation says:
The safety conditions are described in the memory layout section. And the memory layout section says:
On top of these basic layout requirements, a Box must point to a valid value of T.
Which is not true in this case and thus you are violating the safety requirements of from_raw.
Invalid memory layout during deallocation (when Drop)
This is because of the cast. boxed_slice is of type Box<[[u8; 3]]> and has length 1. It is not of type Box<[u8]> with length 3. When you cast this to Box<str> you inherit length 1. If you want to get from Box::new([0xFFu8, 0xFE, 0xFD]) to *mut str, the correct way is to do Box::into_raw(invalid_bytes as Box<[u8]>) as *mut str.
I observed that in the following code snippet, although it does not violate the current documented safety requirements of Box::from_raw, it ultimately triggers two instances of Undefined Behavior (UB):
Although the cast from
[u8]
to*mut str
seems to be the root cause, it requires nounsafe
block and can compile successfully. These UBs appear only when the user constructsBox<str>
withBox::from_raw
.Dose this suggest that the current safety documentation for
Box::from_raw
is incomplete? Should we explicitly mandate that the caller must ensure the memory contains valid UTF-8 when constructingBox<str>
?Miri will detect:
The text was updated successfully, but these errors were encountered: