packer-cn/builder/virtualbox/common/step_forward_ssh.go

87 lines
2.2 KiB
Go
Raw Normal View History

2013-12-22 12:08:09 -05:00
package common
import (
"context"
"fmt"
"log"
"math/rand"
"net"
2017-04-04 16:39:01 -04:00
"github.com/hashicorp/packer/helper/communicator"
"github.com/hashicorp/packer/helper/multistep"
2017-04-04 16:39:01 -04:00
"github.com/hashicorp/packer/packer"
)
// This step adds a NAT port forwarding definition so that SSH is available
// on the guest machine.
//
// Uses:
2013-12-22 12:08:09 -05:00
// driver Driver
// ui packer.Ui
// vmName string
//
// Produces:
2013-12-22 12:08:09 -05:00
type StepForwardSSH struct {
CommConfig *communicator.Config
HostPortMin uint
HostPortMax uint
SkipNatMapping bool
2013-12-22 12:08:09 -05:00
}
func (s *StepForwardSSH) Run(_ context.Context, state multistep.StateBag) multistep.StepAction {
2013-12-22 12:08:09 -05:00
driver := state.Get("driver").(Driver)
2013-08-31 15:44:58 -04:00
ui := state.Get("ui").(packer.Ui)
vmName := state.Get("vmName").(string)
if s.CommConfig.Type == "none" {
log.Printf("Not using a communicator, skipping setting up port forwarding...")
state.Put("sshHostPort", 0)
return multistep.ActionContinue
}
guestPort := s.CommConfig.Port()
sshHostPort := guestPort
2015-06-10 13:50:08 -04:00
if !s.SkipNatMapping {
log.Printf("Looking for available communicator (SSH, WinRM, etc) port between %d and %d",
s.HostPortMin, s.HostPortMax)
portRange := int(s.HostPortMax - s.HostPortMin + 1)
offset := rand.Intn(portRange)
for {
2015-06-18 04:19:46 -04:00
sshHostPort = offset + int(s.HostPortMin)
log.Printf("Trying port: %d", sshHostPort)
l, err := net.Listen("tcp", fmt.Sprintf("127.0.0.1:%d", sshHostPort))
if err == nil {
defer l.Close()
break
}
offset++
if offset == portRange {
offset = 0
}
}
// Create a forwarded port mapping to the VM
ui.Say(fmt.Sprintf("Creating forwarded port mapping for communicator (SSH, WinRM, etc) (host port %d)", sshHostPort))
command := []string{
"modifyvm", vmName,
"--natpf1",
fmt.Sprintf("packercomm,tcp,127.0.0.1,%d,,%d", sshHostPort, guestPort),
}
if err := driver.VBoxManage(command...); err != nil {
err := fmt.Errorf("Error creating port forwarding rule: %s", err)
state.Put("error", err)
ui.Error(err.Error())
return multistep.ActionHalt
}
}
// 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)
return multistep.ActionContinue
}
2013-12-22 12:08:09 -05:00
func (s *StepForwardSSH) Cleanup(state multistep.StateBag) {}