-
Notifications
You must be signed in to change notification settings - Fork 646
/
Copy pathstart.go
393 lines (352 loc) · 11.7 KB
/
start.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
package instance
import (
"bufio"
"bytes"
"context"
"errors"
"fmt"
"os"
"os/exec"
"path/filepath"
"runtime"
"syscall"
"text/template"
"time"
"github.com/coreos/go-semver/semver"
"github.com/lima-vm/lima/pkg/driver"
"github.com/lima-vm/lima/pkg/driverutil"
"github.com/lima-vm/lima/pkg/executil"
"github.com/lima-vm/lima/pkg/osutil"
"github.com/lima-vm/lima/pkg/qemu"
"github.com/lima-vm/lima/pkg/qemu/entitlementutil"
"github.com/mattn/go-isatty"
"github.com/lima-vm/lima/pkg/downloader"
"github.com/lima-vm/lima/pkg/fileutils"
hostagentevents "github.com/lima-vm/lima/pkg/hostagent/events"
"github.com/lima-vm/lima/pkg/limayaml"
"github.com/lima-vm/lima/pkg/store"
"github.com/lima-vm/lima/pkg/store/filenames"
"github.com/sirupsen/logrus"
)
// DefaultWatchHostAgentEventsTimeout is the duration to wait for the instance
// to be running before timing out.
const DefaultWatchHostAgentEventsTimeout = 10 * time.Minute
// ensureNerdctlArchiveCache prefetches the nerdctl-full-VERSION-GOOS-GOARCH.tar.gz archive
// into the cache before launching the hostagent process, so that we can show the progress in tty.
// https://github.com/lima-vm/lima/issues/326
func ensureNerdctlArchiveCache(ctx context.Context, y *limayaml.LimaYAML, created bool) (string, error) {
if !*y.Containerd.System && !*y.Containerd.User {
// nerdctl archive is not needed
return "", nil
}
errs := make([]error, len(y.Containerd.Archives))
for i, f := range y.Containerd.Archives {
// Skip downloading again if the file is already in the cache
if created && f.Arch == *y.Arch && !downloader.IsLocal(f.Location) {
path, err := fileutils.CachedFile(f)
if err == nil {
return path, nil
}
}
path, err := fileutils.DownloadFile(ctx, "", f, false, "the nerdctl archive", *y.Arch)
if err != nil {
errs[i] = err
continue
}
if path == "" {
if downloader.IsLocal(f.Location) {
return f.Location, nil
}
return "", fmt.Errorf("cache did not contain %q", f.Location)
}
return path, nil
}
return "", fileutils.Errors(errs)
}
type Prepared struct {
Driver driver.Driver
NerdctlArchiveCache string
}
// Prepare ensures the disk, the nerdctl archive, etc.
func Prepare(ctx context.Context, inst *store.Instance) (*Prepared, error) {
limaDriver := driverutil.CreateTargetDriverInstance(&driver.BaseDriver{
Instance: inst,
})
if err := limaDriver.Validate(); err != nil {
return nil, err
}
if err := limaDriver.Initialize(ctx); err != nil {
return nil, err
}
// Check if the instance has been created (the base disk already exists)
baseDisk := filepath.Join(inst.Dir, filenames.BaseDisk)
_, err := os.Stat(baseDisk)
created := err == nil
if err := limaDriver.CreateDisk(ctx); err != nil {
return nil, err
}
nerdctlArchiveCache, err := ensureNerdctlArchiveCache(ctx, inst.Config, created)
if err != nil {
return nil, err
}
return &Prepared{
Driver: limaDriver,
NerdctlArchiveCache: nerdctlArchiveCache,
}, nil
}
// Start starts the hostagent in the background, which in turn will start the instance.
// Start will listen to hostagent events and log them to STDOUT until either the instance
// is running, or has failed to start.
//
// The `limactl` argument allows the caller to specify the full path of the `limactl` executable.
// When called from inside limactl itself it will always be the empty string which uses the name
// of the current executable instead.
//
// The `launchHostAgentForeground` argument makes the hostagent run in the foreground.
// The function will continue to listen and log hostagent events until the instance is
// shut down again.
//
// Start calls Prepare by itself, so you do not need to call Prepare manually before calling Start.
func Start(ctx context.Context, inst *store.Instance, limactl string, launchHostAgentForeground bool) error {
haPIDPath := filepath.Join(inst.Dir, filenames.HostAgentPID)
if _, err := os.Stat(haPIDPath); !errors.Is(err, os.ErrNotExist) {
return fmt.Errorf("instance %q seems running (hint: remove %q if the instance is not actually running)", inst.Name, haPIDPath)
}
logrus.Infof("Starting the instance %q with VM driver %q", inst.Name, inst.VMType)
haSockPath := filepath.Join(inst.Dir, filenames.HostAgentSock)
// Ask the user to sign the qemu binary with the "com.apple.security.hypervisor" if needed.
// Workaround for https://github.com/lima-vm/lima/issues/1742
if runtime.GOOS == "darwin" && inst.VMType == limayaml.QEMU {
macOSProductVersion, err := osutil.ProductVersion()
if err != nil {
return err
}
// The codesign --xml option is only available on macOS Monterey and later
if !macOSProductVersion.LessThan(*semver.New("12.0.0")) {
qExe, _, err := qemu.Exe(inst.Arch)
if err != nil {
return fmt.Errorf("failed to find the QEMU binary for the architecture %q: %w", inst.Arch, err)
}
if accel := qemu.Accel(inst.Arch); accel == "hvf" {
entitlementutil.AskToSignIfNotSignedProperly(qExe)
}
}
}
prepared, err := Prepare(ctx, inst)
if err != nil {
return err
}
if limactl == "" {
limactl, err = os.Executable()
if err != nil {
return err
}
}
haStdoutPath := filepath.Join(inst.Dir, filenames.HostAgentStdoutLog)
haStderrPath := filepath.Join(inst.Dir, filenames.HostAgentStderrLog)
if err := os.RemoveAll(haStdoutPath); err != nil {
return err
}
if err := os.RemoveAll(haStderrPath); err != nil {
return err
}
haStdoutW, err := os.Create(haStdoutPath)
if err != nil {
return err
}
// no defer haStdoutW.Close()
haStderrW, err := os.Create(haStderrPath)
if err != nil {
return err
}
// no defer haStderrW.Close()
var args []string
if logrus.GetLevel() >= logrus.DebugLevel {
args = append(args, "--debug")
}
args = append(args,
"hostagent",
"--pidfile", haPIDPath,
"--socket", haSockPath)
if prepared.Driver.CanRunGUI() {
args = append(args, "--run-gui")
}
if prepared.NerdctlArchiveCache != "" {
args = append(args, "--nerdctl-archive", prepared.NerdctlArchiveCache)
}
args = append(args, inst.Name)
haCmd := exec.CommandContext(ctx, limactl, args...)
if launchHostAgentForeground {
haCmd.SysProcAttr = executil.ForegroundSysProcAttr
} else {
haCmd.SysProcAttr = executil.BackgroundSysProcAttr
}
haCmd.Stdout = haStdoutW
haCmd.Stderr = haStderrW
begin := time.Now() // used for logrus propagation
if launchHostAgentForeground {
logrus.Info("Running the host agent in the foreground")
if isatty.IsTerminal(os.Stdin.Fd()) || isatty.IsCygwinTerminal(os.Stdin.Fd()) {
// Write message to standard log files to avoid confusing users
message := "This log file is not used because `limactl start` was launched in the terminal with the `--foreground` option."
if _, err := haStdoutW.WriteString(message); err != nil {
return err
}
if _, err := haStderrW.WriteString(message); err != nil {
return err
}
} else {
if err := osutil.Dup2(int(haStdoutW.Fd()), syscall.Stdout); err != nil {
return err
}
if err := osutil.Dup2(int(haStderrW.Fd()), syscall.Stderr); err != nil {
return err
}
}
if err := syscall.Exec(limactl, haCmd.Args, haCmd.Environ()); err != nil {
return err
}
} else if err := haCmd.Start(); err != nil {
return err
}
if err := waitHostAgentStart(ctx, haPIDPath, haStderrPath); err != nil {
return err
}
watchErrCh := make(chan error)
go func() {
watchErrCh <- watchHostAgentEvents(ctx, inst, haStdoutPath, haStderrPath, begin)
close(watchErrCh)
}()
waitErrCh := make(chan error)
go func() {
waitErrCh <- haCmd.Wait()
close(waitErrCh)
}()
select {
case watchErr := <-watchErrCh:
// watchErr can be nil
return watchErr
// leave the hostagent process running
case waitErr := <-waitErrCh:
// waitErr should not be nil
return fmt.Errorf("host agent process has exited: %w", waitErr)
}
}
func waitHostAgentStart(_ context.Context, haPIDPath, haStderrPath string) error {
begin := time.Now()
deadlineDuration := 5 * time.Second
deadline := begin.Add(deadlineDuration)
for {
if _, err := os.Stat(haPIDPath); !errors.Is(err, os.ErrNotExist) {
return nil
}
if time.Now().After(deadline) {
return fmt.Errorf("hostagent (%q) did not start up in %v (hint: see %q)", haPIDPath, deadlineDuration, haStderrPath)
}
}
}
func watchHostAgentEvents(ctx context.Context, inst *store.Instance, haStdoutPath, haStderrPath string, begin time.Time) error {
ctx, cancel := context.WithTimeout(ctx, watchHostAgentTimeout(ctx))
defer cancel()
var (
printedSSHLocalPort bool
receivedRunningEvent bool
err error
)
onEvent := func(ev hostagentevents.Event) bool {
if !printedSSHLocalPort && ev.Status.SSHLocalPort != 0 {
logrus.Infof("SSH Local Port: %d", ev.Status.SSHLocalPort)
printedSSHLocalPort = true
}
if len(ev.Status.Errors) > 0 {
logrus.Errorf("%+v", ev.Status.Errors)
}
if ev.Status.Exiting {
err = fmt.Errorf("exiting, status=%+v (hint: see %q)", ev.Status, haStderrPath)
return true
} else if ev.Status.Running {
receivedRunningEvent = true
if ev.Status.Degraded {
logrus.Warnf("DEGRADED. The VM seems running, but file sharing and port forwarding may not work. (hint: see %q)", haStderrPath)
err = fmt.Errorf("degraded, status=%+v", ev.Status)
return true
}
if xerr := runAnsibleProvision(ctx, inst); xerr != nil {
err = xerr
return true
}
// _LIMACTL_SHELL_IN_ACTION is set if `limactl shell` invoked `limactl start`.
// In this case we shouldn't print "Run `lima` to open the shell",
// because the user has already executed the `lima` command.
if _, limactlShellInAction := os.LookupEnv("_LIMACTL_SHELL_IN_ACTION"); limactlShellInAction {
logrus.Infof("READY.")
} else {
if *inst.Config.Plain {
logrus.Infof("READY. Run `ssh -F %q %s` to open the shell.", inst.SSHConfigFile, inst.Hostname)
} else {
logrus.Infof("READY. Run `%s` to open the shell.", LimactlShellCmd(inst.Name))
}
}
_ = ShowMessage(inst)
err = nil
return true
}
return false
}
if xerr := hostagentevents.Watch(ctx, haStdoutPath, haStderrPath, begin, onEvent); xerr != nil {
return xerr
}
if err != nil {
return err
}
if !receivedRunningEvent {
return errors.New("did not receive an event with the \"running\" status")
}
return nil
}
type watchHostAgentEventsTimeoutKey = struct{}
// WithWatchHostAgentTimeout sets the value of the timeout to use for
// watchHostAgentEvents in the given Context.
func WithWatchHostAgentTimeout(ctx context.Context, timeout time.Duration) context.Context {
//nolint:staticcheck // SA1029: should not use empty anonymous struct as key for value; define your own type to avoid collisions (staticcheck)
return context.WithValue(ctx, watchHostAgentEventsTimeoutKey{}, timeout)
}
// watchHostAgentTimeout returns the value of the timeout to use for
// watchHostAgentEvents contained in the given Context, or its default value.
func watchHostAgentTimeout(ctx context.Context) time.Duration {
if timeout, ok := ctx.Value(watchHostAgentEventsTimeoutKey{}).(time.Duration); ok {
return timeout
}
return DefaultWatchHostAgentEventsTimeout
}
func LimactlShellCmd(instName string) string {
shellCmd := fmt.Sprintf("limactl shell %s", instName)
if instName == "default" {
shellCmd = "lima"
}
return shellCmd
}
func ShowMessage(inst *store.Instance) error {
if inst.Message == "" {
return nil
}
t, err := template.New("message").Parse(inst.Message)
if err != nil {
return err
}
data, err := store.AddGlobalFields(inst)
if err != nil {
return err
}
var b bytes.Buffer
if err := t.Execute(&b, data); err != nil {
return err
}
scanner := bufio.NewScanner(&b)
logrus.Infof("Message from the instance %q:", inst.Name)
for scanner.Scan() {
// Avoid prepending logrus "INFO" header, for ease of copy pasting
fmt.Println(scanner.Text())
}
return scanner.Err()
}