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
|
// Copyright 2022 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 testing
import (
"bytes"
"crypto/x509"
"testing"
"time"
"github.com/google/go-sev-guest/abi"
"github.com/google/go-sev-guest/kds"
"github.com/google/uuid"
)
func TestCertificatesParse(t *testing.T) {
signer, err := DefaultTestOnlyCertChain("Milan", time.Now())
if err != nil {
t.Fatal(err)
}
certBytes, err := signer.CertTableBytes()
if err != nil {
t.Fatal(err)
}
entries, err := abi.ParseSnpCertTableHeader(certBytes)
if err != nil {
t.Fatal(err)
}
var hasVcek bool
var hasVlek bool
var hasAsk bool
var hasAsvk bool
var hasArk bool
if len(entries) != 5 {
t.Errorf("ParseSnpCertTableHeader(_) returned %d entries, want 5", len(entries))
}
for _, entry := range entries {
if entry.GUID == uuid.MustParse(abi.VlekGUID) {
hasVlek = true
}
if entry.GUID == uuid.MustParse(abi.VcekGUID) {
hasVcek = true
}
if entry.GUID == uuid.MustParse(abi.AskGUID) {
hasAsk = true
}
if entry.GUID == uuid.MustParse(abi.AsvkGUID) {
hasAsvk = true
}
if entry.GUID == uuid.MustParse(abi.ArkGUID) {
hasArk = true
}
der := certBytes[entry.Offset : entry.Offset+entry.Length]
if _, err := x509.ParseCertificate(der); err != nil {
t.Errorf("could not parse certificate of %v: %v", entry.GUID, err)
}
}
if !hasVlek {
t.Errorf("fake certs missing VLEK")
}
if !hasVcek {
t.Errorf("fake certs missing VCEK")
}
if !hasAsk {
t.Errorf("fake certs missing ASK")
}
if !hasArk {
t.Errorf("fake certs missing ARK")
}
if !hasAsvk {
t.Errorf("fake certs missing ASVK")
}
if _, err := kds.VcekCertificateExtensions(signer.Vcek); err != nil {
t.Errorf("could not parse generated VCEK extensions: %v", err)
}
}
func TestCertificatesExtras(t *testing.T) {
b := &AmdSignerBuilder{
Extras: map[string][]byte{abi.ExtraPlatformInfoGUID: []byte("test")},
}
s, err := b.TestOnlyCertChain()
if err != nil {
t.Fatal(err)
}
certBytes, err := s.CertTableBytes()
if err != nil {
t.Fatal(err)
}
entries, err := abi.ParseSnpCertTableHeader(certBytes)
if err != nil {
t.Fatal(err)
}
var hasXtra bool
if len(entries) != 6 {
t.Errorf("ParseSnpCertTableHeader(_) returned %d entries, want 6", len(entries))
}
for _, entry := range entries {
if entry.GUID == uuid.MustParse(abi.ExtraPlatformInfoGUID) {
hasXtra = true
got := certBytes[entry.Offset : entry.Offset+entry.Length]
want := []byte("test")
if !bytes.Equal(got, want) {
t.Errorf("%v data is %v, want %v", abi.ExtraPlatformInfoGUID, got, want)
}
}
}
if !hasXtra {
t.Errorf("fake certs missing extra cert")
}
}
|