rust-for-linux.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: "Maíra Canal" <mcanal@igalia.com>
To: Alice Ryhl <aliceryhl@google.com>
Cc: "Asahi Lina" <lina@asahilina.net>,
	"Miguel Ojeda" <ojeda@kernel.org>,
	"Alex Gaynor" <alex.gaynor@gmail.com>,
	"Wedson Almeida Filho" <wedsonaf@gmail.com>,
	"Boqun Feng" <boqun.feng@gmail.com>,
	"Gary Guo" <gary@garyguo.net>,
	"Björn Roy Baron" <bjorn3_gh@protonmail.com>,
	"Benno Lossin" <benno.lossin@proton.me>,
	"Andreas Hindborg" <a.hindborg@samsung.com>,
	"Greg Kroah-Hartman" <gregkh@linuxfoundation.org>,
	"Matt Gilbride" <mattgilbride@google.com>,
	"Lyude Paul" <lyude@redhat.com>,
	"Danilo Krummrich" <dakr@redhat.com>,
	rust-for-linux@vger.kernel.org, kernel-dev@igalia.com,
	"Léo Lanteri Thauvin" <leseulartichaut@gmail.com>,
	"Wedson Almeida Filho" <wedsonaf@google.com>
Subject: Re: [PATCH] rust: Add `container_of` and `offset_of` macros
Date: Mon, 19 Feb 2024 18:57:26 -0300	[thread overview]
Message-ID: <83571d1e-5710-47d6-9a6c-2a0bb5ab5e5a@igalia.com> (raw)
In-Reply-To: <CAH5fLggPRcPc-5C8JY5FR7jQMbdNoc89EU0_QAqhG=6HiySZ=w@mail.gmail.com>

Hi Alice,

On 2/19/24 06:49, Alice Ryhl wrote:
> On Sat, Feb 17, 2024 at 4:33 PM Maíra Canal <mcanal@igalia.com> wrote:
>>
>> From: Asahi Lina <lina@asahilina.net>
>>
>> Add Rust counterparts to these C macros. `container_of` is useful for C
>> struct subtyping, to recover the original pointer to the container
>> structure. `offset_of` is useful for struct-relative addressing.
>>
>> Co-authored-by: Miguel Ojeda <ojeda@kernel.org>
>> Signed-off-by: Miguel Ojeda <ojeda@kernel.org>
>> Co-authored:by: Léo Lanteri Thauvin <leseulartichaut@gmail.com>
>> Signed-off-by: Léo Lanteri Thauvin <leseulartichaut@gmail.com>
>> Co-authored-by: Wedson Almeida Filho <wedsonaf@google.com>
>> Signed-off-by: Wedson Almeida Filho <wedsonaf@google.com>
>> Signed-off-by: Asahi Lina <lina@asahilina.net>
>> Signed-off-by: Maíra Canal <mcanal@igalia.com>
>> ---
>>
>> Hi,
>>
>> `container_of` is a essential macro to build any sort of driver in the
>> Linux Kernel. Therefore, we need a good and reliable implementation of
>> this macro for the Rust abstractions.
>>
>> Although I checked the version sent by Matt [1], I don't really like the
>> fact that such an essential part of the foundation of any driver would
>> be an unsafe macro. Therefore, I propose this alternative to Matt's
>> implementation, which is Lina's implementation that it is actually safe.
> 
> Well, the addr_of macro in the standard library, which performs the
> opposite operation is also unsafe. So I don't think that having it be
> unsafe is that unreasonable.
> 
>> `container_of` is a dependency for the rustgem driver and this is part
>> of my current efforts to upstream the driver.
>>
>> [1] https://lore.kernel.org/rust-for-linux/20240205-b4-rbtree-v1-1-995e3eee38c0@google.com/
>>
>> Best Regards,
>> - Maíra
>>
>>   rust/kernel/lib.rs | 69 ++++++++++++++++++++++++++++++++++++++++++++++
>>   1 file changed, 69 insertions(+)
>>
>> diff --git a/rust/kernel/lib.rs b/rust/kernel/lib.rs
>> index 5a8594d2f5db..7ae89c676800 100644
>> --- a/rust/kernel/lib.rs
>> +++ b/rust/kernel/lib.rs
>> @@ -103,3 +103,72 @@ fn panic(info: &core::panic::PanicInfo<'_>) -> ! {
>>       // SAFETY: FFI call.
>>       unsafe { bindings::BUG() };
>>   }
>> +
>> +/// Calculates the offset of a field from the beginning of the struct it belongs to.
>> +///
>> +/// # Examples
>> +///
>> +/// ```rust
>> +/// use kernel::prelude::*;
>> +/// use kernel::offset_of;
>> +/// struct Test {
>> +///     a: u64,
>> +///     b: u32,
>> +/// }
>> +///
>> +/// assert_eq!(offset_of!(Test, b), 8);
>> +/// ```
>> +#[macro_export]
>> +macro_rules! offset_of {
>> +    ($type:ty, $($f:tt)*) => {{
>> +        let tmp = core::mem::MaybeUninit::<$type>::uninit();
>> +        let outer = tmp.as_ptr();
>> +        // To avoid warnings when nesting `unsafe` blocks.
>> +        #[allow(unused_unsafe)]
>> +        // SAFETY: The pointer is valid and aligned, just not initialised; `addr_of` ensures that
>> +        // we don't actually read from `outer` (which would be UB) nor create an intermediate
>> +        // reference.
>> +        let inner = unsafe { core::ptr::addr_of!((*outer).$($f)*) } as *const u8;
>> +        // To avoid warnings when nesting `unsafe` blocks.
>> +        #[allow(unused_unsafe)]
>> +        // SAFETY: The two pointers are within the same allocation block.
>> +        unsafe { inner.offset_from(outer as *const u8) }
>> +    }}
>> +}
> 
> The offset_of macro is already available through the standard library.
> You do not need to add it here.
> 
>> +/// Produces a pointer to an object from a pointer to one of its fields.
>> +///
>> +/// # Safety
>> +///
>> +/// Callers must ensure that the pointer to the field is in fact a pointer to the specified field,
>> +/// as opposed to a pointer to another object of the same type. If this condition is not met,
>> +/// any dereference of the resulting pointer is UB.
>> +///
>> +/// # Examples
>> +///
>> +/// ```rust
>> +/// use kernel::container_of;
>> +/// struct Test {
>> +///     a: u64,
>> +///     b: u32,
>> +/// }
>> +///
>> +/// let test = Test { a: 10, b: 20 };
>> +/// let b_ptr = &test.b;
>> +/// let test_alias = container_of!(b_ptr, Test, b);
>> +/// assert!(core::ptr::eq(&test, test_alias));
>> +/// ```
>> +#[macro_export]
>> +macro_rules! container_of {
>> +    ($ptr:expr, $type:ty, $($f:tt)*) => {{
>> +        let ptr = $ptr as *const _ as *const u8;
>> +        let offset = $crate::offset_of!($type, $($f)*);
>> +        let outer = ptr.wrapping_offset(-offset) as *const $type;
>> +        // SAFETY: The pointer is valid and aligned, just not initialised; `addr_of` ensures that
>> +        // we don't actually read from `outer` (which would be UB) nor create an intermediate
>> +        // reference. The two pointers are within the same allocation block.
>> +        let inner = unsafe { core::ptr::addr_of!((*outer).$($f)*) };
> 
> If your macro is not unsafe, then this line is incorrect. I could call
> `container_of!` with some random dangling pointer, and then it would
> use addr_of! on that pointer, which is not okay because addr_of
> assumes that the pointer is in-bounds of an allocation both before and
> after the offset operation.
> 

Thanks for your explanation, I haven't thought through this point of
view. Anyway, any chance we could land the `container_of!` patch as soon
as possible? It would be nice to have a common understanding of this 
fundamental macro. I would like to send some patches with the DMA fences
abstraction, but I would need `container_of!`.

Best Regards,
- Maíra

> Alice

  reply	other threads:[~2024-02-19 21:58 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <CGME20240217153356eucas1p17c926b49da33a438d286ebb5c1a918c9@eucas1p1.samsung.com>
2024-02-17 15:32 ` [PATCH] rust: Add `container_of` and `offset_of` macros Maíra Canal
2024-02-18 17:10   ` Martin Rodriguez Reboredo
2024-02-19  9:49   ` Alice Ryhl
2024-02-19 21:57     ` Maíra Canal [this message]
2024-02-19 22:04       ` Alice Ryhl
2024-02-20 15:54       ` Miguel Ojeda
2024-02-21 11:27         ` Maíra Canal
2024-02-25 20:30           ` Miguel Ojeda
2024-02-19  9:51   ` Andreas Hindborg

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=83571d1e-5710-47d6-9a6c-2a0bb5ab5e5a@igalia.com \
    --to=mcanal@igalia.com \
    --cc=a.hindborg@samsung.com \
    --cc=alex.gaynor@gmail.com \
    --cc=aliceryhl@google.com \
    --cc=benno.lossin@proton.me \
    --cc=bjorn3_gh@protonmail.com \
    --cc=boqun.feng@gmail.com \
    --cc=dakr@redhat.com \
    --cc=gary@garyguo.net \
    --cc=gregkh@linuxfoundation.org \
    --cc=kernel-dev@igalia.com \
    --cc=leseulartichaut@gmail.com \
    --cc=lina@asahilina.net \
    --cc=lyude@redhat.com \
    --cc=mattgilbride@google.com \
    --cc=ojeda@kernel.org \
    --cc=rust-for-linux@vger.kernel.org \
    --cc=wedsonaf@gmail.com \
    --cc=wedsonaf@google.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).