123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- // 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 waagent
- import (
- "encoding/xml"
- "fmt"
- "io/ioutil"
- "net"
- "os"
- "path"
- "github.com/rancher/os/log"
- "github.com/rancher/os/config/cloudinit/datasource"
- )
- type Waagent struct {
- root string
- readFile func(filename string) ([]byte, error)
- lastError error
- }
- func NewDatasource(root string) *Waagent {
- return &Waagent{root, ioutil.ReadFile, nil}
- }
- func (a *Waagent) IsAvailable() bool {
- _, a.lastError = os.Stat(path.Join(a.root, "provisioned"))
- return !os.IsNotExist(a.lastError)
- }
- func (a *Waagent) Finish() error {
- return nil
- }
- func (a *Waagent) String() string {
- return fmt.Sprintf("%s: %s (lastError: %s)", a.Type(), a.root, a.lastError)
- }
- func (a *Waagent) AvailabilityChanges() bool {
- return true
- }
- func (a *Waagent) ConfigRoot() string {
- return a.root
- }
- func (a *Waagent) FetchMetadata() (metadata datasource.Metadata, err error) {
- var metadataBytes []byte
- if metadataBytes, err = a.tryReadFile(path.Join(a.root, "SharedConfig.xml")); err != nil {
- return
- }
- if len(metadataBytes) == 0 {
- return
- }
- type Instance struct {
- ID string `xml:"id,attr"`
- Address string `xml:"address,attr"`
- InputEndpoints struct {
- Endpoints []struct {
- LoadBalancedPublicAddress string `xml:"loadBalancedPublicAddress,attr"`
- } `xml:"Endpoint"`
- }
- }
- type SharedConfig struct {
- Incarnation struct {
- Instance string `xml:"instance,attr"`
- }
- Instances struct {
- Instances []Instance `xml:"Instance"`
- }
- }
- var m SharedConfig
- if err = xml.Unmarshal(metadataBytes, &m); err != nil {
- return
- }
- var instance Instance
- for _, i := range m.Instances.Instances {
- if i.ID == m.Incarnation.Instance {
- instance = i
- break
- }
- }
- metadata.PrivateIPv4 = net.ParseIP(instance.Address)
- for _, e := range instance.InputEndpoints.Endpoints {
- host, _, err := net.SplitHostPort(e.LoadBalancedPublicAddress)
- if err == nil {
- metadata.PublicIPv4 = net.ParseIP(host)
- break
- }
- }
- return
- }
- func (a *Waagent) FetchUserdata() ([]byte, error) {
- return a.tryReadFile(path.Join(a.root, "CustomData"))
- }
- func (a *Waagent) Type() string {
- return "Waagent"
- }
- func (a *Waagent) tryReadFile(filename string) ([]byte, error) {
- log.Printf("Attempting to read from %q\n", filename)
- data, err := a.readFile(filename)
- if os.IsNotExist(err) {
- err = nil
- }
- return data, err
- }
|