From b093094292b9c3f4ef610f42f321addaef370f56 Mon Sep 17 00:00:00 2001 From: Alex Crawford Date: Tue, 22 Jul 2014 11:36:58 -0700 Subject: [PATCH] config: Verify that type assertions are valid --- initialize/config.go | 63 +++++++++++++++++++++++---------------- initialize/config_test.go | 28 +++++++++++++++++ 2 files changed, 65 insertions(+), 26 deletions(-) diff --git a/initialize/config.go b/initialize/config.go index cddace7..b6b6370 100644 --- a/initialize/config.go +++ b/initialize/config.go @@ -66,51 +66,62 @@ func warnOnUnrecognizedKeys(contents string, warn warner) { } // Check for unrecognized coreos options, if any are set - coreos, ok := c["coreos"] - if ok { - set := coreos.(map[interface{}]interface{}) - known := cc["coreos"].(map[interface{}]interface{}) - for k, _ := range set { - key := k.(string) - if _, ok := known[key]; !ok { - warn("Warning: unrecognized key %q in coreos section of provided cloud config - ignoring", key) + if coreos, ok := c["coreos"]; ok { + if set, ok := coreos.(map[interface{}]interface{}); ok { + known := cc["coreos"].(map[interface{}]interface{}) + for k, _ := range set { + if key, ok := k.(string); ok { + if _, ok := known[key]; !ok { + warn("Warning: unrecognized key %q in coreos section of provided cloud config - ignoring", key) + } + } else { + warn("Warning: unrecognized key %q in coreos section of provided cloud config - ignoring", k) + } } } } // Check for any badly-specified users, if any are set - users, ok := c["users"] - if ok { + if users, ok := c["users"]; ok { var known map[string]interface{} b, _ := goyaml.Marshal(&system.User{}) goyaml.Unmarshal(b, &known) - set := users.([]interface{}) - for _, u := range set { - user := u.(map[interface{}]interface{}) - for k, _ := range user { - key := k.(string) - if _, ok := known[key]; !ok { - warn("Warning: unrecognized key %q in user section of cloud config - ignoring", key) + if set, ok := users.([]interface{}); ok { + for _, u := range set { + if user, ok := u.(map[interface{}]interface{}); ok { + for k, _ := range user { + if key, ok := k.(string); ok { + if _, ok := known[key]; !ok { + warn("Warning: unrecognized key %q in user section of cloud config - ignoring", key) + } + } else { + warn("Warning: unrecognized key %q in user section of cloud config - ignoring", k) + } + } } } } } // Check for any badly-specified files, if any are set - files, ok := c["write_files"] - if ok { + if files, ok := c["write_files"]; ok { var known map[string]interface{} b, _ := goyaml.Marshal(&system.File{}) goyaml.Unmarshal(b, &known) - set := files.([]interface{}) - for _, f := range set { - file := f.(map[interface{}]interface{}) - for k, _ := range file { - key := k.(string) - if _, ok := known[key]; !ok { - warn("Warning: unrecognized key %q in file section of cloud config - ignoring", key) + if set, ok := files.([]interface{}); ok { + for _, f := range set { + if file, ok := f.(map[interface{}]interface{}); ok { + for k, _ := range file { + if key, ok := k.(string); ok { + if _, ok := known[key]; !ok { + warn("Warning: unrecognized key %q in file section of cloud config - ignoring", key) + } + } else { + warn("Warning: unrecognized key %q in file section of cloud config - ignoring", k) + } + } } } } diff --git a/initialize/config_test.go b/initialize/config_test.go index f2c5b73..0e91933 100644 --- a/initialize/config_test.go +++ b/initialize/config_test.go @@ -8,6 +8,34 @@ import ( "github.com/coreos/coreos-cloudinit/system" ) +func TestCloudConfigInvalidKeys(t *testing.T) { + defer func() { + if r := recover(); r != nil { + t.Fatalf("panic while instantiating CloudConfig with nil keys: %v", r) + } + }() + + for _, tt := range []struct { + contents string + }{ + {"coreos:"}, + {"ssh_authorized_keys:"}, + {"ssh_authorized_keys:\n -"}, + {"ssh_authorized_keys:\n - 0:"}, + {"write_files:"}, + {"write_files:\n -"}, + {"write_files:\n - 0:"}, + {"users:"}, + {"users:\n -"}, + {"users:\n - 0:"}, + } { + _, err := NewCloudConfig(tt.contents) + if err != nil { + t.Fatalf("error instantiating CloudConfig with invalid keys: %v", err) + } + } +} + func TestCloudConfigUnknownKeys(t *testing.T) { contents := ` coreos: