2019-02-19 08:14:10 +00:00
|
|
|
/*
|
2019-04-03 08:46:15 +00:00
|
|
|
Copyright 2019 The Ceph-CSI Authors.
|
2019-02-19 08:14:10 +00:00
|
|
|
|
|
|
|
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 util
|
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
"path"
|
2019-03-13 05:09:58 +00:00
|
|
|
"strings"
|
2019-02-19 08:14:10 +00:00
|
|
|
|
2019-03-13 05:09:58 +00:00
|
|
|
"github.com/pkg/errors"
|
|
|
|
"k8s.io/apimachinery/pkg/util/validation"
|
2019-02-19 08:14:10 +00:00
|
|
|
"k8s.io/klog"
|
|
|
|
)
|
|
|
|
|
2019-03-01 12:08:17 +00:00
|
|
|
// remove this once kubernetes v1.14.0 release is done
|
|
|
|
// https://github.com/kubernetes/cloud-provider/blob/master/volume/helpers/rounding.go
|
|
|
|
const (
|
|
|
|
// MiB - MebiByte size
|
|
|
|
MiB = 1024 * 1024
|
|
|
|
)
|
|
|
|
|
|
|
|
// RoundUpToMiB rounds up given quantity upto chunks of MiB
|
|
|
|
func RoundUpToMiB(size int64) int64 {
|
|
|
|
requestBytes := size
|
|
|
|
return roundUpSize(requestBytes, MiB)
|
|
|
|
}
|
|
|
|
|
|
|
|
func roundUpSize(volumeSizeBytes int64, allocationUnitBytes int64) int64 {
|
|
|
|
roundedUp := volumeSizeBytes / allocationUnitBytes
|
|
|
|
if volumeSizeBytes%allocationUnitBytes > 0 {
|
|
|
|
roundedUp++
|
|
|
|
}
|
|
|
|
return roundedUp
|
|
|
|
}
|
|
|
|
|
2019-02-19 08:14:10 +00:00
|
|
|
// CreatePersistanceStorage creates storage path and initializes new cache
|
|
|
|
func CreatePersistanceStorage(sPath, metaDataStore, driverName string) (CachePersister, error) {
|
|
|
|
var err error
|
|
|
|
if err = createPersistentStorage(path.Join(sPath, "controller")); err != nil {
|
|
|
|
klog.Errorf("failed to create persistent storage for controller: %v", err)
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if err = createPersistentStorage(path.Join(sPath, "node")); err != nil {
|
|
|
|
klog.Errorf("failed to create persistent storage for node: %v", err)
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
cp, err := NewCachePersister(metaDataStore, driverName)
|
|
|
|
if err != nil {
|
|
|
|
klog.Errorf("failed to define cache persistence method: %v", err)
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return cp, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func createPersistentStorage(persistentStoragePath string) error {
|
|
|
|
return os.MkdirAll(persistentStoragePath, os.FileMode(0755))
|
|
|
|
}
|
2019-03-13 05:09:58 +00:00
|
|
|
|
|
|
|
// ValidateDriverName validates the driver name
|
|
|
|
func ValidateDriverName(driverName string) error {
|
|
|
|
if len(driverName) == 0 {
|
|
|
|
return errors.New("driver name is empty")
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(driverName) > 63 {
|
|
|
|
return errors.New("driver name length should be less than 63 chars")
|
|
|
|
}
|
|
|
|
var err error
|
|
|
|
for _, msg := range validation.IsDNS1123Subdomain(strings.ToLower(driverName)) {
|
|
|
|
if err == nil {
|
|
|
|
err = errors.New(msg)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
err = errors.Wrap(err, msg)
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
2019-05-14 19:15:01 +00:00
|
|
|
|
|
|
|
// GenerateVolID generates a volume ID based on passed in parameters and version, to be returned
|
|
|
|
// to the CO system
|
|
|
|
func GenerateVolID(monitors, id, key, pool, clusterID, objUUID string, volIDVersion uint16) (string, error) {
|
|
|
|
poolID, err := GetPoolID(monitors, id, key, pool)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
// generate the volume ID to return to the CO system
|
|
|
|
vi := CSIIdentifier{
|
2019-05-28 19:03:18 +00:00
|
|
|
LocationID: poolID,
|
2019-05-14 19:15:01 +00:00
|
|
|
EncodingVersion: volIDVersion,
|
|
|
|
ClusterID: clusterID,
|
|
|
|
ObjectUUID: objUUID,
|
|
|
|
}
|
|
|
|
|
|
|
|
volID, err := vi.ComposeCSIID()
|
|
|
|
|
|
|
|
return volID, err
|
|
|
|
}
|