2018-01-09 18:59:50 +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 rbd
|
|
|
|
|
|
|
|
import (
|
2018-01-16 01:52:28 +00:00
|
|
|
"fmt"
|
2018-01-09 18:59:50 +00:00
|
|
|
"os"
|
|
|
|
"path"
|
2018-01-16 01:52:28 +00:00
|
|
|
"strings"
|
2018-01-09 18:59:50 +00:00
|
|
|
|
|
|
|
"github.com/golang/glog"
|
|
|
|
"golang.org/x/net/context"
|
|
|
|
|
|
|
|
"github.com/container-storage-interface/spec/lib/go/csi"
|
|
|
|
"google.golang.org/grpc/codes"
|
|
|
|
"google.golang.org/grpc/status"
|
2018-01-18 19:13:08 +00:00
|
|
|
|
2018-01-09 18:59:50 +00:00
|
|
|
"k8s.io/kubernetes/pkg/util/mount"
|
|
|
|
|
|
|
|
"github.com/kubernetes-csi/drivers/pkg/csi-common"
|
|
|
|
)
|
|
|
|
|
|
|
|
type nodeServer struct {
|
|
|
|
*csicommon.DefaultNodeServer
|
|
|
|
}
|
|
|
|
|
|
|
|
func (ns *nodeServer) NodePublishVolume(ctx context.Context, req *csi.NodePublishVolumeRequest) (*csi.NodePublishVolumeResponse, error) {
|
|
|
|
targetPath := req.GetTargetPath()
|
|
|
|
|
2018-01-16 01:52:28 +00:00
|
|
|
if !strings.HasSuffix(targetPath, "/mount") {
|
|
|
|
return nil, fmt.Errorf("rnd: malformed the value of target path: %s", targetPath)
|
|
|
|
}
|
|
|
|
s := strings.Split(strings.TrimSuffix(targetPath, "/mount"), "/")
|
|
|
|
volName := s[len(s)-1]
|
|
|
|
|
2018-01-09 18:59:50 +00:00
|
|
|
notMnt, err := mount.New("").IsLikelyNotMountPoint(targetPath)
|
|
|
|
if err != nil {
|
|
|
|
if os.IsNotExist(err) {
|
|
|
|
if err = os.MkdirAll(targetPath, 0750); err != nil {
|
|
|
|
return nil, status.Error(codes.Internal, err.Error())
|
|
|
|
}
|
|
|
|
notMnt = true
|
|
|
|
} else {
|
|
|
|
return nil, status.Error(codes.Internal, err.Error())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if !notMnt {
|
|
|
|
return &csi.NodePublishVolumeResponse{}, nil
|
|
|
|
}
|
2018-01-18 19:13:08 +00:00
|
|
|
volOptions, err := getRBDVolumeOptions(req.VolumeAttributes)
|
2018-01-09 18:59:50 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2018-01-16 01:52:28 +00:00
|
|
|
volOptions.VolName = volName
|
2018-01-09 18:59:50 +00:00
|
|
|
// Mapping RBD image
|
2018-01-16 01:52:28 +00:00
|
|
|
devicePath, err := attachRBDImage(volOptions)
|
2018-01-09 18:59:50 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
glog.V(4).Infof("rbd image: %s/%s was succesfully mapped at %s\n", req.GetVolumeId(), volOptions.Pool, devicePath)
|
|
|
|
fsType := req.GetVolumeCapability().GetMount().GetFsType()
|
|
|
|
|
|
|
|
readOnly := req.GetReadonly()
|
|
|
|
attrib := req.GetVolumeAttributes()
|
|
|
|
mountFlags := req.GetVolumeCapability().GetMount().GetMountFlags()
|
|
|
|
|
|
|
|
glog.V(4).Infof("target %v\nfstype %v\ndevice %v\nreadonly %v\nattributes %v\n mountflags %v\n",
|
|
|
|
targetPath, fsType, devicePath, readOnly, attrib, mountFlags)
|
|
|
|
|
|
|
|
options := []string{}
|
|
|
|
if readOnly {
|
|
|
|
options = append(options, "ro")
|
|
|
|
}
|
|
|
|
|
|
|
|
diskMounter := &mount.SafeFormatAndMount{Interface: mount.New(""), Exec: mount.NewOsExec()}
|
|
|
|
if err := diskMounter.FormatAndMount(devicePath, targetPath, fsType, options); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
// Storing volInfo into a persistent file
|
|
|
|
if err := persistVolInfo(req.GetVolumeId(), path.Join(PluginFolder, "node"), volOptions); err != nil {
|
|
|
|
glog.Warningf("rbd: failed to store volInfo with error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return &csi.NodePublishVolumeResponse{}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (ns *nodeServer) NodeUnpublishVolume(ctx context.Context, req *csi.NodeUnpublishVolumeRequest) (*csi.NodeUnpublishVolumeResponse, error) {
|
|
|
|
targetPath := req.GetTargetPath()
|
2018-01-16 01:52:28 +00:00
|
|
|
volumeID := req.GetVolumeId()
|
2018-01-09 18:59:50 +00:00
|
|
|
volOptions := &rbdVolumeOptions{}
|
2018-01-16 01:52:28 +00:00
|
|
|
if err := loadVolInfo(volumeID, path.Join(PluginFolder, "node"), volOptions); err != nil {
|
2018-01-09 18:59:50 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
2018-01-16 01:52:28 +00:00
|
|
|
volName := volOptions.VolName
|
2018-01-09 18:59:50 +00:00
|
|
|
|
|
|
|
notMnt, err := mount.New("").IsLikelyNotMountPoint(targetPath)
|
|
|
|
if err != nil {
|
|
|
|
return nil, status.Error(codes.Internal, err.Error())
|
|
|
|
}
|
|
|
|
if notMnt {
|
|
|
|
return nil, status.Error(codes.NotFound, "Volume not mounted")
|
|
|
|
}
|
|
|
|
// Unmounting the image
|
|
|
|
err = mount.New("").Unmount(req.GetTargetPath())
|
|
|
|
if err != nil {
|
|
|
|
return nil, status.Error(codes.Internal, err.Error())
|
|
|
|
}
|
|
|
|
// Unmapping rbd device
|
|
|
|
glog.V(4).Infof("deleting volume %s", volName)
|
2018-01-16 01:52:28 +00:00
|
|
|
if err := detachRBDImage(volOptions); err != nil {
|
2018-01-18 19:13:08 +00:00
|
|
|
glog.V(3).Infof("failed to unmap rbd device: %s with error: %v", volOptions.VolName, err)
|
2018-01-09 18:59:50 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
// Removing persistent storage file for the unmapped volume
|
2018-01-16 01:52:28 +00:00
|
|
|
if err := deleteVolInfo(volumeID, path.Join(PluginFolder, "node")); err != nil {
|
2018-01-09 18:59:50 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return &csi.NodeUnpublishVolumeResponse{}, nil
|
|
|
|
}
|