/* 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 cephfs import ( "context" "strings" "github.com/ceph/ceph-csi/internal/util" "github.com/golang/protobuf/ptypes/timestamp" ) // autoProtect points to the snapshot auto-protect feature of // the subvolume. const ( autoProtect = "snapshot-autoprotect" ) // cephfsSnapshot represents a CSI snapshot and its cluster information. type cephfsSnapshot struct { NamePrefix string Monitors string // MetadataPool & Pool fields are not used atm. But its definitely good to have it in this struct // so keeping it here MetadataPool string Pool string ClusterID string RequestName string // ReservedID represents the ID reserved for a snapshot ReservedID string } func createSnapshot(ctx context.Context, volOptions *volumeOptions, cr *util.Credentials, snapID, volID volumeID) error { args := []string{ "fs", "subvolume", "snapshot", "create", volOptions.FsName, string(volID), string(snapID), "--group_name", volOptions.SubvolumeGroup, "-m", volOptions.Monitors, "-c", util.CephConfigPath, "-n", cephEntityClientPrefix + cr.ID, "--keyfile=" + cr.KeyFile, } err := execCommandErr( ctx, "ceph", args[:]...) if err != nil { util.ErrorLog(ctx, "failed to create subvolume snapshot %s %s(%s) in fs %s", string(snapID), string(volID), err, volOptions.FsName) return err } return nil } func deleteSnapshot(ctx context.Context, volOptions *volumeOptions, cr *util.Credentials, snapID, volID volumeID) error { args := []string{ "fs", "subvolume", "snapshot", "rm", volOptions.FsName, string(volID), string(snapID), "--group_name", volOptions.SubvolumeGroup, "-m", volOptions.Monitors, "-c", util.CephConfigPath, "-n", cephEntityClientPrefix + cr.ID, "--keyfile=" + cr.KeyFile, "--force", } err := execCommandErr( ctx, "ceph", args[:]...) if err != nil { util.ErrorLog(ctx, "failed to delete subvolume snapshot %s %s(%s) in fs %s", string(snapID), string(volID), err, volOptions.FsName) return err } return nil } type snapshotInfo struct { CreatedAt string `json:"created_at"` CreationTime *timestamp.Timestamp DataPool string `json:"data_pool"` HasPendingClones string `json:"has_pending_clones"` Protected string `json:"protected"` Size int `json:"size"` } func getSnapshotInfo(ctx context.Context, volOptions *volumeOptions, cr *util.Credentials, snapID, volID volumeID) (snapshotInfo, error) { snap := snapshotInfo{} args := []string{ "fs", "subvolume", "snapshot", "info", volOptions.FsName, string(volID), string(snapID), "--group_name", volOptions.SubvolumeGroup, "-m", volOptions.Monitors, "-c", util.CephConfigPath, "-n", cephEntityClientPrefix + cr.ID, "--keyfile=" + cr.KeyFile, "--format=json", } err := execCommandJSON( ctx, &snap, "ceph", args[:]...) if err != nil { if strings.Contains(err.Error(), snapNotFound) { return snapshotInfo{}, ErrSnapNotFound } util.ErrorLog(ctx, "failed to get subvolume snapshot info %s %s(%s) in fs %s", string(snapID), string(volID), err, volOptions.FsName) return snapshotInfo{}, err } return snap, nil } func protectSnapshot(ctx context.Context, volOptions *volumeOptions, cr *util.Credentials, snapID, volID volumeID) error { // If "snapshot-autoprotect" feature is present, The ProtectSnapshot // call should be treated as a no-op. if checkSubvolumeHasFeature(autoProtect, volOptions.Features) { return nil } args := []string{ "fs", "subvolume", "snapshot", "protect", volOptions.FsName, string(volID), string(snapID), "--group_name", volOptions.SubvolumeGroup, "-m", volOptions.Monitors, "-c", util.CephConfigPath, "-n", cephEntityClientPrefix + cr.ID, "--keyfile=" + cr.KeyFile, } err := execCommandErr( ctx, "ceph", args[:]...) if err != nil { if strings.Contains(err.Error(), snapProtectionExist) { return nil } util.ErrorLog(ctx, "failed to protect subvolume snapshot %s %s(%s) in fs %s", string(snapID), string(volID), err, volOptions.FsName) return err } return nil } func unprotectSnapshot(ctx context.Context, volOptions *volumeOptions, cr *util.Credentials, snapID, volID volumeID) error { // If "snapshot-autoprotect" feature is present, The UnprotectSnapshot // call should be treated as a no-op. if checkSubvolumeHasFeature(autoProtect, volOptions.Features) { return nil } args := []string{ "fs", "subvolume", "snapshot", "unprotect", volOptions.FsName, string(volID), string(snapID), "--group_name", volOptions.SubvolumeGroup, "-m", volOptions.Monitors, "-c", util.CephConfigPath, "-n", cephEntityClientPrefix + cr.ID, "--keyfile=" + cr.KeyFile, } err := execCommandErr( ctx, "ceph", args[:]...) if err != nil { // Incase the snap is already unprotected we get ErrSnapProtectionExist error code // in that case we are safe and we could discard this error. if strings.Contains(err.Error(), snapProtectionExist) { return nil } util.ErrorLog(ctx, "failed to unprotect subvolume snapshot %s %s(%s) in fs %s", string(snapID), string(volID), err, volOptions.FsName) return err } return nil } func cloneSnapshot(ctx context.Context, parentVolOptions *volumeOptions, cr *util.Credentials, volID, snapID, cloneID volumeID, cloneVolOptions *volumeOptions) error { args := []string{ "fs", "subvolume", "snapshot", "clone", parentVolOptions.FsName, string(volID), string(snapID), string(cloneID), "--group_name", parentVolOptions.SubvolumeGroup, "--target_group_name", cloneVolOptions.SubvolumeGroup, "-m", parentVolOptions.Monitors, "-c", util.CephConfigPath, "-n", cephEntityClientPrefix + cr.ID, "--keyfile=" + cr.KeyFile, } if cloneVolOptions.Pool != "" { args = append(args, "--pool_layout", cloneVolOptions.Pool) } err := execCommandErr( ctx, "ceph", args[:]...) if err != nil { util.ErrorLog(ctx, "failed to clone subvolume snapshot %s %s(%s) in fs %s", string(cloneID), string(volID), err, parentVolOptions.FsName) if strings.HasPrefix(err.Error(), volumeNotFound) { return ErrVolumeNotFound } return err } return nil }