2019-05-28 19:03:18 +00:00
|
|
|
/*
|
|
|
|
Copyright 2019 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 (
|
2019-08-22 17:19:06 +00:00
|
|
|
"context"
|
2019-05-28 19:03:18 +00:00
|
|
|
"fmt"
|
|
|
|
|
2020-04-17 09:23:49 +00:00
|
|
|
"github.com/ceph/ceph-csi/internal/util"
|
2019-05-28 19:03:18 +00:00
|
|
|
)
|
|
|
|
|
2020-10-02 08:14:17 +00:00
|
|
|
func (vo *volumeOptions) getFscID(ctx context.Context) (int64, error) {
|
|
|
|
fsa, err := vo.conn.GetFSAdmin()
|
2019-05-28 19:03:18 +00:00
|
|
|
if err != nil {
|
2020-10-02 08:14:17 +00:00
|
|
|
util.ErrorLog(ctx, "could not get FSAdmin, can not fetch filesystem ID for %s:", vo.FsName, err)
|
2021-07-22 05:45:17 +00:00
|
|
|
|
2019-05-28 19:03:18 +00:00
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
|
2020-10-02 08:14:17 +00:00
|
|
|
volumes, err := fsa.EnumerateVolumes()
|
|
|
|
if err != nil {
|
|
|
|
util.ErrorLog(ctx, "could not list volumes, can not fetch filesystem ID for %s:", vo.FsName, err)
|
2021-07-22 05:45:17 +00:00
|
|
|
|
2020-10-02 08:14:17 +00:00
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, vol := range volumes {
|
|
|
|
if vol.Name == vo.FsName {
|
|
|
|
return vol.ID, nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
util.ErrorLog(ctx, "failed to list volume %s", vo.FsName)
|
2021-07-22 05:45:17 +00:00
|
|
|
|
2020-10-02 08:14:17 +00:00
|
|
|
return 0, ErrVolumeNotFound
|
2019-05-28 19:03:18 +00:00
|
|
|
}
|
|
|
|
|
2020-10-02 11:18:24 +00:00
|
|
|
func (vo *volumeOptions) getMetadataPool(ctx context.Context) (string, error) {
|
|
|
|
fsa, err := vo.conn.GetFSAdmin()
|
|
|
|
if err != nil {
|
|
|
|
util.ErrorLog(ctx, "could not get FSAdmin, can not fetch metadata pool for %s:", vo.FsName, err)
|
2021-07-22 05:45:17 +00:00
|
|
|
|
2020-10-02 11:18:24 +00:00
|
|
|
return "", err
|
|
|
|
}
|
2019-05-28 19:03:18 +00:00
|
|
|
|
2020-10-02 11:18:24 +00:00
|
|
|
fsPoolInfos, err := fsa.ListFileSystems()
|
2019-05-28 19:03:18 +00:00
|
|
|
if err != nil {
|
2020-10-02 11:18:24 +00:00
|
|
|
util.ErrorLog(ctx, "could not list filesystems, can not fetch metadata pool for %s:", vo.FsName, err)
|
2021-07-22 05:45:17 +00:00
|
|
|
|
2019-05-28 19:03:18 +00:00
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
2020-10-02 11:18:24 +00:00
|
|
|
for _, fspi := range fsPoolInfos {
|
|
|
|
if fspi.Name == vo.FsName {
|
|
|
|
return fspi.MetadataPool, nil
|
2019-05-28 19:03:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-02 11:18:24 +00:00
|
|
|
return "", fmt.Errorf("%w: could not find metadata pool for %s", util.ErrPoolNotFound, vo.FsName)
|
2019-05-28 19:03:18 +00:00
|
|
|
}
|
|
|
|
|
2020-10-02 08:44:40 +00:00
|
|
|
func (vo *volumeOptions) getFsName(ctx context.Context) (string, error) {
|
|
|
|
fsa, err := vo.conn.GetFSAdmin()
|
|
|
|
if err != nil {
|
|
|
|
util.ErrorLog(ctx, "could not get FSAdmin, can not fetch filesystem name for ID %d:", vo.FscID, err)
|
2021-07-22 05:45:17 +00:00
|
|
|
|
2020-10-02 08:44:40 +00:00
|
|
|
return "", err
|
|
|
|
}
|
2019-05-28 19:03:18 +00:00
|
|
|
|
2020-10-02 08:44:40 +00:00
|
|
|
volumes, err := fsa.EnumerateVolumes()
|
2019-05-28 19:03:18 +00:00
|
|
|
if err != nil {
|
2020-10-02 08:44:40 +00:00
|
|
|
util.ErrorLog(ctx, "could not list volumes, can not fetch filesystem name for ID %d:", vo.FscID, err)
|
2021-07-22 05:45:17 +00:00
|
|
|
|
2019-05-28 19:03:18 +00:00
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
2020-10-02 08:44:40 +00:00
|
|
|
for _, vol := range volumes {
|
|
|
|
if vol.ID == vo.FscID {
|
|
|
|
return vol.Name, nil
|
2019-05-28 19:03:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-02 08:37:52 +00:00
|
|
|
return "", fmt.Errorf("%w: fscID (%d) not found in Ceph cluster", util.ErrPoolNotFound, vo.FscID)
|
2019-05-28 19:03:18 +00:00
|
|
|
}
|