You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
boundary/internal/kms/root_key_version.go

111 lines
3.4 KiB

package kms
import (
"context"
"fmt"
"github.com/hashicorp/boundary/internal/db"
"github.com/hashicorp/boundary/internal/kms/store"
wrapping "github.com/hashicorp/go-kms-wrapping"
"github.com/hashicorp/go-kms-wrapping/structwrapping"
"google.golang.org/protobuf/proto"
)
const (
DefaultRootKeyVersionTableName = "kms_root_key_version"
)
type RootKeyVersion struct {
*store.RootKeyVersion
tableName string `gorm:"-"`
}
// NewRootKeyVersion creates a new in memory root key version. No options are
// currently supported.
func NewRootKeyVersion(rootKeyId string, key []byte, opt ...Option) (*RootKeyVersion, error) {
if rootKeyId == "" {
return nil, fmt.Errorf("new root key version: missing root key id: %w", db.ErrInvalidParameter)
}
if len(key) == 0 {
return nil, fmt.Errorf("new root key version: missing key: %w", db.ErrInvalidParameter)
}
k := &RootKeyVersion{
RootKeyVersion: &store.RootKeyVersion{
RootKeyId: rootKeyId,
Key: key,
},
}
return k, nil
}
// AllocRootKeyVersion allocates a RootKeyVersion
func AllocRootKeyVersion() RootKeyVersion {
return RootKeyVersion{
RootKeyVersion: &store.RootKeyVersion{},
}
}
// Clone creates a clone of the RootKeyVersion
func (k *RootKeyVersion) Clone() interface{} {
cp := proto.Clone(k.RootKeyVersion)
return &RootKeyVersion{
RootKeyVersion: cp.(*store.RootKeyVersion),
}
}
// VetForWrite implements db.VetForWrite() interface and validates the root key
// version before it's written.
func (k *RootKeyVersion) VetForWrite(ctx context.Context, r db.Reader, opType db.OpType, opt ...db.Option) error {
if k.PrivateId == "" {
return fmt.Errorf("root key version vet for write: missing private id: %w", db.ErrInvalidParameter)
}
switch opType {
case db.CreateOp:
if k.CtKey == nil {
return fmt.Errorf("root key version vet for write: missing key: %w", db.ErrInvalidParameter)
}
if k.RootKeyId == "" {
return fmt.Errorf("root key version vet for write: missing root key id: %w", db.ErrInvalidParameter)
}
case db.UpdateOp:
return fmt.Errorf("root key version vet for write: key is immutable: %w", db.ErrInvalidParameter)
}
return nil
}
// TableName returns the tablename to override the default gorm table name
func (k *RootKeyVersion) TableName() string {
if k.tableName != "" {
return k.tableName
}
return DefaultRootKeyVersionTableName
}
// SetTableName sets the tablename and satisfies the ReplayableMessage
// interface. If the caller attempts to set the name to "" the name will be
// reset to the default name.
func (k *RootKeyVersion) SetTableName(n string) {
k.tableName = n
}
// Encrypt will encrypt the root key version's key
func (k *RootKeyVersion) Encrypt(ctx context.Context, cipher wrapping.Wrapper) error {
// structwrapping doesn't support embedding, so we'll pass in the
// store.RootKey directly
if err := structwrapping.WrapStruct(ctx, cipher, k.RootKeyVersion, nil); err != nil {
return fmt.Errorf("error encrypting kms root key version: %w", err)
}
return nil
}
// Decrypt will decrypt the root key version's key
func (k *RootKeyVersion) Decrypt(ctx context.Context, cipher wrapping.Wrapper) error {
// structwrapping doesn't support embedding, so we'll pass in the
// store.RootKeyVersion directly
if err := structwrapping.UnwrapStruct(ctx, cipher, k.RootKeyVersion, nil); err != nil {
return fmt.Errorf("error decrypting kms root key version: %w", err)
}
return nil
}