2013-12-24 00:58:41 -05:00
|
|
|
package iso
|
2013-06-06 19:30:37 -04:00
|
|
|
|
|
|
|
import (
|
2013-07-09 17:38:34 -04:00
|
|
|
"bytes"
|
2013-06-20 00:20:48 -04:00
|
|
|
"errors"
|
2013-06-06 19:30:37 -04:00
|
|
|
"fmt"
|
|
|
|
"github.com/mitchellh/multistep"
|
2013-12-24 13:31:57 -05:00
|
|
|
vmwcommon "github.com/mitchellh/packer/builder/vmware/common"
|
2013-06-06 19:30:37 -04:00
|
|
|
"github.com/mitchellh/packer/packer"
|
|
|
|
"log"
|
2013-12-25 01:16:13 -05:00
|
|
|
"regexp"
|
2013-07-31 18:35:47 -04:00
|
|
|
"runtime"
|
2013-07-02 12:15:52 -04:00
|
|
|
"strings"
|
2013-06-06 19:30:37 -04:00
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
// 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
|
|
|
|
// config *config
|
|
|
|
// driver Driver
|
|
|
|
// ui packer.Ui
|
|
|
|
// vmx_path string
|
|
|
|
//
|
|
|
|
// Produces:
|
|
|
|
// <nothing>
|
|
|
|
type stepShutdown struct{}
|
|
|
|
|
2013-08-31 15:50:25 -04:00
|
|
|
func (s *stepShutdown) Run(state multistep.StateBag) multistep.StepAction {
|
|
|
|
comm := state.Get("communicator").(packer.Communicator)
|
|
|
|
config := state.Get("config").(*config)
|
2013-12-25 01:16:13 -05:00
|
|
|
dir := state.Get("dir").(vmwcommon.OutputDir)
|
2013-12-24 13:31:57 -05:00
|
|
|
driver := state.Get("driver").(vmwcommon.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
|
|
|
|
|
|
|
if config.ShutdownCommand != "" {
|
|
|
|
ui.Say("Gracefully halting virtual machine...")
|
|
|
|
log.Printf("Executing shutdown command: %s", config.ShutdownCommand)
|
2013-07-09 17:38:34 -04:00
|
|
|
|
|
|
|
var stdout, stderr bytes.Buffer
|
|
|
|
cmd := &packer.RemoteCmd{
|
|
|
|
Command: config.ShutdownCommand,
|
2013-07-11 18:01:30 -04:00
|
|
|
Stdout: &stdout,
|
|
|
|
Stderr: &stderr,
|
2013-07-09 17:38:34 -04:00
|
|
|
}
|
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 command to run
|
|
|
|
cmd.Wait()
|
|
|
|
|
2013-07-09 17:38:34 -04:00
|
|
|
// If the command failed to run, notify the user in some way.
|
|
|
|
if cmd.ExitStatus != 0 {
|
2013-08-31 15:50:25 -04:00
|
|
|
state.Put("error", fmt.Errorf(
|
2013-07-09 17:38:34 -04:00
|
|
|
"Shutdown command has non-zero exit status.\n\nStdout: %s\n\nStderr: %s",
|
2013-08-31 15:50:25 -04:00
|
|
|
stdout.String(), stderr.String()))
|
2013-07-09 17:38:34 -04:00
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Printf("Shutdown stdout: %s", stdout.String())
|
|
|
|
log.Printf("Shutdown stderr: %s", stderr.String())
|
|
|
|
|
2013-06-06 19:30:37 -04:00
|
|
|
// Wait for the machine to actually shut down
|
2013-07-14 08:23:46 -04:00
|
|
|
log.Printf("Waiting max %s for shutdown to complete", config.shutdownTimeout)
|
|
|
|
shutdownTimer := time.After(config.shutdownTimeout)
|
2013-06-06 19:30:37 -04:00
|
|
|
for {
|
|
|
|
running, _ := driver.IsRunning(vmxPath)
|
|
|
|
if !running {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
select {
|
|
|
|
case <-shutdownTimer:
|
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:
|
|
|
|
time.Sleep(1 * time.Second)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
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
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-02 12:15:52 -04:00
|
|
|
ui.Message("Waiting for VMware to clean up after itself...")
|
2013-12-25 01:16:13 -05:00
|
|
|
lockRegex := regexp.MustCompile(`(?i)\.lck$`)
|
2013-07-02 12:15:52 -04:00
|
|
|
timer := time.After(15 * time.Second)
|
|
|
|
LockWaitLoop:
|
|
|
|
for {
|
2013-12-25 01:16:13 -05:00
|
|
|
files, err := dir.ListFiles()
|
2013-07-02 12:15:52 -04:00
|
|
|
if err == nil {
|
2013-12-25 01:16:13 -05:00
|
|
|
var locks []string
|
|
|
|
for _, file := range files {
|
|
|
|
if lockRegex.MatchString(file) {
|
|
|
|
locks = append(locks, file)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-02 12:15:52 -04:00
|
|
|
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
|
|
|
|
case <-time.After(1 * time.Second):
|
|
|
|
}
|
|
|
|
}
|
2013-07-02 12:05:17 -04:00
|
|
|
|
2013-07-31 18:35:47 -04:00
|
|
|
if runtime.GOOS == "windows" {
|
|
|
|
// Windows takes a while to yield control of the files when the
|
|
|
|
// process is exiting. 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-08-31 15:50:25 -04:00
|
|
|
func (s *stepShutdown) Cleanup(state multistep.StateBag) {}
|