2015-03-06 14:26:39 +00:00
|
|
|
|
/*
|
2015-05-01 16:19:44 +00:00
|
|
|
|
Copyright 2014 The Kubernetes Authors All rights reserved.
|
2015-03-06 14:26:39 +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.
|
|
|
|
|
*/
|
|
|
|
|
|
2015-04-09 13:40:48 +00:00
|
|
|
|
package aws_ebs
|
2015-03-06 14:26:39 +00:00
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"fmt"
|
|
|
|
|
"os"
|
|
|
|
|
"path"
|
2015-04-03 17:53:47 +00:00
|
|
|
|
"path/filepath"
|
2015-03-06 14:26:39 +00:00
|
|
|
|
"strconv"
|
2015-04-02 19:55:43 +00:00
|
|
|
|
"strings"
|
2015-03-06 14:26:39 +00:00
|
|
|
|
|
|
|
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/api"
|
|
|
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/cloudprovider"
|
|
|
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/cloudprovider/aws"
|
|
|
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/types"
|
|
|
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/util"
|
|
|
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/util/exec"
|
|
|
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/util/mount"
|
|
|
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/volume"
|
|
|
|
|
"github.com/golang/glog"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// This is the primary entrypoint for volume plugins.
|
|
|
|
|
func ProbeVolumePlugins() []volume.VolumePlugin {
|
2015-04-07 21:16:36 +00:00
|
|
|
|
return []volume.VolumePlugin{&awsElasticBlockStorePlugin{nil}}
|
2015-03-06 14:26:39 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-04-07 21:16:36 +00:00
|
|
|
|
type awsElasticBlockStorePlugin struct {
|
2015-03-06 14:26:39 +00:00
|
|
|
|
host volume.VolumeHost
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-07 21:16:36 +00:00
|
|
|
|
var _ volume.VolumePlugin = &awsElasticBlockStorePlugin{}
|
2015-03-06 14:26:39 +00:00
|
|
|
|
|
|
|
|
|
const (
|
2015-04-07 21:16:36 +00:00
|
|
|
|
awsElasticBlockStorePluginName = "kubernetes.io/aws-ebs"
|
2015-03-06 14:26:39 +00:00
|
|
|
|
)
|
|
|
|
|
|
2015-04-07 21:16:36 +00:00
|
|
|
|
func (plugin *awsElasticBlockStorePlugin) Init(host volume.VolumeHost) {
|
2015-03-06 14:26:39 +00:00
|
|
|
|
plugin.host = host
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-07 21:16:36 +00:00
|
|
|
|
func (plugin *awsElasticBlockStorePlugin) Name() string {
|
|
|
|
|
return awsElasticBlockStorePluginName
|
2015-03-06 14:26:39 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-04-14 16:29:33 +00:00
|
|
|
|
func (plugin *awsElasticBlockStorePlugin) CanSupport(spec *volume.Spec) bool {
|
|
|
|
|
return spec.PersistentVolumeSource.AWSElasticBlockStore != nil || spec.VolumeSource.AWSElasticBlockStore != nil
|
2015-03-06 14:26:39 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-04-07 21:16:36 +00:00
|
|
|
|
func (plugin *awsElasticBlockStorePlugin) GetAccessModes() []api.AccessModeType {
|
2015-03-06 14:26:39 +00:00
|
|
|
|
return []api.AccessModeType{
|
|
|
|
|
api.ReadWriteOnce,
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-14 16:29:33 +00:00
|
|
|
|
func (plugin *awsElasticBlockStorePlugin) NewBuilder(spec *volume.Spec, podRef *api.ObjectReference, _ volume.VolumeOptions) (volume.Builder, error) {
|
2015-03-06 14:26:39 +00:00
|
|
|
|
// Inject real implementations here, test through the internal function.
|
|
|
|
|
return plugin.newBuilderInternal(spec, podRef.UID, &AWSDiskUtil{}, mount.New())
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-14 16:29:33 +00:00
|
|
|
|
func (plugin *awsElasticBlockStorePlugin) newBuilderInternal(spec *volume.Spec, podUID types.UID, manager pdManager, mounter mount.Interface) (volume.Builder, error) {
|
|
|
|
|
var ebs *api.AWSElasticBlockStoreVolumeSource
|
|
|
|
|
if spec.VolumeSource.AWSElasticBlockStore != nil {
|
|
|
|
|
ebs = spec.VolumeSource.AWSElasticBlockStore
|
|
|
|
|
} else {
|
|
|
|
|
ebs = spec.PersistentVolumeSource.AWSElasticBlockStore
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
volumeID := ebs.VolumeID
|
|
|
|
|
fsType := ebs.FSType
|
2015-03-06 14:26:39 +00:00
|
|
|
|
partition := ""
|
2015-04-14 16:29:33 +00:00
|
|
|
|
if ebs.Partition != 0 {
|
|
|
|
|
partition = strconv.Itoa(ebs.Partition)
|
2015-03-06 14:26:39 +00:00
|
|
|
|
}
|
2015-04-14 16:29:33 +00:00
|
|
|
|
readOnly := ebs.ReadOnly
|
2015-03-06 14:26:39 +00:00
|
|
|
|
|
2015-04-07 21:16:36 +00:00
|
|
|
|
return &awsElasticBlockStore{
|
2015-03-06 14:26:39 +00:00
|
|
|
|
podUID: podUID,
|
|
|
|
|
volName: spec.Name,
|
2015-04-09 13:34:16 +00:00
|
|
|
|
volumeID: volumeID,
|
2015-03-06 14:26:39 +00:00
|
|
|
|
fsType: fsType,
|
|
|
|
|
partition: partition,
|
|
|
|
|
readOnly: readOnly,
|
|
|
|
|
manager: manager,
|
|
|
|
|
mounter: mounter,
|
|
|
|
|
diskMounter: &awsSafeFormatAndMount{mounter, exec.New()},
|
|
|
|
|
plugin: plugin,
|
|
|
|
|
}, nil
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-07 21:16:36 +00:00
|
|
|
|
func (plugin *awsElasticBlockStorePlugin) NewCleaner(volName string, podUID types.UID) (volume.Cleaner, error) {
|
2015-03-06 14:26:39 +00:00
|
|
|
|
// Inject real implementations here, test through the internal function.
|
|
|
|
|
return plugin.newCleanerInternal(volName, podUID, &AWSDiskUtil{}, mount.New())
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-07 21:16:36 +00:00
|
|
|
|
func (plugin *awsElasticBlockStorePlugin) newCleanerInternal(volName string, podUID types.UID, manager pdManager, mounter mount.Interface) (volume.Cleaner, error) {
|
|
|
|
|
return &awsElasticBlockStore{
|
2015-03-06 14:26:39 +00:00
|
|
|
|
podUID: podUID,
|
|
|
|
|
volName: volName,
|
|
|
|
|
manager: manager,
|
|
|
|
|
mounter: mounter,
|
|
|
|
|
diskMounter: &awsSafeFormatAndMount{mounter, exec.New()},
|
|
|
|
|
plugin: plugin,
|
|
|
|
|
}, nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Abstract interface to PD operations.
|
|
|
|
|
type pdManager interface {
|
|
|
|
|
// Attaches the disk to the kubelet's host machine.
|
2015-04-07 21:16:36 +00:00
|
|
|
|
AttachAndMountDisk(pd *awsElasticBlockStore, globalPDPath string) error
|
2015-03-06 14:26:39 +00:00
|
|
|
|
// Detaches the disk from the kubelet's host machine.
|
2015-04-07 21:16:36 +00:00
|
|
|
|
DetachDisk(pd *awsElasticBlockStore) error
|
2015-03-06 14:26:39 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-04-07 21:16:36 +00:00
|
|
|
|
// awsElasticBlockStore volumes are disk resources provided by Google Compute Engine
|
2015-03-06 14:26:39 +00:00
|
|
|
|
// that are attached to the kubelet's host machine and exposed to the pod.
|
2015-04-07 21:16:36 +00:00
|
|
|
|
type awsElasticBlockStore struct {
|
2015-03-06 14:26:39 +00:00
|
|
|
|
volName string
|
|
|
|
|
podUID types.UID
|
2015-04-07 20:23:12 +00:00
|
|
|
|
// Unique id of the PD, used to find the disk resource in the provider.
|
2015-04-09 13:34:16 +00:00
|
|
|
|
volumeID string
|
2015-03-06 14:26:39 +00:00
|
|
|
|
// Filesystem type, optional.
|
|
|
|
|
fsType string
|
|
|
|
|
// Specifies the partition to mount
|
|
|
|
|
partition string
|
|
|
|
|
// Specifies whether the disk will be attached as read-only.
|
|
|
|
|
readOnly bool
|
|
|
|
|
// Utility interface that provides API calls to the provider to attach/detach disks.
|
|
|
|
|
manager pdManager
|
|
|
|
|
// Mounter interface that provides system calls to mount the global path to the pod local path.
|
|
|
|
|
mounter mount.Interface
|
|
|
|
|
// diskMounter provides the interface that is used to mount the actual block device.
|
|
|
|
|
diskMounter mount.Interface
|
2015-04-07 21:16:36 +00:00
|
|
|
|
plugin *awsElasticBlockStorePlugin
|
2015-03-06 14:26:39 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-04-07 21:16:36 +00:00
|
|
|
|
func detachDiskLogError(pd *awsElasticBlockStore) {
|
2015-03-06 14:26:39 +00:00
|
|
|
|
err := pd.manager.DetachDisk(pd)
|
|
|
|
|
if err != nil {
|
|
|
|
|
glog.Warningf("Failed to detach disk: %v (%v)", pd, err)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// getVolumeProvider returns the AWS Volumes interface
|
2015-04-07 21:16:36 +00:00
|
|
|
|
func (pd *awsElasticBlockStore) getVolumeProvider() (aws_cloud.Volumes, error) {
|
2015-03-06 14:26:39 +00:00
|
|
|
|
name := "aws"
|
|
|
|
|
cloud, err := cloudprovider.GetCloudProvider(name, nil)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
volumes, ok := cloud.(aws_cloud.Volumes)
|
|
|
|
|
if !ok {
|
|
|
|
|
return nil, fmt.Errorf("Cloud provider does not support volumes")
|
|
|
|
|
}
|
|
|
|
|
return volumes, nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// SetUp attaches the disk and bind mounts to the volume path.
|
2015-04-07 21:16:36 +00:00
|
|
|
|
func (pd *awsElasticBlockStore) SetUp() error {
|
2015-03-06 14:26:39 +00:00
|
|
|
|
return pd.SetUpAt(pd.GetPath())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// SetUpAt attaches the disk and bind mounts to the volume path.
|
2015-04-07 21:16:36 +00:00
|
|
|
|
func (pd *awsElasticBlockStore) SetUpAt(dir string) error {
|
2015-03-06 14:26:39 +00:00
|
|
|
|
// TODO: handle failed mounts here.
|
2015-04-07 22:35:43 +00:00
|
|
|
|
mountpoint, err := pd.mounter.IsMountPoint(dir)
|
2015-03-06 14:26:39 +00:00
|
|
|
|
glog.V(4).Infof("PersistentDisk set up: %s %v %v", dir, mountpoint, err)
|
|
|
|
|
if err != nil && !os.IsNotExist(err) {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
if mountpoint {
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-09 13:34:16 +00:00
|
|
|
|
globalPDPath := makeGlobalPDPath(pd.plugin.host, pd.volumeID)
|
2015-03-06 14:26:39 +00:00
|
|
|
|
if err := pd.manager.AttachAndMountDisk(pd, globalPDPath); err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if err := os.MkdirAll(dir, 0750); err != nil {
|
|
|
|
|
// TODO: we should really eject the attach/detach out into its own control loop.
|
|
|
|
|
detachDiskLogError(pd)
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Perform a bind mount to the full path to allow duplicate mounts of the same PD.
|
2015-04-03 01:08:04 +00:00
|
|
|
|
options := []string{"bind"}
|
|
|
|
|
if pd.readOnly {
|
|
|
|
|
options = append(options, "ro")
|
|
|
|
|
}
|
|
|
|
|
err = pd.mounter.Mount(globalPDPath, dir, "", options)
|
2015-03-06 14:26:39 +00:00
|
|
|
|
if err != nil {
|
2015-04-07 22:35:43 +00:00
|
|
|
|
mountpoint, mntErr := pd.mounter.IsMountPoint(dir)
|
2015-03-06 14:26:39 +00:00
|
|
|
|
if mntErr != nil {
|
|
|
|
|
glog.Errorf("isMountpoint check failed: %v", mntErr)
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
if mountpoint {
|
2015-04-03 01:08:04 +00:00
|
|
|
|
if mntErr = pd.mounter.Unmount(dir); mntErr != nil {
|
2015-03-06 14:26:39 +00:00
|
|
|
|
glog.Errorf("Failed to unmount: %v", mntErr)
|
|
|
|
|
return err
|
|
|
|
|
}
|
2015-04-07 22:35:43 +00:00
|
|
|
|
mountpoint, mntErr := pd.mounter.IsMountPoint(dir)
|
2015-03-06 14:26:39 +00:00
|
|
|
|
if mntErr != nil {
|
|
|
|
|
glog.Errorf("isMountpoint check failed: %v", mntErr)
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
if mountpoint {
|
|
|
|
|
// This is very odd, we don't expect it. We'll try again next sync loop.
|
|
|
|
|
glog.Errorf("%s is still mounted, despite call to unmount(). Will try again next sync loop.", dir)
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
os.Remove(dir)
|
|
|
|
|
// TODO: we should really eject the attach/detach out into its own control loop.
|
|
|
|
|
detachDiskLogError(pd)
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-09 13:34:16 +00:00
|
|
|
|
func makeGlobalPDPath(host volume.VolumeHost, volumeID string) string {
|
2015-04-02 18:56:11 +00:00
|
|
|
|
// Clean up the URI to be more fs-friendly
|
2015-04-09 13:34:16 +00:00
|
|
|
|
name := volumeID
|
2015-04-02 18:56:11 +00:00
|
|
|
|
name = strings.Replace(name, "://", "/", -1)
|
2015-04-07 21:16:36 +00:00
|
|
|
|
return path.Join(host.GetPluginDir(awsElasticBlockStorePluginName), "mounts", name)
|
2015-03-06 14:26:39 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-04-09 13:34:16 +00:00
|
|
|
|
func getVolumeIDFromGlobalMount(host volume.VolumeHost, globalPath string) (string, error) {
|
2015-04-07 21:16:36 +00:00
|
|
|
|
basePath := path.Join(host.GetPluginDir(awsElasticBlockStorePluginName), "mounts")
|
2015-04-03 17:03:37 +00:00
|
|
|
|
rel, err := filepath.Rel(basePath, globalPath)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return "", err
|
|
|
|
|
}
|
|
|
|
|
if strings.Contains(rel, "../") {
|
|
|
|
|
return "", fmt.Errorf("Unexpected mount path: " + globalPath)
|
|
|
|
|
}
|
2015-04-07 20:23:12 +00:00
|
|
|
|
// Reverse the :// replacement done in makeGlobalPDPath
|
2015-04-09 13:34:16 +00:00
|
|
|
|
volumeID := rel
|
|
|
|
|
if strings.HasPrefix(volumeID, "aws/") {
|
|
|
|
|
volumeID = strings.Replace(volumeID, "aws/", "aws://", 1)
|
2015-04-03 17:03:37 +00:00
|
|
|
|
}
|
2015-04-09 13:34:16 +00:00
|
|
|
|
glog.V(2).Info("Mapping mount dir ", globalPath, " to volumeID ", volumeID)
|
|
|
|
|
return volumeID, nil
|
2015-04-03 17:03:37 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-04-07 21:16:36 +00:00
|
|
|
|
func (pd *awsElasticBlockStore) GetPath() string {
|
|
|
|
|
name := awsElasticBlockStorePluginName
|
2015-03-06 14:26:39 +00:00
|
|
|
|
return pd.plugin.host.GetPodVolumeDir(pd.podUID, util.EscapeQualifiedNameForDisk(name), pd.volName)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Unmounts the bind mount, and detaches the disk only if the PD
|
|
|
|
|
// resource was the last reference to that disk on the kubelet.
|
2015-04-07 21:16:36 +00:00
|
|
|
|
func (pd *awsElasticBlockStore) TearDown() error {
|
2015-03-06 14:26:39 +00:00
|
|
|
|
return pd.TearDownAt(pd.GetPath())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Unmounts the bind mount, and detaches the disk only if the PD
|
|
|
|
|
// resource was the last reference to that disk on the kubelet.
|
2015-04-07 21:16:36 +00:00
|
|
|
|
func (pd *awsElasticBlockStore) TearDownAt(dir string) error {
|
2015-04-07 22:35:43 +00:00
|
|
|
|
mountpoint, err := pd.mounter.IsMountPoint(dir)
|
2015-03-06 14:26:39 +00:00
|
|
|
|
if err != nil {
|
2015-04-03 16:34:23 +00:00
|
|
|
|
glog.V(2).Info("Error checking if mountpoint ", dir, ": ", err)
|
2015-03-06 14:26:39 +00:00
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
if !mountpoint {
|
2015-04-03 16:34:23 +00:00
|
|
|
|
glog.V(2).Info("Not mountpoint, deleting")
|
2015-03-06 14:26:39 +00:00
|
|
|
|
return os.Remove(dir)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
refs, err := mount.GetMountRefs(pd.mounter, dir)
|
|
|
|
|
if err != nil {
|
2015-04-03 16:34:23 +00:00
|
|
|
|
glog.V(2).Info("Error getting mountrefs for ", dir, ": ", err)
|
2015-03-06 14:26:39 +00:00
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
// Unmount the bind-mount inside this pod
|
2015-04-03 01:08:04 +00:00
|
|
|
|
if err := pd.mounter.Unmount(dir); err != nil {
|
2015-04-03 16:34:23 +00:00
|
|
|
|
glog.V(2).Info("Error unmounting dir ", dir, ": ", err)
|
2015-03-06 14:26:39 +00:00
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
// If len(refs) is 1, then all bind mounts have been removed, and the
|
|
|
|
|
// remaining reference is the global mount. It is safe to detach.
|
|
|
|
|
if len(refs) == 1 {
|
2015-04-09 13:34:16 +00:00
|
|
|
|
// pd.volumeID is not initially set for volume-cleaners, so set it here.
|
|
|
|
|
pd.volumeID, err = getVolumeIDFromGlobalMount(pd.plugin.host, refs[0])
|
2015-04-03 17:03:37 +00:00
|
|
|
|
if err != nil {
|
2015-04-09 13:34:16 +00:00
|
|
|
|
glog.V(2).Info("Could not determine volumeID from mountpoint ", refs[0], ": ", err)
|
2015-04-03 17:03:37 +00:00
|
|
|
|
return err
|
|
|
|
|
}
|
2015-03-06 14:26:39 +00:00
|
|
|
|
if err := pd.manager.DetachDisk(pd); err != nil {
|
2015-04-09 13:34:16 +00:00
|
|
|
|
glog.V(2).Info("Error detaching disk ", pd.volumeID, ": ", err)
|
2015-03-06 14:26:39 +00:00
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
}
|
2015-04-07 22:35:43 +00:00
|
|
|
|
mountpoint, mntErr := pd.mounter.IsMountPoint(dir)
|
2015-03-06 14:26:39 +00:00
|
|
|
|
if mntErr != nil {
|
|
|
|
|
glog.Errorf("isMountpoint check failed: %v", mntErr)
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
if !mountpoint {
|
|
|
|
|
if err := os.Remove(dir); err != nil {
|
2015-04-03 16:34:23 +00:00
|
|
|
|
glog.V(2).Info("Error removing mountpoint ", dir, ": ", err)
|
2015-03-06 14:26:39 +00:00
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return nil
|
|
|
|
|
}
|