2014-12-29 06:46:54 -06:00
|
|
|
package common
|
2014-11-10 12:16:02 -06:00
|
|
|
|
|
|
|
import (
|
2014-12-08 09:34:48 -06:00
|
|
|
"bytes"
|
2014-11-10 12:16:02 -06:00
|
|
|
gossh "code.google.com/p/go.crypto/ssh"
|
2014-12-08 09:34:48 -06:00
|
|
|
"fmt"
|
2014-11-10 12:16:02 -06:00
|
|
|
"github.com/mitchellh/multistep"
|
|
|
|
commonssh "github.com/mitchellh/packer/common/ssh"
|
|
|
|
"github.com/mitchellh/packer/communicator/ssh"
|
2014-12-08 09:34:48 -06:00
|
|
|
"io"
|
|
|
|
"log"
|
|
|
|
"net"
|
|
|
|
"strings"
|
2014-11-10 12:16:02 -06:00
|
|
|
)
|
|
|
|
|
2014-12-29 06:46:54 -06:00
|
|
|
func SSHAddress(state multistep.StateBag) (string, error) {
|
2014-12-08 09:34:48 -06:00
|
|
|
sshIP := state.Get("ssh_address").(string)
|
2014-11-10 12:16:02 -06:00
|
|
|
sshHostPort := 22
|
|
|
|
return fmt.Sprintf("%s:%d", sshIP, sshHostPort), nil
|
|
|
|
}
|
|
|
|
|
2014-12-29 06:46:54 -06:00
|
|
|
func SSHLocalAddress(state multistep.StateBag) (string, error) {
|
2015-01-02 10:22:36 -06:00
|
|
|
sshLocalPort, ok := state.Get("local_ssh_port").(uint)
|
|
|
|
if !ok {
|
|
|
|
return "", fmt.Errorf("SSH port forwarding hasn't been set up yet")
|
|
|
|
}
|
2014-12-08 09:34:48 -06:00
|
|
|
conn_str := fmt.Sprintf("%s:%d", "127.0.0.1", sshLocalPort)
|
|
|
|
return conn_str, nil
|
2014-11-18 12:18:39 -06:00
|
|
|
}
|
|
|
|
|
2014-12-29 06:46:54 -06:00
|
|
|
func SSHConfig(state multistep.StateBag) (*gossh.ClientConfig, error) {
|
|
|
|
config := state.Get("commonconfig").(CommonConfig)
|
2014-11-10 12:16:02 -06:00
|
|
|
auth := []gossh.AuthMethod{
|
|
|
|
gossh.Password(config.SSHPassword),
|
|
|
|
gossh.KeyboardInteractive(
|
|
|
|
ssh.PasswordKeyboardInteractive(config.SSHPassword)),
|
|
|
|
}
|
|
|
|
|
|
|
|
if config.SSHKeyPath != "" {
|
|
|
|
signer, err := commonssh.FileSigner(config.SSHKeyPath)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
auth = append(auth, gossh.PublicKeys(signer))
|
|
|
|
}
|
|
|
|
|
|
|
|
return &gossh.ClientConfig{
|
|
|
|
User: config.SSHUser,
|
|
|
|
Auth: auth,
|
|
|
|
}, nil
|
|
|
|
}
|
2014-11-18 12:18:39 -06:00
|
|
|
|
2015-01-02 10:22:36 -06:00
|
|
|
func doExecuteSSHCmd(cmd, target string, config *gossh.ClientConfig) (stdout string, err error) {
|
|
|
|
client, err := gossh.Dial("tcp", target, config)
|
2014-12-08 09:34:48 -06:00
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
2014-11-18 12:18:39 -06:00
|
|
|
|
2014-12-08 09:34:48 -06:00
|
|
|
//Create session
|
|
|
|
session, err := client.NewSession()
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
2014-11-18 12:18:39 -06:00
|
|
|
|
2014-12-08 09:34:48 -06:00
|
|
|
defer session.Close()
|
2014-11-18 12:18:39 -06:00
|
|
|
|
2014-12-08 09:34:48 -06:00
|
|
|
var b bytes.Buffer
|
|
|
|
session.Stdout = &b
|
|
|
|
if err := session.Run(cmd); err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
2014-11-18 12:18:39 -06:00
|
|
|
|
2014-12-08 09:34:48 -06:00
|
|
|
return strings.Trim(b.String(), "\n"), nil
|
2014-11-18 12:18:39 -06:00
|
|
|
}
|
|
|
|
|
2015-01-02 10:22:36 -06:00
|
|
|
func ExecuteHostSSHCmd(state multistep.StateBag, cmd string) (stdout string, err error) {
|
|
|
|
config := state.Get("commonconfig").(CommonConfig)
|
|
|
|
// Setup connection config
|
|
|
|
sshConfig := &gossh.ClientConfig{
|
|
|
|
User: config.Username,
|
|
|
|
Auth: []gossh.AuthMethod{
|
|
|
|
gossh.Password(config.Password),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
return doExecuteSSHCmd(cmd, config.HostIp+":22", sshConfig)
|
|
|
|
}
|
|
|
|
|
|
|
|
func ExecuteGuestSSHCmd(state multistep.StateBag, cmd string) (stdout string, err error) {
|
|
|
|
localAddress, err := SSHLocalAddress(state)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
sshConfig, err := SSHConfig(state)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
return doExecuteSSHCmd(cmd, localAddress, sshConfig)
|
|
|
|
}
|
|
|
|
|
2014-12-08 09:41:28 -06:00
|
|
|
func forward(local_conn net.Conn, config *gossh.ClientConfig, server, remote_dest string, remote_port uint) error {
|
2014-12-10 06:31:02 -06:00
|
|
|
defer local_conn.Close()
|
|
|
|
|
2014-12-08 09:34:48 -06:00
|
|
|
ssh_client_conn, err := gossh.Dial("tcp", server+":22", config)
|
|
|
|
if err != nil {
|
2014-12-08 09:41:28 -06:00
|
|
|
log.Printf("local ssh.Dial error: %s", err)
|
|
|
|
return err
|
2014-12-08 09:34:48 -06:00
|
|
|
}
|
2014-12-10 06:31:02 -06:00
|
|
|
defer ssh_client_conn.Close()
|
2014-11-18 12:18:39 -06:00
|
|
|
|
2014-12-08 09:34:48 -06:00
|
|
|
remote_loc := fmt.Sprintf("%s:%d", remote_dest, remote_port)
|
|
|
|
ssh_conn, err := ssh_client_conn.Dial("tcp", remote_loc)
|
|
|
|
if err != nil {
|
2014-12-08 09:41:28 -06:00
|
|
|
log.Printf("ssh.Dial error: %s", err)
|
|
|
|
return err
|
2014-12-08 09:34:48 -06:00
|
|
|
}
|
2014-12-10 06:31:02 -06:00
|
|
|
defer ssh_conn.Close()
|
2014-11-18 12:18:39 -06:00
|
|
|
|
2014-12-09 11:44:21 -06:00
|
|
|
txDone := make(chan struct{})
|
|
|
|
rxDone := make(chan struct{})
|
|
|
|
|
2014-12-08 09:34:48 -06:00
|
|
|
go func() {
|
|
|
|
_, err = io.Copy(ssh_conn, local_conn)
|
|
|
|
if err != nil {
|
2014-12-08 09:41:28 -06:00
|
|
|
log.Printf("io.copy failed: %v", err)
|
2014-12-08 09:34:48 -06:00
|
|
|
}
|
2014-12-09 11:44:21 -06:00
|
|
|
close(txDone)
|
2014-12-08 09:34:48 -06:00
|
|
|
}()
|
2014-11-18 12:18:39 -06:00
|
|
|
|
2014-12-08 09:34:48 -06:00
|
|
|
go func() {
|
|
|
|
_, err = io.Copy(local_conn, ssh_conn)
|
|
|
|
if err != nil {
|
2014-12-08 09:41:28 -06:00
|
|
|
log.Printf("io.copy failed: %v", err)
|
2014-12-08 09:34:48 -06:00
|
|
|
}
|
2014-12-09 11:44:21 -06:00
|
|
|
close(rxDone)
|
|
|
|
}()
|
|
|
|
|
2014-12-10 06:31:02 -06:00
|
|
|
<-txDone
|
|
|
|
<-rxDone
|
2014-12-08 09:41:28 -06:00
|
|
|
|
|
|
|
return nil
|
2014-12-08 09:34:48 -06:00
|
|
|
}
|
2014-11-18 12:18:39 -06:00
|
|
|
|
2014-12-08 09:41:28 -06:00
|
|
|
func ssh_port_forward(local_port uint, remote_port uint, remote_dest, host, username, password string) error {
|
2014-11-18 12:18:39 -06:00
|
|
|
|
2014-12-08 09:34:48 -06:00
|
|
|
config := &gossh.ClientConfig{
|
|
|
|
User: username,
|
|
|
|
Auth: []gossh.AuthMethod{
|
|
|
|
gossh.Password(password),
|
|
|
|
},
|
|
|
|
}
|
2014-11-18 12:18:39 -06:00
|
|
|
|
2014-12-08 09:34:48 -06:00
|
|
|
// Listen on a local port
|
|
|
|
local_listener, err := net.Listen("tcp",
|
|
|
|
fmt.Sprintf("%s:%d",
|
|
|
|
"127.0.0.1",
|
|
|
|
local_port))
|
|
|
|
if err != nil {
|
2014-12-08 09:41:28 -06:00
|
|
|
log.Printf("Local listen failed: %s", err)
|
2014-12-08 09:34:48 -06:00
|
|
|
return err
|
|
|
|
}
|
2014-11-18 12:18:39 -06:00
|
|
|
|
2014-12-08 09:34:48 -06:00
|
|
|
for {
|
|
|
|
local_connection, err := local_listener.Accept()
|
2014-11-18 12:18:39 -06:00
|
|
|
|
2014-12-08 09:34:48 -06:00
|
|
|
if err != nil {
|
2014-12-08 09:41:28 -06:00
|
|
|
log.Printf("Local accept failed: %s", err)
|
2014-12-08 09:34:48 -06:00
|
|
|
return err
|
|
|
|
}
|
2014-11-18 12:18:39 -06:00
|
|
|
|
2014-12-08 09:34:48 -06:00
|
|
|
// Forward to a remote port
|
|
|
|
go forward(local_connection, config, host, remote_dest, remote_port)
|
|
|
|
}
|
2014-11-18 12:18:39 -06:00
|
|
|
|
2014-12-08 09:34:48 -06:00
|
|
|
return nil
|
2014-11-18 12:18:39 -06:00
|
|
|
}
|