mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-09-11 08:02:36 -04:00
Originally, when the Rust upstream `alloc` standard library crate was vendored, the SPDX License Identifiers were added to every file so that the license on those was clear. The same happened with the vendoring of `proc_macro2`, `quote` and `syn`. Please see: commit057b8d2571("rust: adapt `alloc` crate to the kernel") commit69942c0a89("rust: syn: add SPDX License Identifiers") commitddfa1b279d("rust: quote: add SPDX License Identifiers") commita9acfceb96("rust: proc-macro2: add SPDX License Identifiers") Thus do the same for the `zerocopy` crate. This makes `scripts/spdxcheck.py` pass: use parentheses like commit06e9bfc1e5("ionic: make spdxcheck.py happy") did since we have two `OR` operators in the expression (three licenses). SPDX identifiers are not added to the `benches` files because they are included in rendered documentation. Nevertheless, the `README.md` to be added by a later commit mentions the license. Finally, as requested, I filed an issue [1] with upstream about it. Cc: Joshua Liebow-Feeser <joshlf@google.com> Cc: Jack Wrenn <jswrenn@google.com> Link: https://github.com/google/zerocopy/issues/3428 [1] Link: https://patch.msgid.link/20260608141439.182634-10-ojeda@kernel.org Signed-off-by: Miguel Ojeda <ojeda@kernel.org>
523 lines
20 KiB
Rust
523 lines
20 KiB
Rust
// SPDX-License-Identifier: (BSD-2-Clause OR Apache-2.0) OR MIT
|
|
|
|
// Copyright 2025 The Fuchsia Authors
|
|
//
|
|
// Licensed under a BSD-style license <LICENSE-BSD>, Apache License, Version 2.0
|
|
// <LICENSE-APACHE or https://www.apache.org/licenses/LICENSE-2.0>, or the MIT
|
|
// license <LICENSE-MIT or https://opensource.org/licenses/MIT>, at your option.
|
|
// This file may not be copied, modified, or distributed except according to
|
|
// those terms.
|
|
|
|
#![allow(missing_docs)]
|
|
|
|
use core::{
|
|
cell::{Cell, UnsafeCell},
|
|
mem::{ManuallyDrop, MaybeUninit},
|
|
num::Wrapping,
|
|
};
|
|
|
|
use crate::{
|
|
pointer::{
|
|
cast::{self, CastExact, CastSizedExact},
|
|
invariant::*,
|
|
},
|
|
FromBytes, Immutable, IntoBytes, Unalign,
|
|
};
|
|
|
|
/// Transmutations which are sound to attempt, conditional on validating the bit
|
|
/// validity of the destination type.
|
|
///
|
|
/// If a `Ptr` transmutation is `TryTransmuteFromPtr`, then it is sound to
|
|
/// perform that transmutation so long as some additional mechanism is used to
|
|
/// validate that the referent is bit-valid for the destination type. That
|
|
/// validation mechanism could be a type bound (such as `TransmuteFrom`) or a
|
|
/// runtime validity check.
|
|
///
|
|
/// # Safety
|
|
///
|
|
/// ## Post-conditions
|
|
///
|
|
/// Given `Dst: TryTransmuteFromPtr<Src, A, SV, DV, C, _>`, callers may assume
|
|
/// the following:
|
|
///
|
|
/// Given `src: Ptr<'a, Src, (A, _, SV)>`, if the referent of `src` is
|
|
/// `DV`-valid for `Dst`, then it is sound to transmute `src` into `dst: Ptr<'a,
|
|
/// Dst, (A, Unaligned, DV)>` using `C`.
|
|
///
|
|
/// ## Pre-conditions
|
|
///
|
|
/// Given `src: Ptr<Src, (A, _, SV)>` and `dst: Ptr<Dst, (A, Unaligned, DV)>`,
|
|
/// `Dst: TryTransmuteFromPtr<Src, A, SV, DV, C, _>` is sound if all of the
|
|
/// following hold:
|
|
/// - Forwards transmutation: Either of the following hold:
|
|
/// - So long as `dst` is active, no mutation of `dst`'s referent is allowed
|
|
/// except via `dst` itself
|
|
/// - The set of `DV`-valid referents of `dst` is a superset of the set of
|
|
/// `SV`-valid referents of `src` (NOTE: this condition effectively bans
|
|
/// shrinking or overwriting transmutes, which cannot satisfy this
|
|
/// condition)
|
|
/// - Reverse transmutation: Either of the following hold:
|
|
/// - `dst` does not permit mutation of its referent
|
|
/// - The set of `DV`-valid referents of `dst` is a subset of the set of
|
|
/// `SV`-valid referents of `src` (NOTE: this condition effectively bans
|
|
/// shrinking or overwriting transmutes, which cannot satisfy this
|
|
/// condition)
|
|
/// - No safe code, given access to `src` and `dst`, can cause undefined
|
|
/// behavior: Any of the following hold:
|
|
/// - `A` is `Exclusive`
|
|
/// - `Src: Immutable` and `Dst: Immutable`
|
|
/// - It is sound for shared code to operate on a `&Src` and `&Dst` which
|
|
/// reference the same byte range at the same time
|
|
///
|
|
/// ## Proof
|
|
///
|
|
/// Given:
|
|
/// - `src: Ptr<'a, Src, (A, _, SV)>`
|
|
/// - `src`'s referent is `DV`-valid for `Dst`
|
|
///
|
|
/// We are trying to prove that it is sound to perform a cast from `src` to a
|
|
/// `dst: Ptr<'a, Dst, (A, Unaligned, DV)>` using `C`. We need to prove that
|
|
/// such a cast does not violate any of `src`'s invariants, and that it
|
|
/// satisfies all invariants of the destination `Ptr` type.
|
|
///
|
|
/// First, by `C: CastExact`, `src`'s address is unchanged, so it still satisfies
|
|
/// its alignment. Since `dst`'s alignment is `Unaligned`, it trivially satisfies
|
|
/// its alignment.
|
|
///
|
|
/// Second, aliasing is either `Exclusive` or `Shared`:
|
|
/// - If it is `Exclusive`, then both `src` and `dst` satisfy `Exclusive`
|
|
/// aliasing trivially: since `src` and `dst` have the same lifetime, `src` is
|
|
/// inaccessible so long as `dst` is alive, and no other live `Ptr`s or
|
|
/// references may reference the same referent.
|
|
/// - If it is `Shared`, then either:
|
|
/// - `Src: Immutable` and `Dst: Immutable`, and so neither `src` nor `dst`
|
|
/// permit interior mutation.
|
|
/// - It is explicitly sound for safe code to operate on a `&Src` and a `&Dst`
|
|
/// pointing to the same byte range at the same time.
|
|
///
|
|
/// Third, `src`'s validity is satisfied. By invariant, `src`'s referent began
|
|
/// as an `SV`-valid `Src`. It is guaranteed to remain so, as either of the
|
|
/// following hold:
|
|
/// - `dst` does not permit mutation of its referent.
|
|
/// - The set of `DV`-valid referents of `dst` is a subset of the set of
|
|
/// `SV`-valid referents of `src`. Thus, any value written via `dst` is
|
|
/// guaranteed to be an `SV`-valid referent of `src`.
|
|
///
|
|
/// Fourth, `dst`'s validity is satisfied. It is a given of this proof that the
|
|
/// referent is `DV`-valid for `Dst`. It is guaranteed to remain so, as either
|
|
/// of the following hold:
|
|
/// - So long as `dst` is active, no mutation of the referent is allowed except
|
|
/// via `dst` itself.
|
|
/// - The set of `DV`-valid referents of `dst` is a superset of the set of
|
|
/// `SV`-valid referents of `src`. Thus, any value written via `src` is
|
|
/// guaranteed to be a `DV`-valid referent of `dst`.
|
|
pub unsafe trait TryTransmuteFromPtr<
|
|
Src: ?Sized,
|
|
A: Aliasing,
|
|
SV: Validity,
|
|
DV: Validity,
|
|
C: CastExact<Src, Self>,
|
|
R,
|
|
>
|
|
{
|
|
}
|
|
|
|
#[allow(missing_copy_implementations, missing_debug_implementations)]
|
|
pub enum BecauseMutationCompatible {}
|
|
|
|
// SAFETY:
|
|
// - Forwards transmutation: By `Dst: MutationCompatible<Src, A, SV, DV, _>`, we
|
|
// know that at least one of the following holds:
|
|
// - So long as `dst: Ptr<Dst>` is active, no mutation of its referent is
|
|
// allowed except via `dst` itself if either of the following hold:
|
|
// - Aliasing is `Exclusive`, in which case, so long as the `Dst` `Ptr`
|
|
// exists, no mutation is permitted except via that `Ptr`
|
|
// - Aliasing is `Shared`, `Src: Immutable`, and `Dst: Immutable`, in which
|
|
// case no mutation is possible via either `Ptr`
|
|
// - Since the underlying cast is size-preserving, `dst` addresses the same
|
|
// referent as `src`. By `Dst: TransmuteFrom<Src, SV, DV>`, the set of
|
|
// `DV`-valid referents of `dst` is a superset of the set of `SV`-valid
|
|
// referents of `src`.
|
|
// - Reverse transmutation: Since the underlying cast is size-preserving, `dst`
|
|
// addresses the same referent as `src`. By `Src: TransmuteFrom<Dst, DV, SV>`,
|
|
// the set of `DV`-valid referents of `src` is a subset of the set of
|
|
// `SV`-valid referents of `dst`.
|
|
// - No safe code, given access to `src` and `dst`, can cause undefined
|
|
// behavior: By `Dst: MutationCompatible<Src, A, SV, DV, _>`, at least one of
|
|
// the following holds:
|
|
// - `A` is `Exclusive`
|
|
// - `Src: Immutable` and `Dst: Immutable`
|
|
// - `Dst: InvariantsEq<Src>`, which guarantees that `Src` and `Dst` have the
|
|
// same invariants, and permit interior mutation on the same byte ranges
|
|
unsafe impl<Src, Dst, SV, DV, A, C, R>
|
|
TryTransmuteFromPtr<Src, A, SV, DV, C, (BecauseMutationCompatible, R)> for Dst
|
|
where
|
|
A: Aliasing,
|
|
SV: Validity,
|
|
DV: Validity,
|
|
Src: TransmuteFrom<Dst, DV, SV> + ?Sized,
|
|
Dst: MutationCompatible<Src, A, SV, DV, R> + ?Sized,
|
|
C: CastExact<Src, Dst>,
|
|
{
|
|
}
|
|
|
|
// SAFETY:
|
|
// - Forwards transmutation: Since aliasing is `Shared` and `Src: Immutable`,
|
|
// `src` does not permit mutation of its referent.
|
|
// - Reverse transmutation: Since aliasing is `Shared` and `Dst: Immutable`,
|
|
// `dst` does not permit mutation of its referent.
|
|
// - No safe code, given access to `src` and `dst`, can cause undefined
|
|
// behavior: `Src: Immutable` and `Dst: Immutable`
|
|
unsafe impl<Src, Dst, SV, DV, C> TryTransmuteFromPtr<Src, Shared, SV, DV, C, BecauseImmutable>
|
|
for Dst
|
|
where
|
|
SV: Validity,
|
|
DV: Validity,
|
|
Src: Immutable + ?Sized,
|
|
Dst: Immutable + ?Sized,
|
|
C: CastExact<Src, Dst>,
|
|
{
|
|
}
|
|
|
|
/// Denotes that `src: Ptr<Src, (A, _, SV)>` and `dst: Ptr<Self, (A, _, DV)>`,
|
|
/// referencing the same referent at the same time, cannot be used by safe code
|
|
/// to break library safety invariants of `Src` or `Self`.
|
|
///
|
|
/// # Safety
|
|
///
|
|
/// At least one of the following must hold:
|
|
/// - `Src: Read<A, _>` and `Self: Read<A, _>`
|
|
/// - `Self: InvariantsEq<Src>`, and, for some `V`:
|
|
/// - `Dst: TransmuteFrom<Src, V, V>`
|
|
/// - `Src: TransmuteFrom<Dst, V, V>`
|
|
pub unsafe trait MutationCompatible<Src: ?Sized, A: Aliasing, SV, DV, R> {}
|
|
|
|
#[allow(missing_copy_implementations, missing_debug_implementations)]
|
|
pub enum BecauseRead {}
|
|
|
|
// SAFETY: `Src: Read<A, _>` and `Dst: Read<A, _>`.
|
|
unsafe impl<Src: ?Sized, Dst: ?Sized, A: Aliasing, SV: Validity, DV: Validity, R>
|
|
MutationCompatible<Src, A, SV, DV, (BecauseRead, R)> for Dst
|
|
where
|
|
Src: Read<A, R>,
|
|
Dst: Read<A, R>,
|
|
{
|
|
}
|
|
|
|
/// Denotes that two types have the same invariants.
|
|
///
|
|
/// # Safety
|
|
///
|
|
/// It is sound for safe code to operate on a `&T` and a `&Self` pointing to the
|
|
/// same referent at the same time - no such safe code can cause undefined
|
|
/// behavior.
|
|
pub unsafe trait InvariantsEq<T: ?Sized> {}
|
|
|
|
// SAFETY: Trivially sound to have multiple `&T` pointing to the same referent.
|
|
unsafe impl<T: ?Sized> InvariantsEq<T> for T {}
|
|
|
|
// SAFETY: `Dst: InvariantsEq<Src> + TransmuteFrom<Src, SV, DV>`, and `Src:
|
|
// TransmuteFrom<Dst, DV, SV>`.
|
|
unsafe impl<Src: ?Sized, Dst: ?Sized, A: Aliasing, SV: Validity, DV: Validity>
|
|
MutationCompatible<Src, A, SV, DV, BecauseInvariantsEq> for Dst
|
|
where
|
|
Src: TransmuteFrom<Dst, DV, SV>,
|
|
Dst: TransmuteFrom<Src, SV, DV> + InvariantsEq<Src>,
|
|
{
|
|
}
|
|
|
|
#[allow(missing_debug_implementations, missing_copy_implementations)]
|
|
pub enum BecauseInvariantsEq {}
|
|
|
|
macro_rules! unsafe_impl_invariants_eq {
|
|
($tyvar:ident => $t:ty, $u:ty) => {{
|
|
crate::util::macros::__unsafe();
|
|
// SAFETY: The caller promises that this is sound.
|
|
unsafe impl<$tyvar> InvariantsEq<$t> for $u {}
|
|
// SAFETY: The caller promises that this is sound.
|
|
unsafe impl<$tyvar> InvariantsEq<$u> for $t {}
|
|
}};
|
|
}
|
|
|
|
impl_transitive_transmute_from!(T => MaybeUninit<T> => T => Wrapping<T>);
|
|
impl_transitive_transmute_from!(T => Wrapping<T> => T => MaybeUninit<T>);
|
|
|
|
// SAFETY: `ManuallyDrop<T>` has the same size and bit validity as `T` [1], and
|
|
// implements `Deref<Target = T>` [2]. Thus, it is already possible for safe
|
|
// code to obtain a `&T` and a `&ManuallyDrop<T>` to the same referent at the
|
|
// same time.
|
|
//
|
|
// [1] Per https://doc.rust-lang.org/1.81.0/std/mem/struct.ManuallyDrop.html:
|
|
//
|
|
// `ManuallyDrop<T>` is guaranteed to have the same layout and bit
|
|
// validity as `T`
|
|
//
|
|
// [2] https://doc.rust-lang.org/1.81.0/std/mem/struct.ManuallyDrop.html#impl-Deref-for-ManuallyDrop%3CT%3E
|
|
unsafe impl<T: ?Sized> InvariantsEq<T> for ManuallyDrop<T> {}
|
|
// SAFETY: See previous safety comment.
|
|
unsafe impl<T: ?Sized> InvariantsEq<ManuallyDrop<T>> for T {}
|
|
|
|
/// Transmutations which are always sound.
|
|
///
|
|
/// `TransmuteFromPtr` is a shorthand for [`TryTransmuteFromPtr`] and
|
|
/// [`TransmuteFrom`].
|
|
///
|
|
/// # Safety
|
|
///
|
|
/// `Dst: TransmuteFromPtr<Src, A, SV, DV, _>` is equivalent to `Dst:
|
|
/// TryTransmuteFromPtr<Src, A, SV, DV, _> + TransmuteFrom<Src, SV, DV>`.
|
|
pub unsafe trait TransmuteFromPtr<
|
|
Src: ?Sized,
|
|
A: Aliasing,
|
|
SV: Validity,
|
|
DV: Validity,
|
|
C: CastExact<Src, Self>,
|
|
R,
|
|
>: TryTransmuteFromPtr<Src, A, SV, DV, C, R> + TransmuteFrom<Src, SV, DV>
|
|
{
|
|
}
|
|
|
|
// SAFETY: The `where` bounds are equivalent to the safety invariant on
|
|
// `TransmuteFromPtr`.
|
|
unsafe impl<
|
|
Src: ?Sized,
|
|
Dst: ?Sized,
|
|
A: Aliasing,
|
|
SV: Validity,
|
|
DV: Validity,
|
|
C: CastExact<Src, Dst>,
|
|
R,
|
|
> TransmuteFromPtr<Src, A, SV, DV, C, R> for Dst
|
|
where
|
|
Dst: TransmuteFrom<Src, SV, DV> + TryTransmuteFromPtr<Src, A, SV, DV, C, R>,
|
|
{
|
|
}
|
|
|
|
/// Denotes that any `SV`-valid `Src` may soundly be transmuted into a
|
|
/// `DV`-valid `Self`.
|
|
///
|
|
/// # Safety
|
|
///
|
|
/// Given `src: Ptr<Src, (_, _, SV)>` and `dst: Ptr<Dst, (_, _, DV)>`, if the
|
|
/// referents of `src` and `dst` are the same size, then the set of bit patterns
|
|
/// allowed to appear in `src`'s referent must be a subset of the set allowed to
|
|
/// appear in `dst`'s referent.
|
|
///
|
|
/// If the referents are not the same size, then `Dst: TransmuteFrom<Src, SV,
|
|
/// DV>` conveys no safety guarantee.
|
|
pub unsafe trait TransmuteFrom<Src: ?Sized, SV, DV> {}
|
|
|
|
/// Carries the ability to perform a size-preserving cast or conversion from a
|
|
/// raw pointer to `Src` to a raw pointer to `Self`.
|
|
///
|
|
/// The cast/conversion is carried by the associated [`CastFrom`] type, and
|
|
/// may be a no-op cast (without updating pointer metadata) or a conversion
|
|
/// which updates pointer metadata.
|
|
///
|
|
/// # Safety
|
|
///
|
|
/// `SizeEq` on its own conveys no safety guarantee. Any safety guarantees come
|
|
/// from the safety invariants on the associated [`CastFrom`] type, specifically
|
|
/// the [`CastExact`] bound.
|
|
///
|
|
/// [`CastFrom`]: SizeEq::CastFrom
|
|
/// [`CastExact`]: CastExact
|
|
pub trait SizeEq<Src: ?Sized> {
|
|
type CastFrom: CastExact<Src, Self>;
|
|
}
|
|
|
|
impl<T: ?Sized> SizeEq<T> for T {
|
|
type CastFrom = cast::IdCast;
|
|
}
|
|
|
|
// SAFETY: Since `Src: IntoBytes`, the set of valid `Src`'s is the set of
|
|
// initialized bit patterns, which is exactly the set allowed in the referent of
|
|
// any `Initialized` `Ptr`.
|
|
unsafe impl<Src, Dst> TransmuteFrom<Src, Valid, Initialized> for Dst
|
|
where
|
|
Src: IntoBytes + ?Sized,
|
|
Dst: ?Sized,
|
|
{
|
|
}
|
|
|
|
// SAFETY: Since `Dst: FromBytes`, any initialized bit pattern may appear in the
|
|
// referent of a `Ptr<Dst, (_, _, Valid)>`. This is exactly equal to the set of
|
|
// bit patterns which may appear in the referent of any `Initialized` `Ptr`.
|
|
unsafe impl<Src, Dst> TransmuteFrom<Src, Initialized, Valid> for Dst
|
|
where
|
|
Src: ?Sized,
|
|
Dst: FromBytes + ?Sized,
|
|
{
|
|
}
|
|
|
|
// FIXME(#2354): This seems like a smell - the soundness of this bound has
|
|
// nothing to do with `Src` or `Dst` - we're basically just saying `[u8; N]` is
|
|
// transmutable into `[u8; N]`.
|
|
|
|
// SAFETY: The set of allowed bit patterns in the referent of any `Initialized`
|
|
// `Ptr` is the same regardless of referent type.
|
|
unsafe impl<Src, Dst> TransmuteFrom<Src, Initialized, Initialized> for Dst
|
|
where
|
|
Src: ?Sized,
|
|
Dst: ?Sized,
|
|
{
|
|
}
|
|
|
|
// FIXME(#2354): This seems like a smell - the soundness of this bound has
|
|
// nothing to do with `Dst` - we're basically just saying that any type is
|
|
// transmutable into `MaybeUninit<[u8; N]>`.
|
|
|
|
// SAFETY: A `Dst` with validity `Uninit` permits any byte sequence, and
|
|
// therefore can be transmuted from any value.
|
|
unsafe impl<Src, Dst, V> TransmuteFrom<Src, V, Uninit> for Dst
|
|
where
|
|
Src: ?Sized,
|
|
Dst: ?Sized,
|
|
V: Validity,
|
|
{
|
|
}
|
|
|
|
// SAFETY:
|
|
// - `ManuallyDrop<T>` has the same size as `T` [1]
|
|
// - `ManuallyDrop<T>` has the same validity as `T` [1]
|
|
//
|
|
// [1] Per https://doc.rust-lang.org/1.81.0/std/mem/struct.ManuallyDrop.html:
|
|
//
|
|
// `ManuallyDrop<T>` is guaranteed to have the same layout and bit validity as
|
|
// `T`
|
|
#[allow(clippy::multiple_unsafe_ops_per_block)]
|
|
const _: () = unsafe { unsafe_impl_for_transparent_wrapper!(pub T: ?Sized => ManuallyDrop<T>) };
|
|
|
|
// SAFETY:
|
|
// - `Unalign<T>` promises to have the same size as `T`.
|
|
// - `Unalign<T>` promises to have the same validity as `T`.
|
|
#[allow(clippy::multiple_unsafe_ops_per_block)]
|
|
const _: () = unsafe { unsafe_impl_for_transparent_wrapper!(pub T => Unalign<T>) };
|
|
// SAFETY: `Unalign<T>` promises to have the same size and validity as `T`.
|
|
// Given `u: &Unalign<T>`, it is already possible to obtain `let t =
|
|
// u.try_deref().unwrap()`. Because `Unalign<T>` has the same size as `T`, the
|
|
// returned `&T` must point to the same referent as `u`, and thus it must be
|
|
// sound for these two references to exist at the same time since it's already
|
|
// possible for safe code to get into this state.
|
|
#[allow(clippy::multiple_unsafe_ops_per_block)]
|
|
const _: () = unsafe { unsafe_impl_invariants_eq!(T => T, Unalign<T>) };
|
|
|
|
// SAFETY:
|
|
// - `Wrapping<T>` has the same size as `T` [1].
|
|
// - `Wrapping<T>` has only one field, which is `pub` [2]. We are also
|
|
// guaranteed per that `Wrapping<T>` has the same layout as `T` [1]. The only
|
|
// way for both of these to be true simultaneously is for `Wrapping<T>` to
|
|
// have the same bit validity as `T`. In particular, in order to change the
|
|
// bit validity, one of the following would need to happen:
|
|
// - `Wrapping` could change its `repr`, but this would violate the layout
|
|
// guarantee.
|
|
// - `Wrapping` could add or change its fields, but this would be a
|
|
// stability-breaking change.
|
|
//
|
|
// [1] Per https://doc.rust-lang.org/1.85.0/core/num/struct.Wrapping.html#layout-1:
|
|
//
|
|
// `Wrapping<T>` is guaranteed to have the same layout and ABI as `T`.
|
|
//
|
|
// [2] Definition from https://doc.rust-lang.org/1.85.0/core/num/struct.Wrapping.html:
|
|
//
|
|
// ```
|
|
// #[repr(transparent)]
|
|
// pub struct Wrapping<T>(pub T);
|
|
// ```
|
|
#[allow(clippy::multiple_unsafe_ops_per_block)]
|
|
const _: () = unsafe { unsafe_impl_for_transparent_wrapper!(pub T => Wrapping<T>) };
|
|
|
|
// SAFETY: By the preceding safety proof, `Wrapping<T>` and `T` have the same
|
|
// layout and bit validity. Since a `Wrapping<T>`'s `T` field is `pub`, given
|
|
// `w: &Wrapping<T>`, it's possible to do `let t = &w.t`, which means that it's
|
|
// already possible for safe code to obtain a `&Wrapping<T>` and a `&T` pointing
|
|
// to the same referent at the same time. Thus, this must be sound.
|
|
#[allow(clippy::multiple_unsafe_ops_per_block)]
|
|
const _: () = unsafe { unsafe_impl_invariants_eq!(T => T, Wrapping<T>) };
|
|
|
|
// SAFETY:
|
|
// - `UnsafeCell<T>` has the same size as `T` [1].
|
|
// - Per [1], `UnsafeCell<T>` has the same bit validity as `T`. Technically the
|
|
// term "representation" doesn't guarantee this, but the subsequent sentence
|
|
// in the documentation makes it clear that this is the intention.
|
|
//
|
|
// [1] Per https://doc.rust-lang.org/1.81.0/core/cell/struct.UnsafeCell.html#memory-layout:
|
|
//
|
|
// `UnsafeCell<T>` has the same in-memory representation as its inner type
|
|
// `T`. A consequence of this guarantee is that it is possible to convert
|
|
// between `T` and `UnsafeCell<T>`.
|
|
#[allow(clippy::multiple_unsafe_ops_per_block)]
|
|
const _: () = unsafe { unsafe_impl_for_transparent_wrapper!(pub T: ?Sized => UnsafeCell<T>) };
|
|
|
|
// SAFETY:
|
|
// - `Cell<T>` has the same size as `T` [1].
|
|
// - Per [1], `Cell<T>` has the same bit validity as `T`. Technically the term
|
|
// "representation" doesn't guarantee this, but it does promise to have the
|
|
// "same memory layout and caveats as `UnsafeCell<T>`." The `UnsafeCell` docs
|
|
// [2] make it clear that bit validity is the intention even if that phrase
|
|
// isn't used.
|
|
//
|
|
// [1] Per https://doc.rust-lang.org/1.85.0/std/cell/struct.Cell.html#memory-layout:
|
|
//
|
|
// `Cell<T>` has the same memory layout and caveats as `UnsafeCell<T>`. In
|
|
// particular, this means that `Cell<T>` has the same in-memory representation
|
|
// as its inner type `T`.
|
|
//
|
|
// [2] Per https://doc.rust-lang.org/1.81.0/core/cell/struct.UnsafeCell.html#memory-layout:
|
|
//
|
|
// `UnsafeCell<T>` has the same in-memory representation as its inner type
|
|
// `T`. A consequence of this guarantee is that it is possible to convert
|
|
// between `T` and `UnsafeCell<T>`.
|
|
#[allow(clippy::multiple_unsafe_ops_per_block)]
|
|
const _: () = unsafe { unsafe_impl_for_transparent_wrapper!(pub T: ?Sized => Cell<T>) };
|
|
|
|
impl_transitive_transmute_from!(T: ?Sized => Cell<T> => T => UnsafeCell<T>);
|
|
impl_transitive_transmute_from!(T: ?Sized => UnsafeCell<T> => T => Cell<T>);
|
|
|
|
// SAFETY: `MaybeUninit<T>` has no validity requirements. Currently this is not
|
|
// explicitly guaranteed, but it's obvious from `MaybeUninit`'s documentation
|
|
// that this is the intention:
|
|
// https://doc.rust-lang.org/1.85.0/core/mem/union.MaybeUninit.html
|
|
unsafe impl<T> TransmuteFrom<T, Uninit, Valid> for MaybeUninit<T> {}
|
|
|
|
impl<T> SizeEq<T> for MaybeUninit<T> {
|
|
type CastFrom = CastSizedExact;
|
|
}
|
|
|
|
impl<T> SizeEq<MaybeUninit<T>> for T {
|
|
type CastFrom = CastSizedExact;
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use super::*;
|
|
use crate::pointer::cast::Project as _;
|
|
|
|
fn test_size_eq<Src, Dst: SizeEq<Src>>(mut src: Src) {
|
|
let _: *mut Dst =
|
|
<Dst as SizeEq<Src>>::CastFrom::project(crate::pointer::PtrInner::from_mut(&mut src));
|
|
}
|
|
|
|
#[test]
|
|
fn test_transmute_coverage() {
|
|
// SizeEq<T> for MaybeUninit<T>
|
|
test_size_eq::<u8, MaybeUninit<u8>>(0u8);
|
|
|
|
// SizeEq<MaybeUninit<T>> for T
|
|
test_size_eq::<MaybeUninit<u8>, u8>(MaybeUninit::<u8>::new(0));
|
|
|
|
// Transitive: MaybeUninit<T> -> Wrapping<T>
|
|
// T => MaybeUninit<T> => T => Wrapping<T>
|
|
test_size_eq::<u8, Wrapping<u8>>(0u8);
|
|
|
|
// T => Wrapping<T> => T => MaybeUninit<T>
|
|
test_size_eq::<Wrapping<u8>, MaybeUninit<u8>>(Wrapping(0u8));
|
|
|
|
// T: ?Sized => Cell<T> => T => UnsafeCell<T>
|
|
test_size_eq::<Cell<u8>, UnsafeCell<u8>>(Cell::new(0u8));
|
|
|
|
// T: ?Sized => UnsafeCell<T> => T => Cell<T>
|
|
test_size_eq::<UnsafeCell<u8>, Cell<u8>>(UnsafeCell::new(0u8));
|
|
}
|
|
}
|