This repository has been archived by the owner on Jul 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 84
/
authorized_app.go
480 lines (411 loc) · 13.4 KB
/
authorized_app.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
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
// Copyright 2020 Google LLC
//
// 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 database
import (
"context"
"crypto/hmac"
"crypto/rand"
"crypto/sha512"
"encoding/base64"
"fmt"
"strconv"
"strings"
"time"
"github.com/google/exposure-notifications-server/pkg/base64util"
"github.com/google/exposure-notifications-server/pkg/timeutils"
"github.com/google/exposure-notifications-verification-server/internal/project"
"github.com/google/exposure-notifications-verification-server/pkg/cache"
"github.com/jinzhu/gorm"
)
const (
apiKeyBytes = 64 // 64 bytes is 86 chararacters in non-padded base64.
)
type APIKeyType int
const (
APIKeyTypeInvalid APIKeyType = iota - 1
APIKeyTypeDevice
APIKeyTypeAdmin
APIKeyTypeStats
)
func (a APIKeyType) Display() string {
switch a {
case APIKeyTypeInvalid:
return "invalid"
case APIKeyTypeDevice:
return "device"
case APIKeyTypeAdmin:
return "admin"
case APIKeyTypeStats:
return "stats"
default:
return "invalid"
}
}
var _ Auditable = (*AuthorizedApp)(nil)
// AuthorizedApp represents an application that is authorized to verify
// verification codes and perform token exchanges.
// This is controlled via a generated API key.
//
// Admin Keys are able to issue diagnosis keys and are not able to participate
// the verification protocol.
type AuthorizedApp struct {
gorm.Model
Errorable
// AuthorizedApps belong to exactly one realm.
RealmID uint `gorm:"unique_index:realm_apikey_name"`
// Name is the name of the authorized app.
Name string `gorm:"type:varchar(100);unique_index:realm_apikey_name"`
// APIKeyPreview is the first few characters of the API key for display
// purposes. This can help admins in the UI when determining which API key is
// in use.
APIKeyPreview string `gorm:"type:varchar(32)"`
// APIKey is the HMACed API key.
APIKey string `gorm:"type:varchar(512);unique_index"`
// APIKeyType is the API key type.
APIKeyType APIKeyType `gorm:"column:api_key_type; type:integer; not null;"`
}
// BeforeSave runs validations. If there are errors, the save fails.
func (a *AuthorizedApp) BeforeSave(tx *gorm.DB) error {
a.Name = project.TrimSpace(a.Name)
if a.Name == "" {
a.AddError("name", "cannot be blank")
}
if !(a.APIKeyType == APIKeyTypeDevice || a.APIKeyType == APIKeyTypeAdmin || a.APIKeyType == APIKeyTypeStats) {
a.AddError("type", "is invalid")
}
return a.ErrorOrNil()
}
func (a *AuthorizedApp) IsAdminType() bool {
return a.APIKeyType == APIKeyTypeAdmin
}
func (a *AuthorizedApp) IsDeviceType() bool {
return a.APIKeyType == APIKeyTypeDevice
}
func (a *AuthorizedApp) IsStatsType() bool {
return a.APIKeyType == APIKeyTypeStats
}
// Realm returns the associated realm for this app. If you only need the ID,
// call .RealmID instead of a full database lookup.
func (a *AuthorizedApp) Realm(db *Database) (*Realm, error) {
var realm Realm
if err := db.db.
Model(&Realm{}).
Where("id = ?", a.RealmID).
First(&realm).
Error; err != nil {
return nil, err
}
return &realm, nil
}
// FindAuthorizedApp finds the authorized app by the given id.
func (db *Database) FindAuthorizedApp(id interface{}) (*AuthorizedApp, error) {
var app AuthorizedApp
if err := db.db.
Unscoped().
Model(AuthorizedApp{}).
Order("LOWER(name) ASC").
Where("id = ?", id).
First(&app).
Error; err != nil {
return nil, err
}
return &app, nil
}
// FindAuthorizedAppByAPIKey located an authorized app based on API key.
func (db *Database) FindAuthorizedAppByAPIKey(apiKey string) (*AuthorizedApp, error) {
logger := db.logger.Named("FindAuthorizedAppByAPIKey")
// Determine if this is a v1 or v2 key. v2 keys have colons (v1 do not).
if strings.Contains(apiKey, ".") {
// v2 API keys are HMACed in the database.
apiKey, realmID, err := db.VerifyAPIKeySignature(apiKey)
if err != nil {
logger.Warnw("failed to verify api key signature", "error", err)
return nil, gorm.ErrRecordNotFound
}
hmacedKeys, err := db.generateAPIKeyHMACs(apiKey)
if err != nil {
logger.Warnw("failed to create hmac", "error", err)
return nil, gorm.ErrRecordNotFound
}
// Find the API key that matches the constraints.
var app AuthorizedApp
if err := db.db.
Where("api_key IN (?)", hmacedKeys).
Where("realm_id = ?", realmID).
First(&app).
Error; err != nil {
return nil, err
}
return &app, nil
}
// The API key is either invalid or a v1 API key.
hmacedKeys, err := db.generateAPIKeyHMACs(apiKey)
if err != nil {
logger.Warnw("failed to create hmac", "error", err)
return nil, gorm.ErrRecordNotFound
}
var app AuthorizedApp
if err := db.db.
Or("api_key IN (?)", hmacedKeys).
First(&app).
Error; err != nil {
return nil, err
}
return &app, nil
}
// Stats returns the usage statistics for this app. If no stats exist, it
// returns an empty array.
func (a *AuthorizedApp) Stats(db *Database) (AuthorizedAppStats, error) {
stop := timeutils.UTCMidnight(time.Now())
start := stop.Add(30 * -24 * time.Hour)
if start.After(stop) {
return nil, ErrBadDateRange
}
// Pull the stats by generating the full date range, then join on stats. This
// will ensure we have a full list (with values of 0 where appropriate) to
// ensure continuity in graphs.
sql := `
SELECT
d.date AS date,
$1 AS authorized_app_id,
$2 AS authorized_app_name,
$3 AS authorized_app_type,
COALESCE(s.codes_issued, 0) AS codes_issued,
COALESCE(s.codes_claimed, 0) AS codes_claimed,
COALESCE(s.codes_invalid, 0) AS codes_invalid,
COALESCE(s.tokens_claimed, 0) AS tokens_claimed,
COALESCE(s.tokens_invalid, 0) AS tokens_invalid
FROM (
SELECT date::date FROM generate_series($4, $5, '1 day'::interval) date
) d
LEFT JOIN authorized_app_stats s ON s.authorized_app_id = $1 AND s.date = d.date
ORDER BY date DESC`
var stats []*AuthorizedAppStat
if err := db.db.Raw(sql, a.ID, a.Name, a.APIKeyType.Display(), start, stop).Scan(&stats).Error; err != nil {
if IsNotFound(err) {
return stats, nil
}
return nil, err
}
return stats, nil
}
// StatsCached is stats, but cached.
func (a *AuthorizedApp) StatsCached(ctx context.Context, db *Database, cacher cache.Cacher) (AuthorizedAppStats, error) {
if cacher == nil {
return nil, fmt.Errorf("cacher cannot be nil")
}
var stats AuthorizedAppStats
cacheKey := &cache.Key{
Namespace: "stats:app",
Key: strconv.FormatUint(uint64(a.ID), 10),
}
if err := cacher.Fetch(ctx, cacheKey, &stats, 30*time.Minute, func() (interface{}, error) {
return a.Stats(db)
}); err != nil {
return nil, err
}
return stats, nil
}
// SaveAuthorizedApp saves the authorized app.
func (db *Database) SaveAuthorizedApp(a *AuthorizedApp, actor Auditable) error {
if a == nil {
return fmt.Errorf("provided API key is nil")
}
if actor == nil {
return fmt.Errorf("auditing actor is nil")
}
return db.db.Transaction(func(tx *gorm.DB) error {
var audits []*AuditEntry
var existing AuthorizedApp
if err := tx.
Unscoped().
Model(&AuthorizedApp{}).
Where("id = ?", a.ID).
First(&existing).
Error; err != nil && !IsNotFound(err) {
return fmt.Errorf("failed to get existing API key: %w", err)
}
// Save the app
if err := tx.Unscoped().Save(a).Error; err != nil {
return err
}
// Brand new app?
if existing.ID == 0 {
audit := BuildAuditEntry(actor, "created API key", a, a.RealmID)
audits = append(audits, audit)
} else {
if existing.Name != a.Name {
audit := BuildAuditEntry(actor, "updated API key name", a, a.RealmID)
audit.Diff = stringDiff(existing.Name, a.Name)
audits = append(audits, audit)
}
if existing.DeletedAt != a.DeletedAt {
audit := BuildAuditEntry(actor, "updated API key enabled", a, a.RealmID)
audit.Diff = boolDiff(existing.DeletedAt == nil, a.DeletedAt == nil)
audits = append(audits, audit)
}
}
// Save all audits
for _, audit := range audits {
if err := tx.Save(audit).Error; err != nil {
return fmt.Errorf("failed to save audits: %w", err)
}
}
return nil
})
}
// GenerateAPIKeyHMAC generates the HMAC of the provided API key using the
// latest HMAC key.
func (db *Database) GenerateAPIKeyHMAC(apiKey string) (string, error) {
keys := db.config.APIKeyDatabaseHMAC
if len(keys) < 1 {
return "", fmt.Errorf("expected at least 1 hmac key")
}
sig := hmac.New(sha512.New, keys[0])
if _, err := sig.Write([]byte(apiKey)); err != nil {
return "", err
}
return base64.RawURLEncoding.EncodeToString(sig.Sum(nil)), nil
}
// generateAPIKeyHMACs creates a permutation of all possible API keys based on
// the provided HMACs. It's primarily used to find an API key in the database.
func (db *Database) generateAPIKeyHMACs(apiKey string) ([]string, error) {
sigs := make([]string, 0, len(db.config.APIKeyDatabaseHMAC))
for _, key := range db.config.APIKeyDatabaseHMAC {
sig := hmac.New(sha512.New, key)
if _, err := sig.Write([]byte(apiKey)); err != nil {
return nil, err
}
sigs = append(sigs, base64.RawURLEncoding.EncodeToString(sig.Sum(nil)))
}
return sigs, nil
}
// GenerateAPIKey generates a new API key that is bound to the given realm. This
// API key is NOT stored in the database. API keys are of the format:
//
// key:realmID:hex(hmac)
//
func (db *Database) GenerateAPIKey(realmID uint) (string, error) {
// Create the "key" parts.
buf := make([]byte, apiKeyBytes)
if _, err := rand.Read(buf); err != nil {
return "", fmt.Errorf("failed to rand: %w", err)
}
key := base64.RawURLEncoding.EncodeToString(buf)
// Add the realm ID.
key = key + "." + strconv.FormatUint(uint64(realmID), 10)
// Create the HMAC of the key and the realm.
sig, err := db.GenerateAPIKeySignature(key)
if err != nil {
return "", fmt.Errorf("failed to sign: %w", err)
}
// Put it all together.
key = key + "." + base64.RawURLEncoding.EncodeToString(sig)
return key, nil
}
// GenerateAPIKeySignature returns all possible signatures of the given key.
func (db *Database) GenerateAPIKeySignature(apiKey string) ([]byte, error) {
keys := db.config.APIKeySignatureHMAC
if len(keys) < 1 {
return nil, fmt.Errorf("expected at least 1 hmac key")
}
sig := hmac.New(sha512.New, keys[0])
if _, err := sig.Write([]byte(apiKey)); err != nil {
return nil, err
}
return sig.Sum(nil), nil
}
// generateAPIKeySignatures returns all possible signatures of the given key.
func (db *Database) generateAPIKeySignatures(apiKey string) ([][]byte, error) {
sigs := make([][]byte, 0, len(db.config.APIKeySignatureHMAC))
for _, key := range db.config.APIKeySignatureHMAC {
sig := hmac.New(sha512.New, key)
if _, err := sig.Write([]byte(apiKey)); err != nil {
return nil, err
}
sigs = append(sigs, sig.Sum(nil))
}
return sigs, nil
}
// VerifyAPIKeySignature verifies the signature matches the expected value for
// the key. It does this by computing the expected signature and then doing a
// constant-time comparison against the provided signature.
func (db *Database) VerifyAPIKeySignature(key string) (string, uint64, error) {
logger := db.logger.Named("VerifyAPIKeySignature")
key = project.TrimSpaceAndNonPrintable(key)
parts := strings.SplitN(key, ".", 3)
if len(parts) != 3 {
return "", 0, fmt.Errorf("invalid API key format: wrong number of parts")
}
// Decode the provided signature.
gotSigStr := parts[2]
gotSig, err := base64util.DecodeString(gotSigStr)
if err != nil {
return "", 0, fmt.Errorf("invalid API key format: decoding failed: %w", err)
}
gotKey := parts[0]
if gotKey == "" {
return "", 0, fmt.Errorf("invalid API key format: missing API key")
}
gotRealm := parts[1]
if gotRealm == "" {
return "", 0, fmt.Errorf("invalid API key format: missing realm")
}
// Generate the expected signature.
expSigs, err := db.generateAPIKeySignatures(gotKey + "." + gotRealm)
if err != nil {
return "", 0, fmt.Errorf("invalid API key format: signature generation: %w", err)
}
found := false
for _, expSig := range expSigs {
// Compare (this is an equal-time algorithm).
if hmac.Equal(gotSig, expSig) {
found = true
// break // No! Don't break - we want constant time!
}
}
if !found {
logger.Debugw("API key signature did not match any expected values",
"got", gotSig,
"expected", expSigs)
return "", 0, fmt.Errorf("invalid API key format: signature invalid")
}
// API key stays encoded.
apiKey := parts[0]
// If we got this far, validation succeeded, parse the realm as a uint.
realmID, err := strconv.ParseUint(parts[1], 10, 64)
if err != nil {
return "", 0, fmt.Errorf("invalid API key format")
}
return apiKey, realmID, nil
}
func (a *AuthorizedApp) AuditID() string {
return fmt.Sprintf("authorized_apps:%d", a.ID)
}
func (a *AuthorizedApp) AuditDisplay() string {
return a.Name
}
// PurgeAuthorizedApps will delete authorized apps that have been deleted for
// more than the specified time.
func (db *Database) PurgeAuthorizedApps(maxAge time.Duration) (int64, error) {
if maxAge > 0 {
maxAge = -1 * maxAge
}
deleteBefore := time.Now().UTC().Add(maxAge)
result := db.db.
Unscoped().
Where("deleted_at IS NOT NULL AND deleted_at < ?", deleteBefore).
Delete(&AuthorizedApp{})
return result.RowsAffected, result.Error
}