This repository has been archived by the owner on Oct 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 63
/
provider.go
225 lines (187 loc) · 7.56 KB
/
provider.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
package authzserver
import (
"context"
"crypto/rsa"
"crypto/x509"
"encoding/base64"
"encoding/pem"
"fmt"
"time"
"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/service"
"github.com/flyteorg/flytestdlib/logger"
"k8s.io/apimachinery/pkg/util/sets"
"github.com/lestrrat-go/jwx/jwk"
"github.com/flyteorg/flyteadmin/auth/interfaces"
"github.com/flyteorg/flyteadmin/auth"
"github.com/flyteorg/flyteplugins/go/tasks/pluginmachinery/core"
jwtgo "github.com/golang-jwt/jwt/v4"
fositeOAuth2 "github.com/ory/fosite/handler/oauth2"
"github.com/ory/fosite/token/jwt"
"github.com/flyteorg/flyteadmin/auth/config"
"github.com/ory/fosite"
"github.com/ory/fosite/compose"
"github.com/ory/fosite/storage"
)
const (
ClientIDClaim = "client_id"
UserIDClaim = "user_info"
ScopeClaim = "scp"
KeyIDClaim = "key_id"
)
// Provider implements OAuth2 Authorization Server.
type Provider struct {
fosite.OAuth2Provider
cfg config.AuthorizationServer
publicKey []rsa.PublicKey
keySet jwk.Set
}
func (p Provider) PublicKeys() []rsa.PublicKey {
return p.publicKey
}
func (p Provider) KeySet() jwk.Set {
return p.keySet
}
// NewJWTSessionToken is a helper function for creating a new session.
func (p Provider) NewJWTSessionToken(subject, appID, issuer, audience string, userInfoClaims *service.UserInfoResponse) *fositeOAuth2.JWTSession {
key, found := p.keySet.Get(0)
keyID := ""
if found {
keyID = key.KeyID()
}
return &fositeOAuth2.JWTSession{
JWTClaims: &jwt.JWTClaims{
Audience: []string{audience},
Issuer: issuer,
Subject: subject,
ExpiresAt: time.Now().Add(p.cfg.AccessTokenLifespan.Duration),
IssuedAt: time.Now(),
Extra: map[string]interface{}{
ClientIDClaim: appID,
UserIDClaim: userInfoClaims,
},
},
JWTHeader: &jwt.Headers{
Extra: map[string]interface{}{
KeyIDClaim: keyID,
},
},
}
}
func findPublicKeyForTokenOrFirst(ctx context.Context, t *jwtgo.Token, publicKeys jwk.Set) (*rsa.PublicKey, error) {
if _, ok := t.Method.(*jwtgo.SigningMethodRSA); !ok {
return nil, fmt.Errorf("unexpected signing method: %v", t.Header["alg"])
}
if publicKeys.Len() == 0 {
return nil, fmt.Errorf("no keys exist to match")
}
publicKey := &rsa.PublicKey{}
k, _ := publicKeys.Get(0)
if err := k.Raw(publicKey); err != nil {
return nil, err
}
if keyID, found := t.Header[KeyIDClaim]; !found {
return publicKey, nil
} else if key, found := publicKeys.LookupKeyID(keyID.(string)); !found {
return publicKey, nil
} else if err := key.Raw(publicKey); err != nil {
logger.Errorf(ctx, "Failed to load public key from key [%v]. Will default to the first key. Error: %v", keyID)
return publicKey, nil
}
return publicKey, nil
}
func (p Provider) ValidateAccessToken(ctx context.Context, expectedAudience, tokenStr string) (interfaces.IdentityContext, error) {
// Parse and validate the token.
parsedToken, err := jwtgo.Parse(tokenStr, func(t *jwtgo.Token) (interface{}, error) {
return findPublicKeyForTokenOrFirst(ctx, t, p.KeySet())
})
if err != nil {
return nil, err
}
if !parsedToken.Valid {
return nil, fmt.Errorf("parsed token is invalid")
}
claimsRaw := parsedToken.Claims.(jwtgo.MapClaims)
return verifyClaims(sets.NewString(expectedAudience), claimsRaw)
}
// NewProvider creates a new OAuth2 Provider that is able to do OAuth 2-legged and 3-legged flows. It'll lookup
// config.SecretNameClaimSymmetricKey and config.SecretNameTokenSigningRSAKey secrets from the secret manager to use to
// sign and generate hashes for tokens. The RSA Private key is expected to be in PEM format with the public key embedded.
// Use auth.GetInitSecretsCommand() to generate new valid secrets that will be accepted by this provider.
// The config.SecretNameClaimSymmetricKey must be a 32-bytes long key in Base64Encoding.
func NewProvider(ctx context.Context, cfg config.AuthorizationServer, sm core.SecretManager) (Provider, error) {
// fosite requires four parameters for the server to get up and running:
// 1. config - for any enforcement you may desire, you can do this using `compose.Config`. You like PKCE, enforce it!
// 2. store - no auth service is generally useful unless it can remember clients and users.
// fosite is incredibly composable, and the store parameter enables you to build and BYODb (Bring Your Own Database)
// 3. secret - required for code, access and refresh token generation.
// 4. privateKey - required for id/jwt token generation.
composeConfig := &compose.Config{
AccessTokenLifespan: cfg.AccessTokenLifespan.Duration,
RefreshTokenLifespan: cfg.RefreshTokenLifespan.Duration,
AuthorizeCodeLifespan: cfg.AuthorizationCodeLifespan.Duration,
RefreshTokenScopes: []string{refreshTokenScope},
}
// This secret is used to encryptString/decrypt challenge code to maintain a stateless authcode token.
tokenHashBase64, err := sm.Get(ctx, cfg.ClaimSymmetricEncryptionKeySecretName)
if err != nil {
return Provider{}, fmt.Errorf("failed to read secretTokenHash file. Error: %w", err)
}
secret, err := base64.RawStdEncoding.DecodeString(tokenHashBase64)
if err != nil {
return Provider{}, fmt.Errorf("failed to decode token hash using base64 encoding. Error: %w", err)
}
// privateKey is used to sign JWT tokens. The default strategy uses RS256 (RSA Signature with SHA-256)
privateKeyPEM, err := sm.Get(ctx, cfg.TokenSigningRSAKeySecretName)
if err != nil {
return Provider{}, fmt.Errorf("failed to read token signing RSA Key. Error: %w", err)
}
block, _ := pem.Decode([]byte(privateKeyPEM))
privateKey, err := x509.ParsePKCS1PrivateKey(block.Bytes)
if err != nil {
return Provider{}, fmt.Errorf("failed to parse PKCS1PrivateKey. Error: %w", err)
}
// Build an in-memory store with static clients defined in Config. This gives us the potential to move the clients
// storage into DB and allow registration of new clients to users.
store := &StatelessTokenStore{
MemoryStore: &storage.MemoryStore{
IDSessions: make(map[string]fosite.Requester),
Clients: toClientIface(cfg.StaticClients),
AuthorizeCodes: map[string]storage.StoreAuthorizeCode{},
AccessTokens: map[string]fosite.Requester{},
RefreshTokens: map[string]storage.StoreRefreshToken{},
PKCES: map[string]fosite.Requester{},
AccessTokenRequestIDs: map[string]string{},
RefreshTokenRequestIDs: map[string]string{},
IssuerPublicKeys: map[string]storage.IssuerPublicKeys{},
},
}
sec := [auth.SymmetricKeyLength]byte{}
copy(sec[:], secret)
codeProvider := NewStatelessCodeProvider(cfg, sec, compose.NewOAuth2JWTStrategy(privateKey, nil))
// Build a fosite instance with all OAuth2 and OpenID Connect handlers enabled, plugging in our configurations as specified above.
oauth2Provider := composeOAuth2Provider(codeProvider, composeConfig, store, privateKey)
store.JWTStrategy = &jwt.RS256JWTStrategy{
PrivateKey: privateKey,
}
store.encryptor = codeProvider
publicKeys := []rsa.PublicKey{privateKey.PublicKey}
// Try to load old key to validate tokens using it to support key rotation.
privateKeyPEM, err = sm.Get(ctx, cfg.OldTokenSigningRSAKeySecretName)
if err == nil {
block, _ = pem.Decode([]byte(privateKeyPEM))
oldPrivateKey, err := x509.ParsePKCS1PrivateKey(block.Bytes)
if err != nil {
return Provider{}, fmt.Errorf("failed to parse PKCS1PrivateKey. Error: %w", err)
}
publicKeys = append(publicKeys, oldPrivateKey.PublicKey)
}
keysSet, err := newJSONWebKeySet(publicKeys)
if err != nil {
return Provider{}, err
}
return Provider{
OAuth2Provider: oauth2Provider,
publicKey: publicKeys,
keySet: keysSet,
}, nil
}