-
Notifications
You must be signed in to change notification settings - Fork 547
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[WIP] initial steps for VolumeGroupSnapshot
- Loading branch information
Showing
9 changed files
with
689 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,209 @@ | ||
/* | ||
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/container-storage-interface/spec/lib/go/csi" | ||
"google.golang.org/grpc/codes" | ||
"google.golang.org/grpc/status" | ||
|
||
"github.com/ceph/ceph-csi/internal/rbd_group" | ||
types "github.com/ceph/ceph-csi/internal/rbd_types" | ||
"github.com/ceph/ceph-csi/internal/util" | ||
) | ||
|
||
// cephConfig contains the configuration parameters for the Ceph cluster. | ||
type cephConfig struct { | ||
clusterID string | ||
mons string | ||
pool string | ||
journalPool string | ||
namespace string | ||
} | ||
|
||
func getCephConfig(ctx context.Context, params, secrets map[string]string) (*cephConfig, error) { | ||
clusterID, err := util.GetClusterID(params) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
mons, _, err := util.GetMonsAndClusterID(ctx, clusterID, false) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
pool := params["pool"] | ||
if pool == "" { | ||
return nil, errors.New("missing required parameter: pool") | ||
} | ||
|
||
journalPool := params["journalPool"] | ||
if journalPool == "" { | ||
journalPool = pool | ||
} | ||
|
||
namespace := params["radosNamespace"] | ||
if namespace == "" { | ||
return nil, errors.New("missing required parameter: radosNamespace") | ||
} | ||
|
||
return &cephConfig{ | ||
clusterID: clusterID, | ||
mons: mons, | ||
pool: pool, | ||
journalPool: journalPool, | ||
namespace: namespace, | ||
}, nil | ||
} | ||
|
||
func (cs *ControllerServer) GroupControllerGetCapabilities(context.Context, *csi.GroupControllerGetCapabilitiesRequest) (*csi.GroupControllerGetCapabilitiesResponse, error) { | ||
return &csi.GroupControllerGetCapabilitiesResponse{ | ||
Capabilities: []*csi.GroupControllerServiceCapability{{ | ||
Type: &csi.GroupControllerServiceCapability_Rpc{ | ||
Rpc: &csi.GroupControllerServiceCapability_RPC{ | ||
Type: csi.GroupControllerServiceCapability_RPC_CREATE_DELETE_GET_VOLUME_GROUP_SNAPSHOT, | ||
}, | ||
}, | ||
}}, | ||
}, nil | ||
} | ||
|
||
func getVolumesForGroup(ctx context.Context, volumeIDs []string, secrets map[string]string) ([]types.Volume, error) { | ||
creds, err := util.NewUserCredentials(secrets) | ||
if err != nil { | ||
return nil, err | ||
} | ||
defer creds.DeleteCredentials() | ||
|
||
volumes := make([]types.Volume, len(volumeIDs)) | ||
for i, id := range volumeIDs { | ||
volume, err := GenVolFromVolID(ctx, id, creds, secrets) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
volumes[i] = volume | ||
} | ||
|
||
return volumes, nil | ||
} | ||
|
||
func (cs *ControllerServer) CreateVolumeGroupSnapshot(ctx context.Context, req *csi.CreateVolumeGroupSnapshotRequest) (*csi.CreateVolumeGroupSnapshotResponse, error) { | ||
|
||
// 1. resolve each rbd-image from the volume-id | ||
// 2. create a RBDVolumeGroup | ||
// 3. add each rbd-image to the RBDVolumeGroup | ||
// 4. create a GroupSnapshot | ||
// 5. remove all rbd-images from the RBDVolumeGroup | ||
// 6. return the RBDVolumeGroup-name and list of snapshots | ||
|
||
config, err := getCephConfig(ctx, req.GetParameters(), req.GetSecrets()) | ||
if err != nil { | ||
return nil, status.Error(codes.InvalidArgument, err.Error()) | ||
} | ||
|
||
volumes, err := getVolumesForGroup(ctx, req.GetSourceVolumeIds(), req.GetSecrets()) | ||
if err != nil { | ||
return nil, status.Error(codes.InvalidArgument, err.Error()) | ||
} | ||
|
||
group := rbd_group.NewVolumeGroup(ctx, req.GetName(), config.clusterID, req.GetSecrets()) | ||
defer group.Destroy(ctx) | ||
|
||
err = group.SetMonitors(ctx, config.mons) | ||
if err != nil { | ||
return nil, status.Error(codes.Aborted, err.Error()) | ||
} | ||
|
||
err = group.SetPool(ctx, config.pool) | ||
if err != nil { | ||
return nil, status.Error(codes.Aborted, err.Error()) | ||
} | ||
|
||
err = group.SetJournalNamespace(ctx, config.journalPool, config.namespace) | ||
if err != nil { | ||
return nil, status.Error(codes.Aborted, err.Error()) | ||
} | ||
|
||
// TODO: add images to the group | ||
for _, volume := range volumes { | ||
err = group.AddVolume(ctx, volume) | ||
if err != nil { | ||
return nil, status.Error(codes.Aborted, err.Error()) | ||
} | ||
} | ||
|
||
groupSnapshot, err := group.CreateSnapshot(ctx, req.GetName()) | ||
if err != nil { | ||
return nil, status.Error(codes.Aborted, err.Error()) | ||
} | ||
defer groupSnapshot.Destroy(ctx) | ||
|
||
groupSnapshotID, err := groupSnapshot.GetID(ctx) | ||
if err != nil { | ||
return nil, status.Error(codes.Aborted, err.Error()) | ||
} | ||
|
||
snapshots, err := groupSnapshot.ListSnapshots(ctx) | ||
if err != nil { | ||
return nil, status.Error(codes.Aborted, err.Error()) | ||
} | ||
|
||
csiSnapshots := make([]*csi.Snapshot, len(snapshots)) | ||
for i, snapshot := range snapshots { | ||
csiSnapshot, err := snapshot.ToCSISnapshot(ctx) | ||
if err != nil { | ||
return nil, status.Error(codes.Aborted, err.Error()) | ||
} | ||
|
||
csiSnapshots[i] = csiSnapshot | ||
} | ||
|
||
// TODO: remove images from the group | ||
for _, volume := range volumes { | ||
err = group.RemoveVolume(ctx, volume) | ||
if err != nil { | ||
return nil, status.Error(codes.Aborted, err.Error()) | ||
} | ||
} | ||
|
||
return &csi.CreateVolumeGroupSnapshotResponse{ | ||
GroupSnapshot: &csi.VolumeGroupSnapshot{ | ||
GroupSnapshotId: groupSnapshotID, | ||
Snapshots: csiSnapshots, | ||
CreationTime: nil, | ||
ReadyToUse: groupSnapshot.GetReadyToUse(ctx), | ||
}, | ||
}, nil | ||
} | ||
|
||
func (cs *ControllerServer) DeleteVolumeGroupSnapshot(ctx context.Context, req *csi.DeleteVolumeGroupSnapshotRequest) (*csi.DeleteVolumeGroupSnapshotResponse, error) { | ||
|
||
// 1. verify that all snapshots in the request are all snapshots in the group | ||
// 2. delete the group | ||
|
||
return nil, nil | ||
} | ||
|
||
// TODO | ||
// sortof optional, only used for static/pre-provisioned VolumeGroupSnapshots | ||
func (cs *ControllerServer) GetVolumeGroupSnapshot(ctx context.Context, req *csi.GetVolumeGroupSnapshotRequest) (*csi.GetVolumeGroupSnapshotResponse, error) { | ||
return nil, nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
package rbd | ||
|
||
import ( | ||
"context" | ||
|
||
"github.com/ceph/go-ceph/rados" | ||
librbd "github.com/ceph/go-ceph/rbd" | ||
|
||
types "github.com/ceph/ceph-csi/internal/rbd_types" | ||
) | ||
|
||
///////////////////////////////////////////////////////////////////// | ||
// // | ||
// this is the implementation of the rbd_types.RBDVolume interface // | ||
// // | ||
///////////////////////////////////////////////////////////////////// | ||
|
||
// verify that the rbdImage type implements the RBDVolume interface | ||
var _ types.Volume = &rbdImage{} | ||
|
||
func (ri *rbdImage) GetID(ctx context.Context) (string, error) { | ||
return ri.VolID, nil | ||
} | ||
|
||
// AddToGroup adds the image to the group with the ioctx. This is called from | ||
// the rbd_group package, as that can pass the ioctx of the group. | ||
func (ri *rbdImage) AddToGroup(ctx context.Context, ioctx *rados.IOContext, group string) error { | ||
return librbd.GroupImageAdd(ioctx, group, ri.ioctx, ri.RbdImageName) | ||
} | ||
|
||
// RemoveFromGroup removes the image to the group with the ioctx. This is | ||
// called from the rbd_group package, as that can pass the ioctx of the group. | ||
func (ri *rbdImage) RemoveFromGroup(ctx context.Context, ioctx *rados.IOContext, group string) error { | ||
return librbd.GroupImageRemove(ioctx, group, ri.ioctx, ri.RbdImageName) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
/* | ||
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_group | ||
|
||
import ( | ||
"context" | ||
"fmt" | ||
|
||
"github.com/container-storage-interface/spec/lib/go/csi" | ||
|
||
types "github.com/ceph/ceph-csi/internal/rbd_types" | ||
) | ||
|
||
// verify that rbdSnapshot type implements the Snapshot interface | ||
var _ types.Snapshot = &rbdGroupSnapshot{} | ||
|
||
// rbdGroupSnapshot describes a single snapshot that was taken as part of a group. | ||
type rbdGroupSnapshot struct { | ||
parent types.Volume | ||
snapName string | ||
snapID uint64 // not needed now, may be used for cloning in the future | ||
|
||
// group is the optional value for a VolumeGroup that was used for | ||
group types.VolumeGroup | ||
} | ||
|
||
func newGroupSnapshot(group, name string, snapID uint64) types.Snapshot { | ||
return &rbdGroupSnapshot{ | ||
//groupName: group, | ||
snapName: name, | ||
snapID: snapID, | ||
} | ||
} | ||
|
||
func (rgs *rbdGroupSnapshot) Destroy(ctx context.Context) { | ||
// nothing to do yet | ||
} | ||
|
||
// String returns the image-spec of the snapshot. | ||
func (rgs *rbdGroupSnapshot) String() string { | ||
return fmt.Sprintf("%s@%s", rgs.parent, rgs.snapName) | ||
} | ||
|
||
func (rgs *rbdGroupSnapshot) ToCSISnapshot(ctx context.Context) (*csi.Snapshot, error) { | ||
parentID, err := rgs.parent.GetID(ctx) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
return &csi.Snapshot{ | ||
SizeBytes: 0, | ||
SnapshotId: "", | ||
SourceVolumeId: "", | ||
CreationTime: nil, | ||
ReadyToUse: false, | ||
GroupSnapshotId: parentID, | ||
}, nil | ||
} | ||
|
||
func (rgs *rbdGroupSnapshot) Map(ctx context.Context) (string, error) { | ||
return "/dev/rbd123", nil | ||
} |
Oops, something went wrong.