diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2024-11-12 17:08:07 +0100 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2024-12-10 18:49:26 +0100 |
commit | f75fb90ff2af75cd4405fe4c6ba0c0c38a120590 (patch) | |
tree | 9d5b104b61ae9dd8154401040228d8782ad428e0 /rust/qemu-api | |
parent | 8c80c472da6342c5924bc4ea7e87c77ca61477b8 (diff) | |
download | qemu-f75fb90ff2af75cd4405fe4c6ba0c0c38a120590.zip qemu-f75fb90ff2af75cd4405fe4c6ba0c0c38a120590.tar.gz qemu-f75fb90ff2af75cd4405fe4c6ba0c0c38a120590.tar.bz2 |
rust: qdev: move bridge for realize and reset functions out of pl011
Allow the DeviceImpl trait to expose safe Rust functions.
rust_device_class_init<> adds thunks around the functions
in DeviceImpl.
Reviewed-by: Zhao Liu <zhao1.liu@intel.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'rust/qemu-api')
-rw-r--r-- | rust/qemu-api/src/definitions.rs | 2 | ||||
-rw-r--r-- | rust/qemu-api/src/device_class.rs | 36 |
2 files changed, 31 insertions, 7 deletions
diff --git a/rust/qemu-api/src/definitions.rs b/rust/qemu-api/src/definitions.rs index 4877126..0467e62 100644 --- a/rust/qemu-api/src/definitions.rs +++ b/rust/qemu-api/src/definitions.rs @@ -47,7 +47,7 @@ pub trait ObjectImpl: ClassInitImpl + Sized { /// Each QOM type has one such class struct. /// /// The Rust implementation of methods will usually come from a trait -/// like [`ObjectImpl`]. +/// like [`ObjectImpl`] or [`DeviceImpl`](crate::device_class::DeviceImpl). pub trait ClassInitImpl { /// Function that is called after all parent class initialization /// has occurred. On entry, the virtual method pointers are set to diff --git a/rust/qemu-api/src/device_class.rs b/rust/qemu-api/src/device_class.rs index f683f94..f25904b 100644 --- a/rust/qemu-api/src/device_class.rs +++ b/rust/qemu-api/src/device_class.rs @@ -17,14 +17,14 @@ pub trait DeviceImpl { /// /// If not `None`, the parent class's `realize` method is overridden /// with the function pointed to by `REALIZE`. - const REALIZE: Option<unsafe extern "C" fn(*mut DeviceState, *mut *mut Error)> = None; + const REALIZE: Option<fn(&mut Self)> = None; /// If not `None`, the parent class's `reset` method is overridden /// with the function pointed to by `RESET`. /// /// Rust does not yet support the three-phase reset protocol; this is /// usually okay for leaf classes. - const RESET: Option<unsafe extern "C" fn(dev: *mut DeviceState)> = None; + const RESET: Option<fn(&mut Self)> = None; /// An array providing the properties that the user can set on the /// device. Not a `const` because referencing statics in constants @@ -43,6 +43,30 @@ pub trait DeviceImpl { /// # Safety /// +/// This function is only called through the QOM machinery and +/// the `impl_device_class!` macro. +/// We expect the FFI user of this function to pass a valid pointer that +/// can be downcasted to type `T`. We also expect the device is +/// readable/writeable from one thread at any time. +unsafe extern "C" fn rust_realize_fn<T: DeviceImpl>(dev: *mut DeviceState, _errp: *mut *mut Error) { + assert!(!dev.is_null()); + let state = dev.cast::<T>(); + T::REALIZE.unwrap()(unsafe { &mut *state }); +} + +/// # Safety +/// +/// We expect the FFI user of this function to pass a valid pointer that +/// can be downcasted to type `T`. We also expect the device is +/// readable/writeable from one thread at any time. +unsafe extern "C" fn rust_reset_fn<T: DeviceImpl>(dev: *mut DeviceState) { + assert!(!dev.is_null()); + let state = dev.cast::<T>(); + T::RESET.unwrap()(unsafe { &mut *state }); +} + +/// # Safety +/// /// We expect the FFI user of this function to pass a valid pointer that /// can be downcasted to type `DeviceClass`, because `T` implements /// `DeviceImpl`. @@ -53,11 +77,11 @@ pub unsafe extern "C" fn rust_device_class_init<T: DeviceImpl>( let mut dc = ::core::ptr::NonNull::new(klass.cast::<DeviceClass>()).unwrap(); unsafe { let dc = dc.as_mut(); - if let Some(realize_fn) = <T as DeviceImpl>::REALIZE { - dc.realize = Some(realize_fn); + if <T as DeviceImpl>::REALIZE.is_some() { + dc.realize = Some(rust_realize_fn::<T>); } - if let Some(reset_fn) = <T as DeviceImpl>::RESET { - bindings::device_class_set_legacy_reset(dc, Some(reset_fn)); + if <T as DeviceImpl>::RESET.is_some() { + bindings::device_class_set_legacy_reset(dc, Some(rust_reset_fn::<T>)); } if let Some(vmsd) = <T as DeviceImpl>::vmsd() { dc.vmsd = vmsd; |