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 (
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
"os"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/util/exec"
|
|
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/util/mount"
|
|
|
|
"github.com/golang/glog"
|
|
|
|
)
|
|
|
|
|
|
|
|
type AWSDiskUtil struct{}
|
|
|
|
|
2015-04-07 21:16:36 +00:00
|
|
|
// Attaches a disk specified by a volume.AWSElasticBlockStore to the current kubelet.
|
2015-03-06 14:26:39 +00:00
|
|
|
// Mounts the disk to it's global path.
|
2015-04-07 21:16:36 +00:00
|
|
|
func (util *AWSDiskUtil) AttachAndMountDisk(pd *awsElasticBlockStore, globalPDPath string) error {
|
2015-03-06 14:26:39 +00:00
|
|
|
volumes, err := pd.getVolumeProvider()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2015-04-09 13:34:16 +00:00
|
|
|
devicePath, err := volumes.AttachDisk("", pd.volumeID, pd.readOnly)
|
2015-04-02 18:56:11 +00:00
|
|
|
if err != nil {
|
2015-03-06 14:26:39 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
if pd.partition != "" {
|
2015-04-02 18:56:11 +00:00
|
|
|
devicePath = devicePath + pd.partition
|
2015-03-06 14:26:39 +00:00
|
|
|
}
|
|
|
|
//TODO(jonesdl) There should probably be better method than busy-waiting here.
|
|
|
|
numTries := 0
|
|
|
|
for {
|
|
|
|
_, err := os.Stat(devicePath)
|
|
|
|
if err == nil {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
if err != nil && !os.IsNotExist(err) {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
numTries++
|
|
|
|
if numTries == 10 {
|
2015-04-02 18:56:11 +00:00
|
|
|
return errors.New("Could not attach disk: Timeout after 10s (" + devicePath + ")")
|
2015-03-06 14:26:39 +00:00
|
|
|
}
|
|
|
|
time.Sleep(time.Second)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Only mount the PD globally once.
|
2015-04-07 22:35:43 +00:00
|
|
|
mountpoint, err := pd.mounter.IsMountPoint(globalPDPath)
|
2015-03-06 14:26:39 +00:00
|
|
|
if err != nil {
|
|
|
|
if os.IsNotExist(err) {
|
|
|
|
if err := os.MkdirAll(globalPDPath, 0750); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
mountpoint = false
|
|
|
|
} else {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
2015-04-03 01:08:04 +00:00
|
|
|
options := []string{}
|
|
|
|
if pd.readOnly {
|
|
|
|
options = append(options, "ro")
|
|
|
|
}
|
2015-03-06 14:26:39 +00:00
|
|
|
if !mountpoint {
|
2015-04-03 01:08:04 +00:00
|
|
|
err = pd.diskMounter.Mount(devicePath, globalPDPath, pd.fsType, options)
|
2015-03-06 14:26:39 +00:00
|
|
|
if err != nil {
|
|
|
|
os.Remove(globalPDPath)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Unmounts the device and detaches the disk from the kubelet's host machine.
|
2015-04-07 21:16:36 +00:00
|
|
|
func (util *AWSDiskUtil) DetachDisk(pd *awsElasticBlockStore) error {
|
2015-03-06 14:26:39 +00:00
|
|
|
// Unmount the global PD mount, which should be the only one.
|
2015-04-09 13:34:16 +00:00
|
|
|
globalPDPath := makeGlobalPDPath(pd.plugin.host, pd.volumeID)
|
2015-04-03 01:08:04 +00:00
|
|
|
if err := pd.mounter.Unmount(globalPDPath); err != nil {
|
2015-04-03 16:34:23 +00:00
|
|
|
glog.V(2).Info("Error unmount dir ", globalPDPath, ": ", err)
|
2015-03-06 14:26:39 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
if err := os.Remove(globalPDPath); err != nil {
|
2015-04-03 16:34:23 +00:00
|
|
|
glog.V(2).Info("Error removing dir ", globalPDPath, ": ", err)
|
2015-03-06 14:26:39 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
// Detach the disk
|
|
|
|
volumes, err := pd.getVolumeProvider()
|
|
|
|
if err != nil {
|
2015-04-09 13:34:16 +00:00
|
|
|
glog.V(2).Info("Error getting volume provider for volumeID ", pd.volumeID, ": ", err)
|
2015-03-06 14:26:39 +00:00
|
|
|
return err
|
|
|
|
}
|
2015-04-09 13:34:16 +00:00
|
|
|
if err := volumes.DetachDisk("", pd.volumeID); err != nil {
|
|
|
|
glog.V(2).Info("Error detaching disk ", pd.volumeID, ": ", err)
|
2015-03-06 14:26:39 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// safe_format_and_mount is a utility script on AWS VMs that probes a persistent disk, and if
|
|
|
|
// necessary formats it before mounting it.
|
2015-04-07 20:23:12 +00:00
|
|
|
// This eliminates the necessity to format a PD before it is used with a Pod on AWS.
|
2015-03-06 14:26:39 +00:00
|
|
|
// TODO: port this script into Go and use it for all Linux platforms
|
|
|
|
type awsSafeFormatAndMount struct {
|
|
|
|
mount.Interface
|
|
|
|
runner exec.Interface
|
|
|
|
}
|
|
|
|
|
|
|
|
// uses /usr/share/google/safe_format_and_mount to optionally mount, and format a disk
|
2015-04-03 01:08:04 +00:00
|
|
|
func (mounter *awsSafeFormatAndMount) Mount(source string, target string, fstype string, options []string) error {
|
|
|
|
// Don't attempt to format if mounting as readonly. Go straight to mounting.
|
2015-03-06 14:26:39 +00:00
|
|
|
// Don't attempt to format if mounting as readonly. Go straight to mounting.
|
2015-04-03 01:08:04 +00:00
|
|
|
for _, option := range options {
|
|
|
|
if option == "ro" {
|
|
|
|
return mounter.Interface.Mount(source, target, fstype, options)
|
|
|
|
}
|
2015-03-06 14:26:39 +00:00
|
|
|
}
|
|
|
|
args := []string{}
|
|
|
|
// ext4 is the default for safe_format_and_mount
|
|
|
|
if len(fstype) > 0 && fstype != "ext4" {
|
|
|
|
args = append(args, "-m", fmt.Sprintf("mkfs.%s", fstype))
|
|
|
|
}
|
2015-04-03 01:08:04 +00:00
|
|
|
args = append(args, options...)
|
2015-03-06 14:26:39 +00:00
|
|
|
args = append(args, source, target)
|
|
|
|
glog.V(5).Infof("exec-ing: /usr/share/google/safe_format_and_mount %v", args)
|
|
|
|
cmd := mounter.runner.Command("/usr/share/google/safe_format_and_mount", args...)
|
|
|
|
dataOut, err := cmd.CombinedOutput()
|
|
|
|
if err != nil {
|
|
|
|
glog.V(5).Infof("error running /usr/share/google/safe_format_and_mount\n%s", string(dataOut))
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|