-
Notifications
You must be signed in to change notification settings - Fork 49
/
key_cacher.go
270 lines (238 loc) · 7.2 KB
/
key_cacher.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
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
package jose
import (
b64 "encoding/base64"
"encoding/json"
"errors"
"sync"
"time"
"github.com/go-jose/go-jose/v3"
"github.com/luraproject/lura/v2/config"
"github.com/luraproject/lura/v2/logging"
)
var (
ErrNoKeyFound = errors.New("no Keys have been found")
ErrKeyExpired = errors.New("key exists but is expired")
defaultGlobalCacheMaxAge uint32 = 900
defaultStrategy = "kid"
// Configuring with MaxKeyAgeNoCheck will skip key expiry check
MaxKeyAgeNoCheck = time.Duration(-1)
globalKeyCacher = map[string]GlobalCacher{}
globalKeyCacherOnce = new(sync.Once)
)
type GlobalCacher struct {
kc KeyCacher
mu *sync.RWMutex
}
func SetGlobalCacher(l logging.Logger, cfg config.ExtraConfig) error {
scfg, err := configGetter(l, cfg)
if err != nil {
return err
}
duration := time.Duration(scfg.CacheDuration) * time.Second
globalKeyCacherOnce.Do(func() {
globalKeyCacher = map[string]GlobalCacher{
"kid": {kc: NewMemoryKeyCacher(duration, -1, "kid"), mu: new(sync.RWMutex)},
"x5t": {kc: NewMemoryKeyCacher(duration, -1, "x5t"), mu: new(sync.RWMutex)},
"kid_x5t": {kc: NewMemoryKeyCacher(duration, -1, "kid_x5t"), mu: new(sync.RWMutex)},
}
})
return nil
}
type serviceConfig struct {
CacheDuration uint32 `json:"shared_cache_duration"`
}
func configGetter(l logging.Logger, cfg config.ExtraConfig) (serviceConfig, error) {
scfg := serviceConfig{}
e, ok := cfg[ValidatorNamespace].(map[string]interface{})
if !ok {
return scfg, ErrNoValidatorCfg
}
tmp, err := json.Marshal(e)
if err != nil {
return scfg, err
}
if err := json.Unmarshal(tmp, &scfg); err != nil {
return scfg, err
}
if scfg.CacheDuration == 0 {
scfg.CacheDuration = defaultGlobalCacheMaxAge
l.Info("[SERVICE: JOSE] Empty shared_cache_duration, using default (15m)")
}
return scfg, nil
}
// KeyIDGetter extracts a key id from a JSONWebKey
type KeyIDGetter interface {
Get(*jose.JSONWebKey) string
}
// KeyIDGetterFunc function conforming to the KeyIDGetter interface.
type KeyIDGetterFunc func(*jose.JSONWebKey) string
// Get calls f(r)
func (f KeyIDGetterFunc) Get(key *jose.JSONWebKey) string {
return f(key)
}
// DefaultKeyIDGetter returns the default kid as JSONWebKey key id
func DefaultKeyIDGetter(key *jose.JSONWebKey) string {
return key.KeyID
}
// X5TKeyIDGetter extracts the key id from the jSONWebKey as the x5t
func X5TKeyIDGetter(key *jose.JSONWebKey) string {
return b64.RawURLEncoding.EncodeToString(key.CertificateThumbprintSHA1)
}
// CompoundX5TKeyIDGetter extracts the key id from the jSONWebKey as the a compound string of the kid and the x5t
func CompoundX5TKeyIDGetter(key *jose.JSONWebKey) string {
return key.KeyID + X5TKeyIDGetter(key)
}
func KeyIDGetterFactory(keyIdentifyStrategy string) KeyIDGetter {
supportedKeyIdentifyStrategy := map[string]KeyIDGetterFunc{
"kid": DefaultKeyIDGetter,
"x5t": X5TKeyIDGetter,
"kid_x5t": CompoundX5TKeyIDGetter,
}
if keyGetter, ok := supportedKeyIdentifyStrategy[keyIdentifyStrategy]; ok {
return keyGetter
}
return KeyIDGetterFunc(DefaultKeyIDGetter)
}
type KeyCacher interface {
Get(keyID string) (*jose.JSONWebKey, error)
Add(keyID string, webKeys []jose.JSONWebKey) (*jose.JSONWebKey, error)
}
type MemoryKeyCacher struct {
entries map[string]keyCacherEntry
maxKeyAge time.Duration
maxCacheSize int
keyIDGetter KeyIDGetter
mu *sync.RWMutex
}
type keyCacherEntry struct {
addedAt time.Time
jose.JSONWebKey
}
type GMemoryKeyCacher struct {
*MemoryKeyCacher
Global GlobalCacher
}
func (gkc *GMemoryKeyCacher) Add(keyID string, downloadedKeys []jose.JSONWebKey) (*jose.JSONWebKey, error) {
if gkc.Global.kc != nil {
gkc.Global.mu.Lock()
gkc.Global.kc.Add(keyID, downloadedKeys)
gkc.Global.mu.Unlock()
}
return gkc.MemoryKeyCacher.Add(keyID, downloadedKeys)
}
// Get obtains a key from the cache, and checks if the key is expired
func (gkc *GMemoryKeyCacher) Get(keyID string) (*jose.JSONWebKey, error) {
k, err := gkc.MemoryKeyCacher.Get(keyID)
if err == nil || gkc.Global.kc == nil {
return k, err
}
gkc.Global.mu.RLock()
v, err := gkc.Global.kc.Get(keyID)
gkc.Global.mu.RUnlock()
if err == nil {
gkc.MemoryKeyCacher.Add(keyID, []jose.JSONWebKey{*v})
}
return v, err
}
// NewMemoryKeyCacher creates a new Keycacher interface with option
// to set max age of cached keys and max size of the cache.
func NewMemoryKeyCacher(maxKeyAge time.Duration, maxCacheSize int, keyIdentifyStrategy string) *MemoryKeyCacher {
return &MemoryKeyCacher{
entries: map[string]keyCacherEntry{},
maxKeyAge: maxKeyAge,
maxCacheSize: maxCacheSize,
keyIDGetter: KeyIDGetterFactory(keyIdentifyStrategy),
mu: new(sync.RWMutex),
}
}
func NewGlobalMemoryKeyCacher(maxKeyAge time.Duration, maxCacheSize int, keyIdentifyStrategy string) *GMemoryKeyCacher {
kc := &GMemoryKeyCacher{
MemoryKeyCacher: NewMemoryKeyCacher(maxKeyAge, maxCacheSize, keyIdentifyStrategy),
Global: GlobalCacher{},
}
if keyIdentifyStrategy == "" {
keyIdentifyStrategy = defaultStrategy
}
if len(globalKeyCacher) > 0 {
g := globalKeyCacher[keyIdentifyStrategy]
kc.Global = g
}
return kc
}
// Get obtains a key from the cache, and checks if the key is expired
func (mkc *MemoryKeyCacher) Get(keyID string) (*jose.JSONWebKey, error) {
mkc.mu.RLock()
searchKey, ok := mkc.entries[keyID]
mkc.mu.RUnlock()
if ok {
if mkc.maxKeyAge == MaxKeyAgeNoCheck || !mkc.keyIsExpired(keyID) {
return &searchKey.JSONWebKey, nil
}
return nil, ErrKeyExpired
}
return nil, ErrNoKeyFound
}
// Add adds a key into the cache and handles overflow
func (mkc *MemoryKeyCacher) Add(keyID string, downloadedKeys []jose.JSONWebKey) (*jose.JSONWebKey, error) {
var addingKey jose.JSONWebKey
var addingKeyID string
for i := range downloadedKeys {
cacheKey := mkc.keyIDGetter.Get(&downloadedKeys[i])
if cacheKey == keyID {
addingKey = downloadedKeys[i]
addingKeyID = cacheKey
}
if mkc.maxCacheSize == -1 {
mkc.mu.Lock()
mkc.entries[cacheKey] = keyCacherEntry{
addedAt: time.Now(),
JSONWebKey: downloadedKeys[i],
}
mkc.mu.Unlock()
}
}
if addingKey.Key != nil {
if mkc.maxCacheSize != -1 {
mkc.mu.Lock()
mkc.entries[addingKeyID] = keyCacherEntry{
addedAt: time.Now(),
JSONWebKey: addingKey,
}
mkc.mu.Unlock()
mkc.handleOverflow()
}
return &addingKey, nil
}
return nil, ErrNoKeyFound
}
// keyIsExpired deletes the key from cache if it is expired
func (mkc *MemoryKeyCacher) keyIsExpired(keyID string) bool {
mkc.mu.RLock()
entry := mkc.entries[keyID].addedAt.Add(mkc.maxKeyAge)
mkc.mu.RUnlock()
if time.Now().After(entry) {
mkc.mu.Lock()
delete(mkc.entries, keyID)
mkc.mu.Unlock()
return true
}
return false
}
// handleOverflow deletes the oldest key from the cache if overflowed
func (mkc *MemoryKeyCacher) handleOverflow() {
if mkc.maxCacheSize < len(mkc.entries) {
mkc.mu.RLock()
var oldestEntryKeyID string
latestAddedTime := time.Now()
for entryKeyID := range mkc.entries {
if mkc.entries[entryKeyID].addedAt.Before(latestAddedTime) {
latestAddedTime = mkc.entries[entryKeyID].addedAt
oldestEntryKeyID = entryKeyID
}
}
mkc.mu.RUnlock()
mkc.mu.Lock()
delete(mkc.entries, oldestEntryKeyID)
mkc.mu.Unlock()
}
}