mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-11-04 12:37:59 +00:00 
			
		
		
		
	* Add ability to migrate autoseal to autoseal This adds the ability to migrate from shamir to autoseal, autoseal to shamir, or autoseal to autoseal, by allowing multiple seal stanzas. A disabled stanza will be used as the config being migrated from; this can also be used to provide an unwrap seal on ent over multiple unseals. A new test is added to ensure that autoseal to autoseal works as expected. * Fix test * Provide default shamir info if not given in config * Linting feedback * Remove context var that isn't used * Don't run auto unseal watcher when in migration, and move SetCores to SetSealsForMigration func * Slight logic cleanup * Fix test build and fix bug * Updates * remove GetRecoveryKey function
		
			
				
	
	
		
			91 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			91 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
package command
 | 
						|
 | 
						|
import (
 | 
						|
	"context"
 | 
						|
	"fmt"
 | 
						|
 | 
						|
	"github.com/hashicorp/vault/vault"
 | 
						|
	vaultseal "github.com/hashicorp/vault/vault/seal"
 | 
						|
	"github.com/pkg/errors"
 | 
						|
)
 | 
						|
 | 
						|
var (
 | 
						|
	onEnterprise = false
 | 
						|
)
 | 
						|
 | 
						|
func adjustCoreForSealMigration(core *vault.Core, barrierSeal, unwrapSeal vault.Seal) error {
 | 
						|
	existBarrierSealConfig, existRecoverySealConfig, err := core.PhysicalSealConfigs(context.Background())
 | 
						|
	if err != nil {
 | 
						|
		return fmt.Errorf("Error checking for existing seal: %s", err)
 | 
						|
	}
 | 
						|
 | 
						|
	// 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() {
 | 
						|
			return nil
 | 
						|
		}
 | 
						|
 | 
						|
		// 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)")
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	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
 | 
						|
	}
 | 
						|
 | 
						|
	if existBarrierSealConfig.Type != vaultseal.Shamir && existRecoverySealConfig == nil {
 | 
						|
		return errors.New(`Recovery seal configuration not found for existing seal`)
 | 
						|
	}
 | 
						|
 | 
						|
	switch existBarrierSealConfig.Type {
 | 
						|
	case vaultseal.Shamir:
 | 
						|
		// The value reflected in config is what we're going to
 | 
						|
		existSeal = vault.NewDefaultSeal()
 | 
						|
		newSeal = barrierSeal
 | 
						|
		newBarrierSealConfig := &vault.SealConfig{
 | 
						|
			Type:            newSeal.BarrierType(),
 | 
						|
			SecretShares:    1,
 | 
						|
			SecretThreshold: 1,
 | 
						|
			StoredShares:    1,
 | 
						|
		}
 | 
						|
		newSeal.SetCachedBarrierConfig(newBarrierSealConfig)
 | 
						|
		newSeal.SetCachedRecoveryConfig(existBarrierSealConfig)
 | 
						|
 | 
						|
	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)
 | 
						|
	}
 | 
						|
 | 
						|
	core.SetSealsForMigration(existSeal, newSeal, unwrapSeal)
 | 
						|
 | 
						|
	return nil
 | 
						|
}
 |