mirror of
https://github.com/rancher/os.git
synced 2025-04-28 03:20:50 +00:00
353 lines
9.5 KiB
Go
353 lines
9.5 KiB
Go
// Copyright 2015 CoreOS, Inc.
|
|
// Copyright 2015-2017 Rancher Labs, Inc.
|
|
//
|
|
// 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 cloudinitsave
|
|
|
|
import (
|
|
"errors"
|
|
"os"
|
|
"strings"
|
|
"sync"
|
|
"syscall"
|
|
"time"
|
|
|
|
yaml "github.com/cloudfoundry-incubator/candiedyaml"
|
|
|
|
"github.com/rancher/os/config/cloudinit/config"
|
|
"github.com/rancher/os/config/cloudinit/datasource"
|
|
"github.com/rancher/os/config/cloudinit/datasource/configdrive"
|
|
"github.com/rancher/os/config/cloudinit/datasource/file"
|
|
"github.com/rancher/os/config/cloudinit/datasource/metadata/digitalocean"
|
|
"github.com/rancher/os/config/cloudinit/datasource/metadata/ec2"
|
|
"github.com/rancher/os/config/cloudinit/datasource/metadata/packet"
|
|
"github.com/rancher/os/config/cloudinit/datasource/proc_cmdline"
|
|
"github.com/rancher/os/config/cloudinit/datasource/url"
|
|
"github.com/rancher/os/config/cloudinit/pkg"
|
|
"github.com/docker/docker/pkg/mount"
|
|
"github.com/rancher/os/cmd/cloudinitsave/gce"
|
|
"github.com/rancher/os/cmd/control"
|
|
"github.com/rancher/os/cmd/network"
|
|
rancherConfig "github.com/rancher/os/config"
|
|
"github.com/rancher/os/log"
|
|
"github.com/rancher/os/netconf"
|
|
"github.com/rancher/os/util"
|
|
)
|
|
|
|
const (
|
|
datasourceInterval = 100 * time.Millisecond
|
|
datasourceMaxInterval = 30 * time.Second
|
|
datasourceTimeout = 5 * time.Minute
|
|
configDevName = "config-2"
|
|
configDev = "LABEL=" + configDevName
|
|
configDevMountPoint = "/media/config-2"
|
|
)
|
|
|
|
func Main() {
|
|
log.InitLogger()
|
|
log.Info("Running cloud-init-save")
|
|
|
|
if err := control.UdevSettle(); err != nil {
|
|
log.Errorf("Failed to run udev settle: %v", err)
|
|
}
|
|
|
|
cfg := rancherConfig.LoadConfig()
|
|
network.ApplyNetworkConfig(cfg)
|
|
|
|
if err := SaveCloudConfig(true); err != nil {
|
|
log.Errorf("Failed to save cloud-config: %v", err)
|
|
}
|
|
}
|
|
|
|
func MountConfigDrive() error {
|
|
if err := os.MkdirAll(configDevMountPoint, 644); err != nil {
|
|
return err
|
|
}
|
|
|
|
configDev := util.ResolveDevice(configDev)
|
|
|
|
if configDev == "" {
|
|
return mount.Mount(configDevName, configDevMountPoint, "9p", "trans=virtio,version=9p2000.L")
|
|
}
|
|
|
|
fsType, err := util.GetFsType(configDev)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return mount.Mount(configDev, configDevMountPoint, fsType, "ro")
|
|
}
|
|
|
|
func UnmountConfigDrive() error {
|
|
return syscall.Unmount(configDevMountPoint, 0)
|
|
}
|
|
|
|
func SaveCloudConfig(network bool) error {
|
|
userDataBytes, metadata, err := fetchUserData(network)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
userData := string(userDataBytes)
|
|
scriptBytes := []byte{}
|
|
|
|
if config.IsScript(userData) {
|
|
scriptBytes = userDataBytes
|
|
userDataBytes = []byte{}
|
|
} else if isCompose(userData) {
|
|
if userDataBytes, err = composeToCloudConfig(userDataBytes); err != nil {
|
|
log.Errorf("Failed to convert compose to cloud-config syntax: %v", err)
|
|
return err
|
|
}
|
|
} else if config.IsCloudConfig(userData) {
|
|
if _, err := rancherConfig.ReadConfig(userDataBytes, false); err != nil {
|
|
log.WithFields(log.Fields{"cloud-config": userData, "err": err}).Warn("Failed to parse cloud-config, not saving.")
|
|
userDataBytes = []byte{}
|
|
}
|
|
} else {
|
|
log.Errorf("Unrecognized user-data\n%s", userData)
|
|
userDataBytes = []byte{}
|
|
}
|
|
|
|
if _, err := rancherConfig.ReadConfig(userDataBytes, false); err != nil {
|
|
log.WithFields(log.Fields{"cloud-config": userData, "err": err}).Warn("Failed to parse cloud-config")
|
|
return errors.New("Failed to parse cloud-config")
|
|
}
|
|
|
|
return saveFiles(userDataBytes, scriptBytes, metadata)
|
|
}
|
|
|
|
func RequiresNetwork(datasource string) bool {
|
|
parts := strings.SplitN(datasource, ":", 2)
|
|
requiresNetwork, ok := map[string]bool{
|
|
"ec2": true,
|
|
"file": false,
|
|
"url": true,
|
|
"cmdline": true,
|
|
"configdrive": false,
|
|
"digitalocean": true,
|
|
"gce": true,
|
|
"packet": true,
|
|
}[parts[0]]
|
|
return ok && requiresNetwork
|
|
}
|
|
|
|
func saveFiles(cloudConfigBytes, scriptBytes []byte, metadata datasource.Metadata) error {
|
|
os.MkdirAll(rancherConfig.CloudConfigDir, os.ModeDir|0600)
|
|
|
|
if len(scriptBytes) > 0 {
|
|
log.Infof("Writing to %s", rancherConfig.CloudConfigScriptFile)
|
|
if err := util.WriteFileAtomic(rancherConfig.CloudConfigScriptFile, scriptBytes, 500); err != nil {
|
|
log.Errorf("Error while writing file %s: %v", rancherConfig.CloudConfigScriptFile, err)
|
|
return err
|
|
}
|
|
}
|
|
|
|
if len(cloudConfigBytes) > 0 {
|
|
if err := util.WriteFileAtomic(rancherConfig.CloudConfigBootFile, cloudConfigBytes, 400); err != nil {
|
|
return err
|
|
}
|
|
log.Infof("Written to %s:\n%s", rancherConfig.CloudConfigBootFile, string(cloudConfigBytes))
|
|
}
|
|
|
|
metaDataBytes, err := yaml.Marshal(metadata)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if err = util.WriteFileAtomic(rancherConfig.MetaDataFile, metaDataBytes, 400); err != nil {
|
|
return err
|
|
}
|
|
log.Infof("Written to %s:\n%s", rancherConfig.MetaDataFile, string(metaDataBytes))
|
|
|
|
return nil
|
|
}
|
|
|
|
func currentDatasource(network bool) (datasource.Datasource, error) {
|
|
cfg := rancherConfig.LoadConfig()
|
|
|
|
dss := getDatasources(cfg, network)
|
|
if len(dss) == 0 {
|
|
return nil, nil
|
|
}
|
|
|
|
ds := selectDatasource(dss)
|
|
return ds, nil
|
|
}
|
|
|
|
func fetchUserData(network bool) ([]byte, datasource.Metadata, error) {
|
|
var metadata datasource.Metadata
|
|
ds, err := currentDatasource(network)
|
|
if err != nil || ds == nil {
|
|
log.Errorf("Failed to select datasource: %v", err)
|
|
return nil, metadata, err
|
|
}
|
|
log.Infof("Fetching user-data from datasource %v", ds.Type())
|
|
userDataBytes, err := ds.FetchUserdata()
|
|
if err != nil {
|
|
log.Errorf("Failed fetching user-data from datasource: %v", err)
|
|
return nil, metadata, err
|
|
}
|
|
log.Infof("Fetching meta-data from datasource of type %v", ds.Type())
|
|
metadata, err = ds.FetchMetadata()
|
|
if err != nil {
|
|
log.Errorf("Failed fetching meta-data from datasource: %v", err)
|
|
return nil, metadata, err
|
|
}
|
|
return userDataBytes, metadata, nil
|
|
}
|
|
|
|
// getDatasources creates a slice of possible Datasources for cloudinit based
|
|
// on the different source command-line flags.
|
|
func getDatasources(cfg *rancherConfig.CloudConfig, network bool) []datasource.Datasource {
|
|
dss := make([]datasource.Datasource, 0, 5)
|
|
|
|
for _, ds := range cfg.Rancher.CloudInit.Datasources {
|
|
parts := strings.SplitN(ds, ":", 2)
|
|
|
|
switch parts[0] {
|
|
case "ec2":
|
|
if network {
|
|
if len(parts) == 1 {
|
|
dss = append(dss, ec2.NewDatasource(ec2.DefaultAddress))
|
|
} else {
|
|
dss = append(dss, ec2.NewDatasource(parts[1]))
|
|
}
|
|
}
|
|
case "file":
|
|
if len(parts) == 2 {
|
|
dss = append(dss, file.NewDatasource(parts[1]))
|
|
}
|
|
case "url":
|
|
if network {
|
|
if len(parts) == 2 {
|
|
dss = append(dss, url.NewDatasource(parts[1]))
|
|
}
|
|
}
|
|
case "cmdline":
|
|
if network {
|
|
if len(parts) == 1 {
|
|
dss = append(dss, proc_cmdline.NewDatasource())
|
|
}
|
|
}
|
|
case "configdrive":
|
|
if len(parts) == 2 {
|
|
dss = append(dss, configdrive.NewDatasource(parts[1]))
|
|
}
|
|
case "digitalocean":
|
|
if network {
|
|
if len(parts) == 1 {
|
|
dss = append(dss, digitalocean.NewDatasource(digitalocean.DefaultAddress))
|
|
} else {
|
|
dss = append(dss, digitalocean.NewDatasource(parts[1]))
|
|
}
|
|
} else {
|
|
enableDoLinkLocal()
|
|
}
|
|
case "gce":
|
|
if network {
|
|
dss = append(dss, gce.NewDatasource("http://metadata.google.internal/"))
|
|
}
|
|
case "packet":
|
|
if !network {
|
|
enablePacketNetwork(&cfg.Rancher)
|
|
}
|
|
dss = append(dss, packet.NewDatasource("https://metadata.packet.net/"))
|
|
}
|
|
}
|
|
|
|
return dss
|
|
}
|
|
|
|
func enableDoLinkLocal() {
|
|
err := netconf.ApplyNetworkConfigs(&rancherConfig.NetworkConfig{
|
|
Interfaces: map[string]rancherConfig.InterfaceConfig{
|
|
"eth0": {
|
|
IPV4LL: true,
|
|
},
|
|
},
|
|
})
|
|
if err != nil {
|
|
log.Errorf("Failed to apply link local on eth0: %v", err)
|
|
}
|
|
}
|
|
|
|
// selectDatasource attempts to choose a valid Datasource to use based on its
|
|
// current availability. The first Datasource to report to be available is
|
|
// returned. Datasources will be retried if possible if they are not
|
|
// immediately available. If all Datasources are permanently unavailable or
|
|
// datasourceTimeout is reached before one becomes available, nil is returned.
|
|
func selectDatasource(sources []datasource.Datasource) datasource.Datasource {
|
|
ds := make(chan datasource.Datasource)
|
|
stop := make(chan struct{})
|
|
var wg sync.WaitGroup
|
|
|
|
for _, s := range sources {
|
|
wg.Add(1)
|
|
go func(s datasource.Datasource) {
|
|
defer wg.Done()
|
|
|
|
duration := datasourceInterval
|
|
for {
|
|
log.Infof("Checking availability of %q\n", s.Type())
|
|
if s.IsAvailable() {
|
|
ds <- s
|
|
return
|
|
} else if !s.AvailabilityChanges() {
|
|
return
|
|
}
|
|
select {
|
|
case <-stop:
|
|
return
|
|
case <-time.After(duration):
|
|
duration = pkg.ExpBackoff(duration, datasourceMaxInterval)
|
|
}
|
|
}
|
|
}(s)
|
|
}
|
|
|
|
done := make(chan struct{})
|
|
go func() {
|
|
wg.Wait()
|
|
close(done)
|
|
}()
|
|
|
|
var s datasource.Datasource
|
|
select {
|
|
case s = <-ds:
|
|
case <-done:
|
|
case <-time.After(datasourceTimeout):
|
|
}
|
|
|
|
close(stop)
|
|
return s
|
|
}
|
|
|
|
func isCompose(content string) bool {
|
|
return strings.HasPrefix(content, "#compose\n")
|
|
}
|
|
|
|
func composeToCloudConfig(bytes []byte) ([]byte, error) {
|
|
compose := make(map[interface{}]interface{})
|
|
err := yaml.Unmarshal(bytes, &compose)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return yaml.Marshal(map[interface{}]interface{}{
|
|
"rancher": map[interface{}]interface{}{
|
|
"services": compose,
|
|
},
|
|
})
|
|
}
|