2018-03-05 11:59:47 +00:00
|
|
|
/*
|
2019-04-03 08:46:15 +00:00
|
|
|
Copyright 2018 The Ceph-CSI Authors.
|
2018-03-05 11:59:47 +00:00
|
|
|
|
|
|
|
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 cephfs
|
|
|
|
|
|
|
|
import (
|
2019-08-24 09:14:15 +00:00
|
|
|
"context"
|
2020-06-25 06:41:35 +00:00
|
|
|
"errors"
|
2020-08-04 04:25:28 +00:00
|
|
|
"fmt"
|
2019-08-24 09:14:15 +00:00
|
|
|
|
2021-09-16 13:47:57 +00:00
|
|
|
"github.com/ceph/ceph-csi/internal/cephfs/core"
|
2021-08-25 06:46:03 +00:00
|
|
|
cerrors "github.com/ceph/ceph-csi/internal/cephfs/errors"
|
2022-02-15 12:11:09 +00:00
|
|
|
"github.com/ceph/ceph-csi/internal/cephfs/store"
|
2021-09-16 13:47:57 +00:00
|
|
|
fsutil "github.com/ceph/ceph-csi/internal/cephfs/util"
|
2020-04-17 09:23:49 +00:00
|
|
|
csicommon "github.com/ceph/ceph-csi/internal/csi-common"
|
|
|
|
"github.com/ceph/ceph-csi/internal/util"
|
2022-03-15 11:04:28 +00:00
|
|
|
"github.com/ceph/ceph-csi/internal/util/k8s"
|
2021-08-24 15:03:25 +00:00
|
|
|
"github.com/ceph/ceph-csi/internal/util/log"
|
2020-04-15 03:38:16 +00:00
|
|
|
|
2019-02-18 11:30:28 +00:00
|
|
|
"github.com/container-storage-interface/spec/lib/go/csi"
|
2020-08-04 04:25:28 +00:00
|
|
|
"github.com/golang/protobuf/ptypes/timestamp"
|
|
|
|
"github.com/kubernetes-csi/csi-lib-utils/protosanitizer"
|
2018-03-05 11:59:47 +00:00
|
|
|
"google.golang.org/grpc/codes"
|
|
|
|
"google.golang.org/grpc/status"
|
|
|
|
)
|
|
|
|
|
2019-01-28 11:47:06 +00:00
|
|
|
// ControllerServer struct of CEPH CSI driver with supported methods of CSI
|
|
|
|
// controller server spec.
|
2019-01-17 07:51:06 +00:00
|
|
|
type ControllerServer struct {
|
2018-03-05 11:59:47 +00:00
|
|
|
*csicommon.DefaultControllerServer
|
2019-09-12 04:53:37 +00:00
|
|
|
// A map storing all volumes with ongoing operations so that additional operations
|
|
|
|
// for that same volume (as defined by VolumeID/volume name) return an Aborted error
|
|
|
|
VolumeLocks *util.VolumeLocks
|
2020-08-03 18:32:34 +00:00
|
|
|
|
|
|
|
// A map storing all snapshots with ongoing operations so that additional operations
|
|
|
|
// for that same snapshot (as defined by SnapshotID/snapshot name) return an Aborted error
|
|
|
|
SnapshotLocks *util.VolumeLocks
|
|
|
|
|
|
|
|
// A map storing all volumes/snapshots with ongoing operations.
|
|
|
|
OperationLocks *util.OperationLock
|
2018-12-19 14:26:16 +00:00
|
|
|
}
|
|
|
|
|
2020-07-19 12:21:03 +00:00
|
|
|
// createBackingVolume creates the backing subvolume and on any error cleans up any created entities.
|
2020-08-03 18:34:28 +00:00
|
|
|
func (cs *ControllerServer) createBackingVolume(
|
|
|
|
ctx context.Context,
|
|
|
|
volOptions,
|
2022-02-15 12:11:09 +00:00
|
|
|
parentVolOpt *store.VolumeOptions,
|
|
|
|
pvID *store.VolumeIdentifier,
|
|
|
|
sID *store.SnapshotIdentifier) error {
|
2020-08-03 18:34:28 +00:00
|
|
|
var err error
|
2022-02-15 12:11:09 +00:00
|
|
|
volClient := core.NewSubVolume(volOptions.GetConnection(), &volOptions.SubVolume, volOptions.ClusterID)
|
|
|
|
|
2020-08-03 18:34:28 +00:00
|
|
|
if sID != nil {
|
|
|
|
if err = cs.OperationLocks.GetRestoreLock(sID.SnapshotID); err != nil {
|
2021-08-24 15:03:25 +00:00
|
|
|
log.ErrorLog(ctx, err.Error())
|
2021-07-22 05:45:17 +00:00
|
|
|
|
2020-08-03 18:34:28 +00:00
|
|
|
return status.Error(codes.Aborted, err.Error())
|
|
|
|
}
|
|
|
|
defer cs.OperationLocks.ReleaseRestoreLock(sID.SnapshotID)
|
2022-02-15 12:11:09 +00:00
|
|
|
snap := core.Snapshot{
|
|
|
|
SnapshotID: sID.FsSnapshotName,
|
|
|
|
SubVolume: &parentVolOpt.SubVolume,
|
|
|
|
}
|
2020-08-03 18:34:28 +00:00
|
|
|
|
2022-02-15 12:11:09 +00:00
|
|
|
err = volClient.CreateCloneFromSnapshot(ctx, snap)
|
2020-08-03 18:34:28 +00:00
|
|
|
if err != nil {
|
2021-08-24 15:03:25 +00:00
|
|
|
log.ErrorLog(ctx, "failed to create clone from snapshot %s: %v", sID.FsSnapshotName, err)
|
2021-07-22 05:45:17 +00:00
|
|
|
|
2020-08-03 18:34:28 +00:00
|
|
|
return err
|
|
|
|
}
|
2021-07-22 05:45:17 +00:00
|
|
|
|
2020-08-03 18:34:28 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
if parentVolOpt != nil {
|
|
|
|
if err = cs.OperationLocks.GetCloneLock(pvID.VolumeID); err != nil {
|
2021-08-24 15:03:25 +00:00
|
|
|
log.ErrorLog(ctx, err.Error())
|
2021-07-22 05:45:17 +00:00
|
|
|
|
2020-08-03 18:34:28 +00:00
|
|
|
return status.Error(codes.Aborted, err.Error())
|
|
|
|
}
|
|
|
|
defer cs.OperationLocks.ReleaseCloneLock(pvID.VolumeID)
|
2022-02-15 12:11:09 +00:00
|
|
|
err = volClient.CreateCloneFromSubvolume(
|
|
|
|
ctx, &parentVolOpt.SubVolume)
|
2020-08-03 18:34:28 +00:00
|
|
|
if err != nil {
|
2021-09-16 13:47:57 +00:00
|
|
|
log.ErrorLog(ctx, "failed to create clone from subvolume %s: %v", fsutil.VolumeID(pvID.FsSubvolName), err)
|
2021-07-22 05:45:17 +00:00
|
|
|
|
2020-08-03 18:34:28 +00:00
|
|
|
return err
|
|
|
|
}
|
2021-07-22 05:45:17 +00:00
|
|
|
|
2020-08-03 18:34:28 +00:00
|
|
|
return nil
|
2019-05-28 19:03:18 +00:00
|
|
|
}
|
2022-02-15 12:11:09 +00:00
|
|
|
if err = volClient.CreateVolume(ctx); err != nil {
|
2021-08-24 15:03:25 +00:00
|
|
|
log.ErrorLog(ctx, "failed to create volume %s: %v", volOptions.RequestName, err)
|
2021-07-22 05:45:17 +00:00
|
|
|
|
2019-05-28 19:03:18 +00:00
|
|
|
return status.Error(codes.Internal, err.Error())
|
|
|
|
}
|
2021-07-22 05:45:17 +00:00
|
|
|
|
2019-05-28 19:03:18 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-06-25 10:18:59 +00:00
|
|
|
func checkContentSource(
|
|
|
|
ctx context.Context,
|
|
|
|
req *csi.CreateVolumeRequest,
|
2022-02-15 12:11:09 +00:00
|
|
|
cr *util.Credentials) (*store.VolumeOptions, *store.VolumeIdentifier, *store.SnapshotIdentifier, error) {
|
2020-08-03 18:37:44 +00:00
|
|
|
if req.VolumeContentSource == nil {
|
|
|
|
return nil, nil, nil, nil
|
|
|
|
}
|
|
|
|
volumeSource := req.VolumeContentSource
|
|
|
|
switch volumeSource.Type.(type) {
|
|
|
|
case *csi.VolumeContentSource_Snapshot:
|
|
|
|
snapshotID := req.VolumeContentSource.GetSnapshot().GetSnapshotId()
|
2022-02-15 12:11:09 +00:00
|
|
|
volOpt, _, sid, err := store.NewSnapshotOptionsFromID(ctx, snapshotID, cr)
|
2020-08-03 18:37:44 +00:00
|
|
|
if err != nil {
|
2021-08-25 06:46:03 +00:00
|
|
|
if errors.Is(err, cerrors.ErrSnapNotFound) {
|
2020-08-03 18:37:44 +00:00
|
|
|
return nil, nil, nil, status.Error(codes.NotFound, err.Error())
|
|
|
|
}
|
2021-07-22 05:45:17 +00:00
|
|
|
|
2020-08-03 18:37:44 +00:00
|
|
|
return nil, nil, nil, status.Error(codes.Internal, err.Error())
|
|
|
|
}
|
2021-07-22 05:45:17 +00:00
|
|
|
|
2020-08-03 18:37:44 +00:00
|
|
|
return volOpt, nil, sid, nil
|
|
|
|
case *csi.VolumeContentSource_Volume:
|
|
|
|
// Find the volume using the provided VolumeID
|
|
|
|
volID := req.VolumeContentSource.GetVolume().GetVolumeId()
|
2022-02-15 12:11:09 +00:00
|
|
|
parentVol, pvID, err := store.NewVolumeOptionsFromVolID(ctx, volID, nil, req.Secrets)
|
2020-08-03 18:37:44 +00:00
|
|
|
if err != nil {
|
2021-08-25 06:46:03 +00:00
|
|
|
if !errors.Is(err, cerrors.ErrVolumeNotFound) {
|
2020-08-03 18:37:44 +00:00
|
|
|
return nil, nil, nil, status.Error(codes.NotFound, err.Error())
|
|
|
|
}
|
2021-07-22 05:45:17 +00:00
|
|
|
|
2020-08-03 18:37:44 +00:00
|
|
|
return nil, nil, nil, status.Error(codes.Internal, err.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
return parentVol, pvID, nil, nil
|
|
|
|
}
|
2021-07-22 05:45:17 +00:00
|
|
|
|
2020-08-03 18:37:44 +00:00
|
|
|
return nil, nil, nil, status.Errorf(codes.InvalidArgument, "not a proper volume source %v", volumeSource)
|
|
|
|
}
|
|
|
|
|
2022-01-17 07:14:39 +00:00
|
|
|
// checkValidCreateVolumeRequest checks if the request is valid
|
|
|
|
// CreateVolumeRequest by inspecting the request parameters.
|
|
|
|
func checkValidCreateVolumeRequest(
|
|
|
|
vol,
|
|
|
|
parentVol *store.VolumeOptions,
|
|
|
|
pvID *store.VolumeIdentifier,
|
|
|
|
sID *store.SnapshotIdentifier) error {
|
|
|
|
switch {
|
|
|
|
case pvID != nil:
|
|
|
|
if vol.Size < parentVol.Size {
|
|
|
|
return fmt.Errorf(
|
|
|
|
"cannot clone from volume %s: volume size %d is smaller than source volume size %d",
|
|
|
|
pvID.VolumeID,
|
|
|
|
parentVol.Size,
|
|
|
|
vol.Size)
|
|
|
|
}
|
|
|
|
case sID != nil:
|
|
|
|
if vol.Size < parentVol.Size {
|
|
|
|
return fmt.Errorf(
|
|
|
|
"cannot restore from snapshot %s: volume size %d is smaller than source volume size %d",
|
|
|
|
sID.SnapshotID,
|
|
|
|
parentVol.Size,
|
|
|
|
vol.Size)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-07-19 12:21:03 +00:00
|
|
|
// CreateVolume creates a reservation and the volume in backend, if it is not already present.
|
2021-12-21 05:03:41 +00:00
|
|
|
// nolint:gocognit,gocyclo,nestif,cyclop // TODO: reduce complexity
|
2021-06-25 10:18:59 +00:00
|
|
|
func (cs *ControllerServer) CreateVolume(
|
|
|
|
ctx context.Context,
|
|
|
|
req *csi.CreateVolumeRequest) (*csi.CreateVolumeResponse, error) {
|
2018-03-20 15:15:19 +00:00
|
|
|
if err := cs.validateCreateVolumeRequest(req); err != nil {
|
2021-08-24 15:03:25 +00:00
|
|
|
log.ErrorLog(ctx, "CreateVolumeRequest validation failed: %v", err)
|
2021-07-22 05:45:17 +00:00
|
|
|
|
2018-03-05 11:59:47 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
2019-02-13 12:57:16 +00:00
|
|
|
|
2018-04-13 12:54:40 +00:00
|
|
|
// Configuration
|
2019-01-21 14:21:03 +00:00
|
|
|
secret := req.GetSecrets()
|
2019-05-28 19:03:18 +00:00
|
|
|
requestName := req.GetName()
|
2019-09-12 04:53:37 +00:00
|
|
|
|
2020-08-04 03:56:43 +00:00
|
|
|
cr, err := util.NewAdminCredentials(secret)
|
|
|
|
if err != nil {
|
2021-08-24 15:03:25 +00:00
|
|
|
log.ErrorLog(ctx, "failed to retrieve admin credentials: %v", err)
|
2021-07-22 05:45:17 +00:00
|
|
|
|
2020-08-04 03:56:43 +00:00
|
|
|
return nil, status.Error(codes.InvalidArgument, err.Error())
|
|
|
|
}
|
|
|
|
defer cr.DeleteCredentials()
|
|
|
|
|
2019-09-12 04:53:37 +00:00
|
|
|
// Existence and conflict checks
|
|
|
|
if acquired := cs.VolumeLocks.TryAcquire(requestName); !acquired {
|
2021-08-24 15:03:25 +00:00
|
|
|
log.ErrorLog(ctx, util.VolumeOperationAlreadyExistsFmt, requestName)
|
2021-07-22 05:45:17 +00:00
|
|
|
|
2019-09-12 04:53:37 +00:00
|
|
|
return nil, status.Errorf(codes.Aborted, util.VolumeOperationAlreadyExistsFmt, requestName)
|
|
|
|
}
|
|
|
|
defer cs.VolumeLocks.Release(requestName)
|
|
|
|
|
2022-02-15 12:11:09 +00:00
|
|
|
volOptions, err := store.NewVolumeOptions(ctx, requestName, req, cr)
|
2018-03-05 11:59:47 +00:00
|
|
|
if err != nil {
|
2021-08-24 15:03:25 +00:00
|
|
|
log.ErrorLog(ctx, "validation and extraction of volume options failed: %v", err)
|
2021-07-22 05:45:17 +00:00
|
|
|
|
2018-03-20 15:15:19 +00:00
|
|
|
return nil, status.Error(codes.InvalidArgument, err.Error())
|
2018-03-05 11:59:47 +00:00
|
|
|
}
|
2020-08-05 10:10:04 +00:00
|
|
|
defer volOptions.Destroy()
|
2018-03-05 11:59:47 +00:00
|
|
|
|
2019-09-25 08:35:33 +00:00
|
|
|
if req.GetCapacityRange() != nil {
|
|
|
|
volOptions.Size = util.RoundOffBytes(req.GetCapacityRange().GetRequiredBytes())
|
|
|
|
}
|
|
|
|
|
2020-08-04 03:56:43 +00:00
|
|
|
parentVol, pvID, sID, err := checkContentSource(ctx, req, cr)
|
2019-05-28 19:03:18 +00:00
|
|
|
if err != nil {
|
2020-08-04 03:56:43 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
2020-08-05 10:10:04 +00:00
|
|
|
if parentVol != nil {
|
|
|
|
defer parentVol.Destroy()
|
|
|
|
}
|
|
|
|
|
2022-01-17 07:14:39 +00:00
|
|
|
err = checkValidCreateVolumeRequest(volOptions, parentVol, pvID, sID)
|
|
|
|
if err != nil {
|
|
|
|
return nil, status.Error(codes.InvalidArgument, err.Error())
|
|
|
|
}
|
|
|
|
|
2022-02-15 12:11:09 +00:00
|
|
|
vID, err := store.CheckVolExists(ctx, volOptions, parentVol, pvID, sID, cr)
|
2020-08-04 03:56:43 +00:00
|
|
|
if err != nil {
|
2021-09-16 13:47:57 +00:00
|
|
|
if cerrors.IsCloneRetryError(err) {
|
2020-08-04 03:56:43 +00:00
|
|
|
return nil, status.Error(codes.Aborted, err.Error())
|
|
|
|
}
|
2021-07-22 05:45:17 +00:00
|
|
|
|
2019-05-28 19:03:18 +00:00
|
|
|
return nil, status.Error(codes.Internal, err.Error())
|
|
|
|
}
|
2019-09-25 08:35:33 +00:00
|
|
|
// TODO return error message if requested vol size greater than found volume return error
|
|
|
|
|
2019-05-28 19:03:18 +00:00
|
|
|
if vID != nil {
|
2021-12-21 05:03:41 +00:00
|
|
|
if sID != nil || pvID != nil {
|
2022-02-15 12:11:09 +00:00
|
|
|
volClient := core.NewSubVolume(volOptions.GetConnection(), &volOptions.SubVolume, volOptions.ClusterID)
|
|
|
|
err = volClient.ExpandVolume(ctx, volOptions.Size)
|
2021-12-21 05:03:41 +00:00
|
|
|
if err != nil {
|
2022-02-15 12:11:09 +00:00
|
|
|
purgeErr := volClient.PurgeVolume(ctx, false)
|
2021-12-21 05:03:41 +00:00
|
|
|
if purgeErr != nil {
|
|
|
|
log.ErrorLog(ctx, "failed to delete volume %s: %v", requestName, purgeErr)
|
|
|
|
// All errors other than ErrVolumeNotFound should return an error back to the caller
|
|
|
|
if !errors.Is(purgeErr, cerrors.ErrVolumeNotFound) {
|
|
|
|
return nil, status.Error(codes.Internal, purgeErr.Error())
|
|
|
|
}
|
|
|
|
}
|
2022-02-15 12:11:09 +00:00
|
|
|
errUndo := store.UndoVolReservation(ctx, volOptions, *vID, secret)
|
2021-12-21 05:03:41 +00:00
|
|
|
if errUndo != nil {
|
|
|
|
log.WarningLog(ctx, "failed undoing reservation of volume: %s (%s)",
|
|
|
|
requestName, errUndo)
|
|
|
|
}
|
|
|
|
log.ErrorLog(ctx, "failed to expand volume %s: %v", fsutil.VolumeID(vID.FsSubvolName), err)
|
|
|
|
|
|
|
|
return nil, status.Error(codes.Internal, err.Error())
|
|
|
|
}
|
|
|
|
}
|
2022-01-10 04:56:28 +00:00
|
|
|
|
2022-03-15 11:04:28 +00:00
|
|
|
// remove kubernetes csi prefixed parameters.
|
|
|
|
volumeContext := k8s.RemoveCSIPrefixedParameters(req.GetParameters())
|
2020-04-18 08:57:05 +00:00
|
|
|
volumeContext["subvolumeName"] = vID.FsSubvolName
|
2021-02-08 07:15:23 +00:00
|
|
|
volumeContext["subvolumePath"] = volOptions.RootPath
|
2020-01-24 16:26:56 +00:00
|
|
|
volume := &csi.Volume{
|
|
|
|
VolumeId: vID.VolumeID,
|
|
|
|
CapacityBytes: volOptions.Size,
|
2020-08-04 03:56:43 +00:00
|
|
|
ContentSource: req.GetVolumeContentSource(),
|
2020-04-18 08:57:05 +00:00
|
|
|
VolumeContext: volumeContext,
|
2020-01-24 16:26:56 +00:00
|
|
|
}
|
|
|
|
if volOptions.Topology != nil {
|
|
|
|
volume.AccessibleTopology =
|
|
|
|
[]*csi.Topology{
|
|
|
|
{
|
|
|
|
Segments: volOptions.Topology,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
2021-07-22 05:45:17 +00:00
|
|
|
|
2020-01-24 16:26:56 +00:00
|
|
|
return &csi.CreateVolumeResponse{Volume: volume}, nil
|
2019-05-28 19:03:18 +00:00
|
|
|
}
|
2018-04-13 12:54:40 +00:00
|
|
|
|
2019-05-28 19:03:18 +00:00
|
|
|
// Reservation
|
2022-02-15 12:11:09 +00:00
|
|
|
vID, err = store.ReserveVol(ctx, volOptions, secret)
|
2019-05-28 19:03:18 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, status.Error(codes.Internal, err.Error())
|
|
|
|
}
|
2020-08-04 03:56:43 +00:00
|
|
|
|
2019-05-28 19:03:18 +00:00
|
|
|
defer func() {
|
2018-04-13 12:54:40 +00:00
|
|
|
if err != nil {
|
2021-09-16 13:47:57 +00:00
|
|
|
if !cerrors.IsCloneRetryError(err) {
|
2022-02-15 12:11:09 +00:00
|
|
|
errDefer := store.UndoVolReservation(ctx, volOptions, *vID, secret)
|
2020-08-04 03:56:43 +00:00
|
|
|
if errDefer != nil {
|
2021-08-24 15:03:25 +00:00
|
|
|
log.WarningLog(ctx, "failed undoing reservation of volume: %s (%s)",
|
2020-08-04 03:56:43 +00:00
|
|
|
requestName, errDefer)
|
|
|
|
}
|
2019-05-28 19:03:18 +00:00
|
|
|
}
|
2018-04-13 12:54:40 +00:00
|
|
|
}
|
2019-05-28 19:03:18 +00:00
|
|
|
}()
|
2018-04-13 12:54:40 +00:00
|
|
|
|
2019-05-28 19:03:18 +00:00
|
|
|
// Create a volume
|
2022-02-15 12:11:09 +00:00
|
|
|
err = cs.createBackingVolume(ctx, volOptions, parentVol, pvID, sID)
|
2019-05-28 19:03:18 +00:00
|
|
|
if err != nil {
|
2021-09-16 13:47:57 +00:00
|
|
|
if cerrors.IsCloneRetryError(err) {
|
2020-08-04 03:56:43 +00:00
|
|
|
return nil, status.Error(codes.Aborted, err.Error())
|
|
|
|
}
|
2021-07-22 05:45:17 +00:00
|
|
|
|
2019-05-28 19:03:18 +00:00
|
|
|
return nil, err
|
2018-04-13 12:54:40 +00:00
|
|
|
}
|
2021-02-08 07:15:23 +00:00
|
|
|
|
2022-02-15 12:11:09 +00:00
|
|
|
volClient := core.NewSubVolume(volOptions.GetConnection(), &volOptions.SubVolume, volOptions.ClusterID)
|
|
|
|
volOptions.RootPath, err = volClient.GetVolumeRootPathCeph(ctx)
|
2021-02-08 07:15:23 +00:00
|
|
|
if err != nil {
|
2022-02-15 12:11:09 +00:00
|
|
|
purgeErr := volClient.PurgeVolume(ctx, true)
|
2021-02-08 07:15:23 +00:00
|
|
|
if purgeErr != nil {
|
2021-08-24 15:03:25 +00:00
|
|
|
log.ErrorLog(ctx, "failed to delete volume %s: %v", vID.FsSubvolName, purgeErr)
|
2021-02-08 07:15:23 +00:00
|
|
|
// All errors other than ErrVolumeNotFound should return an error back to the caller
|
2021-08-25 06:46:03 +00:00
|
|
|
if !errors.Is(purgeErr, cerrors.ErrVolumeNotFound) {
|
2021-02-08 07:15:23 +00:00
|
|
|
// If the subvolume deletion is failed, we should not cleanup
|
|
|
|
// the OMAP entry it will stale subvolume in cluster.
|
|
|
|
// set err=nil so that when we get the request again we can get
|
|
|
|
// the subvolume info.
|
|
|
|
err = nil
|
2021-07-22 05:45:17 +00:00
|
|
|
|
2021-02-08 07:15:23 +00:00
|
|
|
return nil, status.Error(codes.Internal, purgeErr.Error())
|
|
|
|
}
|
|
|
|
}
|
2021-08-24 15:03:25 +00:00
|
|
|
log.ErrorLog(ctx, "failed to get subvolume path %s: %v", vID.FsSubvolName, err)
|
2021-07-22 05:45:17 +00:00
|
|
|
|
2021-02-08 07:15:23 +00:00
|
|
|
return nil, status.Error(codes.Internal, err.Error())
|
|
|
|
}
|
|
|
|
|
2021-08-24 15:03:25 +00:00
|
|
|
log.DebugLog(ctx, "cephfs: successfully created backing volume named %s for request name %s",
|
2019-05-28 19:03:18 +00:00
|
|
|
vID.FsSubvolName, requestName)
|
2022-03-15 11:04:28 +00:00
|
|
|
// remove kubernetes csi prefixed parameters.
|
|
|
|
volumeContext := k8s.RemoveCSIPrefixedParameters(req.GetParameters())
|
2020-04-18 08:57:05 +00:00
|
|
|
volumeContext["subvolumeName"] = vID.FsSubvolName
|
2021-02-08 07:15:23 +00:00
|
|
|
volumeContext["subvolumePath"] = volOptions.RootPath
|
2020-01-24 16:26:56 +00:00
|
|
|
volume := &csi.Volume{
|
|
|
|
VolumeId: vID.VolumeID,
|
|
|
|
CapacityBytes: volOptions.Size,
|
2020-08-04 03:56:43 +00:00
|
|
|
ContentSource: req.GetVolumeContentSource(),
|
2020-04-18 08:57:05 +00:00
|
|
|
VolumeContext: volumeContext,
|
2020-01-24 16:26:56 +00:00
|
|
|
}
|
|
|
|
if volOptions.Topology != nil {
|
|
|
|
volume.AccessibleTopology =
|
|
|
|
[]*csi.Topology{
|
|
|
|
{
|
|
|
|
Segments: volOptions.Topology,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
2021-07-22 05:45:17 +00:00
|
|
|
|
2020-01-24 16:26:56 +00:00
|
|
|
return &csi.CreateVolumeResponse{Volume: volume}, nil
|
2018-03-05 11:59:47 +00:00
|
|
|
}
|
|
|
|
|
2020-07-19 12:21:03 +00:00
|
|
|
// DeleteVolume deletes the volume in backend and its reservation.
|
2021-06-25 10:18:59 +00:00
|
|
|
func (cs *ControllerServer) DeleteVolume(
|
|
|
|
ctx context.Context,
|
|
|
|
req *csi.DeleteVolumeRequest) (*csi.DeleteVolumeResponse, error) {
|
2019-05-28 19:03:18 +00:00
|
|
|
if err := cs.validateDeleteVolumeRequest(); err != nil {
|
2021-08-24 15:03:25 +00:00
|
|
|
log.ErrorLog(ctx, "DeleteVolumeRequest validation failed: %v", err)
|
2021-07-22 05:45:17 +00:00
|
|
|
|
2019-05-28 19:03:18 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2021-09-16 13:47:57 +00:00
|
|
|
volID := fsutil.VolumeID(req.GetVolumeId())
|
2019-05-28 19:03:18 +00:00
|
|
|
secrets := req.GetSecrets()
|
|
|
|
|
2019-09-12 04:53:37 +00:00
|
|
|
// lock out parallel delete operations
|
|
|
|
if acquired := cs.VolumeLocks.TryAcquire(string(volID)); !acquired {
|
2021-08-24 15:03:25 +00:00
|
|
|
log.ErrorLog(ctx, util.VolumeOperationAlreadyExistsFmt, volID)
|
2021-07-22 05:45:17 +00:00
|
|
|
|
2019-09-12 04:53:37 +00:00
|
|
|
return nil, status.Errorf(codes.Aborted, util.VolumeOperationAlreadyExistsFmt, string(volID))
|
|
|
|
}
|
|
|
|
defer cs.VolumeLocks.Release(string(volID))
|
|
|
|
|
2020-08-04 03:53:28 +00:00
|
|
|
// lock out volumeID for clone and expand operation
|
|
|
|
if err := cs.OperationLocks.GetDeleteLock(req.GetVolumeId()); err != nil {
|
2021-08-24 15:03:25 +00:00
|
|
|
log.ErrorLog(ctx, err.Error())
|
2021-07-22 05:45:17 +00:00
|
|
|
|
2020-08-04 03:53:28 +00:00
|
|
|
return nil, status.Error(codes.Aborted, err.Error())
|
|
|
|
}
|
|
|
|
defer cs.OperationLocks.ReleaseDeleteLock(req.GetVolumeId())
|
|
|
|
|
2019-05-28 19:03:18 +00:00
|
|
|
// Find the volume using the provided VolumeID
|
2022-02-15 12:11:09 +00:00
|
|
|
volOptions, vID, err := store.NewVolumeOptionsFromVolID(ctx, string(volID), nil, secrets)
|
2019-05-28 19:03:18 +00:00
|
|
|
if err != nil {
|
2020-01-31 08:49:11 +00:00
|
|
|
// if error is ErrPoolNotFound, the pool is already deleted we dont
|
|
|
|
// need to worry about deleting subvolume or omap data, return success
|
2020-07-08 23:00:23 +00:00
|
|
|
if errors.Is(err, util.ErrPoolNotFound) {
|
2021-08-24 15:03:25 +00:00
|
|
|
log.WarningLog(ctx, "failed to get backend volume for %s: %v", string(volID), err)
|
2021-07-22 05:45:17 +00:00
|
|
|
|
2020-01-31 08:49:11 +00:00
|
|
|
return &csi.DeleteVolumeResponse{}, nil
|
|
|
|
}
|
2019-05-28 19:03:18 +00:00
|
|
|
// if error is ErrKeyNotFound, then a previous attempt at deletion was complete
|
|
|
|
// or partially complete (subvolume and imageOMap are garbage collected already), hence
|
|
|
|
// return success as deletion is complete
|
2020-07-08 23:00:23 +00:00
|
|
|
if errors.Is(err, util.ErrKeyNotFound) {
|
2019-05-28 19:03:18 +00:00
|
|
|
return &csi.DeleteVolumeResponse{}, nil
|
|
|
|
}
|
|
|
|
|
2021-08-24 15:03:25 +00:00
|
|
|
log.ErrorLog(ctx, "Error returned from newVolumeOptionsFromVolID: %v", err)
|
2020-08-04 03:53:28 +00:00
|
|
|
|
2020-01-23 02:48:46 +00:00
|
|
|
// All errors other than ErrVolumeNotFound should return an error back to the caller
|
2021-08-25 06:46:03 +00:00
|
|
|
if !errors.Is(err, cerrors.ErrVolumeNotFound) {
|
2020-01-23 02:48:46 +00:00
|
|
|
return nil, status.Error(codes.Internal, err.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
// If error is ErrImageNotFound then we failed to find the subvolume, but found the imageOMap
|
|
|
|
// to lead us to the image, hence the imageOMap needs to be garbage collected, by calling
|
|
|
|
// unreserve for the same
|
|
|
|
if acquired := cs.VolumeLocks.TryAcquire(volOptions.RequestName); !acquired {
|
|
|
|
return nil, status.Errorf(codes.Aborted, util.VolumeOperationAlreadyExistsFmt, volOptions.RequestName)
|
|
|
|
}
|
|
|
|
defer cs.VolumeLocks.Release(volOptions.RequestName)
|
|
|
|
|
2022-02-15 12:11:09 +00:00
|
|
|
if err = store.UndoVolReservation(ctx, volOptions, *vID, secrets); err != nil {
|
2020-01-23 02:48:46 +00:00
|
|
|
return nil, status.Error(codes.Internal, err.Error())
|
|
|
|
}
|
2021-07-22 05:45:17 +00:00
|
|
|
|
2020-01-23 02:48:46 +00:00
|
|
|
return &csi.DeleteVolumeResponse{}, nil
|
2019-05-28 19:03:18 +00:00
|
|
|
}
|
2020-08-05 10:10:04 +00:00
|
|
|
defer volOptions.Destroy()
|
2019-05-28 19:03:18 +00:00
|
|
|
|
2019-09-12 04:53:37 +00:00
|
|
|
// lock out parallel delete and create requests against the same volume name as we
|
|
|
|
// cleanup the subvolume and associated omaps for the same
|
|
|
|
if acquired := cs.VolumeLocks.TryAcquire(volOptions.RequestName); !acquired {
|
|
|
|
return nil, status.Errorf(codes.Aborted, util.VolumeOperationAlreadyExistsFmt, volOptions.RequestName)
|
|
|
|
}
|
2020-08-18 04:52:36 +00:00
|
|
|
defer cs.VolumeLocks.Release(volOptions.RequestName)
|
2019-09-12 04:53:37 +00:00
|
|
|
|
2019-05-28 19:03:18 +00:00
|
|
|
// Deleting a volume requires admin credentials
|
2019-06-25 19:29:17 +00:00
|
|
|
cr, err := util.NewAdminCredentials(secrets)
|
2019-05-28 19:03:18 +00:00
|
|
|
if err != nil {
|
2021-08-24 15:03:25 +00:00
|
|
|
log.ErrorLog(ctx, "failed to retrieve admin credentials: %v", err)
|
2021-07-22 05:45:17 +00:00
|
|
|
|
2019-05-28 19:03:18 +00:00
|
|
|
return nil, status.Error(codes.InvalidArgument, err.Error())
|
|
|
|
}
|
2019-06-25 19:29:17 +00:00
|
|
|
defer cr.DeleteCredentials()
|
2019-05-28 19:03:18 +00:00
|
|
|
|
2022-02-15 12:11:09 +00:00
|
|
|
volClient := core.NewSubVolume(volOptions.GetConnection(), &volOptions.SubVolume, volOptions.ClusterID)
|
|
|
|
if err = volClient.PurgeVolume(ctx, false); err != nil {
|
2021-08-24 15:03:25 +00:00
|
|
|
log.ErrorLog(ctx, "failed to delete volume %s: %v", volID, err)
|
2021-08-25 06:46:03 +00:00
|
|
|
if errors.Is(err, cerrors.ErrVolumeHasSnapshots) {
|
2020-09-21 05:38:14 +00:00
|
|
|
return nil, status.Error(codes.FailedPrecondition, err.Error())
|
|
|
|
}
|
|
|
|
|
2021-08-25 06:46:03 +00:00
|
|
|
if !errors.Is(err, cerrors.ErrVolumeNotFound) {
|
2020-01-23 02:48:46 +00:00
|
|
|
return nil, status.Error(codes.Internal, err.Error())
|
|
|
|
}
|
2019-05-28 19:03:18 +00:00
|
|
|
}
|
|
|
|
|
2022-02-15 12:11:09 +00:00
|
|
|
if err := store.UndoVolReservation(ctx, volOptions, *vID, secrets); err != nil {
|
2019-05-28 19:03:18 +00:00
|
|
|
return nil, status.Error(codes.Internal, err.Error())
|
|
|
|
}
|
|
|
|
|
2021-08-24 15:03:25 +00:00
|
|
|
log.DebugLog(ctx, "cephfs: successfully deleted volume %s", volID)
|
2019-05-28 19:03:18 +00:00
|
|
|
|
|
|
|
return &csi.DeleteVolumeResponse{}, nil
|
|
|
|
}
|
|
|
|
|
2019-01-28 11:47:06 +00:00
|
|
|
// ValidateVolumeCapabilities checks whether the volume capabilities requested
|
|
|
|
// are supported.
|
2019-01-17 07:51:06 +00:00
|
|
|
func (cs *ControllerServer) ValidateVolumeCapabilities(
|
2018-04-13 12:54:40 +00:00
|
|
|
ctx context.Context,
|
|
|
|
req *csi.ValidateVolumeCapabilitiesRequest) (*csi.ValidateVolumeCapabilitiesResponse, error) {
|
2018-07-10 16:48:55 +00:00
|
|
|
// Cephfs doesn't support Block volume
|
2020-10-19 07:31:11 +00:00
|
|
|
for _, capability := range req.VolumeCapabilities {
|
|
|
|
if capability.GetBlock() != nil {
|
2018-11-24 18:48:36 +00:00
|
|
|
return &csi.ValidateVolumeCapabilitiesResponse{Message: ""}, nil
|
2018-07-10 16:48:55 +00:00
|
|
|
}
|
|
|
|
}
|
2021-07-22 05:45:17 +00:00
|
|
|
|
2018-11-24 18:48:36 +00:00
|
|
|
return &csi.ValidateVolumeCapabilitiesResponse{
|
|
|
|
Confirmed: &csi.ValidateVolumeCapabilitiesResponse_Confirmed{
|
|
|
|
VolumeCapabilities: req.VolumeCapabilities,
|
|
|
|
},
|
|
|
|
}, nil
|
2018-03-05 11:59:47 +00:00
|
|
|
}
|
2019-10-07 06:41:33 +00:00
|
|
|
|
2020-07-19 12:21:03 +00:00
|
|
|
// ControllerExpandVolume expands CephFS Volumes on demand based on resizer request.
|
2021-06-25 10:18:59 +00:00
|
|
|
func (cs *ControllerServer) ControllerExpandVolume(
|
|
|
|
ctx context.Context,
|
|
|
|
req *csi.ControllerExpandVolumeRequest) (*csi.ControllerExpandVolumeResponse, error) {
|
2019-10-07 06:41:33 +00:00
|
|
|
if err := cs.validateExpandVolumeRequest(req); err != nil {
|
2021-08-24 15:03:25 +00:00
|
|
|
log.ErrorLog(ctx, "ControllerExpandVolumeRequest validation failed: %v", err)
|
2021-07-22 05:45:17 +00:00
|
|
|
|
2019-10-07 06:41:33 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
volID := req.GetVolumeId()
|
|
|
|
secret := req.GetSecrets()
|
|
|
|
|
2019-11-25 11:09:24 +00:00
|
|
|
// lock out parallel delete operations
|
|
|
|
if acquired := cs.VolumeLocks.TryAcquire(volID); !acquired {
|
2021-08-24 15:03:25 +00:00
|
|
|
log.ErrorLog(ctx, util.VolumeOperationAlreadyExistsFmt, volID)
|
2021-07-22 05:45:17 +00:00
|
|
|
|
2019-11-25 11:09:24 +00:00
|
|
|
return nil, status.Errorf(codes.Aborted, util.VolumeOperationAlreadyExistsFmt, volID)
|
|
|
|
}
|
|
|
|
defer cs.VolumeLocks.Release(volID)
|
|
|
|
|
2020-08-03 18:28:52 +00:00
|
|
|
// lock out volumeID for clone and delete operation
|
|
|
|
if err := cs.OperationLocks.GetExpandLock(volID); err != nil {
|
2021-08-24 15:03:25 +00:00
|
|
|
log.ErrorLog(ctx, err.Error())
|
2021-07-22 05:45:17 +00:00
|
|
|
|
2020-08-03 18:28:52 +00:00
|
|
|
return nil, status.Error(codes.Aborted, err.Error())
|
|
|
|
}
|
|
|
|
defer cs.OperationLocks.ReleaseExpandLock(volID)
|
|
|
|
|
2019-10-07 06:41:33 +00:00
|
|
|
cr, err := util.NewAdminCredentials(secret)
|
|
|
|
if err != nil {
|
|
|
|
return nil, status.Error(codes.InvalidArgument, err.Error())
|
|
|
|
}
|
|
|
|
defer cr.DeleteCredentials()
|
|
|
|
|
2022-02-15 12:11:09 +00:00
|
|
|
volOptions, volIdentifier, err := store.NewVolumeOptionsFromVolID(ctx, volID, nil, secret)
|
2019-10-07 06:41:33 +00:00
|
|
|
if err != nil {
|
2021-08-24 15:03:25 +00:00
|
|
|
log.ErrorLog(ctx, "validation and extraction of volume options failed: %v", err)
|
2021-07-22 05:45:17 +00:00
|
|
|
|
2019-10-07 06:41:33 +00:00
|
|
|
return nil, status.Error(codes.InvalidArgument, err.Error())
|
|
|
|
}
|
2020-08-05 10:10:04 +00:00
|
|
|
defer volOptions.Destroy()
|
2019-10-07 06:41:33 +00:00
|
|
|
|
2019-11-26 08:29:28 +00:00
|
|
|
RoundOffSize := util.RoundOffBytes(req.GetCapacityRange().GetRequiredBytes())
|
2022-02-15 12:11:09 +00:00
|
|
|
volClient := core.NewSubVolume(volOptions.GetConnection(), &volOptions.SubVolume, volOptions.ClusterID)
|
|
|
|
if err = volClient.ResizeVolume(ctx, RoundOffSize); err != nil {
|
2021-09-16 13:47:57 +00:00
|
|
|
log.ErrorLog(ctx, "failed to expand volume %s: %v", fsutil.VolumeID(volIdentifier.FsSubvolName), err)
|
2021-07-22 05:45:17 +00:00
|
|
|
|
2019-10-07 06:41:33 +00:00
|
|
|
return nil, status.Error(codes.Internal, err.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
return &csi.ControllerExpandVolumeResponse{
|
2019-11-26 08:29:28 +00:00
|
|
|
CapacityBytes: RoundOffSize,
|
2019-10-07 06:41:33 +00:00
|
|
|
NodeExpansionRequired: false,
|
|
|
|
}, nil
|
|
|
|
}
|
2020-08-04 04:25:28 +00:00
|
|
|
|
|
|
|
// CreateSnapshot creates the snapshot in backend and stores metadata
|
|
|
|
// in store
|
2021-07-12 10:59:25 +00:00
|
|
|
// nolint:gocyclo,cyclop // golangci-lint did not catch this earlier, needs to get fixed late
|
2021-06-25 10:18:59 +00:00
|
|
|
func (cs *ControllerServer) CreateSnapshot(
|
|
|
|
ctx context.Context,
|
|
|
|
req *csi.CreateSnapshotRequest) (*csi.CreateSnapshotResponse, error) {
|
2020-08-04 04:25:28 +00:00
|
|
|
if err := cs.validateSnapshotReq(ctx, req); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
cr, err := util.NewAdminCredentials(req.GetSecrets())
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
defer cr.DeleteCredentials()
|
|
|
|
|
2022-02-15 12:11:09 +00:00
|
|
|
clusterData, err := store.GetClusterInformation(req.GetParameters())
|
2020-08-04 04:25:28 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, status.Error(codes.Internal, err.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
requestName := req.GetName()
|
|
|
|
sourceVolID := req.GetSourceVolumeId()
|
|
|
|
// Existence and conflict checks
|
|
|
|
if acquired := cs.SnapshotLocks.TryAcquire(requestName); !acquired {
|
2021-08-24 15:03:25 +00:00
|
|
|
log.ErrorLog(ctx, util.SnapshotOperationAlreadyExistsFmt, requestName)
|
2021-07-22 05:45:17 +00:00
|
|
|
|
2020-08-04 04:25:28 +00:00
|
|
|
return nil, status.Errorf(codes.Aborted, util.SnapshotOperationAlreadyExistsFmt, requestName)
|
|
|
|
}
|
|
|
|
defer cs.SnapshotLocks.Release(requestName)
|
|
|
|
|
|
|
|
if err = cs.OperationLocks.GetSnapshotCreateLock(sourceVolID); err != nil {
|
2021-08-24 15:03:25 +00:00
|
|
|
log.ErrorLog(ctx, err.Error())
|
2021-07-22 05:45:17 +00:00
|
|
|
|
2020-08-04 04:25:28 +00:00
|
|
|
return nil, status.Error(codes.Aborted, err.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
defer cs.OperationLocks.ReleaseSnapshotCreateLock(sourceVolID)
|
|
|
|
|
|
|
|
// Find the volume using the provided VolumeID
|
2022-02-15 12:11:09 +00:00
|
|
|
parentVolOptions, vid, err := store.NewVolumeOptionsFromVolID(ctx, sourceVolID, nil, req.GetSecrets())
|
2020-08-04 04:25:28 +00:00
|
|
|
if err != nil {
|
|
|
|
if errors.Is(err, util.ErrPoolNotFound) {
|
2021-08-24 15:03:25 +00:00
|
|
|
log.WarningLog(ctx, "failed to get backend volume for %s: %v", sourceVolID, err)
|
2021-07-22 05:45:17 +00:00
|
|
|
|
2020-08-04 04:25:28 +00:00
|
|
|
return nil, status.Error(codes.NotFound, err.Error())
|
|
|
|
}
|
|
|
|
|
2021-08-25 06:46:03 +00:00
|
|
|
if errors.Is(err, cerrors.ErrVolumeNotFound) {
|
2020-08-04 04:25:28 +00:00
|
|
|
return nil, status.Error(codes.NotFound, err.Error())
|
|
|
|
}
|
2021-07-22 05:45:17 +00:00
|
|
|
|
2020-08-04 04:25:28 +00:00
|
|
|
return nil, status.Error(codes.Internal, err.Error())
|
|
|
|
}
|
2020-08-05 10:10:04 +00:00
|
|
|
defer parentVolOptions.Destroy()
|
2020-08-04 04:25:28 +00:00
|
|
|
|
|
|
|
if clusterData.ClusterID != parentVolOptions.ClusterID {
|
2021-06-25 10:18:59 +00:00
|
|
|
return nil, status.Errorf(
|
|
|
|
codes.InvalidArgument,
|
|
|
|
"requested cluster id %s not matching subvolume cluster id %s",
|
|
|
|
clusterData.ClusterID,
|
|
|
|
parentVolOptions.ClusterID)
|
2020-08-04 04:25:28 +00:00
|
|
|
}
|
|
|
|
|
2022-02-15 12:11:09 +00:00
|
|
|
cephfsSnap, genSnapErr := store.GenSnapFromOptions(ctx, req)
|
2020-08-04 04:25:28 +00:00
|
|
|
if genSnapErr != nil {
|
|
|
|
return nil, status.Error(codes.Internal, genSnapErr.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
// lock out parallel snapshot create operations
|
|
|
|
if acquired := cs.VolumeLocks.TryAcquire(sourceVolID); !acquired {
|
2021-08-24 15:03:25 +00:00
|
|
|
log.ErrorLog(ctx, util.VolumeOperationAlreadyExistsFmt, sourceVolID)
|
2021-07-22 05:45:17 +00:00
|
|
|
|
2020-08-04 04:25:28 +00:00
|
|
|
return nil, status.Errorf(codes.Aborted, util.VolumeOperationAlreadyExistsFmt, sourceVolID)
|
|
|
|
}
|
|
|
|
defer cs.VolumeLocks.Release(sourceVolID)
|
|
|
|
snapName := req.GetName()
|
2022-02-15 12:11:09 +00:00
|
|
|
sid, snapInfo, err := store.CheckSnapExists(ctx, parentVolOptions, cephfsSnap, cr)
|
2020-08-04 04:25:28 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, status.Error(codes.Internal, err.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
// check are we able to retrieve the size of parent
|
|
|
|
// ceph fs subvolume info command got added in 14.2.10 and 15.+
|
|
|
|
// as we are not able to retrieve the parent size we are rejecting the
|
|
|
|
// request to create snapshot.
|
2022-02-15 12:11:09 +00:00
|
|
|
// TODO: For this purpose we could make use of cached clusterAdditionalInfo
|
|
|
|
// too.
|
|
|
|
volClient := core.NewSubVolume(parentVolOptions.GetConnection(),
|
|
|
|
&parentVolOptions.SubVolume,
|
|
|
|
parentVolOptions.ClusterID)
|
|
|
|
info, err := volClient.GetSubVolumeInfo(ctx)
|
2020-08-04 04:25:28 +00:00
|
|
|
if err != nil {
|
|
|
|
// Check error code value against ErrInvalidCommand to understand the cluster
|
2021-08-17 10:56:55 +00:00
|
|
|
// support it or not, It's safe to evaluate as the filtering
|
2021-09-16 13:47:57 +00:00
|
|
|
// is already done from GetSubVolumeInfo() and send out the error here.
|
2021-08-25 06:46:03 +00:00
|
|
|
if errors.Is(err, cerrors.ErrInvalidCommand) {
|
2021-06-25 10:18:59 +00:00
|
|
|
return nil, status.Error(
|
|
|
|
codes.FailedPrecondition,
|
|
|
|
"subvolume info command not supported in current ceph cluster")
|
2020-08-04 04:25:28 +00:00
|
|
|
}
|
|
|
|
if sid != nil {
|
2022-02-15 12:11:09 +00:00
|
|
|
errDefer := store.UndoSnapReservation(ctx, parentVolOptions, *sid, snapName, cr)
|
2020-08-04 04:25:28 +00:00
|
|
|
if errDefer != nil {
|
2021-08-24 15:03:25 +00:00
|
|
|
log.WarningLog(ctx, "failed undoing reservation of snapshot: %s (%s)",
|
2020-08-04 04:25:28 +00:00
|
|
|
requestName, errDefer)
|
|
|
|
}
|
|
|
|
}
|
2021-07-22 05:45:17 +00:00
|
|
|
|
2020-08-04 04:25:28 +00:00
|
|
|
return nil, status.Error(codes.Internal, err.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
if sid != nil {
|
|
|
|
// check snapshot is protected
|
|
|
|
protected := true
|
2021-09-16 13:47:57 +00:00
|
|
|
if !(snapInfo.Protected == core.SnapshotIsProtected) {
|
2022-02-15 12:11:09 +00:00
|
|
|
snapClient := core.NewSnapshot(parentVolOptions.GetConnection(), sid.FsSnapshotName, &parentVolOptions.SubVolume)
|
|
|
|
err = snapClient.ProtectSnapshot(ctx)
|
2020-08-04 04:25:28 +00:00
|
|
|
if err != nil {
|
|
|
|
protected = false
|
2021-08-24 15:03:25 +00:00
|
|
|
log.WarningLog(ctx, "failed to protect snapshot of snapshot: %s (%s)",
|
2020-08-04 04:25:28 +00:00
|
|
|
sid.FsSnapshotName, err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return &csi.CreateSnapshotResponse{
|
|
|
|
Snapshot: &csi.Snapshot{
|
2020-10-10 16:17:08 +00:00
|
|
|
SizeBytes: info.BytesQuota,
|
2020-08-04 04:25:28 +00:00
|
|
|
SnapshotId: sid.SnapshotID,
|
|
|
|
SourceVolumeId: req.GetSourceVolumeId(),
|
|
|
|
CreationTime: sid.CreationTime,
|
|
|
|
ReadyToUse: protected,
|
|
|
|
},
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Reservation
|
2022-02-15 12:11:09 +00:00
|
|
|
sID, err := store.ReserveSnap(ctx, parentVolOptions, vid.FsSubvolName, cephfsSnap, cr)
|
2020-08-04 04:25:28 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, status.Error(codes.Internal, err.Error())
|
|
|
|
}
|
|
|
|
defer func() {
|
|
|
|
if err != nil {
|
2022-02-15 12:11:09 +00:00
|
|
|
errDefer := store.UndoSnapReservation(ctx, parentVolOptions, *sID, snapName, cr)
|
2020-08-04 04:25:28 +00:00
|
|
|
if errDefer != nil {
|
2021-08-24 15:03:25 +00:00
|
|
|
log.WarningLog(ctx, "failed undoing reservation of snapshot: %s (%s)",
|
2020-08-04 04:25:28 +00:00
|
|
|
requestName, errDefer)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}()
|
2022-02-15 12:11:09 +00:00
|
|
|
snap, err := doSnapshot(ctx, parentVolOptions, sID.FsSnapshotName)
|
2020-08-04 04:25:28 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, status.Error(codes.Internal, err.Error())
|
|
|
|
}
|
2021-07-22 05:45:17 +00:00
|
|
|
|
2020-08-04 04:25:28 +00:00
|
|
|
return &csi.CreateSnapshotResponse{
|
|
|
|
Snapshot: &csi.Snapshot{
|
2020-10-10 16:17:08 +00:00
|
|
|
SizeBytes: info.BytesQuota,
|
2020-08-04 04:25:28 +00:00
|
|
|
SnapshotId: sID.SnapshotID,
|
|
|
|
SourceVolumeId: req.GetSourceVolumeId(),
|
|
|
|
CreationTime: snap.CreationTime,
|
|
|
|
ReadyToUse: true,
|
|
|
|
},
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
2021-09-16 13:47:57 +00:00
|
|
|
func doSnapshot(
|
|
|
|
ctx context.Context,
|
2022-02-15 12:11:09 +00:00
|
|
|
volOpt *store.VolumeOptions,
|
2021-09-16 13:47:57 +00:00
|
|
|
snapshotName string) (core.SnapshotInfo, error) {
|
|
|
|
snapID := fsutil.VolumeID(snapshotName)
|
|
|
|
snap := core.SnapshotInfo{}
|
2022-02-15 12:11:09 +00:00
|
|
|
snapClient := core.NewSnapshot(volOpt.GetConnection(), snapshotName, &volOpt.SubVolume)
|
|
|
|
err := snapClient.CreateSnapshot(ctx)
|
2020-08-04 04:25:28 +00:00
|
|
|
if err != nil {
|
2021-08-24 15:03:25 +00:00
|
|
|
log.ErrorLog(ctx, "failed to create snapshot %s %v", snapID, err)
|
2021-07-22 05:45:17 +00:00
|
|
|
|
2020-08-04 04:25:28 +00:00
|
|
|
return snap, err
|
|
|
|
}
|
|
|
|
defer func() {
|
|
|
|
if err != nil {
|
2022-02-15 12:11:09 +00:00
|
|
|
dErr := snapClient.DeleteSnapshot(ctx)
|
2020-08-04 04:25:28 +00:00
|
|
|
if dErr != nil {
|
2021-08-24 15:03:25 +00:00
|
|
|
log.ErrorLog(ctx, "failed to delete snapshot %s %v", snapID, err)
|
2020-08-04 04:25:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}()
|
2022-02-15 12:11:09 +00:00
|
|
|
snap, err = snapClient.GetSnapshotInfo(ctx)
|
2020-08-04 04:25:28 +00:00
|
|
|
if err != nil {
|
2021-08-24 15:03:25 +00:00
|
|
|
log.ErrorLog(ctx, "failed to get snapshot info %s %v", snapID, err)
|
2021-07-22 05:45:17 +00:00
|
|
|
|
2020-08-04 04:25:28 +00:00
|
|
|
return snap, fmt.Errorf("failed to get snapshot info for snapshot:%s", snapID)
|
|
|
|
}
|
|
|
|
var t *timestamp.Timestamp
|
2021-09-16 13:47:57 +00:00
|
|
|
t, err = fsutil.ParseTime(ctx, snap.CreatedAt)
|
2020-08-04 04:25:28 +00:00
|
|
|
if err != nil {
|
|
|
|
return snap, err
|
|
|
|
}
|
|
|
|
snap.CreationTime = t
|
2022-02-15 12:11:09 +00:00
|
|
|
err = snapClient.ProtectSnapshot(ctx)
|
2020-08-04 04:25:28 +00:00
|
|
|
if err != nil {
|
2021-08-24 15:03:25 +00:00
|
|
|
log.ErrorLog(ctx, "failed to protect snapshot %s %v", snapID, err)
|
2020-08-04 04:25:28 +00:00
|
|
|
}
|
2021-07-22 05:45:17 +00:00
|
|
|
|
2020-08-04 04:25:28 +00:00
|
|
|
return snap, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (cs *ControllerServer) validateSnapshotReq(ctx context.Context, req *csi.CreateSnapshotRequest) error {
|
2021-06-25 10:18:59 +00:00
|
|
|
if err := cs.Driver.ValidateControllerServiceRequest(
|
|
|
|
csi.ControllerServiceCapability_RPC_CREATE_DELETE_SNAPSHOT); err != nil {
|
2021-08-24 15:03:25 +00:00
|
|
|
log.ErrorLog(ctx, "invalid create snapshot req: %v", protosanitizer.StripSecrets(req))
|
2021-07-22 05:45:17 +00:00
|
|
|
|
2020-08-04 04:25:28 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check sanity of request Snapshot Name, Source Volume Id
|
|
|
|
if req.Name == "" {
|
|
|
|
return status.Error(codes.NotFound, "snapshot Name cannot be empty")
|
|
|
|
}
|
|
|
|
if req.SourceVolumeId == "" {
|
|
|
|
return status.Error(codes.NotFound, "source Volume ID cannot be empty")
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeleteSnapshot deletes the snapshot in backend and removes the
|
|
|
|
// snapshot metadata from store.
|
2021-06-25 10:18:59 +00:00
|
|
|
func (cs *ControllerServer) DeleteSnapshot(
|
|
|
|
ctx context.Context,
|
|
|
|
req *csi.DeleteSnapshotRequest) (*csi.DeleteSnapshotResponse, error) {
|
|
|
|
if err := cs.Driver.ValidateControllerServiceRequest(
|
|
|
|
csi.ControllerServiceCapability_RPC_CREATE_DELETE_SNAPSHOT); err != nil {
|
2021-08-24 15:03:25 +00:00
|
|
|
log.ErrorLog(ctx, "invalid delete snapshot req: %v", protosanitizer.StripSecrets(req))
|
2021-07-22 05:45:17 +00:00
|
|
|
|
2020-08-04 04:25:28 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
cr, err := util.NewAdminCredentials(req.GetSecrets())
|
|
|
|
if err != nil {
|
|
|
|
return nil, status.Error(codes.InvalidArgument, err.Error())
|
|
|
|
}
|
|
|
|
defer cr.DeleteCredentials()
|
|
|
|
snapshotID := req.GetSnapshotId()
|
|
|
|
if snapshotID == "" {
|
|
|
|
return nil, status.Error(codes.InvalidArgument, "snapshot ID cannot be empty")
|
|
|
|
}
|
|
|
|
|
|
|
|
if acquired := cs.SnapshotLocks.TryAcquire(snapshotID); !acquired {
|
2021-08-24 15:03:25 +00:00
|
|
|
log.ErrorLog(ctx, util.SnapshotOperationAlreadyExistsFmt, snapshotID)
|
2021-07-22 05:45:17 +00:00
|
|
|
|
2020-08-04 04:25:28 +00:00
|
|
|
return nil, status.Errorf(codes.Aborted, util.SnapshotOperationAlreadyExistsFmt, snapshotID)
|
|
|
|
}
|
|
|
|
defer cs.SnapshotLocks.Release(snapshotID)
|
|
|
|
|
|
|
|
// lock out snapshotID for restore operation
|
|
|
|
if err = cs.OperationLocks.GetDeleteLock(snapshotID); err != nil {
|
2021-08-24 15:03:25 +00:00
|
|
|
log.ErrorLog(ctx, err.Error())
|
2021-07-22 05:45:17 +00:00
|
|
|
|
2020-08-04 04:25:28 +00:00
|
|
|
return nil, status.Error(codes.Aborted, err.Error())
|
|
|
|
}
|
|
|
|
defer cs.OperationLocks.ReleaseDeleteLock(snapshotID)
|
|
|
|
|
2022-02-15 12:11:09 +00:00
|
|
|
volOpt, snapInfo, sid, err := store.NewSnapshotOptionsFromID(ctx, snapshotID, cr)
|
2020-08-04 04:25:28 +00:00
|
|
|
if err != nil {
|
2021-04-04 07:14:33 +00:00
|
|
|
switch {
|
|
|
|
case errors.Is(err, util.ErrPoolNotFound):
|
|
|
|
// if error is ErrPoolNotFound, the pool is already deleted we dont
|
|
|
|
// need to worry about deleting snapshot or omap data, return success
|
2021-08-24 15:03:25 +00:00
|
|
|
log.WarningLog(ctx, "failed to get backend snapshot for %s: %v", snapshotID, err)
|
2021-07-22 05:45:17 +00:00
|
|
|
|
2020-08-04 04:25:28 +00:00
|
|
|
return &csi.DeleteSnapshotResponse{}, nil
|
2021-04-04 07:14:33 +00:00
|
|
|
case errors.Is(err, util.ErrKeyNotFound):
|
|
|
|
// if error is ErrKeyNotFound, then a previous attempt at deletion was complete
|
|
|
|
// or partially complete (snap and snapOMap are garbage collected already), hence return
|
|
|
|
// success as deletion is complete
|
2020-08-04 04:25:28 +00:00
|
|
|
return &csi.DeleteSnapshotResponse{}, nil
|
2021-08-25 06:46:03 +00:00
|
|
|
case errors.Is(err, cerrors.ErrSnapNotFound):
|
2022-03-29 16:19:31 +00:00
|
|
|
err = store.UndoSnapReservation(ctx, volOpt, *sid, sid.RequestName, cr)
|
2020-08-04 04:25:28 +00:00
|
|
|
if err != nil {
|
2021-08-24 15:03:25 +00:00
|
|
|
log.ErrorLog(ctx, "failed to remove reservation for snapname (%s) with backing snap (%s) (%s)",
|
2022-03-29 16:19:31 +00:00
|
|
|
sid.RequestName, sid.FsSnapshotName, err)
|
2021-07-22 05:45:17 +00:00
|
|
|
|
2020-08-04 04:25:28 +00:00
|
|
|
return nil, status.Error(codes.Internal, err.Error())
|
|
|
|
}
|
2021-07-22 05:45:17 +00:00
|
|
|
|
2020-08-04 04:25:28 +00:00
|
|
|
return &csi.DeleteSnapshotResponse{}, nil
|
2021-08-25 06:46:03 +00:00
|
|
|
case errors.Is(err, cerrors.ErrVolumeNotFound):
|
2021-04-04 07:14:33 +00:00
|
|
|
// if the error is ErrVolumeNotFound, the subvolume is already deleted
|
|
|
|
// from backend, Hence undo the omap entries and return success
|
2021-08-24 15:03:25 +00:00
|
|
|
log.ErrorLog(ctx, "Volume not present")
|
2022-03-29 16:19:31 +00:00
|
|
|
err = store.UndoSnapReservation(ctx, volOpt, *sid, sid.RequestName, cr)
|
2021-02-10 08:19:40 +00:00
|
|
|
if err != nil {
|
2021-08-24 15:03:25 +00:00
|
|
|
log.ErrorLog(ctx, "failed to remove reservation for snapname (%s) with backing snap (%s) (%s)",
|
2022-03-29 16:19:31 +00:00
|
|
|
sid.RequestName, sid.FsSnapshotName, err)
|
2021-07-22 05:45:17 +00:00
|
|
|
|
2021-02-10 08:19:40 +00:00
|
|
|
return nil, status.Error(codes.Internal, err.Error())
|
|
|
|
}
|
2021-07-22 05:45:17 +00:00
|
|
|
|
2021-02-10 08:19:40 +00:00
|
|
|
return &csi.DeleteSnapshotResponse{}, nil
|
2021-04-04 07:14:33 +00:00
|
|
|
default:
|
|
|
|
return nil, status.Error(codes.Internal, err.Error())
|
2021-02-10 08:19:40 +00:00
|
|
|
}
|
2020-08-04 04:25:28 +00:00
|
|
|
}
|
2020-10-19 07:08:57 +00:00
|
|
|
defer volOpt.Destroy()
|
2020-08-04 04:25:28 +00:00
|
|
|
|
|
|
|
// safeguard against parallel create or delete requests against the same
|
|
|
|
// name
|
|
|
|
if acquired := cs.SnapshotLocks.TryAcquire(sid.RequestName); !acquired {
|
2021-08-24 15:03:25 +00:00
|
|
|
log.ErrorLog(ctx, util.SnapshotOperationAlreadyExistsFmt, sid.RequestName)
|
2021-07-22 05:45:17 +00:00
|
|
|
|
2020-08-04 04:25:28 +00:00
|
|
|
return nil, status.Errorf(codes.Aborted, util.VolumeOperationAlreadyExistsFmt, sid.RequestName)
|
|
|
|
}
|
|
|
|
defer cs.SnapshotLocks.Release(sid.RequestName)
|
|
|
|
|
|
|
|
if snapInfo.HasPendingClones == "yes" {
|
|
|
|
return nil, status.Errorf(codes.FailedPrecondition, "snapshot %s has pending clones", snapshotID)
|
|
|
|
}
|
2022-02-15 12:11:09 +00:00
|
|
|
snapClient := core.NewSnapshot(volOpt.GetConnection(), sid.FsSnapshotName, &volOpt.SubVolume)
|
2021-09-16 13:47:57 +00:00
|
|
|
if snapInfo.Protected == core.SnapshotIsProtected {
|
2022-02-15 12:11:09 +00:00
|
|
|
err = snapClient.UnprotectSnapshot(ctx)
|
2020-08-04 04:25:28 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, status.Error(codes.Internal, err.Error())
|
|
|
|
}
|
|
|
|
}
|
2022-02-15 12:11:09 +00:00
|
|
|
err = snapClient.DeleteSnapshot(ctx)
|
2020-08-04 04:25:28 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, status.Error(codes.Internal, err.Error())
|
|
|
|
}
|
2022-03-29 16:19:31 +00:00
|
|
|
err = store.UndoSnapReservation(ctx, volOpt, *sid, sid.RequestName, cr)
|
2020-08-04 04:25:28 +00:00
|
|
|
if err != nil {
|
2021-08-24 15:03:25 +00:00
|
|
|
log.ErrorLog(ctx, "failed to remove reservation for snapname (%s) with backing snap (%s) (%s)",
|
2020-08-04 04:25:28 +00:00
|
|
|
sid.RequestName, sid.FsSnapshotName, err)
|
2021-07-22 05:45:17 +00:00
|
|
|
|
2020-08-04 04:25:28 +00:00
|
|
|
return nil, status.Error(codes.Internal, err.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
return &csi.DeleteSnapshotResponse{}, nil
|
|
|
|
}
|