zerocopy/impls.rs
1// Copyright 2024 The Fuchsia Authors
2//
3// Licensed under the 2-Clause BSD License <LICENSE-BSD or
4// https://opensource.org/license/bsd-2-clause>, Apache License, Version 2.0
5// <LICENSE-APACHE or https://www.apache.org/licenses/LICENSE-2.0>, or the MIT
6// license <LICENSE-MIT or https://opensource.org/licenses/MIT>, at your option.
7// This file may not be copied, modified, or distributed except according to
8// those terms.
9
10use core::{
11 cell::{Cell, UnsafeCell},
12 mem::MaybeUninit as CoreMaybeUninit,
13 ptr::NonNull,
14};
15
16use super::*;
17use crate::pointer::cast::{CastSizedExact, CastUnsized};
18
19// SAFETY: Per the reference [1], "the unit tuple (`()`) ... is guaranteed as a
20// zero-sized type to have a size of 0 and an alignment of 1."
21// - `Immutable`: `()` self-evidently does not contain any `UnsafeCell`s.
22// - `TryFromBytes` (with no validator), `FromZeros`, `FromBytes`: There is only
23// one possible sequence of 0 bytes, and `()` is inhabited.
24// - `IntoBytes`: Since `()` has size 0, it contains no padding bytes.
25// - `Unaligned`: `()` has alignment 1.
26//
27// [1] https://doc.rust-lang.org/1.81.0/reference/type-layout.html#tuple-layout
28#[allow(clippy::multiple_unsafe_ops_per_block)]
29const _: () = unsafe {
30 unsafe_impl!((): Immutable, TryFromBytes, FromZeros, FromBytes, IntoBytes, Unaligned);
31 assert_unaligned!(());
32};
33
34// SAFETY:
35// - `Immutable`: These types self-evidently do not contain any `UnsafeCell`s.
36// - `TryFromBytes` (with no validator), `FromZeros`, `FromBytes`: all bit
37// patterns are valid for numeric types [1]
38// - `IntoBytes`: numeric types have no padding bytes [1]
39// - `Unaligned` (`u8` and `i8` only): The reference [2] specifies the size of
40// `u8` and `i8` as 1 byte. We also know that:
41// - Alignment is >= 1 [3]
42// - Size is an integer multiple of alignment [4]
43// - The only value >= 1 for which 1 is an integer multiple is 1 Therefore,
44// the only possible alignment for `u8` and `i8` is 1.
45//
46// [1] Per https://doc.rust-lang.org/1.81.0/reference/types/numeric.html#bit-validity:
47//
48// For every numeric type, `T`, the bit validity of `T` is equivalent to
49// the bit validity of `[u8; size_of::<T>()]`. An uninitialized byte is
50// not a valid `u8`.
51//
52// [2] https://doc.rust-lang.org/1.81.0/reference/type-layout.html#primitive-data-layout
53//
54// [3] Per https://doc.rust-lang.org/1.81.0/reference/type-layout.html#size-and-alignment:
55//
56// Alignment is measured in bytes, and must be at least 1.
57//
58// [4] Per https://doc.rust-lang.org/1.81.0/reference/type-layout.html#size-and-alignment:
59//
60// The size of a value is always a multiple of its alignment.
61//
62// FIXME(#278): Once we've updated the trait docs to refer to `u8`s rather than
63// bits or bytes, update this comment, especially the reference to [1].
64#[allow(clippy::multiple_unsafe_ops_per_block)]
65const _: () = unsafe {
66 unsafe_impl!(u8: Immutable, TryFromBytes, FromZeros, FromBytes, IntoBytes, Unaligned);
67 unsafe_impl!(i8: Immutable, TryFromBytes, FromZeros, FromBytes, IntoBytes, Unaligned);
68 assert_unaligned!(u8, i8);
69 unsafe_impl!(u16: Immutable, TryFromBytes, FromZeros, FromBytes, IntoBytes);
70 unsafe_impl!(i16: Immutable, TryFromBytes, FromZeros, FromBytes, IntoBytes);
71 unsafe_impl!(u32: Immutable, TryFromBytes, FromZeros, FromBytes, IntoBytes);
72 unsafe_impl!(i32: Immutable, TryFromBytes, FromZeros, FromBytes, IntoBytes);
73 unsafe_impl!(u64: Immutable, TryFromBytes, FromZeros, FromBytes, IntoBytes);
74 unsafe_impl!(i64: Immutable, TryFromBytes, FromZeros, FromBytes, IntoBytes);
75 unsafe_impl!(u128: Immutable, TryFromBytes, FromZeros, FromBytes, IntoBytes);
76 unsafe_impl!(i128: Immutable, TryFromBytes, FromZeros, FromBytes, IntoBytes);
77 unsafe_impl!(usize: Immutable, TryFromBytes, FromZeros, FromBytes, IntoBytes);
78 unsafe_impl!(isize: Immutable, TryFromBytes, FromZeros, FromBytes, IntoBytes);
79 unsafe_impl!(f32: Immutable, TryFromBytes, FromZeros, FromBytes, IntoBytes);
80 unsafe_impl!(f64: Immutable, TryFromBytes, FromZeros, FromBytes, IntoBytes);
81 #[cfg(feature = "float-nightly")]
82 unsafe_impl!(#[cfg_attr(doc_cfg, doc(cfg(feature = "float-nightly")))] f16: Immutable, TryFromBytes, FromZeros, FromBytes, IntoBytes);
83 #[cfg(feature = "float-nightly")]
84 unsafe_impl!(#[cfg_attr(doc_cfg, doc(cfg(feature = "float-nightly")))] f128: Immutable, TryFromBytes, FromZeros, FromBytes, IntoBytes);
85};
86
87// SAFETY:
88// - `Immutable`: `bool` self-evidently does not contain any `UnsafeCell`s.
89// - `FromZeros`: Valid since "[t]he value false has the bit pattern 0x00" [1].
90// - `IntoBytes`: Since "the boolean type has a size and alignment of 1 each"
91// and "The value false has the bit pattern 0x00 and the value true has the
92// bit pattern 0x01" [1]. Thus, the only byte of the bool is always
93// initialized.
94// - `Unaligned`: Per the reference [1], "[a]n object with the boolean type has
95// a size and alignment of 1 each."
96//
97// [1] https://doc.rust-lang.org/1.81.0/reference/types/boolean.html
98#[allow(clippy::multiple_unsafe_ops_per_block)]
99const _: () = unsafe { unsafe_impl!(bool: Immutable, FromZeros, IntoBytes, Unaligned) };
100assert_unaligned!(bool);
101
102// SAFETY: The impl must only return `true` for its argument if the original
103// `Maybe<bool>` refers to a valid `bool`. We only return true if the `u8` value
104// is 0 or 1, and both of these are valid values for `bool` [1].
105//
106// [1] Per https://doc.rust-lang.org/1.81.0/reference/types/boolean.html:
107//
108// The value false has the bit pattern 0x00 and the value true has the bit
109// pattern 0x01.
110const _: () = unsafe {
111 unsafe_impl!(=> TryFromBytes for bool; |byte| {
112 let byte = byte.transmute_with::<u8, invariant::Valid, CastSizedExact, BecauseImmutable>();
113 *byte.unaligned_as_ref() < 2
114 })
115};
116
117// SAFETY:
118// - `Immutable`: `char` self-evidently does not contain any `UnsafeCell`s.
119// - `FromZeros`: Per reference [1], "[a] value of type char is a Unicode scalar
120// value (i.e. a code point that is not a surrogate), represented as a 32-bit
121// unsigned word in the 0x0000 to 0xD7FF or 0xE000 to 0x10FFFF range" which
122// contains 0x0000.
123// - `IntoBytes`: `char` is per reference [1] "represented as a 32-bit unsigned
124// word" (`u32`) which is `IntoBytes`. Note that unlike `u32`, not all bit
125// patterns are valid for `char`.
126//
127// [1] https://doc.rust-lang.org/1.81.0/reference/types/textual.html
128#[allow(clippy::multiple_unsafe_ops_per_block)]
129const _: () = unsafe { unsafe_impl!(char: Immutable, FromZeros, IntoBytes) };
130
131// SAFETY: The impl must only return `true` for its argument if the original
132// `Maybe<char>` refers to a valid `char`. `char::from_u32` guarantees that it
133// returns `None` if its input is not a valid `char` [1].
134//
135// [1] Per https://doc.rust-lang.org/core/primitive.char.html#method.from_u32:
136//
137// `from_u32()` will return `None` if the input is not a valid value for a
138// `char`.
139const _: () = unsafe {
140 unsafe_impl!(=> TryFromBytes for char; |c| {
141 let c = c.transmute_with::<Unalign<u32>, invariant::Valid, CastSizedExact, BecauseImmutable>();
142 let c = c.read().into_inner();
143 char::from_u32(c).is_some()
144 });
145};
146
147// SAFETY: Per the Reference [1], `str` has the same layout as `[u8]`.
148// - `Immutable`: `[u8]` does not contain any `UnsafeCell`s.
149// - `FromZeros`, `IntoBytes`, `Unaligned`: `[u8]` is `FromZeros`, `IntoBytes`,
150// and `Unaligned`.
151//
152// Note that we don't `assert_unaligned!(str)` because `assert_unaligned!` uses
153// `align_of`, which only works for `Sized` types.
154//
155// FIXME(#429): Improve safety proof for `FromZeros` and `IntoBytes`; having the same
156// layout as `[u8]` isn't sufficient.
157//
158// [1] Per https://doc.rust-lang.org/1.81.0/reference/type-layout.html#str-layout:
159//
160// String slices are a UTF-8 representation of characters that have the same
161// layout as slices of type `[u8]`.
162#[allow(clippy::multiple_unsafe_ops_per_block)]
163const _: () = unsafe { unsafe_impl!(str: Immutable, FromZeros, IntoBytes, Unaligned) };
164
165// SAFETY: The impl must only return `true` for its argument if the original
166// `Maybe<str>` refers to a valid `str`. `str::from_utf8` guarantees that it
167// returns `Err` if its input is not a valid `str` [1].
168//
169// [1] Per https://doc.rust-lang.org/core/str/fn.from_utf8.html#errors:
170//
171// Returns `Err` if the slice is not UTF-8.
172const _: () = unsafe {
173 unsafe_impl!(=> TryFromBytes for str; |c| {
174 let c = c.transmute_with::<[u8], invariant::Valid, CastUnsized, BecauseImmutable>();
175 let c = c.unaligned_as_ref();
176 core::str::from_utf8(c).is_ok()
177 })
178};
179
180macro_rules! unsafe_impl_try_from_bytes_for_nonzero {
181 ($($nonzero:ident[$prim:ty]),*) => {
182 $(
183 unsafe_impl!(=> TryFromBytes for $nonzero; |n| {
184 let n = n.transmute_with::<Unalign<$prim>, invariant::Valid, CastSizedExact, BecauseImmutable>();
185 $nonzero::new(n.read().into_inner()).is_some()
186 });
187 )*
188 }
189}
190
191// `NonZeroXxx` is `IntoBytes`, but not `FromZeros` or `FromBytes`.
192//
193// SAFETY:
194// - `IntoBytes`: `NonZeroXxx` has the same layout as its associated primitive.
195// Since it is the same size, this guarantees it has no padding - integers
196// have no padding, and there's no room for padding if it can represent all
197// of the same values except 0.
198// - `Unaligned`: `NonZeroU8` and `NonZeroI8` document that `Option<NonZeroU8>`
199// and `Option<NonZeroI8>` both have size 1. [1] [2] This is worded in a way
200// that makes it unclear whether it's meant as a guarantee, but given the
201// purpose of those types, it's virtually unthinkable that that would ever
202// change. `Option` cannot be smaller than its contained type, which implies
203// that, and `NonZeroX8` are of size 1 or 0. `NonZeroX8` can represent
204// multiple states, so they cannot be 0 bytes, which means that they must be 1
205// byte. The only valid alignment for a 1-byte type is 1.
206//
207// FIXME(#429):
208// - Add quotes from documentation.
209// - Add safety comment for `Immutable`. How can we prove that `NonZeroXxx`
210// doesn't contain any `UnsafeCell`s? It's obviously true, but it's not clear
211// how we'd prove it short of adding text to the stdlib docs that says so
212// explicitly, which likely wouldn't be accepted.
213//
214// [1] Per https://doc.rust-lang.org/1.81.0/std/num/type.NonZeroU8.html:
215//
216// `NonZeroU8` is guaranteed to have the same layout and bit validity as `u8` with
217// the exception that 0 is not a valid instance.
218//
219// [2] Per https://doc.rust-lang.org/1.81.0/std/num/type.NonZeroI8.html:
220//
221// `NonZeroI8` is guaranteed to have the same layout and bit validity as `i8` with
222// the exception that 0 is not a valid instance.
223#[allow(clippy::multiple_unsafe_ops_per_block)]
224const _: () = unsafe {
225 unsafe_impl!(NonZeroU8: Immutable, IntoBytes, Unaligned);
226 unsafe_impl!(NonZeroI8: Immutable, IntoBytes, Unaligned);
227 assert_unaligned!(NonZeroU8, NonZeroI8);
228 unsafe_impl!(NonZeroU16: Immutable, IntoBytes);
229 unsafe_impl!(NonZeroI16: Immutable, IntoBytes);
230 unsafe_impl!(NonZeroU32: Immutable, IntoBytes);
231 unsafe_impl!(NonZeroI32: Immutable, IntoBytes);
232 unsafe_impl!(NonZeroU64: Immutable, IntoBytes);
233 unsafe_impl!(NonZeroI64: Immutable, IntoBytes);
234 unsafe_impl!(NonZeroU128: Immutable, IntoBytes);
235 unsafe_impl!(NonZeroI128: Immutable, IntoBytes);
236 unsafe_impl!(NonZeroUsize: Immutable, IntoBytes);
237 unsafe_impl!(NonZeroIsize: Immutable, IntoBytes);
238 unsafe_impl_try_from_bytes_for_nonzero!(
239 NonZeroU8[u8],
240 NonZeroI8[i8],
241 NonZeroU16[u16],
242 NonZeroI16[i16],
243 NonZeroU32[u32],
244 NonZeroI32[i32],
245 NonZeroU64[u64],
246 NonZeroI64[i64],
247 NonZeroU128[u128],
248 NonZeroI128[i128],
249 NonZeroUsize[usize],
250 NonZeroIsize[isize]
251 );
252};
253
254// SAFETY:
255// - `TryFromBytes` (with no validator), `FromZeros`, `FromBytes`, `IntoBytes`:
256// The Rust compiler reuses `0` value to represent `None`, so
257// `size_of::<Option<NonZeroXxx>>() == size_of::<xxx>()`; see `NonZeroXxx`
258// documentation.
259// - `Unaligned`: `NonZeroU8` and `NonZeroI8` document that `Option<NonZeroU8>`
260// and `Option<NonZeroI8>` both have size 1. [1] [2] This is worded in a way
261// that makes it unclear whether it's meant as a guarantee, but given the
262// purpose of those types, it's virtually unthinkable that that would ever
263// change. The only valid alignment for a 1-byte type is 1.
264//
265// [1] Per https://doc.rust-lang.org/1.81.0/std/num/type.NonZeroU8.html:
266//
267// `Option<NonZeroU8>` is guaranteed to be compatible with `u8`, including in FFI.
268//
269// Thanks to the null pointer optimization, `NonZeroU8` and `Option<NonZeroU8>`
270// are guaranteed to have the same size and alignment:
271//
272// [2] Per https://doc.rust-lang.org/1.81.0/std/num/type.NonZeroI8.html:
273//
274// `Option<NonZeroI8>` is guaranteed to be compatible with `i8`, including in FFI.
275//
276// Thanks to the null pointer optimization, `NonZeroI8` and `Option<NonZeroI8>`
277// are guaranteed to have the same size and alignment:
278#[allow(clippy::multiple_unsafe_ops_per_block)]
279const _: () = unsafe {
280 unsafe_impl!(Option<NonZeroU8>: TryFromBytes, FromZeros, FromBytes, IntoBytes, Unaligned);
281 unsafe_impl!(Option<NonZeroI8>: TryFromBytes, FromZeros, FromBytes, IntoBytes, Unaligned);
282 assert_unaligned!(Option<NonZeroU8>, Option<NonZeroI8>);
283 unsafe_impl!(Option<NonZeroU16>: TryFromBytes, FromZeros, FromBytes, IntoBytes);
284 unsafe_impl!(Option<NonZeroI16>: TryFromBytes, FromZeros, FromBytes, IntoBytes);
285 unsafe_impl!(Option<NonZeroU32>: TryFromBytes, FromZeros, FromBytes, IntoBytes);
286 unsafe_impl!(Option<NonZeroI32>: TryFromBytes, FromZeros, FromBytes, IntoBytes);
287 unsafe_impl!(Option<NonZeroU64>: TryFromBytes, FromZeros, FromBytes, IntoBytes);
288 unsafe_impl!(Option<NonZeroI64>: TryFromBytes, FromZeros, FromBytes, IntoBytes);
289 unsafe_impl!(Option<NonZeroU128>: TryFromBytes, FromZeros, FromBytes, IntoBytes);
290 unsafe_impl!(Option<NonZeroI128>: TryFromBytes, FromZeros, FromBytes, IntoBytes);
291 unsafe_impl!(Option<NonZeroUsize>: TryFromBytes, FromZeros, FromBytes, IntoBytes);
292 unsafe_impl!(Option<NonZeroIsize>: TryFromBytes, FromZeros, FromBytes, IntoBytes);
293};
294
295// SAFETY: While it's not fully documented, the consensus is that `Box<T>` does
296// not contain any `UnsafeCell`s for `T: Sized` [1]. This is not a complete
297// proof, but we are accepting this as a known risk per #1358.
298//
299// [1] https://github.com/rust-lang/unsafe-code-guidelines/issues/492
300#[cfg(feature = "alloc")]
301const _: () = unsafe {
302 unsafe_impl!(
303 #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))]
304 T: Sized => Immutable for Box<T>
305 )
306};
307
308// SAFETY: The following types can be transmuted from `[0u8; size_of::<T>()]`. [1]
309//
310// [1] Per https://doc.rust-lang.org/1.89.0/core/option/index.html#representation:
311//
312// Rust guarantees to optimize the following types `T` such that [`Option<T>`]
313// has the same size and alignment as `T`. In some of these cases, Rust
314// further guarantees that `transmute::<_, Option<T>>([0u8; size_of::<T>()])`
315// is sound and produces `Option::<T>::None`. These cases are identified by
316// the second column:
317//
318// | `T` | `transmute::<_, Option<T>>([0u8; size_of::<T>()])` sound? |
319// |-----------------------------------|-----------------------------------------------------------|
320// | [`Box<U>`] | when `U: Sized` |
321// | `&U` | when `U: Sized` |
322// | `&mut U` | when `U: Sized` |
323// | [`ptr::NonNull<U>`] | when `U: Sized` |
324// | `fn`, `extern "C" fn`[^extern_fn] | always |
325//
326// [^extern_fn]: this remains true for `unsafe` variants, any argument/return
327// types, and any other ABI: `[unsafe] extern "abi" fn` (_e.g._, `extern
328// "system" fn`)
329#[allow(clippy::multiple_unsafe_ops_per_block)]
330const _: () = unsafe {
331 #[cfg(feature = "alloc")]
332 unsafe_impl!(
333 #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))]
334 T => TryFromBytes for Option<Box<T>>; |c| pointer::is_zeroed(c)
335 );
336 #[cfg(feature = "alloc")]
337 unsafe_impl!(
338 #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))]
339 T => FromZeros for Option<Box<T>>
340 );
341 unsafe_impl!(
342 T => TryFromBytes for Option<&'_ T>; |c| pointer::is_zeroed(c)
343 );
344 unsafe_impl!(T => FromZeros for Option<&'_ T>);
345 unsafe_impl!(
346 T => TryFromBytes for Option<&'_ mut T>; |c| pointer::is_zeroed(c)
347 );
348 unsafe_impl!(T => FromZeros for Option<&'_ mut T>);
349 unsafe_impl!(
350 T => TryFromBytes for Option<NonNull<T>>; |c| pointer::is_zeroed(c)
351 );
352 unsafe_impl!(T => FromZeros for Option<NonNull<T>>);
353 unsafe_impl_for_power_set!(A, B, C, D, E, F, G, H, I, J, K, L -> M => FromZeros for opt_fn!(...));
354 unsafe_impl_for_power_set!(
355 A, B, C, D, E, F, G, H, I, J, K, L -> M => TryFromBytes for opt_fn!(...);
356 |c| pointer::is_zeroed(c)
357 );
358 unsafe_impl_for_power_set!(A, B, C, D, E, F, G, H, I, J, K, L -> M => FromZeros for opt_unsafe_fn!(...));
359 unsafe_impl_for_power_set!(
360 A, B, C, D, E, F, G, H, I, J, K, L -> M => TryFromBytes for opt_unsafe_fn!(...);
361 |c| pointer::is_zeroed(c)
362 );
363 unsafe_impl_for_power_set!(A, B, C, D, E, F, G, H, I, J, K, L -> M => FromZeros for opt_extern_c_fn!(...));
364 unsafe_impl_for_power_set!(
365 A, B, C, D, E, F, G, H, I, J, K, L -> M => TryFromBytes for opt_extern_c_fn!(...);
366 |c| pointer::is_zeroed(c)
367 );
368 unsafe_impl_for_power_set!(A, B, C, D, E, F, G, H, I, J, K, L -> M => FromZeros for opt_unsafe_extern_c_fn!(...));
369 unsafe_impl_for_power_set!(
370 A, B, C, D, E, F, G, H, I, J, K, L -> M => TryFromBytes for opt_unsafe_extern_c_fn!(...);
371 |c| pointer::is_zeroed(c)
372 );
373};
374
375// SAFETY: `[unsafe] [extern "C"] fn()` self-evidently do not contain
376// `UnsafeCell`s. This is not a proof, but we are accepting this as a known risk
377// per #1358.
378#[allow(clippy::multiple_unsafe_ops_per_block)]
379const _: () = unsafe {
380 unsafe_impl_for_power_set!(A, B, C, D, E, F, G, H, I, J, K, L -> M => Immutable for opt_fn!(...));
381 unsafe_impl_for_power_set!(A, B, C, D, E, F, G, H, I, J, K, L -> M => Immutable for opt_unsafe_fn!(...));
382 unsafe_impl_for_power_set!(A, B, C, D, E, F, G, H, I, J, K, L -> M => Immutable for opt_extern_c_fn!(...));
383 unsafe_impl_for_power_set!(A, B, C, D, E, F, G, H, I, J, K, L -> M => Immutable for opt_unsafe_extern_c_fn!(...));
384};
385
386#[cfg(all(
387 not(no_zerocopy_target_has_atomics_1_60_0),
388 any(
389 target_has_atomic = "8",
390 target_has_atomic = "16",
391 target_has_atomic = "32",
392 target_has_atomic = "64",
393 target_has_atomic = "ptr"
394 )
395))]
396#[cfg_attr(doc_cfg, doc(cfg(rust = "1.60.0")))]
397mod atomics {
398 use super::*;
399
400 macro_rules! impl_traits_for_atomics {
401 ($($atomics:tt [$primitives:ty]),* $(,)?) => {
402 $(
403 impl_known_layout!($atomics);
404 impl_for_transmute_from!(=> FromZeros for $atomics [$primitives]);
405 impl_for_transmute_from!(=> FromBytes for $atomics [$primitives]);
406 impl_for_transmute_from!(=> TryFromBytes for $atomics [$primitives]);
407 impl_for_transmute_from!(=> IntoBytes for $atomics [$primitives]);
408 )*
409 };
410 }
411
412 /// Implements `TransmuteFrom` for `$atomic`, `$prim`, and
413 /// `UnsafeCell<$prim>`.
414 ///
415 /// # Safety
416 ///
417 /// `$atomic` must have the same size and bit validity as `$prim`.
418 macro_rules! unsafe_impl_transmute_from_for_atomic {
419 ($($($tyvar:ident)? => $atomic:ty [$prim:ty]),*) => {{
420 crate::util::macros::__unsafe();
421
422 use crate::pointer::{SizeEq, TransmuteFrom, invariant::Valid};
423
424 $(
425 // SAFETY: The caller promised that `$atomic` and `$prim` have
426 // the same size and bit validity.
427 unsafe impl<$($tyvar)?> TransmuteFrom<$atomic, Valid, Valid> for $prim {}
428 // SAFETY: The caller promised that `$atomic` and `$prim` have
429 // the same size and bit validity.
430 unsafe impl<$($tyvar)?> TransmuteFrom<$prim, Valid, Valid> for $atomic {}
431
432 impl<$($tyvar)?> SizeEq<ReadOnly<$atomic>> for ReadOnly<$prim> {
433 type CastFrom = $crate::pointer::cast::CastSizedExact;
434 }
435
436 // SAFETY: The caller promised that `$atomic` and `$prim` have
437 // the same bit validity. `UnsafeCell<T>` has the same bit
438 // validity as `T` [1].
439 //
440 // [1] Per https://doc.rust-lang.org/1.85.0/std/cell/struct.UnsafeCell.html#memory-layout:
441 //
442 // `UnsafeCell<T>` has the same in-memory representation as
443 // its inner type `T`. A consequence of this guarantee is that
444 // it is possible to convert between `T` and `UnsafeCell<T>`.
445 unsafe impl<$($tyvar)?> TransmuteFrom<$atomic, Valid, Valid> for core::cell::UnsafeCell<$prim> {}
446 // SAFETY: See previous safety comment.
447 unsafe impl<$($tyvar)?> TransmuteFrom<core::cell::UnsafeCell<$prim>, Valid, Valid> for $atomic {}
448 )*
449 }};
450 }
451
452 #[cfg(target_has_atomic = "8")]
453 #[cfg_attr(doc_cfg, doc(cfg(target_has_atomic = "8")))]
454 mod atomic_8 {
455 use core::sync::atomic::{AtomicBool, AtomicI8, AtomicU8};
456
457 use super::*;
458
459 impl_traits_for_atomics!(AtomicU8[u8], AtomicI8[i8]);
460
461 impl_known_layout!(AtomicBool);
462 impl_for_transmute_from!(=> FromZeros for AtomicBool [bool]);
463 impl_for_transmute_from!(=> TryFromBytes for AtomicBool [bool]);
464 impl_for_transmute_from!(=> IntoBytes for AtomicBool [bool]);
465
466 // SAFETY: Per [1], `AtomicBool`, `AtomicU8`, and `AtomicI8` have the
467 // same size as `bool`, `u8`, and `i8` respectively. Since a type's
468 // alignment cannot be smaller than 1 [2], and since its alignment
469 // cannot be greater than its size [3], the only possible value for the
470 // alignment is 1. Thus, it is sound to implement `Unaligned`.
471 //
472 // [1] Per (for example) https://doc.rust-lang.org/1.81.0/std/sync/atomic/struct.AtomicU8.html:
473 //
474 // This type has the same size, alignment, and bit validity as the
475 // underlying integer type
476 //
477 // [2] Per https://doc.rust-lang.org/1.81.0/reference/type-layout.html#size-and-alignment:
478 //
479 // Alignment is measured in bytes, and must be at least 1.
480 //
481 // [3] Per https://doc.rust-lang.org/1.81.0/reference/type-layout.html#size-and-alignment:
482 //
483 // The size of a value is always a multiple of its alignment.
484 #[allow(clippy::multiple_unsafe_ops_per_block)]
485 const _: () = unsafe {
486 unsafe_impl!(AtomicBool: Unaligned);
487 unsafe_impl!(AtomicU8: Unaligned);
488 unsafe_impl!(AtomicI8: Unaligned);
489 assert_unaligned!(AtomicBool, AtomicU8, AtomicI8);
490 };
491
492 // SAFETY: `AtomicU8`, `AtomicI8`, and `AtomicBool` have the same size
493 // and bit validity as `u8`, `i8`, and `bool` respectively [1][2][3].
494 //
495 // [1] Per https://doc.rust-lang.org/1.85.0/std/sync/atomic/struct.AtomicU8.html:
496 //
497 // This type has the same size, alignment, and bit validity as the
498 // underlying integer type, `u8`.
499 //
500 // [2] Per https://doc.rust-lang.org/1.85.0/std/sync/atomic/struct.AtomicI8.html:
501 //
502 // This type has the same size, alignment, and bit validity as the
503 // underlying integer type, `i8`.
504 //
505 // [3] Per https://doc.rust-lang.org/1.85.0/std/sync/atomic/struct.AtomicBool.html:
506 //
507 // This type has the same size, alignment, and bit validity a `bool`.
508 #[allow(clippy::multiple_unsafe_ops_per_block)]
509 const _: () = unsafe {
510 unsafe_impl_transmute_from_for_atomic!(
511 => AtomicU8 [u8],
512 => AtomicI8 [i8],
513 => AtomicBool [bool]
514 )
515 };
516 }
517
518 #[cfg(target_has_atomic = "16")]
519 #[cfg_attr(doc_cfg, doc(cfg(target_has_atomic = "16")))]
520 mod atomic_16 {
521 use core::sync::atomic::{AtomicI16, AtomicU16};
522
523 use super::*;
524
525 impl_traits_for_atomics!(AtomicU16[u16], AtomicI16[i16]);
526
527 // SAFETY: `AtomicU16` and `AtomicI16` have the same size and bit
528 // validity as `u16` and `i16` respectively [1][2].
529 //
530 // [1] Per https://doc.rust-lang.org/1.85.0/std/sync/atomic/struct.AtomicU16.html:
531 //
532 // This type has the same size and bit validity as the underlying
533 // integer type, `u16`.
534 //
535 // [2] Per https://doc.rust-lang.org/1.85.0/std/sync/atomic/struct.AtomicI16.html:
536 //
537 // This type has the same size and bit validity as the underlying
538 // integer type, `i16`.
539 #[allow(clippy::multiple_unsafe_ops_per_block)]
540 const _: () = unsafe {
541 unsafe_impl_transmute_from_for_atomic!(=> AtomicU16 [u16], => AtomicI16 [i16])
542 };
543 }
544
545 #[cfg(target_has_atomic = "32")]
546 #[cfg_attr(doc_cfg, doc(cfg(target_has_atomic = "32")))]
547 mod atomic_32 {
548 use core::sync::atomic::{AtomicI32, AtomicU32};
549
550 use super::*;
551
552 impl_traits_for_atomics!(AtomicU32[u32], AtomicI32[i32]);
553
554 // SAFETY: `AtomicU32` and `AtomicI32` have the same size and bit
555 // validity as `u32` and `i32` respectively [1][2].
556 //
557 // [1] Per https://doc.rust-lang.org/1.85.0/std/sync/atomic/struct.AtomicU32.html:
558 //
559 // This type has the same size and bit validity as the underlying
560 // integer type, `u32`.
561 //
562 // [2] Per https://doc.rust-lang.org/1.85.0/std/sync/atomic/struct.AtomicI32.html:
563 //
564 // This type has the same size and bit validity as the underlying
565 // integer type, `i32`.
566 #[allow(clippy::multiple_unsafe_ops_per_block)]
567 const _: () = unsafe {
568 unsafe_impl_transmute_from_for_atomic!(=> AtomicU32 [u32], => AtomicI32 [i32])
569 };
570 }
571
572 #[cfg(target_has_atomic = "64")]
573 #[cfg_attr(doc_cfg, doc(cfg(target_has_atomic = "64")))]
574 mod atomic_64 {
575 use core::sync::atomic::{AtomicI64, AtomicU64};
576
577 use super::*;
578
579 impl_traits_for_atomics!(AtomicU64[u64], AtomicI64[i64]);
580
581 // SAFETY: `AtomicU64` and `AtomicI64` have the same size and bit
582 // validity as `u64` and `i64` respectively [1][2].
583 //
584 // [1] Per https://doc.rust-lang.org/1.85.0/std/sync/atomic/struct.AtomicU64.html:
585 //
586 // This type has the same size and bit validity as the underlying
587 // integer type, `u64`.
588 //
589 // [2] Per https://doc.rust-lang.org/1.85.0/std/sync/atomic/struct.AtomicI64.html:
590 //
591 // This type has the same size and bit validity as the underlying
592 // integer type, `i64`.
593 #[allow(clippy::multiple_unsafe_ops_per_block)]
594 const _: () = unsafe {
595 unsafe_impl_transmute_from_for_atomic!(=> AtomicU64 [u64], => AtomicI64 [i64])
596 };
597 }
598
599 #[cfg(target_has_atomic = "ptr")]
600 #[cfg_attr(doc_cfg, doc(cfg(target_has_atomic = "ptr")))]
601 mod atomic_ptr {
602 use core::sync::atomic::{AtomicIsize, AtomicPtr, AtomicUsize};
603
604 use super::*;
605
606 impl_traits_for_atomics!(AtomicUsize[usize], AtomicIsize[isize]);
607
608 // FIXME(#170): Implement `FromBytes` and `IntoBytes` once we implement
609 // those traits for `*mut T`.
610 impl_known_layout!(T => AtomicPtr<T>);
611 impl_for_transmute_from!(T => TryFromBytes for AtomicPtr<T> [*mut T]);
612 impl_for_transmute_from!(T => FromZeros for AtomicPtr<T> [*mut T]);
613
614 // SAFETY: `AtomicUsize` and `AtomicIsize` have the same size and bit
615 // validity as `usize` and `isize` respectively [1][2].
616 //
617 // [1] Per https://doc.rust-lang.org/1.85.0/std/sync/atomic/struct.AtomicUsize.html:
618 //
619 // This type has the same size and bit validity as the underlying
620 // integer type, `usize`.
621 //
622 // [2] Per https://doc.rust-lang.org/1.85.0/std/sync/atomic/struct.AtomicIsize.html:
623 //
624 // This type has the same size and bit validity as the underlying
625 // integer type, `isize`.
626 #[allow(clippy::multiple_unsafe_ops_per_block)]
627 const _: () = unsafe {
628 unsafe_impl_transmute_from_for_atomic!(=> AtomicUsize [usize], => AtomicIsize [isize])
629 };
630
631 // SAFETY: Per
632 // https://doc.rust-lang.org/1.85.0/std/sync/atomic/struct.AtomicPtr.html:
633 //
634 // This type has the same size and bit validity as a `*mut T`.
635 #[allow(clippy::multiple_unsafe_ops_per_block)]
636 const _: () = unsafe { unsafe_impl_transmute_from_for_atomic!(T => AtomicPtr<T> [*mut T]) };
637 }
638}
639
640// SAFETY: Per reference [1]: "For all T, the following are guaranteed:
641// size_of::<PhantomData<T>>() == 0 align_of::<PhantomData<T>>() == 1". This
642// gives:
643// - `Immutable`: `PhantomData` has no fields.
644// - `TryFromBytes` (with no validator), `FromZeros`, `FromBytes`: There is only
645// one possible sequence of 0 bytes, and `PhantomData` is inhabited.
646// - `IntoBytes`: Since `PhantomData` has size 0, it contains no padding bytes.
647// - `Unaligned`: Per the preceding reference, `PhantomData` has alignment 1.
648//
649// [1] https://doc.rust-lang.org/1.81.0/std/marker/struct.PhantomData.html#layout-1
650#[allow(clippy::multiple_unsafe_ops_per_block)]
651const _: () = unsafe {
652 unsafe_impl!(T: ?Sized => Immutable for PhantomData<T>);
653 unsafe_impl!(T: ?Sized => TryFromBytes for PhantomData<T>);
654 unsafe_impl!(T: ?Sized => FromZeros for PhantomData<T>);
655 unsafe_impl!(T: ?Sized => FromBytes for PhantomData<T>);
656 unsafe_impl!(T: ?Sized => IntoBytes for PhantomData<T>);
657 unsafe_impl!(T: ?Sized => Unaligned for PhantomData<T>);
658 assert_unaligned!(PhantomData<()>, PhantomData<u8>, PhantomData<u64>);
659};
660
661impl_for_transmute_from!(T: TryFromBytes => TryFromBytes for Wrapping<T>[T]);
662impl_for_transmute_from!(T: FromZeros => FromZeros for Wrapping<T>[T]);
663impl_for_transmute_from!(T: FromBytes => FromBytes for Wrapping<T>[T]);
664impl_for_transmute_from!(T: IntoBytes => IntoBytes for Wrapping<T>[T]);
665assert_unaligned!(Wrapping<()>, Wrapping<u8>);
666
667// SAFETY: Per [1], `Wrapping<T>` has the same layout as `T`. Since its single
668// field (of type `T`) is public, it would be a breaking change to add or remove
669// fields. Thus, we know that `Wrapping<T>` contains a `T` (as opposed to just
670// having the same size and alignment as `T`) with no pre- or post-padding.
671// Thus, `Wrapping<T>` must have `UnsafeCell`s covering the same byte ranges as
672// `Inner = T`.
673//
674// [1] Per https://doc.rust-lang.org/1.81.0/std/num/struct.Wrapping.html#layout-1:
675//
676// `Wrapping<T>` is guaranteed to have the same layout and ABI as `T`
677const _: () = unsafe { unsafe_impl!(T: Immutable => Immutable for Wrapping<T>) };
678
679// SAFETY: Per [1] in the preceding safety comment, `Wrapping<T>` has the same
680// alignment as `T`.
681const _: () = unsafe { unsafe_impl!(T: Unaligned => Unaligned for Wrapping<T>) };
682
683// SAFETY: `TryFromBytes` (with no validator), `FromZeros`, `FromBytes`:
684// `MaybeUninit<T>` has no restrictions on its contents.
685#[allow(clippy::multiple_unsafe_ops_per_block)]
686const _: () = unsafe {
687 unsafe_impl!(T => TryFromBytes for CoreMaybeUninit<T>);
688 unsafe_impl!(T => FromZeros for CoreMaybeUninit<T>);
689 unsafe_impl!(T => FromBytes for CoreMaybeUninit<T>);
690};
691
692// SAFETY: `MaybeUninit<T>` has `UnsafeCell`s covering the same byte ranges as
693// `Inner = T`. This is not explicitly documented, but it can be inferred. Per
694// [1], `MaybeUninit<T>` has the same size as `T`. Further, note the signature
695// of `MaybeUninit::assume_init_ref` [2]:
696//
697// pub unsafe fn assume_init_ref(&self) -> &T
698//
699// If the argument `&MaybeUninit<T>` and the returned `&T` had `UnsafeCell`s at
700// different offsets, this would be unsound. Its existence is proof that this is
701// not the case.
702//
703// [1] Per https://doc.rust-lang.org/1.81.0/std/mem/union.MaybeUninit.html#layout-1:
704//
705// `MaybeUninit<T>` is guaranteed to have the same size, alignment, and ABI as
706// `T`.
707//
708// [2] https://doc.rust-lang.org/1.81.0/std/mem/union.MaybeUninit.html#method.assume_init_ref
709const _: () = unsafe { unsafe_impl!(T: Immutable => Immutable for CoreMaybeUninit<T>) };
710
711// SAFETY: Per [1] in the preceding safety comment, `MaybeUninit<T>` has the
712// same alignment as `T`.
713const _: () = unsafe { unsafe_impl!(T: Unaligned => Unaligned for CoreMaybeUninit<T>) };
714assert_unaligned!(CoreMaybeUninit<()>, CoreMaybeUninit<u8>);
715
716// SAFETY: `ManuallyDrop<T>` has the same layout as `T` [1]. This strongly
717// implies, but does not guarantee, that it contains `UnsafeCell`s covering the
718// same byte ranges as in `T`. However, it also implements `Defer<Target = T>`
719// [2], which provides the ability to convert `&ManuallyDrop<T> -> &T`. This,
720// combined with having the same size as `T`, implies that `ManuallyDrop<T>`
721// exactly contains a `T` with the same fields and `UnsafeCell`s covering the
722// same byte ranges, or else the `Deref` impl would permit safe code to obtain
723// different shared references to the same region of memory with different
724// `UnsafeCell` coverage, which would in turn permit interior mutation that
725// would violate the invariants of a shared reference.
726//
727// [1] Per https://doc.rust-lang.org/1.85.0/std/mem/struct.ManuallyDrop.html:
728//
729// `ManuallyDrop<T>` is guaranteed to have the same layout and bit validity as
730// `T`
731//
732// [2] https://doc.rust-lang.org/1.85.0/std/mem/struct.ManuallyDrop.html#impl-Deref-for-ManuallyDrop%3CT%3E
733const _: () = unsafe { unsafe_impl!(T: ?Sized + Immutable => Immutable for ManuallyDrop<T>) };
734
735impl_for_transmute_from!(T: ?Sized + TryFromBytes => TryFromBytes for ManuallyDrop<T>[T]);
736impl_for_transmute_from!(T: ?Sized + FromZeros => FromZeros for ManuallyDrop<T>[T]);
737impl_for_transmute_from!(T: ?Sized + FromBytes => FromBytes for ManuallyDrop<T>[T]);
738impl_for_transmute_from!(T: ?Sized + IntoBytes => IntoBytes for ManuallyDrop<T>[T]);
739// SAFETY: `ManuallyDrop<T>` has the same layout as `T` [1], and thus has the
740// same alignment as `T`.
741//
742// [1] Per https://doc.rust-lang.org/1.81.0/std/mem/struct.ManuallyDrop.html:
743//
744// `ManuallyDrop<T>` is guaranteed to have the same layout and bit validity as
745// `T`
746const _: () = unsafe { unsafe_impl!(T: ?Sized + Unaligned => Unaligned for ManuallyDrop<T>) };
747assert_unaligned!(ManuallyDrop<()>, ManuallyDrop<u8>);
748
749const _: () = {
750 #[allow(
751 non_camel_case_types,
752 missing_copy_implementations,
753 missing_debug_implementations,
754 missing_docs
755 )]
756 pub enum value {}
757
758 // SAFETY: See safety comment on `ProjectToTag`.
759 unsafe impl<T: ?Sized> HasTag for ManuallyDrop<T> {
760 #[inline]
761 fn only_derive_is_allowed_to_implement_this_trait()
762 where
763 Self: Sized,
764 {
765 }
766
767 type Tag = ();
768
769 // SAFETY: It is trivially sound to project any pointer to a pointer to
770 // a type of size zero and alignment 1 (which `()` is [1]). Such a
771 // pointer will trivially satisfy its aliasing and validity requirements
772 // (since it has a zero-sized referent), and its alignment requirement
773 // (since it is aligned to 1).
774 //
775 // [1] Per https://doc.rust-lang.org/1.92.0/reference/type-layout.html#r-layout.tuple.unit:
776 //
777 // [T]he unit tuple (`()`)... is guaranteed as a zero-sized type to
778 // have a size of 0 and an alignment of 1.
779 type ProjectToTag = crate::pointer::cast::CastToUnit;
780 }
781
782 // SAFETY: `ManuallyDrop<T>` has a field of type `T` at offset `0` without
783 // any safety invariants beyond those of `T`. Its existence is not
784 // explicitly documented, but it can be inferred; per [1] `ManuallyDrop<T>`
785 // has the same size and bit validity as `T`. This field is not literally
786 // public, but is effectively so; the field can be transparently:
787 //
788 // - initialized via `ManuallyDrop::new`
789 // - moved via `ManuallyDrop::into_inner`
790 // - referenced via `ManuallyDrop::deref`
791 // - exclusively referenced via `ManuallyDrop::deref_mut`
792 //
793 // We call this field `value`, both because that is both the name of this
794 // private field, and because it is the name it is referred to in the public
795 // documentation of `ManuallyDrop::new`, `ManuallyDrop::into_inner`,
796 // `ManuallyDrop::take` and `ManuallyDrop::drop`.
797 unsafe impl<T: ?Sized>
798 HasField<value, { crate::STRUCT_VARIANT_ID }, { crate::ident_id!(value) }>
799 for ManuallyDrop<T>
800 {
801 #[inline]
802 fn only_derive_is_allowed_to_implement_this_trait()
803 where
804 Self: Sized,
805 {
806 }
807
808 type Type = T;
809
810 #[inline(always)]
811 fn project(slf: PtrInner<'_, Self>) -> *mut T {
812 // SAFETY: `ManuallyDrop<T>` has the same layout and bit validity as
813 // `T` [1].
814 //
815 // [1] Per https://doc.rust-lang.org/1.85.0/std/mem/struct.ManuallyDrop.html:
816 //
817 // `ManuallyDrop<T>` is guaranteed to have the same layout and bit
818 // validity as `T`
819 #[allow(clippy::as_conversions)]
820 return slf.as_ptr() as *mut T;
821 }
822 }
823};
824
825impl_for_transmute_from!(T: ?Sized + TryFromBytes => TryFromBytes for Cell<T>[T]);
826impl_for_transmute_from!(T: ?Sized + FromZeros => FromZeros for Cell<T>[T]);
827impl_for_transmute_from!(T: ?Sized + FromBytes => FromBytes for Cell<T>[T]);
828impl_for_transmute_from!(T: ?Sized + IntoBytes => IntoBytes for Cell<T>[T]);
829// SAFETY: `Cell<T>` has the same in-memory representation as `T` [1], and thus
830// has the same alignment as `T`.
831//
832// [1] Per https://doc.rust-lang.org/1.81.0/core/cell/struct.Cell.html#memory-layout:
833//
834// `Cell<T>` has the same in-memory representation as its inner type `T`.
835const _: () = unsafe { unsafe_impl!(T: ?Sized + Unaligned => Unaligned for Cell<T>) };
836
837impl_for_transmute_from!(T: ?Sized + FromZeros => FromZeros for UnsafeCell<T>[T]);
838impl_for_transmute_from!(T: ?Sized + FromBytes => FromBytes for UnsafeCell<T>[T]);
839impl_for_transmute_from!(T: ?Sized + IntoBytes => IntoBytes for UnsafeCell<T>[T]);
840// SAFETY: `UnsafeCell<T>` has the same in-memory representation as `T` [1], and
841// thus has the same alignment as `T`.
842//
843// [1] Per https://doc.rust-lang.org/1.81.0/core/cell/struct.UnsafeCell.html#memory-layout:
844//
845// `UnsafeCell<T>` has the same in-memory representation as its inner type
846// `T`.
847const _: () = unsafe { unsafe_impl!(T: ?Sized + Unaligned => Unaligned for UnsafeCell<T>) };
848assert_unaligned!(UnsafeCell<()>, UnsafeCell<u8>);
849
850// SAFETY: See safety comment in `is_bit_valid` impl.
851unsafe impl<T: TryFromBytes + ?Sized> TryFromBytes for UnsafeCell<T> {
852 #[allow(clippy::missing_inline_in_public_items)]
853 fn only_derive_is_allowed_to_implement_this_trait()
854 where
855 Self: Sized,
856 {
857 }
858
859 #[inline(always)]
860 fn is_bit_valid<A>(candidate: Maybe<'_, Self, A>) -> bool
861 where
862 A: invariant::Alignment,
863 {
864 T::is_bit_valid(candidate.transmute::<_, _, BecauseImmutable>())
865 }
866}
867
868// SAFETY: Per the reference [1]:
869//
870// An array of `[T; N]` has a size of `size_of::<T>() * N` and the same
871// alignment of `T`. Arrays are laid out so that the zero-based `nth` element
872// of the array is offset from the start of the array by `n * size_of::<T>()`
873// bytes.
874//
875// ...
876//
877// Slices have the same layout as the section of the array they slice.
878//
879// In other words, the layout of a `[T]` or `[T; N]` is a sequence of `T`s laid
880// out back-to-back with no bytes in between. Therefore, `[T]` or `[T; N]` are
881// `Immutable`, `TryFromBytes`, `FromZeros`, `FromBytes`, and `IntoBytes` if `T`
882// is (respectively). Furthermore, since an array/slice has "the same alignment
883// of `T`", `[T]` and `[T; N]` are `Unaligned` if `T` is.
884//
885// Note that we don't `assert_unaligned!` for slice types because
886// `assert_unaligned!` uses `align_of`, which only works for `Sized` types.
887//
888// [1] https://doc.rust-lang.org/1.81.0/reference/type-layout.html#array-layout
889#[allow(clippy::multiple_unsafe_ops_per_block)]
890const _: () = unsafe {
891 unsafe_impl!(const N: usize, T: Immutable => Immutable for [T; N]);
892 unsafe_impl!(const N: usize, T: TryFromBytes => TryFromBytes for [T; N]; |c| {
893 let c: Ptr<'_, [ReadOnly<T>; N], _> = c.cast::<_, crate::pointer::cast::CastSized, _>();
894 let c: Ptr<'_, [ReadOnly<T>], _> = c.as_slice();
895 let c: Ptr<'_, ReadOnly<[T]>, _> = c.cast::<_, crate::pointer::cast::CastUnsized, _>();
896
897 // Note that this call may panic, but it would still be sound even if it
898 // did. `is_bit_valid` does not promise that it will not panic (in fact,
899 // it explicitly warns that it's a possibility), and we have not
900 // violated any safety invariants that we must fix before returning.
901 <[T] as TryFromBytes>::is_bit_valid(c)
902 });
903 unsafe_impl!(const N: usize, T: FromZeros => FromZeros for [T; N]);
904 unsafe_impl!(const N: usize, T: FromBytes => FromBytes for [T; N]);
905 unsafe_impl!(const N: usize, T: IntoBytes => IntoBytes for [T; N]);
906 unsafe_impl!(const N: usize, T: Unaligned => Unaligned for [T; N]);
907 assert_unaligned!([(); 0], [(); 1], [u8; 0], [u8; 1]);
908 unsafe_impl!(T: Immutable => Immutable for [T]);
909 unsafe_impl!(T: TryFromBytes => TryFromBytes for [T]; |c| {
910 let c: Ptr<'_, [ReadOnly<T>], _> = c.cast::<_, crate::pointer::cast::CastUnsized, _>();
911
912 // SAFETY: Per the reference [1]:
913 //
914 // An array of `[T; N]` has a size of `size_of::<T>() * N` and the
915 // same alignment of `T`. Arrays are laid out so that the zero-based
916 // `nth` element of the array is offset from the start of the array by
917 // `n * size_of::<T>()` bytes.
918 //
919 // ...
920 //
921 // Slices have the same layout as the section of the array they slice.
922 //
923 // In other words, the layout of a `[T] is a sequence of `T`s laid out
924 // back-to-back with no bytes in between. If all elements in `candidate`
925 // are `is_bit_valid`, so too is `candidate`.
926 //
927 // Note that any of the below calls may panic, but it would still be
928 // sound even if it did. `is_bit_valid` does not promise that it will
929 // not panic (in fact, it explicitly warns that it's a possibility), and
930 // we have not violated any safety invariants that we must fix before
931 // returning.
932 c.iter().all(<T as TryFromBytes>::is_bit_valid)
933 });
934 unsafe_impl!(T: FromZeros => FromZeros for [T]);
935 unsafe_impl!(T: FromBytes => FromBytes for [T]);
936 unsafe_impl!(T: IntoBytes => IntoBytes for [T]);
937 unsafe_impl!(T: Unaligned => Unaligned for [T]);
938};
939
940// SAFETY:
941// - `Immutable`: Raw pointers do not contain any `UnsafeCell`s.
942// - `FromZeros`: For thin pointers (note that `T: Sized`), the zero pointer is
943// considered "null". [1] No operations which require provenance are legal on
944// null pointers, so this is not a footgun.
945// - `TryFromBytes`: By the same reasoning as for `FromZeroes`, we can implement
946// `TryFromBytes` for thin pointers provided that
947// [`TryFromByte::is_bit_valid`] only produces `true` for zeroed bytes.
948//
949// NOTE(#170): Implementing `FromBytes` and `IntoBytes` for raw pointers would
950// be sound, but carries provenance footguns. We want to support `FromBytes` and
951// `IntoBytes` for raw pointers eventually, but we are holding off until we can
952// figure out how to address those footguns.
953//
954// [1] Per https://doc.rust-lang.org/1.81.0/std/ptr/fn.null.html:
955//
956// Creates a null raw pointer.
957//
958// This function is equivalent to zero-initializing the pointer:
959// `MaybeUninit::<*const T>::zeroed().assume_init()`.
960//
961// The resulting pointer has the address 0.
962#[allow(clippy::multiple_unsafe_ops_per_block)]
963const _: () = unsafe {
964 unsafe_impl!(T: ?Sized => Immutable for *const T);
965 unsafe_impl!(T: ?Sized => Immutable for *mut T);
966 unsafe_impl!(T => TryFromBytes for *const T; |c| pointer::is_zeroed(c));
967 unsafe_impl!(T => FromZeros for *const T);
968 unsafe_impl!(T => TryFromBytes for *mut T; |c| pointer::is_zeroed(c));
969 unsafe_impl!(T => FromZeros for *mut T);
970};
971
972// SAFETY: `NonNull<T>` self-evidently does not contain `UnsafeCell`s. This is
973// not a proof, but we are accepting this as a known risk per #1358.
974const _: () = unsafe { unsafe_impl!(T: ?Sized => Immutable for NonNull<T>) };
975
976// SAFETY: Reference types do not contain any `UnsafeCell`s.
977#[allow(clippy::multiple_unsafe_ops_per_block)]
978const _: () = unsafe {
979 unsafe_impl!(T: ?Sized => Immutable for &'_ T);
980 unsafe_impl!(T: ?Sized => Immutable for &'_ mut T);
981};
982
983// SAFETY: `Option` is not `#[non_exhaustive]` [1], which means that the types
984// in its variants cannot change, and no new variants can be added. `Option<T>`
985// does not contain any `UnsafeCell`s outside of `T`. [1]
986//
987// [1] https://doc.rust-lang.org/core/option/enum.Option.html
988const _: () = unsafe { unsafe_impl!(T: Immutable => Immutable for Option<T>) };
989
990mod tuples {
991 use super::*;
992
993 /// Generates various trait implementations for tuples.
994 ///
995 /// # Safety
996 ///
997 /// `impl_tuple!` should be provided name-number pairs, where each number is
998 /// the ordinal of the preceding type name.
999 macro_rules! impl_tuple {
1000 // Entry point.
1001 ($($T:ident $I:tt),+ $(,)?) => {
1002 crate::util::macros::__unsafe();
1003 impl_tuple!(@all [] [$($T $I)+]);
1004 };
1005
1006 // Build up the set of tuple types (i.e., `(A,)`, `(A, B)`, `(A, B, C)`,
1007 // etc.) Trait implementations that do not depend on field index may be
1008 // added to this branch.
1009 (@all [$($head_T:ident $head_I:tt)*] [$next_T:ident $next_I:tt $($tail:tt)*]) => {
1010 // SAFETY: If all fields of the tuple `Self` are `Immutable`, so too is `Self`.
1011 unsafe_impl!($($head_T: Immutable,)* $next_T: Immutable => Immutable for ($($head_T,)* $next_T,));
1012
1013 // SAFETY: If all fields in `c` are `is_bit_valid`, so too is `c`.
1014 unsafe_impl!($($head_T: TryFromBytes,)* $next_T: TryFromBytes => TryFromBytes for ($($head_T,)* $next_T,); |c| {
1015 let mut c = c;
1016 $(TryFromBytes::is_bit_valid(into_inner!(c.reborrow().project::<_, { crate::STRUCT_VARIANT_ID }, { crate::ident_id!($head_I) }>())) &&)*
1017 TryFromBytes::is_bit_valid(into_inner!(c.reborrow().project::<_, { crate::STRUCT_VARIANT_ID }, { crate::ident_id!($next_I) }>()))
1018 });
1019
1020 // SAFETY: If all fields in `Self` are `FromZeros`, so too is `Self`.
1021 unsafe_impl!($($head_T: FromZeros,)* $next_T: FromZeros => FromZeros for ($($head_T,)* $next_T,));
1022
1023 // SAFETY: If all fields in `Self` are `FromBytes`, so too is `Self`.
1024 unsafe_impl!($($head_T: FromBytes,)* $next_T: FromBytes => FromBytes for ($($head_T,)* $next_T,));
1025
1026 // SAFETY: See safety comment on `ProjectToTag`.
1027 unsafe impl<$($head_T,)* $next_T> crate::HasTag for ($($head_T,)* $next_T,) {
1028 #[inline]
1029 fn only_derive_is_allowed_to_implement_this_trait()
1030 where
1031 Self: Sized
1032 {}
1033
1034 type Tag = ();
1035
1036 // SAFETY: It is trivially sound to project any pointer to a
1037 // pointer to a type of size zero and alignment 1 (which `()` is
1038 // [1]). Such a pointer will trivially satisfy its aliasing and
1039 // validity requirements (since it has a zero-sized referent),
1040 // and its alignment requirement (since it is aligned to 1).
1041 //
1042 // [1] Per https://doc.rust-lang.org/1.92.0/reference/type-layout.html#r-layout.tuple.unit:
1043 //
1044 // [T]he unit tuple (`()`)... is guaranteed as a zero-sized
1045 // type to have a size of 0 and an alignment of 1.
1046 type ProjectToTag = crate::pointer::cast::CastToUnit;
1047 }
1048
1049 // Generate impls that depend on tuple index.
1050 impl_tuple!(@variants
1051 [$($head_T $head_I)* $next_T $next_I]
1052 []
1053 [$($head_T $head_I)* $next_T $next_I]
1054 );
1055
1056 // Recurse to next tuple size
1057 impl_tuple!(@all [$($head_T $head_I)* $next_T $next_I] [$($tail)*]);
1058 };
1059 (@all [$($head_T:ident $head_I:tt)*] []) => {};
1060
1061 // Emit trait implementations that depend on field index.
1062 (@variants
1063 // The full tuple definition in type–index pairs.
1064 [$($AllT:ident $AllI:tt)+]
1065 // Types before the current index.
1066 [$($BeforeT:ident)*]
1067 // The types and indices at and after the current index.
1068 [$CurrT:ident $CurrI:tt $($AfterT:ident $AfterI:tt)*]
1069 ) => {
1070 // SAFETY:
1071 // - `Self` is a struct (albeit anonymous), so `VARIANT_ID` is
1072 // `STRUCT_VARIANT_ID`.
1073 // - `$CurrI` is the field at index `$CurrI`, so `FIELD_ID` is
1074 // `zerocopy::ident_id!($CurrI)`
1075 // - `()` has the same visibility as the `.$CurrI` field (ie, `.0`,
1076 // `.1`, etc)
1077 // - `Type` has the same type as `$CurrI`; i.e., `$CurrT`.
1078 unsafe impl<$($AllT),+> crate::HasField<
1079 (),
1080 { crate::STRUCT_VARIANT_ID },
1081 { crate::ident_id!($CurrI)}
1082 > for ($($AllT,)+) {
1083 #[inline]
1084 fn only_derive_is_allowed_to_implement_this_trait()
1085 where
1086 Self: Sized
1087 {}
1088
1089 type Type = $CurrT;
1090
1091 #[inline(always)]
1092 fn project(slf: crate::PtrInner<'_, Self>) -> *mut Self::Type {
1093 let slf = slf.as_non_null().as_ptr();
1094 // SAFETY: `PtrInner` promises it references either a zero-sized
1095 // byte range, or else will reference a byte range that is
1096 // entirely contained within an allocated object. In either
1097 // case, this guarantees that `(*slf).$CurrI` is in-bounds of
1098 // `slf`.
1099 unsafe { core::ptr::addr_of_mut!((*slf).$CurrI) }
1100 }
1101 }
1102
1103 // SAFETY: See comments on items.
1104 unsafe impl<Aliasing, Alignment, $($AllT),+> crate::ProjectField<
1105 (),
1106 (Aliasing, Alignment, crate::invariant::Uninit),
1107 { crate::STRUCT_VARIANT_ID },
1108 { crate::ident_id!($CurrI)}
1109 > for ($($AllT,)+)
1110 where
1111 Aliasing: crate::invariant::Aliasing,
1112 Alignment: crate::invariant::Alignment,
1113 {
1114 #[inline]
1115 fn only_derive_is_allowed_to_implement_this_trait()
1116 where
1117 Self: Sized
1118 {}
1119
1120 // SAFETY: Tuples are product types whose fields are
1121 // well-aligned, so projection preserves both the alignment and
1122 // validity invariants of the outer pointer.
1123 type Invariants = (Aliasing, Alignment, crate::invariant::Uninit);
1124
1125 // SAFETY: Tuples are product types and so projection is infallible;
1126 type Error = core::convert::Infallible;
1127 }
1128
1129 // SAFETY: See comments on items.
1130 unsafe impl<Aliasing, Alignment, $($AllT),+> crate::ProjectField<
1131 (),
1132 (Aliasing, Alignment, crate::invariant::Initialized),
1133 { crate::STRUCT_VARIANT_ID },
1134 { crate::ident_id!($CurrI)}
1135 > for ($($AllT,)+)
1136 where
1137 Aliasing: crate::invariant::Aliasing,
1138 Alignment: crate::invariant::Alignment,
1139 {
1140 #[inline]
1141 fn only_derive_is_allowed_to_implement_this_trait()
1142 where
1143 Self: Sized
1144 {}
1145
1146 // SAFETY: Tuples are product types whose fields are
1147 // well-aligned, so projection preserves both the alignment and
1148 // validity invariants of the outer pointer.
1149 type Invariants = (Aliasing, Alignment, crate::invariant::Initialized);
1150
1151 // SAFETY: Tuples are product types and so projection is infallible;
1152 type Error = core::convert::Infallible;
1153 }
1154
1155 // SAFETY: See comments on items.
1156 unsafe impl<Aliasing, Alignment, $($AllT),+> crate::ProjectField<
1157 (),
1158 (Aliasing, Alignment, crate::invariant::Valid),
1159 { crate::STRUCT_VARIANT_ID },
1160 { crate::ident_id!($CurrI)}
1161 > for ($($AllT,)+)
1162 where
1163 Aliasing: crate::invariant::Aliasing,
1164 Alignment: crate::invariant::Alignment,
1165 {
1166 #[inline]
1167 fn only_derive_is_allowed_to_implement_this_trait()
1168 where
1169 Self: Sized
1170 {}
1171
1172 // SAFETY: Tuples are product types whose fields are
1173 // well-aligned, so projection preserves both the alignment and
1174 // validity invariants of the outer pointer.
1175 type Invariants = (Aliasing, Alignment, crate::invariant::Valid);
1176
1177 // SAFETY: Tuples are product types and so projection is infallible;
1178 type Error = core::convert::Infallible;
1179 }
1180
1181 // Recurse to the next index.
1182 impl_tuple!(@variants [$($AllT $AllI)+] [$($BeforeT)* $CurrT] [$($AfterT $AfterI)*]);
1183 };
1184 (@variants [$($AllT:ident $AllI:tt)+] [$($BeforeT:ident)*] []) => {};
1185 }
1186
1187 // SAFETY: `impl_tuple` is provided name-number pairs, where number is the
1188 // ordinal of the name.
1189 #[allow(clippy::multiple_unsafe_ops_per_block)]
1190 const _: () = unsafe {
1191 impl_tuple! {
1192 A 0,
1193 B 1,
1194 C 2,
1195 D 3,
1196 E 4,
1197 F 5,
1198 G 6,
1199 H 7,
1200 I 8,
1201 J 9,
1202 K 10,
1203 L 11,
1204 M 12,
1205 N 13,
1206 O 14,
1207 P 15,
1208 Q 16,
1209 R 17,
1210 S 18,
1211 T 19,
1212 U 20,
1213 V 21,
1214 W 22,
1215 X 23,
1216 Y 24,
1217 Z 25,
1218 };
1219 };
1220}
1221
1222// SIMD support
1223//
1224// Per the Unsafe Code Guidelines Reference [1]:
1225//
1226// Packed SIMD vector types are `repr(simd)` homogeneous tuple-structs
1227// containing `N` elements of type `T` where `N` is a power-of-two and the
1228// size and alignment requirements of `T` are equal:
1229//
1230// ```rust
1231// #[repr(simd)]
1232// struct Vector<T, N>(T_0, ..., T_(N - 1));
1233// ```
1234//
1235// ...
1236//
1237// The size of `Vector` is `N * size_of::<T>()` and its alignment is an
1238// implementation-defined function of `T` and `N` greater than or equal to
1239// `align_of::<T>()`.
1240//
1241// ...
1242//
1243// Vector elements are laid out in source field order, enabling random access
1244// to vector elements by reinterpreting the vector as an array:
1245//
1246// ```rust
1247// union U {
1248// vec: Vector<T, N>,
1249// arr: [T; N]
1250// }
1251//
1252// assert_eq!(size_of::<Vector<T, N>>(), size_of::<[T; N]>());
1253// assert!(align_of::<Vector<T, N>>() >= align_of::<[T; N]>());
1254//
1255// unsafe {
1256// let u = U { vec: Vector<T, N>(t_0, ..., t_(N - 1)) };
1257//
1258// assert_eq!(u.vec.0, u.arr[0]);
1259// // ...
1260// assert_eq!(u.vec.(N - 1), u.arr[N - 1]);
1261// }
1262// ```
1263//
1264// Given this background, we can observe that:
1265// - The size and bit pattern requirements of a SIMD type are equivalent to the
1266// equivalent array type. Thus, for any SIMD type whose primitive `T` is
1267// `Immutable`, `TryFromBytes`, `FromZeros`, `FromBytes`, or `IntoBytes`, that
1268// SIMD type is also `Immutable`, `TryFromBytes`, `FromZeros`, `FromBytes`, or
1269// `IntoBytes` respectively.
1270// - Since no upper bound is placed on the alignment, no SIMD type can be
1271// guaranteed to be `Unaligned`.
1272//
1273// Also per [1]:
1274//
1275// This chapter represents the consensus from issue #38. The statements in
1276// here are not (yet) "guaranteed" not to change until an RFC ratifies them.
1277//
1278// See issue #38 [2]. While this behavior is not technically guaranteed, the
1279// likelihood that the behavior will change such that SIMD types are no longer
1280// `TryFromBytes`, `FromZeros`, `FromBytes`, or `IntoBytes` is next to zero, as
1281// that would defeat the entire purpose of SIMD types. Nonetheless, we put this
1282// behavior behind the `simd` Cargo feature, which requires consumers to opt
1283// into this stability hazard.
1284//
1285// [1] https://rust-lang.github.io/unsafe-code-guidelines/layout/packed-simd-vectors.html
1286// [2] https://github.com/rust-lang/unsafe-code-guidelines/issues/38
1287#[cfg(feature = "simd")]
1288#[cfg_attr(doc_cfg, doc(cfg(feature = "simd")))]
1289mod simd {
1290 /// Defines a module which implements `TryFromBytes`, `FromZeros`,
1291 /// `FromBytes`, and `IntoBytes` for a set of types from a module in
1292 /// `core::arch`.
1293 ///
1294 /// `$arch` is both the name of the defined module and the name of the
1295 /// module in `core::arch`, and `$typ` is the list of items from that module
1296 /// to implement `FromZeros`, `FromBytes`, and `IntoBytes` for.
1297 #[allow(unused_macros)] // `allow(unused_macros)` is needed because some
1298 // target/feature combinations don't emit any impls
1299 // and thus don't use this macro.
1300 macro_rules! simd_arch_mod {
1301 ($(#[cfg $cfg:tt])* $(#[cfg_attr $cfg_attr:tt])? $arch:ident, $mod:ident, $($typ:ident),*) => {
1302 $(#[cfg $cfg])*
1303 #[cfg_attr(doc_cfg, doc(cfg $($cfg)*))]
1304 $(#[cfg_attr $cfg_attr])?
1305 mod $mod {
1306 use core::arch::$arch::{$($typ),*};
1307
1308 use crate::*;
1309 impl_known_layout!($($typ),*);
1310 // SAFETY: See comment on module definition for justification.
1311 #[allow(clippy::multiple_unsafe_ops_per_block)]
1312 const _: () = unsafe {
1313 $( unsafe_impl!($typ: Immutable, TryFromBytes, FromZeros, FromBytes, IntoBytes); )*
1314 };
1315 }
1316 };
1317 }
1318
1319 #[rustfmt::skip]
1320 const _: () = {
1321 simd_arch_mod!(
1322 #[cfg(target_arch = "x86")]
1323 x86, x86, __m128, __m128d, __m128i, __m256, __m256d, __m256i
1324 );
1325 #[cfg(not(no_zerocopy_simd_x86_avx12_1_89_0))]
1326 simd_arch_mod!(
1327 #[cfg(target_arch = "x86")]
1328 #[cfg_attr(doc_cfg, doc(cfg(rust = "1.89.0")))]
1329 x86, x86_nightly, __m512bh, __m512, __m512d, __m512i
1330 );
1331 simd_arch_mod!(
1332 #[cfg(target_arch = "x86_64")]
1333 x86_64, x86_64, __m128, __m128d, __m128i, __m256, __m256d, __m256i
1334 );
1335 #[cfg(not(no_zerocopy_simd_x86_avx12_1_89_0))]
1336 simd_arch_mod!(
1337 #[cfg(target_arch = "x86_64")]
1338 #[cfg_attr(doc_cfg, doc(cfg(rust = "1.89.0")))]
1339 x86_64, x86_64_nightly, __m512bh, __m512, __m512d, __m512i
1340 );
1341 simd_arch_mod!(
1342 #[cfg(target_arch = "wasm32")]
1343 wasm32, wasm32, v128
1344 );
1345 simd_arch_mod!(
1346 #[cfg(all(feature = "simd-nightly", target_arch = "powerpc"))]
1347 powerpc, powerpc, vector_bool_long, vector_double, vector_signed_long, vector_unsigned_long
1348 );
1349 simd_arch_mod!(
1350 #[cfg(all(feature = "simd-nightly", target_arch = "powerpc64"))]
1351 powerpc64, powerpc64, vector_bool_long, vector_double, vector_signed_long, vector_unsigned_long
1352 );
1353 #[cfg(not(no_zerocopy_aarch64_simd_1_59_0))]
1354 simd_arch_mod!(
1355 // NOTE(https://github.com/rust-lang/stdarch/issues/1484): NEON intrinsics are currently
1356 // broken on big-endian platforms.
1357 #[cfg(all(target_arch = "aarch64", target_endian = "little"))]
1358 #[cfg_attr(doc_cfg, doc(cfg(rust = "1.59.0")))]
1359 aarch64, aarch64, float32x2_t, float32x4_t, float64x1_t, float64x2_t, int8x8_t, int8x8x2_t,
1360 int8x8x3_t, int8x8x4_t, int8x16_t, int8x16x2_t, int8x16x3_t, int8x16x4_t, int16x4_t,
1361 int16x8_t, int32x2_t, int32x4_t, int64x1_t, int64x2_t, poly8x8_t, poly8x8x2_t, poly8x8x3_t,
1362 poly8x8x4_t, poly8x16_t, poly8x16x2_t, poly8x16x3_t, poly8x16x4_t, poly16x4_t, poly16x8_t,
1363 poly64x1_t, poly64x2_t, uint8x8_t, uint8x8x2_t, uint8x8x3_t, uint8x8x4_t, uint8x16_t,
1364 uint8x16x2_t, uint8x16x3_t, uint8x16x4_t, uint16x4_t, uint16x4x2_t, uint16x4x3_t,
1365 uint16x4x4_t, uint16x8_t, uint32x2_t, uint32x4_t, uint64x1_t, uint64x2_t
1366 );
1367 };
1368}
1369
1370#[cfg(test)]
1371mod tests {
1372 use super::*;
1373
1374 #[test]
1375 fn test_impls() {
1376 // A type that can supply test cases for testing
1377 // `TryFromBytes::is_bit_valid`. All types passed to `assert_impls!`
1378 // must implement this trait; that macro uses it to generate runtime
1379 // tests for `TryFromBytes` impls.
1380 //
1381 // All `T: FromBytes` types are provided with a blanket impl. Other
1382 // types must implement `TryFromBytesTestable` directly (ie using
1383 // `impl_try_from_bytes_testable!`).
1384 trait TryFromBytesTestable {
1385 fn with_passing_test_cases<F: Fn(Box<ReadOnly<Self>>)>(f: F);
1386 fn with_failing_test_cases<F: Fn(&mut [u8])>(f: F);
1387 }
1388
1389 impl<T: FromBytes> TryFromBytesTestable for T {
1390 fn with_passing_test_cases<F: Fn(Box<ReadOnly<Self>>)>(f: F) {
1391 // Test with a zeroed value.
1392 f(ReadOnly::<Self>::new_box_zeroed().unwrap());
1393
1394 let ffs = {
1395 let mut t = ReadOnly::new(Self::new_zeroed());
1396 let ptr: *mut T = ReadOnly::as_mut(&mut t);
1397 // SAFETY: `T: FromBytes`
1398 unsafe { ptr::write_bytes(ptr.cast::<u8>(), 0xFF, mem::size_of::<T>()) };
1399 t
1400 };
1401
1402 // Test with a value initialized with 0xFF.
1403 f(Box::new(ffs));
1404 }
1405
1406 fn with_failing_test_cases<F: Fn(&mut [u8])>(_f: F) {}
1407 }
1408
1409 macro_rules! impl_try_from_bytes_testable_for_null_pointer_optimization {
1410 ($($tys:ty),*) => {
1411 $(
1412 impl TryFromBytesTestable for Option<$tys> {
1413 fn with_passing_test_cases<F: Fn(Box<ReadOnly<Self>>)>(f: F) {
1414 // Test with a zeroed value.
1415 f(Box::new(ReadOnly::new(None)));
1416 }
1417
1418 fn with_failing_test_cases<F: Fn(&mut [u8])>(f: F) {
1419 for pos in 0..mem::size_of::<Self>() {
1420 let mut bytes = [0u8; mem::size_of::<Self>()];
1421 bytes[pos] = 0x01;
1422 f(&mut bytes[..]);
1423 }
1424 }
1425 }
1426 )*
1427 };
1428 }
1429
1430 // Implements `TryFromBytesTestable`.
1431 macro_rules! impl_try_from_bytes_testable {
1432 // Base case for recursion (when the list of types has run out).
1433 (=> @success $($success_case:expr),* $(, @failure $($failure_case:expr),*)?) => {};
1434 // Implements for type(s) with no type parameters.
1435 ($ty:ty $(,$tys:ty)* => @success $($success_case:expr),* $(, @failure $($failure_case:expr),*)?) => {
1436 impl TryFromBytesTestable for $ty {
1437 impl_try_from_bytes_testable!(
1438 @methods @success $($success_case),*
1439 $(, @failure $($failure_case),*)?
1440 );
1441 }
1442 impl_try_from_bytes_testable!($($tys),* => @success $($success_case),* $(, @failure $($failure_case),*)?);
1443 };
1444 // Implements for multiple types with no type parameters.
1445 ($($($ty:ty),* => @success $($success_case:expr), * $(, @failure $($failure_case:expr),*)?;)*) => {
1446 $(
1447 impl_try_from_bytes_testable!($($ty),* => @success $($success_case),* $(, @failure $($failure_case),*)*);
1448 )*
1449 };
1450 // Implements only the methods; caller must invoke this from inside
1451 // an impl block.
1452 (@methods @success $($success_case:expr),* $(, @failure $($failure_case:expr),*)?) => {
1453 fn with_passing_test_cases<F: Fn(Box<ReadOnly<Self>>)>(_f: F) {
1454 $(
1455 let bx = Box::<Self>::from($success_case);
1456 let ro: Box<ReadOnly<_>> = {
1457 let raw = Box::into_raw(bx);
1458 // SAFETY: `ReadOnly<T>` has the same layout and bit
1459 // validity as `T`.
1460 #[allow(clippy::as_conversions)]
1461 unsafe { Box::from_raw(raw as *mut _) }
1462 };
1463 _f(ro);
1464 )*
1465 }
1466
1467 fn with_failing_test_cases<F: Fn(&mut [u8])>(_f: F) {
1468 $($(
1469 let mut case = $failure_case;
1470 _f(case.as_mut_bytes());
1471 )*)?
1472 }
1473 };
1474 }
1475
1476 impl_try_from_bytes_testable_for_null_pointer_optimization!(
1477 Box<UnsafeCell<NotZerocopy>>,
1478 &'static UnsafeCell<NotZerocopy>,
1479 &'static mut UnsafeCell<NotZerocopy>,
1480 NonNull<UnsafeCell<NotZerocopy>>,
1481 fn(),
1482 FnManyArgs,
1483 extern "C" fn(),
1484 ECFnManyArgs
1485 );
1486
1487 macro_rules! bx {
1488 ($e:expr) => {
1489 Box::new($e)
1490 };
1491 }
1492
1493 // Note that these impls are only for types which are not `FromBytes`.
1494 // `FromBytes` types are covered by a preceding blanket impl.
1495 impl_try_from_bytes_testable!(
1496 bool => @success true, false,
1497 @failure 2u8, 3u8, 0xFFu8;
1498 char => @success '\u{0}', '\u{D7FF}', '\u{E000}', '\u{10FFFF}',
1499 @failure 0xD800u32, 0xDFFFu32, 0x110000u32;
1500 str => @success "", "hello", "❤️🧡💛💚💙💜",
1501 @failure [0, 159, 146, 150];
1502 [u8] => @success vec![].into_boxed_slice(), vec![0, 1, 2].into_boxed_slice();
1503 NonZeroU8, NonZeroI8, NonZeroU16, NonZeroI16, NonZeroU32,
1504 NonZeroI32, NonZeroU64, NonZeroI64, NonZeroU128, NonZeroI128,
1505 NonZeroUsize, NonZeroIsize
1506 => @success Self::new(1).unwrap(),
1507 // Doing this instead of `0` ensures that we always satisfy
1508 // the size and alignment requirements of `Self` (whereas `0`
1509 // may be any integer type with a different size or alignment
1510 // than some `NonZeroXxx` types).
1511 @failure Option::<Self>::None;
1512 [bool; 0] => @success [];
1513 [bool; 1]
1514 => @success [true], [false],
1515 @failure [2u8], [3u8], [0xFFu8];
1516 [bool]
1517 => @success vec![true, false].into_boxed_slice(), vec![false, true].into_boxed_slice(),
1518 @failure [2u8], [3u8], [0xFFu8], [0u8, 1u8, 2u8];
1519 Unalign<bool>
1520 => @success Unalign::new(false), Unalign::new(true),
1521 @failure 2u8, 0xFFu8;
1522 ManuallyDrop<bool>
1523 => @success ManuallyDrop::new(false), ManuallyDrop::new(true),
1524 @failure 2u8, 0xFFu8;
1525 ManuallyDrop<[u8]>
1526 => @success bx!(ManuallyDrop::new([])), bx!(ManuallyDrop::new([0u8])), bx!(ManuallyDrop::new([0u8, 1u8]));
1527 ManuallyDrop<[bool]>
1528 => @success bx!(ManuallyDrop::new([])), bx!(ManuallyDrop::new([false])), bx!(ManuallyDrop::new([false, true])),
1529 @failure [2u8], [3u8], [0xFFu8], [0u8, 1u8, 2u8];
1530 ManuallyDrop<[UnsafeCell<u8>]>
1531 => @success bx!(ManuallyDrop::new([UnsafeCell::new(0)])), bx!(ManuallyDrop::new([UnsafeCell::new(0), UnsafeCell::new(1)]));
1532 ManuallyDrop<[UnsafeCell<bool>]>
1533 => @success bx!(ManuallyDrop::new([UnsafeCell::new(false)])), bx!(ManuallyDrop::new([UnsafeCell::new(false), UnsafeCell::new(true)])),
1534 @failure [2u8], [3u8], [0xFFu8], [0u8, 1u8, 2u8];
1535 Wrapping<bool>
1536 => @success Wrapping(false), Wrapping(true),
1537 @failure 2u8, 0xFFu8;
1538 *const NotZerocopy
1539 => @success ptr::null::<NotZerocopy>(),
1540 @failure [0x01; mem::size_of::<*const NotZerocopy>()];
1541 *mut NotZerocopy
1542 => @success ptr::null_mut::<NotZerocopy>(),
1543 @failure [0x01; mem::size_of::<*mut NotZerocopy>()];
1544 );
1545
1546 // Use the trick described in [1] to allow us to call methods
1547 // conditional on certain trait bounds.
1548 //
1549 // In all of these cases, methods return `Option<R>`, where `R` is the
1550 // return type of the method we're conditionally calling. The "real"
1551 // implementations (the ones defined in traits using `&self`) return
1552 // `Some`, and the default implementations (the ones defined as inherent
1553 // methods using `&mut self`) return `None`.
1554 //
1555 // [1] https://github.com/dtolnay/case-studies/blob/master/autoref-specialization/README.md
1556 mod autoref_trick {
1557 use super::*;
1558
1559 pub(super) struct AutorefWrapper<T: ?Sized>(pub(super) PhantomData<T>);
1560
1561 pub(super) trait TestIsBitValidShared<T: ?Sized> {
1562 #[allow(clippy::needless_lifetimes)]
1563 fn test_is_bit_valid_shared<'ptr>(&self, candidate: Maybe<'ptr, T>)
1564 -> Option<bool>;
1565 }
1566
1567 impl<T: TryFromBytes + Immutable + ?Sized> TestIsBitValidShared<T> for AutorefWrapper<T> {
1568 #[allow(clippy::needless_lifetimes)]
1569 fn test_is_bit_valid_shared<'ptr>(
1570 &self,
1571 candidate: Maybe<'ptr, T>,
1572 ) -> Option<bool> {
1573 Some(T::is_bit_valid(candidate))
1574 }
1575 }
1576
1577 pub(super) trait TestTryFromRef<T: ?Sized> {
1578 #[allow(clippy::needless_lifetimes)]
1579 fn test_try_from_ref<'bytes>(
1580 &self,
1581 bytes: &'bytes [u8],
1582 ) -> Option<Option<&'bytes T>>;
1583 }
1584
1585 impl<T: TryFromBytes + Immutable + KnownLayout + ?Sized> TestTryFromRef<T> for AutorefWrapper<T> {
1586 #[allow(clippy::needless_lifetimes)]
1587 fn test_try_from_ref<'bytes>(
1588 &self,
1589 bytes: &'bytes [u8],
1590 ) -> Option<Option<&'bytes T>> {
1591 Some(T::try_ref_from_bytes(bytes).ok())
1592 }
1593 }
1594
1595 pub(super) trait TestTryFromMut<T: ?Sized> {
1596 #[allow(clippy::needless_lifetimes)]
1597 fn test_try_from_mut<'bytes>(
1598 &self,
1599 bytes: &'bytes mut [u8],
1600 ) -> Option<Option<&'bytes mut T>>;
1601 }
1602
1603 impl<T: TryFromBytes + IntoBytes + KnownLayout + ?Sized> TestTryFromMut<T> for AutorefWrapper<T> {
1604 #[allow(clippy::needless_lifetimes)]
1605 fn test_try_from_mut<'bytes>(
1606 &self,
1607 bytes: &'bytes mut [u8],
1608 ) -> Option<Option<&'bytes mut T>> {
1609 Some(T::try_mut_from_bytes(bytes).ok())
1610 }
1611 }
1612
1613 pub(super) trait TestTryReadFrom<T> {
1614 fn test_try_read_from(&self, bytes: &[u8]) -> Option<Option<T>>;
1615 }
1616
1617 impl<T: TryFromBytes> TestTryReadFrom<T> for AutorefWrapper<T> {
1618 fn test_try_read_from(&self, bytes: &[u8]) -> Option<Option<T>> {
1619 Some(T::try_read_from_bytes(bytes).ok())
1620 }
1621 }
1622
1623 pub(super) trait TestAsBytes<T: ?Sized> {
1624 #[allow(clippy::needless_lifetimes)]
1625 fn test_as_bytes<'slf, 't>(&'slf self, t: &'t ReadOnly<T>) -> Option<&'t [u8]>;
1626 }
1627
1628 impl<T: IntoBytes + Immutable + ?Sized> TestAsBytes<T> for AutorefWrapper<T> {
1629 #[allow(clippy::needless_lifetimes)]
1630 fn test_as_bytes<'slf, 't>(&'slf self, t: &'t ReadOnly<T>) -> Option<&'t [u8]> {
1631 Some(t.as_bytes())
1632 }
1633 }
1634 }
1635
1636 use autoref_trick::*;
1637
1638 // Asserts that `$ty` is one of a list of types which are allowed to not
1639 // provide a "real" implementation for `$fn_name`. Since the
1640 // `autoref_trick` machinery fails silently, this allows us to ensure
1641 // that the "default" impls are only being used for types which we
1642 // expect.
1643 //
1644 // Note that, since this is a runtime test, it is possible to have an
1645 // allowlist which is too restrictive if the function in question is
1646 // never called for a particular type. For example, if `as_bytes` is not
1647 // supported for a particular type, and so `test_as_bytes` returns
1648 // `None`, methods such as `test_try_from_ref` may never be called for
1649 // that type. As a result, it's possible that, for example, adding
1650 // `as_bytes` support for a type would cause other allowlist assertions
1651 // to fail. This means that allowlist assertion failures should not
1652 // automatically be taken as a sign of a bug.
1653 macro_rules! assert_on_allowlist {
1654 ($fn_name:ident($ty:ty) $(: $($tys:ty),*)?) => {{
1655 use core::any::TypeId;
1656
1657 let allowlist: &[TypeId] = &[ $($(TypeId::of::<$tys>()),*)? ];
1658 let allowlist_names: &[&str] = &[ $($(stringify!($tys)),*)? ];
1659
1660 let id = TypeId::of::<$ty>();
1661 assert!(allowlist.contains(&id), "{} is not on allowlist for {}: {:?}", stringify!($ty), stringify!($fn_name), allowlist_names);
1662 }};
1663 }
1664
1665 // Asserts that `$ty` implements any `$trait` and doesn't implement any
1666 // `!$trait`. Note that all `$trait`s must come before any `!$trait`s.
1667 //
1668 // For `T: TryFromBytes`, uses `TryFromBytesTestable` to test success
1669 // and failure cases.
1670 macro_rules! assert_impls {
1671 ($ty:ty: TryFromBytes) => {
1672 // "Default" implementations that match the "real"
1673 // implementations defined in the `autoref_trick` module above.
1674 #[allow(unused, non_local_definitions)]
1675 impl AutorefWrapper<$ty> {
1676 #[allow(clippy::needless_lifetimes)]
1677 fn test_is_bit_valid_shared<'ptr>(
1678 &mut self,
1679 candidate: Maybe<'ptr, $ty>,
1680 ) -> Option<bool> {
1681 assert_on_allowlist!(
1682 test_is_bit_valid_shared($ty):
1683 ManuallyDrop<UnsafeCell<()>>,
1684 ManuallyDrop<[UnsafeCell<u8>]>,
1685 ManuallyDrop<[UnsafeCell<bool>]>,
1686 CoreMaybeUninit<NotZerocopy>,
1687 CoreMaybeUninit<UnsafeCell<()>>,
1688 Wrapping<UnsafeCell<()>>
1689 );
1690
1691 None
1692 }
1693
1694 #[allow(clippy::needless_lifetimes)]
1695 fn test_try_from_ref<'bytes>(&mut self, _bytes: &'bytes [u8]) -> Option<Option<&'bytes $ty>> {
1696 assert_on_allowlist!(
1697 test_try_from_ref($ty):
1698 ManuallyDrop<[UnsafeCell<bool>]>
1699 );
1700
1701 None
1702 }
1703
1704 #[allow(clippy::needless_lifetimes)]
1705 fn test_try_from_mut<'bytes>(&mut self, _bytes: &'bytes mut [u8]) -> Option<Option<&'bytes mut $ty>> {
1706 assert_on_allowlist!(
1707 test_try_from_mut($ty):
1708 Option<Box<UnsafeCell<NotZerocopy>>>,
1709 Option<&'static UnsafeCell<NotZerocopy>>,
1710 Option<&'static mut UnsafeCell<NotZerocopy>>,
1711 Option<NonNull<UnsafeCell<NotZerocopy>>>,
1712 Option<fn()>,
1713 Option<FnManyArgs>,
1714 Option<extern "C" fn()>,
1715 Option<ECFnManyArgs>,
1716 *const NotZerocopy,
1717 *mut NotZerocopy
1718 );
1719
1720 None
1721 }
1722
1723 fn test_try_read_from(&mut self, _bytes: &[u8]) -> Option<Option<&$ty>> {
1724 assert_on_allowlist!(
1725 test_try_read_from($ty):
1726 str,
1727 ManuallyDrop<[u8]>,
1728 ManuallyDrop<[bool]>,
1729 ManuallyDrop<[UnsafeCell<bool>]>,
1730 [u8],
1731 [bool]
1732 );
1733
1734 None
1735 }
1736
1737 fn test_as_bytes(&mut self, _t: &ReadOnly<$ty>) -> Option<&[u8]> {
1738 assert_on_allowlist!(
1739 test_as_bytes($ty):
1740 Option<&'static UnsafeCell<NotZerocopy>>,
1741 Option<&'static mut UnsafeCell<NotZerocopy>>,
1742 Option<NonNull<UnsafeCell<NotZerocopy>>>,
1743 Option<Box<UnsafeCell<NotZerocopy>>>,
1744 Option<fn()>,
1745 Option<FnManyArgs>,
1746 Option<extern "C" fn()>,
1747 Option<ECFnManyArgs>,
1748 CoreMaybeUninit<u8>,
1749 CoreMaybeUninit<NotZerocopy>,
1750 CoreMaybeUninit<UnsafeCell<()>>,
1751 ManuallyDrop<UnsafeCell<()>>,
1752 ManuallyDrop<[UnsafeCell<u8>]>,
1753 ManuallyDrop<[UnsafeCell<bool>]>,
1754 Wrapping<UnsafeCell<()>>,
1755 *const NotZerocopy,
1756 *mut NotZerocopy
1757 );
1758
1759 None
1760 }
1761 }
1762
1763 <$ty as TryFromBytesTestable>::with_passing_test_cases(|mut val| {
1764 // FIXME(#494): These tests only get exercised for types
1765 // which are `IntoBytes`. Once we implement #494, we should
1766 // be able to support non-`IntoBytes` types by zeroing
1767 // padding.
1768
1769 // We define `w` and `ww` since, in the case of the inherent
1770 // methods, Rust thinks they're both borrowed mutably at the
1771 // same time (given how we use them below). If we just
1772 // defined a single `w` and used it for multiple operations,
1773 // this would conflict.
1774 //
1775 // We `#[allow(unused_mut]` for the cases where the "real"
1776 // impls are used, which take `&self`.
1777 #[allow(unused_mut)]
1778 let (mut w, mut ww) = (AutorefWrapper::<$ty>(PhantomData), AutorefWrapper::<$ty>(PhantomData));
1779
1780 let c = Ptr::from_ref(&*val);
1781 let c = c.forget_aligned();
1782 // SAFETY: FIXME(#899): This is unsound. `$ty` is not
1783 // necessarily `IntoBytes`, but that's the corner we've
1784 // backed ourselves into by using `Ptr::from_ref`.
1785 let c = unsafe { c.assume_initialized() };
1786 let res = w.test_is_bit_valid_shared(c);
1787 if let Some(res) = res {
1788 assert!(res, "{}::is_bit_valid (shared `Ptr`): got false, expected true", stringify!($ty));
1789 }
1790
1791 let c = Ptr::from_mut(&mut *val);
1792 let c = c.forget_aligned();
1793 // SAFETY: FIXME(#899): This is unsound. `$ty` is not
1794 // necessarily `IntoBytes`, but that's the corner we've
1795 // backed ourselves into by using `Ptr::from_ref`.
1796 let mut c = unsafe { c.assume_initialized() };
1797 let res = <$ty as TryFromBytes>::is_bit_valid(c.reborrow_shared());
1798 assert!(res, "{}::is_bit_valid (exclusive `Ptr`): got false, expected true", stringify!($ty));
1799
1800 // `bytes` is `Some(val.as_bytes())` if `$ty: IntoBytes +
1801 // Immutable` and `None` otherwise.
1802 let bytes = w.test_as_bytes(&*val);
1803
1804 // The inner closure returns
1805 // `Some($ty::try_ref_from_bytes(bytes))` if `$ty:
1806 // Immutable` and `None` otherwise.
1807 let res = bytes.and_then(|bytes| ww.test_try_from_ref(bytes));
1808 if let Some(res) = res {
1809 assert!(res.is_some(), "{}::try_ref_from_bytes: got `None`, expected `Some`", stringify!($ty));
1810 }
1811
1812 if let Some(bytes) = bytes {
1813 // We need to get a mutable byte slice, and so we clone
1814 // into a `Vec`. However, we also need these bytes to
1815 // satisfy `$ty`'s alignment requirement, which isn't
1816 // guaranteed for `Vec<u8>`. In order to get around
1817 // this, we create a `Vec` which is twice as long as we
1818 // need. There is guaranteed to be an aligned byte range
1819 // of size `size_of_val(val)` within that range.
1820 let val = &*val;
1821 let size = mem::size_of_val(val);
1822 let align = mem::align_of_val(val);
1823
1824 let mut vec = bytes.to_vec();
1825 vec.extend(bytes);
1826 let slc = vec.as_slice();
1827 let offset = slc.as_ptr().align_offset(align);
1828 let bytes_mut = &mut vec.as_mut_slice()[offset..offset+size];
1829 bytes_mut.copy_from_slice(bytes);
1830
1831 let res = ww.test_try_from_mut(bytes_mut);
1832 if let Some(res) = res {
1833 assert!(res.is_some(), "{}::try_mut_from_bytes: got `None`, expected `Some`", stringify!($ty));
1834 }
1835 }
1836
1837 let res = bytes.and_then(|bytes| ww.test_try_read_from(bytes));
1838 if let Some(res) = res {
1839 assert!(res.is_some(), "{}::try_read_from_bytes: got `None`, expected `Some`", stringify!($ty));
1840 }
1841 });
1842 #[allow(clippy::as_conversions)]
1843 <$ty as TryFromBytesTestable>::with_failing_test_cases(|c| {
1844 #[allow(unused_mut)] // For cases where the "real" impls are used, which take `&self`.
1845 let mut w = AutorefWrapper::<$ty>(PhantomData);
1846
1847 // This is `Some($ty::try_ref_from_bytes(c))` if `$ty:
1848 // Immutable` and `None` otherwise.
1849 let res = w.test_try_from_ref(c);
1850 if let Some(res) = res {
1851 assert!(res.is_none(), "{}::try_ref_from_bytes({:?}): got Some, expected None", stringify!($ty), c);
1852 }
1853
1854 let res = w.test_try_from_mut(c);
1855 if let Some(res) = res {
1856 assert!(res.is_none(), "{}::try_mut_from_bytes({:?}): got Some, expected None", stringify!($ty), c);
1857 }
1858
1859
1860 let res = w.test_try_read_from(c);
1861 if let Some(res) = res {
1862 assert!(res.is_none(), "{}::try_read_from_bytes({:?}): got Some, expected None", stringify!($ty), c);
1863 }
1864 });
1865
1866 #[allow(dead_code)]
1867 const _: () = { static_assertions::assert_impl_all!($ty: TryFromBytes); };
1868 };
1869 ($ty:ty: $trait:ident) => {
1870 #[allow(dead_code)]
1871 const _: () = { static_assertions::assert_impl_all!($ty: $trait); };
1872 };
1873 ($ty:ty: !$trait:ident) => {
1874 #[allow(dead_code)]
1875 const _: () = { static_assertions::assert_not_impl_any!($ty: $trait); };
1876 };
1877 ($ty:ty: $($trait:ident),* $(,)? $(!$negative_trait:ident),*) => {
1878 $(
1879 assert_impls!($ty: $trait);
1880 )*
1881
1882 $(
1883 assert_impls!($ty: !$negative_trait);
1884 )*
1885 };
1886 }
1887
1888 // NOTE: The negative impl assertions here are not necessarily
1889 // prescriptive. They merely serve as change detectors to make sure
1890 // we're aware of what trait impls are getting added with a given
1891 // change. Of course, some impls would be invalid (e.g., `bool:
1892 // FromBytes`), and so this change detection is very important.
1893
1894 assert_impls!(
1895 (): KnownLayout,
1896 Immutable,
1897 TryFromBytes,
1898 FromZeros,
1899 FromBytes,
1900 IntoBytes,
1901 Unaligned
1902 );
1903 assert_impls!(
1904 u8: KnownLayout,
1905 Immutable,
1906 TryFromBytes,
1907 FromZeros,
1908 FromBytes,
1909 IntoBytes,
1910 Unaligned
1911 );
1912 assert_impls!(
1913 i8: KnownLayout,
1914 Immutable,
1915 TryFromBytes,
1916 FromZeros,
1917 FromBytes,
1918 IntoBytes,
1919 Unaligned
1920 );
1921 assert_impls!(
1922 u16: KnownLayout,
1923 Immutable,
1924 TryFromBytes,
1925 FromZeros,
1926 FromBytes,
1927 IntoBytes,
1928 !Unaligned
1929 );
1930 assert_impls!(
1931 i16: KnownLayout,
1932 Immutable,
1933 TryFromBytes,
1934 FromZeros,
1935 FromBytes,
1936 IntoBytes,
1937 !Unaligned
1938 );
1939 assert_impls!(
1940 u32: KnownLayout,
1941 Immutable,
1942 TryFromBytes,
1943 FromZeros,
1944 FromBytes,
1945 IntoBytes,
1946 !Unaligned
1947 );
1948 assert_impls!(
1949 i32: KnownLayout,
1950 Immutable,
1951 TryFromBytes,
1952 FromZeros,
1953 FromBytes,
1954 IntoBytes,
1955 !Unaligned
1956 );
1957 assert_impls!(
1958 u64: KnownLayout,
1959 Immutable,
1960 TryFromBytes,
1961 FromZeros,
1962 FromBytes,
1963 IntoBytes,
1964 !Unaligned
1965 );
1966 assert_impls!(
1967 i64: KnownLayout,
1968 Immutable,
1969 TryFromBytes,
1970 FromZeros,
1971 FromBytes,
1972 IntoBytes,
1973 !Unaligned
1974 );
1975 assert_impls!(
1976 u128: KnownLayout,
1977 Immutable,
1978 TryFromBytes,
1979 FromZeros,
1980 FromBytes,
1981 IntoBytes,
1982 !Unaligned
1983 );
1984 assert_impls!(
1985 i128: KnownLayout,
1986 Immutable,
1987 TryFromBytes,
1988 FromZeros,
1989 FromBytes,
1990 IntoBytes,
1991 !Unaligned
1992 );
1993 assert_impls!(
1994 usize: KnownLayout,
1995 Immutable,
1996 TryFromBytes,
1997 FromZeros,
1998 FromBytes,
1999 IntoBytes,
2000 !Unaligned
2001 );
2002 assert_impls!(
2003 isize: KnownLayout,
2004 Immutable,
2005 TryFromBytes,
2006 FromZeros,
2007 FromBytes,
2008 IntoBytes,
2009 !Unaligned
2010 );
2011 #[cfg(feature = "float-nightly")]
2012 assert_impls!(
2013 f16: KnownLayout,
2014 Immutable,
2015 TryFromBytes,
2016 FromZeros,
2017 FromBytes,
2018 IntoBytes,
2019 !Unaligned
2020 );
2021 assert_impls!(
2022 f32: KnownLayout,
2023 Immutable,
2024 TryFromBytes,
2025 FromZeros,
2026 FromBytes,
2027 IntoBytes,
2028 !Unaligned
2029 );
2030 assert_impls!(
2031 f64: KnownLayout,
2032 Immutable,
2033 TryFromBytes,
2034 FromZeros,
2035 FromBytes,
2036 IntoBytes,
2037 !Unaligned
2038 );
2039 #[cfg(feature = "float-nightly")]
2040 assert_impls!(
2041 f128: KnownLayout,
2042 Immutable,
2043 TryFromBytes,
2044 FromZeros,
2045 FromBytes,
2046 IntoBytes,
2047 !Unaligned
2048 );
2049 assert_impls!(
2050 bool: KnownLayout,
2051 Immutable,
2052 TryFromBytes,
2053 FromZeros,
2054 IntoBytes,
2055 Unaligned,
2056 !FromBytes
2057 );
2058 assert_impls!(
2059 char: KnownLayout,
2060 Immutable,
2061 TryFromBytes,
2062 FromZeros,
2063 IntoBytes,
2064 !FromBytes,
2065 !Unaligned
2066 );
2067 assert_impls!(
2068 str: KnownLayout,
2069 Immutable,
2070 TryFromBytes,
2071 FromZeros,
2072 IntoBytes,
2073 Unaligned,
2074 !FromBytes
2075 );
2076
2077 assert_impls!(
2078 NonZeroU8: KnownLayout,
2079 Immutable,
2080 TryFromBytes,
2081 IntoBytes,
2082 Unaligned,
2083 !FromZeros,
2084 !FromBytes
2085 );
2086 assert_impls!(
2087 NonZeroI8: KnownLayout,
2088 Immutable,
2089 TryFromBytes,
2090 IntoBytes,
2091 Unaligned,
2092 !FromZeros,
2093 !FromBytes
2094 );
2095 assert_impls!(
2096 NonZeroU16: KnownLayout,
2097 Immutable,
2098 TryFromBytes,
2099 IntoBytes,
2100 !FromBytes,
2101 !Unaligned
2102 );
2103 assert_impls!(
2104 NonZeroI16: KnownLayout,
2105 Immutable,
2106 TryFromBytes,
2107 IntoBytes,
2108 !FromBytes,
2109 !Unaligned
2110 );
2111 assert_impls!(
2112 NonZeroU32: KnownLayout,
2113 Immutable,
2114 TryFromBytes,
2115 IntoBytes,
2116 !FromBytes,
2117 !Unaligned
2118 );
2119 assert_impls!(
2120 NonZeroI32: KnownLayout,
2121 Immutable,
2122 TryFromBytes,
2123 IntoBytes,
2124 !FromBytes,
2125 !Unaligned
2126 );
2127 assert_impls!(
2128 NonZeroU64: KnownLayout,
2129 Immutable,
2130 TryFromBytes,
2131 IntoBytes,
2132 !FromBytes,
2133 !Unaligned
2134 );
2135 assert_impls!(
2136 NonZeroI64: KnownLayout,
2137 Immutable,
2138 TryFromBytes,
2139 IntoBytes,
2140 !FromBytes,
2141 !Unaligned
2142 );
2143 assert_impls!(
2144 NonZeroU128: KnownLayout,
2145 Immutable,
2146 TryFromBytes,
2147 IntoBytes,
2148 !FromBytes,
2149 !Unaligned
2150 );
2151 assert_impls!(
2152 NonZeroI128: KnownLayout,
2153 Immutable,
2154 TryFromBytes,
2155 IntoBytes,
2156 !FromBytes,
2157 !Unaligned
2158 );
2159 assert_impls!(
2160 NonZeroUsize: KnownLayout,
2161 Immutable,
2162 TryFromBytes,
2163 IntoBytes,
2164 !FromBytes,
2165 !Unaligned
2166 );
2167 assert_impls!(
2168 NonZeroIsize: KnownLayout,
2169 Immutable,
2170 TryFromBytes,
2171 IntoBytes,
2172 !FromBytes,
2173 !Unaligned
2174 );
2175
2176 assert_impls!(Option<NonZeroU8>: KnownLayout, Immutable, TryFromBytes, FromZeros, FromBytes, IntoBytes, Unaligned);
2177 assert_impls!(Option<NonZeroI8>: KnownLayout, Immutable, TryFromBytes, FromZeros, FromBytes, IntoBytes, Unaligned);
2178 assert_impls!(Option<NonZeroU16>: KnownLayout, Immutable, TryFromBytes, FromZeros, FromBytes, IntoBytes, !Unaligned);
2179 assert_impls!(Option<NonZeroI16>: KnownLayout, Immutable, TryFromBytes, FromZeros, FromBytes, IntoBytes, !Unaligned);
2180 assert_impls!(Option<NonZeroU32>: KnownLayout, Immutable, TryFromBytes, FromZeros, FromBytes, IntoBytes, !Unaligned);
2181 assert_impls!(Option<NonZeroI32>: KnownLayout, Immutable, TryFromBytes, FromZeros, FromBytes, IntoBytes, !Unaligned);
2182 assert_impls!(Option<NonZeroU64>: KnownLayout, Immutable, TryFromBytes, FromZeros, FromBytes, IntoBytes, !Unaligned);
2183 assert_impls!(Option<NonZeroI64>: KnownLayout, Immutable, TryFromBytes, FromZeros, FromBytes, IntoBytes, !Unaligned);
2184 assert_impls!(Option<NonZeroU128>: KnownLayout, Immutable, TryFromBytes, FromZeros, FromBytes, IntoBytes, !Unaligned);
2185 assert_impls!(Option<NonZeroI128>: KnownLayout, Immutable, TryFromBytes, FromZeros, FromBytes, IntoBytes, !Unaligned);
2186 assert_impls!(Option<NonZeroUsize>: KnownLayout, Immutable, TryFromBytes, FromZeros, FromBytes, IntoBytes, !Unaligned);
2187 assert_impls!(Option<NonZeroIsize>: KnownLayout, Immutable, TryFromBytes, FromZeros, FromBytes, IntoBytes, !Unaligned);
2188
2189 // Implements none of the ZC traits.
2190 struct NotZerocopy;
2191
2192 #[rustfmt::skip]
2193 type FnManyArgs = fn(
2194 NotZerocopy, u8, u8, u8, u8, u8, u8, u8, u8, u8, u8, u8,
2195 ) -> (NotZerocopy, NotZerocopy);
2196
2197 // Allowed, because we're not actually using this type for FFI.
2198 #[allow(improper_ctypes_definitions)]
2199 #[rustfmt::skip]
2200 type ECFnManyArgs = extern "C" fn(
2201 NotZerocopy, u8, u8, u8, u8, u8, u8, u8, u8, u8, u8, u8,
2202 ) -> (NotZerocopy, NotZerocopy);
2203
2204 #[cfg(feature = "alloc")]
2205 assert_impls!(Option<Box<UnsafeCell<NotZerocopy>>>: KnownLayout, Immutable, TryFromBytes, FromZeros, !FromBytes, !IntoBytes, !Unaligned);
2206 assert_impls!(Option<Box<[UnsafeCell<NotZerocopy>]>>: KnownLayout, !Immutable, !TryFromBytes, !FromZeros, !FromBytes, !IntoBytes, !Unaligned);
2207 assert_impls!(Option<&'static UnsafeCell<NotZerocopy>>: KnownLayout, Immutable, TryFromBytes, FromZeros, !FromBytes, !IntoBytes, !Unaligned);
2208 assert_impls!(Option<&'static [UnsafeCell<NotZerocopy>]>: KnownLayout, Immutable, !TryFromBytes, !FromZeros, !FromBytes, !IntoBytes, !Unaligned);
2209 assert_impls!(Option<&'static mut UnsafeCell<NotZerocopy>>: KnownLayout, Immutable, TryFromBytes, FromZeros, !FromBytes, !IntoBytes, !Unaligned);
2210 assert_impls!(Option<&'static mut [UnsafeCell<NotZerocopy>]>: KnownLayout, Immutable, !TryFromBytes, !FromZeros, !FromBytes, !IntoBytes, !Unaligned);
2211 assert_impls!(Option<NonNull<UnsafeCell<NotZerocopy>>>: KnownLayout, TryFromBytes, FromZeros, Immutable, !FromBytes, !IntoBytes, !Unaligned);
2212 assert_impls!(Option<NonNull<[UnsafeCell<NotZerocopy>]>>: KnownLayout, Immutable, !TryFromBytes, !FromZeros, !FromBytes, !IntoBytes, !Unaligned);
2213 assert_impls!(Option<fn()>: KnownLayout, Immutable, TryFromBytes, FromZeros, !FromBytes, !IntoBytes, !Unaligned);
2214 assert_impls!(Option<FnManyArgs>: KnownLayout, Immutable, TryFromBytes, FromZeros, !FromBytes, !IntoBytes, !Unaligned);
2215 assert_impls!(Option<extern "C" fn()>: KnownLayout, Immutable, TryFromBytes, FromZeros, !FromBytes, !IntoBytes, !Unaligned);
2216 assert_impls!(Option<ECFnManyArgs>: KnownLayout, Immutable, TryFromBytes, FromZeros, !FromBytes, !IntoBytes, !Unaligned);
2217
2218 assert_impls!(PhantomData<NotZerocopy>: KnownLayout, Immutable, TryFromBytes, FromZeros, FromBytes, IntoBytes, Unaligned);
2219 assert_impls!(PhantomData<UnsafeCell<()>>: KnownLayout, Immutable, TryFromBytes, FromZeros, FromBytes, IntoBytes, Unaligned);
2220 assert_impls!(PhantomData<[u8]>: KnownLayout, Immutable, TryFromBytes, FromZeros, FromBytes, IntoBytes, Unaligned);
2221
2222 assert_impls!(ManuallyDrop<u8>: KnownLayout, Immutable, TryFromBytes, FromZeros, FromBytes, IntoBytes, Unaligned);
2223 // This test is important because it allows us to test our hand-rolled
2224 // implementation of `<ManuallyDrop<T> as TryFromBytes>::is_bit_valid`.
2225 assert_impls!(ManuallyDrop<bool>: KnownLayout, Immutable, TryFromBytes, FromZeros, IntoBytes, Unaligned, !FromBytes);
2226 assert_impls!(ManuallyDrop<[u8]>: KnownLayout, Immutable, TryFromBytes, FromZeros, FromBytes, IntoBytes, Unaligned);
2227 // This test is important because it allows us to test our hand-rolled
2228 // implementation of `<ManuallyDrop<T> as TryFromBytes>::is_bit_valid`.
2229 assert_impls!(ManuallyDrop<[bool]>: KnownLayout, Immutable, TryFromBytes, FromZeros, IntoBytes, Unaligned, !FromBytes);
2230 assert_impls!(ManuallyDrop<NotZerocopy>: !Immutable, !TryFromBytes, !KnownLayout, !FromZeros, !FromBytes, !IntoBytes, !Unaligned);
2231 assert_impls!(ManuallyDrop<[NotZerocopy]>: KnownLayout, !Immutable, !TryFromBytes, !FromZeros, !FromBytes, !IntoBytes, !Unaligned);
2232 assert_impls!(ManuallyDrop<UnsafeCell<()>>: KnownLayout, TryFromBytes, FromZeros, FromBytes, IntoBytes, Unaligned, !Immutable);
2233 assert_impls!(ManuallyDrop<[UnsafeCell<u8>]>: KnownLayout, TryFromBytes, FromZeros, FromBytes, IntoBytes, Unaligned, !Immutable);
2234 assert_impls!(ManuallyDrop<[UnsafeCell<bool>]>: KnownLayout, TryFromBytes, FromZeros, IntoBytes, Unaligned, !Immutable, !FromBytes);
2235
2236 assert_impls!(CoreMaybeUninit<u8>: KnownLayout, Immutable, TryFromBytes, FromZeros, FromBytes, Unaligned, !IntoBytes);
2237 assert_impls!(CoreMaybeUninit<NotZerocopy>: KnownLayout, TryFromBytes, FromZeros, FromBytes, !Immutable, !IntoBytes, !Unaligned);
2238 assert_impls!(CoreMaybeUninit<UnsafeCell<()>>: KnownLayout, TryFromBytes, FromZeros, FromBytes, Unaligned, !Immutable, !IntoBytes);
2239
2240 assert_impls!(Wrapping<u8>: KnownLayout, Immutable, TryFromBytes, FromZeros, FromBytes, IntoBytes, Unaligned);
2241 // This test is important because it allows us to test our hand-rolled
2242 // implementation of `<Wrapping<T> as TryFromBytes>::is_bit_valid`.
2243 assert_impls!(Wrapping<bool>: KnownLayout, Immutable, TryFromBytes, FromZeros, IntoBytes, Unaligned, !FromBytes);
2244 assert_impls!(Wrapping<NotZerocopy>: KnownLayout, !Immutable, !TryFromBytes, !FromZeros, !FromBytes, !IntoBytes, !Unaligned);
2245 assert_impls!(Wrapping<UnsafeCell<()>>: KnownLayout, TryFromBytes, FromZeros, FromBytes, IntoBytes, Unaligned, !Immutable);
2246
2247 assert_impls!(Unalign<u8>: KnownLayout, Immutable, TryFromBytes, FromZeros, FromBytes, IntoBytes, Unaligned);
2248 // This test is important because it allows us to test our hand-rolled
2249 // implementation of `<Unalign<T> as TryFromBytes>::is_bit_valid`.
2250 assert_impls!(Unalign<bool>: KnownLayout, Immutable, TryFromBytes, FromZeros, IntoBytes, Unaligned, !FromBytes);
2251 assert_impls!(Unalign<NotZerocopy>: KnownLayout, Unaligned, !Immutable, !TryFromBytes, !FromZeros, !FromBytes, !IntoBytes);
2252
2253 assert_impls!(
2254 [u8]: KnownLayout,
2255 Immutable,
2256 TryFromBytes,
2257 FromZeros,
2258 FromBytes,
2259 IntoBytes,
2260 Unaligned
2261 );
2262 assert_impls!(
2263 [bool]: KnownLayout,
2264 Immutable,
2265 TryFromBytes,
2266 FromZeros,
2267 IntoBytes,
2268 Unaligned,
2269 !FromBytes
2270 );
2271 assert_impls!([NotZerocopy]: KnownLayout, !Immutable, !TryFromBytes, !FromZeros, !FromBytes, !IntoBytes, !Unaligned);
2272 assert_impls!(
2273 [u8; 0]: KnownLayout,
2274 Immutable,
2275 TryFromBytes,
2276 FromZeros,
2277 FromBytes,
2278 IntoBytes,
2279 Unaligned,
2280 );
2281 assert_impls!(
2282 [NotZerocopy; 0]: KnownLayout,
2283 !Immutable,
2284 !TryFromBytes,
2285 !FromZeros,
2286 !FromBytes,
2287 !IntoBytes,
2288 !Unaligned
2289 );
2290 assert_impls!(
2291 [u8; 1]: KnownLayout,
2292 Immutable,
2293 TryFromBytes,
2294 FromZeros,
2295 FromBytes,
2296 IntoBytes,
2297 Unaligned,
2298 );
2299 assert_impls!(
2300 [NotZerocopy; 1]: KnownLayout,
2301 !Immutable,
2302 !TryFromBytes,
2303 !FromZeros,
2304 !FromBytes,
2305 !IntoBytes,
2306 !Unaligned
2307 );
2308
2309 assert_impls!(*const NotZerocopy: KnownLayout, Immutable, TryFromBytes, FromZeros, !FromBytes, !IntoBytes, !Unaligned);
2310 assert_impls!(*mut NotZerocopy: KnownLayout, Immutable, TryFromBytes, FromZeros, !FromBytes, !IntoBytes, !Unaligned);
2311 assert_impls!(*const [NotZerocopy]: KnownLayout, Immutable, !TryFromBytes, !FromZeros, !FromBytes, !IntoBytes, !Unaligned);
2312 assert_impls!(*mut [NotZerocopy]: KnownLayout, Immutable, !TryFromBytes, !FromZeros, !FromBytes, !IntoBytes, !Unaligned);
2313 assert_impls!(*const dyn Debug: KnownLayout, Immutable, !TryFromBytes, !FromZeros, !FromBytes, !IntoBytes, !Unaligned);
2314 assert_impls!(*mut dyn Debug: KnownLayout, Immutable, !TryFromBytes, !FromZeros, !FromBytes, !IntoBytes, !Unaligned);
2315
2316 #[cfg(feature = "simd")]
2317 {
2318 #[allow(unused_macros)]
2319 macro_rules! test_simd_arch_mod {
2320 ($arch:ident, $($typ:ident),*) => {
2321 {
2322 use core::arch::$arch::{$($typ),*};
2323 use crate::*;
2324 $( assert_impls!($typ: KnownLayout, Immutable, TryFromBytes, FromZeros, FromBytes, IntoBytes, !Unaligned); )*
2325 }
2326 };
2327 }
2328 #[cfg(target_arch = "x86")]
2329 test_simd_arch_mod!(x86, __m128, __m128d, __m128i, __m256, __m256d, __m256i);
2330
2331 #[cfg(all(not(no_zerocopy_simd_x86_avx12_1_89_0), target_arch = "x86"))]
2332 test_simd_arch_mod!(x86, __m512bh, __m512, __m512d, __m512i);
2333
2334 #[cfg(target_arch = "x86_64")]
2335 test_simd_arch_mod!(x86_64, __m128, __m128d, __m128i, __m256, __m256d, __m256i);
2336
2337 #[cfg(all(not(no_zerocopy_simd_x86_avx12_1_89_0), target_arch = "x86_64"))]
2338 test_simd_arch_mod!(x86_64, __m512bh, __m512, __m512d, __m512i);
2339
2340 #[cfg(target_arch = "wasm32")]
2341 test_simd_arch_mod!(wasm32, v128);
2342
2343 #[cfg(all(feature = "simd-nightly", target_arch = "powerpc"))]
2344 test_simd_arch_mod!(
2345 powerpc,
2346 vector_bool_long,
2347 vector_double,
2348 vector_signed_long,
2349 vector_unsigned_long
2350 );
2351
2352 #[cfg(all(feature = "simd-nightly", target_arch = "powerpc64"))]
2353 test_simd_arch_mod!(
2354 powerpc64,
2355 vector_bool_long,
2356 vector_double,
2357 vector_signed_long,
2358 vector_unsigned_long
2359 );
2360 #[cfg(all(target_arch = "aarch64", not(no_zerocopy_aarch64_simd_1_59_0)))]
2361 #[rustfmt::skip]
2362 test_simd_arch_mod!(
2363 aarch64, float32x2_t, float32x4_t, float64x1_t, float64x2_t, int8x8_t, int8x8x2_t,
2364 int8x8x3_t, int8x8x4_t, int8x16_t, int8x16x2_t, int8x16x3_t, int8x16x4_t, int16x4_t,
2365 int16x8_t, int32x2_t, int32x4_t, int64x1_t, int64x2_t, poly8x8_t, poly8x8x2_t, poly8x8x3_t,
2366 poly8x8x4_t, poly8x16_t, poly8x16x2_t, poly8x16x3_t, poly8x16x4_t, poly16x4_t, poly16x8_t,
2367 poly64x1_t, poly64x2_t, uint8x8_t, uint8x8x2_t, uint8x8x3_t, uint8x8x4_t, uint8x16_t,
2368 uint8x16x2_t, uint8x16x3_t, uint8x16x4_t, uint16x4_t, uint16x4x2_t, uint16x4x3_t,
2369 uint16x4x4_t, uint16x8_t, uint32x2_t, uint32x4_t, uint64x1_t, uint64x2_t
2370 );
2371 }
2372 }
2373}