2015-04-09 18:05:24 +00:00
|
|
|
/*
|
|
|
|
Copyright 2015 The Kubernetes Authors All rights reserved.
|
|
|
|
|
|
|
|
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 cephfs
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"os"
|
|
|
|
|
|
|
|
"github.com/golang/glog"
|
|
|
|
"k8s.io/kubernetes/pkg/api"
|
|
|
|
"k8s.io/kubernetes/pkg/types"
|
|
|
|
"k8s.io/kubernetes/pkg/util"
|
|
|
|
"k8s.io/kubernetes/pkg/util/mount"
|
|
|
|
"k8s.io/kubernetes/pkg/volume"
|
|
|
|
)
|
|
|
|
|
|
|
|
// This is the primary entrypoint for volume plugins.
|
|
|
|
func ProbeVolumePlugins() []volume.VolumePlugin {
|
|
|
|
return []volume.VolumePlugin{&cephfsPlugin{nil}}
|
|
|
|
}
|
|
|
|
|
|
|
|
type cephfsPlugin struct {
|
|
|
|
host volume.VolumeHost
|
|
|
|
}
|
|
|
|
|
|
|
|
var _ volume.VolumePlugin = &cephfsPlugin{}
|
|
|
|
|
|
|
|
const (
|
|
|
|
cephfsPluginName = "kubernetes.io/cephfs"
|
|
|
|
)
|
|
|
|
|
|
|
|
func (plugin *cephfsPlugin) Init(host volume.VolumeHost) {
|
|
|
|
plugin.host = host
|
|
|
|
}
|
|
|
|
|
|
|
|
func (plugin *cephfsPlugin) Name() string {
|
|
|
|
return cephfsPluginName
|
|
|
|
}
|
|
|
|
|
|
|
|
func (plugin *cephfsPlugin) CanSupport(spec *volume.Spec) bool {
|
2015-08-12 19:11:03 +00:00
|
|
|
return (spec.Volume != nil && spec.Volume.CephFS != nil) || (spec.PersistentVolume != nil && spec.PersistentVolume.Spec.CephFS != nil)
|
2015-04-09 18:05:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (plugin *cephfsPlugin) GetAccessModes() []api.PersistentVolumeAccessMode {
|
|
|
|
return []api.PersistentVolumeAccessMode{
|
|
|
|
api.ReadWriteOnce,
|
|
|
|
api.ReadOnlyMany,
|
|
|
|
api.ReadWriteMany,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-14 09:51:40 +00:00
|
|
|
func (plugin *cephfsPlugin) NewBuilder(spec *volume.Spec, pod *api.Pod, _ volume.VolumeOptions) (volume.Builder, error) {
|
2015-04-09 18:05:24 +00:00
|
|
|
cephvs := plugin.getVolumeSource(spec)
|
|
|
|
secret := ""
|
|
|
|
if cephvs.SecretRef != nil {
|
|
|
|
kubeClient := plugin.host.GetKubeClient()
|
|
|
|
if kubeClient == nil {
|
|
|
|
return nil, fmt.Errorf("Cannot get kube client")
|
|
|
|
}
|
|
|
|
|
|
|
|
secretName, err := kubeClient.Secrets(pod.Namespace).Get(cephvs.SecretRef.Name)
|
|
|
|
if err != nil {
|
|
|
|
err = fmt.Errorf("Couldn't get secret %v/%v err: %v", pod.Namespace, cephvs.SecretRef, err)
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
for name, data := range secretName.Data {
|
|
|
|
secret = string(data)
|
|
|
|
glog.V(1).Infof("found ceph secret info: %s", name)
|
|
|
|
}
|
|
|
|
}
|
2015-09-14 09:51:40 +00:00
|
|
|
return plugin.newBuilderInternal(spec, pod.UID, plugin.host.GetMounter(), secret)
|
2015-04-09 18:05:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (plugin *cephfsPlugin) newBuilderInternal(spec *volume.Spec, podUID types.UID, mounter mount.Interface, secret string) (volume.Builder, error) {
|
|
|
|
cephvs := plugin.getVolumeSource(spec)
|
|
|
|
id := cephvs.User
|
|
|
|
if id == "" {
|
|
|
|
id = "admin"
|
|
|
|
}
|
|
|
|
secret_file := cephvs.SecretFile
|
|
|
|
if secret_file == "" {
|
|
|
|
secret_file = "/etc/ceph/" + id + ".secret"
|
|
|
|
}
|
|
|
|
|
|
|
|
return &cephfsBuilder{
|
|
|
|
cephfs: &cephfs{
|
|
|
|
podUID: podUID,
|
2015-08-12 19:11:03 +00:00
|
|
|
volName: spec.Name(),
|
2015-04-09 18:05:24 +00:00
|
|
|
mon: cephvs.Monitors,
|
|
|
|
secret: secret,
|
|
|
|
id: id,
|
|
|
|
secret_file: secret_file,
|
|
|
|
readonly: cephvs.ReadOnly,
|
|
|
|
mounter: mounter,
|
|
|
|
plugin: plugin},
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
2015-09-14 09:51:40 +00:00
|
|
|
func (plugin *cephfsPlugin) NewCleaner(volName string, podUID types.UID) (volume.Cleaner, error) {
|
|
|
|
return plugin.newCleanerInternal(volName, podUID, plugin.host.GetMounter())
|
2015-04-09 18:05:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (plugin *cephfsPlugin) newCleanerInternal(volName string, podUID types.UID, mounter mount.Interface) (volume.Cleaner, error) {
|
|
|
|
return &cephfsCleaner{
|
|
|
|
cephfs: &cephfs{
|
|
|
|
podUID: podUID,
|
|
|
|
volName: volName,
|
|
|
|
mounter: mounter,
|
|
|
|
plugin: plugin},
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (plugin *cephfsPlugin) getVolumeSource(spec *volume.Spec) *api.CephFSVolumeSource {
|
2015-08-12 19:11:03 +00:00
|
|
|
if spec.Volume != nil && spec.Volume.CephFS != nil {
|
|
|
|
return spec.Volume.CephFS
|
2015-04-09 18:05:24 +00:00
|
|
|
} else {
|
2015-08-12 19:11:03 +00:00
|
|
|
return spec.PersistentVolume.Spec.CephFS
|
2015-04-09 18:05:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// CephFS volumes represent a bare host file or directory mount of an CephFS export.
|
|
|
|
type cephfs struct {
|
|
|
|
volName string
|
|
|
|
podUID types.UID
|
|
|
|
mon []string
|
|
|
|
id string
|
|
|
|
secret string
|
|
|
|
secret_file string
|
|
|
|
readonly bool
|
|
|
|
mounter mount.Interface
|
|
|
|
plugin *cephfsPlugin
|
|
|
|
}
|
|
|
|
|
|
|
|
type cephfsBuilder struct {
|
|
|
|
*cephfs
|
|
|
|
}
|
|
|
|
|
|
|
|
var _ volume.Builder = &cephfsBuilder{}
|
|
|
|
|
2015-10-20 18:49:39 +00:00
|
|
|
func (_ *cephfsBuilder) SupportsOwnershipManagement() bool {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2015-04-09 18:05:24 +00:00
|
|
|
// SetUp attaches the disk and bind mounts to the volume path.
|
|
|
|
func (cephfsVolume *cephfsBuilder) SetUp() error {
|
|
|
|
return cephfsVolume.SetUpAt(cephfsVolume.GetPath())
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetUpAt attaches the disk and bind mounts to the volume path.
|
|
|
|
func (cephfsVolume *cephfsBuilder) SetUpAt(dir string) error {
|
|
|
|
notMnt, err := cephfsVolume.mounter.IsLikelyNotMountPoint(dir)
|
|
|
|
glog.V(4).Infof("CephFS mount set up: %s %v %v", dir, !notMnt, err)
|
|
|
|
if err != nil && !os.IsNotExist(err) {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if !notMnt {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
os.MkdirAll(dir, 0750)
|
|
|
|
|
|
|
|
err = cephfsVolume.execMount(dir)
|
|
|
|
if err == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// cleanup upon failure
|
|
|
|
cephfsVolume.cleanup(dir)
|
|
|
|
// return error
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (cephfsVolume *cephfsBuilder) IsReadOnly() bool {
|
|
|
|
return cephfsVolume.readonly
|
|
|
|
}
|
|
|
|
|
2015-10-07 19:19:06 +00:00
|
|
|
func (cephfsVolume *cephfsBuilder) SupportsSELinux() bool {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2015-04-09 18:05:24 +00:00
|
|
|
type cephfsCleaner struct {
|
|
|
|
*cephfs
|
|
|
|
}
|
|
|
|
|
|
|
|
var _ volume.Cleaner = &cephfsCleaner{}
|
|
|
|
|
|
|
|
// TearDown unmounts the bind mount
|
|
|
|
func (cephfsVolume *cephfsCleaner) TearDown() error {
|
|
|
|
return cephfsVolume.TearDownAt(cephfsVolume.GetPath())
|
|
|
|
}
|
|
|
|
|
|
|
|
// TearDownAt unmounts the bind mount
|
|
|
|
func (cephfsVolume *cephfsCleaner) TearDownAt(dir string) error {
|
|
|
|
return cephfsVolume.cleanup(dir)
|
|
|
|
}
|
|
|
|
|
|
|
|
// GatePath creates global mount path
|
|
|
|
func (cephfsVolume *cephfs) GetPath() string {
|
|
|
|
name := cephfsPluginName
|
|
|
|
return cephfsVolume.plugin.host.GetPodVolumeDir(cephfsVolume.podUID, util.EscapeQualifiedNameForDisk(name), cephfsVolume.volName)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (cephfsVolume *cephfs) cleanup(dir string) error {
|
|
|
|
noMnt, err := cephfsVolume.mounter.IsLikelyNotMountPoint(dir)
|
|
|
|
if err != nil && !os.IsNotExist(err) {
|
|
|
|
return fmt.Errorf("CephFS: Error checking IsLikelyNotMountPoint: %v", err)
|
|
|
|
}
|
|
|
|
if noMnt {
|
|
|
|
return os.RemoveAll(dir)
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := cephfsVolume.mounter.Unmount(dir); err != nil {
|
|
|
|
return fmt.Errorf("CephFS: Unmounting failed: %v", err)
|
|
|
|
}
|
|
|
|
noMnt, mntErr := cephfsVolume.mounter.IsLikelyNotMountPoint(dir)
|
|
|
|
if mntErr != nil {
|
|
|
|
return fmt.Errorf("CephFS: IsMountpoint check failed: %v", mntErr)
|
|
|
|
}
|
|
|
|
if noMnt {
|
|
|
|
if err := os.RemoveAll(dir); err != nil {
|
|
|
|
return fmt.Errorf("CephFS: removeAll %s/%v", dir, err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (cephfsVolume *cephfs) execMount(mountpoint string) error {
|
|
|
|
// cephfs mount option
|
|
|
|
ceph_opt := ""
|
|
|
|
// override secretfile if secret is provided
|
|
|
|
if cephfsVolume.secret != "" {
|
|
|
|
ceph_opt = "name=" + cephfsVolume.id + ",secret=" + cephfsVolume.secret
|
|
|
|
} else {
|
|
|
|
ceph_opt = "name=" + cephfsVolume.id + ",secretfile=" + cephfsVolume.secret_file
|
|
|
|
}
|
|
|
|
// build option array
|
|
|
|
opt := []string{}
|
|
|
|
if cephfsVolume.readonly {
|
|
|
|
opt = append(opt, "ro")
|
|
|
|
}
|
|
|
|
opt = append(opt, ceph_opt)
|
|
|
|
|
|
|
|
// build src like mon1:6789,mon2:6789,mon3:6789:/
|
|
|
|
hosts := cephfsVolume.mon
|
|
|
|
l := len(hosts)
|
|
|
|
// pass all monitors and let ceph randomize and fail over
|
|
|
|
i := 0
|
|
|
|
src := ""
|
|
|
|
for i = 0; i < l-1; i++ {
|
|
|
|
src += hosts[i] + ","
|
|
|
|
}
|
|
|
|
src += hosts[i] + ":/"
|
|
|
|
|
|
|
|
if err := cephfsVolume.mounter.Mount(src, mountpoint, "ceph", opt); err != nil {
|
|
|
|
return fmt.Errorf("CephFS: mount failed: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|