2018-07-14 08:48:22 +00:00
|
|
|
/*
|
|
|
|
Copyright 2017 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.
|
|
|
|
*/
|
|
|
|
|
2021-04-03 10:40:58 +00:00
|
|
|
package driver
|
2018-07-14 08:48:22 +00:00
|
|
|
|
|
|
|
import (
|
2019-03-10 11:19:02 +00:00
|
|
|
"fmt"
|
2018-07-14 08:48:22 +00:00
|
|
|
"os"
|
2023-03-06 21:41:41 +00:00
|
|
|
"os/exec"
|
2021-07-16 19:16:37 +00:00
|
|
|
"regexp"
|
|
|
|
"strconv"
|
2018-07-14 08:48:22 +00:00
|
|
|
|
2021-08-24 10:33:26 +00:00
|
|
|
"github.com/yandex-cloud/k8s-csi-s3/pkg/mounter"
|
|
|
|
"github.com/yandex-cloud/k8s-csi-s3/pkg/s3"
|
2018-07-14 08:48:22 +00:00
|
|
|
"github.com/golang/glog"
|
|
|
|
"golang.org/x/net/context"
|
|
|
|
|
2019-02-28 18:34:03 +00:00
|
|
|
"github.com/container-storage-interface/spec/lib/go/csi"
|
2018-07-14 08:48:22 +00:00
|
|
|
"google.golang.org/grpc/codes"
|
|
|
|
"google.golang.org/grpc/status"
|
|
|
|
"k8s.io/kubernetes/pkg/util/mount"
|
|
|
|
|
2019-03-10 11:19:02 +00:00
|
|
|
csicommon "github.com/kubernetes-csi/drivers/pkg/csi-common"
|
2018-07-14 08:48:22 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type nodeServer struct {
|
|
|
|
*csicommon.DefaultNodeServer
|
|
|
|
}
|
|
|
|
|
2021-07-16 19:16:37 +00:00
|
|
|
func getMeta(bucketName, prefix string, context map[string]string) *s3.FSMeta {
|
|
|
|
mountOptions := make([]string, 0)
|
|
|
|
mountOptStr := context[mounter.OptionsKey]
|
|
|
|
if mountOptStr != "" {
|
|
|
|
re, _ := regexp.Compile(`([^\s"]+|"([^"\\]+|\\")*")+`)
|
|
|
|
re2, _ := regexp.Compile(`"([^"\\]+|\\")*"`)
|
|
|
|
re3, _ := regexp.Compile(`\\(.)`)
|
|
|
|
for _, opt := range re.FindAll([]byte(mountOptStr), -1) {
|
|
|
|
// Unquote options
|
|
|
|
opt = re2.ReplaceAllFunc(opt, func(q []byte) []byte {
|
|
|
|
return re3.ReplaceAll(q[1 : len(q)-1], []byte("$1"))
|
|
|
|
})
|
|
|
|
mountOptions = append(mountOptions, string(opt))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
capacity, _ := strconv.ParseInt(context["capacity"], 10, 64)
|
|
|
|
return &s3.FSMeta{
|
|
|
|
BucketName: bucketName,
|
|
|
|
Prefix: prefix,
|
|
|
|
Mounter: context[mounter.TypeKey],
|
|
|
|
MountOptions: mountOptions,
|
|
|
|
CapacityBytes: capacity,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-14 08:48:22 +00:00
|
|
|
func (ns *nodeServer) NodePublishVolume(ctx context.Context, req *csi.NodePublishVolumeRequest) (*csi.NodePublishVolumeResponse, error) {
|
2018-07-27 10:56:28 +00:00
|
|
|
volumeID := req.GetVolumeId()
|
|
|
|
targetPath := req.GetTargetPath()
|
|
|
|
stagingTargetPath := req.GetStagingTargetPath()
|
2018-07-14 08:48:22 +00:00
|
|
|
|
|
|
|
// Check arguments
|
|
|
|
if req.GetVolumeCapability() == nil {
|
|
|
|
return nil, status.Error(codes.InvalidArgument, "Volume capability missing in request")
|
|
|
|
}
|
2018-07-27 10:56:28 +00:00
|
|
|
if len(volumeID) == 0 {
|
2018-07-14 08:48:22 +00:00
|
|
|
return nil, status.Error(codes.InvalidArgument, "Volume ID missing in request")
|
|
|
|
}
|
2018-07-27 10:56:28 +00:00
|
|
|
if len(stagingTargetPath) == 0 {
|
2018-07-26 20:43:51 +00:00
|
|
|
return nil, status.Error(codes.InvalidArgument, "Staging Target path missing in request")
|
|
|
|
}
|
2018-07-27 10:56:28 +00:00
|
|
|
if len(targetPath) == 0 {
|
2018-07-14 08:48:22 +00:00
|
|
|
return nil, status.Error(codes.InvalidArgument, "Target path missing in request")
|
|
|
|
}
|
|
|
|
|
2023-05-23 11:58:01 +00:00
|
|
|
notMnt, err := checkMount(stagingTargetPath)
|
|
|
|
if err != nil {
|
|
|
|
return nil, status.Error(codes.Internal, err.Error())
|
|
|
|
}
|
|
|
|
if notMnt {
|
|
|
|
// Staged mount is dead by some reason. Revive it
|
|
|
|
bucketName, prefix := volumeIDToBucketPrefix(volumeID)
|
|
|
|
s3, err := s3.NewClientFromSecret(req.GetSecrets())
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("failed to initialize S3 client: %s", err)
|
|
|
|
}
|
|
|
|
meta := getMeta(bucketName, prefix, req.VolumeContext)
|
|
|
|
mounter, err := mounter.New(meta, s3.Config)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if err := mounter.Mount(stagingTargetPath, volumeID); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
notMnt, err = checkMount(targetPath)
|
2018-07-14 08:48:22 +00:00
|
|
|
if err != nil {
|
2018-07-26 20:43:51 +00:00
|
|
|
return nil, status.Error(codes.Internal, err.Error())
|
2018-07-14 08:48:22 +00:00
|
|
|
}
|
|
|
|
if !notMnt {
|
|
|
|
return &csi.NodePublishVolumeResponse{}, nil
|
|
|
|
}
|
|
|
|
|
2018-07-27 10:56:28 +00:00
|
|
|
// TODO: Implement readOnly & mountFlags
|
2018-07-14 08:48:22 +00:00
|
|
|
readOnly := req.GetReadonly()
|
|
|
|
mountFlags := req.GetVolumeCapability().GetMount().GetMountFlags()
|
2021-07-19 16:55:11 +00:00
|
|
|
attrib := req.GetVolumeContext()
|
2018-07-14 08:48:22 +00:00
|
|
|
|
2021-07-16 19:16:37 +00:00
|
|
|
glog.V(4).Infof("target %v\nreadonly %v\nvolumeId %v\nattributes %v\nmountflags %v\n",
|
|
|
|
targetPath, readOnly, volumeID, attrib, mountFlags)
|
2018-07-14 08:48:22 +00:00
|
|
|
|
2023-03-06 21:41:41 +00:00
|
|
|
cmd := exec.Command("mount", "--bind", stagingTargetPath, targetPath)
|
|
|
|
cmd.Stderr = os.Stderr
|
|
|
|
glog.V(3).Infof("Binding volume %v from %v to %v", volumeID, stagingTargetPath, targetPath)
|
|
|
|
out, err := cmd.Output()
|
2018-07-27 10:56:28 +00:00
|
|
|
if err != nil {
|
2023-03-06 21:41:41 +00:00
|
|
|
return nil, fmt.Errorf("Error running mount --bind %v %v: %s", stagingTargetPath, targetPath, out)
|
2018-07-14 08:48:22 +00:00
|
|
|
}
|
|
|
|
|
2021-09-07 11:55:12 +00:00
|
|
|
glog.V(4).Infof("s3: volume %s successfully mounted to %s", volumeID, targetPath)
|
2018-07-14 08:48:22 +00:00
|
|
|
|
|
|
|
return &csi.NodePublishVolumeResponse{}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (ns *nodeServer) NodeUnpublishVolume(ctx context.Context, req *csi.NodeUnpublishVolumeRequest) (*csi.NodeUnpublishVolumeResponse, error) {
|
2018-07-27 10:56:28 +00:00
|
|
|
volumeID := req.GetVolumeId()
|
|
|
|
targetPath := req.GetTargetPath()
|
2018-07-14 08:48:22 +00:00
|
|
|
|
|
|
|
// Check arguments
|
2018-07-27 10:56:28 +00:00
|
|
|
if len(volumeID) == 0 {
|
2018-07-14 08:48:22 +00:00
|
|
|
return nil, status.Error(codes.InvalidArgument, "Volume ID missing in request")
|
|
|
|
}
|
2018-07-27 10:56:28 +00:00
|
|
|
if len(targetPath) == 0 {
|
2018-07-14 08:48:22 +00:00
|
|
|
return nil, status.Error(codes.InvalidArgument, "Target path missing in request")
|
|
|
|
}
|
|
|
|
|
2023-03-06 21:41:41 +00:00
|
|
|
if err := mounter.Unmount(targetPath); err != nil {
|
2018-07-14 08:48:22 +00:00
|
|
|
return nil, status.Error(codes.Internal, err.Error())
|
|
|
|
}
|
2021-04-05 13:07:16 +00:00
|
|
|
glog.V(4).Infof("s3: volume %s has been unmounted.", volumeID)
|
2018-07-14 08:48:22 +00:00
|
|
|
|
|
|
|
return &csi.NodeUnpublishVolumeResponse{}, nil
|
|
|
|
}
|
2018-07-21 14:36:39 +00:00
|
|
|
|
2018-07-26 20:43:51 +00:00
|
|
|
func (ns *nodeServer) NodeStageVolume(ctx context.Context, req *csi.NodeStageVolumeRequest) (*csi.NodeStageVolumeResponse, error) {
|
2018-07-27 10:56:28 +00:00
|
|
|
volumeID := req.GetVolumeId()
|
|
|
|
stagingTargetPath := req.GetStagingTargetPath()
|
2021-04-05 13:07:16 +00:00
|
|
|
bucketName, prefix := volumeIDToBucketPrefix(volumeID)
|
2018-07-26 20:43:51 +00:00
|
|
|
|
|
|
|
// Check arguments
|
2018-07-27 10:56:28 +00:00
|
|
|
if len(volumeID) == 0 {
|
2018-07-26 20:43:51 +00:00
|
|
|
return nil, status.Error(codes.InvalidArgument, "Volume ID missing in request")
|
|
|
|
}
|
|
|
|
|
2018-07-27 10:56:28 +00:00
|
|
|
if len(stagingTargetPath) == 0 {
|
2018-07-26 20:43:51 +00:00
|
|
|
return nil, status.Error(codes.InvalidArgument, "Target path missing in request")
|
|
|
|
}
|
|
|
|
|
|
|
|
if req.VolumeCapability == nil {
|
|
|
|
return nil, status.Error(codes.InvalidArgument, "NodeStageVolume Volume Capability must be provided")
|
|
|
|
}
|
|
|
|
|
2018-07-27 10:56:28 +00:00
|
|
|
notMnt, err := checkMount(stagingTargetPath)
|
2018-07-26 20:43:51 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, status.Error(codes.Internal, err.Error())
|
|
|
|
}
|
|
|
|
if !notMnt {
|
|
|
|
return &csi.NodeStageVolumeResponse{}, nil
|
|
|
|
}
|
2021-04-03 10:40:58 +00:00
|
|
|
client, err := s3.NewClientFromSecret(req.GetSecrets())
|
2019-03-10 11:19:02 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("failed to initialize S3 client: %s", err)
|
|
|
|
}
|
2021-07-16 19:16:37 +00:00
|
|
|
|
|
|
|
meta := getMeta(bucketName, prefix, req.VolumeContext)
|
2021-04-05 13:07:16 +00:00
|
|
|
mounter, err := mounter.New(meta, client.Config)
|
2018-07-26 20:43:51 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2023-03-06 21:41:41 +00:00
|
|
|
if err := mounter.Mount(stagingTargetPath, volumeID); err != nil {
|
2018-07-26 20:43:51 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return &csi.NodeStageVolumeResponse{}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (ns *nodeServer) NodeUnstageVolume(ctx context.Context, req *csi.NodeUnstageVolumeRequest) (*csi.NodeUnstageVolumeResponse, error) {
|
2018-07-27 10:56:28 +00:00
|
|
|
volumeID := req.GetVolumeId()
|
|
|
|
stagingTargetPath := req.GetStagingTargetPath()
|
2018-07-26 20:43:51 +00:00
|
|
|
|
|
|
|
// Check arguments
|
2018-07-27 10:56:28 +00:00
|
|
|
if len(volumeID) == 0 {
|
2018-07-26 20:43:51 +00:00
|
|
|
return nil, status.Error(codes.InvalidArgument, "Volume ID missing in request")
|
|
|
|
}
|
2018-07-27 10:56:28 +00:00
|
|
|
if len(stagingTargetPath) == 0 {
|
2018-07-26 20:43:51 +00:00
|
|
|
return nil, status.Error(codes.InvalidArgument, "Target path missing in request")
|
|
|
|
}
|
|
|
|
|
2023-03-06 21:41:41 +00:00
|
|
|
proc, err := mounter.FindFuseMountProcess(stagingTargetPath)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
exists := false
|
|
|
|
if proc == nil {
|
|
|
|
exists, err = mounter.SystemdUnmount(volumeID)
|
|
|
|
if exists && err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if !exists {
|
|
|
|
err = mounter.FuseUnmount(stagingTargetPath)
|
|
|
|
}
|
|
|
|
glog.V(4).Infof("s3: volume %s has been unmounted from stage path %v.", volumeID, stagingTargetPath)
|
|
|
|
|
2018-07-26 20:43:51 +00:00
|
|
|
return &csi.NodeUnstageVolumeResponse{}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// NodeGetCapabilities returns the supported capabilities of the node server
|
|
|
|
func (ns *nodeServer) NodeGetCapabilities(ctx context.Context, req *csi.NodeGetCapabilitiesRequest) (*csi.NodeGetCapabilitiesResponse, error) {
|
|
|
|
// currently there is a single NodeServer capability according to the spec
|
|
|
|
nscap := &csi.NodeServiceCapability{
|
|
|
|
Type: &csi.NodeServiceCapability_Rpc{
|
|
|
|
Rpc: &csi.NodeServiceCapability_RPC{
|
|
|
|
Type: csi.NodeServiceCapability_RPC_STAGE_UNSTAGE_VOLUME,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
return &csi.NodeGetCapabilitiesResponse{
|
|
|
|
Capabilities: []*csi.NodeServiceCapability{
|
|
|
|
nscap,
|
|
|
|
},
|
|
|
|
}, nil
|
2018-07-14 08:48:22 +00:00
|
|
|
}
|
|
|
|
|
2019-05-14 19:01:54 +00:00
|
|
|
func (ns *nodeServer) NodeExpandVolume(ctx context.Context, req *csi.NodeExpandVolumeRequest) (*csi.NodeExpandVolumeResponse, error) {
|
|
|
|
return &csi.NodeExpandVolumeResponse{}, status.Error(codes.Unimplemented, "NodeExpandVolume is not implemented")
|
|
|
|
}
|
|
|
|
|
2018-07-26 20:43:51 +00:00
|
|
|
func checkMount(targetPath string) (bool, error) {
|
|
|
|
notMnt, err := mount.New("").IsLikelyNotMountPoint(targetPath)
|
|
|
|
if err != nil {
|
|
|
|
if os.IsNotExist(err) {
|
|
|
|
if err = os.MkdirAll(targetPath, 0750); err != nil {
|
|
|
|
return false, err
|
|
|
|
}
|
|
|
|
notMnt = true
|
|
|
|
} else {
|
|
|
|
return false, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return notMnt, nil
|
2018-07-14 08:48:22 +00:00
|
|
|
}
|