pin_init/lib.rs
1// SPDX-License-Identifier: Apache-2.0 OR MIT
2
3//! Library to safely and fallibly initialize pinned `struct`s using in-place constructors.
4//!
5//! [Pinning][pinning] is Rust's way of ensuring data does not move.
6//!
7//! It also allows in-place initialization of big `struct`s that would otherwise produce a stack
8//! overflow.
9//!
10//! This library's main use-case is in [Rust-for-Linux]. Although this version can be used
11//! standalone.
12//!
13//! There are cases when you want to in-place initialize a struct. For example when it is very big
14//! and moving it from the stack is not an option, because it is bigger than the stack itself.
15//! Another reason would be that you need the address of the object to initialize it. This stands
16//! in direct conflict with Rust's normal process of first initializing an object and then moving
17//! it into it's final memory location. For more information, see
18//! <https://rust-for-linux.com/the-safe-pinned-initialization-problem>.
19//!
20//! This library allows you to do in-place initialization safely.
21//!
22//! ## Nightly Needed for `alloc` feature
23//!
24//! This library requires the [`allocator_api` unstable feature] when the `alloc` feature is
25//! enabled and thus this feature can only be used with a nightly compiler. When enabling the
26//! `alloc` feature, the user will be required to activate `allocator_api` as well.
27//!
28//! [`allocator_api` unstable feature]: https://doc.rust-lang.org/nightly/unstable-book/library-features/allocator-api.html
29//!
30//! The feature is enabled by default, thus by default `pin-init` will require a nightly compiler.
31//! However, using the crate on stable compilers is possible by disabling `alloc`. In practice this
32//! will require the `std` feature, because stable compilers have neither `Box` nor `Arc` in no-std
33//! mode.
34//!
35//! ## Nightly needed for `unsafe-pinned` feature
36//!
37//! This feature enables the `Wrapper` implementation on the unstable `core::pin::UnsafePinned` type.
38//! This requires the [`unsafe_pinned` unstable feature](https://github.com/rust-lang/rust/issues/125735)
39//! and therefore a nightly compiler. Note that this feature is not enabled by default.
40//!
41//! # Overview
42//!
43//! To initialize a `struct` with an in-place constructor you will need two things:
44//! - an in-place constructor,
45//! - a memory location that can hold your `struct` (this can be the [stack], an [`Arc<T>`],
46//! [`Box<T>`] or any other smart pointer that supports this library).
47//!
48//! To get an in-place constructor there are generally three options:
49//! - directly creating an in-place constructor using the [`pin_init!`] macro,
50//! - a custom function/macro returning an in-place constructor provided by someone else,
51//! - using the unsafe function [`pin_init_from_closure()`] to manually create an initializer.
52//!
53//! Aside from pinned initialization, this library also supports in-place construction without
54//! pinning, the macros/types/functions are generally named like the pinned variants without the
55//! `pin_` prefix.
56//!
57//! # Examples
58//!
59//! Throughout the examples we will often make use of the `CMutex` type which can be found in
60//! `../examples/mutex.rs`. It is essentially a userland rebuild of the `struct mutex` type from
61//! the Linux kernel. It also uses a wait list and a basic spinlock. Importantly the wait list
62//! requires it to be pinned to be locked and thus is a prime candidate for using this library.
63//!
64//! ## Using the [`pin_init!`] macro
65//!
66//! If you want to use [`PinInit`], then you will have to annotate your `struct` with
67//! `#[`[`pin_data`]`]`. It is a macro that uses `#[pin]` as a marker for
68//! [structurally pinned fields]. After doing this, you can then create an in-place constructor via
69//! [`pin_init!`]. The syntax is almost the same as normal `struct` initializers. The difference is
70//! that you need to write `<-` instead of `:` for fields that you want to initialize in-place.
71//!
72//! ```rust
73//! # #![feature(allocator_api)]
74//! # #[path = "../examples/mutex.rs"] mod mutex; use mutex::*;
75//! # use core::pin::Pin;
76//! use pin_init::{pin_data, pin_init, InPlaceInit};
77//!
78//! #[pin_data]
79//! struct Foo {
80//! #[pin]
81//! a: CMutex<usize>,
82//! b: u32,
83//! }
84//!
85//! let foo = pin_init!(Foo {
86//! a <- CMutex::new(42),
87//! b: 24,
88//! });
89//! # let _ = Box::pin_init(foo);
90//! ```
91//!
92//! `foo` now is of the type [`impl PinInit<Foo>`]. We can now use any smart pointer that we like
93//! (or just the stack) to actually initialize a `Foo`:
94//!
95//! ```rust
96//! # #![feature(allocator_api)]
97//! # #[path = "../examples/mutex.rs"] mod mutex; use mutex::*;
98//! # use core::{alloc::AllocError, pin::Pin};
99//! # use pin_init::*;
100//! #
101//! # #[pin_data]
102//! # struct Foo {
103//! # #[pin]
104//! # a: CMutex<usize>,
105//! # b: u32,
106//! # }
107//! #
108//! # let foo = pin_init!(Foo {
109//! # a <- CMutex::new(42),
110//! # b: 24,
111//! # });
112//! let foo: Result<Pin<Box<Foo>>, AllocError> = Box::pin_init(foo);
113//! ```
114//!
115//! For more information see the [`pin_init!`] macro.
116//!
117//! ## Using a custom function/macro that returns an initializer
118//!
119//! Many types that use this library supply a function/macro that returns an initializer, because
120//! the above method only works for types where you can access the fields.
121//!
122//! ```rust
123//! # #![feature(allocator_api)]
124//! # #[path = "../examples/mutex.rs"] mod mutex; use mutex::*;
125//! # use pin_init::*;
126//! # use std::sync::Arc;
127//! # use core::pin::Pin;
128//! let mtx: Result<Pin<Arc<CMutex<usize>>>, _> = Arc::pin_init(CMutex::new(42));
129//! ```
130//!
131//! To declare an init macro/function you just return an [`impl PinInit<T, E>`]:
132//!
133//! ```rust
134//! # #![feature(allocator_api)]
135//! # use pin_init::*;
136//! # #[path = "../examples/error.rs"] mod error; use error::Error;
137//! # #[path = "../examples/mutex.rs"] mod mutex; use mutex::*;
138//! #[pin_data]
139//! struct DriverData {
140//! #[pin]
141//! status: CMutex<i32>,
142//! buffer: Box<[u8; 1_000_000]>,
143//! }
144//!
145//! impl DriverData {
146//! fn new() -> impl PinInit<Self, Error> {
147//! pin_init!(Self {
148//! status <- CMutex::new(0),
149//! buffer: Box::init(pin_init::init_zeroed())?,
150//! }? Error)
151//! }
152//! }
153//! ```
154//!
155//! ## Manual creation of an initializer
156//!
157//! Often when working with primitives the previous approaches are not sufficient. That is where
158//! [`pin_init_from_closure()`] comes in. This `unsafe` function allows you to create a
159//! [`impl PinInit<T, E>`] directly from a closure. Of course you have to ensure that the closure
160//! actually does the initialization in the correct way. Here are the things to look out for
161//! (we are calling the parameter to the closure `slot`):
162//! - when the closure returns `Ok(())`, then it has completed the initialization successfully, so
163//! `slot` now contains a valid bit pattern for the type `T`,
164//! - when the closure returns `Err(e)`, then the caller may deallocate the memory at `slot`, so
165//! you need to take care to clean up anything if your initialization fails mid-way,
166//! - you may assume that `slot` will stay pinned even after the closure returns until `drop` of
167//! `slot` gets called.
168//!
169//! ```rust
170//! # #![feature(extern_types)]
171//! use pin_init::{pin_data, pinned_drop, PinInit, PinnedDrop, pin_init_from_closure};
172//! use core::{
173//! marker::PhantomPinned,
174//! cell::UnsafeCell,
175//! pin::Pin,
176//! mem::MaybeUninit,
177//! };
178//! mod bindings {
179//! #[repr(C)]
180//! pub struct foo {
181//! /* fields from C ... */
182//! }
183//! extern "C" {
184//! pub fn init_foo(ptr: *mut foo);
185//! pub fn destroy_foo(ptr: *mut foo);
186//! #[must_use = "you must check the error return code"]
187//! pub fn enable_foo(ptr: *mut foo, flags: u32) -> i32;
188//! }
189//! }
190//!
191//! /// # Invariants
192//! ///
193//! /// `foo` is always initialized
194//! #[pin_data(PinnedDrop)]
195//! pub struct RawFoo {
196//! #[pin]
197//! _p: PhantomPinned,
198//! #[pin]
199//! foo: UnsafeCell<MaybeUninit<bindings::foo>>,
200//! }
201//!
202//! impl RawFoo {
203//! pub fn new(flags: u32) -> impl PinInit<Self, i32> {
204//! // SAFETY:
205//! // - when the closure returns `Ok(())`, then it has successfully initialized and
206//! // enabled `foo`,
207//! // - when it returns `Err(e)`, then it has cleaned up before
208//! unsafe {
209//! pin_init_from_closure(move |slot: *mut Self| {
210//! // `slot` contains uninit memory, avoid creating a reference.
211//! let foo = &raw mut (*slot).foo;
212//! let foo = UnsafeCell::raw_get(foo).cast::<bindings::foo>();
213//!
214//! // Initialize the `foo`
215//! bindings::init_foo(foo);
216//!
217//! // Try to enable it.
218//! let err = bindings::enable_foo(foo, flags);
219//! if err != 0 {
220//! // Enabling has failed, first clean up the foo and then return the error.
221//! bindings::destroy_foo(foo);
222//! Err(err)
223//! } else {
224//! // All fields of `RawFoo` have been initialized, since `_p` is a ZST.
225//! Ok(())
226//! }
227//! })
228//! }
229//! }
230//! }
231//!
232//! #[pinned_drop]
233//! impl PinnedDrop for RawFoo {
234//! fn drop(self: Pin<&mut Self>) {
235//! // SAFETY: Since `foo` is initialized, destroying is safe.
236//! unsafe { bindings::destroy_foo(self.foo.get().cast::<bindings::foo>()) };
237//! }
238//! }
239//! ```
240//!
241//! For more information on how to use [`pin_init_from_closure()`], take a look at the uses inside
242//! the `kernel` crate. The [`sync`] module is a good starting point.
243//!
244//! [`sync`]: https://rust.docs.kernel.org/kernel/sync/index.html
245//! [pinning]: https://doc.rust-lang.org/std/pin/index.html
246//! [structurally pinned fields]:
247//! https://doc.rust-lang.org/std/pin/index.html#projections-and-structural-pinning
248//! [stack]: crate::stack_pin_init
249#![cfg_attr(
250 kernel,
251 doc = "[`Arc<T>`]: https://rust.docs.kernel.org/kernel/sync/struct.Arc.html"
252)]
253#![cfg_attr(
254 kernel,
255 doc = "[`Box<T>`]: https://rust.docs.kernel.org/kernel/alloc/kbox/struct.Box.html"
256)]
257#![cfg_attr(not(kernel), doc = "[`Arc<T>`]: alloc::alloc::sync::Arc")]
258#![cfg_attr(not(kernel), doc = "[`Box<T>`]: alloc::alloc::boxed::Box")]
259//! [`impl PinInit<Foo>`]: crate::PinInit
260//! [`impl PinInit<T, E>`]: crate::PinInit
261//! [`impl Init<T, E>`]: crate::Init
262//! [Rust-for-Linux]: https://rust-for-linux.com/
263
264#![forbid(missing_docs, unsafe_op_in_unsafe_fn)]
265#![cfg_attr(not(feature = "std"), no_std)]
266#![cfg_attr(feature = "alloc", feature(allocator_api))]
267#![cfg_attr(
268 all(feature = "unsafe-pinned", CONFIG_RUSTC_HAS_UNSAFE_PINNED),
269 feature(unsafe_pinned)
270)]
271#![cfg_attr(all(USE_RUSTC_FEATURES, doc), allow(internal_features))]
272#![cfg_attr(all(USE_RUSTC_FEATURES, doc), feature(rustdoc_internals))]
273
274use core::{
275 cell::UnsafeCell,
276 convert::Infallible,
277 marker::PhantomData,
278 mem::MaybeUninit,
279 num::*,
280 pin::Pin,
281 ptr::{self, NonNull},
282};
283
284// This is used by doc-tests -- the proc-macros expand to `::pin_init::...` and without this the
285// doc-tests wouldn't have an extern crate named `pin_init`.
286#[allow(unused_extern_crates)]
287extern crate self as pin_init;
288
289#[doc(hidden)]
290pub mod __internal;
291
292#[cfg(any(feature = "std", feature = "alloc"))]
293mod alloc;
294#[cfg(any(feature = "std", feature = "alloc"))]
295pub use alloc::InPlaceInit;
296
297/// Used to specify the pinning information of the fields of a struct.
298///
299/// This is somewhat similar in purpose as
300/// [pin-project-lite](https://crates.io/crates/pin-project-lite).
301/// Place this macro on a struct definition and then `#[pin]` in front of the attributes of each
302/// field you want to structurally pin.
303///
304/// This macro enables the use of the [`pin_init!`] macro. When pin-initializing a `struct`,
305/// then `#[pin]` directs the type of initializer that is required.
306///
307/// Tuple structs are supported as well. Their fields have no names, so the generated projection
308/// is a tuple struct too and its fields are accessed by index.
309///
310/// If your `struct` implements `Drop`, then you need to add `PinnedDrop` as arguments to this
311/// macro, and change your `Drop` implementation to `PinnedDrop` annotated with
312/// `#[`[`macro@pinned_drop`]`]`, since dropping pinned values requires extra care.
313///
314/// # Examples
315///
316/// ```
317/// # #![feature(allocator_api)]
318/// # #[path = "../examples/mutex.rs"] mod mutex; use mutex::*;
319/// use pin_init::pin_data;
320///
321/// enum Command {
322/// /* ... */
323/// }
324///
325/// #[pin_data]
326/// struct DriverData {
327/// #[pin]
328/// queue: CMutex<Vec<Command>>,
329/// buf: Box<[u8; 1024 * 1024]>,
330/// }
331/// ```
332///
333/// The same as a tuple struct, projected by index:
334///
335/// ```
336/// # #![feature(allocator_api)]
337/// # #[path = "../examples/mutex.rs"] mod mutex; use mutex::*;
338/// use core::pin::Pin;
339/// use pin_init::pin_data;
340///
341/// enum Command {
342/// /* ... */
343/// }
344///
345/// #[pin_data]
346/// struct DriverData(#[pin] CMutex<Vec<Command>>, Box<[u8; 1024 * 1024]>);
347///
348/// fn queue(data: Pin<&mut DriverData>) -> Pin<&mut CMutex<Vec<Command>>> {
349/// data.project().0
350/// }
351/// ```
352///
353/// ```
354/// # #![feature(allocator_api)]
355/// # #[path = "../examples/mutex.rs"] mod mutex; use mutex::*;
356/// # mod bindings { pub struct info; pub unsafe fn destroy_info(_: *mut info) {} }
357/// use core::pin::Pin;
358/// use pin_init::{pin_data, pinned_drop, PinnedDrop};
359///
360/// enum Command {
361/// /* ... */
362/// }
363///
364/// #[pin_data(PinnedDrop)]
365/// struct DriverData {
366/// #[pin]
367/// queue: CMutex<Vec<Command>>,
368/// buf: Box<[u8; 1024 * 1024]>,
369/// raw_info: *mut bindings::info,
370/// }
371///
372/// #[pinned_drop]
373/// impl PinnedDrop for DriverData {
374/// fn drop(self: Pin<&mut Self>) {
375/// unsafe { bindings::destroy_info(self.raw_info) };
376/// }
377/// }
378/// ```
379pub use ::pin_init_internal::pin_data;
380
381/// Used to implement `PinnedDrop` safely.
382///
383/// Only works on structs that are annotated via `#[`[`macro@pin_data`]`]`.
384///
385/// # Examples
386///
387/// ```
388/// # #![feature(allocator_api)]
389/// # #[path = "../examples/mutex.rs"] mod mutex; use mutex::*;
390/// # mod bindings { pub struct info; pub unsafe fn destroy_info(_: *mut info) {} }
391/// use core::pin::Pin;
392/// use pin_init::{pin_data, pinned_drop, PinnedDrop};
393///
394/// enum Command {
395/// /* ... */
396/// }
397///
398/// #[pin_data(PinnedDrop)]
399/// struct DriverData {
400/// #[pin]
401/// queue: CMutex<Vec<Command>>,
402/// buf: Box<[u8; 1024 * 1024]>,
403/// raw_info: *mut bindings::info,
404/// }
405///
406/// #[pinned_drop]
407/// impl PinnedDrop for DriverData {
408/// fn drop(self: Pin<&mut Self>) {
409/// unsafe { bindings::destroy_info(self.raw_info) };
410/// }
411/// }
412/// ```
413pub use ::pin_init_internal::pinned_drop;
414
415/// Derives the [`Zeroable`] trait for the given `struct` or `union`.
416///
417/// This can only be used for `struct`s/`union`s where every field implements the [`Zeroable`]
418/// trait.
419///
420/// # Examples
421///
422/// ```
423/// use pin_init::Zeroable;
424///
425/// #[derive(Zeroable)]
426/// pub struct DriverData {
427/// pub(crate) id: i64,
428/// buf_ptr: *mut u8,
429/// len: usize,
430/// }
431/// ```
432///
433/// ```
434/// use pin_init::Zeroable;
435///
436/// #[derive(Zeroable)]
437/// pub union SignCast {
438/// signed: i64,
439/// unsigned: u64,
440/// }
441/// ```
442pub use ::pin_init_internal::Zeroable;
443
444/// Derives the [`Zeroable`] trait for the given `struct` or `union` if all fields implement
445/// [`Zeroable`].
446///
447/// Contrary to the derive macro named [`macro@Zeroable`], this one silently fails when a field
448/// doesn't implement [`Zeroable`].
449///
450/// # Examples
451///
452/// ```
453/// use pin_init::MaybeZeroable;
454///
455/// // implements `Zeroable`
456/// #[derive(MaybeZeroable)]
457/// pub struct DriverData {
458/// pub(crate) id: i64,
459/// buf_ptr: *mut u8,
460/// len: usize,
461/// }
462///
463/// // does not implement `Zeroable`
464/// #[derive(MaybeZeroable)]
465/// pub struct DriverData2 {
466/// pub(crate) id: i64,
467/// buf_ptr: *mut u8,
468/// len: usize,
469/// // this field doesn't implement `Zeroable`
470/// other_data: &'static i32,
471/// }
472/// ```
473pub use ::pin_init_internal::MaybeZeroable;
474
475/// Initialize and pin a type directly on the stack.
476///
477/// # Examples
478///
479/// ```rust
480/// # #![feature(allocator_api)]
481/// # #[path = "../examples/mutex.rs"] mod mutex; use mutex::*;
482/// # use pin_init::*;
483/// # use core::pin::Pin;
484/// #[pin_data]
485/// struct Foo {
486/// #[pin]
487/// a: CMutex<usize>,
488/// b: Bar,
489/// }
490///
491/// #[pin_data]
492/// struct Bar {
493/// x: u32,
494/// }
495///
496/// stack_pin_init!(let foo = pin_init!(Foo {
497/// a <- CMutex::new(42),
498/// b: Bar {
499/// x: 64,
500/// },
501/// }));
502/// let foo: Pin<&mut Foo> = foo;
503/// println!("a: {}", &*foo.a.lock());
504/// ```
505///
506/// # Syntax
507///
508/// A normal `let` binding with optional type annotation. The expression is expected to implement
509/// [`PinInit`]/[`Init`] with the error type [`Infallible`]. If you want to use a different error
510/// type, then use [`stack_try_pin_init!`].
511#[macro_export]
512macro_rules! stack_pin_init {
513 (let $var:ident $(: $t:ty)? = $val:expr) => {
514 let val = $val;
515 let mut $var = ::core::pin::pin!($crate::__internal::StackInit$(::<$t>)?::uninit());
516 let Ok(mut $var) = $crate::__internal::StackInit::init($var, val);
517 };
518}
519
520/// Initialize and pin a type directly on the stack.
521///
522/// # Examples
523///
524/// ```rust
525/// # #![feature(allocator_api)]
526/// # #[path = "../examples/error.rs"] mod error; use error::Error;
527/// # #[path = "../examples/mutex.rs"] mod mutex; use mutex::*;
528/// # use pin_init::*;
529/// #[pin_data]
530/// struct Foo {
531/// #[pin]
532/// a: CMutex<usize>,
533/// b: Box<Bar>,
534/// }
535///
536/// struct Bar {
537/// x: u32,
538/// }
539///
540/// stack_try_pin_init!(let foo: Foo = pin_init!(Foo {
541/// a <- CMutex::new(42),
542/// b: Box::try_new(Bar {
543/// x: 64,
544/// })?,
545/// }? Error));
546/// let foo = foo.unwrap();
547/// println!("a: {}", &*foo.a.lock());
548/// ```
549///
550/// ```rust
551/// # #![feature(allocator_api)]
552/// # #[path = "../examples/error.rs"] mod error; use error::Error;
553/// # #[path = "../examples/mutex.rs"] mod mutex; use mutex::*;
554/// # use pin_init::*;
555/// #[pin_data]
556/// struct Foo {
557/// #[pin]
558/// a: CMutex<usize>,
559/// b: Box<Bar>,
560/// }
561///
562/// struct Bar {
563/// x: u32,
564/// }
565///
566/// stack_try_pin_init!(let foo: Foo =? pin_init!(Foo {
567/// a <- CMutex::new(42),
568/// b: Box::try_new(Bar {
569/// x: 64,
570/// })?,
571/// }? Error));
572/// println!("a: {}", &*foo.a.lock());
573/// # Ok::<_, Error>(())
574/// ```
575///
576/// # Syntax
577///
578/// A normal `let` binding with optional type annotation. The expression is expected to implement
579/// [`PinInit`]/[`Init`]. This macro assigns a result to the given variable, adding a `?` after the
580/// `=` will propagate this error.
581#[macro_export]
582macro_rules! stack_try_pin_init {
583 (let $var:ident $(: $t:ty)? = $val:expr) => {
584 let val = $val;
585 let mut $var = ::core::pin::pin!($crate::__internal::StackInit$(::<$t>)?::uninit());
586 let mut $var = $crate::__internal::StackInit::init($var, val);
587 };
588 (let $var:ident $(: $t:ty)? =? $val:expr) => {
589 let val = $val;
590 let mut $var = ::core::pin::pin!($crate::__internal::StackInit$(::<$t>)?::uninit());
591 let mut $var = $crate::__internal::StackInit::init($var, val)?;
592 };
593}
594
595/// Construct an in-place, fallible pinned initializer for structs, including tuple structs.
596///
597/// The error type defaults to [`Infallible`]; if you need a different one, write `? Error` at the
598/// end, after the struct initializer.
599///
600/// The syntax is almost identical to that of a normal `struct` initializer:
601///
602/// ```rust
603/// # use pin_init::*;
604/// # use core::pin::Pin;
605/// #[pin_data]
606/// struct Foo {
607/// a: usize,
608/// b: Bar,
609/// }
610///
611/// #[pin_data]
612/// struct Bar {
613/// x: u32,
614/// }
615///
616/// # fn demo() -> impl PinInit<Foo> {
617/// let a = 42;
618///
619/// let initializer = pin_init!(Foo {
620/// a,
621/// b: Bar {
622/// x: 64,
623/// },
624/// });
625/// # initializer }
626/// # Box::pin_init(demo()).unwrap();
627/// ```
628///
629/// The fields of a tuple struct are addressed by their index:
630///
631/// ```rust
632/// # use pin_init::*;
633/// # use core::pin::Pin;
634/// #[pin_data]
635/// struct Pair(usize, Bar);
636///
637/// #[pin_data]
638/// struct Bar {
639/// x: u32,
640/// }
641///
642/// # fn demo() -> impl PinInit<Pair> {
643/// let initializer = pin_init!(Pair {
644/// 0: 42,
645/// 1 <- Bar { x: 64 },
646/// });
647/// # initializer }
648/// # Box::pin_init(demo()).unwrap();
649/// ```
650///
651/// A tuple struct whose fields are all set to a value can also be written like a call to its
652/// constructor:
653///
654/// ```rust
655/// # use pin_init::*;
656/// #[pin_data]
657/// struct Pair(usize, usize);
658///
659/// # fn demo() -> impl PinInit<Pair> {
660/// let initializer = pin_init!(Pair(42, 64));
661/// # initializer }
662/// # Box::pin_init(demo()).unwrap();
663/// ```
664///
665/// Arbitrary Rust expressions can be used to set the value of a variable.
666///
667/// The fields are initialized in the order that they appear in the initializer. So it is possible
668/// to read already initialized fields using raw pointers.
669///
670/// IMPORTANT: You are not allowed to create references to fields of the struct inside of the
671/// initializer.
672///
673/// # Init-functions
674///
675/// When working with this library it is often desired to let others construct your types without
676/// giving access to all fields. This is where you would normally write a plain function `new` that
677/// would return a new instance of your type. With this library that is also possible. However,
678/// there are a few extra things to keep in mind.
679///
680/// To create an initializer function, simply declare it like this:
681///
682/// ```rust
683/// # use pin_init::*;
684/// # use core::pin::Pin;
685/// # #[pin_data]
686/// # struct Foo {
687/// # a: usize,
688/// # b: Bar,
689/// # }
690/// # #[pin_data]
691/// # struct Bar {
692/// # x: u32,
693/// # }
694/// impl Foo {
695/// fn new() -> impl PinInit<Self> {
696/// pin_init!(Self {
697/// a: 42,
698/// b: Bar {
699/// x: 64,
700/// },
701/// })
702/// }
703/// }
704/// ```
705///
706/// Users of `Foo` can now create it like this:
707///
708/// ```rust
709/// # use pin_init::*;
710/// # use core::pin::Pin;
711/// # #[pin_data]
712/// # struct Foo {
713/// # a: usize,
714/// # b: Bar,
715/// # }
716/// # #[pin_data]
717/// # struct Bar {
718/// # x: u32,
719/// # }
720/// # impl Foo {
721/// # fn new() -> impl PinInit<Self> {
722/// # pin_init!(Self {
723/// # a: 42,
724/// # b: Bar {
725/// # x: 64,
726/// # },
727/// # })
728/// # }
729/// # }
730/// let foo = Box::pin_init(Foo::new());
731/// ```
732///
733/// They can also easily embed it into their own `struct`s:
734///
735/// ```rust
736/// # use pin_init::*;
737/// # use core::pin::Pin;
738/// # #[pin_data]
739/// # struct Foo {
740/// # a: usize,
741/// # b: Bar,
742/// # }
743/// # #[pin_data]
744/// # struct Bar {
745/// # x: u32,
746/// # }
747/// # impl Foo {
748/// # fn new() -> impl PinInit<Self> {
749/// # pin_init!(Self {
750/// # a: 42,
751/// # b: Bar {
752/// # x: 64,
753/// # },
754/// # })
755/// # }
756/// # }
757/// #[pin_data]
758/// struct FooContainer {
759/// #[pin]
760/// foo1: Foo,
761/// #[pin]
762/// foo2: Foo,
763/// other: u32,
764/// }
765///
766/// impl FooContainer {
767/// fn new(other: u32) -> impl PinInit<Self> {
768/// pin_init!(Self {
769/// foo1 <- Foo::new(),
770/// foo2 <- Foo::new(),
771/// other,
772/// })
773/// }
774/// }
775/// ```
776///
777/// Here we see that when using `pin_init!` with `PinInit`, one needs to write `<-` instead of `:`.
778/// This signifies that the given field is initialized in-place. As with `struct` initializers, just
779/// writing the field (in this case `other`) without `:` or `<-` means `other: other,`.
780///
781/// # Syntax
782///
783/// As already mentioned in the examples above, inside of `pin_init!` a struct initializer with the
784/// following modifications is expected:
785/// - Fields that you want to initialize in-place have to use `<-` instead of `:`.
786/// - Tuple struct fields are named by their index, as in `0: value` or `0 <- initializer`. They
787/// are not exposed by a `let` binding, since they have no name to bind.
788/// - A tuple struct can also be initialized with constructor syntax, as in `Type(value, value)`.
789/// Since its arguments are not named, they cannot use `<-`; write them out by index instead.
790/// - You can use `_: { /* run any user-code here */ },` anywhere where you can place fields in
791/// order to run arbitrary code.
792/// - In front of the initializer you can write `&this in` to have access to a [`NonNull<Self>`]
793/// pointer named `this` inside of the initializer.
794/// - Using struct update syntax one can place `..Zeroable::init_zeroed()` at the very end of the
795/// struct, this initializes every field with 0 and then runs all initializers specified in the
796/// body. This can only be done if [`Zeroable`] is implemented for the struct.
797///
798/// For instance:
799///
800/// ```rust
801/// # use pin_init::*;
802/// # use core::marker::PhantomPinned;
803/// #[pin_data]
804/// #[derive(Zeroable)]
805/// struct Buf {
806/// // `ptr` points into `buf`.
807/// ptr: *mut u8,
808/// buf: [u8; 64],
809/// #[pin]
810/// pin: PhantomPinned,
811/// }
812///
813/// let init = pin_init!(&this in Buf {
814/// buf: [0; 64],
815/// // SAFETY: TODO.
816/// ptr: unsafe { (&raw mut (*this.as_ptr()).buf).cast() },
817/// pin: PhantomPinned,
818/// });
819/// let init = pin_init!(Buf {
820/// buf: [1; 64],
821/// ..Zeroable::init_zeroed()
822/// });
823/// ```
824///
825/// [`NonNull<Self>`]: core::ptr::NonNull
826pub use pin_init_internal::pin_init;
827
828/// Construct an in-place, fallible initializer for structs, including tuple structs.
829///
830/// This macro defaults the error to [`Infallible`]; if you need a different one, write `? Error`
831/// at the end, after the struct initializer.
832///
833/// The syntax is identical to [`pin_init!`] and its safety caveats also apply:
834/// - `unsafe` code must guarantee either full initialization or return an error and allow
835/// deallocation of the memory.
836/// - the fields are initialized in the order given in the initializer.
837/// - no references to fields are allowed to be created inside of the initializer.
838///
839/// This initializer is for initializing data in-place that might later be moved. If you want to
840/// pin-initialize, use [`pin_init!`].
841///
842/// # Examples
843///
844/// ```rust
845/// # #![feature(allocator_api)]
846/// # #[path = "../examples/error.rs"] mod error; use error::Error;
847/// # #[path = "../examples/mutex.rs"] mod mutex; use mutex::*;
848/// # use pin_init::InPlaceInit;
849/// use pin_init::{init, Init, init_zeroed};
850///
851/// struct BigBuf {
852/// small: [u8; 1024 * 1024],
853/// }
854///
855/// impl BigBuf {
856/// fn new() -> impl Init<Self> {
857/// init!(Self {
858/// small <- init_zeroed(),
859/// })
860/// }
861/// }
862/// # let _ = Box::init(BigBuf::new());
863/// ```
864pub use pin_init_internal::init;
865
866/// Asserts that a field on a struct using `#[pin_data]` is marked with `#[pin]` ie. that it is
867/// structurally pinned.
868///
869/// # Examples
870///
871/// This will succeed:
872/// ```
873/// use pin_init::{pin_data, assert_pinned};
874///
875/// #[pin_data]
876/// struct MyStruct {
877/// #[pin]
878/// some_field: u64,
879/// }
880///
881/// assert_pinned!(MyStruct, some_field, u64);
882/// ```
883///
884/// This will fail:
885/// ```compile_fail
886/// use pin_init::{pin_data, assert_pinned};
887///
888/// #[pin_data]
889/// struct MyStruct {
890/// some_field: u64,
891/// }
892///
893/// assert_pinned!(MyStruct, some_field, u64);
894/// ```
895///
896/// Some uses of the macro may trigger the `can't use generic parameters from outer item` error. To
897/// work around this, you may pass the `inline` parameter to the macro. The `inline` parameter can
898/// only be used when the macro is invoked from a function body.
899/// ```
900/// # use core::pin::Pin;
901/// use pin_init::{pin_data, assert_pinned};
902///
903/// #[pin_data]
904/// struct Foo<T> {
905/// #[pin]
906/// elem: T,
907/// }
908///
909/// impl<T> Foo<T> {
910/// fn project_this(self: Pin<&mut Self>) -> Pin<&mut T> {
911/// assert_pinned!(Foo<T>, elem, T, inline);
912///
913/// // SAFETY: The field is structurally pinned.
914/// unsafe { self.map_unchecked_mut(|me| &mut me.elem) }
915/// }
916/// }
917/// ```
918#[macro_export]
919macro_rules! assert_pinned {
920 ($ty:ty, $field:ident, $field_ty:ty, inline) => {
921 // SAFETY: This code is unreachable.
922 let _ = move |ptr: *mut $ty| unsafe {
923 let data = <$ty as $crate::__internal::HasPinData>::__pin_data();
924 _ = data
925 .$field(ptr)
926 .init($crate::__internal::AlwaysFail::<$field_ty>::new());
927 };
928 };
929
930 ($ty:ty, $field:ident, $field_ty:ty) => {
931 const _: () = {
932 $crate::assert_pinned!($ty, $field, $field_ty, inline);
933 };
934 };
935}
936
937/// A pin-initializer for the type `T`.
938///
939/// To use this initializer, you will need a suitable memory location that can hold a `T`. This can
940/// be [`Box<T>`], [`Arc<T>`] or even the stack (see [`stack_pin_init!`]).
941///
942/// Also see the [module description](self).
943///
944/// # Safety
945///
946/// When implementing this trait you will need to take great care. Also there are probably very few
947/// cases where a manual implementation is necessary. Use [`pin_init_from_closure`] where possible.
948///
949/// The [`PinInit::__init`] function:
950/// - returns `Ok(())` if it initialized every field of `slot`,
951/// - returns `Err(err)` if it encountered an error and then cleaned `slot`, this means:
952/// - `slot` can be deallocated without UB occurring,
953/// - `slot` does not need to be dropped,
954/// - `slot` is not partially initialized.
955/// - while constructing the `T` at `slot` it upholds the pinning invariants of `T`.
956///
957#[cfg_attr(
958 kernel,
959 doc = "[`Arc<T>`]: https://rust.docs.kernel.org/kernel/sync/struct.Arc.html"
960)]
961#[cfg_attr(
962 kernel,
963 doc = "[`Box<T>`]: https://rust.docs.kernel.org/kernel/alloc/kbox/struct.Box.html"
964)]
965#[cfg_attr(not(kernel), doc = "[`Arc<T>`]: alloc::alloc::sync::Arc")]
966#[cfg_attr(not(kernel), doc = "[`Box<T>`]: alloc::alloc::boxed::Box")]
967#[must_use = "An initializer must be used in order to create its value."]
968pub unsafe trait PinInit<T: ?Sized, E = Infallible>: Sized {
969 /// Alias of [`PinInit::__init`].
970 ///
971 /// New code should use `__init` instead.
972 ///
973 /// # Safety
974 ///
975 /// Same as `__init`.
976 #[inline(always)]
977 #[cfg(not(kernel))]
978 #[deprecated = "use `raw_try_init` instead"]
979 unsafe fn __pinned_init(self, slot: *mut T) -> Result<(), E> {
980 // SAFETY: Per safety requirement.
981 unsafe { self.__init(slot) }
982 }
983
984 /// Initializes `slot`.
985 ///
986 /// It is not recommended to call this directly. Use [`raw_init`] or [`raw_try_init`].
987 ///
988 /// # Safety
989 ///
990 /// - `slot` is a valid pointer to uninitialized memory.
991 /// - the caller does not touch `slot` when `Err` is returned, they are only permitted to
992 /// deallocate.
993 /// - `slot` will not move until it is dropped, i.e. it will be pinned.
994 /// If `Self: Init<T, E>`, this requirement is cancelled and it may be moved.
995 unsafe fn __init(self, slot: *mut T) -> Result<(), E>;
996
997 /// First initializes the value using `self` then calls the function `f` with the initialized
998 /// value.
999 ///
1000 /// If `f` returns an error the value is dropped and the initializer will forward the error.
1001 ///
1002 /// # Examples
1003 ///
1004 /// ```rust
1005 /// # #![feature(allocator_api)]
1006 /// # #[path = "../examples/mutex.rs"] mod mutex; use mutex::*;
1007 /// # use pin_init::*;
1008 /// let mtx_init = CMutex::new(42);
1009 /// // Make the initializer print the value.
1010 /// let mtx_init = mtx_init.pin_chain(|mtx| {
1011 /// println!("{:?}", mtx.get_data_mut());
1012 /// Ok(())
1013 /// });
1014 /// ```
1015 #[inline]
1016 fn pin_chain<F>(self, f: F) -> ChainPinInit<Self, F, T, E>
1017 where
1018 F: FnOnce(Pin<&mut T>) -> Result<(), E>,
1019 {
1020 ChainPinInit(self, f, __internal::PhantomInvariant::new())
1021 }
1022}
1023
1024/// Initializes `slot` with an initializer.
1025///
1026/// # Safety
1027///
1028/// - `slot` is a valid pointer to uninitialized memory.
1029/// - `slot` will not move until it is dropped, i.e. it will be pinned.
1030/// If `init` implements `Init<T, E>`, this requirement is cancelled and it may be moved.
1031#[inline(always)]
1032pub unsafe fn raw_init<T>(slot: *mut T, init: impl PinInit<T>) {
1033 // SAFETY: Per safety requirement.
1034 unsafe { init.__init(slot).unwrap_or_else(|e| match e {}) }
1035}
1036
1037/// Fallibly initializes `slot` with an initializer.
1038///
1039/// # Safety
1040///
1041/// - `slot` is a valid pointer to uninitialized memory.
1042/// - the caller does not touch `slot` when `Err` is returned, they are only permitted to
1043/// deallocate.
1044/// - `slot` will not move until it is dropped, i.e. it will be pinned.
1045/// If `init` implements `Init<T, E>`, this requirement is cancelled and it may be moved.
1046#[inline(always)]
1047pub unsafe fn raw_try_init<T, E>(slot: *mut T, init: impl PinInit<T, E>) -> Result<(), E> {
1048 // SAFETY: Per safety requirement.
1049 unsafe { init.__init(slot) }
1050}
1051
1052/// An initializer returned by [`PinInit::pin_chain`].
1053pub struct ChainPinInit<I, F, T: ?Sized, E>(I, F, __internal::PhantomInvariant<(E, T)>);
1054
1055// SAFETY: The `__init` function is implemented such that it
1056// - returns `Ok(())` on successful initialization,
1057// - returns `Err(err)` on error and in this case `slot` will be dropped.
1058// - considers `slot` pinned.
1059unsafe impl<T: ?Sized, E, I, F> PinInit<T, E> for ChainPinInit<I, F, T, E>
1060where
1061 I: PinInit<T, E>,
1062 F: FnOnce(Pin<&mut T>) -> Result<(), E>,
1063{
1064 #[inline]
1065 unsafe fn __init(self, slot: *mut T) -> Result<(), E> {
1066 // SAFETY: All requirements fulfilled since this function is `__init`.
1067 let slot = unsafe { __internal::Slot::<__internal::Pinned, _>::new(slot) };
1068 let mut guard = slot.init(self.0)?;
1069 (self.1)(guard.let_binding())?;
1070 core::mem::forget(guard);
1071 Ok(())
1072 }
1073}
1074
1075/// An initializer for `T`.
1076///
1077/// To use this initializer, you will need a suitable memory location that can hold a `T`. This can
1078/// be [`Box<T>`], [`Arc<T>`] or even the stack (see [`stack_pin_init!`]). Because
1079/// [`PinInit<T, E>`] is a super trait, you can use every function that takes it as well.
1080///
1081/// Also see the [module description](self).
1082///
1083/// # Safety
1084///
1085/// When implementing this trait you will need to take great care. Also there are probably very few
1086/// cases where a manual implementation is necessary. Use [`init_from_closure`] where possible.
1087///
1088/// The [`PinInit::__init`] function must work without the pinning requirement; the caller is
1089/// allowed to move the pointee after initialization.
1090///
1091#[cfg_attr(
1092 kernel,
1093 doc = "[`Arc<T>`]: https://rust.docs.kernel.org/kernel/sync/struct.Arc.html"
1094)]
1095#[cfg_attr(
1096 kernel,
1097 doc = "[`Box<T>`]: https://rust.docs.kernel.org/kernel/alloc/kbox/struct.Box.html"
1098)]
1099#[cfg_attr(not(kernel), doc = "[`Arc<T>`]: alloc::alloc::sync::Arc")]
1100#[cfg_attr(not(kernel), doc = "[`Box<T>`]: alloc::alloc::boxed::Box")]
1101#[must_use = "An initializer must be used in order to create its value."]
1102pub unsafe trait Init<T: ?Sized, E = Infallible>: PinInit<T, E> {
1103 /// First initializes the value using `self` then calls the function `f` with the initialized
1104 /// value.
1105 ///
1106 /// If `f` returns an error the value is dropped and the initializer will forward the error.
1107 ///
1108 /// # Examples
1109 ///
1110 /// ```rust
1111 /// use pin_init::{init, init_zeroed, Init};
1112 ///
1113 /// struct Foo {
1114 /// buf: [u8; 1_000_000],
1115 /// }
1116 ///
1117 /// impl Foo {
1118 /// fn setup(&mut self) {
1119 /// println!("Setting up foo");
1120 /// }
1121 /// }
1122 ///
1123 /// let foo = init!(Foo {
1124 /// buf <- init_zeroed()
1125 /// }).chain(|foo| {
1126 /// foo.setup();
1127 /// Ok(())
1128 /// });
1129 /// ```
1130 #[inline]
1131 fn chain<F>(self, f: F) -> ChainInit<Self, F, T, E>
1132 where
1133 F: FnOnce(&mut T) -> Result<(), E>,
1134 {
1135 ChainInit(self, f, __internal::PhantomInvariant::new())
1136 }
1137}
1138
1139/// An initializer returned by [`Init::chain`].
1140pub struct ChainInit<I, F, T: ?Sized, E>(I, F, __internal::PhantomInvariant<(E, T)>);
1141
1142// SAFETY: The `__init` function does not rely on the pinning requirement.
1143unsafe impl<T: ?Sized, E, I, F> Init<T, E> for ChainInit<I, F, T, E>
1144where
1145 I: Init<T, E>,
1146 F: FnOnce(&mut T) -> Result<(), E>,
1147{
1148}
1149
1150// SAFETY: The `__init` function is implemented such that it
1151// - returns `Ok(())` on successful initialization,
1152// - returns `Err(err)` on error and in this case `slot` will be dropped.
1153unsafe impl<T: ?Sized, E, I, F> PinInit<T, E> for ChainInit<I, F, T, E>
1154where
1155 I: Init<T, E>,
1156 F: FnOnce(&mut T) -> Result<(), E>,
1157{
1158 #[inline]
1159 unsafe fn __init(self, slot: *mut T) -> Result<(), E> {
1160 // SAFETY: All requirements fulfilled since this function is `__init`.
1161 let slot = unsafe { __internal::Slot::<__internal::Unpinned, _>::new(slot) };
1162 let mut guard = slot.init(self.0)?;
1163 (self.1)(guard.let_binding())?;
1164 core::mem::forget(guard);
1165 Ok(())
1166 }
1167}
1168
1169/// Implement `PinInit` and `Init` for closures.
1170///
1171/// It is unsafe to create this type, since the closure needs to fulfill the same safety
1172/// requirement as the `__init` functions.
1173struct InitClosure<F, T: ?Sized>(F, __internal::PhantomInvariant<T>);
1174
1175// SAFETY: When constructing via `init_from_closure`, the `__init` function does not rely on the
1176// pinning requirement. When constructing via `pin_init_from_closure`, the opaque type prevents this
1177// implementation from being visible.
1178unsafe impl<T: ?Sized, F, E> Init<T, E> for InitClosure<F, T> where
1179 F: FnOnce(*mut T) -> Result<(), E>
1180{
1181}
1182
1183// SAFETY: While constructing the `InitClosure`, the user promised that it upholds the
1184// `__init` invariants.
1185unsafe impl<T: ?Sized, F, E> PinInit<T, E> for InitClosure<F, T>
1186where
1187 F: FnOnce(*mut T) -> Result<(), E>,
1188{
1189 #[inline]
1190 unsafe fn __init(self, slot: *mut T) -> Result<(), E> {
1191 (self.0)(slot)
1192 }
1193}
1194
1195/// Creates a new [`PinInit<T, E>`] from the given closure.
1196///
1197/// # Safety
1198///
1199/// The closure:
1200/// - returns `Ok(())` if it initialized every field of `slot`,
1201/// - returns `Err(err)` if it encountered an error and then cleaned `slot`, this means:
1202/// - `slot` can be deallocated without UB occurring,
1203/// - `slot` does not need to be dropped,
1204/// - `slot` is not partially initialized.
1205/// - may assume that the `slot` does not move if `T: !Unpin`,
1206/// - while constructing the `T` at `slot` it upholds the pinning invariants of `T`.
1207#[inline]
1208pub const unsafe fn pin_init_from_closure<T: ?Sized, E>(
1209 f: impl FnOnce(*mut T) -> Result<(), E>,
1210) -> impl PinInit<T, E> {
1211 InitClosure(f, __internal::PhantomInvariant::new())
1212}
1213
1214/// Creates a new [`Init<T, E>`] from the given closure.
1215///
1216/// # Safety
1217///
1218/// The closure:
1219/// - returns `Ok(())` if it initialized every field of `slot`,
1220/// - returns `Err(err)` if it encountered an error and then cleaned `slot`, this means:
1221/// - `slot` can be deallocated without UB occurring,
1222/// - `slot` does not need to be dropped,
1223/// - `slot` is not partially initialized.
1224/// - the `slot` may move after initialization.
1225/// - while constructing the `T` at `slot` it upholds the pinning invariants of `T`.
1226#[inline]
1227pub const unsafe fn init_from_closure<T: ?Sized, E>(
1228 f: impl FnOnce(*mut T) -> Result<(), E>,
1229) -> impl Init<T, E> {
1230 InitClosure(f, __internal::PhantomInvariant::new())
1231}
1232
1233/// Changes the to be initialized type.
1234///
1235/// # Safety
1236///
1237/// - `*mut U` must be castable to `*mut T` and any value of type `T` written through such a
1238/// pointer must result in a valid `U`.
1239#[inline]
1240pub const unsafe fn cast_pin_init<T, U, E>(init: impl PinInit<T, E>) -> impl PinInit<U, E> {
1241 // SAFETY: initialization delegated to a valid initializer. Cast is valid by function safety
1242 // requirements.
1243 unsafe { pin_init_from_closure(|ptr: *mut U| init.__init(ptr.cast::<T>())) }
1244}
1245
1246/// Changes the to be initialized type.
1247///
1248/// # Safety
1249///
1250/// - `*mut U` must be castable to `*mut T` and any value of type `T` written through such a
1251/// pointer must result in a valid `U`.
1252#[inline]
1253pub const unsafe fn cast_init<T, U, E>(init: impl Init<T, E>) -> impl Init<U, E> {
1254 // SAFETY: initialization delegated to a valid initializer. Cast is valid by function safety
1255 // requirements.
1256 unsafe { init_from_closure(|ptr: *mut U| init.__init(ptr.cast::<T>())) }
1257}
1258
1259/// An initializer that leaves the memory uninitialized.
1260///
1261/// The initializer is a no-op. The `slot` memory is not changed.
1262#[inline]
1263pub fn uninit<T, E>() -> impl Init<MaybeUninit<T>, E> {
1264 // SAFETY: The memory is allowed to be uninitialized.
1265 unsafe { init_from_closure(|_| Ok(())) }
1266}
1267
1268/// Array initializer from element initializer.
1269struct ArrayInit<T: ?Sized, F>(F, __internal::PhantomInvariant<T>);
1270
1271// SAFETY: On success, all `N` elements of the array have been initialized. On error or panic, the
1272// elements that have been initialized so far are dropped, thus leaving the array uninitialized and
1273// ready to deallocate.
1274unsafe impl<T, F, I, E, const N: usize> PinInit<[T; N], E> for ArrayInit<T, F>
1275where
1276 F: FnMut(usize) -> I,
1277 I: PinInit<T, E>,
1278{
1279 unsafe fn __init(mut self, slot: *mut [T; N]) -> Result<(), E> {
1280 /// # Invariants
1281 ///
1282 /// - `ptr[..num_init]` contains initialized elements of type `T`
1283 /// - `ptr[num_init..N]` (where N is the size of the array) contains uninitialized memory
1284 struct ArrayInitGuard<T> {
1285 /// A pointer to the first element of the array.
1286 ptr: *mut T,
1287 /// The number of initialized elements in the array.
1288 num_init: usize,
1289 }
1290
1291 impl<T> Drop for ArrayInitGuard<T> {
1292 #[inline]
1293 fn drop(&mut self) {
1294 // SAFETY: Per type invariant, `self.ptr[..self.num_init]` are initialized.
1295 unsafe {
1296 core::ptr::drop_in_place(core::ptr::slice_from_raw_parts_mut(
1297 self.ptr,
1298 self.num_init,
1299 ))
1300 };
1301 }
1302 }
1303
1304 // INVARIANT: nothing is initialized yet.
1305 let mut guard = ArrayInitGuard {
1306 ptr: slot.cast::<T>(),
1307 num_init: 0,
1308 };
1309
1310 for i in 0..N {
1311 // INVARIANT: Elements `self.ptr[..self.num_init]` have been initialized
1312 // thus far. This holds true for every `self.num_init = i`.
1313 guard.num_init = i;
1314
1315 let init = (self.0)(i);
1316 // SAFETY:
1317 // - The subslot is derived from `slot` with a valid offset.
1318 // - If `Err` is touched, the subslot is not touched further, the guard will drop
1319 // previously initialized elements only.
1320 // - `slot` is pinned so is the subslot.
1321 unsafe { init.__init(&raw mut (*slot)[i]) }?;
1322 }
1323
1324 // Dismiss the drop guard now that all elements are initialized.
1325 core::mem::forget(guard);
1326 Ok(())
1327 }
1328}
1329
1330// SAFETY: `I: Init` cancels out the pinning requirement on subslots, which is the only place in the
1331// `__init` function that relies on `slot` being pinned.
1332unsafe impl<T, F, I, E, const N: usize> Init<[T; N], E> for ArrayInit<T, F>
1333where
1334 F: FnMut(usize) -> I,
1335 I: Init<T, E>,
1336{
1337}
1338
1339/// Initializes an array by initializing each element via the provided initializer.
1340///
1341/// # Examples
1342///
1343/// ```rust
1344/// # use pin_init::*;
1345/// use pin_init::init_array_from_fn;
1346/// let array: Box<[usize; 1_000]> = Box::init(init_array_from_fn(|i| i)).unwrap();
1347/// assert_eq!(array.len(), 1_000);
1348/// ```
1349#[inline]
1350pub fn init_array_from_fn<I, const N: usize, T, E>(
1351 make_init: impl FnMut(usize) -> I,
1352) -> impl Init<[T; N], E>
1353where
1354 I: Init<T, E>,
1355{
1356 ArrayInit(make_init, __internal::PhantomInvariant::new())
1357}
1358
1359/// Initializes an array by initializing each element via the provided initializer.
1360///
1361/// # Examples
1362///
1363/// ```rust
1364/// # #![feature(allocator_api)]
1365/// # #[path = "../examples/mutex.rs"] mod mutex; use mutex::*;
1366/// # use pin_init::*;
1367/// # use core::pin::Pin;
1368/// use pin_init::pin_init_array_from_fn;
1369/// use std::sync::Arc;
1370/// let array: Pin<Arc<[CMutex<usize>; 1_000]>> =
1371/// Arc::pin_init(pin_init_array_from_fn(|i| CMutex::new(i))).unwrap();
1372/// assert_eq!(array.len(), 1_000);
1373/// ```
1374#[inline]
1375pub fn pin_init_array_from_fn<I, const N: usize, T, E>(
1376 make_init: impl FnMut(usize) -> I,
1377) -> impl PinInit<[T; N], E>
1378where
1379 I: PinInit<T, E>,
1380{
1381 ArrayInit(make_init, __internal::PhantomInvariant::new())
1382}
1383
1384/// Construct an initializer in a closure and run it.
1385///
1386/// Returns an initializer that first runs the closure and then the initializer returned by it.
1387///
1388/// See also [`init_scope`].
1389///
1390/// # Examples
1391///
1392/// ```
1393/// # use pin_init::*;
1394/// # #[pin_data]
1395/// # struct Foo { a: u64, b: isize }
1396/// # struct Bar { a: u32, b: isize }
1397/// # fn lookup_bar() -> Result<Bar, Error> { todo!() }
1398/// # struct Error;
1399/// fn init_foo() -> impl PinInit<Foo, Error> {
1400/// pin_init_scope(|| {
1401/// let bar = lookup_bar()?;
1402/// Ok(pin_init!(Foo { a: bar.a.into(), b: bar.b }? Error))
1403/// })
1404/// }
1405/// ```
1406///
1407/// This initializer will first execute `lookup_bar()`, match on it, if it returned an error, the
1408/// initializer itself will fail with that error. If it returned `Ok`, then it will run the
1409/// initializer returned by the [`pin_init!`] invocation.
1410#[inline]
1411pub fn pin_init_scope<T, E, F, I>(make_init: F) -> impl PinInit<T, E>
1412where
1413 F: FnOnce() -> Result<I, E>,
1414 I: PinInit<T, E>,
1415{
1416 // SAFETY:
1417 // - If `make_init` returns `Err`, `Err` is returned and `slot` is completely uninitialized,
1418 // - If `make_init` returns `Ok`, safety requirement are fulfilled by `init.__init`.
1419 // - The safety requirements of `init.__init` are fulfilled, since it's being called from an
1420 // initializer.
1421 unsafe {
1422 pin_init_from_closure(move |slot: *mut T| -> Result<(), E> {
1423 let init = make_init()?;
1424 init.__init(slot)
1425 })
1426 }
1427}
1428
1429/// Construct an initializer in a closure and run it.
1430///
1431/// Returns an initializer that first runs the closure and then the initializer returned by it.
1432///
1433/// See also [`pin_init_scope`].
1434///
1435/// # Examples
1436///
1437/// ```
1438/// # use pin_init::*;
1439/// # struct Foo { a: u64, b: isize }
1440/// # struct Bar { a: u32, b: isize }
1441/// # fn lookup_bar() -> Result<Bar, Error> { todo!() }
1442/// # struct Error;
1443/// fn init_foo() -> impl Init<Foo, Error> {
1444/// init_scope(|| {
1445/// let bar = lookup_bar()?;
1446/// Ok(init!(Foo { a: bar.a.into(), b: bar.b }? Error))
1447/// })
1448/// }
1449/// ```
1450///
1451/// This initializer will first execute `lookup_bar()`, match on it, if it returned an error, the
1452/// initializer itself will fail with that error. If it returned `Ok`, then it will run the
1453/// initializer returned by the [`init!`] invocation.
1454#[inline]
1455pub fn init_scope<T, E, F, I>(make_init: F) -> impl Init<T, E>
1456where
1457 F: FnOnce() -> Result<I, E>,
1458 I: Init<T, E>,
1459{
1460 // SAFETY:
1461 // - If `make_init` returns `Err`, `Err` is returned and `slot` is completely uninitialized,
1462 // - If `make_init` returns `Ok`, safety requirement are fulfilled by `init.__init`.
1463 // - The safety requirements of `init.__init` are fulfilled, since it's being called from an
1464 // initializer.
1465 unsafe {
1466 init_from_closure(move |slot: *mut T| -> Result<(), E> {
1467 let init = make_init()?;
1468 init.__init(slot)
1469 })
1470 }
1471}
1472
1473// SAFETY: The `__init` function does not rely on slot being pinned after it returns.
1474unsafe impl<T> Init<T> for T {}
1475
1476// SAFETY: the `__init` function always returns `Ok(())` and initializes every field of
1477// `slot`. Additionally, all pinning invariants of `T` are upheld.
1478unsafe impl<T> PinInit<T> for T {
1479 #[inline]
1480 unsafe fn __init(self, slot: *mut T) -> Result<(), Infallible> {
1481 // SAFETY: `slot` is valid for writes by the safety requirements of this function.
1482 unsafe { slot.write(self) };
1483 Ok(())
1484 }
1485}
1486
1487// SAFETY: The `__init` function does not rely on slot being pinned after it returns.
1488unsafe impl<T, E> Init<T, E> for Result<T, E> {}
1489
1490// SAFETY: when the `__init` function returns with
1491// - `Ok(())`, `slot` was initialized and all pinned invariants of `T` are upheld.
1492// - `Err(err)`, slot was not written to.
1493unsafe impl<T, E> PinInit<T, E> for Result<T, E> {
1494 #[inline]
1495 unsafe fn __init(self, slot: *mut T) -> Result<(), E> {
1496 // SAFETY: `slot` is valid for writes by the safety requirements of this function.
1497 unsafe { slot.write(self?) };
1498 Ok(())
1499 }
1500}
1501
1502/// Smart pointer containing uninitialized memory and that can write a value.
1503pub trait InPlaceWrite<T> {
1504 /// The type `Self` turns into when the contents are initialized.
1505 type Initialized;
1506
1507 /// Use the given initializer to write a value into `self`.
1508 ///
1509 /// Does not drop the current value and considers it as uninitialized memory.
1510 fn write_init<E>(self, init: impl Init<T, E>) -> Result<Self::Initialized, E>;
1511
1512 /// Use the given pin-initializer to write a value into `self`.
1513 ///
1514 /// Does not drop the current value and considers it as uninitialized memory.
1515 fn write_pin_init<E>(self, init: impl PinInit<T, E>) -> Result<Pin<Self::Initialized>, E>;
1516}
1517
1518impl<T> InPlaceWrite<T> for &'static mut MaybeUninit<T> {
1519 type Initialized = &'static mut T;
1520
1521 #[inline]
1522 fn write_init<E>(self, init: impl Init<T, E>) -> Result<Self::Initialized, E> {
1523 let slot = self.as_mut_ptr();
1524
1525 // SAFETY: `slot` is a valid pointer to uninitialized memory.
1526 unsafe { init.__init(slot)? };
1527
1528 // SAFETY: The above call initialized the memory.
1529 unsafe { Ok(self.assume_init_mut()) }
1530 }
1531
1532 #[inline]
1533 fn write_pin_init<E>(self, init: impl PinInit<T, E>) -> Result<Pin<Self::Initialized>, E> {
1534 let slot = self.as_mut_ptr();
1535
1536 // SAFETY: `slot` is a valid pointer to uninitialized memory.
1537 //
1538 // The `'static` borrow guarantees the data will not be
1539 // moved/invalidated until it gets dropped (which is never).
1540 unsafe { init.__init(slot)? };
1541
1542 // SAFETY: The above call initialized the memory.
1543 Ok(Pin::static_mut(unsafe { self.assume_init_mut() }))
1544 }
1545}
1546
1547/// Trait facilitating pinned destruction.
1548///
1549/// Use [`pinned_drop`] to implement this trait safely:
1550///
1551/// ```rust
1552/// # #![feature(allocator_api)]
1553/// # #[path = "../examples/mutex.rs"] mod mutex; use mutex::*;
1554/// # use pin_init::*;
1555/// use core::pin::Pin;
1556/// #[pin_data(PinnedDrop)]
1557/// struct Foo {
1558/// #[pin]
1559/// mtx: CMutex<usize>,
1560/// }
1561///
1562/// #[pinned_drop]
1563/// impl PinnedDrop for Foo {
1564/// fn drop(self: Pin<&mut Self>) {
1565/// println!("Foo is being dropped!");
1566/// }
1567/// }
1568/// ```
1569///
1570/// # Safety
1571///
1572/// This trait must be implemented via the [`pinned_drop`] proc-macro attribute on the impl.
1573pub unsafe trait PinnedDrop: __internal::HasPinData {
1574 /// Executes the pinned destructor of this type.
1575 ///
1576 /// While this function is marked safe, it is actually unsafe to call it manually. For this
1577 /// reason it takes an additional parameter. This type can only be constructed by `unsafe` code
1578 /// and thus prevents this function from being called where it should not.
1579 ///
1580 /// This extra parameter will be generated by the `#[pinned_drop]` proc-macro attribute
1581 /// automatically.
1582 fn drop(self: Pin<&mut Self>, only_call_from_drop: __internal::OnlyCallFromDrop);
1583}
1584
1585/// Marker trait for types that can be initialized by writing just zeroes.
1586///
1587/// # Safety
1588///
1589/// The bit pattern consisting of only zeroes is a valid bit pattern for this type. In other words,
1590/// this is not UB:
1591///
1592/// ```rust,ignore
1593/// let val: Self = unsafe { core::mem::zeroed() };
1594/// ```
1595pub unsafe trait Zeroable {
1596 /// Create a new zeroed `Self`.
1597 ///
1598 /// The returned initializer will write `0x00` to every byte of the given `slot`.
1599 #[inline]
1600 fn init_zeroed() -> impl Init<Self>
1601 where
1602 Self: Sized,
1603 {
1604 init_zeroed()
1605 }
1606
1607 /// Create a `Self` consisting of all zeroes.
1608 ///
1609 /// Whenever a type implements [`Zeroable`], this function should be preferred over
1610 /// [`core::mem::zeroed()`] or using `MaybeUninit<T>::zeroed().assume_init()`.
1611 ///
1612 /// As const traits are not yet stable, [`pin_init::zeroed()`] can be used instead
1613 /// when initialization is required in a `const` context.
1614 ///
1615 /// # Examples
1616 ///
1617 /// ```
1618 /// use pin_init::Zeroable;
1619 ///
1620 /// #[derive(Zeroable)]
1621 /// struct Point {
1622 /// x: u32,
1623 /// y: u32,
1624 /// }
1625 ///
1626 /// let point: Point = Zeroable::zeroed();
1627 /// assert_eq!(point.x, 0);
1628 /// assert_eq!(point.y, 0);
1629 /// ```
1630 #[inline]
1631 fn zeroed() -> Self
1632 where
1633 Self: Sized,
1634 {
1635 zeroed()
1636 }
1637}
1638
1639/// Create an initializer for a zeroed `T`.
1640///
1641/// The returned initializer will write `0x00` to every byte of the given `slot`.
1642#[inline]
1643pub fn init_zeroed<T: Zeroable>() -> impl Init<T> {
1644 // SAFETY: Because `T: Zeroable`, all bytes zero is a valid bit pattern for `T`
1645 // and because we write all zeroes, the memory is initialized.
1646 unsafe {
1647 init_from_closure(|slot: *mut T| {
1648 slot.write_bytes(0, 1);
1649 Ok(())
1650 })
1651 }
1652}
1653
1654/// Create a `T` consisting of all zeroes.
1655///
1656/// Whenever a type implements [`Zeroable`], this function should be preferred over
1657/// [`core::mem::zeroed()`] or using `MaybeUninit<T>::zeroed().assume_init()`.
1658///
1659/// While const traits remain unstable, this function serves as the `const` version of
1660/// [`Zeroable::zeroed()`].
1661///
1662/// # Examples
1663///
1664/// ```
1665/// use pin_init::{Zeroable, zeroed};
1666///
1667/// #[derive(Zeroable)]
1668/// struct Point {
1669/// x: u32,
1670/// y: u32,
1671/// }
1672///
1673/// let point: Point = zeroed();
1674/// assert_eq!(point.x, 0);
1675/// assert_eq!(point.y, 0);
1676/// ```
1677#[inline]
1678pub const fn zeroed<T: Zeroable>() -> T {
1679 // SAFETY:By the type invariants of `Zeroable`, all zeroes is a valid bit pattern for `T`.
1680 unsafe { core::mem::zeroed() }
1681}
1682
1683macro_rules! impl_zeroable {
1684 ($($({$($generics:tt)*})? $t:ty, )*) => {
1685 // SAFETY: Safety comments written in the macro invocation.
1686 $(unsafe impl$($($generics)*)? Zeroable for $t {})*
1687 };
1688}
1689
1690impl_zeroable! {
1691 // SAFETY: All primitives that are allowed to be zero.
1692 bool,
1693 char,
1694 u8, u16, u32, u64, u128, usize,
1695 i8, i16, i32, i64, i128, isize,
1696 f32, f64,
1697
1698 // Note: do not add uninhabited types (such as `!` or `core::convert::Infallible`) to this list;
1699 // creating an instance of an uninhabited type is immediate undefined behavior. For more on
1700 // uninhabited/empty types, consult The Rustonomicon:
1701 // <https://doc.rust-lang.org/stable/nomicon/exotic-sizes.html#empty-types>. The Rust Reference
1702 // also has information on undefined behavior:
1703 // <https://doc.rust-lang.org/stable/reference/behavior-considered-undefined.html>.
1704 //
1705 // SAFETY: These are inhabited ZSTs; there is nothing to zero and a valid value exists.
1706 {<T: ?Sized>} PhantomData<T>, core::marker::PhantomPinned, (),
1707
1708 // SAFETY: Type is allowed to take any value, including all zeros.
1709 {<T>} MaybeUninit<T>,
1710
1711 // SAFETY: `T: Zeroable` and `UnsafeCell` is `repr(transparent)`.
1712 {<T: ?Sized + Zeroable>} UnsafeCell<T>,
1713
1714 // SAFETY: `null` pointer is valid.
1715 //
1716 // We cannot use `T: ?Sized`, since the VTABLE pointer part of fat pointers is not allowed to be
1717 // null.
1718 //
1719 // When `Pointee` gets stabilized, we could use
1720 // `T: ?Sized where <T as Pointee>::Metadata: Zeroable`
1721 {<T>} *mut T, {<T>} *const T,
1722
1723 // SAFETY: `null` pointer is valid and the metadata part of these fat pointers is allowed to be
1724 // zero.
1725 {<T>} *mut [T], {<T>} *const [T], *mut str, *const str,
1726
1727 // SAFETY: `T` is `Zeroable`.
1728 {<const N: usize, T: Zeroable>} [T; N], {<T: Zeroable>} Wrapping<T>,
1729}
1730
1731macro_rules! impl_tuple_zeroable {
1732 ($first:ident, $(,)?) => {
1733 #[cfg_attr(all(USE_RUSTC_FEATURES, doc), doc(fake_variadic))]
1734 /// Implemented for tuples up to 10 items long.
1735 // SAFETY: All elements are zeroable and padding can be zero.
1736 unsafe impl<$first: Zeroable> Zeroable for ($first,) {}
1737 };
1738 ($first:ident, $($t:ident),* $(,)?) => {
1739 #[cfg_attr(doc, doc(hidden))]
1740 // SAFETY: All elements are zeroable and padding can be zero.
1741 unsafe impl<$first: Zeroable, $($t: Zeroable),*> Zeroable for ($first, $($t),*) {}
1742 impl_tuple_zeroable!($($t),* ,);
1743 }
1744}
1745
1746impl_tuple_zeroable!(A, B, C, D, E, F, G, H, I, J);
1747
1748/// Marker trait for types that allow `Option<Self>` to be set to all zeroes in order to write
1749/// `None` to that location.
1750///
1751/// # Safety
1752///
1753/// The implementer needs to ensure that `unsafe impl Zeroable for Option<Self> {}` is sound.
1754pub unsafe trait ZeroableOption {}
1755
1756// SAFETY: by the safety requirement of `ZeroableOption`, this is valid.
1757unsafe impl<T: ZeroableOption> Zeroable for Option<T> {}
1758
1759macro_rules! impl_fn_zeroable_option {
1760 ([$($abi:literal),* $(,)?] $args:tt) => {
1761 $(impl_fn_zeroable_option!({extern $abi} $args);)*
1762 $(impl_fn_zeroable_option!({unsafe extern $abi} $args);)*
1763 };
1764 ({$($prefix:tt)*} {$(,)?}) => {};
1765 ({$($prefix:tt)*} {$ret:ident, $arg:ident $(,)?}) => {
1766 #[cfg_attr(all(USE_RUSTC_FEATURES, doc), doc(fake_variadic))]
1767 /// Implemented for function pointers with up to 20 arity.
1768 // SAFETY: function pointers are part of the option layout optimization:
1769 // <https://doc.rust-lang.org/stable/std/option/index.html#representation>.
1770 unsafe impl<$ret, $arg> ZeroableOption for $($prefix)* fn($arg) -> $ret {}
1771 impl_fn_zeroable_option!({$($prefix)*} {$arg,});
1772 };
1773 ({$($prefix:tt)*} {$ret:ident, $($rest:ident),* $(,)?}) => {
1774 #[cfg_attr(doc, doc(hidden))]
1775 // SAFETY: function pointers are part of the option layout optimization:
1776 // <https://doc.rust-lang.org/stable/std/option/index.html#representation>.
1777 unsafe impl<$ret, $($rest),*> ZeroableOption for $($prefix)* fn($($rest),*) -> $ret {}
1778 impl_fn_zeroable_option!({$($prefix)*} {$($rest),*,});
1779 };
1780}
1781
1782impl_fn_zeroable_option!(["Rust", "C"] { A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U });
1783
1784macro_rules! impl_zeroable_option {
1785 ($($({$($generics:tt)*})? $t:ty, )*) => {
1786 // SAFETY: Safety comments written in the macro invocation.
1787 $(unsafe impl$($($generics)*)? ZeroableOption for $t {})*
1788 };
1789}
1790
1791impl_zeroable_option! {
1792 // SAFETY: `Option<&T>` is part of the option layout optimization guarantee:
1793 // <https://doc.rust-lang.org/stable/std/option/index.html#representation>.
1794 {<T: ?Sized>} &T,
1795 // SAFETY: `Option<&mut T>` is part of the option layout optimization guarantee:
1796 // <https://doc.rust-lang.org/stable/std/option/index.html#representation>.
1797 {<T: ?Sized>} &mut T,
1798 // SAFETY: `Option<NonNull<T>>` is part of the option layout optimization guarantee:
1799 // <https://doc.rust-lang.org/stable/std/option/index.html#representation>.
1800 {<T: ?Sized>} NonNull<T>,
1801 // SAFETY: All zeros is equivalent to `None` (option layout optimization guarantee:
1802 // <https://doc.rust-lang.org/stable/std/option/index.html#representation>).
1803 NonZero<u8>, NonZero<u16>, NonZero<u32>, NonZero<u64>, NonZero<u128>, NonZero<usize>,
1804 NonZero<i8>, NonZero<i16>, NonZero<i32>, NonZero<i64>, NonZero<i128>, NonZero<isize>,
1805}
1806
1807/// This trait allows creating an instance of `Self` which contains exactly one
1808/// [structurally pinned value](https://doc.rust-lang.org/std/pin/index.html#projections-and-structural-pinning).
1809///
1810/// This is useful when using wrapper `struct`s like [`UnsafeCell`] or with new-type `struct`s.
1811///
1812/// # Examples
1813///
1814/// ```
1815/// # use core::cell::UnsafeCell;
1816/// # use pin_init::{pin_data, pin_init, Wrapper};
1817///
1818/// #[pin_data]
1819/// struct Foo {}
1820///
1821/// #[pin_data]
1822/// struct Bar {
1823/// #[pin]
1824/// content: UnsafeCell<Foo>
1825/// };
1826///
1827/// let foo_initializer = pin_init!(Foo{});
1828/// let initializer = pin_init!(Bar {
1829/// content <- UnsafeCell::pin_init(foo_initializer)
1830/// });
1831/// ```
1832pub trait Wrapper<T> {
1833 /// Creates an pin-initializer for a [`Self`] containing `T` from the `value_init` initializer.
1834 fn pin_init<E>(value_init: impl PinInit<T, E>) -> impl PinInit<Self, E>;
1835}
1836
1837impl<T> Wrapper<T> for UnsafeCell<T> {
1838 #[inline]
1839 fn pin_init<E>(value_init: impl PinInit<T, E>) -> impl PinInit<Self, E> {
1840 // SAFETY: `UnsafeCell<T>` has a compatible layout to `T`.
1841 unsafe { cast_pin_init(value_init) }
1842 }
1843}
1844
1845impl<T> Wrapper<T> for MaybeUninit<T> {
1846 #[inline]
1847 fn pin_init<E>(value_init: impl PinInit<T, E>) -> impl PinInit<Self, E> {
1848 // SAFETY: `MaybeUninit<T>` has a compatible layout to `T`.
1849 unsafe { cast_pin_init(value_init) }
1850 }
1851}
1852
1853#[cfg(all(feature = "unsafe-pinned", CONFIG_RUSTC_HAS_UNSAFE_PINNED))]
1854impl<T> Wrapper<T> for core::pin::UnsafePinned<T> {
1855 #[inline]
1856 fn pin_init<E>(init: impl PinInit<T, E>) -> impl PinInit<Self, E> {
1857 // SAFETY: `UnsafePinned<T>` has a compatible layout to `T`.
1858 unsafe { cast_pin_init(init) }
1859 }
1860}