-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathparser_test.go
More file actions
561 lines (505 loc) · 13.8 KB
/
parser_test.go
File metadata and controls
561 lines (505 loc) · 13.8 KB
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
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
package awsnitroverifier
import (
_ "embed"
"encoding/base64"
"encoding/pem"
"testing"
"time"
"github.com/fxamacker/cbor/v2"
"github.com/stretchr/testify/require"
)
//go:embed testdata/turnkey-boot-attestation.base64
var awsNitroAttestationBase64 string
//go:embed testdata/aws_turnkey_valid_cert_chain.pem
var awsNitroCertChainPEM []byte
// ============================================================================
// Helper Functions
// ============================================================================
// loadNitroAttestationPayload loads and extracts the attestation document from testdata
// The test data is from a real-world AWS Nitro Enclave attestation.
func loadNitroAttestationPayload(t *testing.T) []byte {
t.Helper()
rawAttestation, err := base64.StdEncoding.DecodeString(awsNitroAttestationBase64)
require.NoError(t, err, "failed to decode base64")
coseSign1, err := parseCOSESign1(rawAttestation)
require.NoError(t, err, "failed to parse COSE_Sign1")
return coseSign1.Payload
}
// loadFirstCertFromPEM loads the first certificate from PEM data
func loadFirstCertFromPEM(t *testing.T, pemData []byte) []byte {
t.Helper()
block, _ := pem.Decode(pemData)
require.NotNil(t, block, "failed to decode PEM")
require.Equal(t, "CERTIFICATE", block.Type)
return block.Bytes
}
// ============================================================================
// Tests: parseCOSESign1
// ============================================================================
func TestParseCOSESign1(t *testing.T) {
rawAttestation, err := base64.StdEncoding.DecodeString(awsNitroAttestationBase64)
require.NoError(t, err)
tests := []struct {
name string
data []byte
wantErr bool
errContains string
validate func(t *testing.T, cose *coseSign1)
}{
{
name: "valid AWS Nitro COSE_Sign1",
data: rawAttestation,
wantErr: false,
validate: func(t *testing.T, cose *coseSign1) {
require.NotNil(t, cose.ProtectedHeaders)
require.NotNil(t, cose.Payload)
require.NotNil(t, cose.Signature)
require.NotEmpty(t, cose.ProtectedHeaders)
require.NotEmpty(t, cose.Payload)
require.NotEmpty(t, cose.Signature)
},
},
{
name: "empty data",
data: []byte{},
wantErr: true,
errContains: "empty",
},
{
name: "invalid CBOR",
data: []byte{0xff, 0xff, 0xff},
wantErr: true,
errContains: "failed to unmarshal",
},
{
name: "wrong number of elements",
data: func() []byte {
data, _ := cbor.Marshal([]interface{}{[]byte("header"), []byte("payload")})
return data
}(),
wantErr: true,
errContains: "expected 4 elements",
},
{
name: "invalid protected headers type",
data: func() []byte {
data, _ := cbor.Marshal([]interface{}{"not bytes", map[string]interface{}{}, []byte("payload"), []byte("sig")})
return data
}(),
wantErr: true,
errContains: "invalid protected headers type",
},
{
name: "invalid payload type",
data: func() []byte {
data, _ := cbor.Marshal([]interface{}{[]byte("header"), map[string]interface{}{}, "not bytes", []byte("sig")})
return data
}(),
wantErr: true,
errContains: "invalid payload type",
},
{
name: "invalid signature type",
data: func() []byte {
data, _ := cbor.Marshal([]interface{}{[]byte("header"), map[string]interface{}{}, []byte("payload"), "not bytes"})
return data
}(),
wantErr: true,
errContains: "invalid signature type",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
cose, err := parseCOSESign1(tt.data)
if tt.wantErr {
require.Error(t, err)
if tt.errContains != "" {
require.Contains(t, err.Error(), tt.errContains)
}
return
}
require.NoError(t, err)
require.NotNil(t, cose)
if tt.validate != nil {
tt.validate(t, cose)
}
})
}
}
// ============================================================================
// Tests: ParseAttestationDocument
// ============================================================================
func TestParseAttestationDocument(t *testing.T) {
validPayload := loadNitroAttestationPayload(t)
// Create CBOR with deeply nested structure for testing limits
deeplyNestedCBOR := createDeeplyNestedCBOR(t, 40)
// Create CBOR with large array for testing limits
largeArrayCBOR := createLargeArrayCBOR(t, 200)
tests := []struct {
name string
data []byte
wantErr bool
errContains string
validate func(t *testing.T, doc *AttestationDocument)
}{
{
name: "valid AWS Nitro attestation document",
data: validPayload,
wantErr: false,
validate: func(t *testing.T, doc *AttestationDocument) {
require.NotEmpty(t, doc.ModuleID)
require.NotZero(t, doc.Timestamp)
require.NotEmpty(t, doc.Certificate)
require.NotEmpty(t, doc.CABundle)
require.Contains(t, doc.ModuleID, "i-")
},
},
{
name: "empty data",
data: []byte{},
wantErr: true,
errContains: "empty",
},
{
name: "oversized data",
data: make([]byte, 17*1024*1024), // 17 MB
wantErr: true,
errContains: "exceeds maximum size",
},
{
name: "invalid CBOR",
data: []byte{0xff, 0xff, 0xff},
wantErr: true,
errContains: "failed to decode CBOR",
},
{
name: "CBOR with deeply nested structure",
data: deeplyNestedCBOR,
wantErr: true,
errContains: "failed to decode CBOR",
},
{
name: "CBOR with large array",
data: largeArrayCBOR,
wantErr: true,
errContains: "failed to decode CBOR",
},
{
name: "missing module_id",
data: createAttestationCBOR(t, map[string]interface{}{
"timestamp": uint64(1234567890),
"digest": "SHA384",
"pcrs": map[uint][]byte{},
"certificate": []byte("cert"),
"cabundle": [][]byte{[]byte("ca")},
}),
wantErr: true,
errContains: "module_id",
},
{
name: "missing timestamp",
data: createAttestationCBOR(t, map[string]interface{}{
"module_id": "test-module",
"digest": "SHA384",
"pcrs": map[uint][]byte{},
"certificate": []byte("cert"),
"cabundle": [][]byte{[]byte("ca")},
}),
wantErr: true,
errContains: "timestamp",
},
{
name: "missing certificate",
data: createAttestationCBOR(t, map[string]interface{}{
"module_id": "test-module",
"timestamp": uint64(1234567890),
"digest": "SHA384",
"pcrs": map[uint][]byte{},
"cabundle": [][]byte{[]byte("ca")},
}),
wantErr: true,
errContains: "certificate",
},
{
name: "missing cabundle",
data: createAttestationCBOR(t, map[string]interface{}{
"module_id": "test-module",
"timestamp": uint64(1234567890),
"digest": "SHA384",
"pcrs": map[uint][]byte{},
"certificate": []byte("cert"),
}),
wantErr: true,
errContains: "cabundle",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
doc, err := parseAttestationDocument(tt.data)
if tt.wantErr {
require.Error(t, err)
if tt.errContains != "" {
require.Contains(t, err.Error(), tt.errContains)
}
return
}
require.NoError(t, err)
require.NotNil(t, doc)
if tt.validate != nil {
tt.validate(t, doc)
}
})
}
}
// ============================================================================
// Tests: ExtractCertificateInfo
// ============================================================================
func TestExtractCertificateInfo(t *testing.T) {
validCertDER := loadFirstCertFromPEM(t, awsNitroCertChainPEM)
tests := []struct {
name string
certDER []byte
wantErr bool
errContains string
validate func(t *testing.T, info *certificateInfo)
}{
{
name: "valid certificate from AWS Nitro chain",
certDER: validCertDER,
wantErr: false,
validate: func(t *testing.T, info *certificateInfo) {
require.NotZero(t, info.NotBefore)
require.NotZero(t, info.NotAfter)
require.NotEmpty(t, info.Subject)
require.NotEmpty(t, info.Issuer)
require.NotEmpty(t, info.SerialNumber)
require.NotNil(t, info.Certificate)
require.True(t, info.NotBefore.Before(info.NotAfter))
},
},
{
name: "empty certificate data",
certDER: []byte{},
wantErr: true,
errContains: "empty",
},
{
name: "oversized certificate data",
certDER: make([]byte, 11*1024), // 11 KB
wantErr: true,
errContains: "exceeds maximum size",
},
{
name: "invalid DER data",
certDER: []byte{0xff, 0xff, 0xff, 0xff},
wantErr: true,
errContains: "failed to parse certificate",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
info, err := extractCertificateInfo(tt.certDER)
if tt.wantErr {
require.Error(t, err)
if tt.errContains != "" {
require.Contains(t, err.Error(), tt.errContains)
}
return
}
require.NoError(t, err)
require.NotNil(t, info)
if tt.validate != nil {
tt.validate(t, info)
}
})
}
}
// ============================================================================
// Tests: ValidateCertificateTimestamp
// ============================================================================
func TestValidateCertificateTimestamp(t *testing.T) {
validCert := &certificateInfo{
NotBefore: time.Date(2025, 1, 1, 0, 0, 0, 0, time.UTC),
NotAfter: time.Date(2025, 12, 31, 23, 59, 59, 0, time.UTC),
}
tests := []struct {
name string
certInfo *certificateInfo
checkTime time.Time
wantErr bool
errContains string
}{
{
name: "valid time within range",
certInfo: validCert,
checkTime: time.Date(2025, 6, 15, 12, 0, 0, 0, time.UTC),
wantErr: false,
},
{
name: "valid time at NotBefore",
certInfo: validCert,
checkTime: time.Date(2025, 1, 1, 0, 0, 0, 0, time.UTC),
wantErr: false,
},
{
name: "valid time at NotAfter",
certInfo: validCert,
checkTime: time.Date(2025, 12, 31, 23, 59, 59, 0, time.UTC),
wantErr: false,
},
{
name: "nil certInfo",
certInfo: nil,
checkTime: time.Now(),
wantErr: true,
errContains: "nil",
},
{
name: "zero checkTime",
certInfo: validCert,
checkTime: time.Time{},
wantErr: true,
errContains: "zero",
},
{
name: "time before NotBefore",
certInfo: validCert,
checkTime: time.Date(2024, 12, 31, 23, 59, 59, 0, time.UTC),
wantErr: true,
errContains: "not yet valid",
},
{
name: "time after NotAfter",
certInfo: validCert,
checkTime: time.Date(2026, 1, 1, 0, 0, 1, 0, time.UTC),
wantErr: true,
errContains: "expired",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
err := validateCertificateTimestamp(tt.certInfo, tt.checkTime)
if tt.wantErr {
require.Error(t, err)
if tt.errContains != "" {
require.Contains(t, err.Error(), tt.errContains)
}
return
}
require.NoError(t, err)
})
}
}
// ============================================================================
// Tests: AttestationDocument.Validate
// ============================================================================
func TestAttestationDocumentValidate(t *testing.T) {
validDoc := &AttestationDocument{
ModuleID: "test-module",
Timestamp: 1234567890,
Certificate: []byte("cert"),
CABundle: [][]byte{[]byte("ca")},
}
tests := []struct {
name string
doc *AttestationDocument
wantErr bool
errContains string
}{
{
name: "valid document",
doc: validDoc,
wantErr: false,
},
{
name: "missing module_id",
doc: &AttestationDocument{
Timestamp: 1234567890,
Certificate: []byte("cert"),
CABundle: [][]byte{[]byte("ca")},
},
wantErr: true,
errContains: "module_id",
},
{
name: "missing timestamp",
doc: &AttestationDocument{
ModuleID: "test-module",
Certificate: []byte("cert"),
CABundle: [][]byte{[]byte("ca")},
},
wantErr: true,
errContains: "timestamp",
},
{
name: "missing certificate",
doc: &AttestationDocument{
ModuleID: "test-module",
Timestamp: 1234567890,
CABundle: [][]byte{[]byte("ca")},
},
wantErr: true,
errContains: "certificate",
},
{
name: "missing cabundle",
doc: &AttestationDocument{
ModuleID: "test-module",
Timestamp: 1234567890,
Certificate: []byte("cert"),
},
wantErr: true,
errContains: "cabundle",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
err := tt.doc.Validate()
if tt.wantErr {
require.Error(t, err)
if tt.errContains != "" {
require.Contains(t, err.Error(), tt.errContains)
}
return
}
require.NoError(t, err)
})
}
}
// ============================================================================
// CBOR Test Helpers
// ============================================================================
func createAttestationCBOR(t *testing.T, fields map[string]interface{}) []byte {
t.Helper()
data, err := cbor.Marshal(fields)
require.NoError(t, err)
return data
}
func createDeeplyNestedCBOR(t *testing.T, depth int) []byte {
t.Helper()
// Create a deeply nested map structure
var nested interface{} = "bottom"
for i := 0; i < depth; i++ {
nested = map[string]interface{}{"level": nested}
}
data, err := cbor.Marshal(nested)
require.NoError(t, err)
return data
}
func createLargeArrayCBOR(t *testing.T, size int) []byte {
t.Helper()
// Create an array with many elements
arr := make([]int, size)
for i := 0; i < size; i++ {
arr[i] = i
}
data, err := cbor.Marshal(map[string]interface{}{
"large_array": arr,
"module_id": "test",
"timestamp": uint64(123),
"certificate": []byte("cert"),
"cabundle": [][]byte{[]byte("ca")},
})
require.NoError(t, err)
return data
}