forked from clearcontainers/runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.go
288 lines (230 loc) · 5.94 KB
/
config.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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
// Copyright (c) 2017 Intel Corporation
//
// 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 main
import (
"errors"
"io/ioutil"
"path/filepath"
"github.com/BurntSushi/toml"
vc "github.com/containers/virtcontainers"
"github.com/containers/virtcontainers/pkg/oci"
)
const (
defaultRuntimeLib = "/var/lib/clear-containers"
defaultRuntimeRun = "/var/run/clear-containers"
defaultRuntimeConfiguration = "/etc/clear-containers/configuration.toml"
defaultHypervisor = vc.QemuHypervisor
defaultProxy = vc.CCProxyType
defaultShim = vc.CCShimType
defaultAgent = vc.HyperstartAgent
defaultKernelPath = "/usr/share/clear-containers/vmlinux.container"
defaultImagePath = "/usr/share/clear-containers/clear-containers.img"
defaultHypervisorPath = "/usr/bin/qemu-lite-system-x86_64"
defaultProxyURL = "unix:///run/cc-oci-runtime/proxy.sock"
defaultPauseRootPath = "/var/lib/clearcontainers/runtime/bundles/pause_bundle"
pauseBinRelativePath = "bin/pause"
)
var defaultShimPath = "/usr/local/libexec/cc-shim"
const (
qemuLite = "qemu-lite"
qemu = "qemu"
)
const (
ccProxy = "cc"
)
const (
ccShim = "cc"
)
const (
hyperstartAgent = "hyperstart"
)
var (
errUnknownHypervisor = errors.New("unknown hypervisor")
errUnknownAgent = errors.New("unknown agent")
errTooManyHypervisors = errors.New("too many hypervisor sections")
errTooManyProxies = errors.New("too many proxy sections")
errTooManyShims = errors.New("too many shim sections")
errTooManyAgents = errors.New("too many agent sections")
)
type tomlConfig struct {
Hypervisor map[string]hypervisor
Proxy map[string]proxy
Shim map[string]shim
Agent map[string]agent
Runtime runtime
}
type hypervisor struct {
Path string
Kernel string
Image string
}
type proxy struct {
URL string `toml:"url"`
}
type runtime struct {
GlobalLogPath string `toml:"global_log_path"`
}
type shim struct {
Path string `toml:"path"`
}
type agent struct {
PauseRootPath string `toml:"pause_root_path"`
}
func (h hypervisor) path() string {
if h.Path == "" {
return defaultHypervisorPath
}
return h.Path
}
func (h hypervisor) kernel() string {
if h.Kernel == "" {
return defaultKernelPath
}
return h.Kernel
}
func (h hypervisor) image() string {
if h.Image == "" {
return defaultImagePath
}
return h.Image
}
func (p proxy) url() string {
if p.URL == "" {
return defaultProxyURL
}
return p.URL
}
func (s shim) path() string {
if s.Path == "" {
return defaultShimPath
}
return s.Path
}
func (a agent) pauseRootPath() string {
if a.PauseRootPath == "" {
return defaultPauseRootPath
}
return a.PauseRootPath
}
func checkConfigParams(tomlConf tomlConfig) error {
if len(tomlConf.Hypervisor) > 1 {
return errTooManyHypervisors
}
if len(tomlConf.Proxy) > 1 {
return errTooManyProxies
}
if len(tomlConf.Shim) > 1 {
return errTooManyShims
}
if len(tomlConf.Agent) > 1 {
return errTooManyAgents
}
return nil
}
func updateRuntimeConfig(tomlConf tomlConfig, config *oci.RuntimeConfig) error {
for k, hypervisor := range tomlConf.Hypervisor {
switch k {
case qemu:
fallthrough
case qemuLite:
hConfig := vc.HypervisorConfig{
HypervisorPath: hypervisor.path(),
KernelPath: hypervisor.kernel(),
ImagePath: hypervisor.image(),
}
config.HypervisorConfig = hConfig
break
}
}
for k, proxy := range tomlConf.Proxy {
switch k {
case ccProxy:
pConfig := vc.CCProxyConfig{
URL: proxy.url(),
}
config.ProxyType = vc.CCProxyType
config.ProxyConfig = pConfig
break
}
}
for k, agent := range tomlConf.Agent {
switch k {
case hyperstartAgent:
path := filepath.Join(agent.pauseRootPath(),
pauseBinRelativePath)
agentConfig := vc.HyperConfig{
PauseBinPath: path,
}
config.AgentConfig = agentConfig
break
}
}
for k, shim := range tomlConf.Shim {
switch k {
case ccShim:
shConfig := vc.CCShimConfig{
Path: shim.path(),
}
config.ShimType = vc.CCShimType
config.ShimConfig = shConfig
break
}
}
return nil
}
func loadConfiguration(configPath string) (oci.RuntimeConfig, error) {
defaultHypervisorConfig := vc.HypervisorConfig{
HypervisorPath: defaultHypervisorPath,
KernelPath: defaultKernelPath,
ImagePath: defaultImagePath,
}
defaultAgentConfig := vc.HyperConfig{
PauseBinPath: filepath.Join(defaultPauseRootPath,
pauseBinRelativePath),
}
config := oci.RuntimeConfig{
HypervisorType: defaultHypervisor,
HypervisorConfig: defaultHypervisorConfig,
AgentType: defaultAgent,
AgentConfig: defaultAgentConfig,
ProxyType: defaultProxy,
ShimType: defaultShim,
}
if configPath == "" {
configPath = defaultRuntimeConfiguration
}
configData, err := ioutil.ReadFile(configPath)
if err != nil {
return config, err
}
var tomlConf tomlConfig
_, err = toml.Decode(string(configData), &tomlConf)
if err != nil {
return config, err
}
// The configuration file may have enabled global logging,
// so handle that before any log calls.
err = handleGlobalLog(tomlConf.Runtime.GlobalLogPath)
if err != nil {
return config, err
}
ccLog.Debugf("TOML configuration: %v", tomlConf)
if err := checkConfigParams(tomlConf); err != nil {
return config, err
}
if err := updateRuntimeConfig(tomlConf, &config); err != nil {
return config, err
}
return config, nil
}