2022-04-19 11:02:02 -04:00
|
|
|
package cloudcmd
|
|
|
|
|
|
|
|
import (
|
2022-04-27 05:17:41 -04:00
|
|
|
"crypto/sha256"
|
|
|
|
"encoding/base64"
|
2022-04-19 11:02:02 -04:00
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
"strings"
|
|
|
|
|
2022-06-01 09:08:42 -04:00
|
|
|
"github.com/edgelesssys/constellation/internal/atls"
|
|
|
|
"github.com/edgelesssys/constellation/internal/attestation/azure"
|
|
|
|
"github.com/edgelesssys/constellation/internal/attestation/gcp"
|
|
|
|
"github.com/edgelesssys/constellation/internal/attestation/qemu"
|
|
|
|
"github.com/edgelesssys/constellation/internal/attestation/vtpm"
|
2022-06-07 05:08:44 -04:00
|
|
|
"github.com/edgelesssys/constellation/internal/cloud/cloudprovider"
|
2022-04-19 11:02:02 -04:00
|
|
|
"github.com/edgelesssys/constellation/internal/config"
|
|
|
|
)
|
|
|
|
|
2022-05-04 03:13:46 -04:00
|
|
|
const warningStr = "Warning: not verifying the Constellation cluster's %s measurements\n"
|
2022-04-27 05:17:41 -04:00
|
|
|
|
2022-04-19 11:02:02 -04:00
|
|
|
type Validators struct {
|
2022-04-27 05:17:41 -04:00
|
|
|
provider cloudprovider.Provider
|
|
|
|
pcrs map[uint32][]byte
|
|
|
|
validators []atls.Validator
|
2022-04-19 11:02:02 -04:00
|
|
|
}
|
|
|
|
|
2022-04-27 05:17:41 -04:00
|
|
|
func NewValidators(provider cloudprovider.Provider, config *config.Config) (*Validators, error) {
|
2022-04-19 11:02:02 -04:00
|
|
|
v := Validators{}
|
2022-04-27 05:17:41 -04:00
|
|
|
if provider == cloudprovider.Unknown {
|
|
|
|
return nil, errors.New("unknown cloud provider")
|
|
|
|
}
|
|
|
|
v.provider = provider
|
|
|
|
if err := v.setPCRs(config); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return &v, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (v *Validators) UpdateInitPCRs(ownerID, clusterID string) error {
|
|
|
|
if err := v.updatePCR(uint32(vtpm.PCRIndexOwnerID), ownerID); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return v.updatePCR(uint32(vtpm.PCRIndexClusterID), clusterID)
|
|
|
|
}
|
|
|
|
|
|
|
|
// updatePCR adds a new entry to the pcr map of v, or removes the key if the input is an empty string.
|
|
|
|
//
|
|
|
|
// When adding, the input is first decoded from base64.
|
|
|
|
// We then calculate the expected PCR by hashing the input using SHA256,
|
|
|
|
// appending expected PCR for initialization, and then hashing once more.
|
|
|
|
func (v *Validators) updatePCR(pcrIndex uint32, encoded string) error {
|
|
|
|
if encoded == "" {
|
|
|
|
delete(v.pcrs, pcrIndex)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
decoded, err := base64.StdEncoding.DecodeString(encoded)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("input [%s] is not base64 encoded: %w", encoded, err)
|
|
|
|
}
|
|
|
|
// new_pcr_value := hash(old_pcr_value || data_to_extend)
|
|
|
|
// Since we use the TPM2_PCR_Event call to extend the PCR, data_to_extend is the hash of our input
|
|
|
|
hashedInput := sha256.Sum256(decoded)
|
|
|
|
expectedPcr := sha256.Sum256(append(v.pcrs[pcrIndex], hashedInput[:]...))
|
|
|
|
v.pcrs[pcrIndex] = expectedPcr[:]
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (v *Validators) setPCRs(config *config.Config) error {
|
|
|
|
switch v.provider {
|
2022-04-19 11:02:02 -04:00
|
|
|
case cloudprovider.GCP:
|
2022-05-16 12:54:25 -04:00
|
|
|
gcpPCRs := config.Provider.GCP.Measurements
|
2022-04-19 11:02:02 -04:00
|
|
|
if err := v.checkPCRs(gcpPCRs); err != nil {
|
2022-04-27 05:17:41 -04:00
|
|
|
return err
|
2022-04-19 11:02:02 -04:00
|
|
|
}
|
2022-04-27 05:17:41 -04:00
|
|
|
v.pcrs = gcpPCRs
|
2022-04-19 11:02:02 -04:00
|
|
|
case cloudprovider.Azure:
|
2022-05-16 12:54:25 -04:00
|
|
|
azurePCRs := config.Provider.Azure.Measurements
|
2022-04-19 11:02:02 -04:00
|
|
|
if err := v.checkPCRs(azurePCRs); err != nil {
|
2022-04-27 05:17:41 -04:00
|
|
|
return err
|
2022-04-19 11:02:02 -04:00
|
|
|
}
|
2022-04-27 05:17:41 -04:00
|
|
|
v.pcrs = azurePCRs
|
2022-05-02 04:54:54 -04:00
|
|
|
case cloudprovider.QEMU:
|
2022-05-16 12:54:25 -04:00
|
|
|
qemuPCRs := config.Provider.QEMU.Measurements
|
2022-05-02 04:54:54 -04:00
|
|
|
if err := v.checkPCRs(qemuPCRs); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
v.pcrs = qemuPCRs
|
2022-04-19 11:02:02 -04:00
|
|
|
}
|
2022-04-27 05:17:41 -04:00
|
|
|
return nil
|
2022-04-19 11:02:02 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// V returns validators as list of atls.Validator.
|
|
|
|
func (v *Validators) V() []atls.Validator {
|
2022-04-27 05:17:41 -04:00
|
|
|
v.updateValidators()
|
2022-04-19 11:02:02 -04:00
|
|
|
return v.validators
|
|
|
|
}
|
|
|
|
|
2022-04-27 05:17:41 -04:00
|
|
|
func (v *Validators) updateValidators() {
|
|
|
|
switch v.provider {
|
|
|
|
case cloudprovider.GCP:
|
|
|
|
v.validators = []atls.Validator{
|
|
|
|
gcp.NewValidator(v.pcrs),
|
|
|
|
}
|
|
|
|
case cloudprovider.Azure:
|
|
|
|
v.validators = []atls.Validator{
|
|
|
|
azure.NewValidator(v.pcrs),
|
2022-04-19 11:02:02 -04:00
|
|
|
}
|
2022-05-02 04:54:54 -04:00
|
|
|
case cloudprovider.QEMU:
|
|
|
|
v.validators = []atls.Validator{
|
|
|
|
qemu.NewValidator(v.pcrs),
|
|
|
|
}
|
2022-04-19 11:02:02 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-27 05:17:41 -04:00
|
|
|
// Warnings returns warnings for the specifc PCR values that are not verified.
|
|
|
|
//
|
|
|
|
// PCR allocation inspired by https://link.springer.com/chapter/10.1007/978-1-4302-6584-9_12#Tab1
|
|
|
|
func (v *Validators) Warnings() string {
|
2022-04-19 11:02:02 -04:00
|
|
|
sb := &strings.Builder{}
|
|
|
|
|
2022-04-27 05:17:41 -04:00
|
|
|
if v.pcrs[0] == nil || v.pcrs[1] == nil {
|
2022-04-19 11:02:02 -04:00
|
|
|
writeFmt(sb, warningStr, "BIOS")
|
|
|
|
}
|
|
|
|
|
2022-04-27 05:17:41 -04:00
|
|
|
if v.pcrs[2] == nil || v.pcrs[3] == nil {
|
2022-04-19 11:02:02 -04:00
|
|
|
writeFmt(sb, warningStr, "OPROM")
|
|
|
|
}
|
|
|
|
|
2022-04-27 05:17:41 -04:00
|
|
|
if v.pcrs[4] == nil || v.pcrs[5] == nil {
|
2022-04-19 11:02:02 -04:00
|
|
|
writeFmt(sb, warningStr, "MBR")
|
|
|
|
}
|
|
|
|
|
|
|
|
// GRUB measures kernel command line and initrd into pcrs 8 and 9
|
2022-04-27 05:17:41 -04:00
|
|
|
if v.pcrs[8] == nil {
|
2022-04-19 11:02:02 -04:00
|
|
|
writeFmt(sb, warningStr, "kernel command line")
|
|
|
|
}
|
2022-04-27 05:17:41 -04:00
|
|
|
if v.pcrs[9] == nil {
|
2022-04-19 11:02:02 -04:00
|
|
|
writeFmt(sb, warningStr, "initrd")
|
|
|
|
}
|
|
|
|
|
2022-04-27 05:17:41 -04:00
|
|
|
return sb.String()
|
|
|
|
}
|
|
|
|
|
|
|
|
// WarningsIncludeInit returns warnings for the specifc PCR values that are not verified.
|
|
|
|
// Warnings regarding the initialization are included.
|
|
|
|
//
|
|
|
|
// PCR allocation inspired by https://link.springer.com/chapter/10.1007/978-1-4302-6584-9_12#Tab1
|
|
|
|
func (v *Validators) WarningsIncludeInit() string {
|
|
|
|
warnings := v.Warnings()
|
|
|
|
if v.pcrs[uint32(vtpm.PCRIndexOwnerID)] == nil || v.pcrs[uint32(vtpm.PCRIndexClusterID)] == nil {
|
|
|
|
warnings = warnings + fmt.Sprintf(warningStr, "initialization status")
|
|
|
|
}
|
|
|
|
|
|
|
|
return warnings
|
|
|
|
}
|
|
|
|
|
|
|
|
func (v *Validators) checkPCRs(pcrs map[uint32][]byte) error {
|
|
|
|
if len(pcrs) == 0 {
|
|
|
|
return errors.New("no PCR values provided")
|
|
|
|
}
|
|
|
|
for k, v := range pcrs {
|
|
|
|
if len(v) != 32 {
|
|
|
|
return fmt.Errorf("bad config: PCR[%d]: expected length: %d, but got: %d", k, 32, len(v))
|
|
|
|
}
|
2022-04-19 11:02:02 -04:00
|
|
|
}
|
2022-04-27 05:17:41 -04:00
|
|
|
return nil
|
2022-04-19 11:02:02 -04:00
|
|
|
}
|
|
|
|
|
2022-04-28 04:28:28 -04:00
|
|
|
func writeFmt(sb *strings.Builder, fmtStr string, args ...any) {
|
2022-04-19 11:02:02 -04:00
|
|
|
sb.WriteString(fmt.Sprintf(fmtStr, args...))
|
|
|
|
}
|