* [PATCH 1/4] rust: device: implement Device::parent()
2025-03-19 20:30 [PATCH 0/4] Implement TryFrom<&Device> for bus specific devices Danilo Krummrich
@ 2025-03-19 20:30 ` Danilo Krummrich
2025-03-20 8:34 ` Alice Ryhl
2025-03-19 20:30 ` [PATCH 2/4] rust: device: implement bus_type_raw() Danilo Krummrich
` (2 subsequent siblings)
3 siblings, 1 reply; 14+ messages in thread
From: Danilo Krummrich @ 2025-03-19 20:30 UTC (permalink / raw)
To: bhelgaas, gregkh, rafael, ojeda, alex.gaynor, boqun.feng, gary,
bjorn3_gh, benno.lossin, a.hindborg, aliceryhl, tmgross
Cc: linux-pci, rust-for-linux, linux-kernel, Danilo Krummrich
Device::parent() returns a reference to the device' parent device, if
any.
Signed-off-by: Danilo Krummrich <dakr@kernel.org>
---
rust/kernel/device.rs | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/rust/kernel/device.rs b/rust/kernel/device.rs
index 21b343a1dc4d..76b341441f3f 100644
--- a/rust/kernel/device.rs
+++ b/rust/kernel/device.rs
@@ -65,6 +65,19 @@ pub(crate) fn as_raw(&self) -> *mut bindings::device {
self.0.get()
}
+ /// Returns a reference to the parent device, if any.
+ pub fn parent<'a>(&self) -> Option<&'a Self> {
+ // SAFETY: By the type invariant `self.as_raw()` is always valid.
+ let parent = unsafe { *self.as_raw() }.parent;
+
+ if parent.is_null() {
+ None
+ } else {
+ // SAFETY: Since `parent` is not NULL, it must be a valid pointer to a `struct device`.
+ Some(unsafe { Self::as_ref(parent) })
+ }
+ }
+
/// Convert a raw C `struct device` pointer to a `&'a Device`.
///
/// # Safety
--
2.48.1
^ permalink raw reply related [flat|nested] 14+ messages in thread
* Re: [PATCH 1/4] rust: device: implement Device::parent()
2025-03-19 20:30 ` [PATCH 1/4] rust: device: implement Device::parent() Danilo Krummrich
@ 2025-03-20 8:34 ` Alice Ryhl
2025-03-20 8:40 ` Alice Ryhl
0 siblings, 1 reply; 14+ messages in thread
From: Alice Ryhl @ 2025-03-20 8:34 UTC (permalink / raw)
To: Danilo Krummrich
Cc: bhelgaas, gregkh, rafael, ojeda, alex.gaynor, boqun.feng, gary,
bjorn3_gh, benno.lossin, a.hindborg, tmgross, linux-pci,
rust-for-linux, linux-kernel
On Wed, Mar 19, 2025 at 09:30:25PM +0100, Danilo Krummrich wrote:
> Device::parent() returns a reference to the device' parent device, if
> any.
>
> Signed-off-by: Danilo Krummrich <dakr@kernel.org>
> ---
> rust/kernel/device.rs | 13 +++++++++++++
> 1 file changed, 13 insertions(+)
>
> diff --git a/rust/kernel/device.rs b/rust/kernel/device.rs
> index 21b343a1dc4d..76b341441f3f 100644
> --- a/rust/kernel/device.rs
> +++ b/rust/kernel/device.rs
> @@ -65,6 +65,19 @@ pub(crate) fn as_raw(&self) -> *mut bindings::device {
> self.0.get()
> }
>
> + /// Returns a reference to the parent device, if any.
> + pub fn parent<'a>(&self) -> Option<&'a Self> {
> + // SAFETY: By the type invariant `self.as_raw()` is always valid.
> + let parent = unsafe { *self.as_raw() }.parent;
This means:
1. Copy the entire `struct device` onto the stack.
2. Read the `parent` field of the copy.
Please write this instead to only read the `parent` field:
let parent = unsafe { *self.as_raw().parent };
> + if parent.is_null() {
> + None
> + } else {
> + // SAFETY: Since `parent` is not NULL, it must be a valid pointer to a `struct device`.
> + Some(unsafe { Self::as_ref(parent) })
> + }
> + }
> +
> /// Convert a raw C `struct device` pointer to a `&'a Device`.
> ///
> /// # Safety
> --
> 2.48.1
>
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH 1/4] rust: device: implement Device::parent()
2025-03-20 8:34 ` Alice Ryhl
@ 2025-03-20 8:40 ` Alice Ryhl
2025-03-20 12:19 ` Danilo Krummrich
0 siblings, 1 reply; 14+ messages in thread
From: Alice Ryhl @ 2025-03-20 8:40 UTC (permalink / raw)
To: Danilo Krummrich
Cc: bhelgaas, gregkh, rafael, ojeda, alex.gaynor, boqun.feng, gary,
bjorn3_gh, benno.lossin, a.hindborg, tmgross, linux-pci,
rust-for-linux, linux-kernel
On Thu, Mar 20, 2025 at 9:34 AM Alice Ryhl <aliceryhl@google.com> wrote:
>
> On Wed, Mar 19, 2025 at 09:30:25PM +0100, Danilo Krummrich wrote:
> > Device::parent() returns a reference to the device' parent device, if
> > any.
> >
> > Signed-off-by: Danilo Krummrich <dakr@kernel.org>
> > ---
> > rust/kernel/device.rs | 13 +++++++++++++
> > 1 file changed, 13 insertions(+)
> >
> > diff --git a/rust/kernel/device.rs b/rust/kernel/device.rs
> > index 21b343a1dc4d..76b341441f3f 100644
> > --- a/rust/kernel/device.rs
> > +++ b/rust/kernel/device.rs
> > @@ -65,6 +65,19 @@ pub(crate) fn as_raw(&self) -> *mut bindings::device {
> > self.0.get()
> > }
> >
> > + /// Returns a reference to the parent device, if any.
> > + pub fn parent<'a>(&self) -> Option<&'a Self> {
> > + // SAFETY: By the type invariant `self.as_raw()` is always valid.
> > + let parent = unsafe { *self.as_raw() }.parent;
>
> This means:
> 1. Copy the entire `struct device` onto the stack.
> 2. Read the `parent` field of the copy.
>
> Please write this instead to only read the `parent` field:
> let parent = unsafe { *self.as_raw().parent };
Sorry I meant (*self.as_raw()).parent
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH 1/4] rust: device: implement Device::parent()
2025-03-20 8:40 ` Alice Ryhl
@ 2025-03-20 12:19 ` Danilo Krummrich
2025-03-20 13:56 ` Alice Ryhl
0 siblings, 1 reply; 14+ messages in thread
From: Danilo Krummrich @ 2025-03-20 12:19 UTC (permalink / raw)
To: Alice Ryhl
Cc: bhelgaas, gregkh, rafael, ojeda, alex.gaynor, boqun.feng, gary,
bjorn3_gh, benno.lossin, a.hindborg, tmgross, linux-pci,
rust-for-linux, linux-kernel
On Thu, Mar 20, 2025 at 09:40:45AM +0100, Alice Ryhl wrote:
> On Thu, Mar 20, 2025 at 9:34 AM Alice Ryhl <aliceryhl@google.com> wrote:
> >
> > On Wed, Mar 19, 2025 at 09:30:25PM +0100, Danilo Krummrich wrote:
> > > Device::parent() returns a reference to the device' parent device, if
> > > any.
> > >
> > > Signed-off-by: Danilo Krummrich <dakr@kernel.org>
> > > ---
> > > rust/kernel/device.rs | 13 +++++++++++++
> > > 1 file changed, 13 insertions(+)
> > >
> > > diff --git a/rust/kernel/device.rs b/rust/kernel/device.rs
> > > index 21b343a1dc4d..76b341441f3f 100644
> > > --- a/rust/kernel/device.rs
> > > +++ b/rust/kernel/device.rs
> > > @@ -65,6 +65,19 @@ pub(crate) fn as_raw(&self) -> *mut bindings::device {
> > > self.0.get()
> > > }
> > >
> > > + /// Returns a reference to the parent device, if any.
> > > + pub fn parent<'a>(&self) -> Option<&'a Self> {
> > > + // SAFETY: By the type invariant `self.as_raw()` is always valid.
> > > + let parent = unsafe { *self.as_raw() }.parent;
> >
> > This means:
> > 1. Copy the entire `struct device` onto the stack.
> > 2. Read the `parent` field of the copy.
> >
> > Please write this instead to only read the `parent` field:
> > let parent = unsafe { *self.as_raw().parent };
>
> Sorry I meant (*self.as_raw()).parent
Good catch, thanks!
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH 1/4] rust: device: implement Device::parent()
2025-03-20 12:19 ` Danilo Krummrich
@ 2025-03-20 13:56 ` Alice Ryhl
0 siblings, 0 replies; 14+ messages in thread
From: Alice Ryhl @ 2025-03-20 13:56 UTC (permalink / raw)
To: Danilo Krummrich
Cc: bhelgaas, gregkh, rafael, ojeda, alex.gaynor, boqun.feng, gary,
bjorn3_gh, benno.lossin, a.hindborg, tmgross, linux-pci,
rust-for-linux, linux-kernel
On Thu, Mar 20, 2025 at 01:19:11PM +0100, Danilo Krummrich wrote:
> On Thu, Mar 20, 2025 at 09:40:45AM +0100, Alice Ryhl wrote:
> > On Thu, Mar 20, 2025 at 9:34 AM Alice Ryhl <aliceryhl@google.com> wrote:
> > >
> > > On Wed, Mar 19, 2025 at 09:30:25PM +0100, Danilo Krummrich wrote:
> > > > Device::parent() returns a reference to the device' parent device, if
> > > > any.
> > > >
> > > > Signed-off-by: Danilo Krummrich <dakr@kernel.org>
> > > > ---
> > > > rust/kernel/device.rs | 13 +++++++++++++
> > > > 1 file changed, 13 insertions(+)
> > > >
> > > > diff --git a/rust/kernel/device.rs b/rust/kernel/device.rs
> > > > index 21b343a1dc4d..76b341441f3f 100644
> > > > --- a/rust/kernel/device.rs
> > > > +++ b/rust/kernel/device.rs
> > > > @@ -65,6 +65,19 @@ pub(crate) fn as_raw(&self) -> *mut bindings::device {
> > > > self.0.get()
> > > > }
> > > >
> > > > + /// Returns a reference to the parent device, if any.
> > > > + pub fn parent<'a>(&self) -> Option<&'a Self> {
> > > > + // SAFETY: By the type invariant `self.as_raw()` is always valid.
> > > > + let parent = unsafe { *self.as_raw() }.parent;
> > >
> > > This means:
> > > 1. Copy the entire `struct device` onto the stack.
> > > 2. Read the `parent` field of the copy.
> > >
> > > Please write this instead to only read the `parent` field:
> > > let parent = unsafe { *self.as_raw().parent };
> >
> > Sorry I meant (*self.as_raw()).parent
>
> Good catch, thanks!
With that fixed you may add
Reviewed-by: Alice Ryhl <aliceryhl@google.com>
^ permalink raw reply [flat|nested] 14+ messages in thread
* [PATCH 2/4] rust: device: implement bus_type_raw()
2025-03-19 20:30 [PATCH 0/4] Implement TryFrom<&Device> for bus specific devices Danilo Krummrich
2025-03-19 20:30 ` [PATCH 1/4] rust: device: implement Device::parent() Danilo Krummrich
@ 2025-03-19 20:30 ` Danilo Krummrich
2025-03-20 8:36 ` Alice Ryhl
2025-03-19 20:30 ` [PATCH 3/4] rust: pci: impl TryFrom<&Device> for &pci::Device Danilo Krummrich
2025-03-19 20:30 ` [PATCH 4/4] rust: platform: impl TryFrom<&Device> for &platform::Device Danilo Krummrich
3 siblings, 1 reply; 14+ messages in thread
From: Danilo Krummrich @ 2025-03-19 20:30 UTC (permalink / raw)
To: bhelgaas, gregkh, rafael, ojeda, alex.gaynor, boqun.feng, gary,
bjorn3_gh, benno.lossin, a.hindborg, aliceryhl, tmgross
Cc: linux-pci, rust-for-linux, linux-kernel, Danilo Krummrich
Implement bus_type_raw(), which returns a raw pointer to the device'
struct bus_type.
This is useful for bus devices, to implement the following trait.
impl TryFrom<&Device> for &pci::Device
With this a caller can try to get the bus specific device from a generic
device in a safe way. try_from() will only succeed if the generic
device' bus type pointer matches the pointer of the bus' type.
Signed-off-by: Danilo Krummrich <dakr@kernel.org>
---
rust/kernel/device.rs | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/rust/kernel/device.rs b/rust/kernel/device.rs
index 76b341441f3f..e2de0efd4a27 100644
--- a/rust/kernel/device.rs
+++ b/rust/kernel/device.rs
@@ -78,6 +78,13 @@ pub fn parent<'a>(&self) -> Option<&'a Self> {
}
}
+ /// Returns a raw pointer to the device' bus type.
+ #[expect(unused)]
+ pub(crate) fn bus_type_raw(&self) -> *const bindings::bus_type {
+ // SAFETY: By the type invariants, `self.as_raw()` is a valid pointer to a `struct device`.
+ unsafe { (*self.as_raw()).bus }
+ }
+
/// Convert a raw C `struct device` pointer to a `&'a Device`.
///
/// # Safety
--
2.48.1
^ permalink raw reply related [flat|nested] 14+ messages in thread
* Re: [PATCH 2/4] rust: device: implement bus_type_raw()
2025-03-19 20:30 ` [PATCH 2/4] rust: device: implement bus_type_raw() Danilo Krummrich
@ 2025-03-20 8:36 ` Alice Ryhl
2025-03-20 12:00 ` Danilo Krummrich
0 siblings, 1 reply; 14+ messages in thread
From: Alice Ryhl @ 2025-03-20 8:36 UTC (permalink / raw)
To: Danilo Krummrich
Cc: bhelgaas, gregkh, rafael, ojeda, alex.gaynor, boqun.feng, gary,
bjorn3_gh, benno.lossin, a.hindborg, tmgross, linux-pci,
rust-for-linux, linux-kernel
On Wed, Mar 19, 2025 at 09:30:26PM +0100, Danilo Krummrich wrote:
> Implement bus_type_raw(), which returns a raw pointer to the device'
> struct bus_type.
>
> This is useful for bus devices, to implement the following trait.
>
> impl TryFrom<&Device> for &pci::Device
>
> With this a caller can try to get the bus specific device from a generic
> device in a safe way. try_from() will only succeed if the generic
> device' bus type pointer matches the pointer of the bus' type.
>
> Signed-off-by: Danilo Krummrich <dakr@kernel.org>
> ---
> rust/kernel/device.rs | 7 +++++++
> 1 file changed, 7 insertions(+)
>
> diff --git a/rust/kernel/device.rs b/rust/kernel/device.rs
> index 76b341441f3f..e2de0efd4a27 100644
> --- a/rust/kernel/device.rs
> +++ b/rust/kernel/device.rs
> @@ -78,6 +78,13 @@ pub fn parent<'a>(&self) -> Option<&'a Self> {
> }
> }
>
> + /// Returns a raw pointer to the device' bus type.
> + #[expect(unused)]
> + pub(crate) fn bus_type_raw(&self) -> *const bindings::bus_type {
> + // SAFETY: By the type invariants, `self.as_raw()` is a valid pointer to a `struct device`.
Is this field immutable?
> + unsafe { (*self.as_raw()).bus }
> + }
> +
> /// Convert a raw C `struct device` pointer to a `&'a Device`.
> ///
> /// # Safety
> --
> 2.48.1
>
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH 2/4] rust: device: implement bus_type_raw()
2025-03-20 8:36 ` Alice Ryhl
@ 2025-03-20 12:00 ` Danilo Krummrich
2025-03-20 13:56 ` Alice Ryhl
0 siblings, 1 reply; 14+ messages in thread
From: Danilo Krummrich @ 2025-03-20 12:00 UTC (permalink / raw)
To: Alice Ryhl
Cc: bhelgaas, gregkh, rafael, ojeda, alex.gaynor, boqun.feng, gary,
bjorn3_gh, benno.lossin, a.hindborg, tmgross, linux-pci,
rust-for-linux, linux-kernel
On Thu, Mar 20, 2025 at 08:36:02AM +0000, Alice Ryhl wrote:
> On Wed, Mar 19, 2025 at 09:30:26PM +0100, Danilo Krummrich wrote:
> > Implement bus_type_raw(), which returns a raw pointer to the device'
> > struct bus_type.
> >
> > This is useful for bus devices, to implement the following trait.
> >
> > impl TryFrom<&Device> for &pci::Device
> >
> > With this a caller can try to get the bus specific device from a generic
> > device in a safe way. try_from() will only succeed if the generic
> > device' bus type pointer matches the pointer of the bus' type.
> >
> > Signed-off-by: Danilo Krummrich <dakr@kernel.org>
> > ---
> > rust/kernel/device.rs | 7 +++++++
> > 1 file changed, 7 insertions(+)
> >
> > diff --git a/rust/kernel/device.rs b/rust/kernel/device.rs
> > index 76b341441f3f..e2de0efd4a27 100644
> > --- a/rust/kernel/device.rs
> > +++ b/rust/kernel/device.rs
> > @@ -78,6 +78,13 @@ pub fn parent<'a>(&self) -> Option<&'a Self> {
> > }
> > }
> >
> > + /// Returns a raw pointer to the device' bus type.
> > + #[expect(unused)]
> > + pub(crate) fn bus_type_raw(&self) -> *const bindings::bus_type {
> > + // SAFETY: By the type invariants, `self.as_raw()` is a valid pointer to a `struct device`.
>
> Is this field immutable?
dev->bus is a pointer to a const struct bus_type, yes.
>
> > + unsafe { (*self.as_raw()).bus }
> > + }
> > +
> > /// Convert a raw C `struct device` pointer to a `&'a Device`.
> > ///
> > /// # Safety
> > --
> > 2.48.1
> >
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH 2/4] rust: device: implement bus_type_raw()
2025-03-20 12:00 ` Danilo Krummrich
@ 2025-03-20 13:56 ` Alice Ryhl
0 siblings, 0 replies; 14+ messages in thread
From: Alice Ryhl @ 2025-03-20 13:56 UTC (permalink / raw)
To: Danilo Krummrich
Cc: bhelgaas, gregkh, rafael, ojeda, alex.gaynor, boqun.feng, gary,
bjorn3_gh, benno.lossin, a.hindborg, tmgross, linux-pci,
rust-for-linux, linux-kernel
On Thu, Mar 20, 2025 at 01:00:23PM +0100, Danilo Krummrich wrote:
> On Thu, Mar 20, 2025 at 08:36:02AM +0000, Alice Ryhl wrote:
> > On Wed, Mar 19, 2025 at 09:30:26PM +0100, Danilo Krummrich wrote:
> > > Implement bus_type_raw(), which returns a raw pointer to the device'
> > > struct bus_type.
> > >
> > > This is useful for bus devices, to implement the following trait.
> > >
> > > impl TryFrom<&Device> for &pci::Device
> > >
> > > With this a caller can try to get the bus specific device from a generic
> > > device in a safe way. try_from() will only succeed if the generic
> > > device' bus type pointer matches the pointer of the bus' type.
> > >
> > > Signed-off-by: Danilo Krummrich <dakr@kernel.org>
> > > ---
> > > rust/kernel/device.rs | 7 +++++++
> > > 1 file changed, 7 insertions(+)
> > >
> > > diff --git a/rust/kernel/device.rs b/rust/kernel/device.rs
> > > index 76b341441f3f..e2de0efd4a27 100644
> > > --- a/rust/kernel/device.rs
> > > +++ b/rust/kernel/device.rs
> > > @@ -78,6 +78,13 @@ pub fn parent<'a>(&self) -> Option<&'a Self> {
> > > }
> > > }
> > >
> > > + /// Returns a raw pointer to the device' bus type.
> > > + #[expect(unused)]
> > > + pub(crate) fn bus_type_raw(&self) -> *const bindings::bus_type {
> > > + // SAFETY: By the type invariants, `self.as_raw()` is a valid pointer to a `struct device`.
> >
> > Is this field immutable?
>
> dev->bus is a pointer to a const struct bus_type, yes.
With that added to the SAFETY comment to justify reading the field is
data-race free, you may add:
Reviewed-by: Alice Ryhl <aliceryhl@google.com>
^ permalink raw reply [flat|nested] 14+ messages in thread
* [PATCH 3/4] rust: pci: impl TryFrom<&Device> for &pci::Device
2025-03-19 20:30 [PATCH 0/4] Implement TryFrom<&Device> for bus specific devices Danilo Krummrich
2025-03-19 20:30 ` [PATCH 1/4] rust: device: implement Device::parent() Danilo Krummrich
2025-03-19 20:30 ` [PATCH 2/4] rust: device: implement bus_type_raw() Danilo Krummrich
@ 2025-03-19 20:30 ` Danilo Krummrich
2025-03-20 8:36 ` Alice Ryhl
2025-03-19 20:30 ` [PATCH 4/4] rust: platform: impl TryFrom<&Device> for &platform::Device Danilo Krummrich
3 siblings, 1 reply; 14+ messages in thread
From: Danilo Krummrich @ 2025-03-19 20:30 UTC (permalink / raw)
To: bhelgaas, gregkh, rafael, ojeda, alex.gaynor, boqun.feng, gary,
bjorn3_gh, benno.lossin, a.hindborg, aliceryhl, tmgross
Cc: linux-pci, rust-for-linux, linux-kernel, Danilo Krummrich
Implement TryFrom<&device::Device> for &Device.
This allows us to get a &pci::Device from a generic &Device in a safe
way; the conversion fails if the device' bus type does not match with
the PCI bus type.
Signed-off-by: Danilo Krummrich <dakr@kernel.org>
---
rust/kernel/device.rs | 1 -
rust/kernel/pci.rs | 21 +++++++++++++++++++--
2 files changed, 19 insertions(+), 3 deletions(-)
diff --git a/rust/kernel/device.rs b/rust/kernel/device.rs
index e2de0efd4a27..34244c139afc 100644
--- a/rust/kernel/device.rs
+++ b/rust/kernel/device.rs
@@ -79,7 +79,6 @@ pub fn parent<'a>(&self) -> Option<&'a Self> {
}
/// Returns a raw pointer to the device' bus type.
- #[expect(unused)]
pub(crate) fn bus_type_raw(&self) -> *const bindings::bus_type {
// SAFETY: By the type invariants, `self.as_raw()` is a valid pointer to a `struct device`.
unsafe { (*self.as_raw()).bus }
diff --git a/rust/kernel/pci.rs b/rust/kernel/pci.rs
index 22a32172b108..b717bcdb9abf 100644
--- a/rust/kernel/pci.rs
+++ b/rust/kernel/pci.rs
@@ -6,7 +6,7 @@
use crate::{
alloc::flags::*,
- bindings, device,
+ bindings, container_of, device,
device_id::RawDeviceId,
devres::Devres,
driver,
@@ -20,7 +20,7 @@
use core::{
marker::PhantomData,
ops::Deref,
- ptr::{addr_of_mut, NonNull},
+ ptr::{addr_of, addr_of_mut, NonNull},
};
use kernel::prelude::*;
@@ -466,6 +466,23 @@ fn as_ref(&self) -> &device::Device {
}
}
+impl TryFrom<&device::Device> for &Device {
+ type Error = kernel::error::Error;
+
+ fn try_from(dev: &device::Device) -> Result<Self, Self::Error> {
+ if dev.bus_type_raw() != addr_of!(bindings::pci_bus_type) {
+ return Err(EINVAL);
+ }
+
+ // SAFETY: We've just verified that the bus type of `dev` equals `bindings::pci_bus_type`,
+ // hence `dev` must be embedded in a valid `struct pci_dev`.
+ let pdev = unsafe { container_of!(dev.as_raw(), bindings::pci_dev, dev) };
+
+ // SAFETY: `pdev` is a valid pointer to a `struct pci_dev`.
+ Ok(unsafe { &*pdev.cast() })
+ }
+}
+
// SAFETY: A `Device` is always reference-counted and can be released from any thread.
unsafe impl Send for Device {}
--
2.48.1
^ permalink raw reply related [flat|nested] 14+ messages in thread
* Re: [PATCH 3/4] rust: pci: impl TryFrom<&Device> for &pci::Device
2025-03-19 20:30 ` [PATCH 3/4] rust: pci: impl TryFrom<&Device> for &pci::Device Danilo Krummrich
@ 2025-03-20 8:36 ` Alice Ryhl
0 siblings, 0 replies; 14+ messages in thread
From: Alice Ryhl @ 2025-03-20 8:36 UTC (permalink / raw)
To: Danilo Krummrich
Cc: bhelgaas, gregkh, rafael, ojeda, alex.gaynor, boqun.feng, gary,
bjorn3_gh, benno.lossin, a.hindborg, tmgross, linux-pci,
rust-for-linux, linux-kernel
On Wed, Mar 19, 2025 at 09:30:27PM +0100, Danilo Krummrich wrote:
> Implement TryFrom<&device::Device> for &Device.
>
> This allows us to get a &pci::Device from a generic &Device in a safe
> way; the conversion fails if the device' bus type does not match with
> the PCI bus type.
>
> Signed-off-by: Danilo Krummrich <dakr@kernel.org>
Reviewed-by: Alice Ryhl <aliceryhl@google.com>
^ permalink raw reply [flat|nested] 14+ messages in thread
* [PATCH 4/4] rust: platform: impl TryFrom<&Device> for &platform::Device
2025-03-19 20:30 [PATCH 0/4] Implement TryFrom<&Device> for bus specific devices Danilo Krummrich
` (2 preceding siblings ...)
2025-03-19 20:30 ` [PATCH 3/4] rust: pci: impl TryFrom<&Device> for &pci::Device Danilo Krummrich
@ 2025-03-19 20:30 ` Danilo Krummrich
2025-03-20 8:37 ` Alice Ryhl
3 siblings, 1 reply; 14+ messages in thread
From: Danilo Krummrich @ 2025-03-19 20:30 UTC (permalink / raw)
To: bhelgaas, gregkh, rafael, ojeda, alex.gaynor, boqun.feng, gary,
bjorn3_gh, benno.lossin, a.hindborg, aliceryhl, tmgross
Cc: linux-pci, rust-for-linux, linux-kernel, Danilo Krummrich
Implement TryFrom<&device::Device> for &Device.
This allows us to get a &platform::Device from a generic &Device in a safe
way; the conversion fails if the device' bus type does not match with
the platform bus type.
Signed-off-by: Danilo Krummrich <dakr@kernel.org>
---
rust/kernel/platform.rs | 22 ++++++++++++++++++++--
1 file changed, 20 insertions(+), 2 deletions(-)
diff --git a/rust/kernel/platform.rs b/rust/kernel/platform.rs
index e37531bae8e9..c17fc6e7c596 100644
--- a/rust/kernel/platform.rs
+++ b/rust/kernel/platform.rs
@@ -5,7 +5,7 @@
//! C header: [`include/linux/platform_device.h`](srctree/include/linux/platform_device.h)
use crate::{
- bindings, device, driver,
+ bindings, container_of, device, driver,
error::{to_result, Result},
of,
prelude::*,
@@ -17,7 +17,7 @@
use core::{
marker::PhantomData,
ops::Deref,
- ptr::{addr_of_mut, NonNull},
+ ptr::{addr_of, addr_of_mut, NonNull},
};
/// An adapter for the registration of platform drivers.
@@ -234,6 +234,24 @@ fn as_ref(&self) -> &device::Device {
}
}
+impl TryFrom<&device::Device> for &Device {
+ type Error = kernel::error::Error;
+
+ fn try_from(dev: &device::Device) -> Result<Self, Self::Error> {
+ if dev.bus_type_raw() != addr_of!(bindings::platform_bus_type) {
+ return Err(EINVAL);
+ }
+
+ // SAFETY: We've just verified that the bus type of `dev` equals
+ // `bindings::platform_bus_type`, hence `dev` must be embedded in a valid
+ // `struct platform_device`.
+ let pdev = unsafe { container_of!(dev.as_raw(), bindings::platform_device, dev) };
+
+ // SAFETY: `pdev` is a valid pointer to a `struct platform_device`.
+ Ok(unsafe { &*pdev.cast() })
+ }
+}
+
// SAFETY: A `Device` is always reference-counted and can be released from any thread.
unsafe impl Send for Device {}
--
2.48.1
^ permalink raw reply related [flat|nested] 14+ messages in thread
* Re: [PATCH 4/4] rust: platform: impl TryFrom<&Device> for &platform::Device
2025-03-19 20:30 ` [PATCH 4/4] rust: platform: impl TryFrom<&Device> for &platform::Device Danilo Krummrich
@ 2025-03-20 8:37 ` Alice Ryhl
0 siblings, 0 replies; 14+ messages in thread
From: Alice Ryhl @ 2025-03-20 8:37 UTC (permalink / raw)
To: Danilo Krummrich
Cc: bhelgaas, gregkh, rafael, ojeda, alex.gaynor, boqun.feng, gary,
bjorn3_gh, benno.lossin, a.hindborg, tmgross, linux-pci,
rust-for-linux, linux-kernel
On Wed, Mar 19, 2025 at 09:30:28PM +0100, Danilo Krummrich wrote:
> Implement TryFrom<&device::Device> for &Device.
>
> This allows us to get a &platform::Device from a generic &Device in a safe
> way; the conversion fails if the device' bus type does not match with
> the platform bus type.
>
> Signed-off-by: Danilo Krummrich <dakr@kernel.org>
Reviewed-by: Alice Ryhl <aliceryhl@google.com>
^ permalink raw reply [flat|nested] 14+ messages in thread