forked from firecracker-microvm/firectl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
172 lines (146 loc) · 4.33 KB
/
main.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
// Copyright 2018 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 (
"context"
"fmt"
"os"
"os/exec"
"os/signal"
"syscall"
firecracker "github.com/firecracker-microvm/firecracker-go-sdk"
flags "github.com/jessevdk/go-flags"
log "github.com/sirupsen/logrus"
)
const (
// executableMask is the mask needed to check whether or not a file's
// permissions are executable.
executableMask = 0111
firecrackerDefaultPath = "firecracker"
)
func main() {
opts := newOptions()
p := flags.NewParser(opts, flags.Default)
// if no args just print help
if len(os.Args) == 1 {
p.WriteHelp(os.Stderr)
os.Exit(0)
}
_, err := p.ParseArgs(os.Args)
if err != nil {
// ErrHelp indicates that the help message was printed so we
// can exit
if val, ok := err.(*flags.Error); ok && val.Type == flags.ErrHelp {
os.Exit(0)
}
p.WriteHelp(os.Stderr)
os.Exit(1)
}
if opts.Version {
fmt.Println("Version:", Version)
fmt.Println("SupportedFirecrackerVersion:", SupportedFirecrackerVersion)
os.Exit(0)
}
defer opts.Close()
if err := runVMM(context.Background(), opts); err != nil {
log.Fatalf(err.Error())
}
}
// Run a vmm with a given set of options
func runVMM(ctx context.Context, opts *options) error {
// convert options to a firecracker config
fcCfg, err := opts.getFirecrackerConfig()
if err != nil {
log.Errorf("Error: %s", err)
return err
}
logger := log.New()
if opts.Debug {
log.SetLevel(log.DebugLevel)
logger.SetLevel(log.DebugLevel)
}
vmmCtx, vmmCancel := context.WithCancel(ctx)
defer vmmCancel()
machineOpts := []firecracker.Opt{
firecracker.WithLogger(log.NewEntry(logger)),
}
var firecrackerBinary string
if len(opts.FcBinary) != 0 {
firecrackerBinary = opts.FcBinary
} else {
firecrackerBinary, err = exec.LookPath(firecrackerDefaultPath)
if err != nil {
return err
}
}
finfo, err := os.Stat(firecrackerBinary)
if os.IsNotExist(err) {
return fmt.Errorf("Binary %q does not exist: %v", firecrackerBinary, err)
}
if err != nil {
return fmt.Errorf("Failed to stat binary, %q: %v", firecrackerBinary, err)
}
if finfo.IsDir() {
return fmt.Errorf("Binary, %q, is a directory", firecrackerBinary)
} else if finfo.Mode()&executableMask == 0 {
return fmt.Errorf("Binary, %q, is not executable. Check permissions of binary", firecrackerBinary)
}
// if the jailer is used, the final command will be built in NewMachine()
if fcCfg.JailerCfg == nil {
cmd := firecracker.VMCommandBuilder{}.
WithBin(firecrackerBinary).
WithSocketPath(fcCfg.SocketPath).
WithStdin(os.Stdin).
WithStdout(os.Stdout).
WithStderr(os.Stderr).
Build(ctx)
machineOpts = append(machineOpts, firecracker.WithProcessRunner(cmd))
}
m, err := firecracker.NewMachine(vmmCtx, fcCfg, machineOpts...)
if err != nil {
return fmt.Errorf("Failed creating machine: %s", err)
}
if err := m.Start(vmmCtx); err != nil {
return fmt.Errorf("Failed to start machine: %v", err)
}
defer m.StopVMM()
if opts.validMetadata != nil {
m.SetMetadata(vmmCtx, opts.validMetadata)
}
installSignalHandlers(vmmCtx, m)
// wait for the VMM to exit
if err := m.Wait(vmmCtx); err != nil {
return fmt.Errorf("Wait returned an error %s", err)
}
log.Printf("Start machine was happy")
return nil
}
// Install custom signal handlers:
func installSignalHandlers(ctx context.Context, m *firecracker.Machine) {
go func() {
// Clear some default handlers installed by the firecracker SDK:
signal.Reset(os.Interrupt, syscall.SIGTERM, syscall.SIGQUIT)
c := make(chan os.Signal, 1)
signal.Notify(c, os.Interrupt, syscall.SIGTERM, syscall.SIGQUIT)
for {
switch s := <-c; {
case s == syscall.SIGTERM || s == os.Interrupt:
log.Printf("Caught SIGINT, requesting clean shutdown")
m.Shutdown(ctx)
case s == syscall.SIGQUIT:
log.Printf("Caught SIGTERM, forcing shutdown")
m.StopVMM()
}
}
}()
}