cloudinit/coreos-cloudinit.go

189 lines
5.1 KiB
Go
Raw Normal View History

2014-03-05 04:36:05 +04:00
package main
import (
"encoding/json"
2014-03-05 04:36:05 +04:00
"flag"
2014-03-18 20:00:41 +04:00
"fmt"
"io/ioutil"
2014-03-18 20:00:41 +04:00
"os"
"path"
2014-03-05 04:36:05 +04:00
2014-03-18 20:00:41 +04:00
"github.com/coreos/coreos-cloudinit/datasource"
"github.com/coreos/coreos-cloudinit/initialize"
"github.com/coreos/coreos-cloudinit/network"
2014-03-18 20:00:41 +04:00
"github.com/coreos/coreos-cloudinit/system"
2014-03-05 04:36:05 +04:00
)
const version = "0.7.4+git"
2014-03-05 04:36:05 +04:00
func main() {
var printVersion bool
flag.BoolVar(&printVersion, "version", false, "Print the version and exit")
var ignoreFailure bool
flag.BoolVar(&ignoreFailure, "ignore-failure", false, "Exits with 0 status in the event of malformed input from user-data")
2014-03-05 04:36:05 +04:00
var file string
2014-03-05 05:06:52 +04:00
flag.StringVar(&file, "from-file", "", "Read user-data from provided file")
var configdrive string
flag.StringVar(&configdrive, "from-configdrive", "", "Read user-data from provided cloud-drive directory")
2014-03-05 05:06:52 +04:00
var url string
flag.StringVar(&url, "from-url", "", "Download user-data from provided url")
2014-03-05 04:36:05 +04:00
var useProcCmdline bool
flag.BoolVar(&useProcCmdline, "from-proc-cmdline", false, fmt.Sprintf("Parse %s for '%s=<url>', using the cloud-config served by an HTTP GET to <url>", datasource.ProcCmdlineLocation, datasource.ProcCmdlineCloudConfigFlag))
var convertNetconf string
flag.StringVar(&convertNetconf, "convert-netconf", "", "Read the network config provided in cloud-drive and translate it from the specified format into networkd unit files (requires the -from-configdrive flag)")
2014-03-05 04:36:05 +04:00
var workspace string
flag.StringVar(&workspace, "workspace", "/var/lib/coreos-cloudinit", "Base directory coreos-cloudinit should use to store data")
var sshKeyName string
2014-03-18 20:00:41 +04:00
flag.StringVar(&sshKeyName, "ssh-key-name", initialize.DefaultSSHKeyName, "Add SSH keys to the system with the given name")
2014-03-05 04:36:05 +04:00
flag.Parse()
if printVersion == true {
fmt.Printf("coreos-cloudinit version %s\n", version)
os.Exit(0)
}
2014-03-18 20:00:41 +04:00
var ds datasource.Datasource
2014-03-05 04:36:05 +04:00
if file != "" {
2014-03-18 20:00:41 +04:00
ds = datasource.NewLocalFile(file)
2014-03-05 05:06:52 +04:00
} else if url != "" {
2014-03-18 20:00:41 +04:00
ds = datasource.NewMetadataService(url)
} else if configdrive != "" {
ds = datasource.NewConfigDrive(configdrive)
} else if useProcCmdline {
ds = datasource.NewProcCmdline()
2014-03-05 05:06:52 +04:00
} else {
fmt.Println("Provide one of --from-file, --from-configdrive, --from-url or --from-proc-cmdline")
2014-03-05 05:06:52 +04:00
os.Exit(1)
2014-03-05 04:36:05 +04:00
}
if convertNetconf != "" && configdrive == "" {
fmt.Println("-convert-netconf flag requires -from-configdrive")
os.Exit(1)
}
switch convertNetconf {
case "":
case "debian":
default:
fmt.Printf("Invalid option to -convert-netconf: '%s'. Supported options: 'debian'\n", convertNetconf)
2014-03-05 05:06:52 +04:00
os.Exit(1)
2014-03-05 04:36:05 +04:00
}
fmt.Printf("Fetching user-data from datasource of type %q\n", ds.Type())
userdataBytes, err := ds.Fetch()
2014-03-18 20:00:41 +04:00
if err != nil {
fmt.Printf("Failed fetching user-data from datasource: %v\n", err)
if ignoreFailure {
os.Exit(0)
} else {
os.Exit(1)
}
2014-03-18 20:00:41 +04:00
}
env := initialize.NewEnvironment("/", workspace)
if len(userdataBytes) > 0 {
if err := processUserdata(string(userdataBytes), env); err != nil {
fmt.Printf("Failed resolving user-data: %v\n", err)
if !ignoreFailure {
os.Exit(1)
}
}
} else {
fmt.Println("No user data to handle.")
}
if convertNetconf != "" {
if err := processNetconf(convertNetconf, configdrive); err != nil {
fmt.Printf("Failed to process network config: %v\n", err)
if !ignoreFailure {
os.Exit(1)
}
}
}
}
func processUserdata(userdata string, env *initialize.Environment) error {
userdata = env.Apply(userdata)
parsed, err := initialize.ParseUserData(userdata)
2014-03-05 04:36:05 +04:00
if err != nil {
fmt.Printf("Failed parsing user-data: %v\n", err)
return err
2014-03-05 04:36:05 +04:00
}
2014-03-18 20:00:41 +04:00
err = initialize.PrepWorkspace(env.Workspace())
2014-03-05 04:36:05 +04:00
if err != nil {
fmt.Printf("Failed preparing workspace: %v\n", err)
return err
2014-03-05 04:36:05 +04:00
}
switch t := parsed.(type) {
2014-03-18 20:00:41 +04:00
case initialize.CloudConfig:
err = initialize.Apply(t, env)
case system.Script:
2014-03-05 04:36:05 +04:00
var path string
2014-03-18 20:00:41 +04:00
path, err = initialize.PersistScriptInWorkspace(t, env.Workspace())
2014-03-05 04:36:05 +04:00
if err == nil {
var name string
2014-03-18 20:00:41 +04:00
name, err = system.ExecuteScript(path)
initialize.PersistUnitNameInWorkspace(name, env.Workspace())
2014-03-05 04:36:05 +04:00
}
}
return err
2014-03-05 04:36:05 +04:00
}
func processNetconf(convertNetconf, configdrive string) error {
openstackRoot := path.Join(configdrive, "openstack")
metadataFilename := path.Join(openstackRoot, "latest", "meta_data.json")
metadataBytes, err := ioutil.ReadFile(metadataFilename)
2014-03-05 04:36:05 +04:00
if err != nil {
return err
}
var metadata struct {
NetworkConfig struct {
ContentPath string `json:"content_path"`
} `json:"network_config"`
}
if err := json.Unmarshal(metadataBytes, &metadata); err != nil {
return err
}
configPath := metadata.NetworkConfig.ContentPath
if configPath == "" {
fmt.Printf("No network config specified in %q.\n", metadataFilename)
return nil
}
netconfBytes, err := ioutil.ReadFile(path.Join(openstackRoot, configPath))
if err != nil {
return err
}
var interfaces []network.InterfaceGenerator
switch convertNetconf {
case "debian":
interfaces, err = network.ProcessDebianNetconf(string(netconfBytes))
default:
return fmt.Errorf("Unsupported network config format %q", convertNetconf)
}
if err != nil {
return err
}
if err := system.WriteNetworkdConfigs(interfaces); err != nil {
return err
2014-03-05 04:36:05 +04:00
}
return system.RestartNetwork(interfaces)
2014-03-05 04:36:05 +04:00
}