From: sashiko-bot@kernel.org
To: "Danilo Krummrich" <dakr@kernel.org>
Cc: ojeda@kernel.org, linux-pci@vger.kernel.org
Subject: Re: [PATCH v4 21/27] rust: types: add `ForLt` trait for higher-ranked lifetime support
Date: Fri, 22 May 2026 00:31:06 +0000 [thread overview]
Message-ID: <20260522003107.235C61F000E9@smtp.kernel.org> (raw)
In-Reply-To: <20260521233501.1191842-22-dakr@kernel.org>
Thank you for your contribution! Sashiko AI review found 4 potential issue(s) to consider:
- [Critical] The `ForLt!` macro's covariance check can be bypassed when a lifetime is hidden inside a nested macro invocation, leading to unsound implementations of the `ForLt` trait.
- [Critical] The safety architecture of `ForLt` is flawed because it allows safe code to bypass the macro's covariance proofs entirely, directly leading to soundness vulnerabilities.
- [Low] Incorrect usage of `#[inline(always)]` on `cast_ref`.
- [Low] `expand_elided_lifetime` fails to replace elided lifetimes (`'_`) hidden inside macro invocations.
--
commit a372a3dda5030ca04860c4057bb0215647faa34b
Author: Gary Guo <gary@garyguo.net>
rust: types: add ForLt trait for higher-ranked lifetime support
This commit introduces the ForLt trait and a corresponding macro to
support types that are generic over lifetimes. The macro attempts to
syntactically prove covariance or emits compiler checks to ensure the
soundness of lifetime shortening casts.
Link: https://docs.rs/higher-kinded-types/ [1]
> diff --git a/rust/kernel/types/for_lt.rs b/rust/kernel/types/for_lt.rs
> new file mode 100644
> --- /dev/null
> +++ b/rust/kernel/types/for_lt.rs
[ ... ]
> +pub unsafe trait ForLt {
> + /// The type parameterized by the lifetime.
> + type Of<'a>: 'a;
> +
> + /// Cast a reference to a shorter lifetime.
> + #[inline(always)]
> + fn cast_ref<'r, 'short: 'r, 'long: 'short>(long: &'r Self::Of<'long>) -> &'r Self::Of<'short> {
[Severity: Low]
This isn't a bug, but according to the rust subsystem coding guidelines,
#[inline(always)] should only be used for functions using build_assert!()
that depend on function parameters. Should this be changed to #[inline]?
> + // SAFETY: This is sound as this trait guarantees covariance.
> + unsafe { core::mem::transmute(long) }
> + }
> +}
[ ... ]
> +#[doc(hidden)]
> +pub struct UnsafeForLtImpl<T: ?Sized, WF, const N: usize>(PhantomData<(WF, T)>);
> +
> +// This is a helper trait for implementation `ForLt` to be able to use HRTB.
> +#[doc(hidden)]
> +pub trait WithLt<'a> {
> + type Of: 'a;
> +}
> +
> +// SAFETY: In `ForLt!` macro, a covariance proof is generated when naming `UnsafeForLtImpl`
> +// and it will fail to evaluate if the type is not covariant.
> +unsafe impl<T: ?Sized + for<'a> WithLt<'a>, WF> ForLt for UnsafeForLtImpl<T, WF, 0> {
> + type Of<'a> = <T as WithLt<'a>>::Of;
> +}
[Severity: Critical]
Can safe downstream code implement the public WithLt trait for an
invariant type (like Cell<&'a u32>), and then name
<UnsafeForLtImpl<MyStruct, (), 0> as ForLt> to access ForLt::cast_ref?
If so, does this allow shortening lifetimes of invariant types entirely
in safe code, bypassing the macro's covariance checks and breaking
safety guarantees?
> diff --git a/rust/macros/for_lt.rs b/rust/macros/for_lt.rs
> new file mode 100644
> --- /dev/null
> +++ b/rust/macros/for_lt.rs
[ ... ]
> + fn expand_elided_lifetime(&self, explicit_lt: &Lifetime) -> Type {
> + struct ElidedLifetimeExpander<'a>(&'a Lifetime);
> +
> + impl VisitMut for ElidedLifetimeExpander<'_> {
> + fn visit_lifetime_mut(&mut self, lifetime: &mut Lifetime) {
> + // Expand explicit `'_`
> + if lifetime.ident == "_" {
> + *lifetime = self.0.clone();
> + }
> + }
> +
> + fn visit_type_reference_mut(&mut self, reference: &mut syn::TypeReference) {
> + syn::visit_mut::visit_type_reference_mut(self, reference);
> +
> + if reference.lifetime.is_none() {
> + reference.lifetime = Some(self.0.clone());
> + }
> + }
> + }
> +
> + let mut ret = self.clone();
> + ElidedLifetimeExpander(explicit_lt).visit_type_mut(&mut ret);
> + ret
> + }
[Severity: Low]
If an elided lifetime is passed inside a macro invocation, such as
ForLt!(Wrapper<SomeMacro!(<'_>)>), does VisitMut fail to traverse the
TokenStream inside the Type::Macro?
Will this leave the elided lifetime unmodified and cause a missing
lifetime specifier compiler error?
[ ... ]
> + fn prove(&mut self, ty: &'a Type) {
> + match ty {
[ ... ]
> + // Macro invocations are opaque to proc macros; conservatively require
> + // a compiler proof since we cannot determine lifetime usage.
> + Type::Macro(_) => self.1.push(ty),
> +
> + // No mention of lifetime at all, no need to perform compiler check.
> + ty if !ty.has_lifetime(self.0) => (),
> +
> + // Otherwise, we need to emit checks so that compiler can determine if the types are
> + // actually covariant.
> + ty => self.1.push(ty),
> + }
> + }
[Severity: Critical]
If a lifetime is hidden within a macro invocation that is nested inside
another type, for example ForLt!(for<'a> Cell<Mac!('a)>), will
has_lifetime falsely return false because it doesn't traverse into
the macro's TokenStream?
Since the Type::Macro arm only matches top-level macros, does the nested
Type::Path (Cell) fall through to the ty if !ty.has_lifetime(self.0) arm?
If so, does this bypass the compiler-assisted covariance proof and
allow unsound lifetime shortening casts?
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260521233501.1191842-1-dakr@kernel.org?part=21
next prev parent reply other threads:[~2026-05-22 0:31 UTC|newest]
Thread overview: 63+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-05-21 23:34 [PATCH v4 00/27] rust: device: Higher-Ranked Lifetime Types for device drivers Danilo Krummrich
2026-05-21 23:34 ` [PATCH v4 01/27] rust: alloc: remove `'static` bound on `ForeignOwnable` Danilo Krummrich
2026-05-22 0:13 ` sashiko-bot
2026-05-21 23:34 ` [PATCH v4 02/27] rust: driver: move 'static bounds to constructor Danilo Krummrich
2026-05-21 23:34 ` [PATCH v4 03/27] rust: driver: decouple driver private data from driver type Danilo Krummrich
2026-05-21 23:56 ` sashiko-bot
2026-05-21 23:34 ` [PATCH v4 04/27] rust: driver core: drop drvdata before devres release Danilo Krummrich
2026-05-22 0:10 ` sashiko-bot
2026-05-21 23:34 ` [PATCH v4 05/27] rust: pci: implement Sync for Device<Bound> Danilo Krummrich
2026-05-21 23:34 ` [PATCH v4 06/27] rust: platform: " Danilo Krummrich
2026-05-21 23:34 ` [PATCH v4 07/27] rust: auxiliary: " Danilo Krummrich
2026-05-21 23:34 ` [PATCH v4 08/27] rust: usb: " Danilo Krummrich
2026-05-22 0:16 ` sashiko-bot
2026-05-21 23:34 ` [PATCH v4 09/27] rust: device: " Danilo Krummrich
2026-05-21 23:34 ` [PATCH v4 10/27] rust: device: make Core and CoreInternal lifetime-parameterized Danilo Krummrich
2026-05-25 4:21 ` Eliot Courtney
2026-05-25 11:02 ` Alexandre Courbot
2026-05-21 23:34 ` [PATCH v4 11/27] rust: pci: make Driver trait lifetime-parameterized Danilo Krummrich
2026-05-22 0:14 ` sashiko-bot
2026-05-21 23:34 ` [PATCH v4 12/27] rust: platform: " Danilo Krummrich
2026-05-21 23:34 ` [PATCH v4 13/27] rust: auxiliary: " Danilo Krummrich
2026-05-21 23:34 ` [PATCH v4 14/27] rust: usb: " Danilo Krummrich
2026-05-22 0:23 ` sashiko-bot
2026-05-25 4:31 ` Eliot Courtney
2026-05-21 23:34 ` [PATCH v4 15/27] rust: i2c: " Danilo Krummrich
2026-05-21 23:34 ` [PATCH v4 16/27] rust: driver: update module documentation for GAT-based Data type Danilo Krummrich
2026-05-21 23:34 ` [PATCH v4 17/27] rust: pci: make Bar lifetime-parameterized Danilo Krummrich
2026-05-22 0:49 ` sashiko-bot
2026-05-25 4:37 ` Eliot Courtney
2026-05-25 11:40 ` Gary Guo
2026-05-25 12:05 ` Danilo Krummrich
2026-05-25 11:10 ` Alexandre Courbot
2026-05-25 11:12 ` Alexandre Courbot
2026-05-21 23:34 ` [PATCH v4 18/27] rust: io: make IoMem and ExclusiveIoMem lifetime-parameterized Danilo Krummrich
2026-05-22 0:45 ` sashiko-bot
2026-05-25 13:10 ` Alexandre Courbot
2026-05-21 23:34 ` [PATCH v4 19/27] samples: rust: rust_driver_pci: use HRT lifetime for Bar Danilo Krummrich
2026-05-22 1:27 ` sashiko-bot
2026-05-25 13:55 ` Alexandre Courbot
2026-05-21 23:34 ` [PATCH v4 20/27] gpu: nova-core: separate driver type from driver data Danilo Krummrich
2026-05-25 4:40 ` Eliot Courtney
2026-05-25 14:11 ` Alexandre Courbot
2026-05-21 23:34 ` [PATCH v4 21/27] rust: types: add `ForLt` trait for higher-ranked lifetime support Danilo Krummrich
2026-05-22 0:31 ` sashiko-bot [this message]
2026-05-23 15:46 ` Danilo Krummrich
2026-05-25 12:31 ` Eliot Courtney
2026-05-21 23:34 ` [PATCH v4 22/27] rust: auxiliary: generalize Registration over ForLt Danilo Krummrich
2026-05-22 0:49 ` sashiko-bot
2026-05-25 6:03 ` Eliot Courtney
2026-05-25 14:42 ` Alexandre Courbot
2026-05-21 23:34 ` [PATCH v4 23/27] samples: rust: rust_driver_auxiliary: showcase lifetime-bound registration data Danilo Krummrich
2026-05-25 14:48 ` Alexandre Courbot
2026-05-21 23:34 ` [PATCH REF v4 24/27] gpu: nova-core: use lifetime for Bar Danilo Krummrich
2026-05-22 1:28 ` sashiko-bot
2026-05-26 2:10 ` Alexandre Courbot
2026-05-26 5:48 ` Alexandre Courbot
2026-05-21 23:34 ` [PATCH REF v4 25/27] gpu: nova-core: unregister sysmem flush page from Drop Danilo Krummrich
2026-05-22 0:47 ` sashiko-bot
2026-05-21 23:34 ` [PATCH REF v4 26/27] gpu: nova-core: replace ARef<Device> with &'bound Device in SysmemFlush Danilo Krummrich
2026-05-22 0:46 ` sashiko-bot
2026-05-21 23:34 ` [PATCH REF v4 27/27] gpu: drm: tyr: use lifetime for IoMem Danilo Krummrich
2026-05-22 0:42 ` sashiko-bot
2026-05-22 10:14 ` [PATCH v4 00/27] rust: device: Higher-Ranked Lifetime Types for device drivers Greg KH
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=20260522003107.235C61F000E9@smtp.kernel.org \
--to=sashiko-bot@kernel.org \
--cc=dakr@kernel.org \
--cc=linux-pci@vger.kernel.org \
--cc=ojeda@kernel.org \
--cc=sashiko-reviews@lists.linux.dev \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.