forked from clearcontainers/runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.go
378 lines (307 loc) · 8.33 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
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
// 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"
"fmt"
"io/ioutil"
"os"
"path/filepath"
goruntime "runtime"
"strings"
"github.com/BurntSushi/toml"
vc "github.com/containers/virtcontainers"
"github.com/containers/virtcontainers/pkg/oci"
)
const (
defaultHypervisor = vc.QemuHypervisor
defaultProxy = vc.CCProxyType
defaultShim = vc.CCShimType
defaultAgent = vc.HyperstartAgent
)
// The TOML configuration file contains a number of sections (or
// tables). The names of these tables are in dotted ("nested table")
// form:
//
// [<component>.<type>]
//
// The components are hypervisor, proxy, shim and agent. For example,
//
// [proxy.cc]
//
// The currently supported types are listed below:
const (
// supported hypervisor component types
qemuHypervisorTableType = "qemu"
// supported proxy component types
ccProxyTableType = "cc"
// supported shim component types
ccShimTableType = "cc"
// supported agent component types
hyperstartAgentTableType = "hyperstart"
)
var (
errUnknownHypervisor = errors.New("unknown hypervisor")
errUnknownAgent = errors.New("unknown agent")
)
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 `toml:"path"`
Kernel string `toml:"kernel"`
Image string `toml:"image"`
KernelParams string `toml:"kernel_params"`
MachineType string `toml:"machine_type"`
DefaultVCPUs int32 `toml:"default_vcpus"`
DefaultMemSz uint32 `toml:"default_memory"`
DisableBlockDeviceUse bool `toml:"disable_block_device_use"`
}
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 (h hypervisor) kernelParams() string {
if h.KernelParams == "" {
return defaultKernelParams
}
return h.KernelParams
}
func (h hypervisor) machineType() string {
if h.MachineType == "" {
return defaultMachineType
}
return h.MachineType
}
func (h hypervisor) defaultVCPUs() uint32 {
if h.DefaultVCPUs < 0 {
return uint32(goruntime.NumCPU())
}
if h.DefaultVCPUs == 0 { // or unspecified
return defaultVCPUCount
}
if h.DefaultVCPUs > 255 { // qemu supports max 255
return 255
}
return uint32(h.DefaultVCPUs)
}
func (h hypervisor) defaultMemSz() uint32 {
if h.DefaultMemSz < 8 {
return defaultMemSize // MiB
}
return h.DefaultMemSz
}
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 newQemuHypervisorConfig(h hypervisor) (vc.HypervisorConfig, error) {
hypervisor := h.path()
kernel := h.kernel()
image := h.image()
kernelParams := h.kernelParams()
machineType := h.machineType()
for _, file := range []string{hypervisor, kernel, image} {
if !fileExists(file) {
return vc.HypervisorConfig{},
fmt.Errorf("File does not exist: %v", file)
}
}
return vc.HypervisorConfig{
HypervisorPath: hypervisor,
KernelPath: kernel,
ImagePath: image,
KernelParams: vc.DeserializeParams(strings.Fields(kernelParams)),
HypervisorMachineType: machineType,
DefaultVCPUs: h.defaultVCPUs(),
DefaultMemSz: h.defaultMemSz(),
DisableBlockDeviceUse: h.DisableBlockDeviceUse,
}, nil
}
func newHyperstartAgentConfig(a agent) (vc.HyperConfig, error) {
dir := a.pauseRootPath()
if !fileExists(dir) {
return vc.HyperConfig{}, fmt.Errorf("Directory does not exist: %v", dir)
}
path := filepath.Join(dir, pauseBinRelativePath)
if !fileExists(path) {
return vc.HyperConfig{}, fmt.Errorf("File does not exist: %v", path)
}
return vc.HyperConfig{
PauseBinPath: path,
}, nil
}
func newCCShimConfig(s shim) (vc.CCShimConfig, error) {
path := s.path()
if !fileExists(path) {
return vc.CCShimConfig{}, fmt.Errorf("File does not exist: %v", path)
}
return vc.CCShimConfig{
Path: path,
}, nil
}
func updateRuntimeConfig(configPath string, tomlConf tomlConfig, config *oci.RuntimeConfig) error {
for k, hypervisor := range tomlConf.Hypervisor {
switch k {
case qemuHypervisorTableType:
hConfig, err := newQemuHypervisorConfig(hypervisor)
if err != nil {
return fmt.Errorf("%v: %v", configPath, err)
}
config.HypervisorConfig = hConfig
break
}
}
for k, proxy := range tomlConf.Proxy {
switch k {
case ccProxyTableType:
pConfig := vc.CCProxyConfig{
URL: proxy.url(),
}
config.ProxyType = vc.CCProxyType
config.ProxyConfig = pConfig
break
}
}
for k, agent := range tomlConf.Agent {
switch k {
case hyperstartAgentTableType:
agentConfig, err := newHyperstartAgentConfig(agent)
if err != nil {
return fmt.Errorf("%v: %v", configPath, err)
}
config.AgentConfig = agentConfig
break
}
}
for k, shim := range tomlConf.Shim {
switch k {
case ccShimTableType:
shConfig, err := newCCShimConfig(shim)
if err != nil {
return fmt.Errorf("%v: %v", configPath, err)
}
config.ShimType = vc.CCShimType
config.ShimConfig = shConfig
break
}
}
return nil
}
// loadConfiguration loads the configuration file and converts it into a
// runtime configuration.
//
// If ignoreLogging is true, the global log will not be initialised nor
// will this function make any log calls.
func loadConfiguration(configPath string, ignoreLogging bool) (resolvedConfigPath, logfilePath string, config oci.RuntimeConfig, err error) {
defaultHypervisorConfig := vc.HypervisorConfig{
HypervisorPath: defaultHypervisorPath,
KernelPath: defaultKernelPath,
ImagePath: defaultImagePath,
HypervisorMachineType: defaultMachineType,
DefaultVCPUs: defaultVCPUCount,
DefaultMemSz: defaultMemSize,
}
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
}
resolved, err := resolvePath(configPath)
if err != nil {
if os.IsNotExist(err) {
// Make the error clearer than the one returned
// by EvalSymlinks().
return "", "", config, fmt.Errorf("Config file %v does not exist", configPath)
}
return "", "", config, err
}
configData, err := ioutil.ReadFile(resolved)
if err != nil {
return "", "", config, err
}
var tomlConf tomlConfig
_, err = toml.Decode(string(configData), &tomlConf)
if err != nil {
return "", "", config, err
}
logfilePath = tomlConf.Runtime.GlobalLogPath
if !ignoreLogging {
// The configuration file may have enabled global logging,
// so handle that before any log calls.
err = handleGlobalLog(logfilePath)
if err != nil {
return "", "", config, err
}
ccLog.Debugf("TOML configuration: %v", tomlConf)
}
if err := updateRuntimeConfig(resolved, tomlConf, &config); err != nil {
return "", "", config, err
}
return resolved, logfilePath, config, nil
}