1
0
mirror of https://github.com/rancher/os.git synced 2025-06-30 08:41:48 +00:00
os/config/cloudinit/datasource/proccmdline/proc_cmdline.go

123 lines
2.6 KiB
Go
Raw Normal View History

2015-02-19 20:46:06 +00:00
// Copyright 2015 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.
package proccmdline
2015-02-19 20:46:06 +00:00
import (
"errors"
"fmt"
2015-02-19 20:46:06 +00:00
"io/ioutil"
"strings"
"github.com/rancher/os/log"
"github.com/rancher/os/config/cloudinit/datasource"
"github.com/rancher/os/config/cloudinit/pkg"
2015-02-19 20:46:06 +00:00
)
const (
ProcCmdlineLocation = "/proc/cmdline"
ProcCmdlineCloudConfigFlag = "cloud-config-url"
)
type ProcCmdline struct {
Location string
lastError error
2015-02-19 20:46:06 +00:00
}
func NewDatasource() *ProcCmdline {
return &ProcCmdline{Location: ProcCmdlineLocation}
2015-02-19 20:46:06 +00:00
}
func (c *ProcCmdline) IsAvailable() bool {
var contents []byte
contents, c.lastError = ioutil.ReadFile(c.Location)
if c.lastError != nil {
2015-02-19 20:46:06 +00:00
return false
}
cmdline := strings.TrimSpace(string(contents))
_, c.lastError = findCloudConfigURL(cmdline)
return (c.lastError == nil)
}
func (c *ProcCmdline) Finish() error {
return nil
}
func (c *ProcCmdline) String() string {
2018-07-30 09:40:58 +00:00
return fmt.Sprintf("%s: %s (lastError: %v)", c.Type(), c.Location, c.lastError)
2015-02-19 20:46:06 +00:00
}
func (c *ProcCmdline) AvailabilityChanges() bool {
2015-02-19 20:46:06 +00:00
return false
}
func (c *ProcCmdline) ConfigRoot() string {
2015-02-19 20:46:06 +00:00
return ""
}
func (c *ProcCmdline) FetchMetadata() (datasource.Metadata, error) {
2015-02-19 20:46:06 +00:00
return datasource.Metadata{}, nil
}
func (c *ProcCmdline) FetchUserdata() ([]byte, error) {
2015-02-19 20:46:06 +00:00
contents, err := ioutil.ReadFile(c.Location)
if err != nil {
return nil, err
}
cmdline := strings.TrimSpace(string(contents))
url, err := findCloudConfigURL(cmdline)
if err != nil {
return nil, err
}
client := pkg.NewHTTPClient()
2015-02-19 20:46:06 +00:00
cfg, err := client.GetRetry(url)
if err != nil {
return nil, err
}
return cfg, nil
}
func (c *ProcCmdline) Type() string {
2015-02-19 20:46:06 +00: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
}