-
Notifications
You must be signed in to change notification settings - Fork 247
/
openstack.go
179 lines (153 loc) · 4.54 KB
/
openstack.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
// Copyright 2016 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.
// The OpenStack provider fetches configurations from the userdata available in
// both the config-drive as well as the network metadata service. Whichever
// responds first is the config that is used.
// NOTE: This provider is still EXPERIMENTAL.
package openstack
import (
"context"
"fmt"
"net/url"
"os"
"os/exec"
"path/filepath"
"time"
"github.com/coreos/ignition/v2/config/v3_5_experimental/types"
"github.com/coreos/ignition/v2/internal/distro"
"github.com/coreos/ignition/v2/internal/log"
"github.com/coreos/ignition/v2/internal/platform"
"github.com/coreos/ignition/v2/internal/providers/util"
"github.com/coreos/ignition/v2/internal/resource"
ut "github.com/coreos/ignition/v2/internal/util"
"github.com/coreos/vcontext/report"
)
const (
configDriveUserdataPath = "/openstack/latest/user_data"
)
var (
metadataServiceUrl = url.URL{
Scheme: "http",
Host: "169.254.169.254",
Path: "openstack/latest/user_data",
}
)
func init() {
platform.Register(platform.Provider{
Name: "openstack",
Fetch: fetchConfig,
})
// the brightbox platform ID just uses the OpenStack provider code
platform.Register(platform.Provider{
Name: "brightbox",
Fetch: fetchConfig,
})
}
func fetchConfig(f *resource.Fetcher) (types.Config, report.Report, error) {
// The fetch-offline approach doesn't work well here because of the "split
// personality" of this provider. See:
// https://github.com/coreos/ignition/issues/1081
if f.Offline {
return types.Config{}, report.Report{}, resource.ErrNeedNet
}
var data []byte
errChan := make(chan error)
ctx, cancel := context.WithCancel(context.Background())
dispatchCount := 0
dispatch := func(name string, fn func() ([]byte, error)) {
dispatchCount++
go func() {
raw, err := fn()
if err != nil {
switch err {
case context.Canceled:
default:
f.Logger.Err("failed to fetch config from %s: %v", name, err)
}
errChan <- err
return
}
data = raw
cancel()
}()
}
dispatch("config drive (config-2)", func() ([]byte, error) {
return fetchConfigFromDevice(f.Logger, ctx, filepath.Join(distro.DiskByLabelDir(), "config-2"))
})
dispatch("config drive (CONFIG-2)", func() ([]byte, error) {
return fetchConfigFromDevice(f.Logger, ctx, filepath.Join(distro.DiskByLabelDir(), "CONFIG-2"))
})
dispatch("metadata service", func() ([]byte, error) {
return fetchConfigFromMetadataService(f)
})
Loop:
for {
select {
case <-ctx.Done():
break Loop
case <-errChan:
dispatchCount--
if dispatchCount == 0 {
f.Logger.Info("couldn't fetch config")
break Loop
}
}
}
return util.ParseConfig(f.Logger, data)
}
func fileExists(path string) bool {
_, err := os.Stat(path)
return (err == nil)
}
func fetchConfigFromDevice(logger *log.Logger, ctx context.Context, path string) ([]byte, error) {
for !fileExists(path) {
logger.Debug("config drive (%q) not found. Waiting...", path)
select {
case <-time.After(time.Second):
case <-ctx.Done():
return nil, ctx.Err()
}
}
logger.Debug("creating temporary mount point")
mnt, err := os.MkdirTemp("", "ignition-configdrive")
if err != nil {
return nil, fmt.Errorf("failed to create temp directory: %v", err)
}
defer os.Remove(mnt)
cmd := exec.Command(distro.MountCmd(), "-o", "ro", "-t", "auto", path, mnt)
if _, err := logger.LogCmd(cmd, "mounting config drive"); err != nil {
return nil, err
}
defer func() {
_ = logger.LogOp(
func() error {
return ut.UmountPath(mnt)
},
"unmounting %q at %q", path, mnt,
)
}()
if !fileExists(filepath.Join(mnt, configDriveUserdataPath)) {
return nil, nil
}
return os.ReadFile(filepath.Join(mnt, configDriveUserdataPath))
}
func fetchConfigFromMetadataService(f *resource.Fetcher) ([]byte, error) {
res, err := f.FetchToBuffer(metadataServiceUrl, resource.FetchOptions{})
// the metadata server exists but doesn't contain any actual metadata,
// assume that there is no config specified
if err == resource.ErrNotFound {
return nil, nil
}
return res, err
}