2018-03-05 11:59:47 +00:00
|
|
|
/*
|
2019-04-03 08:46:15 +00:00
|
|
|
Copyright 2018 The Ceph-CSI Authors.
|
2018-03-05 11:59:47 +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 (
|
|
|
|
"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
|
|
|
|
2019-02-18 11:30:28 +00:00
|
|
|
csicommon "github.com/ceph/ceph-csi/pkg/csi-common"
|
2019-06-01 21:26:42 +00:00
|
|
|
"github.com/ceph/ceph-csi/pkg/util"
|
2019-07-25 05:15:06 +00:00
|
|
|
csipbv1 "github.com/container-storage-interface/spec/lib/go/csi"
|
2019-02-18 11:30:28 +00:00
|
|
|
|
|
|
|
"github.com/container-storage-interface/spec/lib/go/csi"
|
2018-03-05 11:59:47 +00:00
|
|
|
"google.golang.org/grpc/codes"
|
|
|
|
"google.golang.org/grpc/status"
|
2019-02-04 13:04:11 +00:00
|
|
|
"k8s.io/klog"
|
2019-07-25 05:15:06 +00:00
|
|
|
"k8s.io/kubernetes/pkg/volume"
|
2018-03-05 11:59:47 +00:00
|
|
|
)
|
|
|
|
|
2019-01-28 11:47:06 +00:00
|
|
|
// NodeServer struct of ceph CSI driver with supported methods of CSI
|
|
|
|
// node server spec.
|
2019-01-17 07:51:06 +00:00
|
|
|
type NodeServer struct {
|
2018-03-05 11:59:47 +00:00
|
|
|
*csicommon.DefaultNodeServer
|
|
|
|
}
|
|
|
|
|
2019-02-26 10:06:25 +00:00
|
|
|
var (
|
Move locks to more granular locking than CPU count based
As detailed in issue #279, current lock scheme has hash
buckets that are count of CPUs. This causes a lot of contention
when parallel requests are made to the CSI plugin. To reduce
lock contention, this commit introduces granular locks per
identifier.
The commit also changes the timeout for gRPC requests to Create
and Delete volumes, as the current timeout is 10s (kubernetes
documentation says 15s but code defaults are 10s). A virtual
setup takes about 12-15s to complete a request at times, that leads
to unwanted retries of the same request, hence the increased
timeout to enable operation completion with minimal retries.
Tests to create PVCs before and after these changes look like so,
Before:
Default master code + sidecar provisioner --timeout option set
to 30 seconds
20 PVCs
Creation: 3 runs, 396/391/400 seconds
Deletion: 3 runs, 218/271/118 seconds
- Once was stalled for more than 8 minutes and cancelled the run
After:
Current commit + sidecar provisioner --timeout option set to 30 sec
20 PVCs
Creation: 3 runs, 42/59/65 seconds
Deletion: 3 runs, 32/32/31 seconds
Fixes: #279
Signed-off-by: ShyamsundarR <srangana@redhat.com>
2019-06-22 16:43:28 +00:00
|
|
|
nodeVolumeIDLocker = util.NewIDLocker()
|
2019-02-26 10:06:25 +00:00
|
|
|
)
|
|
|
|
|
2019-06-01 21:26:42 +00:00
|
|
|
func getCredentialsForVolume(volOptions *volumeOptions, volID volumeID, req *csi.NodeStageVolumeRequest) (*util.Credentials, error) {
|
2018-04-13 13:53:43 +00:00
|
|
|
var (
|
2019-06-01 21:26:42 +00:00
|
|
|
cr *util.Credentials
|
2019-02-13 12:57:16 +00:00
|
|
|
secrets = req.GetSecrets()
|
2018-04-13 13:53:43 +00:00
|
|
|
)
|
2019-02-13 12:57:16 +00:00
|
|
|
|
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
|
|
|
|
2019-02-26 10:06:25 +00:00
|
|
|
// First, get admin credentials - those are needed for retrieving the user credentials
|
2018-06-12 15:08:14 +00:00
|
|
|
|
2019-06-01 21:26:42 +00:00
|
|
|
adminCr, err := util.GetAdminCredentials(secrets)
|
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
|
|
|
}
|
|
|
|
|
2018-08-28 08:21:11 +00:00
|
|
|
// Then get the ceph user
|
2018-06-12 15:08:14 +00:00
|
|
|
|
2019-02-13 12:57:16 +00:00
|
|
|
entity, err := getCephUser(volOptions, 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
|
|
|
}
|
|
|
|
|
2019-02-13 12:57:16 +00:00
|
|
|
cr = 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-06-01 21:26:42 +00:00
|
|
|
userCr, err := util.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-02-13 12:57:16 +00:00
|
|
|
|
|
|
|
cr = userCr
|
2018-04-13 13:53:43 +00:00
|
|
|
}
|
|
|
|
|
2019-02-13 12:57:16 +00:00
|
|
|
return cr, nil
|
2018-04-13 13:53:43 +00:00
|
|
|
}
|
|
|
|
|
2019-01-28 11:47:06 +00:00
|
|
|
// NodeStageVolume mounts the volume to a staging path on the node.
|
2019-01-17 07:51:06 +00:00
|
|
|
func (ns *NodeServer) NodeStageVolume(ctx context.Context, req *csi.NodeStageVolumeRequest) (*csi.NodeStageVolumeResponse, error) {
|
2019-05-28 19:03:18 +00:00
|
|
|
var (
|
|
|
|
volOptions *volumeOptions
|
|
|
|
vid *volumeIdentifier
|
|
|
|
)
|
2019-07-03 10:02:36 +00:00
|
|
|
if err := util.ValidateNodeStageVolumeRequest(req); err != nil {
|
|
|
|
return nil, err
|
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-05-28 19:03:18 +00:00
|
|
|
volOptions, vid, err := newVolumeOptionsFromVolID(string(volID), req.GetVolumeContext(), req.GetSecrets())
|
2018-03-20 15:14:14 +00:00
|
|
|
if err != nil {
|
2019-05-28 19:03:18 +00:00
|
|
|
if _, ok := err.(ErrInvalidVolID); !ok {
|
|
|
|
return nil, status.Error(codes.Internal, err.Error())
|
|
|
|
}
|
2018-03-05 11:59:47 +00:00
|
|
|
|
2019-05-28 19:03:18 +00:00
|
|
|
// check for pre-provisioned volumes (plugin versions > 1.0.0)
|
|
|
|
volOptions, vid, err = newVolumeOptionsFromStaticVolume(string(volID), req.GetVolumeContext())
|
|
|
|
if err != nil {
|
|
|
|
if _, ok := err.(ErrNonStaticVolume); !ok {
|
|
|
|
return nil, status.Error(codes.Internal, err.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
// check for volumes from plugin versions <= 1.0.0
|
|
|
|
volOptions, vid, err = newVolumeOptionsFromVersion1Context(string(volID), req.GetVolumeContext(),
|
|
|
|
req.GetSecrets())
|
|
|
|
if err != nil {
|
|
|
|
return nil, status.Error(codes.Internal, err.Error())
|
|
|
|
}
|
|
|
|
}
|
2018-08-28 08:21:11 +00:00
|
|
|
}
|
|
|
|
|
2019-07-03 10:02:36 +00:00
|
|
|
if err = util.CreateMountPoint(stagingTargetPath); err != nil {
|
2019-02-04 13:04:11 +00:00
|
|
|
klog.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
|
|
|
}
|
|
|
|
|
Move locks to more granular locking than CPU count based
As detailed in issue #279, current lock scheme has hash
buckets that are count of CPUs. This causes a lot of contention
when parallel requests are made to the CSI plugin. To reduce
lock contention, this commit introduces granular locks per
identifier.
The commit also changes the timeout for gRPC requests to Create
and Delete volumes, as the current timeout is 10s (kubernetes
documentation says 15s but code defaults are 10s). A virtual
setup takes about 12-15s to complete a request at times, that leads
to unwanted retries of the same request, hence the increased
timeout to enable operation completion with minimal retries.
Tests to create PVCs before and after these changes look like so,
Before:
Default master code + sidecar provisioner --timeout option set
to 30 seconds
20 PVCs
Creation: 3 runs, 396/391/400 seconds
Deletion: 3 runs, 218/271/118 seconds
- Once was stalled for more than 8 minutes and cancelled the run
After:
Current commit + sidecar provisioner --timeout option set to 30 sec
20 PVCs
Creation: 3 runs, 42/59/65 seconds
Deletion: 3 runs, 32/32/31 seconds
Fixes: #279
Signed-off-by: ShyamsundarR <srangana@redhat.com>
2019-06-22 16:43:28 +00:00
|
|
|
idLk := nodeVolumeIDLocker.Lock(string(volID))
|
|
|
|
defer nodeVolumeIDLocker.Unlock(idLk, string(volID))
|
2019-02-26 10:06:25 +00:00
|
|
|
|
2018-03-05 11:59:47 +00:00
|
|
|
// Check if the volume is already mounted
|
|
|
|
|
2019-07-03 10:02:36 +00:00
|
|
|
isMnt, err := util.IsMountPoint(stagingTargetPath)
|
2018-03-05 11:59:47 +00:00
|
|
|
|
|
|
|
if err != nil {
|
2019-02-04 13:04:11 +00:00
|
|
|
klog.Errorf("stat failed: %v", err)
|
2018-03-05 11:59:47 +00:00
|
|
|
return nil, status.Error(codes.Internal, err.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
if isMnt {
|
2019-02-04 13:04:11 +00:00
|
|
|
klog.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-05-28 19:03:18 +00:00
|
|
|
if err = ns.mount(volOptions, req, vid); err != nil {
|
2019-01-29 05:49:16 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2019-02-04 13:04:11 +00:00
|
|
|
klog.Infof("cephfs: successfully mounted volume %s to %s", volID, stagingTargetPath)
|
2019-01-29 05:49:16 +00:00
|
|
|
|
|
|
|
return &csi.NodeStageVolumeResponse{}, nil
|
|
|
|
}
|
|
|
|
|
2019-05-28 19:03:18 +00:00
|
|
|
func (*NodeServer) mount(volOptions *volumeOptions, req *csi.NodeStageVolumeRequest, vid *volumeIdentifier) error {
|
2019-01-29 05:49:16 +00:00
|
|
|
stagingTargetPath := req.GetStagingTargetPath()
|
|
|
|
volID := volumeID(req.GetVolumeId())
|
2018-04-13 13:53:43 +00:00
|
|
|
|
2019-05-28 19:03:18 +00:00
|
|
|
cr, err := getCredentialsForVolume(volOptions, volumeID(vid.FsSubvolName), req)
|
2018-03-22 13:11:51 +00:00
|
|
|
if err != nil {
|
2019-02-04 13:04:11 +00:00
|
|
|
klog.Errorf("failed to get ceph credentials for volume %s: %v", volID, err)
|
2019-01-29 05:49:16 +00:00
|
|
|
return status.Error(codes.Internal, err.Error())
|
2018-03-22 13:11:51 +00:00
|
|
|
}
|
2018-03-09 16:05:19 +00:00
|
|
|
|
2018-08-14 09:19:41 +00:00
|
|
|
m, err := newMounter(volOptions)
|
|
|
|
if err != nil {
|
2019-02-04 13:04:11 +00:00
|
|
|
klog.Errorf("failed to create mounter for volume %s: %v", volID, err)
|
2019-01-29 05:49:16 +00:00
|
|
|
return status.Error(codes.Internal, err.Error())
|
2018-08-14 09:19:41 +00:00
|
|
|
}
|
2018-07-28 08:24:07 +00:00
|
|
|
|
2019-02-04 13:04:11 +00:00
|
|
|
klog.V(4).Infof("cephfs: mounting volume %s with %s", volID, m.name())
|
2018-08-28 08:21:11 +00:00
|
|
|
|
2019-03-04 04:10:44 +00:00
|
|
|
if err = m.mount(stagingTargetPath, cr, volOptions); err != nil {
|
2019-02-04 13:04:11 +00:00
|
|
|
klog.Errorf("failed to mount volume %s: %v", volID, err)
|
2019-01-29 05:49:16 +00:00
|
|
|
return status.Error(codes.Internal, err.Error())
|
2018-03-05 11:59:47 +00:00
|
|
|
}
|
2019-05-28 19:03:18 +00:00
|
|
|
if err := volumeMountCache.nodeStageVolume(req.GetVolumeId(), stagingTargetPath, volOptions.Mounter, req.GetSecrets()); err != nil {
|
2019-04-01 15:02:19 +00:00
|
|
|
klog.Warningf("mount-cache: failed to stage volume %s %s: %v", volID, stagingTargetPath, err)
|
2019-03-25 14:47:39 +00:00
|
|
|
}
|
2019-01-29 05:49:16 +00:00
|
|
|
return nil
|
2018-07-28 08:24:07 +00:00
|
|
|
}
|
|
|
|
|
2019-01-28 11:47:06 +00:00
|
|
|
// NodePublishVolume mounts the volume mounted to the staging path to the target
|
|
|
|
// path
|
2019-01-17 07:51:06 +00:00
|
|
|
func (ns *NodeServer) NodePublishVolume(ctx context.Context, req *csi.NodePublishVolumeRequest) (*csi.NodePublishVolumeResponse, error) {
|
2019-06-06 12:18:11 +00:00
|
|
|
|
|
|
|
mountOptions := []string{"bind"}
|
2019-07-03 10:02:36 +00:00
|
|
|
if err := util.ValidateNodePublishVolumeRequest(req); err != nil {
|
|
|
|
return nil, err
|
2018-07-28 08:24:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Configuration
|
|
|
|
|
|
|
|
targetPath := req.GetTargetPath()
|
2019-01-17 05:46:32 +00:00
|
|
|
volID := req.GetVolumeId()
|
2018-07-28 08:24:07 +00:00
|
|
|
|
2019-07-03 10:02:36 +00:00
|
|
|
if err := util.CreateMountPoint(targetPath); err != nil {
|
2019-02-04 13:04:11 +00:00
|
|
|
klog.Errorf("failed to create mount point at %s: %v", targetPath, err)
|
2018-07-28 08:24:07 +00:00
|
|
|
return nil, status.Error(codes.Internal, err.Error())
|
|
|
|
}
|
|
|
|
|
2019-06-06 12:18:11 +00:00
|
|
|
volCap := req.GetVolumeCapability()
|
|
|
|
|
|
|
|
if req.GetReadonly() {
|
|
|
|
mountOptions = append(mountOptions, "ro")
|
|
|
|
}
|
|
|
|
|
|
|
|
if m := volCap.GetMount(); m != nil {
|
|
|
|
hasOption := func(options []string, opt string) bool {
|
|
|
|
for _, o := range options {
|
|
|
|
if o == opt {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
for _, f := range m.MountFlags {
|
|
|
|
if !hasOption(mountOptions, f) {
|
|
|
|
mountOptions = append(mountOptions, f)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-28 08:24:07 +00:00
|
|
|
// Check if the volume is already mounted
|
|
|
|
|
2019-07-03 10:02:36 +00:00
|
|
|
isMnt, err := util.IsMountPoint(targetPath)
|
2018-07-28 08:24:07 +00:00
|
|
|
|
|
|
|
if err != nil {
|
2019-02-04 13:04:11 +00:00
|
|
|
klog.Errorf("stat failed: %v", err)
|
2018-07-28 08:24:07 +00:00
|
|
|
return nil, status.Error(codes.Internal, err.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
if isMnt {
|
2019-02-04 13:04:11 +00:00
|
|
|
klog.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
|
|
|
|
|
2019-06-06 12:18:11 +00:00
|
|
|
if err = bindMount(req.GetStagingTargetPath(), req.GetTargetPath(), req.GetReadonly(), mountOptions); err != nil {
|
2019-02-04 13:04:11 +00:00
|
|
|
klog.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-06-11 12:40:31 +00:00
|
|
|
if err = volumeMountCache.nodePublishVolume(volID, targetPath, req.GetReadonly()); err != nil {
|
2019-04-01 15:02:19 +00:00
|
|
|
klog.Warningf("mount-cache: failed to publish volume %s %s: %v", volID, targetPath, err)
|
2019-03-25 14:47:39 +00:00
|
|
|
}
|
|
|
|
|
2019-02-04 13:04:11 +00:00
|
|
|
klog.Infof("cephfs: successfully bind-mounted volume %s to %s", volID, targetPath)
|
2018-03-05 11:59:47 +00:00
|
|
|
|
2019-06-11 12:40:31 +00:00
|
|
|
err = os.Chmod(targetPath, 0777)
|
|
|
|
if err != nil {
|
|
|
|
klog.Errorf("failed to change targetpath permission for volume %s: %v", volID, err)
|
|
|
|
return nil, status.Error(codes.Internal, err.Error())
|
|
|
|
}
|
|
|
|
|
2018-03-05 11:59:47 +00:00
|
|
|
return &csi.NodePublishVolumeResponse{}, nil
|
|
|
|
}
|
|
|
|
|
2019-01-28 11:47:06 +00:00
|
|
|
// NodeUnpublishVolume unmounts the volume from the target path
|
2019-01-17 07:51:06 +00:00
|
|
|
func (ns *NodeServer) NodeUnpublishVolume(ctx context.Context, req *csi.NodeUnpublishVolumeRequest) (*csi.NodeUnpublishVolumeResponse, error) {
|
2019-01-28 13:59:16 +00:00
|
|
|
var err error
|
2019-07-03 10:02:36 +00:00
|
|
|
if err = util.ValidateNodeUnpublishVolumeRequest(req); err != nil {
|
|
|
|
return nil, err
|
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
|
|
|
|
2019-03-25 14:47:39 +00:00
|
|
|
volID := req.GetVolumeId()
|
|
|
|
if err = volumeMountCache.nodeUnPublishVolume(volID, targetPath); err != nil {
|
2019-04-01 15:02:19 +00:00
|
|
|
klog.Warningf("mount-cache: failed to unpublish volume %s %s: %v", volID, targetPath, err)
|
2019-03-25 14:47:39 +00:00
|
|
|
}
|
|
|
|
|
2018-04-13 13:53:43 +00:00
|
|
|
// Unmount the bind-mount
|
2019-01-28 13:59:16 +00:00
|
|
|
if err = unmountVolume(targetPath); err != nil {
|
2018-03-05 11:59:47 +00:00
|
|
|
return nil, status.Error(codes.Internal, err.Error())
|
|
|
|
}
|
|
|
|
|
2019-01-28 13:59:16 +00:00
|
|
|
if err = os.Remove(targetPath); err != nil {
|
|
|
|
return nil, status.Error(codes.Internal, err.Error())
|
|
|
|
}
|
2018-07-28 08:24:07 +00:00
|
|
|
|
2019-02-04 13:04:11 +00:00
|
|
|
klog.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-28 11:47:06 +00:00
|
|
|
// NodeUnstageVolume unstages the volume from the staging path
|
2019-01-17 07:51:06 +00:00
|
|
|
func (ns *NodeServer) NodeUnstageVolume(ctx context.Context, req *csi.NodeUnstageVolumeRequest) (*csi.NodeUnstageVolumeResponse, error) {
|
2019-01-28 13:59:16 +00:00
|
|
|
var err error
|
2019-07-03 10:02:36 +00:00
|
|
|
if err = util.ValidateNodeUnstageVolumeRequest(req); err != nil {
|
|
|
|
return nil, err
|
2018-07-28 08:24:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
stagingTargetPath := req.GetStagingTargetPath()
|
|
|
|
|
2019-03-25 14:47:39 +00:00
|
|
|
volID := req.GetVolumeId()
|
2019-03-29 02:18:59 +00:00
|
|
|
if err = volumeMountCache.nodeUnStageVolume(volID); err != nil {
|
2019-04-01 15:02:19 +00:00
|
|
|
klog.Warningf("mount-cache: failed to unstage volume %s %s: %v", volID, stagingTargetPath, err)
|
2019-03-25 14:47:39 +00:00
|
|
|
}
|
|
|
|
|
2018-07-28 08:24:07 +00:00
|
|
|
// Unmount the volume
|
2019-01-28 13:59:16 +00:00
|
|
|
if err = unmountVolume(stagingTargetPath); err != nil {
|
2018-04-13 13:53:43 +00:00
|
|
|
return nil, status.Error(codes.Internal, err.Error())
|
|
|
|
}
|
|
|
|
|
2019-01-28 13:59:16 +00:00
|
|
|
if err = os.Remove(stagingTargetPath); err != nil {
|
|
|
|
return nil, status.Error(codes.Internal, err.Error())
|
|
|
|
}
|
2018-04-13 13:53:43 +00:00
|
|
|
|
2019-02-14 10:48:52 +00:00
|
|
|
klog.Infof("cephfs: successfully unmounted 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-07-25 05:15:06 +00:00
|
|
|
func (ns *NodeServer) NodeGetVolumeStats(ctx context.Context, req *csi.NodeGetVolumeStatsRequest) (*csi.NodeGetVolumeStatsResponse, error) {
|
|
|
|
|
|
|
|
var err error
|
|
|
|
targetPath := req.GetVolumePath()
|
|
|
|
if targetPath == "" {
|
|
|
|
err = fmt.Errorf("targetpath %v is empty", targetPath)
|
|
|
|
return nil, status.Error(codes.InvalidArgument, err.Error())
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
volID := req.GetVolumeId()
|
|
|
|
|
|
|
|
TODO: Map the volumeID to the targetpath.
|
|
|
|
|
|
|
|
we need secret to connect to the ceph cluster to get the volumeID from volume
|
|
|
|
Name, however `secret` field/option is not available in NodeGetVolumeStats spec,
|
|
|
|
Below issue covers this request and once its available, we can do the validation
|
|
|
|
as per the spec.
|
|
|
|
https://github.com/container-storage-interface/spec/issues/371
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
isMnt, err := util.IsMountPoint(targetPath)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
if os.IsNotExist(err) {
|
|
|
|
return nil, status.Errorf(codes.InvalidArgument, "targetpath %s doesnot exist", targetPath)
|
|
|
|
}
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if !isMnt {
|
|
|
|
return nil, status.Errorf(codes.InvalidArgument, "targetpath %s is not mounted", targetPath)
|
|
|
|
}
|
|
|
|
|
|
|
|
cephfsProvider := volume.NewMetricsStatFS(targetPath)
|
|
|
|
volMetrics, volMetErr := cephfsProvider.GetMetrics()
|
|
|
|
if volMetErr != nil {
|
|
|
|
return nil, status.Error(codes.Internal, volMetErr.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
available, ok := (*(volMetrics.Available)).AsInt64()
|
|
|
|
if !ok {
|
|
|
|
klog.Errorf("failed to fetch available bytes")
|
|
|
|
}
|
|
|
|
capacity, ok := (*(volMetrics.Capacity)).AsInt64()
|
|
|
|
if !ok {
|
|
|
|
klog.Errorf("failed to fetch capacity bytes")
|
|
|
|
return nil, status.Error(codes.Unknown, "failed to fetch capacity bytes")
|
|
|
|
}
|
|
|
|
used, ok := (*(volMetrics.Used)).AsInt64()
|
|
|
|
if !ok {
|
|
|
|
klog.Errorf("failed to fetch used bytes")
|
|
|
|
}
|
|
|
|
inodes, ok := (*(volMetrics.Inodes)).AsInt64()
|
|
|
|
if !ok {
|
|
|
|
klog.Errorf("failed to fetch available inodes")
|
|
|
|
return nil, status.Error(codes.Unknown, "failed to fetch available inodes")
|
|
|
|
|
|
|
|
}
|
|
|
|
inodesFree, ok := (*(volMetrics.InodesFree)).AsInt64()
|
|
|
|
if !ok {
|
|
|
|
klog.Errorf("failed to fetch free inodes")
|
|
|
|
}
|
|
|
|
|
|
|
|
inodesUsed, ok := (*(volMetrics.InodesUsed)).AsInt64()
|
|
|
|
if !ok {
|
|
|
|
klog.Errorf("failed to fetch used inodes")
|
|
|
|
}
|
|
|
|
return &csi.NodeGetVolumeStatsResponse{
|
|
|
|
Usage: []*csi.VolumeUsage{
|
|
|
|
{
|
|
|
|
Available: available,
|
|
|
|
Total: capacity,
|
|
|
|
Used: used,
|
|
|
|
Unit: csipbv1.VolumeUsage_BYTES,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Available: inodesFree,
|
|
|
|
Total: inodes,
|
|
|
|
Used: inodesUsed,
|
|
|
|
Unit: csipbv1.VolumeUsage_INODES,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}, nil
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2019-01-28 11:47:06 +00:00
|
|
|
// NodeGetCapabilities returns the supported capabilities of the node server
|
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,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2019-07-25 05:15:06 +00:00
|
|
|
{
|
|
|
|
Type: &csi.NodeServiceCapability_Rpc{
|
|
|
|
Rpc: &csi.NodeServiceCapability_RPC{
|
|
|
|
Type: csi.NodeServiceCapability_RPC_GET_VOLUME_STATS,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2018-07-28 08:24:07 +00:00
|
|
|
},
|
|
|
|
}, nil
|
2018-03-20 15:14:14 +00:00
|
|
|
}
|