2021-05-04 22:06:05 +00:00
|
|
|
package oidc
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/ory/fosite"
|
|
|
|
"github.com/ory/fosite/storage"
|
|
|
|
"gopkg.in/square/go-jose.v2"
|
|
|
|
|
2021-08-11 01:04:35 +00:00
|
|
|
"github.com/authelia/authelia/v4/internal/authorization"
|
|
|
|
"github.com/authelia/authelia/v4/internal/configuration/schema"
|
|
|
|
"github.com/authelia/authelia/v4/internal/logging"
|
2021-05-04 22:06:05 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// NewOpenIDConnectStore returns a new OpenIDConnectStore using the provided schema.OpenIDConnectConfiguration.
|
2021-11-23 09:45:38 +00:00
|
|
|
func NewOpenIDConnectStore(configuration *schema.OpenIDConnectConfiguration) (store *OpenIDConnectStore) {
|
2021-08-03 22:54:45 +00:00
|
|
|
logger := logging.Logger()
|
|
|
|
|
feat(oidc): add additional config options, accurate token times, and refactoring (#1991)
* This gives admins more control over their OIDC installation exposing options that had defaults before. Things like lifespans for authorize codes, access tokens, id tokens, refresh tokens, a option to enable the debug client messages, minimum parameter entropy. It also allows admins to configure the response modes.
* Additionally this records specific values about a users session indicating when they performed a specific authz factor so this is represented in the token accurately.
* Lastly we also implemented a OIDC key manager which calculates the kid for jwk's using the SHA1 digest instead of being static, or more specifically the first 7 chars. As per https://datatracker.ietf.org/doc/html/draft-ietf-jose-json-web-key#section-8.1.1 the kid should not exceed 8 chars. While it's allowed to exceed 8 chars, it must only be done so with a compelling reason, which we do not have.
2021-07-03 23:44:30 +00:00
|
|
|
store = &OpenIDConnectStore{
|
|
|
|
memory: &storage.MemoryStore{
|
|
|
|
IDSessions: map[string]fosite.Requester{},
|
|
|
|
Users: map[string]storage.MemoryUserRelation{},
|
|
|
|
AuthorizeCodes: map[string]storage.StoreAuthorizeCode{},
|
|
|
|
AccessTokens: map[string]fosite.Requester{},
|
|
|
|
RefreshTokens: map[string]storage.StoreRefreshToken{},
|
|
|
|
PKCES: map[string]fosite.Requester{},
|
2022-04-01 11:18:58 +00:00
|
|
|
BlacklistedJTIs: map[string]time.Time{},
|
feat(oidc): add additional config options, accurate token times, and refactoring (#1991)
* This gives admins more control over their OIDC installation exposing options that had defaults before. Things like lifespans for authorize codes, access tokens, id tokens, refresh tokens, a option to enable the debug client messages, minimum parameter entropy. It also allows admins to configure the response modes.
* Additionally this records specific values about a users session indicating when they performed a specific authz factor so this is represented in the token accurately.
* Lastly we also implemented a OIDC key manager which calculates the kid for jwk's using the SHA1 digest instead of being static, or more specifically the first 7 chars. As per https://datatracker.ietf.org/doc/html/draft-ietf-jose-json-web-key#section-8.1.1 the kid should not exceed 8 chars. While it's allowed to exceed 8 chars, it must only be done so with a compelling reason, which we do not have.
2021-07-03 23:44:30 +00:00
|
|
|
AccessTokenRequestIDs: map[string]string{},
|
|
|
|
RefreshTokenRequestIDs: map[string]string{},
|
|
|
|
},
|
|
|
|
}
|
2021-05-04 22:06:05 +00:00
|
|
|
|
|
|
|
store.clients = make(map[string]*InternalClient)
|
|
|
|
|
feat(oidc): add additional config options, accurate token times, and refactoring (#1991)
* This gives admins more control over their OIDC installation exposing options that had defaults before. Things like lifespans for authorize codes, access tokens, id tokens, refresh tokens, a option to enable the debug client messages, minimum parameter entropy. It also allows admins to configure the response modes.
* Additionally this records specific values about a users session indicating when they performed a specific authz factor so this is represented in the token accurately.
* Lastly we also implemented a OIDC key manager which calculates the kid for jwk's using the SHA1 digest instead of being static, or more specifically the first 7 chars. As per https://datatracker.ietf.org/doc/html/draft-ietf-jose-json-web-key#section-8.1.1 the kid should not exceed 8 chars. While it's allowed to exceed 8 chars, it must only be done so with a compelling reason, which we do not have.
2021-07-03 23:44:30 +00:00
|
|
|
for _, client := range configuration.Clients {
|
|
|
|
policy := authorization.PolicyToLevel(client.Policy)
|
2021-08-03 22:54:45 +00:00
|
|
|
logger.Debugf("Registering client %s with policy %s (%v)", client.ID, client.Policy, policy)
|
2021-05-04 22:06:05 +00:00
|
|
|
|
feat(oidc): add additional config options, accurate token times, and refactoring (#1991)
* This gives admins more control over their OIDC installation exposing options that had defaults before. Things like lifespans for authorize codes, access tokens, id tokens, refresh tokens, a option to enable the debug client messages, minimum parameter entropy. It also allows admins to configure the response modes.
* Additionally this records specific values about a users session indicating when they performed a specific authz factor so this is represented in the token accurately.
* Lastly we also implemented a OIDC key manager which calculates the kid for jwk's using the SHA1 digest instead of being static, or more specifically the first 7 chars. As per https://datatracker.ietf.org/doc/html/draft-ietf-jose-json-web-key#section-8.1.1 the kid should not exceed 8 chars. While it's allowed to exceed 8 chars, it must only be done so with a compelling reason, which we do not have.
2021-07-03 23:44:30 +00:00
|
|
|
store.clients[client.ID] = NewClient(client)
|
2021-05-04 22:06:05 +00:00
|
|
|
}
|
|
|
|
|
2021-11-23 09:45:38 +00:00
|
|
|
return store
|
2021-05-04 22:06:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// GetClientPolicy retrieves the policy from the client with the matching provided id.
|
|
|
|
func (s OpenIDConnectStore) GetClientPolicy(id string) (level authorization.Level) {
|
|
|
|
client, err := s.GetInternalClient(id)
|
|
|
|
if err != nil {
|
|
|
|
return authorization.TwoFactor
|
|
|
|
}
|
|
|
|
|
|
|
|
return client.Policy
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetInternalClient returns a fosite.Client asserted as an InternalClient matching the provided id.
|
|
|
|
func (s OpenIDConnectStore) GetInternalClient(id string) (client *InternalClient, err error) {
|
|
|
|
client, ok := s.clients[id]
|
|
|
|
if !ok {
|
|
|
|
return nil, fosite.ErrNotFound
|
|
|
|
}
|
|
|
|
|
|
|
|
return client, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsValidClientID returns true if the provided id exists in the OpenIDConnectProvider.Clients map.
|
|
|
|
func (s OpenIDConnectStore) IsValidClientID(id string) (valid bool) {
|
|
|
|
_, err := s.GetInternalClient(id)
|
|
|
|
|
|
|
|
return err == nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// CreateOpenIDConnectSession decorates fosite's storage.MemoryStore CreateOpenIDConnectSession method.
|
|
|
|
func (s *OpenIDConnectStore) CreateOpenIDConnectSession(ctx context.Context, authorizeCode string, requester fosite.Requester) error {
|
|
|
|
return s.memory.CreateOpenIDConnectSession(ctx, authorizeCode, requester)
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetOpenIDConnectSession decorates fosite's storage.MemoryStore GetOpenIDConnectSession method.
|
|
|
|
func (s *OpenIDConnectStore) GetOpenIDConnectSession(ctx context.Context, authorizeCode string, requester fosite.Requester) (fosite.Requester, error) {
|
|
|
|
return s.memory.GetOpenIDConnectSession(ctx, authorizeCode, requester)
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeleteOpenIDConnectSession decorates fosite's storage.MemoryStore DeleteOpenIDConnectSession method.
|
|
|
|
func (s *OpenIDConnectStore) DeleteOpenIDConnectSession(ctx context.Context, authorizeCode string) error {
|
|
|
|
return s.memory.DeleteOpenIDConnectSession(ctx, authorizeCode)
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetClient decorates fosite's storage.MemoryStore GetClient method.
|
|
|
|
func (s *OpenIDConnectStore) GetClient(_ context.Context, id string) (fosite.Client, error) {
|
|
|
|
return s.GetInternalClient(id)
|
|
|
|
}
|
|
|
|
|
|
|
|
// ClientAssertionJWTValid decorates fosite's storage.MemoryStore ClientAssertionJWTValid method.
|
|
|
|
func (s *OpenIDConnectStore) ClientAssertionJWTValid(ctx context.Context, jti string) error {
|
|
|
|
return s.memory.ClientAssertionJWTValid(ctx, jti)
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetClientAssertionJWT decorates fosite's storage.MemoryStore SetClientAssertionJWT method.
|
|
|
|
func (s *OpenIDConnectStore) SetClientAssertionJWT(ctx context.Context, jti string, exp time.Time) error {
|
|
|
|
return s.memory.SetClientAssertionJWT(ctx, jti, exp)
|
|
|
|
}
|
|
|
|
|
|
|
|
// CreateAuthorizeCodeSession decorates fosite's storage.MemoryStore CreateAuthorizeCodeSession method.
|
|
|
|
func (s *OpenIDConnectStore) CreateAuthorizeCodeSession(ctx context.Context, code string, req fosite.Requester) error {
|
|
|
|
return s.memory.CreateAuthorizeCodeSession(ctx, code, req)
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetAuthorizeCodeSession decorates fosite's storage.MemoryStore GetAuthorizeCodeSession method.
|
|
|
|
func (s *OpenIDConnectStore) GetAuthorizeCodeSession(ctx context.Context, code string, session fosite.Session) (fosite.Requester, error) {
|
|
|
|
return s.memory.GetAuthorizeCodeSession(ctx, code, session)
|
|
|
|
}
|
|
|
|
|
|
|
|
// InvalidateAuthorizeCodeSession decorates fosite's storage.MemoryStore InvalidateAuthorizeCodeSession method.
|
|
|
|
func (s *OpenIDConnectStore) InvalidateAuthorizeCodeSession(ctx context.Context, code string) error {
|
|
|
|
return s.memory.InvalidateAuthorizeCodeSession(ctx, code)
|
|
|
|
}
|
|
|
|
|
|
|
|
// CreatePKCERequestSession decorates fosite's storage.MemoryStore CreatePKCERequestSession method.
|
|
|
|
func (s *OpenIDConnectStore) CreatePKCERequestSession(ctx context.Context, code string, req fosite.Requester) error {
|
|
|
|
return s.memory.CreatePKCERequestSession(ctx, code, req)
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetPKCERequestSession decorates fosite's storage.MemoryStore GetPKCERequestSession method.
|
|
|
|
func (s *OpenIDConnectStore) GetPKCERequestSession(ctx context.Context, code string, session fosite.Session) (fosite.Requester, error) {
|
|
|
|
return s.memory.GetPKCERequestSession(ctx, code, session)
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeletePKCERequestSession decorates fosite's storage.MemoryStore DeletePKCERequestSession method.
|
|
|
|
func (s *OpenIDConnectStore) DeletePKCERequestSession(ctx context.Context, code string) error {
|
|
|
|
return s.memory.DeletePKCERequestSession(ctx, code)
|
|
|
|
}
|
|
|
|
|
|
|
|
// CreateAccessTokenSession decorates fosite's storage.MemoryStore CreateAccessTokenSession method.
|
|
|
|
func (s *OpenIDConnectStore) CreateAccessTokenSession(ctx context.Context, signature string, req fosite.Requester) error {
|
|
|
|
return s.memory.CreateAccessTokenSession(ctx, signature, req)
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetAccessTokenSession decorates fosite's storage.MemoryStore GetAccessTokenSession method.
|
|
|
|
func (s *OpenIDConnectStore) GetAccessTokenSession(ctx context.Context, signature string, session fosite.Session) (fosite.Requester, error) {
|
|
|
|
return s.memory.GetAccessTokenSession(ctx, signature, session)
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeleteAccessTokenSession decorates fosite's storage.MemoryStore DeleteAccessTokenSession method.
|
|
|
|
func (s *OpenIDConnectStore) DeleteAccessTokenSession(ctx context.Context, signature string) error {
|
|
|
|
return s.memory.DeleteAccessTokenSession(ctx, signature)
|
|
|
|
}
|
|
|
|
|
|
|
|
// CreateRefreshTokenSession decorates fosite's storage.MemoryStore CreateRefreshTokenSession method.
|
|
|
|
func (s *OpenIDConnectStore) CreateRefreshTokenSession(ctx context.Context, signature string, req fosite.Requester) error {
|
|
|
|
return s.memory.CreateRefreshTokenSession(ctx, signature, req)
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetRefreshTokenSession decorates fosite's storage.MemoryStore GetRefreshTokenSession method.
|
|
|
|
func (s *OpenIDConnectStore) GetRefreshTokenSession(ctx context.Context, signature string, session fosite.Session) (fosite.Requester, error) {
|
|
|
|
return s.memory.GetRefreshTokenSession(ctx, signature, session)
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeleteRefreshTokenSession decorates fosite's storage.MemoryStore DeleteRefreshTokenSession method.
|
|
|
|
func (s *OpenIDConnectStore) DeleteRefreshTokenSession(ctx context.Context, signature string) error {
|
|
|
|
return s.memory.DeleteRefreshTokenSession(ctx, signature)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Authenticate decorates fosite's storage.MemoryStore Authenticate method.
|
|
|
|
func (s *OpenIDConnectStore) Authenticate(ctx context.Context, name string, secret string) error {
|
|
|
|
return s.memory.Authenticate(ctx, name, secret)
|
|
|
|
}
|
|
|
|
|
|
|
|
// RevokeRefreshToken decorates fosite's storage.MemoryStore RevokeRefreshToken method.
|
|
|
|
func (s *OpenIDConnectStore) RevokeRefreshToken(ctx context.Context, requestID string) error {
|
|
|
|
return s.memory.RevokeRefreshToken(ctx, requestID)
|
|
|
|
}
|
|
|
|
|
2022-01-12 15:52:15 +00:00
|
|
|
// RevokeRefreshTokenMaybeGracePeriod decorates fosite's storage.MemoryStore RevokeRefreshTokenMaybeGracePeriod method.
|
|
|
|
func (s OpenIDConnectStore) RevokeRefreshTokenMaybeGracePeriod(ctx context.Context, requestID string, signature string) error {
|
|
|
|
return s.memory.RevokeRefreshTokenMaybeGracePeriod(ctx, requestID, signature)
|
|
|
|
}
|
|
|
|
|
2021-05-04 22:06:05 +00:00
|
|
|
// RevokeAccessToken decorates fosite's storage.MemoryStore RevokeAccessToken method.
|
|
|
|
func (s *OpenIDConnectStore) RevokeAccessToken(ctx context.Context, requestID string) error {
|
|
|
|
return s.memory.RevokeAccessToken(ctx, requestID)
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetPublicKey decorates fosite's storage.MemoryStore GetPublicKey method.
|
|
|
|
func (s *OpenIDConnectStore) GetPublicKey(ctx context.Context, issuer string, subject string, keyID string) (*jose.JSONWebKey, error) {
|
|
|
|
return s.memory.GetPublicKey(ctx, issuer, subject, keyID)
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetPublicKeys decorates fosite's storage.MemoryStore GetPublicKeys method.
|
|
|
|
func (s *OpenIDConnectStore) GetPublicKeys(ctx context.Context, issuer string, subject string) (*jose.JSONWebKeySet, error) {
|
|
|
|
return s.memory.GetPublicKeys(ctx, issuer, subject)
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetPublicKeyScopes decorates fosite's storage.MemoryStore GetPublicKeyScopes method.
|
|
|
|
func (s *OpenIDConnectStore) GetPublicKeyScopes(ctx context.Context, issuer string, subject string, keyID string) ([]string, error) {
|
|
|
|
return s.memory.GetPublicKeyScopes(ctx, issuer, subject, keyID)
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsJWTUsed decorates fosite's storage.MemoryStore IsJWTUsed method.
|
|
|
|
func (s *OpenIDConnectStore) IsJWTUsed(ctx context.Context, jti string) (bool, error) {
|
|
|
|
return s.memory.IsJWTUsed(ctx, jti)
|
|
|
|
}
|
|
|
|
|
|
|
|
// MarkJWTUsedForTime decorates fosite's storage.MemoryStore MarkJWTUsedForTime method.
|
|
|
|
func (s *OpenIDConnectStore) MarkJWTUsedForTime(ctx context.Context, jti string, exp time.Time) error {
|
|
|
|
return s.memory.MarkJWTUsedForTime(ctx, jti, exp)
|
|
|
|
}
|