Skip to content
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

identity/oidc: use inherited group membership for client assignments #14013

Merged
merged 2 commits into from
Feb 11, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions changelog/14013.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:bug
identity/oidc: Fixes inherited group membership when evaluating client assignments
```
4 changes: 2 additions & 2 deletions vault/identity_store_oidc_provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -2164,12 +2164,12 @@ func (i *IdentityStore) entityHasAssignment(ctx context.Context, s logical.Stora
}

// Get the group IDs that the entity is a member of
entityGroups, err := i.MemDBGroupsByMemberEntityID(entity.GetID(), true, false)
groups, inheritedGroups, err := i.groupsByEntityID(entity.GetID())
if err != nil {
return false, err
}
entityGroupIDs := make(map[string]bool)
for _, group := range entityGroups {
for _, group := range append(groups, inheritedGroups...) {
entityGroupIDs[group.GetID()] = true
}

Expand Down
33 changes: 26 additions & 7 deletions vault/identity_store_oidc_provider_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ func TestOIDC_Path_OIDC_Cross_Provider_Exchange(t *testing.T) {
s := new(logical.InmemStorage)

// Create the common OIDC configuration
entityID, _, clientID, clientSecret := setupOIDCCommon(t, c, s)
entityID, _, _, clientID, clientSecret := setupOIDCCommon(t, c, s)

// Create a second provider
providerPath := "oidc/provider/test-provider-2"
Expand Down Expand Up @@ -76,7 +76,7 @@ func TestOIDC_Path_OIDC_Token(t *testing.T) {
ctx := namespace.RootContext(nil)
s := new(logical.InmemStorage)

entityID, groupID, clientID, clientSecret := setupOIDCCommon(t, c, s)
entityID, groupID, _, clientID, clientSecret := setupOIDCCommon(t, c, s)

type args struct {
clientReq *logical.Request
Expand Down Expand Up @@ -460,7 +460,7 @@ func TestOIDC_Path_OIDC_Authorize(t *testing.T) {
ctx := namespace.RootContext(nil)
s := new(logical.InmemStorage)

entityID, groupID, clientID, _ := setupOIDCCommon(t, c, s)
entityID, groupID, parentGroupID, clientID, _ := setupOIDCCommon(t, c, s)

type args struct {
entityID string
Expand Down Expand Up @@ -805,6 +805,16 @@ func TestOIDC_Path_OIDC_Authorize(t *testing.T) {
authorizeReq: testAuthorizeReq(s, clientID),
},
},
{
name: "valid authorize request using client assignment with inherited group membership",
args: args{
entityID: entityID,
clientReq: testClientReq(s),
providerReq: testProviderReq(s, clientID),
assignmentReq: testAssignmentReq(s, "", parentGroupID),
authorizeReq: testAuthorizeReq(s, clientID),
},
},
{
name: "valid authorize request with port-agnostic loopback redirect_uri 127.0.0.1",
args: args{
Expand Down Expand Up @@ -958,7 +968,7 @@ func TestOIDC_Path_OIDC_Authorize(t *testing.T) {

// setupOIDCCommon creates all of the resources needed to test a Vault OIDC provider.
// Returns the entity ID, group ID, client ID, client secret to be used in tests.
func setupOIDCCommon(t *testing.T, c *Core, s logical.Storage) (string, string, string, string) {
func setupOIDCCommon(t *testing.T, c *Core, s logical.Storage) (string, string, string, string, string) {
t.Helper()
ctx := namespace.RootContext(nil)

Expand All @@ -973,11 +983,19 @@ func setupOIDCCommon(t *testing.T, c *Core, s logical.Storage) (string, string,
entityID := resp.Data["id"].(string)

// Create a group
resp, err = c.identityStore.HandleRequest(ctx, testGroupReq(s, "test-group", []string{entityID}))
resp, err = c.identityStore.HandleRequest(ctx, testGroupReq(s, "test-group",
[]string{entityID}, nil))
expectSuccess(t, resp, err)
require.NotNil(t, resp.Data["id"])
groupID := resp.Data["id"].(string)

// Create a parent group
resp, err = c.identityStore.HandleRequest(ctx, testGroupReq(s, "test-parent-group",
nil, []string{groupID}))
expectSuccess(t, resp, err)
require.NotNil(t, resp.Data["id"])
parentGroupID := resp.Data["id"].(string)

// Create an assignment
resp, err = c.identityStore.HandleRequest(ctx, testAssignmentReq(s, entityID, groupID))
expectSuccess(t, resp, err)
Expand Down Expand Up @@ -1025,7 +1043,7 @@ func setupOIDCCommon(t *testing.T, c *Core, s logical.Storage) (string, string,
resp, err = c.identityStore.HandleRequest(ctx, testProviderReq(s, clientID))
expectSuccess(t, resp, err)

return entityID, groupID, clientID, clientSecret
return entityID, groupID, parentGroupID, clientID, clientSecret
}

// resetCommonOIDCConfig resets the state of common configuration resources
Expand Down Expand Up @@ -1150,14 +1168,15 @@ func testKeyReq(s logical.Storage, allowedClientIDs []string, alg string) *logic
}
}

func testGroupReq(s logical.Storage, name string, entityIDs []string) *logical.Request {
func testGroupReq(s logical.Storage, name string, entityIDs, groupIDs []string) *logical.Request {
return &logical.Request{
Storage: s,
Path: "group",
Operation: logical.UpdateOperation,
Data: map[string]interface{}{
"name": name,
"member_entity_ids": entityIDs,
"member_group_ids": groupIDs,
},
}
}
Expand Down