2020-06-24 07:43:24 +00:00
|
|
|
/*
|
|
|
|
Copyright 2020 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"
|
2020-07-06 17:51:04 +00:00
|
|
|
"errors"
|
|
|
|
"fmt"
|
2020-06-24 07:43:24 +00:00
|
|
|
|
|
|
|
"github.com/ceph/ceph-csi/internal/util"
|
|
|
|
)
|
|
|
|
|
|
|
|
func createRBDClone(ctx context.Context, parentVol, cloneRbdVol *rbdVolume, snap *rbdSnapshot, cr *util.Credentials) error {
|
|
|
|
// create snapshot
|
|
|
|
err := parentVol.createSnapshot(ctx, snap)
|
|
|
|
if err != nil {
|
2020-08-19 10:54:45 +00:00
|
|
|
util.ErrorLog(ctx, "failed to create snapshot %s: %v", snap, err)
|
2020-06-24 07:43:24 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2020-07-07 12:14:19 +00:00
|
|
|
snap.RbdImageName = parentVol.RbdImageName
|
2020-06-24 07:43:24 +00:00
|
|
|
// create clone image and delete snapshot
|
|
|
|
err = cloneRbdVol.cloneRbdImageFromSnapshot(ctx, snap)
|
|
|
|
if err != nil {
|
2020-08-19 10:54:45 +00:00
|
|
|
util.ErrorLog(ctx, "failed to clone rbd image %s from snapshot %s: %v", cloneRbdVol.RbdImageName, snap.RbdSnapName, err)
|
2020-07-06 17:51:04 +00:00
|
|
|
err = fmt.Errorf("failed to clone rbd image %s from snapshot %s: %w", cloneRbdVol.RbdImageName, snap.RbdSnapName, err)
|
2020-06-24 07:43:24 +00:00
|
|
|
}
|
|
|
|
errSnap := parentVol.deleteSnapshot(ctx, snap)
|
|
|
|
if errSnap != nil {
|
2020-08-19 10:54:45 +00:00
|
|
|
util.ErrorLog(ctx, "failed to delete snapshot: %v", errSnap)
|
2020-06-24 07:43:24 +00:00
|
|
|
delErr := deleteImage(ctx, cloneRbdVol, cr)
|
|
|
|
if delErr != nil {
|
2020-08-19 10:54:45 +00:00
|
|
|
util.ErrorLog(ctx, "failed to delete rbd image: %s with error: %v", cloneRbdVol, delErr)
|
2020-06-24 07:43:24 +00:00
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
err = cloneRbdVol.getImageInfo()
|
|
|
|
if err != nil {
|
2020-08-19 10:54:45 +00:00
|
|
|
util.ErrorLog(ctx, "failed to get rbd image: %s details with error: %v", cloneRbdVol, err)
|
2020-06-24 07:43:24 +00:00
|
|
|
delErr := deleteImage(ctx, cloneRbdVol, cr)
|
|
|
|
if delErr != nil {
|
2020-08-19 10:54:45 +00:00
|
|
|
util.ErrorLog(ctx, "failed to delete rbd image: %s with error: %v", cloneRbdVol, delErr)
|
2020-06-24 07:43:24 +00:00
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func cleanUpSnapshot(ctx context.Context, parentVol *rbdVolume, rbdSnap *rbdSnapshot, rbdVol *rbdVolume, cr *util.Credentials) error {
|
|
|
|
err := parentVol.deleteSnapshot(ctx, rbdSnap)
|
|
|
|
if err != nil {
|
2020-07-10 01:05:42 +00:00
|
|
|
if !errors.Is(err, ErrSnapNotFound) {
|
2020-08-19 10:54:45 +00:00
|
|
|
util.ErrorLog(ctx, "failed to delete snapshot: %v", err)
|
2020-06-24 07:43:24 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
err = deleteImage(ctx, rbdVol, cr)
|
|
|
|
if err != nil {
|
2020-07-10 01:05:42 +00:00
|
|
|
if !errors.Is(err, ErrImageNotFound) {
|
2020-08-19 10:54:45 +00:00
|
|
|
util.ErrorLog(ctx, "failed to delete rbd image: %s/%s with error: %v", rbdVol.Pool, rbdVol.VolName, err)
|
2020-06-24 07:43:24 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func generateVolFromSnap(rbdSnap *rbdSnapshot) *rbdVolume {
|
|
|
|
vol := new(rbdVolume)
|
|
|
|
vol.ClusterID = rbdSnap.ClusterID
|
2021-03-12 12:50:07 +00:00
|
|
|
vol.VolID = rbdSnap.VolID
|
2020-06-24 07:43:24 +00:00
|
|
|
vol.Monitors = rbdSnap.Monitors
|
|
|
|
vol.Pool = rbdSnap.Pool
|
|
|
|
vol.JournalPool = rbdSnap.JournalPool
|
2020-06-01 13:57:51 +00:00
|
|
|
vol.RadosNamespace = rbdSnap.RadosNamespace
|
2020-06-24 07:43:24 +00:00
|
|
|
vol.RbdImageName = rbdSnap.RbdSnapName
|
2020-07-06 06:22:34 +00:00
|
|
|
vol.ImageID = rbdSnap.ImageID
|
2021-04-26 13:15:18 +00:00
|
|
|
// copyEncryptionConfig cannot be used here because the volume and the
|
|
|
|
// snapshot will have the same volumeID which cases the panic in
|
|
|
|
// copyEncryptionConfig function.
|
|
|
|
vol.encryption = rbdSnap.encryption
|
2020-06-24 07:43:24 +00:00
|
|
|
return vol
|
|
|
|
}
|
|
|
|
|
|
|
|
func undoSnapshotCloning(ctx context.Context, parentVol *rbdVolume, rbdSnap *rbdSnapshot, cloneVol *rbdVolume, cr *util.Credentials) error {
|
|
|
|
err := cleanUpSnapshot(ctx, parentVol, rbdSnap, cloneVol, cr)
|
|
|
|
if err != nil {
|
2020-08-19 10:54:45 +00:00
|
|
|
util.ErrorLog(ctx, "failed to clean up %s or %s: %v", cloneVol, rbdSnap, err)
|
2020-06-24 07:43:24 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
err = undoSnapReservation(ctx, rbdSnap, cr)
|
|
|
|
return err
|
|
|
|
}
|