packer-plugin-xenserver/builder/xenserver/ssh.go

150 lines
3.1 KiB
Go
Raw Normal View History

package xenserver
import (
2014-12-08 09:34:48 -06:00
"bytes"
gossh "code.google.com/p/go.crypto/ssh"
2014-12-08 09:34:48 -06:00
"fmt"
"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"
)
func sshAddress(state multistep.StateBag) (string, error) {
2014-12-08 09:34:48 -06:00
sshIP := state.Get("ssh_address").(string)
sshHostPort := 22
return fmt.Sprintf("%s:%d", sshIP, sshHostPort), nil
}
func sshLocalAddress(state multistep.StateBag) (string, error) {
2014-12-08 09:34:48 -06:00
sshLocalPort := state.Get("local_ssh_port").(uint)
conn_str := fmt.Sprintf("%s:%d", "127.0.0.1", sshLocalPort)
log.Printf("sshLocalAddress: %s", conn_str)
return conn_str, nil
}
func sshConfig(state multistep.StateBag) (*gossh.ClientConfig, error) {
config := state.Get("config").(config)
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-12-08 09:34:48 -06:00
func execute_ssh_cmd(cmd, host, port, username, password string) (stdout string, err error) {
// Setup connection config
config := &gossh.ClientConfig{
User: username,
Auth: []gossh.AuthMethod{
gossh.Password(password),
},
}
2014-12-08 09:34:48 -06:00
client, err := gossh.Dial("tcp", host+":"+port, config)
2014-12-08 09:34:48 -06:00
if err != nil {
return "", err
}
2014-12-08 09:34:48 -06:00
//Create session
session, err := client.NewSession()
2014-12-08 09:34:48 -06:00
if err != nil {
return "", err
}
2014-12-08 09:34:48 -06:00
defer session.Close()
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-12-08 09:34:48 -06:00
return strings.Trim(b.String(), "\n"), nil
}
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-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-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-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-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-08 09:41:28 -06:00
return nil
2014-12-08 09:34:48 -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-12-08 09:34:48 -06:00
config := &gossh.ClientConfig{
User: username,
Auth: []gossh.AuthMethod{
gossh.Password(password),
},
}
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-12-08 09:34:48 -06:00
for {
local_connection, err := local_listener.Accept()
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-12-08 09:34:48 -06:00
// Forward to a remote port
go forward(local_connection, config, host, remote_dest, remote_port)
}
2014-12-08 09:34:48 -06:00
return nil
}