mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-09 16:00:22 +00:00
75d190f430
currently in someplaces we are checking the stderror for CLI errors and insome places we are checking for just error. This commit fixes the issue by checking the stderror for actual CLI errors. Co-authored-by: Yug <yuggupta27@gmail.com> Signed-off-by: Madhu Rajanna <madhupr007@gmail.com>
256 lines
6.8 KiB
Go
256 lines
6.8 KiB
Go
/*
|
|
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
|
|
}
|
|
|
|
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,
|
|
}
|
|
|
|
stdErr, err := execCommandWithStdErr(
|
|
ctx,
|
|
"ceph",
|
|
args[:]...)
|
|
if err != nil {
|
|
util.ErrorLog(ctx, "failed to create subvolume snapshot %s %s in fs %s with Error: %v. stdError %s", string(snapID), string(volID), volOptions.FsName, err, stdErr)
|
|
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",
|
|
}
|
|
|
|
stdErr, err := execCommandWithStdErr(
|
|
ctx,
|
|
"ceph",
|
|
args[:]...)
|
|
if err != nil {
|
|
util.ErrorLog(ctx, "failed to delete subvolume snapshot %s %s in fs %s with Error: %v. stdError: %s", string(snapID), string(volID), volOptions.FsName, err, stdErr)
|
|
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",
|
|
}
|
|
stdErr, err := execCommandJSON(
|
|
ctx,
|
|
&snap,
|
|
"ceph",
|
|
args[:]...)
|
|
if err != nil {
|
|
util.ErrorLog(ctx, "failed to get subvolume snapshot info %s %s in fs %s with Error: %v. stdError: %s", string(snapID), string(volID), volOptions.FsName, err, stdErr)
|
|
if strings.Contains(stdErr, snapNotFound) {
|
|
return snapshotInfo{}, ErrSnapNotFound
|
|
}
|
|
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,
|
|
}
|
|
|
|
stdErr, err := execCommandWithStdErr(
|
|
ctx,
|
|
"ceph",
|
|
args[:]...)
|
|
if err != nil {
|
|
util.ErrorLog(ctx, "failed to protect subvolume snapshot %s %s in fs %s with Error: %v. stdError: %s", string(snapID), string(volID), volOptions.FsName, err, stdErr)
|
|
if strings.Contains(stdErr, snapProtectionExist) {
|
|
return nil
|
|
}
|
|
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,
|
|
}
|
|
|
|
stdErr, err := execCommandWithStdErr(
|
|
ctx,
|
|
"ceph",
|
|
args[:]...)
|
|
if err != nil {
|
|
util.ErrorLog(ctx, "failed to unprotect subvolume snapshot %s %s in fs %s with Error: %vv stdError: %s", string(snapID), string(volID), volOptions.FsName, err, stdErr)
|
|
// 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(stdErr, snapProtectionExist) {
|
|
return nil
|
|
}
|
|
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)
|
|
}
|
|
|
|
stdErr, err := execCommandWithStdErr(
|
|
ctx,
|
|
"ceph",
|
|
args[:]...)
|
|
|
|
if err != nil {
|
|
util.ErrorLog(ctx, "failed to clone subvolume snapshot %s %s in fs %s with Error: %v. stdError: %s", string(cloneID), string(volID), parentVolOptions.FsName, err, stdErr)
|
|
if strings.HasPrefix(stdErr, volumeNotFound) {
|
|
return ErrVolumeNotFound
|
|
}
|
|
return err
|
|
}
|
|
return nil
|
|
}
|