2015-02-10 19:00:11 +00:00
|
|
|
/*
|
2015-05-01 16:19:44 +00:00
|
|
|
Copyright 2014 The Kubernetes Authors All rights reserved.
|
2015-02-10 19:00:11 +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 nfs
|
|
|
|
|
|
|
|
import (
|
2015-04-03 01:08:04 +00:00
|
|
|
"fmt"
|
2015-02-10 19:00:11 +00:00
|
|
|
"os"
|
2015-10-21 15:43:46 +00:00
|
|
|
"runtime"
|
2015-02-10 19:00:11 +00:00
|
|
|
|
2015-08-05 22:03:47 +00:00
|
|
|
"k8s.io/kubernetes/pkg/api"
|
|
|
|
"k8s.io/kubernetes/pkg/types"
|
|
|
|
"k8s.io/kubernetes/pkg/util"
|
2015-10-21 15:43:46 +00:00
|
|
|
"k8s.io/kubernetes/pkg/util/exec"
|
2015-08-05 22:03:47 +00:00
|
|
|
"k8s.io/kubernetes/pkg/util/mount"
|
|
|
|
"k8s.io/kubernetes/pkg/volume"
|
2015-05-29 20:34:02 +00:00
|
|
|
|
2015-02-10 19:00:11 +00:00
|
|
|
"github.com/golang/glog"
|
|
|
|
)
|
|
|
|
|
|
|
|
// This is the primary entrypoint for volume plugins.
|
2015-09-03 03:14:26 +00:00
|
|
|
// The volumeConfig arg provides the ability to configure recycler behavior. It is implemented as a pointer to allow nils.
|
|
|
|
// The nfsPlugin is used to store the volumeConfig and give it, when needed, to the func that creates NFS Recyclers.
|
|
|
|
// Tests that exercise recycling should not use this func but instead use ProbeRecyclablePlugins() to override default behavior.
|
|
|
|
func ProbeVolumePlugins(volumeConfig volume.VolumeConfig) []volume.VolumePlugin {
|
|
|
|
return []volume.VolumePlugin{
|
|
|
|
&nfsPlugin{
|
|
|
|
host: nil,
|
|
|
|
newRecyclerFunc: newRecycler,
|
|
|
|
config: volumeConfig,
|
|
|
|
},
|
|
|
|
}
|
2015-02-10 19:00:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type nfsPlugin struct {
|
2015-05-11 16:23:46 +00:00
|
|
|
host volume.VolumeHost
|
2015-05-29 20:34:02 +00:00
|
|
|
// decouple creating recyclers by deferring to a function. Allows for easier testing.
|
2015-09-03 03:14:26 +00:00
|
|
|
newRecyclerFunc func(spec *volume.Spec, host volume.VolumeHost, volumeConfig volume.VolumeConfig) (volume.Recycler, error)
|
|
|
|
config volume.VolumeConfig
|
2015-02-10 19:00:11 +00:00
|
|
|
}
|
|
|
|
|
2015-03-19 05:18:31 +00:00
|
|
|
var _ volume.VolumePlugin = &nfsPlugin{}
|
2015-05-29 20:34:02 +00:00
|
|
|
var _ volume.PersistentVolumePlugin = &nfsPlugin{}
|
|
|
|
var _ volume.RecyclableVolumePlugin = &nfsPlugin{}
|
2015-02-10 19:00:11 +00:00
|
|
|
|
|
|
|
const (
|
|
|
|
nfsPluginName = "kubernetes.io/nfs"
|
|
|
|
)
|
|
|
|
|
2015-03-19 05:18:31 +00:00
|
|
|
func (plugin *nfsPlugin) Init(host volume.VolumeHost) {
|
2015-02-10 19:00:11 +00:00
|
|
|
plugin.host = host
|
|
|
|
}
|
|
|
|
|
|
|
|
func (plugin *nfsPlugin) Name() string {
|
|
|
|
return nfsPluginName
|
|
|
|
}
|
|
|
|
|
2015-10-21 15:43:46 +00:00
|
|
|
func hasNFSMount() bool {
|
|
|
|
exe := exec.New()
|
|
|
|
switch runtime.GOOS {
|
|
|
|
case "linux":
|
|
|
|
cmd1 := exe.Command("/bin/ls", "/sbin/mount.nfs")
|
|
|
|
_, err1 := cmd1.CombinedOutput()
|
|
|
|
cmd2 := exe.Command("/bin/ls", "/sbin/mount.nfs4")
|
|
|
|
_, err2 := cmd2.CombinedOutput()
|
|
|
|
return (err1 == nil || err2 == nil)
|
|
|
|
case "darwin":
|
|
|
|
cmd := exe.Command("/bin/ls", "/sbin/mount_nfs")
|
|
|
|
_, err := cmd.CombinedOutput()
|
|
|
|
return err == nil
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2015-04-14 16:29:33 +00:00
|
|
|
func (plugin *nfsPlugin) CanSupport(spec *volume.Spec) bool {
|
2015-10-21 15:43:46 +00:00
|
|
|
if (spec.Volume != nil && spec.Volume.NFS == nil) || (spec.PersistentVolume != nil && spec.PersistentVolume.Spec.NFS == nil) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
// see if /sbin/mount.nfs* is there
|
|
|
|
return hasNFSMount()
|
2015-02-10 19:00:11 +00:00
|
|
|
}
|
|
|
|
|
2015-05-18 20:22:30 +00:00
|
|
|
func (plugin *nfsPlugin) GetAccessModes() []api.PersistentVolumeAccessMode {
|
|
|
|
return []api.PersistentVolumeAccessMode{
|
2015-03-12 19:37:02 +00:00
|
|
|
api.ReadWriteOnce,
|
|
|
|
api.ReadOnlyMany,
|
|
|
|
api.ReadWriteMany,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-14 09:51:40 +00:00
|
|
|
func (plugin *nfsPlugin) NewBuilder(spec *volume.Spec, pod *api.Pod, _ volume.VolumeOptions) (volume.Builder, error) {
|
|
|
|
return plugin.newBuilderInternal(spec, pod, plugin.host.GetMounter())
|
2015-02-10 19:00:11 +00:00
|
|
|
}
|
|
|
|
|
2015-05-11 00:12:57 +00:00
|
|
|
func (plugin *nfsPlugin) newBuilderInternal(spec *volume.Spec, pod *api.Pod, mounter mount.Interface) (volume.Builder, error) {
|
2015-06-01 14:34:40 +00:00
|
|
|
var source *api.NFSVolumeSource
|
2015-07-01 14:50:39 +00:00
|
|
|
var readOnly bool
|
2015-08-12 19:11:03 +00:00
|
|
|
if spec.Volume != nil && spec.Volume.NFS != nil {
|
|
|
|
source = spec.Volume.NFS
|
|
|
|
readOnly = spec.Volume.NFS.ReadOnly
|
2015-06-01 14:34:40 +00:00
|
|
|
} else {
|
2015-08-12 19:11:03 +00:00
|
|
|
source = spec.PersistentVolume.Spec.NFS
|
2015-07-01 14:50:39 +00:00
|
|
|
readOnly = spec.ReadOnly
|
2015-06-01 14:34:40 +00:00
|
|
|
}
|
2015-07-20 06:00:07 +00:00
|
|
|
return &nfsBuilder{
|
|
|
|
nfs: &nfs{
|
2015-08-12 19:11:03 +00:00
|
|
|
volName: spec.Name(),
|
2015-07-20 06:00:07 +00:00
|
|
|
mounter: mounter,
|
|
|
|
pod: pod,
|
|
|
|
plugin: plugin,
|
|
|
|
},
|
2015-06-01 14:34:40 +00:00
|
|
|
server: source.Server,
|
|
|
|
exportPath: source.Path,
|
2015-07-01 14:50:39 +00:00
|
|
|
readOnly: readOnly,
|
|
|
|
}, nil
|
2015-02-10 19:00:11 +00:00
|
|
|
}
|
|
|
|
|
2015-09-14 09:51:40 +00:00
|
|
|
func (plugin *nfsPlugin) NewCleaner(volName string, podUID types.UID) (volume.Cleaner, error) {
|
|
|
|
return plugin.newCleanerInternal(volName, podUID, plugin.host.GetMounter())
|
2015-02-10 19:00:11 +00:00
|
|
|
}
|
|
|
|
|
2015-04-03 01:08:04 +00:00
|
|
|
func (plugin *nfsPlugin) newCleanerInternal(volName string, podUID types.UID, mounter mount.Interface) (volume.Cleaner, error) {
|
2015-07-20 06:00:07 +00:00
|
|
|
return &nfsCleaner{&nfs{
|
|
|
|
volName: volName,
|
|
|
|
mounter: mounter,
|
|
|
|
pod: &api.Pod{ObjectMeta: api.ObjectMeta{UID: podUID}},
|
|
|
|
plugin: plugin,
|
|
|
|
}}, nil
|
2015-02-10 19:00:11 +00:00
|
|
|
}
|
|
|
|
|
2015-05-29 20:34:02 +00:00
|
|
|
func (plugin *nfsPlugin) NewRecycler(spec *volume.Spec) (volume.Recycler, error) {
|
2015-09-03 03:14:26 +00:00
|
|
|
return plugin.newRecyclerFunc(spec, plugin.host, plugin.config)
|
2015-05-29 20:34:02 +00:00
|
|
|
}
|
|
|
|
|
2015-02-10 19:00:11 +00:00
|
|
|
// NFS volumes represent a bare host file or directory mount of an NFS export.
|
|
|
|
type nfs struct {
|
2015-07-20 06:00:07 +00:00
|
|
|
volName string
|
|
|
|
pod *api.Pod
|
|
|
|
mounter mount.Interface
|
|
|
|
plugin *nfsPlugin
|
|
|
|
// decouple creating recyclers by deferring to a function. Allows for easier testing.
|
2015-09-03 03:14:26 +00:00
|
|
|
newRecyclerFunc func(spec *volume.Spec, host volume.VolumeHost, volumeConfig volume.VolumeConfig) (volume.Recycler, error)
|
2015-07-20 06:00:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (nfsVolume *nfs) GetPath() string {
|
|
|
|
name := nfsPluginName
|
|
|
|
return nfsVolume.plugin.host.GetPodVolumeDir(nfsVolume.pod.UID, util.EscapeQualifiedNameForDisk(name), nfsVolume.volName)
|
|
|
|
}
|
|
|
|
|
|
|
|
type nfsBuilder struct {
|
|
|
|
*nfs
|
2015-02-10 19:00:11 +00:00
|
|
|
server string
|
|
|
|
exportPath string
|
|
|
|
readOnly bool
|
|
|
|
}
|
|
|
|
|
2015-07-20 06:00:07 +00:00
|
|
|
var _ volume.Builder = &nfsBuilder{}
|
|
|
|
|
2015-10-20 18:49:39 +00:00
|
|
|
func (_ *nfsBuilder) SupportsOwnershipManagement() bool {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2015-02-10 19:00:11 +00:00
|
|
|
// SetUp attaches the disk and bind mounts to the volume path.
|
2015-07-20 06:00:07 +00:00
|
|
|
func (b *nfsBuilder) SetUp() error {
|
|
|
|
return b.SetUpAt(b.GetPath())
|
2015-02-10 19:00:11 +00:00
|
|
|
}
|
|
|
|
|
2015-07-20 06:00:07 +00:00
|
|
|
func (b *nfsBuilder) SetUpAt(dir string) error {
|
2015-04-16 23:49:53 +00:00
|
|
|
notMnt, err := b.mounter.IsLikelyNotMountPoint(dir)
|
|
|
|
glog.V(4).Infof("NFS mount set up: %s %v %v", dir, !notMnt, err)
|
2015-02-10 19:00:11 +00:00
|
|
|
if err != nil && !os.IsNotExist(err) {
|
|
|
|
return err
|
|
|
|
}
|
2015-04-16 23:49:53 +00:00
|
|
|
if !notMnt {
|
2015-02-10 19:00:11 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
os.MkdirAll(dir, 0750)
|
2015-07-20 06:00:07 +00:00
|
|
|
source := fmt.Sprintf("%s:%s", b.server, b.exportPath)
|
2015-04-03 01:08:04 +00:00
|
|
|
options := []string{}
|
2015-07-20 06:00:07 +00:00
|
|
|
if b.readOnly {
|
2015-04-03 01:08:04 +00:00
|
|
|
options = append(options, "ro")
|
|
|
|
}
|
2015-07-20 06:00:07 +00:00
|
|
|
err = b.mounter.Mount(source, dir, "nfs", options)
|
2015-02-10 19:00:11 +00:00
|
|
|
if err != nil {
|
2015-04-16 23:49:53 +00:00
|
|
|
notMnt, mntErr := b.mounter.IsLikelyNotMountPoint(dir)
|
2015-02-10 19:00:11 +00:00
|
|
|
if mntErr != nil {
|
2015-04-16 23:49:53 +00:00
|
|
|
glog.Errorf("IsLikelyNotMountPoint check failed: %v", mntErr)
|
2015-02-10 19:00:11 +00:00
|
|
|
return err
|
|
|
|
}
|
2015-04-16 23:49:53 +00:00
|
|
|
if !notMnt {
|
2015-07-20 06:00:07 +00:00
|
|
|
if mntErr = b.mounter.Unmount(dir); mntErr != nil {
|
2015-02-10 19:00:11 +00:00
|
|
|
glog.Errorf("Failed to unmount: %v", mntErr)
|
|
|
|
return err
|
|
|
|
}
|
2015-04-16 23:49:53 +00:00
|
|
|
notMnt, mntErr := b.mounter.IsLikelyNotMountPoint(dir)
|
2015-02-10 19:00:11 +00:00
|
|
|
if mntErr != nil {
|
2015-04-16 23:49:53 +00:00
|
|
|
glog.Errorf("IsLikelyNotMountPoint check failed: %v", mntErr)
|
2015-02-10 19:00:11 +00:00
|
|
|
return err
|
|
|
|
}
|
2015-04-16 23:49:53 +00:00
|
|
|
if !notMnt {
|
2015-02-10 19:00:11 +00:00
|
|
|
// 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
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-07-24 19:04:03 +00:00
|
|
|
func (b *nfsBuilder) IsReadOnly() bool {
|
|
|
|
return b.readOnly
|
2015-02-10 19:00:11 +00:00
|
|
|
}
|
|
|
|
|
2015-10-07 19:19:06 +00:00
|
|
|
func (b *nfsBuilder) SupportsSELinux() bool {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2015-07-24 19:04:03 +00:00
|
|
|
//
|
|
|
|
//func (c *nfsCleaner) GetPath() string {
|
|
|
|
// name := nfsPluginName
|
|
|
|
// return c.plugin.host.GetPodVolumeDir(c.pod.UID, util.EscapeQualifiedNameForDisk(name), c.volName)
|
|
|
|
//}
|
2015-06-29 16:54:43 +00:00
|
|
|
|
2015-07-20 06:00:07 +00:00
|
|
|
var _ volume.Cleaner = &nfsCleaner{}
|
|
|
|
|
2015-07-24 19:04:03 +00:00
|
|
|
type nfsCleaner struct {
|
|
|
|
*nfs
|
|
|
|
}
|
2015-07-20 06:00:07 +00:00
|
|
|
|
|
|
|
func (c *nfsCleaner) TearDown() error {
|
|
|
|
return c.TearDownAt(c.GetPath())
|
2015-02-10 19:00:11 +00:00
|
|
|
}
|
|
|
|
|
2015-07-20 06:00:07 +00:00
|
|
|
func (c *nfsCleaner) TearDownAt(dir string) error {
|
2015-04-16 23:49:53 +00:00
|
|
|
notMnt, err := c.mounter.IsLikelyNotMountPoint(dir)
|
2015-02-10 19:00:11 +00:00
|
|
|
if err != nil {
|
2015-04-16 23:49:53 +00:00
|
|
|
glog.Errorf("Error checking IsLikelyNotMountPoint: %v", err)
|
2015-02-10 19:00:11 +00:00
|
|
|
return err
|
|
|
|
}
|
2015-04-16 23:49:53 +00:00
|
|
|
if notMnt {
|
2015-02-10 19:00:11 +00:00
|
|
|
return os.Remove(dir)
|
|
|
|
}
|
|
|
|
|
2015-07-20 06:00:07 +00:00
|
|
|
if err := c.mounter.Unmount(dir); err != nil {
|
2015-02-10 19:00:11 +00:00
|
|
|
glog.Errorf("Unmounting failed: %v", err)
|
|
|
|
return err
|
|
|
|
}
|
2015-04-16 23:49:53 +00:00
|
|
|
notMnt, mntErr := c.mounter.IsLikelyNotMountPoint(dir)
|
2015-02-10 19:00:11 +00:00
|
|
|
if mntErr != nil {
|
2015-04-16 23:49:53 +00:00
|
|
|
glog.Errorf("IsLikelyNotMountPoint check failed: %v", mntErr)
|
2015-02-10 19:00:11 +00:00
|
|
|
return mntErr
|
|
|
|
}
|
2015-04-16 23:49:53 +00:00
|
|
|
if notMnt {
|
2015-02-10 19:00:11 +00:00
|
|
|
if err := os.Remove(dir); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
2015-05-29 20:34:02 +00:00
|
|
|
|
2015-09-03 03:14:26 +00:00
|
|
|
func newRecycler(spec *volume.Spec, host volume.VolumeHost, volumeConfig volume.VolumeConfig) (volume.Recycler, error) {
|
2015-08-12 19:11:03 +00:00
|
|
|
if spec.PersistentVolume == nil || spec.PersistentVolume.Spec.NFS == nil {
|
2015-07-29 18:13:05 +00:00
|
|
|
return nil, fmt.Errorf("spec.PersistentVolumeSource.NFS is nil")
|
2015-07-20 06:00:07 +00:00
|
|
|
}
|
2015-07-29 18:13:05 +00:00
|
|
|
return &nfsRecycler{
|
2015-09-03 03:14:26 +00:00
|
|
|
name: spec.Name(),
|
|
|
|
server: spec.PersistentVolume.Spec.NFS.Server,
|
|
|
|
path: spec.PersistentVolume.Spec.NFS.Path,
|
|
|
|
host: host,
|
|
|
|
config: volumeConfig,
|
|
|
|
timeout: volume.CalculateTimeoutForVolume(volumeConfig.RecyclerMinimumTimeout, volumeConfig.RecyclerTimeoutIncrement, spec.PersistentVolume),
|
2015-07-29 18:13:05 +00:00
|
|
|
}, nil
|
2015-07-20 06:00:07 +00:00
|
|
|
}
|
|
|
|
|
2015-05-29 20:34:02 +00:00
|
|
|
// nfsRecycler scrubs an NFS volume by running "rm -rf" on the volume in a pod.
|
|
|
|
type nfsRecycler struct {
|
2015-09-03 03:14:26 +00:00
|
|
|
name string
|
|
|
|
server string
|
|
|
|
path string
|
|
|
|
host volume.VolumeHost
|
|
|
|
config volume.VolumeConfig
|
|
|
|
timeout int64
|
2015-05-29 20:34:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (r *nfsRecycler) GetPath() string {
|
|
|
|
return r.path
|
|
|
|
}
|
|
|
|
|
2015-09-03 03:14:26 +00:00
|
|
|
// Recycle recycles/scrubs clean an NFS volume.
|
2015-05-29 20:34:02 +00:00
|
|
|
// Recycle blocks until the pod has completed or any error occurs.
|
|
|
|
func (r *nfsRecycler) Recycle() error {
|
2015-09-03 03:14:26 +00:00
|
|
|
pod := r.config.RecyclerPodTemplate
|
|
|
|
// overrides
|
|
|
|
pod.Spec.ActiveDeadlineSeconds = &r.timeout
|
|
|
|
pod.GenerateName = "pv-recycler-nfs-"
|
|
|
|
pod.Spec.Volumes[0].VolumeSource = api.VolumeSource{
|
|
|
|
NFS: &api.NFSVolumeSource{
|
|
|
|
Server: r.server,
|
|
|
|
Path: r.path,
|
2015-05-29 20:34:02 +00:00
|
|
|
},
|
|
|
|
}
|
2015-09-03 03:14:26 +00:00
|
|
|
return volume.RecycleVolumeByWatchingPodUntilCompletion(pod, r.host.GetKubeClient())
|
2015-05-29 20:34:02 +00:00
|
|
|
}
|