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