-
Notifications
You must be signed in to change notification settings - Fork 73
/
options.go
399 lines (355 loc) · 13.1 KB
/
options.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
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License"). You may
// not use this file except in compliance with the License. A copy of the
// License is located at
//
// http://aws.amazon.com/apache2.0/
//
// or in the "license" file accompanying this file. This file 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 (
"encoding/json"
"fmt"
"io"
"math/rand"
"os"
"path/filepath"
"strconv"
"strings"
firecracker "github.com/firecracker-microvm/firecracker-go-sdk"
models "github.com/firecracker-microvm/firecracker-go-sdk/client/models"
log "github.com/sirupsen/logrus"
)
func newOptions() *options {
return &options{
createFifoFileLogs: createFifoFileLogs,
}
}
type options struct {
FcBinary string `long:"firecracker-binary" description:"Path to firecracker binary"`
FcKernelImage string `long:"kernel" description:"Path to the kernel image" default:"./vmlinux"`
FcKernelCmdLine string `long:"kernel-opts" description:"Kernel commandline" default:"ro console=ttyS0 noapic reboot=k panic=1 pci=off nomodules"`
FcInitrd string `long:"initrd-path" description:"Path to initrd"`
FcRootDrivePath string `long:"root-drive" description:"Path to root disk image"`
FcRootPartUUID string `long:"root-partition" description:"Root partition UUID"`
FcAdditionalDrives []string `long:"add-drive" description:"Path to additional drive, suffixed with :ro or :rw, can be specified multiple times"`
FcNicConfig []string `long:"tap-device" description:"NIC info, specified as DEVICE/MAC, can be specified multiple times"`
FcVsockDevices []string `long:"vsock-device" description:"Vsock interface, specified as PATH:CID. Multiple OK"`
FcLogFifo string `long:"vmm-log-fifo" description:"FIFO for firecracker logs"`
FcLogLevel string `long:"log-level" description:"vmm log level" default:"Debug"`
FcMetricsFifo string `long:"metrics-fifo" description:"FIFO for firecracker metrics"`
FcDisableSmt bool `long:"disable-smt" short:"t" description:"Disable CPU Simultaneous Multithreading"`
FcCPUCount int64 `long:"ncpus" short:"c" description:"Number of CPUs" default:"1"`
FcCPUTemplate string `long:"cpu-template" description:"Firecracker CPU Template (C3 or T2)"`
FcMemSz int64 `long:"memory" short:"m" description:"VM memory, in MiB" default:"512"`
FcMetadata string `long:"metadata" description:"Firecracker Metadata for MMDS (json)"`
FcFifoLogFile string `long:"firecracker-log" short:"l" description:"pipes the fifo contents to the specified file"`
FcSocketPath string `long:"socket-path" short:"s" description:"path to use for firecracker socket, defaults to a unique file in in the first existing directory from {$HOME, $TMPDIR, or /tmp}"`
Debug bool `long:"debug" short:"d" description:"Enable debug output"`
Version bool `long:"version" description:"Outputs the version of the application"`
Id string `long:"id" description:"Jailer VMM id"`
ExecFile string `long:"exec-file" description:"Jailer executable"`
JailerBinary string `long:"jailer" description:"Jailer binary"`
Uid int `long:"uid" description:"Jailer uid for dropping privileges"`
Gid int `long:"gid" description:"Jailer gid for dropping privileges"`
NumaNode int `long:"node" description:"Jailer numa node"`
ChrootBaseDir string `long:"chroot-base-dir" description:"Jailer chroot base directory"`
Daemonize bool `long:"daemonize" description:"Run jailer as daemon"`
closers []func() error
validMetadata interface{}
createFifoFileLogs func(fifoPath string) (*os.File, error)
}
// Converts options to a usable firecracker config
func (opts *options) getFirecrackerConfig() (firecracker.Config, error) {
// validate metadata json
if opts.FcMetadata != "" {
if err := json.Unmarshal([]byte(opts.FcMetadata), &opts.validMetadata); err != nil {
return firecracker.Config{}, fmt.Errorf("%s: %v", errInvalidMetadata.Error(), err)
}
}
//setup NICs
NICs, err := opts.getNetwork()
if err != nil {
return firecracker.Config{}, err
}
// BlockDevices
blockDevices, err := opts.getBlockDevices()
if err != nil {
return firecracker.Config{}, err
}
// vsocks
vsocks, err := parseVsocks(opts.FcVsockDevices)
if err != nil {
return firecracker.Config{}, err
}
//fifos
fifo, err := opts.handleFifos()
if err != nil {
return firecracker.Config{}, err
}
var (
socketPath string
jail *firecracker.JailerConfig
)
if opts.JailerBinary != "" {
jail = &firecracker.JailerConfig{
GID: firecracker.Int(opts.Gid),
UID: firecracker.Int(opts.Uid),
ID: opts.Id,
NumaNode: firecracker.Int(opts.NumaNode),
ExecFile: opts.ExecFile,
JailerBinary: opts.JailerBinary,
ChrootBaseDir: opts.ChrootBaseDir,
Daemonize: opts.Daemonize,
ChrootStrategy: firecracker.NewNaiveChrootStrategy(opts.FcKernelImage),
Stdout: os.Stdout,
Stderr: os.Stderr,
Stdin: os.Stdin,
}
} else {
// if no jail is active, either use the path from the arguments
if opts.FcSocketPath != "" {
socketPath = opts.FcSocketPath
} else {
// or generate a default socket path
socketPath = getSocketPath()
}
}
return firecracker.Config{
SocketPath: socketPath,
LogFifo: opts.FcLogFifo,
LogLevel: opts.FcLogLevel,
MetricsFifo: opts.FcMetricsFifo,
FifoLogWriter: fifo,
KernelImagePath: opts.FcKernelImage,
KernelArgs: opts.FcKernelCmdLine,
InitrdPath: opts.FcInitrd,
Drives: blockDevices,
NetworkInterfaces: NICs,
VsockDevices: vsocks,
MachineCfg: models.MachineConfiguration{
VcpuCount: firecracker.Int64(opts.FcCPUCount),
CPUTemplate: models.CPUTemplate(opts.FcCPUTemplate),
Smt: firecracker.Bool(!opts.FcDisableSmt),
MemSizeMib: firecracker.Int64(opts.FcMemSz),
},
JailerCfg: jail,
VMID: opts.Id,
}, nil
}
func (opts *options) getNetwork() ([]firecracker.NetworkInterface, error) {
var NICs []firecracker.NetworkInterface
if len(opts.FcNicConfig) > 0 {
for _, nicConfig := range opts.FcNicConfig {
tapDev, tapMacAddr, err := parseNicConfig(nicConfig)
if err != nil {
return nil, err
}
allowMMDS := opts.validMetadata != nil
nic := firecracker.NetworkInterface{
StaticConfiguration: &firecracker.StaticNetworkConfiguration{
MacAddress: tapMacAddr,
HostDevName: tapDev,
},
AllowMMDS: allowMMDS,
}
NICs = append(NICs, nic)
}
}
return NICs, nil
}
// constructs a list of drives from the options config
func (opts *options) getBlockDevices() ([]models.Drive, error) {
blockDevices, err := parseBlockDevices(opts.FcAdditionalDrives)
if err != nil {
return nil, err
}
rootDrivePath, readOnly := parseDevice(opts.FcRootDrivePath)
rootDrive := models.Drive{
DriveID: firecracker.String("1"),
PathOnHost: firecracker.String(rootDrivePath),
IsReadOnly: firecracker.Bool(readOnly),
IsRootDevice: firecracker.Bool(true),
Partuuid: opts.FcRootPartUUID,
}
blockDevices = append(blockDevices, rootDrive)
return blockDevices, nil
}
// handleFifos will see if any fifos need to be generated and if a fifo log
// file should be created.
func (opts *options) handleFifos() (io.Writer, error) {
// these booleans are used to check whether or not the fifo queue or metrics
// fifo queue needs to be generated. If any which need to be generated, then
// we know we need to create a temporary directory. Otherwise, a temporary
// directory does not need to be created.
generateFifoFilename := false
generateMetricFifoFilename := false
var err error
var fifo io.WriteCloser
if len(opts.FcFifoLogFile) > 0 {
if len(opts.FcLogFifo) > 0 {
return nil, errConflictingLogOpts
}
generateFifoFilename = true
// if a fifo log file was specified via the CLI then we need to check if
// metric fifo was also specified. If not, we will then generate that fifo
if len(opts.FcMetricsFifo) == 0 {
generateMetricFifoFilename = true
}
if fifo, err = opts.createFifoFileLogs(opts.FcFifoLogFile); err != nil {
return nil, fmt.Errorf("%s: %v", errUnableToCreateFifoLogFile.Error(), err)
}
opts.addCloser(func() error {
return fifo.Close()
})
} else if len(opts.FcLogFifo) > 0 || len(opts.FcMetricsFifo) > 0 {
// this checks to see if either one of the fifos was set. If at least one
// has been set we check to see if any of the others were not set. If one
// isn't set, we will generate the proper file path.
if len(opts.FcLogFifo) == 0 {
generateFifoFilename = true
}
if len(opts.FcMetricsFifo) == 0 {
generateMetricFifoFilename = true
}
}
if generateFifoFilename || generateMetricFifoFilename {
dir, err := os.MkdirTemp(os.TempDir(), "fcfifo")
if err != nil {
return fifo, fmt.Errorf("fail to create temporary directory: %v", err)
}
opts.addCloser(func() error {
return os.RemoveAll(dir)
})
if generateFifoFilename {
opts.FcLogFifo = filepath.Join(dir, "fc_fifo")
}
if generateMetricFifoFilename {
opts.FcMetricsFifo = filepath.Join(dir, "fc_metrics_fifo")
}
}
return fifo, nil
}
func (opts *options) addCloser(c func() error) {
opts.closers = append(opts.closers, c)
}
func (opts *options) Close() {
for _, closer := range opts.closers {
err := closer()
if err != nil {
log.Error(err)
}
}
}
const (
rwDeviceSuffix = ":rw"
roDeviceSuffix = ":ro"
)
// Given a string in the form of path:suffix return the path and read-only marker
func parseDevice(entry string) (path string, readOnly bool) {
if strings.HasSuffix(entry, roDeviceSuffix) {
return strings.TrimSuffix(entry, roDeviceSuffix), true
}
return strings.TrimSuffix(entry, rwDeviceSuffix), false
}
// given a []string in the form of path:suffix converts to []models.Drive
func parseBlockDevices(entries []string) ([]models.Drive, error) {
devices := []models.Drive{}
for i, entry := range entries {
path := ""
readOnly := true
if strings.HasSuffix(entry, rwDeviceSuffix) {
readOnly = false
path = strings.TrimSuffix(entry, rwDeviceSuffix)
} else if strings.HasSuffix(entry, roDeviceSuffix) {
path = strings.TrimSuffix(entry, roDeviceSuffix)
} else {
return nil, errInvalidDriveSpecificationNoSuffix
}
if path == "" {
return nil, errInvalidDriveSpecificationNoPath
}
if _, err := os.Stat(path); err != nil {
return nil, err
}
e := models.Drive{
// i + 2 represents the drive ID. We will reserve 1 for root.
DriveID: firecracker.String(strconv.Itoa(i + 2)),
PathOnHost: firecracker.String(path),
IsReadOnly: firecracker.Bool(readOnly),
IsRootDevice: firecracker.Bool(false),
}
devices = append(devices, e)
}
return devices, nil
}
// Given a string of the form DEVICE/MACADDR, return the device name and the mac address, or an error
func parseNicConfig(cfg string) (string, string, error) {
fields := strings.Split(cfg, "/")
if len(fields) != 2 || len(fields[0]) == 0 || len(fields[1]) == 0 {
return "", "", errInvalidNicConfig
}
return fields[0], fields[1], nil
}
// Given a list of string representations of vsock devices,
// return a corresponding slice of machine.VsockDevice objects
func parseVsocks(devices []string) ([]firecracker.VsockDevice, error) {
var result []firecracker.VsockDevice
for _, entry := range devices {
fields := strings.Split(entry, ":")
if len(fields) != 2 || len(fields[0]) == 0 || len(fields[1]) == 0 {
return []firecracker.VsockDevice{}, errUnableToParseVsockDevices
}
CID, err := strconv.ParseUint(fields[1], 10, 32)
if err != nil {
return []firecracker.VsockDevice{}, errUnableToParseVsockCID
}
dev := firecracker.VsockDevice{
Path: fields[0],
CID: uint32(CID),
}
result = append(result, dev)
}
return result, nil
}
func createFifoFileLogs(fifoPath string) (*os.File, error) {
return os.OpenFile(fifoPath, os.O_CREATE|os.O_APPEND|os.O_WRONLY, 0644)
}
// getSocketPath provides a randomized socket path by building a unique filename
// and searching for the existence of directories {$HOME, os.TempDir()} and returning
// the path with the first directory joined with the unique filename. If we can't
// find a good path panics.
func getSocketPath() string {
filename := strings.Join([]string{
".firecracker.sock",
strconv.Itoa(os.Getpid()),
strconv.Itoa(rand.Intn(1000))},
"-",
)
var dir string
if d := os.Getenv("HOME"); checkExistsAndDir(d) {
dir = d
} else if checkExistsAndDir(os.TempDir()) {
dir = os.TempDir()
} else {
panic("Unable to find a location for firecracker socket. 'It's not going to do any good to land on mars if we're stupid.' --Ray Bradbury")
}
return filepath.Join(dir, filename)
}
// checkExistsAndDir returns true if path exists and is a Dir
func checkExistsAndDir(path string) bool {
// empty
if path == "" {
return false
}
// does it exist?
if info, err := os.Stat(path); err == nil {
// is it a directory?
return info.IsDir()
}
return false
}