mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
82 lines
2.3 KiB
Go
82 lines
2.3 KiB
Go
|
package validator
|
||
|
|
||
|
import (
|
||
|
"encoding/asn1"
|
||
|
"fmt"
|
||
|
"sync"
|
||
|
|
||
|
"github.com/edgelesssys/constellation/coordinator/atls"
|
||
|
"github.com/edgelesssys/constellation/coordinator/attestation/azure"
|
||
|
"github.com/edgelesssys/constellation/coordinator/attestation/gcp"
|
||
|
"github.com/edgelesssys/constellation/coordinator/attestation/qemu"
|
||
|
"github.com/edgelesssys/constellation/internal/cloud/cloudprovider"
|
||
|
"github.com/edgelesssys/constellation/internal/constants"
|
||
|
"github.com/edgelesssys/constellation/internal/file"
|
||
|
"k8s.io/klog/v2"
|
||
|
)
|
||
|
|
||
|
// Updatable implements an updatable atls.Validator.
|
||
|
type Updatable struct {
|
||
|
mux sync.Mutex
|
||
|
newValidator newValidatorFunc
|
||
|
fileHandler file.Handler
|
||
|
atls.Validator
|
||
|
}
|
||
|
|
||
|
// New initializes a new updatable validator.
|
||
|
func New(csp string, fileHandler file.Handler) (*Updatable, error) {
|
||
|
var newValidator newValidatorFunc
|
||
|
switch cloudprovider.FromString(csp) {
|
||
|
case cloudprovider.Azure:
|
||
|
newValidator = func(m map[uint32][]byte) atls.Validator { return azure.NewValidator(m) }
|
||
|
case cloudprovider.GCP:
|
||
|
newValidator = func(m map[uint32][]byte) atls.Validator { return gcp.NewValidator(m) }
|
||
|
case cloudprovider.QEMU:
|
||
|
newValidator = func(m map[uint32][]byte) atls.Validator { return qemu.NewValidator(m) }
|
||
|
default:
|
||
|
return nil, fmt.Errorf("unknown cloud service provider: %q", csp)
|
||
|
}
|
||
|
|
||
|
u := &Updatable{
|
||
|
newValidator: newValidator,
|
||
|
fileHandler: fileHandler,
|
||
|
}
|
||
|
|
||
|
if err := u.Update(); err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
return u, nil
|
||
|
}
|
||
|
|
||
|
// Validate calls the validators Validate method, and prevents any updates during the call.
|
||
|
func (u *Updatable) Validate(attDoc []byte, nonce []byte) ([]byte, error) {
|
||
|
u.mux.Lock()
|
||
|
defer u.mux.Unlock()
|
||
|
return u.Validator.Validate(attDoc, nonce)
|
||
|
}
|
||
|
|
||
|
// OID returns the validators Object Identifier.
|
||
|
func (u *Updatable) OID() asn1.ObjectIdentifier {
|
||
|
return u.Validator.OID()
|
||
|
}
|
||
|
|
||
|
// Update switches out the underlying validator.
|
||
|
func (u *Updatable) Update() error {
|
||
|
u.mux.Lock()
|
||
|
defer u.mux.Unlock()
|
||
|
|
||
|
klog.V(4).Info("Updating expected measurements")
|
||
|
|
||
|
var measurements map[uint32][]byte
|
||
|
if err := u.fileHandler.ReadJSON(constants.ActivationMeasurementsFilename, &measurements); err != nil {
|
||
|
return err
|
||
|
}
|
||
|
klog.V(6).Infof("New measurements: %v", measurements)
|
||
|
|
||
|
u.Validator = u.newValidator(measurements)
|
||
|
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
type newValidatorFunc func(measurements map[uint32][]byte) atls.Validator
|