2016-07-27 18:07:34 +00:00
|
|
|
/*
|
|
|
|
Copyright 2016 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 azure_dd
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"os"
|
|
|
|
"path"
|
|
|
|
|
|
|
|
"github.com/Azure/azure-sdk-for-go/arm/compute"
|
|
|
|
|
|
|
|
"github.com/golang/glog"
|
|
|
|
|
2017-01-11 14:09:48 +00:00
|
|
|
"k8s.io/apimachinery/pkg/types"
|
2017-06-22 17:25:57 +00:00
|
|
|
"k8s.io/api/core/v1"
|
2016-07-27 18:07:34 +00:00
|
|
|
"k8s.io/kubernetes/pkg/cloudprovider"
|
|
|
|
"k8s.io/kubernetes/pkg/cloudprovider/providers/azure"
|
|
|
|
"k8s.io/kubernetes/pkg/util/exec"
|
|
|
|
"k8s.io/kubernetes/pkg/util/keymutex"
|
|
|
|
"k8s.io/kubernetes/pkg/util/mount"
|
|
|
|
utilstrings "k8s.io/kubernetes/pkg/util/strings"
|
|
|
|
"k8s.io/kubernetes/pkg/volume"
|
2017-01-11 22:27:22 +00:00
|
|
|
"k8s.io/kubernetes/pkg/volume/util"
|
2016-07-27 18:07:34 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// This is the primary entrypoint for volume plugins.
|
|
|
|
func ProbeVolumePlugins() []volume.VolumePlugin {
|
|
|
|
return []volume.VolumePlugin{&azureDataDiskPlugin{}}
|
|
|
|
}
|
|
|
|
|
|
|
|
type azureDataDiskPlugin struct {
|
|
|
|
host volume.VolumeHost
|
|
|
|
volumeLocks keymutex.KeyMutex
|
|
|
|
}
|
|
|
|
|
|
|
|
// Abstract interface to disk operations.
|
|
|
|
// azure cloud provider should implement it
|
|
|
|
type azureCloudProvider interface {
|
|
|
|
// Attaches the disk to the host machine.
|
2016-07-16 06:10:29 +00:00
|
|
|
AttachDisk(diskName, diskUri string, nodeName types.NodeName, lun int32, cachingMode compute.CachingTypes) error
|
2016-07-27 18:07:34 +00:00
|
|
|
// Detaches the disk, identified by disk name or uri, from the host machine.
|
2016-07-16 06:10:29 +00:00
|
|
|
DetachDiskByName(diskName, diskUri string, nodeName types.NodeName) error
|
2016-10-14 21:21:58 +00:00
|
|
|
// Check if a list of volumes are attached to the node with the specified NodeName
|
|
|
|
DisksAreAttached(diskNames []string, nodeName types.NodeName) (map[string]bool, error)
|
2016-07-27 18:07:34 +00:00
|
|
|
// Get the LUN number of the disk that is attached to the host
|
2016-07-16 06:10:29 +00:00
|
|
|
GetDiskLun(diskName, diskUri string, nodeName types.NodeName) (int32, error)
|
2016-07-27 18:07:34 +00:00
|
|
|
// Get the next available LUN number to attach a new VHD
|
2016-07-16 06:10:29 +00:00
|
|
|
GetNextDiskLun(nodeName types.NodeName) (int32, error)
|
2016-07-27 18:07:34 +00:00
|
|
|
// InstanceID returns the cloud provider ID of the specified instance.
|
2016-07-16 06:10:29 +00:00
|
|
|
InstanceID(nodeName types.NodeName) (string, error)
|
2016-10-17 14:50:00 +00:00
|
|
|
// Create a VHD blob
|
|
|
|
CreateVolume(name, storageAccount, storageType, location string, requestGB int) (string, string, int, error)
|
|
|
|
// Delete a VHD blob
|
|
|
|
DeleteVolume(name, uri string) error
|
2016-07-27 18:07:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var _ volume.VolumePlugin = &azureDataDiskPlugin{}
|
|
|
|
var _ volume.PersistentVolumePlugin = &azureDataDiskPlugin{}
|
|
|
|
|
|
|
|
const (
|
|
|
|
azureDataDiskPluginName = "kubernetes.io/azure-disk"
|
|
|
|
)
|
|
|
|
|
|
|
|
func (plugin *azureDataDiskPlugin) Init(host volume.VolumeHost) error {
|
|
|
|
plugin.host = host
|
|
|
|
plugin.volumeLocks = keymutex.NewKeyMutex()
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (plugin *azureDataDiskPlugin) GetPluginName() string {
|
|
|
|
return azureDataDiskPluginName
|
|
|
|
}
|
|
|
|
|
|
|
|
func (plugin *azureDataDiskPlugin) GetVolumeName(spec *volume.Spec) (string, error) {
|
|
|
|
volumeSource, err := getVolumeSource(spec)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
return volumeSource.DiskName, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (plugin *azureDataDiskPlugin) CanSupport(spec *volume.Spec) bool {
|
|
|
|
return (spec.PersistentVolume != nil && spec.PersistentVolume.Spec.AzureDisk != nil) ||
|
|
|
|
(spec.Volume != nil && spec.Volume.AzureDisk != nil)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (plugin *azureDataDiskPlugin) RequiresRemount() bool {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2017-02-21 18:19:48 +00:00
|
|
|
func (plugin *azureDataDiskPlugin) SupportsMountOption() bool {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2017-02-13 04:40:30 +00:00
|
|
|
func (plugin *azureDataDiskPlugin) SupportsBulkVolumeVerification() bool {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2016-11-18 20:58:56 +00:00
|
|
|
func (plugin *azureDataDiskPlugin) GetAccessModes() []v1.PersistentVolumeAccessMode {
|
|
|
|
return []v1.PersistentVolumeAccessMode{
|
|
|
|
v1.ReadWriteOnce,
|
2016-07-27 18:07:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-18 20:58:56 +00:00
|
|
|
func (plugin *azureDataDiskPlugin) NewMounter(spec *volume.Spec, pod *v1.Pod, _ volume.VolumeOptions) (volume.Mounter, error) {
|
2016-07-27 18:07:34 +00:00
|
|
|
return plugin.newMounterInternal(spec, pod.UID, plugin.host.GetMounter())
|
|
|
|
}
|
|
|
|
|
|
|
|
func (plugin *azureDataDiskPlugin) newMounterInternal(spec *volume.Spec, podUID types.UID, mounter mount.Interface) (volume.Mounter, error) {
|
|
|
|
// azures used directly in a pod have a ReadOnly flag set by the pod author.
|
|
|
|
// azures used as a PersistentVolume gets the ReadOnly flag indirectly through the persistent-claim volume used to mount the PV
|
|
|
|
azure, err := getVolumeSource(spec)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2016-10-17 14:50:00 +00:00
|
|
|
fsType := "ext4"
|
|
|
|
if azure.FSType != nil {
|
|
|
|
fsType = *azure.FSType
|
|
|
|
}
|
2016-11-18 20:58:56 +00:00
|
|
|
cachingMode := v1.AzureDataDiskCachingNone
|
2016-10-17 14:50:00 +00:00
|
|
|
if azure.CachingMode != nil {
|
|
|
|
cachingMode = *azure.CachingMode
|
|
|
|
}
|
|
|
|
readOnly := false
|
|
|
|
if azure.ReadOnly != nil {
|
|
|
|
readOnly = *azure.ReadOnly
|
|
|
|
}
|
2016-07-27 18:07:34 +00:00
|
|
|
diskName := azure.DiskName
|
|
|
|
diskUri := azure.DataDiskURI
|
|
|
|
return &azureDiskMounter{
|
|
|
|
azureDisk: &azureDisk{
|
|
|
|
podUID: podUID,
|
|
|
|
volName: spec.Name(),
|
|
|
|
diskName: diskName,
|
|
|
|
diskUri: diskUri,
|
|
|
|
cachingMode: cachingMode,
|
|
|
|
mounter: mounter,
|
|
|
|
plugin: plugin,
|
|
|
|
},
|
|
|
|
fsType: fsType,
|
2016-10-17 14:50:00 +00:00
|
|
|
readOnly: readOnly,
|
2016-07-27 18:07:34 +00:00
|
|
|
diskMounter: &mount.SafeFormatAndMount{Interface: plugin.host.GetMounter(), Runner: exec.New()}}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (plugin *azureDataDiskPlugin) NewUnmounter(volName string, podUID types.UID) (volume.Unmounter, error) {
|
|
|
|
return plugin.newUnmounterInternal(volName, podUID, plugin.host.GetMounter())
|
|
|
|
}
|
|
|
|
|
|
|
|
func (plugin *azureDataDiskPlugin) newUnmounterInternal(volName string, podUID types.UID, mounter mount.Interface) (volume.Unmounter, error) {
|
|
|
|
return &azureDiskUnmounter{
|
|
|
|
&azureDisk{
|
|
|
|
podUID: podUID,
|
|
|
|
volName: volName,
|
|
|
|
mounter: mounter,
|
|
|
|
plugin: plugin,
|
|
|
|
},
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (plugin *azureDataDiskPlugin) ConstructVolumeSpec(volName, mountPath string) (*volume.Spec, error) {
|
|
|
|
mounter := plugin.host.GetMounter()
|
|
|
|
pluginDir := plugin.host.GetPluginDir(plugin.GetPluginName())
|
|
|
|
sourceName, err := mounter.GetDeviceNameFromMount(mountPath, pluginDir)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2016-11-18 20:58:56 +00:00
|
|
|
azVolume := &v1.Volume{
|
2016-07-27 18:07:34 +00:00
|
|
|
Name: volName,
|
2016-11-18 20:58:56 +00:00
|
|
|
VolumeSource: v1.VolumeSource{
|
|
|
|
AzureDisk: &v1.AzureDiskVolumeSource{
|
2016-07-27 18:07:34 +00:00
|
|
|
DiskName: sourceName,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
return volume.NewSpecFromVolume(azVolume), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (plugin *azureDataDiskPlugin) GetDeviceMountRefs(deviceMountPath string) ([]string, error) {
|
|
|
|
mounter := plugin.host.GetMounter()
|
|
|
|
return mount.GetMountRefs(mounter, deviceMountPath)
|
|
|
|
}
|
|
|
|
|
|
|
|
type azureDisk struct {
|
|
|
|
volName string
|
|
|
|
podUID types.UID
|
|
|
|
diskName string
|
|
|
|
diskUri string
|
2016-11-18 20:58:56 +00:00
|
|
|
cachingMode v1.AzureDataDiskCachingMode
|
2016-07-27 18:07:34 +00:00
|
|
|
mounter mount.Interface
|
|
|
|
plugin *azureDataDiskPlugin
|
|
|
|
volume.MetricsNil
|
|
|
|
}
|
|
|
|
|
|
|
|
type azureDiskMounter struct {
|
|
|
|
*azureDisk
|
|
|
|
// Filesystem type, optional.
|
|
|
|
fsType string
|
|
|
|
// Specifies whether the disk will be attached as read-only.
|
|
|
|
readOnly bool
|
|
|
|
// diskMounter provides the interface that is used to mount the actual block device.
|
|
|
|
diskMounter *mount.SafeFormatAndMount
|
|
|
|
}
|
|
|
|
|
|
|
|
var _ volume.Mounter = &azureDiskMounter{}
|
|
|
|
|
|
|
|
func (b *azureDiskMounter) GetAttributes() volume.Attributes {
|
|
|
|
return volume.Attributes{
|
|
|
|
ReadOnly: b.readOnly,
|
|
|
|
Managed: !b.readOnly,
|
|
|
|
SupportsSELinux: true,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-03 19:15:52 +00:00
|
|
|
// Checks prior to mount operations to verify that the required components (binaries, etc.)
|
|
|
|
// to mount the volume are available on the underlying node.
|
|
|
|
// If not, it returns an error
|
|
|
|
func (b *azureDiskMounter) CanMount() error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-07-27 18:07:34 +00:00
|
|
|
// SetUp attaches the disk and bind mounts to the volume path.
|
2017-06-21 07:13:36 +00:00
|
|
|
func (b *azureDiskMounter) SetUp(fsGroup *int64) error {
|
2016-07-27 18:07:34 +00:00
|
|
|
return b.SetUpAt(b.GetPath(), fsGroup)
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetUpAt attaches the disk and bind mounts to the volume path.
|
2017-06-21 07:13:36 +00:00
|
|
|
func (b *azureDiskMounter) SetUpAt(dir string, fsGroup *int64) error {
|
2016-07-27 18:07:34 +00:00
|
|
|
b.plugin.volumeLocks.LockKey(b.diskName)
|
|
|
|
defer b.plugin.volumeLocks.UnlockKey(b.diskName)
|
|
|
|
|
|
|
|
// TODO: handle failed mounts here.
|
|
|
|
notMnt, err := b.mounter.IsLikelyNotMountPoint(dir)
|
|
|
|
glog.V(4).Infof("DataDisk set up: %s %v %v", dir, !notMnt, err)
|
|
|
|
if err != nil && !os.IsNotExist(err) {
|
|
|
|
glog.Errorf("IsLikelyNotMountPoint failed: %v", err)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if !notMnt {
|
|
|
|
glog.V(4).Infof("%s is a mount point", dir)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
globalPDPath := makeGlobalPDPath(b.plugin.host, b.diskName)
|
|
|
|
|
|
|
|
if err := os.MkdirAll(dir, 0750); err != nil {
|
|
|
|
glog.V(4).Infof("Could not create directory %s: %v", dir, err)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Perform a bind mount to the full path to allow duplicate mounts of the same PD.
|
|
|
|
options := []string{"bind"}
|
|
|
|
if b.readOnly {
|
|
|
|
options = append(options, "ro")
|
|
|
|
}
|
|
|
|
err = b.mounter.Mount(globalPDPath, dir, "", options)
|
|
|
|
if err != nil {
|
|
|
|
notMnt, mntErr := b.mounter.IsLikelyNotMountPoint(dir)
|
|
|
|
if mntErr != nil {
|
|
|
|
glog.Errorf("IsLikelyNotMountPoint check failed: %v", mntErr)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if !notMnt {
|
|
|
|
if mntErr = b.mounter.Unmount(dir); mntErr != nil {
|
|
|
|
glog.Errorf("Failed to unmount: %v", mntErr)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
notMnt, mntErr := b.mounter.IsLikelyNotMountPoint(dir)
|
|
|
|
if mntErr != nil {
|
|
|
|
glog.Errorf("IsLikelyNotMountPoint check failed: %v", mntErr)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if !notMnt {
|
|
|
|
// 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)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if !b.readOnly {
|
|
|
|
volume.SetVolumeOwnership(b, fsGroup)
|
|
|
|
}
|
|
|
|
glog.V(3).Infof("Azure disk volume %s mounted to %s", b.diskName, dir)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func makeGlobalPDPath(host volume.VolumeHost, volume string) string {
|
2016-11-15 19:54:50 +00:00
|
|
|
return path.Join(host.GetPluginDir(azureDataDiskPluginName), mount.MountsInGlobalPDPath, volume)
|
2016-07-27 18:07:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (azure *azureDisk) GetPath() string {
|
|
|
|
name := azureDataDiskPluginName
|
|
|
|
return azure.plugin.host.GetPodVolumeDir(azure.podUID, utilstrings.EscapeQualifiedNameForDisk(name), azure.volName)
|
|
|
|
}
|
|
|
|
|
|
|
|
type azureDiskUnmounter struct {
|
|
|
|
*azureDisk
|
|
|
|
}
|
|
|
|
|
|
|
|
var _ volume.Unmounter = &azureDiskUnmounter{}
|
|
|
|
|
|
|
|
// Unmounts the bind mount, and detaches the disk only if the PD
|
|
|
|
// resource was the last reference to that disk on the kubelet.
|
|
|
|
func (c *azureDiskUnmounter) TearDown() error {
|
|
|
|
return c.TearDownAt(c.GetPath())
|
|
|
|
}
|
|
|
|
|
|
|
|
// Unmounts the bind mount, and detaches the disk only if the PD
|
|
|
|
// resource was the last reference to that disk on the kubelet.
|
|
|
|
func (c *azureDiskUnmounter) TearDownAt(dir string) error {
|
2017-01-11 22:27:22 +00:00
|
|
|
if pathExists, pathErr := util.PathExists(dir); pathErr != nil {
|
|
|
|
return fmt.Errorf("Error checking if path exists: %v", pathErr)
|
|
|
|
} else if !pathExists {
|
|
|
|
glog.Warningf("Warning: Unmount skipped because path does not exist: %v", dir)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-07-27 18:07:34 +00:00
|
|
|
notMnt, err := c.mounter.IsLikelyNotMountPoint(dir)
|
|
|
|
if err != nil {
|
|
|
|
glog.Errorf("Error checking if mountpoint %s: %v", dir, err)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if notMnt {
|
|
|
|
glog.V(2).Info("Not mountpoint, deleting")
|
|
|
|
return os.Remove(dir)
|
|
|
|
}
|
|
|
|
// lock the volume (and thus wait for any concurrrent SetUpAt to finish)
|
|
|
|
c.plugin.volumeLocks.LockKey(c.diskName)
|
|
|
|
defer c.plugin.volumeLocks.UnlockKey(c.diskName)
|
|
|
|
refs, err := mount.GetMountRefs(c.mounter, dir)
|
|
|
|
if err != nil {
|
|
|
|
glog.Errorf("Error getting mountrefs for %s: %v", dir, err)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if len(refs) == 0 {
|
|
|
|
glog.Errorf("Did not find pod-mount for %s during tear down", dir)
|
|
|
|
return fmt.Errorf("%s is not mounted", dir)
|
|
|
|
}
|
|
|
|
c.diskName = path.Base(refs[0])
|
|
|
|
glog.V(4).Infof("Found volume %s mounted to %s", c.diskName, dir)
|
|
|
|
|
|
|
|
// Unmount the bind-mount inside this pod
|
|
|
|
if err := c.mounter.Unmount(dir); err != nil {
|
|
|
|
glog.Errorf("Error unmounting dir %s %v", dir, err)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
notMnt, mntErr := c.mounter.IsLikelyNotMountPoint(dir)
|
|
|
|
if mntErr != nil {
|
|
|
|
glog.Errorf("IsLikelyNotMountPoint check failed: %v", mntErr)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if notMnt {
|
|
|
|
if err := os.Remove(dir); err != nil {
|
|
|
|
glog.Errorf("Error removing mountpoint %s %v", dir, err)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-11-18 20:58:56 +00:00
|
|
|
func getVolumeSource(spec *volume.Spec) (*v1.AzureDiskVolumeSource, error) {
|
2016-07-27 18:07:34 +00:00
|
|
|
if spec.Volume != nil && spec.Volume.AzureDisk != nil {
|
|
|
|
return spec.Volume.AzureDisk, nil
|
|
|
|
}
|
|
|
|
if spec.PersistentVolume != nil && spec.PersistentVolume.Spec.AzureDisk != nil {
|
|
|
|
return spec.PersistentVolume.Spec.AzureDisk, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil, fmt.Errorf("Spec does not reference an Azure disk volume type")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Return cloud provider
|
|
|
|
func getAzureCloudProvider(cloudProvider cloudprovider.Interface) (azureCloudProvider, error) {
|
|
|
|
azureCloudProvider, ok := cloudProvider.(*azure.Cloud)
|
|
|
|
if !ok || azureCloudProvider == nil {
|
|
|
|
return nil, fmt.Errorf("Failed to get Azure Cloud Provider. GetCloudProvider returned %v instead", cloudProvider)
|
|
|
|
}
|
|
|
|
|
|
|
|
return azureCloudProvider, nil
|
|
|
|
}
|