mirror of
https://github.com/ceph/ceph-csi.git
synced 2025-03-06 23:49:30 +00:00
This commit includes: 1). Moves rbd errors from internal/util/errors to internal/rbd/errors. 2). Introduces ShouldRetryVolumeGroupGeneration helper function to determine whether volume group generation should continue based on specific error types. The function returns true if the error is of type ErrPoolNotFound, ErrRBDGroupNotFound, ErrPermissionDenied. (Ceph user might not have access to all the objects/pools where mapping exists) Signed-off-by: Praveen M <m.praveen@ibm.com>
94 lines
2.8 KiB
Go
94 lines
2.8 KiB
Go
/*
|
|
Copyright 2024 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"
|
|
"errors"
|
|
|
|
"github.com/ceph/ceph-csi/internal/rbd"
|
|
rbd_errors "github.com/ceph/ceph-csi/internal/rbd/errors"
|
|
"github.com/ceph/ceph-csi/internal/util"
|
|
"github.com/ceph/ceph-csi/internal/util/log"
|
|
|
|
ekr "github.com/csi-addons/spec/lib/go/encryptionkeyrotation"
|
|
"google.golang.org/grpc"
|
|
"google.golang.org/grpc/codes"
|
|
"google.golang.org/grpc/status"
|
|
)
|
|
|
|
type EncryptionKeyRotationServer struct {
|
|
*ekr.UnimplementedEncryptionKeyRotationControllerServer
|
|
driverInstance string
|
|
volLock *util.VolumeLocks
|
|
}
|
|
|
|
func NewEncryptionKeyRotationServer(driverInstance string, volLock *util.VolumeLocks) *EncryptionKeyRotationServer {
|
|
return &EncryptionKeyRotationServer{
|
|
driverInstance: driverInstance,
|
|
volLock: volLock,
|
|
}
|
|
}
|
|
|
|
func (ekrs *EncryptionKeyRotationServer) RegisterService(svc grpc.ServiceRegistrar) {
|
|
ekr.RegisterEncryptionKeyRotationControllerServer(svc, ekrs)
|
|
}
|
|
|
|
func (ekrs *EncryptionKeyRotationServer) EncryptionKeyRotate(
|
|
ctx context.Context,
|
|
req *ekr.EncryptionKeyRotateRequest,
|
|
) (*ekr.EncryptionKeyRotateResponse, error) {
|
|
// Get the volume ID from the request
|
|
volID := req.GetVolumeId()
|
|
if volID == "" {
|
|
return nil, status.Error(codes.InvalidArgument, "empty volume ID in request")
|
|
}
|
|
|
|
if acquired := ekrs.volLock.TryAcquire(volID); !acquired {
|
|
return nil, status.Errorf(codes.Aborted, util.VolumeOperationAlreadyExistsFmt, volID)
|
|
}
|
|
defer ekrs.volLock.Release(volID)
|
|
|
|
mgr := rbd.NewManager(ekrs.driverInstance, nil, req.GetSecrets())
|
|
defer mgr.Destroy(ctx)
|
|
|
|
rbdVol, err := mgr.GetVolumeByID(ctx, volID)
|
|
if err != nil {
|
|
switch {
|
|
case errors.Is(err, rbd_errors.ErrImageNotFound):
|
|
err = status.Errorf(codes.NotFound, "volume ID %s not found", volID)
|
|
case errors.Is(err, util.ErrPoolNotFound):
|
|
log.ErrorLog(ctx, "failed to get backend volume for %s: %v", volID, err)
|
|
err = status.Error(codes.NotFound, err.Error())
|
|
default:
|
|
err = status.Error(codes.Internal, err.Error())
|
|
}
|
|
|
|
return nil, err
|
|
}
|
|
defer rbdVol.Destroy(ctx)
|
|
|
|
err = rbdVol.RotateEncryptionKey(ctx)
|
|
if err != nil {
|
|
return nil, status.Errorf(
|
|
codes.Internal, "failed to rotate the key for volume with ID %q: %s", volID, err.Error())
|
|
}
|
|
|
|
// Success
|
|
return &ekr.EncryptionKeyRotateResponse{}, nil
|
|
}
|