2018-10-23 06:34:02 +00:00
|
|
|
package command
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"fmt"
|
|
|
|
|
2019-06-20 19:14:58 +00:00
|
|
|
log "github.com/hashicorp/go-hclog"
|
2018-10-23 06:34:02 +00:00
|
|
|
"github.com/hashicorp/vault/vault"
|
2018-10-23 08:12:23 +00:00
|
|
|
vaultseal "github.com/hashicorp/vault/vault/seal"
|
2019-06-20 19:14:58 +00:00
|
|
|
shamirseal "github.com/hashicorp/vault/vault/seal/shamir"
|
2018-10-23 06:34:02 +00:00
|
|
|
"github.com/pkg/errors"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
onEnterprise = false
|
|
|
|
)
|
|
|
|
|
2019-06-20 19:14:58 +00:00
|
|
|
func adjustCoreForSealMigration(logger log.Logger, core *vault.Core, barrierSeal, unwrapSeal vault.Seal) error {
|
2018-10-23 06:34:02 +00:00
|
|
|
existBarrierSealConfig, existRecoverySealConfig, err := core.PhysicalSealConfigs(context.Background())
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("Error checking for existing seal: %s", err)
|
|
|
|
}
|
|
|
|
|
2019-03-04 22:11:56 +00:00
|
|
|
// If we don't have an existing config or if it's the deprecated auto seal
|
|
|
|
// which needs an upgrade, skip out
|
|
|
|
if existBarrierSealConfig == nil || existBarrierSealConfig.Type == vaultseal.HSMAutoDeprecated {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
if unwrapSeal == nil {
|
|
|
|
// We have the same barrier type and the unwrap seal is nil so we're not
|
|
|
|
// migrating from same to same, IOW we assume it's not a migration
|
|
|
|
if existBarrierSealConfig.Type == barrierSeal.BarrierType() {
|
2018-10-23 06:34:02 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-03-04 22:11:56 +00:00
|
|
|
// If we're not coming from Shamir, and the existing type doesn't match
|
|
|
|
// the barrier type, we need both the migration seal and the new seal
|
|
|
|
if existBarrierSealConfig.Type != vaultseal.Shamir && barrierSeal.BarrierType() != vaultseal.Shamir {
|
|
|
|
return errors.New(`Trying to migrate from auto-seal to auto-seal but no "disabled" seal stanza found`)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if unwrapSeal.BarrierType() == vaultseal.Shamir {
|
|
|
|
return errors.New("Shamir seals cannot be set disabled (they should simply not be set)")
|
2018-10-23 06:34:02 +00:00
|
|
|
}
|
2019-03-04 22:11:56 +00:00
|
|
|
}
|
2018-10-23 06:34:02 +00:00
|
|
|
|
2019-03-04 22:11:56 +00:00
|
|
|
var existSeal vault.Seal
|
|
|
|
var newSeal vault.Seal
|
|
|
|
|
|
|
|
if existBarrierSealConfig.Type == barrierSeal.BarrierType() {
|
|
|
|
// In this case our migration seal is set so we are using it
|
|
|
|
// (potentially) for unwrapping. Set it on core for that purpose then
|
|
|
|
// exit.
|
|
|
|
core.SetSealsForMigration(nil, nil, unwrapSeal)
|
|
|
|
return nil
|
|
|
|
}
|
2018-10-23 06:34:02 +00:00
|
|
|
|
2019-03-04 22:11:56 +00:00
|
|
|
if existBarrierSealConfig.Type != vaultseal.Shamir && existRecoverySealConfig == nil {
|
|
|
|
return errors.New(`Recovery seal configuration not found for existing seal`)
|
|
|
|
}
|
2018-10-23 06:34:02 +00:00
|
|
|
|
2019-03-04 22:11:56 +00:00
|
|
|
switch existBarrierSealConfig.Type {
|
|
|
|
case vaultseal.Shamir:
|
|
|
|
// The value reflected in config is what we're going to
|
2019-06-20 19:14:58 +00:00
|
|
|
existSeal = vault.NewDefaultSeal(shamirseal.NewSeal(logger.Named("shamir")))
|
2019-03-04 22:11:56 +00:00
|
|
|
newSeal = barrierSeal
|
|
|
|
newBarrierSealConfig := &vault.SealConfig{
|
|
|
|
Type: newSeal.BarrierType(),
|
|
|
|
SecretShares: 1,
|
|
|
|
SecretThreshold: 1,
|
|
|
|
StoredShares: 1,
|
2018-10-23 06:34:02 +00:00
|
|
|
}
|
2019-03-04 22:11:56 +00:00
|
|
|
newSeal.SetCachedBarrierConfig(newBarrierSealConfig)
|
|
|
|
newSeal.SetCachedRecoveryConfig(existBarrierSealConfig)
|
2018-10-23 06:34:02 +00:00
|
|
|
|
2019-03-04 22:11:56 +00:00
|
|
|
default:
|
|
|
|
if onEnterprise && barrierSeal.BarrierType() == vaultseal.Shamir {
|
|
|
|
return errors.New("Migrating from autoseal to Shamir seal is not currently supported on Vault Enterprise")
|
|
|
|
}
|
|
|
|
|
|
|
|
// If we're not cominng from Shamir we expect the previous seal to be
|
|
|
|
// in the config and disabled.
|
|
|
|
existSeal = unwrapSeal
|
|
|
|
newSeal = barrierSeal
|
|
|
|
newSeal.SetCachedBarrierConfig(existRecoverySealConfig)
|
2018-10-23 06:34:02 +00:00
|
|
|
}
|
|
|
|
|
2019-03-04 22:11:56 +00:00
|
|
|
core.SetSealsForMigration(existSeal, newSeal, unwrapSeal)
|
|
|
|
|
2018-10-23 06:34:02 +00:00
|
|
|
return nil
|
|
|
|
}
|