2021-02-15 07:26:35 +00:00
|
|
|
/*
|
|
|
|
Copyright 2021 The Ceph-CSI Authors.
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package rbd
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2021-02-16 15:56:42 +00:00
|
|
|
"errors"
|
2021-02-15 07:26:35 +00:00
|
|
|
"fmt"
|
|
|
|
"strings"
|
|
|
|
|
2021-08-26 11:43:20 +00:00
|
|
|
kmsapi "github.com/ceph/ceph-csi/internal/kms"
|
2021-02-15 07:26:35 +00:00
|
|
|
"github.com/ceph/ceph-csi/internal/util"
|
2021-08-24 15:03:25 +00:00
|
|
|
"github.com/ceph/ceph-csi/internal/util/log"
|
2021-02-16 15:56:42 +00:00
|
|
|
|
|
|
|
librbd "github.com/ceph/go-ceph/rbd"
|
2021-02-15 07:26:35 +00:00
|
|
|
)
|
|
|
|
|
2021-02-16 15:56:42 +00:00
|
|
|
// rbdEncryptionState describes the status of the process where the image is
|
|
|
|
// with respect to being encrypted.
|
2021-02-15 07:26:35 +00:00
|
|
|
type rbdEncryptionState string
|
|
|
|
|
|
|
|
const (
|
2021-02-16 15:56:42 +00:00
|
|
|
// rbdImageEncryptionUnknown means the image is not encrypted, or the
|
|
|
|
// metadata of the image can not be fetched.
|
|
|
|
rbdImageEncryptionUnknown = rbdEncryptionState("")
|
|
|
|
// rbdImageEncrypted is set in the image metadata after the image has
|
|
|
|
// been formatted with cryptsetup. Future usage of the image should
|
|
|
|
// unlock the image before mounting.
|
|
|
|
rbdImageEncrypted = rbdEncryptionState("encrypted")
|
|
|
|
// rbdImageEncryptionPrepared gets set in the image metadata once the
|
|
|
|
// passphrase for the image has been generated and stored in the KMS.
|
|
|
|
// When using the image for the first time, it needs to be encrypted
|
|
|
|
// with cryptsetup before updating the state to `rbdImageEncrypted`.
|
|
|
|
rbdImageEncryptionPrepared = rbdEncryptionState("encryptionPrepared")
|
|
|
|
|
|
|
|
// rbdImageRequiresEncryption has been deprecated, it is used only for
|
|
|
|
// volumes that have been created with an old provisioner, were never
|
|
|
|
// attached/mounted and now get staged by a new node-plugin
|
2021-07-08 14:59:34 +00:00
|
|
|
// TODO: remove this backwards compatibility support.
|
2021-02-15 07:26:35 +00:00
|
|
|
rbdImageRequiresEncryption = rbdEncryptionState("requiresEncryption")
|
|
|
|
|
2021-07-08 14:59:34 +00:00
|
|
|
// image metadata key for encryption.
|
2021-07-23 15:23:43 +00:00
|
|
|
encryptionMetaKey = "rbd.csi.ceph.com/encrypted"
|
|
|
|
oldEncryptionMetaKey = ".rbd.csi.ceph.com/encrypted"
|
2021-02-17 15:55:06 +00:00
|
|
|
|
|
|
|
// metadataDEK is the key in the image metadata where the (encrypted)
|
|
|
|
// DEK is stored.
|
2021-07-23 15:23:43 +00:00
|
|
|
metadataDEK = "rbd.csi.ceph.com/dek"
|
|
|
|
oldMetadataDEK = ".rbd.csi.ceph.com/dek"
|
2021-02-15 07:26:35 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// checkRbdImageEncrypted verifies if rbd image was encrypted when created.
|
2021-03-12 12:37:15 +00:00
|
|
|
func (ri *rbdImage) checkRbdImageEncrypted(ctx context.Context) (rbdEncryptionState, error) {
|
2021-07-23 15:23:43 +00:00
|
|
|
value, err := ri.MigrateMetadata(oldEncryptionMetaKey, encryptionMetaKey, string(rbdImageEncryptionUnknown))
|
2021-02-16 15:56:42 +00:00
|
|
|
if errors.Is(err, librbd.ErrNotFound) {
|
2021-08-24 15:03:25 +00:00
|
|
|
log.DebugLog(ctx, "image %s encrypted state not set", ri)
|
2021-07-22 05:45:17 +00:00
|
|
|
|
2021-02-16 15:56:42 +00:00
|
|
|
return rbdImageEncryptionUnknown, nil
|
|
|
|
} else if err != nil {
|
2021-08-24 15:03:25 +00:00
|
|
|
log.ErrorLog(ctx, "checking image %s encrypted state metadata failed: %s", ri, err)
|
2021-07-22 05:45:17 +00:00
|
|
|
|
2021-02-15 07:26:35 +00:00
|
|
|
return rbdImageEncryptionUnknown, err
|
|
|
|
}
|
|
|
|
|
|
|
|
encrypted := rbdEncryptionState(strings.TrimSpace(value))
|
2021-08-24 15:03:25 +00:00
|
|
|
log.DebugLog(ctx, "image %s encrypted state metadata reports %q", ri, encrypted)
|
2021-07-22 05:45:17 +00:00
|
|
|
|
2021-02-15 07:26:35 +00:00
|
|
|
return encrypted, nil
|
|
|
|
}
|
|
|
|
|
2021-03-12 12:37:15 +00:00
|
|
|
func (ri *rbdImage) ensureEncryptionMetadataSet(status rbdEncryptionState) error {
|
|
|
|
err := ri.SetMetadata(encryptionMetaKey, string(status))
|
2021-02-15 07:26:35 +00:00
|
|
|
if err != nil {
|
2021-03-12 12:37:15 +00:00
|
|
|
return fmt.Errorf("failed to save encryption status for %s: %w", ri, err)
|
2021-02-15 07:26:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-03-12 12:37:15 +00:00
|
|
|
// isEncrypted returns `true` if the rbdImage is (or needs to be) encrypted.
|
|
|
|
func (ri *rbdImage) isEncrypted() bool {
|
|
|
|
return ri.encryption != nil
|
2021-02-22 15:25:35 +00:00
|
|
|
}
|
|
|
|
|
2021-02-15 07:26:35 +00:00
|
|
|
// setupEncryption configures the metadata of the RBD image for encryption:
|
|
|
|
// - the Data-Encryption-Key (DEK) will be generated stored for use by the KMS;
|
|
|
|
// - the RBD image will be marked to support encryption in its metadata.
|
2021-03-12 12:37:15 +00:00
|
|
|
func (ri *rbdImage) setupEncryption(ctx context.Context) error {
|
|
|
|
err := ri.encryption.StoreNewCryptoPassphrase(ri.VolID)
|
2021-02-15 07:26:35 +00:00
|
|
|
if err != nil {
|
2021-08-24 15:03:25 +00:00
|
|
|
log.ErrorLog(ctx, "failed to save encryption passphrase for "+
|
2021-05-07 05:30:37 +00:00
|
|
|
"image %s: %s", ri, err)
|
2021-07-22 05:45:17 +00:00
|
|
|
|
2021-02-15 07:26:35 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2021-03-12 12:37:15 +00:00
|
|
|
err = ri.ensureEncryptionMetadataSet(rbdImageEncryptionPrepared)
|
2021-02-15 07:26:35 +00:00
|
|
|
if err != nil {
|
2021-08-24 15:03:25 +00:00
|
|
|
log.ErrorLog(ctx, "failed to save encryption status, deleting "+
|
2021-05-07 05:30:37 +00:00
|
|
|
"image %s: %s", ri, err)
|
2021-07-22 05:45:17 +00:00
|
|
|
|
2021-02-15 07:26:35 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
2021-02-22 15:57:44 +00:00
|
|
|
|
2021-03-12 13:26:21 +00:00
|
|
|
// copyEncryptionConfig copies the VolumeEncryption object from the source
|
2022-04-25 10:15:08 +00:00
|
|
|
// rbdImage to the passed argument if the source rbdImage is encrypted.
|
|
|
|
// This function re-encrypts the passphrase from the original, so that
|
|
|
|
// both encrypted passphrases (potentially, depends on the DEKStore) have
|
|
|
|
// different contents.
|
2021-09-28 05:06:20 +00:00
|
|
|
// When copyOnlyPassphrase is set to true, only the passphrase is copied to the
|
|
|
|
// destination rbdImage's VolumeEncryption object which needs to be initialized
|
|
|
|
// beforehand and is possibly different from the source VolumeEncryption
|
|
|
|
// (Usecase: Restoring snapshot into a storageclass with different encryption config).
|
|
|
|
func (ri *rbdImage) copyEncryptionConfig(cp *rbdImage, copyOnlyPassphrase bool) error {
|
2022-04-25 10:15:08 +00:00
|
|
|
// nothing to do if parent image is not encrypted.
|
|
|
|
if !ri.isEncrypted() {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-04-09 12:04:38 +00:00
|
|
|
if ri.VolID == cp.VolID {
|
|
|
|
return fmt.Errorf("BUG: %q and %q have the same VolID (%s) "+
|
|
|
|
"set!? Call stack: %s", ri, cp, ri.VolID, util.CallStack())
|
|
|
|
}
|
|
|
|
|
2021-03-12 13:26:21 +00:00
|
|
|
// get the unencrypted passphrase
|
|
|
|
passphrase, err := ri.encryption.GetCryptoPassphrase(ri.VolID)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("failed to fetch passphrase for %q: %w",
|
2021-05-07 05:30:37 +00:00
|
|
|
ri, err)
|
2021-03-12 13:26:21 +00:00
|
|
|
}
|
|
|
|
|
2021-09-28 05:06:20 +00:00
|
|
|
if !copyOnlyPassphrase {
|
|
|
|
cp.encryption, err = util.NewVolumeEncryption(ri.encryption.GetID(), ri.encryption.KMS)
|
|
|
|
if errors.Is(err, util.ErrDEKStoreNeeded) {
|
|
|
|
cp.encryption.SetDEKStore(cp)
|
|
|
|
}
|
2021-03-12 13:26:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// re-encrypt the plain passphrase for the cloned volume
|
|
|
|
err = cp.encryption.StoreCryptoPassphrase(cp.VolID, passphrase)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("failed to store passphrase for %q: %w",
|
2021-05-07 05:30:37 +00:00
|
|
|
cp, err)
|
2021-03-12 13:26:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// copy encryption status for the original volume
|
|
|
|
status, err := ri.checkRbdImageEncrypted(context.TODO())
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("failed to get encryption status for %q: %w",
|
2021-05-07 05:30:37 +00:00
|
|
|
ri, err)
|
2021-03-12 13:26:21 +00:00
|
|
|
}
|
|
|
|
err = cp.ensureEncryptionMetadataSet(status)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("failed to store encryption status for %q: "+
|
2021-05-07 05:30:37 +00:00
|
|
|
"%w", cp, err)
|
2021-03-12 13:26:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-04-09 08:36:42 +00:00
|
|
|
// repairEncryptionConfig checks the encryption state of the current rbdImage,
|
|
|
|
// and makes sure that the destination rbdImage has the same configuration.
|
|
|
|
func (ri *rbdImage) repairEncryptionConfig(dest *rbdImage) error {
|
|
|
|
if !ri.isEncrypted() {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// if ri is encrypted, copy its configuration in case it is missing
|
|
|
|
if !dest.isEncrypted() {
|
|
|
|
// dest needs to be connected to the cluster, otherwise it will
|
|
|
|
// not be possible to write any metadata
|
|
|
|
if dest.conn == nil {
|
|
|
|
dest.conn = ri.conn.Copy()
|
|
|
|
}
|
|
|
|
|
2022-04-25 10:15:08 +00:00
|
|
|
return ri.copyEncryptionConfig(dest, true)
|
2021-04-09 08:36:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-03-12 12:37:15 +00:00
|
|
|
func (ri *rbdImage) encryptDevice(ctx context.Context, devicePath string) error {
|
|
|
|
passphrase, err := ri.encryption.GetCryptoPassphrase(ri.VolID)
|
2021-02-22 16:20:11 +00:00
|
|
|
if err != nil {
|
2021-08-24 15:03:25 +00:00
|
|
|
log.ErrorLog(ctx, "failed to get crypto passphrase for %s: %v",
|
2021-05-07 05:30:37 +00:00
|
|
|
ri, err)
|
2021-07-22 05:45:17 +00:00
|
|
|
|
2021-02-22 16:20:11 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if err = util.EncryptVolume(ctx, devicePath, passphrase); err != nil {
|
2021-05-07 05:30:37 +00:00
|
|
|
err = fmt.Errorf("failed to encrypt volume %s: %w", ri, err)
|
2021-08-24 15:03:25 +00:00
|
|
|
log.ErrorLog(ctx, err.Error())
|
2021-07-22 05:45:17 +00:00
|
|
|
|
2021-02-22 16:20:11 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2021-03-12 12:37:15 +00:00
|
|
|
err = ri.ensureEncryptionMetadataSet(rbdImageEncrypted)
|
2021-02-22 16:20:11 +00:00
|
|
|
if err != nil {
|
2021-08-24 15:03:25 +00:00
|
|
|
log.ErrorLog(ctx, err.Error())
|
2021-07-22 05:45:17 +00:00
|
|
|
|
2021-02-22 16:20:11 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-02-22 15:57:44 +00:00
|
|
|
func (rv *rbdVolume) openEncryptedDevice(ctx context.Context, devicePath string) (string, error) {
|
2021-02-15 09:24:47 +00:00
|
|
|
passphrase, err := rv.encryption.GetCryptoPassphrase(rv.VolID)
|
2021-02-22 15:57:44 +00:00
|
|
|
if err != nil {
|
2021-08-24 15:03:25 +00:00
|
|
|
log.ErrorLog(ctx, "failed to get passphrase for encrypted device %s: %v",
|
2021-05-07 05:30:37 +00:00
|
|
|
rv, err)
|
2021-07-22 05:45:17 +00:00
|
|
|
|
2021-02-22 15:57:44 +00:00
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
mapperFile, mapperFilePath := util.VolumeMapper(rv.VolID)
|
|
|
|
|
|
|
|
isOpen, err := util.IsDeviceOpen(ctx, mapperFilePath)
|
|
|
|
if err != nil {
|
2021-08-24 15:03:25 +00:00
|
|
|
log.ErrorLog(ctx, "failed to check device %s encryption status: %s", devicePath, err)
|
2021-07-22 05:45:17 +00:00
|
|
|
|
2021-02-22 15:57:44 +00:00
|
|
|
return devicePath, err
|
|
|
|
}
|
|
|
|
if isOpen {
|
2021-08-24 15:03:25 +00:00
|
|
|
log.DebugLog(ctx, "encrypted device is already open at %s", mapperFilePath)
|
2021-02-22 15:57:44 +00:00
|
|
|
} else {
|
|
|
|
err = util.OpenEncryptedVolume(ctx, devicePath, mapperFile, passphrase)
|
|
|
|
if err != nil {
|
2021-08-24 15:03:25 +00:00
|
|
|
log.ErrorLog(ctx, "failed to open device %s: %v",
|
2021-05-07 05:30:37 +00:00
|
|
|
rv, err)
|
2021-07-22 05:45:17 +00:00
|
|
|
|
2021-02-22 15:57:44 +00:00
|
|
|
return devicePath, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return mapperFilePath, nil
|
|
|
|
}
|
2021-02-15 07:26:35 +00:00
|
|
|
|
2021-03-12 12:37:15 +00:00
|
|
|
func (ri *rbdImage) initKMS(ctx context.Context, volOptions, credentials map[string]string) error {
|
2021-07-16 10:07:56 +00:00
|
|
|
kmsID, err := ri.ParseEncryptionOpts(ctx, volOptions)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
} else if kmsID == "" {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
err = ri.configureEncryption(kmsID, credentials)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("invalid encryption kms configuration: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// ParseEncryptionOpts returns kmsID and sets Owner attribute.
|
2022-03-15 12:58:02 +00:00
|
|
|
func (ri *rbdImage) ParseEncryptionOpts(
|
|
|
|
ctx context.Context,
|
|
|
|
volOptions map[string]string) (string, error) {
|
2021-02-15 07:26:35 +00:00
|
|
|
var (
|
2021-07-16 10:07:56 +00:00
|
|
|
err error
|
|
|
|
ok bool
|
|
|
|
encrypted, kmsID string
|
2021-02-15 07:26:35 +00:00
|
|
|
)
|
|
|
|
encrypted, ok = volOptions["encrypted"]
|
|
|
|
if !ok {
|
2021-07-16 10:07:56 +00:00
|
|
|
return "", nil
|
2021-02-15 07:26:35 +00:00
|
|
|
}
|
2021-07-16 10:07:56 +00:00
|
|
|
kmsID, err = util.FetchEncryptionKMSID(encrypted, volOptions["encryptionKMSID"])
|
2021-02-15 07:26:35 +00:00
|
|
|
if err != nil {
|
2021-07-16 10:07:56 +00:00
|
|
|
return "", err
|
2021-02-15 07:26:35 +00:00
|
|
|
}
|
|
|
|
|
2021-07-16 10:07:56 +00:00
|
|
|
return kmsID, nil
|
2021-02-15 07:26:35 +00:00
|
|
|
}
|
2021-02-22 15:25:35 +00:00
|
|
|
|
2021-03-12 12:37:15 +00:00
|
|
|
// configureEncryption sets up the VolumeEncryption for this rbdImage. Once
|
2021-02-25 16:26:05 +00:00
|
|
|
// configured, use isEncrypted() to see if the volume supports encryption.
|
2021-03-12 12:37:15 +00:00
|
|
|
func (ri *rbdImage) configureEncryption(kmsID string, credentials map[string]string) error {
|
2021-08-26 11:43:20 +00:00
|
|
|
kms, err := kmsapi.GetKMS(ri.Owner, kmsID, credentials)
|
2021-02-22 15:25:35 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2021-03-19 15:21:48 +00:00
|
|
|
ri.encryption, err = util.NewVolumeEncryption(kmsID, kms)
|
2021-02-25 16:26:05 +00:00
|
|
|
|
|
|
|
// if the KMS can not store the DEK itself, we'll store it in the
|
|
|
|
// metadata of the RBD image itself
|
|
|
|
if errors.Is(err, util.ErrDEKStoreNeeded) {
|
2021-03-12 12:37:15 +00:00
|
|
|
ri.encryption.SetDEKStore(ri)
|
2021-02-25 16:26:05 +00:00
|
|
|
}
|
2021-02-22 15:25:35 +00:00
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
2021-02-17 15:55:06 +00:00
|
|
|
|
|
|
|
// StoreDEK saves the DEK in the metadata, overwrites any existing contents.
|
2021-03-12 12:37:15 +00:00
|
|
|
func (ri *rbdImage) StoreDEK(volumeID, dek string) error {
|
2021-04-09 12:04:38 +00:00
|
|
|
if ri.VolID == "" {
|
|
|
|
return fmt.Errorf("BUG: %q does not have VolID set, call "+
|
|
|
|
"stack: %s", ri, util.CallStack())
|
|
|
|
} else if ri.VolID != volumeID {
|
|
|
|
return fmt.Errorf("volume %q can not store DEK for %q",
|
2021-05-07 05:30:37 +00:00
|
|
|
ri, volumeID)
|
2021-02-17 15:55:06 +00:00
|
|
|
}
|
|
|
|
|
2021-03-12 12:37:15 +00:00
|
|
|
return ri.SetMetadata(metadataDEK, dek)
|
2021-02-17 15:55:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// FetchDEK reads the DEK from the image metadata.
|
2021-03-12 12:37:15 +00:00
|
|
|
func (ri *rbdImage) FetchDEK(volumeID string) (string, error) {
|
2021-04-09 12:04:38 +00:00
|
|
|
if ri.VolID == "" {
|
|
|
|
return "", fmt.Errorf("BUG: %q does not have VolID set, call "+
|
|
|
|
"stack: %s", ri, util.CallStack())
|
|
|
|
} else if ri.VolID != volumeID {
|
2021-05-07 05:30:37 +00:00
|
|
|
return "", fmt.Errorf("volume %q can not fetch DEK for %q", ri, volumeID)
|
2021-02-17 15:55:06 +00:00
|
|
|
}
|
|
|
|
|
2021-07-23 15:23:43 +00:00
|
|
|
return ri.MigrateMetadata(oldMetadataDEK, metadataDEK, "")
|
2021-02-17 15:55:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// RemoveDEK does not need to remove the DEK from the metadata, the image is
|
|
|
|
// most likely getting removed.
|
2021-03-12 12:37:15 +00:00
|
|
|
func (ri *rbdImage) RemoveDEK(volumeID string) error {
|
2021-04-09 12:04:38 +00:00
|
|
|
if ri.VolID == "" {
|
|
|
|
return fmt.Errorf("BUG: %q does not have VolID set, call "+
|
|
|
|
"stack: %s", ri, util.CallStack())
|
|
|
|
} else if ri.VolID != volumeID {
|
|
|
|
return fmt.Errorf("volume %q can not remove DEK for %q",
|
2021-05-07 05:30:37 +00:00
|
|
|
ri, volumeID)
|
2021-02-17 15:55:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|