2013-12-21 17:27:00 -05:00
|
|
|
package iso
|
2013-06-11 23:29:39 -04:00
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"github.com/mitchellh/multistep"
|
2013-12-21 18:00:48 -05:00
|
|
|
vboxcommon "github.com/mitchellh/packer/builder/virtualbox/common"
|
2013-06-11 23:29:39 -04:00
|
|
|
"github.com/mitchellh/packer/packer"
|
|
|
|
"log"
|
|
|
|
"math/rand"
|
|
|
|
"net"
|
|
|
|
)
|
|
|
|
|
|
|
|
// This step adds a NAT port forwarding definition so that SSH is available
|
|
|
|
// on the guest machine.
|
|
|
|
//
|
|
|
|
// Uses:
|
|
|
|
//
|
|
|
|
// Produces:
|
|
|
|
type stepForwardSSH struct{}
|
|
|
|
|
2013-08-31 15:44:58 -04:00
|
|
|
func (s *stepForwardSSH) Run(state multistep.StateBag) multistep.StepAction {
|
|
|
|
config := state.Get("config").(*config)
|
2013-12-21 18:00:48 -05:00
|
|
|
driver := state.Get("driver").(vboxcommon.Driver)
|
2013-08-31 15:44:58 -04:00
|
|
|
ui := state.Get("ui").(packer.Ui)
|
|
|
|
vmName := state.Get("vmName").(string)
|
2013-06-11 23:29:39 -04:00
|
|
|
|
|
|
|
log.Printf("Looking for available SSH port between %d and %d", config.SSHHostPortMin, config.SSHHostPortMax)
|
|
|
|
var sshHostPort uint
|
2013-11-04 17:20:26 -05:00
|
|
|
var offset uint = 0
|
|
|
|
|
2013-06-11 23:29:39 -04:00
|
|
|
portRange := int(config.SSHHostPortMax - config.SSHHostPortMin)
|
2013-11-04 17:20:26 -05:00
|
|
|
if portRange > 0 {
|
|
|
|
// Have to check if > 0 to avoid a panic
|
|
|
|
offset = uint(rand.Intn(portRange))
|
|
|
|
}
|
|
|
|
|
2013-06-11 23:29:39 -04:00
|
|
|
for {
|
2013-11-04 17:20:26 -05:00
|
|
|
sshHostPort = offset + config.SSHHostPortMin
|
2013-06-11 23:29:39 -04:00
|
|
|
log.Printf("Trying port: %d", sshHostPort)
|
|
|
|
l, err := net.Listen("tcp", fmt.Sprintf(":%d", sshHostPort))
|
|
|
|
if err == nil {
|
|
|
|
defer l.Close()
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-04 17:44:48 -04:00
|
|
|
// Create a forwarded port mapping to the VM
|
2013-06-11 23:29:39 -04:00
|
|
|
ui.Say(fmt.Sprintf("Creating forwarded port mapping for SSH (host port %d)", sshHostPort))
|
|
|
|
command := []string{
|
|
|
|
"modifyvm", vmName,
|
|
|
|
"--natpf1",
|
|
|
|
fmt.Sprintf("packerssh,tcp,127.0.0.1,%d,,%d", sshHostPort, config.SSHPort),
|
|
|
|
}
|
|
|
|
if err := driver.VBoxManage(command...); err != nil {
|
2013-06-20 00:07:53 -04:00
|
|
|
err := fmt.Errorf("Error creating port forwarding rule: %s", err)
|
2013-08-31 15:44:58 -04:00
|
|
|
state.Put("error", err)
|
2013-06-20 00:07:53 -04:00
|
|
|
ui.Error(err.Error())
|
2013-06-11 23:29:39 -04:00
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
|
|
|
|
2013-06-11 23:30:07 -04:00
|
|
|
// Save the port we're using so that future steps can use it
|
2013-08-31 15:44:58 -04:00
|
|
|
state.Put("sshHostPort", sshHostPort)
|
2013-06-11 23:30:07 -04:00
|
|
|
|
2013-06-11 23:29:39 -04:00
|
|
|
return multistep.ActionContinue
|
|
|
|
}
|
|
|
|
|
2013-08-31 15:44:58 -04:00
|
|
|
func (s *stepForwardSSH) Cleanup(state multistep.StateBag) {}
|