forked from firebase/firebase-admin-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
token_verifier.go
239 lines (212 loc) · 5.61 KB
/
token_verifier.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
// Copyright 2018 Google Inc. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package auth
import (
"bytes"
"context"
"crypto"
"crypto/rsa"
"crypto/sha256"
"crypto/x509"
"encoding/base64"
"encoding/json"
"encoding/pem"
"errors"
"fmt"
"io/ioutil"
"net/http"
"strconv"
"strings"
"sync"
"time"
)
// keySource is used to obtain a set of public keys, which can be used to verify cryptographic
// signatures.
type keySource interface {
Keys(context.Context) ([]*publicKey, error)
}
// httpKeySource fetches RSA public keys from a remote HTTP server, and caches them in
// memory. It also handles cache! invalidation and refresh based on the standard HTTP
// cache-control headers.
type httpKeySource struct {
KeyURI string
HTTPClient *http.Client
CachedKeys []*publicKey
ExpiryTime time.Time
Clock clock
Mutex *sync.Mutex
}
func newHTTPKeySource(uri string, hc *http.Client) *httpKeySource {
return &httpKeySource{
KeyURI: uri,
HTTPClient: hc,
Clock: systemClock{},
Mutex: &sync.Mutex{},
}
}
// Keys returns the RSA Public Keys hosted at this key source's URI. Refreshes the data if
// the cache is stale.
func (k *httpKeySource) Keys(ctx context.Context) ([]*publicKey, error) {
k.Mutex.Lock()
defer k.Mutex.Unlock()
if len(k.CachedKeys) == 0 || k.hasExpired() {
err := k.refreshKeys(ctx)
if err != nil && len(k.CachedKeys) == 0 {
return nil, err
}
}
return k.CachedKeys, nil
}
// hasExpired indicates whether the cache has expired.
func (k *httpKeySource) hasExpired() bool {
return k.Clock.Now().After(k.ExpiryTime)
}
func (k *httpKeySource) refreshKeys(ctx context.Context) error {
k.CachedKeys = nil
req, err := http.NewRequest("GET", k.KeyURI, nil)
if err != nil {
return err
}
resp, err := k.HTTPClient.Do(req.WithContext(ctx))
if err != nil {
return err
}
defer resp.Body.Close()
contents, err := ioutil.ReadAll(resp.Body)
if err != nil {
return err
}
if resp.StatusCode != http.StatusOK {
return fmt.Errorf("invalid response (%d) while retrieving public keys: %s", resp.StatusCode, string(contents))
}
newKeys, err := parsePublicKeys(contents)
if err != nil {
return err
}
maxAge, err := findMaxAge(resp)
if err != nil {
return err
}
k.CachedKeys = append([]*publicKey(nil), newKeys...)
k.ExpiryTime = k.Clock.Now().Add(*maxAge)
return nil
}
func verifyToken(ctx context.Context, token string, ks keySource) error {
segments := strings.Split(token, ".")
if len(segments) != 3 {
return errors.New("incorrect number of segments")
}
var h jwtHeader
if err := decode(segments[0], &h); err != nil {
return err
}
keys, err := ks.Keys(ctx)
if err != nil {
return err
}
verified := false
for _, k := range keys {
if h.KeyID == "" || h.KeyID == k.Kid {
if verifySignature(segments, k) == nil {
verified = true
break
}
}
}
if !verified {
return errors.New("failed to verify token signature")
}
return nil
}
// decode accepts a JWT segment, and decodes it into the given interface.
func decode(segment string, i interface{}) error {
decoded, err := base64.RawURLEncoding.DecodeString(segment)
if err != nil {
return err
}
return json.NewDecoder(bytes.NewBuffer(decoded)).Decode(i)
}
func verifySignature(parts []string, k *publicKey) error {
content := parts[0] + "." + parts[1]
signature, err := base64.RawURLEncoding.DecodeString(parts[2])
if err != nil {
return err
}
h := sha256.New()
h.Write([]byte(content))
return rsa.VerifyPKCS1v15(k.Key, crypto.SHA256, h.Sum(nil), []byte(signature))
}
// publicKey represents a parsed RSA public key along with its unique key ID.
type publicKey struct {
Kid string
Key *rsa.PublicKey
}
// clock is used to query the current local time.
type clock interface {
Now() time.Time
}
type systemClock struct{}
func (s systemClock) Now() time.Time {
return time.Now()
}
type mockClock struct {
now time.Time
}
func (m *mockClock) Now() time.Time {
return m.now
}
func findMaxAge(resp *http.Response) (*time.Duration, error) {
cc := resp.Header.Get("cache-control")
for _, value := range strings.Split(cc, ",") {
value = strings.TrimSpace(value)
if strings.HasPrefix(value, "max-age=") {
sep := strings.Index(value, "=")
seconds, err := strconv.ParseInt(value[sep+1:], 10, 64)
if err != nil {
return nil, err
}
duration := time.Duration(seconds) * time.Second
return &duration, nil
}
}
return nil, errors.New("Could not find expiry time from HTTP headers")
}
func parsePublicKeys(keys []byte) ([]*publicKey, error) {
m := make(map[string]string)
err := json.Unmarshal(keys, &m)
if err != nil {
return nil, err
}
var result []*publicKey
for kid, key := range m {
pubKey, err := parsePublicKey(kid, []byte(key))
if err != nil {
return nil, err
}
result = append(result, pubKey)
}
return result, nil
}
func parsePublicKey(kid string, key []byte) (*publicKey, error) {
block, _ := pem.Decode(key)
cert, err := x509.ParseCertificate(block.Bytes)
if err != nil {
return nil, err
}
pk, ok := cert.PublicKey.(*rsa.PublicKey)
if !ok {
return nil, errors.New("Certificate is not a RSA key")
}
return &publicKey{kid, pk}, nil
}