ceph-csi/pkg/cephfs/cephuser.go

116 lines
3.0 KiB
Go
Raw Normal View History

2018-04-13 12:31:46 +00:00
/*
Copyright 2018 The Ceph-CSI Authors.
2018-04-13 12:31:46 +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 cephfs
import (
"fmt"
"github.com/ceph/ceph-csi/pkg/util"
2018-04-13 12:31:46 +00:00
)
const (
cephUserPrefix = "user-"
2018-04-13 12:31:46 +00:00
cephEntityClientPrefix = "client."
)
type cephEntityCaps struct {
Mds string `json:"mds"`
Mon string `json:"mon"`
Osd string `json:"osd"`
}
type cephEntity struct {
Entity string `json:"entity"`
Key string `json:"key"`
Caps cephEntityCaps `json:"caps"`
}
func (ent *cephEntity) toCredentials() *util.Credentials {
return &util.Credentials{
ID: ent.Entity[len(cephEntityClientPrefix):],
Key: ent.Key,
}
}
func getCephUserName(volID volumeID) string {
return cephUserPrefix + string(volID)
2018-04-13 12:31:46 +00:00
}
func getSingleCephEntity(args ...string) (*cephEntity, error) {
2018-04-13 12:31:46 +00:00
var ents []cephEntity
if err := execCommandJSON(&ents, "ceph", args...); err != nil {
return nil, err
2018-04-13 12:31:46 +00:00
}
if len(ents) != 1 {
return nil, fmt.Errorf("got unexpected number of entities: expected 1, got %d", len(ents))
2018-04-13 12:31:46 +00:00
}
return &ents[0], nil
}
func genUserIDs(adminCr *util.Credentials, volID volumeID) (adminID, userID string) {
return cephEntityClientPrefix + adminCr.ID, cephEntityClientPrefix + getCephUserName(volID)
2019-02-14 13:38:53 +00:00
}
func getCephUser(volOptions *volumeOptions, adminCr *util.Credentials, volID volumeID) (*cephEntity, error) {
2019-02-14 13:38:53 +00:00
adminID, userID := genUserIDs(adminCr, volID)
return getSingleCephEntity(
2019-02-13 12:57:16 +00:00
"-m", volOptions.Monitors,
2019-02-14 13:38:53 +00:00
"-n", adminID,
"--key="+adminCr.Key,
"-c", util.CephConfigPath,
"-f", "json",
2019-02-14 13:38:53 +00:00
"auth", "get", userID,
)
}
2018-04-13 12:31:46 +00:00
func createCephUser(volOptions *volumeOptions, adminCr *util.Credentials, volID volumeID) (*cephEntity, error) {
2019-02-14 13:38:53 +00:00
adminID, userID := genUserIDs(adminCr, volID)
volRootPath, err := getVolumeRootPathCeph(volOptions, adminCr, volID)
if err != nil {
return nil, err
}
2019-02-14 13:38:53 +00:00
return getSingleCephEntity(
"-m", volOptions.Monitors,
2019-02-14 13:38:53 +00:00
"-n", adminID,
"--key="+adminCr.Key,
"-c", util.CephConfigPath,
"-f", "json",
2019-02-14 13:38:53 +00:00
"auth", "get-or-create", userID,
// User capabilities
"mds", fmt.Sprintf("allow rw path=%s", volRootPath),
"mon", "allow r",
"osd", fmt.Sprintf("allow rw pool=%s namespace=%s", volOptions.Pool, getVolumeNamespace(volID)),
)
2018-04-13 12:31:46 +00:00
}
func deleteCephUser(volOptions *volumeOptions, adminCr *util.Credentials, volID volumeID) error {
2019-02-14 13:38:53 +00:00
adminID, userID := genUserIDs(adminCr, volID)
Make CephFS plugin stateless reusing RADOS based journal scheme This is a part of the stateless set of commits for CephCSI. This commit removes the dependency on config maps to store cephFS provisioned volumes, and instead relies on RADOS based objects and keys, and required CSI VolumeID encoding to detect the provisioned volumes. Changes: - Provide backward compatibility to provisioned volumes by older plugin versions (1.0.0 or older) - Remove Create/Delete support for statically provisioned volumes (fixes #382) - Added namespace support to RADOS OMaps and used the same to store RADOS CSI objects and keys in the CephFS metadata pool - Added support to mention fsname for CephFS provisioning (fixes #359) - Changed field name in CSI Identifier to 'location', to denote a pool or fscid - Updated mounter cache to use new scheme - Required Helm manifests are updated - Required documentation and other manifests are updated - Made driver option 'metadatastorage' as optional, as fresh installs do not need to specify the same Testing done: - Create/Mount/Delete PVC - Create/Delete 5 PVCs - Mount version 1.0.0 PVC - Delete version 1.0.0 PV - Mount Statically defined PV/PVC/Pod - Mount Statically defined version 1.0.0 PV/PVC/Pod - Delete Statically defined version 1.0.0 PV/PVC/Pod - Node restart when mounted to test mountcache - Use InstanceID other than 'default' - RBD basic round of tests, as namespace is added to OMaps - csitest against ceph-fs plugin - NOTE: CephFS plugin still does not detect and address already created volumes but of a different size - Test not providing any value to the metadata storage parameter Signed-off-by: ShyamsundarR <srangana@redhat.com>
2019-05-28 19:03:18 +00:00
// TODO: Need to return success if userID is not found
return execCommandErr("ceph",
2019-02-13 12:57:16 +00:00
"-m", volOptions.Monitors,
2019-02-14 13:38:53 +00:00
"-n", adminID,
"--key="+adminCr.Key,
"-c", util.CephConfigPath,
2019-02-14 13:38:53 +00:00
"auth", "rm", userID,
)
2018-04-13 12:31:46 +00:00
}