2014-10-18 02:36:22 +04:00
|
|
|
/*
|
|
|
|
Copyright 2014 CoreOS, 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.
|
|
|
|
*/
|
|
|
|
|
2014-07-31 00:56:36 +04:00
|
|
|
package proc_cmdline
|
2014-04-23 02:36:07 +04:00
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"io/ioutil"
|
|
|
|
"log"
|
|
|
|
"strings"
|
2014-05-21 21:13:20 +04:00
|
|
|
|
2014-05-22 22:37:19 +04:00
|
|
|
"github.com/coreos/coreos-cloudinit/pkg"
|
2014-04-23 02:36:07 +04:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
ProcCmdlineLocation = "/proc/cmdline"
|
|
|
|
ProcCmdlineCloudConfigFlag = "cloud-config-url"
|
|
|
|
)
|
|
|
|
|
2014-06-18 22:36:06 +04:00
|
|
|
type procCmdline struct {
|
2014-05-15 17:57:40 +04:00
|
|
|
Location string
|
|
|
|
}
|
2014-04-23 02:36:07 +04:00
|
|
|
|
2014-07-31 00:56:36 +04:00
|
|
|
func NewDatasource() *procCmdline {
|
2014-05-15 17:57:40 +04:00
|
|
|
return &procCmdline{Location: ProcCmdlineLocation}
|
2014-04-23 02:36:07 +04:00
|
|
|
}
|
|
|
|
|
2014-06-27 02:17:53 +04:00
|
|
|
func (c *procCmdline) IsAvailable() bool {
|
|
|
|
contents, err := ioutil.ReadFile(c.Location)
|
|
|
|
if err != nil {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
cmdline := strings.TrimSpace(string(contents))
|
|
|
|
_, err = findCloudConfigURL(cmdline)
|
|
|
|
return (err == nil)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *procCmdline) AvailabilityChanges() bool {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2014-06-21 08:11:57 +04:00
|
|
|
func (c *procCmdline) ConfigRoot() string {
|
2014-06-18 22:36:06 +04:00
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2014-06-21 08:11:57 +04:00
|
|
|
func (c *procCmdline) FetchMetadata() ([]byte, error) {
|
2014-06-18 22:58:18 +04:00
|
|
|
return []byte{}, nil
|
|
|
|
}
|
|
|
|
|
2014-06-21 08:11:57 +04:00
|
|
|
func (c *procCmdline) FetchUserdata() ([]byte, error) {
|
|
|
|
contents, err := ioutil.ReadFile(c.Location)
|
2014-04-23 02:36:07 +04:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2014-05-15 17:57:40 +04:00
|
|
|
cmdline := strings.TrimSpace(string(contents))
|
|
|
|
url, err := findCloudConfigURL(cmdline)
|
2014-04-23 02:36:07 +04:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2014-05-22 22:37:19 +04:00
|
|
|
client := pkg.NewHttpClient()
|
2014-06-27 01:58:32 +04:00
|
|
|
cfg, err := client.GetRetry(url)
|
2014-04-23 02:36:07 +04:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return cfg, nil
|
|
|
|
}
|
|
|
|
|
2014-08-18 23:20:25 +04:00
|
|
|
func (c *procCmdline) FetchNetworkConfig(filename string) ([]byte, error) {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
2014-06-21 08:11:57 +04:00
|
|
|
func (c *procCmdline) Type() string {
|
2014-04-23 02:36:07 +04:00
|
|
|
return "proc-cmdline"
|
|
|
|
}
|
|
|
|
|
|
|
|
func findCloudConfigURL(input string) (url string, err error) {
|
|
|
|
err = errors.New("cloud-config-url not found")
|
|
|
|
for _, token := range strings.Split(input, " ") {
|
|
|
|
parts := strings.SplitN(token, "=", 2)
|
|
|
|
|
|
|
|
key := parts[0]
|
|
|
|
key = strings.Replace(key, "_", "-", -1)
|
|
|
|
|
|
|
|
if key != "cloud-config-url" {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(parts) != 2 {
|
|
|
|
log.Printf("Found cloud-config-url in /proc/cmdline with no value, ignoring.")
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
url = parts[1]
|
|
|
|
err = nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|