mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-09 16:00:22 +00:00
86759d4653
This commit adds the support for storing the CephFS omap data in a namespace specified in the ceph-csi-config ConfigMap under cephFS.radosNamespace field. If the radosNamespace is not set, the default radosNamespace will be used i.e, csi. Signed-off-by: Praveen M <m.praveen@ibm.com>
332 lines
11 KiB
Go
332 lines
11 KiB
Go
/*
|
|
Copyright 2018 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 core
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
"path"
|
|
"strings"
|
|
"sync"
|
|
|
|
cerrors "github.com/ceph/ceph-csi/internal/cephfs/errors"
|
|
fsutil "github.com/ceph/ceph-csi/internal/cephfs/util"
|
|
"github.com/ceph/ceph-csi/internal/util"
|
|
"github.com/ceph/ceph-csi/internal/util/log"
|
|
|
|
fsAdmin "github.com/ceph/go-ceph/cephfs/admin"
|
|
"github.com/ceph/go-ceph/rados"
|
|
)
|
|
|
|
var (
|
|
// clusterAdditionalInfo contains information regarding if resize is
|
|
// supported in the particular cluster and subvolumegroup is
|
|
// created or not.
|
|
// Subvolumegroup creation and volume resize decisions are
|
|
// taken through this additional cluster information.
|
|
clusterAdditionalInfo = make(map[string]*localClusterState)
|
|
// clusterAdditionalInfoMutex is used to protect against
|
|
// concurrent writes.
|
|
clusterAdditionalInfoMutex = sync.Mutex{}
|
|
)
|
|
|
|
// Subvolume holds subvolume information. This includes only the needed members
|
|
// from fsAdmin.SubVolumeInfo.
|
|
type Subvolume struct {
|
|
BytesQuota int64
|
|
Path string
|
|
Features []string
|
|
}
|
|
|
|
// SubVolumeClient is the interface that holds the signature of subvolume methods
|
|
// that interacts with CephFS subvolume API's.
|
|
//
|
|
//nolint:interfacebloat // SubVolumeClient has more than 10 methods, that is ok.
|
|
type SubVolumeClient interface {
|
|
// GetVolumeRootPathCeph returns the root path of the subvolume.
|
|
GetVolumeRootPathCeph(ctx context.Context) (string, error)
|
|
// CreateVolume creates a subvolume.
|
|
CreateVolume(ctx context.Context) error
|
|
// GetSubVolumeInfo returns the subvolume information.
|
|
GetSubVolumeInfo(ctx context.Context) (*Subvolume, error)
|
|
// ExpandVolume expands the volume if the requested size is greater than
|
|
// the subvolume size.
|
|
ExpandVolume(ctx context.Context, bytesQuota int64) error
|
|
// ResizeVolume resizes the volume.
|
|
ResizeVolume(ctx context.Context, bytesQuota int64) error
|
|
// PurgSubVolume removes the subvolume.
|
|
PurgeVolume(ctx context.Context, force bool) error
|
|
|
|
// CreateCloneFromSubVolume creates a clone from the subvolume.
|
|
CreateCloneFromSubvolume(ctx context.Context, parentvolOpt *SubVolume) error
|
|
// GetCloneState returns the clone state of the subvolume.
|
|
GetCloneState(ctx context.Context) (cephFSCloneState, error)
|
|
// CreateCloneFromSnapshot creates a clone from the subvolume snapshot.
|
|
CreateCloneFromSnapshot(ctx context.Context, snap Snapshot) error
|
|
// CleanupSnapshotFromSubvolume removes the snapshot from the subvolume.
|
|
CleanupSnapshotFromSubvolume(ctx context.Context, parentVol *SubVolume) error
|
|
|
|
// SetAllMetadata set all the metadata from arg parameters on Ssubvolume.
|
|
SetAllMetadata(parameters map[string]string) error
|
|
// UnsetAllMetadata unset all the metadata from arg keys on subvolume.
|
|
UnsetAllMetadata(keys []string) error
|
|
}
|
|
|
|
// subVolumeClient implements SubVolumeClient interface.
|
|
type subVolumeClient struct {
|
|
*SubVolume // Embedded SubVolume struct.
|
|
clusterID string // Cluster ID to check subvolumegroup and resize functionality.
|
|
clusterName string // Cluster name
|
|
enableMetadata bool // Set metadata on volume
|
|
conn *util.ClusterConnection // Cluster connection.
|
|
}
|
|
|
|
// SubVolume holds the information about the subvolume.
|
|
type SubVolume struct {
|
|
VolID string // subvolume id.
|
|
FsName string // filesystem name.
|
|
SubvolumeGroup string // subvolume group name where subvolume will be created.
|
|
RadosNamespace string // rados namespace where omap data will be stored.
|
|
Pool string // pool name where subvolume will be created.
|
|
Features []string // subvolume features.
|
|
Size int64 // subvolume size.
|
|
}
|
|
|
|
// NewSubVolume returns a new subvolume client.
|
|
func NewSubVolume(
|
|
conn *util.ClusterConnection,
|
|
vol *SubVolume,
|
|
clusterID,
|
|
clusterName string,
|
|
setMetadata bool,
|
|
) SubVolumeClient {
|
|
return &subVolumeClient{
|
|
SubVolume: vol,
|
|
clusterID: clusterID,
|
|
clusterName: clusterName,
|
|
enableMetadata: setMetadata,
|
|
conn: conn,
|
|
}
|
|
}
|
|
|
|
// GetVolumeRootPathCephDeprecated returns the root path of the subvolume.
|
|
func GetVolumeRootPathCephDeprecated(volID fsutil.VolumeID) string {
|
|
return path.Join("/", "csi-volumes", string(volID))
|
|
}
|
|
|
|
// GetVolumeRootPathCeph returns the root path of the subvolume.
|
|
func (s *subVolumeClient) GetVolumeRootPathCeph(ctx context.Context) (string, error) {
|
|
fsa, err := s.conn.GetFSAdmin()
|
|
if err != nil {
|
|
log.ErrorLog(ctx, "could not get FSAdmin err %s", err)
|
|
|
|
return "", err
|
|
}
|
|
svPath, err := fsa.SubVolumePath(s.FsName, s.SubvolumeGroup, s.VolID)
|
|
if err != nil {
|
|
log.ErrorLog(ctx, "failed to get the rootpath for the vol %s: %s", s.VolID, err)
|
|
if errors.Is(err, rados.ErrNotFound) {
|
|
return "", fmt.Errorf("Failed as %w (internal %w)", cerrors.ErrVolumeNotFound, err)
|
|
}
|
|
|
|
return "", err
|
|
}
|
|
|
|
return svPath, nil
|
|
}
|
|
|
|
// GetSubVolumeInfo returns the subvolume information.
|
|
func (s *subVolumeClient) GetSubVolumeInfo(ctx context.Context) (*Subvolume, error) {
|
|
fsa, err := s.conn.GetFSAdmin()
|
|
if err != nil {
|
|
log.ErrorLog(ctx, "could not get FSAdmin, can not fetch metadata pool for %s:", s.FsName, err)
|
|
|
|
return nil, err
|
|
}
|
|
|
|
info, err := fsa.SubVolumeInfo(s.FsName, s.SubvolumeGroup, s.VolID)
|
|
if err != nil {
|
|
log.ErrorLog(ctx, "failed to get subvolume info for the vol %s: %s", s.VolID, err)
|
|
if errors.Is(err, rados.ErrNotFound) {
|
|
return nil, cerrors.ErrVolumeNotFound
|
|
}
|
|
// In case the error is invalid command return error to the caller.
|
|
var invalid fsAdmin.NotImplementedError
|
|
if errors.As(err, &invalid) {
|
|
return nil, cerrors.ErrInvalidCommand
|
|
}
|
|
|
|
return nil, err
|
|
}
|
|
|
|
subvol := Subvolume{
|
|
// only set BytesQuota when it is of type ByteCount
|
|
Path: info.Path,
|
|
Features: make([]string, len(info.Features)),
|
|
}
|
|
bc, ok := info.BytesQuota.(fsAdmin.ByteCount)
|
|
if !ok {
|
|
// If info.BytesQuota == Infinite (in case it is not set)
|
|
// or nil (in case the subvolume is in snapshot-retained state),
|
|
// just continue without returning quota information.
|
|
if !(info.BytesQuota == fsAdmin.Infinite || info.State == fsAdmin.StateSnapRetained) {
|
|
return nil, fmt.Errorf("subvolume %s has unsupported quota: %v", s.VolID, info.BytesQuota)
|
|
}
|
|
} else {
|
|
subvol.BytesQuota = int64(bc)
|
|
}
|
|
for i, feature := range info.Features {
|
|
subvol.Features[i] = string(feature)
|
|
}
|
|
|
|
return &subvol, nil
|
|
}
|
|
|
|
type operationState int64
|
|
|
|
const (
|
|
supported operationState = iota
|
|
unsupported
|
|
)
|
|
|
|
type localClusterState struct {
|
|
// set the enum value i.e., supported or
|
|
// unsupported as per the state of the cluster.
|
|
subVolMetadataState operationState
|
|
subVolSnapshotMetadataState operationState
|
|
}
|
|
|
|
func newLocalClusterState(clusterID string) {
|
|
// verify if corresponding clusterID key is present in the map,
|
|
// and if not, initialize with default values(false).
|
|
clusterAdditionalInfoMutex.Lock()
|
|
defer clusterAdditionalInfoMutex.Unlock()
|
|
if _, keyPresent := clusterAdditionalInfo[clusterID]; !keyPresent {
|
|
clusterAdditionalInfo[clusterID] = &localClusterState{}
|
|
}
|
|
}
|
|
|
|
// CreateVolume creates a subvolume.
|
|
func (s *subVolumeClient) CreateVolume(ctx context.Context) error {
|
|
newLocalClusterState(s.clusterID)
|
|
|
|
ca, err := s.conn.GetFSAdmin()
|
|
if err != nil {
|
|
log.ErrorLog(ctx, "could not get FSAdmin, can not create subvolume %s: %s", s.VolID, err)
|
|
|
|
return err
|
|
}
|
|
|
|
opts := fsAdmin.SubVolumeOptions{
|
|
Size: fsAdmin.ByteCount(s.Size),
|
|
}
|
|
if s.Pool != "" {
|
|
opts.PoolLayout = s.Pool
|
|
}
|
|
|
|
// FIXME: check if the right credentials are used ("-n", cephEntityClientPrefix + cr.ID)
|
|
err = ca.CreateSubVolume(s.FsName, s.SubvolumeGroup, s.VolID, &opts)
|
|
if err != nil {
|
|
log.ErrorLog(ctx, "failed to create subvolume %s in fs %s: %s", s.VolID, s.FsName, err)
|
|
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// ExpandVolume will expand the volume if the requested size is greater than
|
|
// the subvolume size.
|
|
func (s *subVolumeClient) ExpandVolume(ctx context.Context, bytesQuota int64) error {
|
|
// get the subvolume size for comparison with the requested size.
|
|
info, err := s.GetSubVolumeInfo(ctx)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
// resize if the requested size is greater than the current size.
|
|
if s.Size > info.BytesQuota {
|
|
log.DebugLog(ctx, "clone %s size %d is greater than requested size %d", s.VolID, info.BytesQuota, bytesQuota)
|
|
err = s.ResizeVolume(ctx, bytesQuota)
|
|
}
|
|
|
|
return err
|
|
}
|
|
|
|
// ResizeVolume will use the ceph fs subvolume resize command to resize the
|
|
// subvolume.
|
|
func (s *subVolumeClient) ResizeVolume(ctx context.Context, bytesQuota int64) error {
|
|
fsa, err := s.conn.GetFSAdmin()
|
|
if err != nil {
|
|
log.ErrorLog(ctx, "could not get FSAdmin, can not resize volume %s:", s.FsName, err)
|
|
|
|
return err
|
|
}
|
|
_, err = fsa.ResizeSubVolume(s.FsName, s.SubvolumeGroup, s.VolID, fsAdmin.ByteCount(bytesQuota), true)
|
|
if err != nil {
|
|
log.ErrorLog(ctx, "failed to resize subvolume %s in fs %s: %s", s.VolID, s.FsName, err)
|
|
}
|
|
|
|
return err
|
|
}
|
|
|
|
// PurgSubVolume removes the subvolume.
|
|
func (s *subVolumeClient) PurgeVolume(ctx context.Context, force bool) error {
|
|
fsa, err := s.conn.GetFSAdmin()
|
|
if err != nil {
|
|
log.ErrorLog(ctx, "could not get FSAdmin %s:", err)
|
|
|
|
return err
|
|
}
|
|
|
|
opt := fsAdmin.SubVolRmFlags{}
|
|
opt.Force = force
|
|
|
|
if checkSubvolumeHasFeature("snapshot-retention", s.Features) {
|
|
opt.RetainSnapshots = true
|
|
}
|
|
|
|
err = fsa.RemoveSubVolumeWithFlags(s.FsName, s.SubvolumeGroup, s.VolID, opt)
|
|
if err != nil {
|
|
log.ErrorLog(ctx, "failed to purge subvolume %s in fs %s: %s", s.VolID, s.FsName, err)
|
|
if strings.Contains(err.Error(), cerrors.VolumeNotEmpty) {
|
|
return fmt.Errorf("Failed as %w (internal %w)", cerrors.ErrVolumeHasSnapshots, err)
|
|
}
|
|
if errors.Is(err, rados.ErrNotFound) {
|
|
return fmt.Errorf("Failed as %w (internal %w)", cerrors.ErrVolumeNotFound, err)
|
|
}
|
|
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// checkSubvolumeHasFeature verifies if the referred subvolume has
|
|
// the required feature.
|
|
func checkSubvolumeHasFeature(feature string, subVolFeatures []string) bool {
|
|
// The subvolume "features" are based on the internal version of the subvolume.
|
|
// Verify if subvolume supports the required feature.
|
|
for _, subvolFeature := range subVolFeatures {
|
|
if subvolFeature == feature {
|
|
return true
|
|
}
|
|
}
|
|
|
|
return false
|
|
}
|