2018-03-05 11:59:47 +00:00
|
|
|
/*
|
|
|
|
Copyright 2018 The Kubernetes 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"
|
2018-08-28 08:21:11 +00:00
|
|
|
"fmt"
|
2018-04-13 13:53:43 +00:00
|
|
|
"os"
|
2018-03-05 11:59:47 +00:00
|
|
|
|
|
|
|
"github.com/golang/glog"
|
|
|
|
"google.golang.org/grpc/codes"
|
|
|
|
"google.golang.org/grpc/status"
|
|
|
|
|
2018-11-24 18:48:36 +00:00
|
|
|
"github.com/container-storage-interface/spec/lib/go/csi"
|
2018-03-05 11:59:47 +00:00
|
|
|
"github.com/kubernetes-csi/drivers/pkg/csi-common"
|
|
|
|
)
|
|
|
|
|
2019-01-17 07:51:06 +00:00
|
|
|
type NodeServer struct {
|
2018-03-05 11:59:47 +00:00
|
|
|
*csicommon.DefaultNodeServer
|
|
|
|
}
|
|
|
|
|
2019-01-17 05:46:32 +00:00
|
|
|
func getCredentialsForVolume(volOptions *volumeOptions, volID volumeID, req *csi.NodeStageVolumeRequest) (*credentials, error) {
|
2018-04-13 13:53:43 +00:00
|
|
|
var (
|
2019-01-16 13:03:38 +00:00
|
|
|
userCr *credentials
|
2018-04-13 13:53:43 +00:00
|
|
|
)
|
2019-01-18 15:27:48 +00:00
|
|
|
secret := req.GetSecrets()
|
2018-04-13 13:53:43 +00:00
|
|
|
if volOptions.ProvisionVolume {
|
2018-08-28 08:21:11 +00:00
|
|
|
// The volume is provisioned dynamically, get the credentials directly from Ceph
|
2018-04-13 13:53:43 +00:00
|
|
|
|
2018-08-28 08:21:11 +00:00
|
|
|
// First, store admin credentials - those are needed for retrieving the user credentials
|
2018-06-12 15:08:14 +00:00
|
|
|
|
2019-01-18 15:27:48 +00:00
|
|
|
adminCr, err := getAdminCredentials(secret)
|
2018-06-12 15:08:14 +00:00
|
|
|
if err != nil {
|
2018-08-28 08:21:11 +00:00
|
|
|
return nil, fmt.Errorf("failed to get admin credentials from node stage secrets: %v", err)
|
2018-06-12 15:08:14 +00:00
|
|
|
}
|
|
|
|
|
2019-01-17 05:46:32 +00:00
|
|
|
if err = storeCephCredentials(volID, adminCr); err != nil {
|
2018-08-28 08:21:11 +00:00
|
|
|
return nil, fmt.Errorf("failed to store ceph admin credentials: %v", err)
|
2018-06-12 15:08:14 +00:00
|
|
|
}
|
|
|
|
|
2018-08-28 08:21:11 +00:00
|
|
|
// Then get the ceph user
|
2018-06-12 15:08:14 +00:00
|
|
|
|
2019-01-17 05:46:32 +00:00
|
|
|
entity, err := getCephUser(adminCr, volID)
|
2018-08-28 08:21:11 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("failed to get ceph user: %v", err)
|
2018-04-13 13:53:43 +00:00
|
|
|
}
|
|
|
|
|
2018-08-28 08:21:11 +00:00
|
|
|
userCr = entity.toCredentials()
|
2018-04-13 13:53:43 +00:00
|
|
|
} else {
|
2018-08-28 08:21:11 +00:00
|
|
|
// The volume is pre-made, credentials are in node stage secrets
|
2018-04-13 13:53:43 +00:00
|
|
|
|
2019-01-17 06:49:35 +00:00
|
|
|
uCr, err := getUserCredentials(req.GetSecrets())
|
2018-04-13 13:53:43 +00:00
|
|
|
if err != nil {
|
2018-08-28 08:21:11 +00:00
|
|
|
return nil, fmt.Errorf("failed to get user credentials from node stage secrets: %v", err)
|
2018-04-13 13:53:43 +00:00
|
|
|
}
|
2019-01-17 06:49:35 +00:00
|
|
|
userCr = uCr
|
2018-04-13 13:53:43 +00:00
|
|
|
}
|
|
|
|
|
2019-01-17 06:49:35 +00:00
|
|
|
if err := storeCephCredentials(volID, userCr); err != nil {
|
2018-08-28 08:21:11 +00:00
|
|
|
return nil, fmt.Errorf("failed to store ceph user credentials: %v", err)
|
2018-04-13 13:53:43 +00:00
|
|
|
}
|
|
|
|
|
2018-07-28 08:24:07 +00:00
|
|
|
return userCr, nil
|
2018-04-13 13:53:43 +00:00
|
|
|
}
|
|
|
|
|
2019-01-17 07:51:06 +00:00
|
|
|
func (ns *NodeServer) NodeStageVolume(ctx context.Context, req *csi.NodeStageVolumeRequest) (*csi.NodeStageVolumeResponse, error) {
|
2018-07-28 08:24:07 +00:00
|
|
|
if err := validateNodeStageVolumeRequest(req); err != nil {
|
|
|
|
return nil, status.Error(codes.InvalidArgument, err.Error())
|
2018-03-05 11:59:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Configuration
|
|
|
|
|
2018-07-28 08:24:07 +00:00
|
|
|
stagingTargetPath := req.GetStagingTargetPath()
|
2019-01-17 05:46:32 +00:00
|
|
|
volID := volumeID(req.GetVolumeId())
|
2018-03-05 11:59:47 +00:00
|
|
|
|
2019-01-21 14:21:03 +00:00
|
|
|
secret := req.GetSecrets()
|
|
|
|
volOptions, err := newVolumeOptions(req.GetVolumeContext(), secret)
|
2018-03-20 15:14:14 +00:00
|
|
|
if err != nil {
|
2019-01-17 05:46:32 +00:00
|
|
|
glog.Errorf("error reading volume options for volume %s: %v", volID, err)
|
2018-03-20 15:14:14 +00:00
|
|
|
return nil, status.Error(codes.InvalidArgument, err.Error())
|
2018-03-05 11:59:47 +00:00
|
|
|
}
|
|
|
|
|
2018-08-28 08:21:11 +00:00
|
|
|
if volOptions.ProvisionVolume {
|
|
|
|
// Dynamically provisioned volumes don't have their root path set, do it here
|
2019-01-17 05:46:32 +00:00
|
|
|
volOptions.RootPath = getVolumeRootPathCeph(volID)
|
2018-08-28 08:21:11 +00:00
|
|
|
}
|
|
|
|
|
2018-07-28 08:24:07 +00:00
|
|
|
if err = createMountPoint(stagingTargetPath); err != nil {
|
2019-01-17 05:46:32 +00:00
|
|
|
glog.Errorf("failed to create staging mount point at %s for volume %s: %v", stagingTargetPath, volID, err)
|
2018-03-22 13:11:51 +00:00
|
|
|
return nil, status.Error(codes.Internal, err.Error())
|
2018-03-20 15:14:14 +00:00
|
|
|
}
|
|
|
|
|
2019-01-17 05:46:32 +00:00
|
|
|
cephConf := cephConfigData{Monitors: volOptions.Monitors, VolumeID: volID}
|
2018-07-28 08:24:07 +00:00
|
|
|
if err = cephConf.writeToFile(); err != nil {
|
2019-01-17 05:46:32 +00:00
|
|
|
glog.Errorf("failed to write ceph config file to %s for volume %s: %v", getCephConfPath(volID), volID, err)
|
2018-05-18 16:15:37 +00:00
|
|
|
return nil, status.Error(codes.Internal, err.Error())
|
|
|
|
}
|
|
|
|
|
2018-03-05 11:59:47 +00:00
|
|
|
// Check if the volume is already mounted
|
|
|
|
|
2018-07-28 08:24:07 +00:00
|
|
|
isMnt, err := isMountPoint(stagingTargetPath)
|
2018-03-05 11:59:47 +00:00
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
glog.Errorf("stat failed: %v", err)
|
|
|
|
return nil, status.Error(codes.Internal, err.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
if isMnt {
|
2019-01-17 05:46:32 +00:00
|
|
|
glog.Infof("cephfs: volume %s is already mounted to %s, skipping", volID, stagingTargetPath)
|
2018-07-28 08:24:07 +00:00
|
|
|
return &csi.NodeStageVolumeResponse{}, nil
|
2018-03-05 11:59:47 +00:00
|
|
|
}
|
|
|
|
|
2018-04-13 13:53:43 +00:00
|
|
|
// It's not, mount now
|
|
|
|
|
2019-01-17 05:46:32 +00:00
|
|
|
cr, err := getCredentialsForVolume(volOptions, volID, req)
|
2018-03-22 13:11:51 +00:00
|
|
|
if err != nil {
|
2019-01-17 05:46:32 +00:00
|
|
|
glog.Errorf("failed to get ceph credentials for volume %s: %v", volID, err)
|
2018-03-22 13:11:51 +00:00
|
|
|
return nil, status.Error(codes.Internal, err.Error())
|
|
|
|
}
|
2018-03-09 16:05:19 +00:00
|
|
|
|
2018-08-14 09:19:41 +00:00
|
|
|
m, err := newMounter(volOptions)
|
|
|
|
if err != nil {
|
2019-01-17 05:46:32 +00:00
|
|
|
glog.Errorf("failed to create mounter for volume %s: %v", volID, err)
|
2018-08-14 09:19:41 +00:00
|
|
|
}
|
2018-07-28 08:24:07 +00:00
|
|
|
|
2019-01-17 05:46:32 +00:00
|
|
|
glog.V(4).Infof("cephfs: mounting volume %s with %s", volID, m.name())
|
2018-08-28 08:21:11 +00:00
|
|
|
|
2019-01-17 05:46:32 +00:00
|
|
|
if err = m.mount(stagingTargetPath, cr, volOptions, volID); err != nil {
|
|
|
|
glog.Errorf("failed to mount volume %s: %v", volID, err)
|
2018-03-05 11:59:47 +00:00
|
|
|
return nil, status.Error(codes.Internal, err.Error())
|
|
|
|
}
|
|
|
|
|
2019-01-17 05:46:32 +00:00
|
|
|
glog.Infof("cephfs: successfully mounted volume %s to %s", volID, stagingTargetPath)
|
2018-07-28 08:24:07 +00:00
|
|
|
|
|
|
|
return &csi.NodeStageVolumeResponse{}, nil
|
|
|
|
}
|
|
|
|
|
2019-01-17 07:51:06 +00:00
|
|
|
func (ns *NodeServer) NodePublishVolume(ctx context.Context, req *csi.NodePublishVolumeRequest) (*csi.NodePublishVolumeResponse, error) {
|
2018-07-28 08:24:07 +00:00
|
|
|
if err := validateNodePublishVolumeRequest(req); err != nil {
|
|
|
|
return nil, status.Error(codes.InvalidArgument, err.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
// Configuration
|
|
|
|
|
|
|
|
targetPath := req.GetTargetPath()
|
2019-01-17 05:46:32 +00:00
|
|
|
volID := req.GetVolumeId()
|
2018-07-28 08:24:07 +00:00
|
|
|
|
|
|
|
if err := createMountPoint(targetPath); err != nil {
|
|
|
|
glog.Errorf("failed to create mount point at %s: %v", targetPath, err)
|
|
|
|
return nil, status.Error(codes.Internal, err.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if the volume is already mounted
|
|
|
|
|
|
|
|
isMnt, err := isMountPoint(targetPath)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
glog.Errorf("stat failed: %v", err)
|
|
|
|
return nil, status.Error(codes.Internal, err.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
if isMnt {
|
2019-01-17 05:46:32 +00:00
|
|
|
glog.Infof("cephfs: volume %s is already bind-mounted to %s", volID, targetPath)
|
2018-07-28 08:24:07 +00:00
|
|
|
return &csi.NodePublishVolumeResponse{}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// It's not, mount now
|
|
|
|
|
|
|
|
if err = bindMount(req.GetStagingTargetPath(), req.GetTargetPath(), req.GetReadonly()); err != nil {
|
2019-01-17 05:46:32 +00:00
|
|
|
glog.Errorf("failed to bind-mount volume %s: %v", volID, err)
|
2018-07-28 08:24:07 +00:00
|
|
|
return nil, status.Error(codes.Internal, err.Error())
|
|
|
|
}
|
|
|
|
|
2019-01-17 05:46:32 +00:00
|
|
|
glog.Infof("cephfs: successfully bind-mounted volume %s to %s", volID, targetPath)
|
2018-03-05 11:59:47 +00:00
|
|
|
|
|
|
|
return &csi.NodePublishVolumeResponse{}, nil
|
|
|
|
}
|
|
|
|
|
2019-01-17 07:51:06 +00:00
|
|
|
func (ns *NodeServer) NodeUnpublishVolume(ctx context.Context, req *csi.NodeUnpublishVolumeRequest) (*csi.NodeUnpublishVolumeResponse, error) {
|
2018-03-05 11:59:47 +00:00
|
|
|
if err := validateNodeUnpublishVolumeRequest(req); err != nil {
|
2018-07-28 08:24:07 +00:00
|
|
|
return nil, status.Error(codes.InvalidArgument, err.Error())
|
2018-03-05 11:59:47 +00:00
|
|
|
}
|
|
|
|
|
2018-04-13 13:53:43 +00:00
|
|
|
targetPath := req.GetTargetPath()
|
2018-03-22 13:11:51 +00:00
|
|
|
|
2018-04-13 13:53:43 +00:00
|
|
|
// Unmount the bind-mount
|
|
|
|
if err := unmountVolume(targetPath); err != nil {
|
2018-03-05 11:59:47 +00:00
|
|
|
return nil, status.Error(codes.Internal, err.Error())
|
|
|
|
}
|
|
|
|
|
2018-07-28 08:24:07 +00:00
|
|
|
os.Remove(targetPath)
|
|
|
|
|
2018-09-21 14:07:14 +00:00
|
|
|
glog.Infof("cephfs: successfully unbinded volume %s from %s", req.GetVolumeId(), targetPath)
|
2018-07-28 08:24:07 +00:00
|
|
|
|
|
|
|
return &csi.NodeUnpublishVolumeResponse{}, nil
|
|
|
|
}
|
2018-04-13 13:53:43 +00:00
|
|
|
|
2019-01-17 07:51:06 +00:00
|
|
|
func (ns *NodeServer) NodeUnstageVolume(ctx context.Context, req *csi.NodeUnstageVolumeRequest) (*csi.NodeUnstageVolumeResponse, error) {
|
2018-07-28 08:24:07 +00:00
|
|
|
if err := validateNodeUnstageVolumeRequest(req); err != nil {
|
|
|
|
return nil, status.Error(codes.InvalidArgument, err.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
stagingTargetPath := req.GetStagingTargetPath()
|
|
|
|
|
|
|
|
// Unmount the volume
|
|
|
|
if err := unmountVolume(stagingTargetPath); err != nil {
|
2018-04-13 13:53:43 +00:00
|
|
|
return nil, status.Error(codes.Internal, err.Error())
|
|
|
|
}
|
|
|
|
|
2018-07-28 08:24:07 +00:00
|
|
|
os.Remove(stagingTargetPath)
|
2018-04-13 13:53:43 +00:00
|
|
|
|
2018-09-21 14:07:14 +00:00
|
|
|
glog.Infof("cephfs: successfully umounted volume %s from %s", req.GetVolumeId(), stagingTargetPath)
|
2018-03-20 15:14:14 +00:00
|
|
|
|
2018-07-28 08:24:07 +00:00
|
|
|
return &csi.NodeUnstageVolumeResponse{}, nil
|
2018-03-20 15:14:14 +00:00
|
|
|
}
|
|
|
|
|
2019-01-17 07:51:06 +00:00
|
|
|
func (ns *NodeServer) NodeGetCapabilities(ctx context.Context, req *csi.NodeGetCapabilitiesRequest) (*csi.NodeGetCapabilitiesResponse, error) {
|
2018-07-28 08:24:07 +00:00
|
|
|
return &csi.NodeGetCapabilitiesResponse{
|
|
|
|
Capabilities: []*csi.NodeServiceCapability{
|
|
|
|
{
|
|
|
|
Type: &csi.NodeServiceCapability_Rpc{
|
|
|
|
Rpc: &csi.NodeServiceCapability_RPC{
|
|
|
|
Type: csi.NodeServiceCapability_RPC_STAGE_UNSTAGE_VOLUME,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}, nil
|
2018-03-20 15:14:14 +00:00
|
|
|
}
|
2019-01-22 16:31:55 +00:00
|
|
|
|
2019-01-25 08:40:32 +00:00
|
|
|
func (ns *NodeServer) NodeGetInfo(ctx context.Context, req *csi.NodeGetInfoRequest) (*csi.NodeGetInfoResponse, error) {
|
2019-01-22 16:31:55 +00:00
|
|
|
return ns.DefaultNodeServer.NodeGetInfo(ctx, req)
|
|
|
|
}
|