123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430 |
- package config
- import (
- "io/ioutil"
- "os"
- "path"
- "path/filepath"
- "reflect"
- "sort"
- "strings"
- "github.com/rancher/os/config/cloudinit/datasource"
- "github.com/rancher/os/config/cloudinit/initialize"
- "github.com/rancher/os/config/cmdline"
- "github.com/rancher/os/pkg/log"
- "github.com/rancher/os/pkg/util"
- yaml "github.com/cloudfoundry-incubator/candiedyaml"
- "github.com/docker/engine-api/types"
- composeConfig "github.com/docker/libcompose/config"
- "github.com/xeipuuv/gojsonschema"
- )
- func ReadConfig(bytes []byte, substituteMetadataVars bool, files ...string) (*CloudConfig, error) {
- data, err := readConfigs(bytes, substituteMetadataVars, true, files...)
- if err != nil {
- return nil, err
- }
- c := &CloudConfig{}
- if err := util.Convert(data, c); err != nil {
- return nil, err
- }
- c = amendNils(c)
- c = amendContainerNames(c)
- return c, nil
- }
- func loadRawDiskConfig(dirPrefix string, full bool) map[interface{}]interface{} {
- var rawCfg map[interface{}]interface{}
- if full {
- rawCfg, _ = readConfigs(nil, true, false, OsConfigFile, OemConfigFile)
- }
- files := CloudConfigDirFiles(dirPrefix)
- files = append(files, path.Join(dirPrefix, CloudConfigFile))
- additionalCfgs, _ := readConfigs(nil, true, false, files...)
- return util.Merge(rawCfg, additionalCfgs)
- }
- func loadRawDiskConfigWithError(dirPrefix string, full bool) (map[interface{}]interface{}, error) {
- var rawCfg map[interface{}]interface{}
- rawCfg, err := readConfigs(nil, true, true, OsConfigFile, OemConfigFile)
- if err != nil {
- return nil, err
- }
- files := CloudConfigDirFiles(dirPrefix)
- files = append(files, path.Join(dirPrefix, CloudConfigFile))
- additionalCfgs, err := readConfigs(nil, true, true, files...)
- if err != nil {
- return nil, err
- }
- return util.Merge(rawCfg, additionalCfgs), nil
- }
- func loadRawConfig(dirPrefix string, full bool) map[interface{}]interface{} {
- rawCfg := loadRawDiskConfig(dirPrefix, full)
- procCmdline, err := cmdline.Read(false)
- if err != nil {
- log.WithFields(log.Fields{"err": err}).Error("Failed to read kernel params")
- }
- rawCfg = util.Merge(rawCfg, procCmdline)
- rawCfg = util.Merge(rawCfg, readElidedCmdline(rawCfg))
- rawCfg = applyDebugFlags(rawCfg)
- return mergeMetadata(rawCfg, readMetadata())
- }
- func loadRawConfigWithError(dirPrefix string, full bool) (map[interface{}]interface{}, error) {
- rawCfg, err := loadRawDiskConfigWithError(dirPrefix, full)
- if err != nil {
- return nil, err
- }
- procCmdline, err := cmdline.Read(false)
- if err != nil {
- log.WithFields(log.Fields{"err": err}).Error("Failed to read kernel params")
- }
- rawCfg = util.Merge(rawCfg, procCmdline)
- rawCfg = util.Merge(rawCfg, readElidedCmdline(rawCfg))
- rawCfg = applyDebugFlags(rawCfg)
- return mergeMetadata(rawCfg, readMetadata()), nil
- }
- func LoadConfig() *CloudConfig {
- cfg := LoadConfigWithPrefix("")
- if cfg.Rancher.Debug {
- log.SetDefaultLevel(log.DebugLevel)
- } else {
- log.SetDefaultLevel(log.InfoLevel)
- }
- return cfg
- }
- func LoadConfigWithError() (*CloudConfig, *gojsonschema.Result, error) {
- rawCfg, err := loadRawConfigWithError("", true)
- if err != nil {
- return &CloudConfig{}, nil, err
- }
- cfg := &CloudConfig{}
- if err := util.Convert(rawCfg, cfg); err != nil {
- validationErrors, err := ValidateRawCfg(rawCfg)
- return &CloudConfig{}, validationErrors, err
- }
- cfg = amendNils(cfg)
- cfg = amendContainerNames(cfg)
- return cfg, nil, nil
- }
- func LoadConfigWithPrefix(dirPrefix string) *CloudConfig {
- rawCfg := loadRawConfig(dirPrefix, true)
- cfg := &CloudConfig{}
- if err := util.Convert(rawCfg, cfg); err != nil {
- log.Errorf("EXITING: Failed to parse configuration: %s", err)
- log.Debugf("Bad cfg:\n%v\n", rawCfg)
- // no point returning {}, it'll just sit there broken
- // TODO: print some context around what failed..
- validationErrors, err := ValidateRawCfg(rawCfg)
- if err != nil {
- log.Fatal(err)
- }
- for _, validationError := range validationErrors.Errors() {
- log.Error(validationError)
- }
- // TODO: I'd love to panic & recover(), for issues on boot, but it doesn't work yet
- os.Exit(-1)
- return &CloudConfig{}
- }
- cfg = amendNils(cfg)
- cfg = amendContainerNames(cfg)
- return cfg
- }
- func Insert(m interface{}, args ...interface{}) interface{} {
- // TODO: move to util.go
- if len(args)%2 != 0 {
- panic("must have pairs of keys and values")
- }
- mv := reflect.ValueOf(m)
- if mv.IsNil() {
- mv = reflect.MakeMap(mv.Type())
- }
- for i := 0; i < len(args); i += 2 {
- mv.SetMapIndex(reflect.ValueOf(args[i]), reflect.ValueOf(args[i+1]))
- }
- return mv.Interface()
- }
- func SaveInitCmdline(cmdLineArgs string) {
- elidedCfg := cmdline.Parse(cmdLineArgs, false)
- env := Insert(make(map[interface{}]interface{}), interface{}("EXTRA_CMDLINE"), interface{}(cmdLineArgs))
- rancher := Insert(make(map[interface{}]interface{}), interface{}("environment"), env)
- newCfg := Insert(elidedCfg, interface{}("rancher"), rancher)
- // make it easy for readElidedCmdline(rawCfg)
- newCfg = Insert(newCfg, interface{}("EXTRA_CMDLINE"), interface{}(cmdLineArgs))
- if err := WriteToFile(newCfg, CloudConfigInitFile); err != nil {
- log.Errorf("Failed to write init-cmdline config: %s", err)
- }
- }
- func CloudConfigDirFiles(dirPrefix string) []string {
- cloudConfigDir := path.Join(dirPrefix, CloudConfigDir)
- files, err := ioutil.ReadDir(cloudConfigDir)
- if err != nil {
- if os.IsNotExist(err) {
- // do nothing
- log.Debugf("%s does not exist", CloudConfigDir)
- } else {
- log.Errorf("Failed to read %s: %v", CloudConfigDir, err)
- }
- return []string{}
- }
- var finalFiles []string
- for _, file := range files {
- if !file.IsDir() && !strings.HasPrefix(file.Name(), ".") {
- finalFiles = append(finalFiles, path.Join(cloudConfigDir, file.Name()))
- }
- }
- return finalFiles
- }
- func applyDebugFlags(rawCfg map[interface{}]interface{}) map[interface{}]interface{} {
- cfg := &CloudConfig{}
- if err := util.Convert(rawCfg, cfg); err != nil {
- return rawCfg
- }
- if !cfg.Rancher.Debug {
- return rawCfg
- }
- log.SetLevel(log.DebugLevel)
- _, rawCfg = cmdline.GetOrSetVal("rancher.docker.debug", rawCfg, true)
- _, rawCfg = cmdline.GetOrSetVal("rancher.system_docker.debug", rawCfg, true)
- _, rawCfg = cmdline.GetOrSetVal("rancher.bootstrap_docker.debug", rawCfg, true)
- _, rawCfg = cmdline.GetOrSetVal("rancher.log", rawCfg, true)
- return rawCfg
- }
- // mergeMetadata merges certain options from md (meta-data from the datasource)
- // onto cc (a CloudConfig derived from user-data), if they are not already set
- // on cc (i.e. user-data always takes precedence)
- func mergeMetadata(rawCfg map[interface{}]interface{}, md datasource.Metadata) map[interface{}]interface{} {
- if rawCfg == nil {
- return nil
- }
- out := util.MapCopy(rawCfg)
- outHostname, ok := out["hostname"]
- if !ok {
- outHostname = ""
- }
- if md.Hostname != "" {
- if outHostname != "" {
- log.Debugf("Warning: user-data hostname (%s) overrides metadata hostname (%s)\n", outHostname, md.Hostname)
- } else {
- out["hostname"] = md.Hostname
- }
- }
- // Sort SSH keys by key name
- keys := []string{}
- for k := range md.SSHPublicKeys {
- keys = append(keys, k)
- }
- sort.Sort(sort.StringSlice(keys))
- finalKeys, _ := out["ssh_authorized_keys"].([]interface{})
- for _, k := range keys {
- finalKeys = append(finalKeys, md.SSHPublicKeys[k])
- }
- out["ssh_authorized_keys"] = finalKeys
- rancherOut, _ := out["rancher"].(map[interface{}]interface{})
- if _, ok := rancherOut["resize_device"]; md.RootDisk != "" && !ok {
- rancherOut["resize_device"] = md.RootDisk
- }
- return out
- }
- func readMetadata() datasource.Metadata {
- metadata := datasource.Metadata{}
- if metaDataBytes, err := ioutil.ReadFile(MetaDataFile); err == nil {
- yaml.Unmarshal(metaDataBytes, &metadata)
- }
- return metadata
- }
- func readElidedCmdline(rawCfg map[interface{}]interface{}) map[interface{}]interface{} {
- for k, v := range rawCfg {
- if key, _ := k.(string); key == "EXTRA_CMDLINE" {
- if val, ok := v.(string); ok {
- cmdLineObj := cmdline.Parse(strings.TrimSpace(util.UnescapeKernelParams(string(val))), false)
- return cmdLineObj
- }
- }
- }
- return nil
- }
- func amendNils(c *CloudConfig) *CloudConfig {
- t := *c
- if t.Rancher.Environment == nil {
- t.Rancher.Environment = map[string]string{}
- }
- if t.Rancher.BootstrapContainers == nil {
- t.Rancher.BootstrapContainers = map[string]*composeConfig.ServiceConfigV1{}
- }
- if t.Rancher.Services == nil {
- t.Rancher.Services = map[string]*composeConfig.ServiceConfigV1{}
- }
- if t.Rancher.ServicesInclude == nil {
- t.Rancher.ServicesInclude = map[string]bool{}
- }
- if t.Rancher.RegistryAuths == nil {
- t.Rancher.RegistryAuths = map[string]types.AuthConfig{}
- }
- if t.Rancher.Sysctl == nil {
- t.Rancher.Sysctl = map[string]string{}
- }
- return &t
- }
- func amendContainerNames(c *CloudConfig) *CloudConfig {
- for _, scm := range []map[string]*composeConfig.ServiceConfigV1{
- c.Rancher.BootstrapContainers,
- c.Rancher.Services,
- } {
- for k, v := range scm {
- v.ContainerName = k
- }
- }
- return c
- }
- func WriteToFile(data interface{}, filename string) error {
- content, err := yaml.Marshal(data)
- if err != nil {
- return err
- }
- if err := os.MkdirAll(filepath.Dir(filename), os.ModeDir|0700); err != nil {
- return err
- }
- return util.WriteFileAtomic(filename, content, 400)
- }
- func readConfigs(bytes []byte, substituteMetadataVars, returnErr bool, files ...string) (map[interface{}]interface{}, error) {
- // You can't just overlay yaml bytes on to maps, it won't merge, but instead
- // just override the keys and not merge the map values.
- left := make(map[interface{}]interface{})
- metadata := readMetadata()
- for _, file := range files {
- //os.Stderr.WriteString(fmt.Sprintf("READCONFIGS(%s)", file))
- content, err := readConfigFile(file)
- if err != nil {
- if returnErr {
- return nil, err
- }
- log.Errorf("Failed to read config file %s: %s", file, err)
- continue
- }
- if len(content) == 0 {
- continue
- }
- if substituteMetadataVars {
- content = substituteVars(content, metadata)
- }
- right := make(map[interface{}]interface{})
- err = yaml.Unmarshal(content, &right)
- if err != nil {
- if returnErr {
- return nil, err
- }
- log.Errorf("Failed to parse config file %s: %s", file, err)
- continue
- }
- // Verify there are no issues converting to CloudConfig
- c := &CloudConfig{}
- if err := util.Convert(right, c); err != nil {
- if returnErr {
- return nil, err
- }
- log.Errorf("Failed to parse config file %s: %s", file, err)
- continue
- }
- left = util.Merge(left, right)
- }
- if bytes == nil || len(bytes) == 0 {
- return left, nil
- }
- right := make(map[interface{}]interface{})
- if substituteMetadataVars {
- bytes = substituteVars(bytes, metadata)
- }
- if err := yaml.Unmarshal(bytes, &right); err != nil {
- if returnErr {
- return nil, err
- }
- log.Errorf("Failed to parse bytes: %s", err)
- return left, nil
- }
- c := &CloudConfig{}
- if err := util.Convert(right, c); err != nil {
- if returnErr {
- return nil, err
- }
- log.Errorf("Failed to parse bytes: %s", err)
- return left, nil
- }
- left = util.Merge(left, right)
- return left, nil
- }
- func readConfigFile(file string) ([]byte, error) {
- content, err := ioutil.ReadFile(file)
- if err != nil {
- if os.IsNotExist(err) {
- err = nil
- content = []byte{}
- } else {
- return nil, err
- }
- }
- return content, err
- }
- func substituteVars(userDataBytes []byte, metadata datasource.Metadata) []byte {
- // TODO: I think this currently does nothing - its hardcoded for COREOS env..
- env := initialize.NewEnvironment("", "", "", "", metadata)
- userData := env.Apply(string(userDataBytes))
- return []byte(userData)
- }
|