Use request claims for delegated tokens in Cedar - #6440
Open
lorenzozanee wants to merge 1 commit into
Open
Conversation
When Cedar is configured with a primaryUpstreamProvider (auto-derived from the sole upstream), RFC 8693 delegated tokens have no UpstreamTokens entry and resolveClaims failed closed before policy evaluation. Fall back to the request token claims so delegation remains usable, mirroring the existing opaque-token fallback. Fixes stacklok#6424 Signed-off-by: lorenzozanee <wyz0707@proton.me>
lorenzozanee
requested review from
ChrisJBurns,
JAORMX,
jhrozek,
rdimitrov and
tgrunnagle
as code owners
August 27, 2026 00:06
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Delegated tokens minted via RFC 8693 have no upstream session and were denied by Cedar when
primaryUpstreamProvideris set, even for permissive policies. Fall back to the request token's claims in that case, mirroring the existing opaque-token handling, so delegation can be evaluated.Fixes #6424
Type of change
Test plan
task test)task test-e2e)task lint-fix)API Compatibility
v1beta1API, OR theapi-break-allowedlabel is applied and the migration guidance is described above.Changes
pkg/authz/authorizers/cedar/core.gopkg/authz/authorizers/cedar/core_test.goDoes this introduce a user-facing change?
Yes. Delegated flows now authorize correctly when Cedar uses a primary upstream provider; otherwise behavior is unchanged.