2015-02-18 01:26:41 +00:00
|
|
|
/*
|
2015-05-01 16:19:44 +00:00
|
|
|
Copyright 2015 The Kubernetes Authors All rights reserved.
|
2015-02-18 01:26:41 +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 secret
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2015-05-13 18:02:12 +00:00
|
|
|
"os"
|
2015-02-18 01:26:41 +00:00
|
|
|
"path"
|
|
|
|
|
2015-08-05 22:05:17 +00:00
|
|
|
"github.com/golang/glog"
|
2015-08-05 22:03:47 +00:00
|
|
|
"k8s.io/kubernetes/pkg/api"
|
|
|
|
"k8s.io/kubernetes/pkg/types"
|
|
|
|
"k8s.io/kubernetes/pkg/util"
|
2015-09-14 09:51:40 +00:00
|
|
|
ioutil "k8s.io/kubernetes/pkg/util/io"
|
2015-08-05 22:03:47 +00:00
|
|
|
"k8s.io/kubernetes/pkg/util/mount"
|
|
|
|
"k8s.io/kubernetes/pkg/volume"
|
|
|
|
volumeutil "k8s.io/kubernetes/pkg/volume/util"
|
2015-02-18 01:26:41 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// ProbeVolumePlugin is the entry point for plugin detection in a package.
|
2015-03-19 05:18:31 +00:00
|
|
|
func ProbeVolumePlugins() []volume.VolumePlugin {
|
|
|
|
return []volume.VolumePlugin{&secretPlugin{}}
|
2015-02-18 01:26:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const (
|
|
|
|
secretPluginName = "kubernetes.io/secret"
|
|
|
|
)
|
|
|
|
|
|
|
|
// secretPlugin implements the VolumePlugin interface.
|
|
|
|
type secretPlugin struct {
|
2015-03-19 05:18:31 +00:00
|
|
|
host volume.VolumeHost
|
2015-02-18 01:26:41 +00:00
|
|
|
}
|
|
|
|
|
2015-05-11 00:12:57 +00:00
|
|
|
var _ volume.VolumePlugin = &secretPlugin{}
|
|
|
|
|
2015-03-19 05:18:31 +00:00
|
|
|
func (plugin *secretPlugin) Init(host volume.VolumeHost) {
|
2015-02-18 01:26:41 +00:00
|
|
|
plugin.host = host
|
|
|
|
}
|
|
|
|
|
|
|
|
func (plugin *secretPlugin) Name() string {
|
|
|
|
return secretPluginName
|
|
|
|
}
|
|
|
|
|
2015-04-14 16:29:33 +00:00
|
|
|
func (plugin *secretPlugin) CanSupport(spec *volume.Spec) bool {
|
2015-08-12 19:11:03 +00:00
|
|
|
return spec.Volume != nil && spec.Volume.Secret != nil
|
2015-02-18 01:26:41 +00:00
|
|
|
}
|
|
|
|
|
2015-09-14 09:51:40 +00:00
|
|
|
func (plugin *secretPlugin) NewBuilder(spec *volume.Spec, pod *api.Pod, opts volume.VolumeOptions) (volume.Builder, error) {
|
2015-07-16 23:07:34 +00:00
|
|
|
return &secretVolumeBuilder{
|
2015-09-14 09:51:40 +00:00
|
|
|
secretVolume: &secretVolume{spec.Name(), pod.UID, plugin, plugin.host.GetMounter(), plugin.host.GetWriter()},
|
2015-08-12 19:11:03 +00:00
|
|
|
secretName: spec.Volume.Secret.SecretName,
|
2015-07-16 23:07:34 +00:00
|
|
|
pod: *pod,
|
|
|
|
opts: &opts}, nil
|
2015-02-18 01:26:41 +00:00
|
|
|
}
|
|
|
|
|
2015-09-14 09:51:40 +00:00
|
|
|
func (plugin *secretPlugin) NewCleaner(volName string, podUID types.UID) (volume.Cleaner, error) {
|
|
|
|
return &secretVolumeCleaner{&secretVolume{volName, podUID, plugin, plugin.host.GetMounter(), plugin.host.GetWriter()}}, nil
|
2015-02-18 01:26:41 +00:00
|
|
|
}
|
|
|
|
|
2015-07-16 23:07:34 +00:00
|
|
|
type secretVolume struct {
|
|
|
|
volName string
|
|
|
|
podUID types.UID
|
|
|
|
plugin *secretPlugin
|
|
|
|
mounter mount.Interface
|
2015-09-14 09:51:40 +00:00
|
|
|
writer ioutil.Writer
|
2015-07-16 23:07:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var _ volume.Volume = &secretVolume{}
|
|
|
|
|
|
|
|
func (sv *secretVolume) GetPath() string {
|
|
|
|
return sv.plugin.host.GetPodVolumeDir(sv.podUID, util.EscapeQualifiedNameForDisk(secretPluginName), sv.volName)
|
2015-02-18 01:26:41 +00:00
|
|
|
}
|
|
|
|
|
2015-07-16 23:07:34 +00:00
|
|
|
// secretVolumeBuilder handles retrieving secrets from the API server
|
2015-02-18 01:26:41 +00:00
|
|
|
// and placing them into the volume on the host.
|
2015-07-16 23:07:34 +00:00
|
|
|
type secretVolumeBuilder struct {
|
|
|
|
*secretVolume
|
|
|
|
|
2015-03-24 17:17:14 +00:00
|
|
|
secretName string
|
2015-07-16 23:07:34 +00:00
|
|
|
pod api.Pod
|
2015-04-10 20:56:11 +00:00
|
|
|
opts *volume.VolumeOptions
|
2015-02-18 01:26:41 +00:00
|
|
|
}
|
|
|
|
|
2015-07-16 23:07:34 +00:00
|
|
|
var _ volume.Builder = &secretVolumeBuilder{}
|
|
|
|
|
2015-10-20 18:49:39 +00:00
|
|
|
func (_ *secretVolumeBuilder) SupportsOwnershipManagement() bool {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2015-07-16 23:07:34 +00:00
|
|
|
func (b *secretVolumeBuilder) SetUp() error {
|
|
|
|
return b.SetUpAt(b.GetPath())
|
2015-03-07 21:38:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// This is the spec for the volume that this plugin wraps.
|
2015-04-14 16:29:33 +00:00
|
|
|
var wrappedVolumeSpec = &volume.Spec{
|
2015-08-12 19:11:03 +00:00
|
|
|
Volume: &api.Volume{VolumeSource: api.VolumeSource{EmptyDir: &api.EmptyDirVolumeSource{Medium: api.StorageMediumMemory}}},
|
2015-03-07 21:38:50 +00:00
|
|
|
}
|
|
|
|
|
2015-07-16 23:07:34 +00:00
|
|
|
func (b *secretVolumeBuilder) getMetaDir() string {
|
|
|
|
return path.Join(b.plugin.host.GetPodPluginDir(b.podUID, util.EscapeQualifiedNameForDisk(secretPluginName)), b.volName)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *secretVolumeBuilder) SetUpAt(dir string) error {
|
2015-04-16 23:49:53 +00:00
|
|
|
notMnt, err := b.mounter.IsLikelyNotMountPoint(dir)
|
2015-05-13 18:02:12 +00:00
|
|
|
// Getting an os.IsNotExist err from is a contingency; the directory
|
|
|
|
// may not exist yet, in which case, setup should run.
|
|
|
|
if err != nil && !os.IsNotExist(err) {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// If the plugin readiness file is present for this volume and
|
|
|
|
// the setup dir is a mountpoint, this volume is already ready.
|
2015-04-16 23:49:53 +00:00
|
|
|
if volumeutil.IsReady(b.getMetaDir()) && !notMnt {
|
2015-04-22 14:48:23 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-07-16 23:07:34 +00:00
|
|
|
glog.V(3).Infof("Setting up volume %v for pod %v at %v", b.volName, b.pod.UID, dir)
|
2015-03-07 21:38:50 +00:00
|
|
|
|
|
|
|
// Wrap EmptyDir, let it do the setup.
|
2015-09-14 09:51:40 +00:00
|
|
|
wrapped, err := b.plugin.host.NewWrapperBuilder(wrappedVolumeSpec, &b.pod, *b.opts)
|
2015-02-18 01:26:41 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2015-03-07 21:38:50 +00:00
|
|
|
if err := wrapped.SetUpAt(dir); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2015-02-18 01:26:41 +00:00
|
|
|
|
2015-07-16 23:07:34 +00:00
|
|
|
kubeClient := b.plugin.host.GetKubeClient()
|
2015-02-18 01:26:41 +00:00
|
|
|
if kubeClient == nil {
|
2015-07-16 23:07:34 +00:00
|
|
|
return fmt.Errorf("Cannot setup secret volume %v because kube client is not configured", b.volName)
|
2015-02-18 01:26:41 +00:00
|
|
|
}
|
|
|
|
|
2015-07-16 23:07:34 +00:00
|
|
|
secret, err := kubeClient.Secrets(b.pod.Namespace).Get(b.secretName)
|
2015-02-18 01:26:41 +00:00
|
|
|
if err != nil {
|
2015-07-16 23:07:34 +00:00
|
|
|
glog.Errorf("Couldn't get secret %v/%v", b.pod.Namespace, b.secretName)
|
2015-02-18 01:26:41 +00:00
|
|
|
return err
|
2015-03-25 21:25:13 +00:00
|
|
|
} else {
|
|
|
|
totalBytes := totalSecretBytes(secret)
|
|
|
|
glog.V(3).Infof("Received secret %v/%v containing (%v) pieces of data, %v total bytes",
|
2015-07-16 23:07:34 +00:00
|
|
|
b.pod.Namespace,
|
|
|
|
b.secretName,
|
2015-03-25 21:25:13 +00:00
|
|
|
len(secret.Data),
|
|
|
|
totalBytes)
|
2015-02-18 01:26:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for name, data := range secret.Data {
|
2015-03-07 21:38:50 +00:00
|
|
|
hostFilePath := path.Join(dir, name)
|
2015-07-16 23:07:34 +00:00
|
|
|
glog.V(3).Infof("Writing secret data %v/%v/%v (%v bytes) to host file %v", b.pod.Namespace, b.secretName, name, len(data), hostFilePath)
|
2015-09-14 09:51:40 +00:00
|
|
|
err := b.writer.WriteFile(hostFilePath, data, 0444)
|
2015-02-18 01:26:41 +00:00
|
|
|
if err != nil {
|
|
|
|
glog.Errorf("Error writing secret data to host path: %v, %v", hostFilePath, err)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-16 23:07:34 +00:00
|
|
|
volumeutil.SetReady(b.getMetaDir())
|
2015-04-22 14:48:23 +00:00
|
|
|
|
2015-02-18 01:26:41 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-06-29 16:54:43 +00:00
|
|
|
func (sv *secretVolume) IsReadOnly() bool {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2015-10-07 19:19:06 +00:00
|
|
|
func (sv *secretVolume) SupportsSELinux() bool {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2015-03-25 21:25:13 +00:00
|
|
|
func totalSecretBytes(secret *api.Secret) int {
|
|
|
|
totalSize := 0
|
|
|
|
for _, bytes := range secret.Data {
|
|
|
|
totalSize += len(bytes)
|
|
|
|
}
|
|
|
|
|
|
|
|
return totalSize
|
|
|
|
}
|
|
|
|
|
2015-07-16 23:07:34 +00:00
|
|
|
// secretVolumeCleaner handles cleaning up secret volumes.
|
|
|
|
type secretVolumeCleaner struct {
|
|
|
|
*secretVolume
|
2015-02-18 01:26:41 +00:00
|
|
|
}
|
|
|
|
|
2015-07-16 23:07:34 +00:00
|
|
|
var _ volume.Cleaner = &secretVolumeCleaner{}
|
|
|
|
|
|
|
|
func (c *secretVolumeCleaner) TearDown() error {
|
|
|
|
return c.TearDownAt(c.GetPath())
|
2015-03-07 21:38:50 +00:00
|
|
|
}
|
|
|
|
|
2015-07-16 23:07:34 +00:00
|
|
|
func (c *secretVolumeCleaner) TearDownAt(dir string) error {
|
|
|
|
glog.V(3).Infof("Tearing down volume %v for pod %v at %v", c.volName, c.podUID, dir)
|
2015-03-07 21:38:50 +00:00
|
|
|
|
|
|
|
// Wrap EmptyDir, let it do the teardown.
|
2015-09-14 09:51:40 +00:00
|
|
|
wrapped, err := c.plugin.host.NewWrapperCleaner(wrappedVolumeSpec, c.podUID)
|
2015-02-18 01:26:41 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2015-03-07 21:38:50 +00:00
|
|
|
return wrapped.TearDownAt(dir)
|
2015-02-18 01:26:41 +00:00
|
|
|
}
|