-
Notifications
You must be signed in to change notification settings - Fork 105
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support deriving traits on data-carrying enums #879
Conversation
7dde5f6
to
a9842ca
Compare
07a28f4
to
bcf2ffa
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #879 +/- ##
==========================================
+ Coverage 87.91% 88.00% +0.09%
==========================================
Files 16 16
Lines 5757 5801 +44
==========================================
+ Hits 5061 5105 +44
Misses 696 696 ☔ View full report in Codecov by Sentry. |
Blocked on #1515 so we can limit explicit enum discriminants to non-MSRV. |
127a90a
to
d6f8386
Compare
d6f8386
to
fae2247
Compare
36912cc
to
bd13cf5
Compare
034b168
to
811f96f
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just reviewing zerocopy-derive/src/enums.rs
for now. I'll follow up with reviews of other files.
Could you take a quick look at #367 and see if it'd be easy to add to this PR? If it is, it'd be great to have at least one example output that we can assert against since there are so many moving pieces here.
I'm seeing compilation errors on this code: use zerocopy::*;
use zerocopy_derive::*;
#[derive(KnownLayout, TryFromBytes, Immutable)]
#[repr(u8)]
enum MyEnum {
UnitLike,
StructLike {
a: u8,
b: u16,
},
TupleLike(
bool,
char,
),
}
fn main() {} The error is:
|
This PR is hefty, in part, because it generates ad-hoc Concretely, I believe we could expand this: #[derive(KnownLayout, Immutable)]
#[repr(u8)]
enum MyEnum<X, Y> {
UnitLikeVariant,
StructLikeVariant {
a: u8,
b: X,
},
TupleLikeVariant(
bool,
Y,
),
} ...into this: unsafe impl<X, Y> ::zerocopy::TryFromBytes for MyEnum<X, Y>
where
u8: ::zerocopy::TryFromBytes,
X: ::zerocopy::TryFromBytes,
bool: ::zerocopy::TryFromBytes,
Y: ::zerocopy::TryFromBytes,
{
fn only_derive_is_allowed_to_implement_this_trait() {}
fn is_bit_valid<A>(
mut candidate: ::zerocopy::Maybe<'_, Self, A>,
) -> ::zerocopy::macro_util::core_reexport::primitive::bool
where
A: ::zerocopy::pointer::invariant::Aliasing
+ ::zerocopy::pointer::invariant::AtLeast<
::zerocopy::pointer::invariant::Shared,
>,
{
mod tags {
#[repr(u8)]
#[allow(dead_code)]
enum Variants {
UnitLikeVariant /* = an explicit discr, if provided */,
StructLikeVariant,
TupleLikeVariant,
}
type Tag = ::zerocopy::macro_util::core_reexport::primitive::u8;
/// Has the same bit-validity as the tag of
/// `Self::UnitLikeVariant`.
#[derive(::zerocopy_derive::TryFromBytes)] // delegate!
#[repr(u8)]
pub(super) enum UnitLikeVariant {
Tag = Variants::UnitLikeVariant as Tag,
}
/// Has the same bit-validity as the tag of
/// `Self::StructLikeVariant`.
#[derive(::zerocopy_derive::TryFromBytes)] // delegate!
#[repr(u8)]
pub(super) enum StructLikeVariant {
Tag = Variants::StructLikeVariant as Tag,
}
/// Has the same bit-validity as the tag of
/// `Self::TupleLikeVariant`.
#[derive(::zerocopy_derive::TryFromBytes)] // delegate!
#[repr(u8)]
pub(super) enum TupleLikeVariant {
Tag = Variants::TupleLikeVariant as Tag,
}
}
use ::zerocopy::macro_util::{Variant, core_reexport::marker::PhantomData};
/// Has the same layout (including bit validity) as
/// `Self::UnitLikeVariant`.
#[derive(::zerocopy_derive::TryFromBytes)] // delegate!
#[repr(C)]
struct UnitLikeVariant<X,Y>(
tags::UnitLikeVariant,
PhantomData<(X, Y)>
);
// SAFETY: The layout (including bit validity) of
// `UnitLikeVariant<X,Y>` is identical to that of
// `MyEnum<X, Y>::UnitLikeVariant`.
unsafe impl<X, Y> Variant<MyEnum<X, Y>> for UnitLikeVariant<X,Y>
{}
/// Has the same layout (including bit validity) as
/// `Self::StructLikeVariant`.
#[derive(::zerocopy_derive::TryFromBytes)] // delegate!
#[repr(C)]
struct StructLikeVariant<X,Y>(
tags::StructLikeVariant,
u8,
X,
PhantomData<(X, Y)>
);
// SAFETY: The layout (including bit validity) of
// `StructLikeVariant<X,Y>` is identical to that of
// `MyEnum<X, Y>::StructLikeVariant`.
unsafe impl<X, Y> Variant<MyEnum<X, Y>> for StructLikeVariant<X,Y>
{}
/// Has the same layout (including bit validity) as
/// `Self::TupleLikeVariant`.
#[derive(::zerocopy_derive::TryFromBytes)] // delegate!
#[repr(C)]
struct TupleLikeVariant<X, Y>(
tags::TupleLikeVariant,
bool,
Y,
PhantomData<(X, Y)>
);
// SAFETY: The layout (including bit validity) of
// `TupleLikeVariant<X,Y>` is identical to that of
// `MyEnum<X, Y>::TupleLikeVariant`.
unsafe impl<X, Y> Variant<MyEnum<X, Y>> for TupleLikeVariant<X,Y>
{}
false
|| <UnitLikeVariant<X, Y> as Variant<Self>>::is_bit_valid(candidate.reborrow())
|| <StructLikeVariant<X, Y> as Variant<Self>>::is_bit_valid(candidate.reborrow())
|| <TupleLikeVariant<X, Y> as Variant<Self>>::is_bit_valid(candidate.reborrow())
}
} ...with this additional helper trait added to /// Marks that `Self` has layout (and bit validity) identical to that
/// of a variant of the enum `E`.
///
/// # Safety
///
/// `Self`'s layout (including bit validity) must be identical to that
/// of a variant of the enum `E`.
pub unsafe trait Variant<E>: Sized {
fn cast<I>(e: Ptr<'_, E, I>) -> Ptr<'_, Self, (I::Aliasing, invariant::Any, invariant::Any)>
where
I: Invariants,
{
// SAFETY: By precondition on this trait, `Self` has layout
// identical to that of a variant of the enum `E`, thus the
// size of `Self` is identical to that of `E`.
unsafe { e.cast_unsized(|p| p as *mut Self) }
}
fn is_bit_valid<A>(
candidate: crate::Maybe<'_, E, A>,
) -> bool
where
A: invariant::Aliasing
+ AtLeast<
invariant::Shared,
>,
Self: TryFromBytes,
{
let candidate = Self::cast(candidate);
// SAFETY: The above cast does not de-initialize the
// candidate's bytes, thus the `Ptr`'s referent remains
// initialized.
let candidate = unsafe { candidate.assume_initialized() };
TryFromBytes::is_bit_valid(candidate)
}
} |
I agree that reusing our existing derives as much as possible is good, but there are costs paid in the efficiency of the code we generate. Because the enum already checks the validity of the tag, we should skip re-checking it for each of the variant structs that we downcast to. Otherwise we're re-checking data that we already know is valid. |
I don't follow. In my example, there's no 're-checking data we already know to be valid'. The discriminant check happens only after (and because of) the cast. |
Sorry, I misunderstood your code slightly. In the code you provided, we try checking each of the variants of the enum one-by-one. This means that we do multiple checks on the tag of the enum, each time checking if it matches a single variant's discriminant. This means that 1. we're generating one branch per enum variant and 2. if we match an enum variant and still fail This PR currently reads the tag out once and does a single match on it to delegate to an appropriate |
Something I've been doing as I review this is replacing the |
Another option would be:
|
@joshlf I initially did roughly that, but the extra |
73aaff2
to
021ee00
Compare
021ee00
to
3bb7be3
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've reviewed most of this PR, but still need to review the following files:
Still need to review:
zerocopy-derive/src/ext.rs
zerocopy-derive/src/repr.rs
zerocopy-derive/src/lib.rs
zerocopy-derive/tests/*
It may be later today or tomorrow before I get a chance to review those files, so I figured it'd be better for you to at least have these comments now.
88c16dc
to
f9f2483
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Addressed feedback
zerocopy-derive/src/enum.rs
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TODO: Confirm that UnsafeCell
issues are sound
f9f2483
to
19c8fc9
Compare
struct NotTryFromBytes; | ||
|
||
#[derive(TryFromBytes)] | ||
#[repr(u8)] | ||
enum TryFromBytes3 { | ||
A(NotTryFromBytes), | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It looks like this isn't generating any error, presumably because the entire compilation is failing during an earlier compiler pass. You will likely need to put this in a separate file.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
#[derive(FromZeros)] | ||
#[repr(u8)] | ||
enum FromZeros6 { | ||
A(NotFromZeros), | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same as above - needs to be in a separate file.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
#[repr(u8)] | ||
enum FromZeros7 { | ||
A = 1, | ||
B(NotFromZeros), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Make this a type that does implement FromZeros
to make it clear that we're testing the fact that there's no 0 discriminant?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
@@ -160,6 +183,267 @@ enum FromBytes7 { | |||
A, | |||
} | |||
|
|||
#[derive(FromBytes)] | |||
#[repr(u8)] | |||
enum FooU8 { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same as above.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
#[derive(IntoBytes)] | ||
#[repr(u8)] | ||
enum IntoBytes1 { | ||
A, | ||
B(u8), | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same above
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
#[derive(IntoBytes)] | ||
#[repr(u8)] | ||
enum IntoBytes2 { | ||
A(Align4IntoBytes), | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same as above
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
#[derive(IntoBytes)] | ||
#[repr(u32)] | ||
enum IntoBytes3 { | ||
A(u32), | ||
B(u16), | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same as above
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
fc8986d
to
19c8fc9
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We're going to follow up with #1634, which will block releasing 0.8.
This PR is now ready for review.
This PR isn't yet complete. Still to do: