2022-09-05 03:06:08 -04:00
|
|
|
/*
|
|
|
|
Copyright (c) Edgeless Systems GmbH
|
|
|
|
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2022-04-21 10:27:34 -04:00
|
|
|
package qemu
|
|
|
|
|
|
|
|
import (
|
2023-03-21 07:46:49 -04:00
|
|
|
"context"
|
2022-04-21 10:27:34 -04:00
|
|
|
"crypto"
|
|
|
|
|
2022-09-21 07:47:57 -04:00
|
|
|
"github.com/edgelesssys/constellation/v2/internal/attestation/vtpm"
|
2023-04-06 11:00:56 -04:00
|
|
|
"github.com/edgelesssys/constellation/v2/internal/config"
|
2023-03-29 03:30:13 -04:00
|
|
|
"github.com/edgelesssys/constellation/v2/internal/variant"
|
2023-03-06 03:15:52 -05:00
|
|
|
"github.com/google/go-tpm-tools/proto/attest"
|
2022-04-21 10:27:34 -04:00
|
|
|
"github.com/google/go-tpm/tpm2"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Validator for QEMU VM attestation.
|
|
|
|
type Validator struct {
|
2023-03-29 03:30:13 -04:00
|
|
|
variant.QEMUVTPM
|
2022-04-21 10:27:34 -04:00
|
|
|
*vtpm.Validator
|
|
|
|
}
|
|
|
|
|
2022-10-24 18:47:12 -04:00
|
|
|
// NewValidator initializes a new QEMU validator with the provided PCR values.
|
2023-05-03 05:11:53 -04:00
|
|
|
func NewValidator(cfg *config.QEMUVTPM, log vtpm.AttestationLogger) *Validator {
|
2022-04-21 10:27:34 -04:00
|
|
|
return &Validator{
|
|
|
|
Validator: vtpm.NewValidator(
|
2023-04-06 11:00:56 -04:00
|
|
|
cfg.Measurements,
|
2022-04-21 10:27:34 -04:00
|
|
|
unconditionalTrust,
|
2023-03-06 03:15:52 -05:00
|
|
|
func(vtpm.AttestationDocument, *attest.MachineState) error { return nil },
|
2022-08-29 10:41:09 -04:00
|
|
|
log,
|
2022-04-21 10:27:34 -04:00
|
|
|
),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// unconditionalTrust returns the given public key as the trusted attestation key.
|
2023-03-21 07:46:49 -04:00
|
|
|
func unconditionalTrust(_ context.Context, attDoc vtpm.AttestationDocument, _ []byte) (crypto.PublicKey, error) {
|
|
|
|
pubArea, err := tpm2.DecodePublic(attDoc.Attestation.AkPub)
|
2022-04-21 10:27:34 -04:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return pubArea.Key()
|
|
|
|
}
|