packer-cn/builder/vmware/common/step_shutdown.go

145 lines
3.6 KiB
Go
Raw Normal View History

2013-12-25 01:33:49 -05:00
package common
2013-06-06 19:30:37 -04:00
import (
"bytes"
"context"
2013-06-20 00:20:48 -04:00
"errors"
2013-06-06 19:30:37 -04:00
"fmt"
"log"
"regexp"
"strings"
2013-06-06 19:30:37 -04:00
"time"
2018-01-22 20:21:10 -05:00
"github.com/hashicorp/packer/helper/multistep"
2018-01-22 20:21:10 -05:00
"github.com/hashicorp/packer/packer"
2013-06-06 19:30:37 -04:00
)
// This step shuts down the machine. It first attempts to do so gracefully,
// but ultimately forcefully shuts it down if that fails.
//
// Uses:
// communicator packer.Communicator
2013-12-25 01:33:49 -05:00
// dir OutputDir
2013-06-06 19:30:37 -04:00
// driver Driver
// ui packer.Ui
// vmx_path string
//
// Produces:
// <nothing>
2013-12-25 01:33:49 -05:00
type StepShutdown struct {
Command string
Timeout time.Duration
// Set this to true if we're testing
Testing bool
2013-12-25 01:33:49 -05:00
}
2013-06-06 19:30:37 -04:00
func (s *StepShutdown) Run(_ context.Context, state multistep.StateBag) multistep.StepAction {
2013-08-31 15:50:25 -04:00
comm := state.Get("communicator").(packer.Communicator)
2013-12-25 01:33:49 -05:00
dir := state.Get("dir").(OutputDir)
driver := state.Get("driver").(Driver)
2013-08-31 15:50:25 -04:00
ui := state.Get("ui").(packer.Ui)
vmxPath := state.Get("vmx_path").(string)
2013-06-06 19:30:37 -04:00
2013-12-25 01:33:49 -05:00
if s.Command != "" {
2013-06-06 19:30:37 -04:00
ui.Say("Gracefully halting virtual machine...")
2013-12-25 01:33:49 -05:00
log.Printf("Executing shutdown command: %s", s.Command)
var stdout, stderr bytes.Buffer
cmd := &packer.RemoteCmd{
2013-12-25 01:33:49 -05:00
Command: s.Command,
2013-07-11 18:01:30 -04:00
Stdout: &stdout,
Stderr: &stderr,
}
2013-06-06 19:30:37 -04:00
if err := comm.Start(cmd); err != nil {
2013-06-20 00:20:48 -04:00
err := fmt.Errorf("Failed to send shutdown command: %s", err)
2013-08-31 15:50:25 -04:00
state.Put("error", err)
2013-06-20 00:20:48 -04:00
ui.Error(err.Error())
2013-06-06 19:30:37 -04:00
return multistep.ActionHalt
}
// Wait for the machine to actually shut down
2013-12-25 01:33:49 -05:00
log.Printf("Waiting max %s for shutdown to complete", s.Timeout)
shutdownTimer := time.After(s.Timeout)
2013-06-06 19:30:37 -04:00
for {
running, _ := driver.IsRunning(vmxPath)
if !running {
break
}
select {
case <-shutdownTimer:
log.Printf("Shutdown stdout: %s", stdout.String())
log.Printf("Shutdown stderr: %s", stderr.String())
2013-06-20 00:20:48 -04:00
err := errors.New("Timeout while waiting for machine to shut down.")
2013-08-31 15:50:25 -04:00
state.Put("error", err)
2013-06-20 00:20:48 -04:00
ui.Error(err.Error())
2013-06-06 19:30:37 -04:00
return multistep.ActionHalt
default:
2013-12-25 01:33:49 -05:00
time.Sleep(150 * time.Millisecond)
2013-06-06 19:30:37 -04:00
}
}
} else {
ui.Say("Forcibly halting virtual machine...")
2013-06-06 19:30:37 -04:00
if err := driver.Stop(vmxPath); err != nil {
2013-06-20 00:20:48 -04:00
err := fmt.Errorf("Error stopping VM: %s", err)
2013-08-31 15:50:25 -04:00
state.Put("error", err)
2013-06-20 00:20:48 -04:00
ui.Error(err.Error())
2013-06-06 19:30:37 -04:00
return multistep.ActionHalt
}
}
ui.Message("Waiting for VMware to clean up after itself...")
lockRegex := regexp.MustCompile(`(?i)\.lck$`)
timer := time.After(120 * time.Second)
LockWaitLoop:
for {
files, err := dir.ListFiles()
2013-12-25 01:33:49 -05:00
if err != nil {
log.Printf("Error listing files in outputdir: %s", err)
} else {
var locks []string
for _, file := range files {
if lockRegex.MatchString(file) {
locks = append(locks, file)
}
}
if len(locks) == 0 {
log.Println("No more lock files found. VMware is clean.")
break
}
if len(locks) == 1 && strings.HasSuffix(locks[0], ".vmx.lck") {
log.Println("Only waiting on VMX lock. VMware is clean.")
break
}
log.Printf("Waiting on lock files: %#v", locks)
}
select {
case <-timer:
log.Println("Reached timeout on waiting for clean VMware. Assuming clean.")
break LockWaitLoop
2013-12-25 01:33:49 -05:00
case <-time.After(150 * time.Millisecond):
}
}
if !s.Testing {
// Windows takes a while to yield control of the files when the
// process is exiting. Ubuntu and OS X will yield control of the files
// but VMWare may overwrite the VMX cleanup steps that run after this,
// so we wait to ensure VMWare has exited and flushed the VMX.
// We just sleep here. In the future, it'd be nice to find a better
// solution to this.
time.Sleep(5 * time.Second)
}
2013-06-06 19:30:37 -04:00
log.Println("VM shut down.")
return multistep.ActionContinue
}
2013-12-25 01:33:49 -05:00
func (s *StepShutdown) Cleanup(state multistep.StateBag) {}