Reject context-dependent enum discriminants - #3631
Conversation
Derives that validate enum tags copy explicit discriminants into a helper enum. Context-dependent expressions can evaluate differently in that helper, allowing the generated validator to accept an invalid original-enum tag. Restrict copied discriminants to a compiler-defined, repeatable grammar of integer and byte literals with primitive arithmetic and bitwise operations. Reject paths, macros, calls, casts, attributes, and other context-bearing forms before emitting any unsafe impl. Preserve the skip-on-error dependency chain for exhaustive enums, including fieldful variants whose zero tag cannot be identified syntactically, and add cross-toolchain regressions. Closes #3619 *Authored by an AI agent acting on Josh Liebow-Feeser's behalf.* gherrit-pr-id: Gifjr6pbpu4fh6t7qbzuuqczj3odny3ck
Codex Review SummaryThis comment shows the latest Codex review activity on this pull request.
ℹ️ About Codex in GitHubYour team has set up Codex to review pull requests in this repo. Reviews are triggered when you
Codex reacts with 👀 while any review is running, comments if it has suggestions, and reacts with 👍 once all reviews finish with no findings. |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## Gzghu5ypldjnatumvxfh6zygvwuqht3av #3631 +/- ##
==================================================================
Coverage 91.85% 91.85%
==================================================================
Files 20 20
Lines 6093 6093
==================================================================
Hits 5597 5597
Misses 496 496 ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: ab71f17c6c
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| /// } | ||
| /// ``` | ||
| /// | ||
| /// When this derive needs to reproduce an enum's explicit discriminants in |
There was a problem hiding this comment.
Add restrictions to the composite-derive docs
When users apply #[derive(FromZeros)] to a non-exhaustive enum such as one with A = 0, B = CONST, or #[derive(FromBytes)] to a fieldful exhaustive enum, those entry points call derive_try_from_bytes and now reject the constant-path discriminant. However, their own Analysis sections still present representation, zero-tag, and field bounds as the complete requirements, so users consulting derive.FromZeros or derive.FromBytes will not discover this new limitation. Add the conditional discriminant grammar, including the fieldless full-domain exception, to both composite-derive sections.
AGENTS.md reference: zerocopy/AGENTS.md:L37-L38
Useful? React with 👍 / 👎.
Derives that validate enum tags copy explicit discriminants into a helper
enum. Context-dependent expressions can evaluate differently in that helper,
allowing the generated validator to accept an invalid original-enum tag.
Restrict copied discriminants to a compiler-defined, repeatable grammar of
integer and byte literals with primitive arithmetic and bitwise operations.
Reject paths, macros, calls, casts, attributes, and other context-bearing
forms before emitting any unsafe impl. Preserve the skip-on-error dependency
chain for exhaustive enums, including fieldful variants whose zero tag cannot
be identified syntactically, and add cross-toolchain regressions.
Closes #3619
Authored by an AI agent acting on Josh Liebow-Feeser's behalf.
⬇️ Download this PR
Branch
git fetch origin refs/heads/Gifjr6pbpu4fh6t7qbzuuqczj3odny3ck && git checkout -b pr-Gifjr6pbpu4fh6t7qbzuuqczj3odny3ck FETCH_HEADCheckout
git fetch origin refs/heads/Gifjr6pbpu4fh6t7qbzuuqczj3odny3ck && git checkout FETCH_HEADCherry Pick
git fetch origin refs/heads/Gifjr6pbpu4fh6t7qbzuuqczj3odny3ck && git cherry-pick FETCH_HEADPull
Stacked PRs enabled by GHerrit.