2014-07-15 23:50:53 +02:00
|
|
|
package ssh
|
|
|
|
|
|
|
|
import (
|
2014-08-05 18:53:02 +02:00
|
|
|
"encoding/pem"
|
2014-07-15 23:50:53 +02:00
|
|
|
"fmt"
|
2014-07-16 01:51:20 +02:00
|
|
|
"io/ioutil"
|
2014-07-15 23:50:53 +02:00
|
|
|
"log"
|
2015-03-16 00:12:25 +01:00
|
|
|
"net"
|
|
|
|
"os"
|
2014-07-15 23:50:53 +02:00
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/hashicorp/terraform/terraform"
|
2014-08-19 21:27:01 +02:00
|
|
|
"github.com/mitchellh/go-homedir"
|
2014-07-15 23:50:53 +02:00
|
|
|
"github.com/mitchellh/mapstructure"
|
2015-03-16 00:12:25 +01:00
|
|
|
"golang.org/x/crypto/ssh"
|
|
|
|
"golang.org/x/crypto/ssh/agent"
|
2014-07-15 23:50:53 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2015-04-10 20:34:46 +02:00
|
|
|
// DefaultUser is used if there is no user given
|
2014-07-15 23:50:53 +02:00
|
|
|
DefaultUser = "root"
|
|
|
|
|
|
|
|
// DefaultPort is used if there is no port given
|
|
|
|
DefaultPort = 22
|
|
|
|
|
|
|
|
// DefaultScriptPath is used as the path to copy the file to
|
|
|
|
// for remote execution if not provided otherwise.
|
2015-04-30 18:02:33 +02:00
|
|
|
DefaultScriptPath = "/tmp/terraform_%RAND%.sh"
|
2014-07-15 23:50:53 +02:00
|
|
|
|
|
|
|
// DefaultTimeout is used if there is no timeout given
|
|
|
|
DefaultTimeout = 5 * time.Minute
|
|
|
|
)
|
|
|
|
|
2015-04-10 20:34:46 +02:00
|
|
|
// connectionInfo is decoded from the ConnInfo of the resource. These are the
|
2015-04-09 21:58:00 +02:00
|
|
|
// only keys we look at. If a KeyFile is given, that is used instead
|
|
|
|
// of a password.
|
2015-04-10 20:34:46 +02:00
|
|
|
type connectionInfo struct {
|
2014-07-15 23:50:53 +02:00
|
|
|
User string
|
|
|
|
Password string
|
|
|
|
KeyFile string `mapstructure:"key_file"`
|
|
|
|
Host string
|
|
|
|
Port int
|
2015-03-16 00:12:25 +01:00
|
|
|
Agent bool
|
2014-07-15 23:50:53 +02:00
|
|
|
Timeout string
|
|
|
|
ScriptPath string `mapstructure:"script_path"`
|
|
|
|
TimeoutVal time.Duration `mapstructure:"-"`
|
|
|
|
}
|
|
|
|
|
2015-04-10 20:34:46 +02:00
|
|
|
// parseConnectionInfo is used to convert the ConnInfo of the InstanceState into
|
2015-04-09 21:58:00 +02:00
|
|
|
// a ConnectionInfo struct
|
2015-04-10 20:34:46 +02:00
|
|
|
func parseConnectionInfo(s *terraform.InstanceState) (*connectionInfo, error) {
|
|
|
|
connInfo := &connectionInfo{}
|
2014-07-15 23:50:53 +02:00
|
|
|
decConf := &mapstructure.DecoderConfig{
|
|
|
|
WeaklyTypedInput: true,
|
2015-04-09 21:58:00 +02:00
|
|
|
Result: connInfo,
|
2014-07-15 23:50:53 +02:00
|
|
|
}
|
|
|
|
dec, err := mapstructure.NewDecoder(decConf)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2014-09-17 01:55:02 +02:00
|
|
|
if err := dec.Decode(s.Ephemeral.ConnInfo); err != nil {
|
2014-07-15 23:50:53 +02:00
|
|
|
return nil, err
|
|
|
|
}
|
2015-04-30 18:02:33 +02:00
|
|
|
|
2015-04-09 21:58:00 +02:00
|
|
|
if connInfo.User == "" {
|
|
|
|
connInfo.User = DefaultUser
|
2014-07-15 23:50:53 +02:00
|
|
|
}
|
2015-04-09 21:58:00 +02:00
|
|
|
if connInfo.Port == 0 {
|
|
|
|
connInfo.Port = DefaultPort
|
2014-07-15 23:50:53 +02:00
|
|
|
}
|
2015-04-09 21:58:00 +02:00
|
|
|
if connInfo.ScriptPath == "" {
|
|
|
|
connInfo.ScriptPath = DefaultScriptPath
|
2014-07-15 23:50:53 +02:00
|
|
|
}
|
2015-04-09 21:58:00 +02:00
|
|
|
if connInfo.Timeout != "" {
|
|
|
|
connInfo.TimeoutVal = safeDuration(connInfo.Timeout, DefaultTimeout)
|
2014-07-15 23:50:53 +02:00
|
|
|
} else {
|
2015-04-09 21:58:00 +02:00
|
|
|
connInfo.TimeoutVal = DefaultTimeout
|
2014-07-15 23:50:53 +02:00
|
|
|
}
|
2015-04-30 18:02:33 +02:00
|
|
|
|
2015-04-09 21:58:00 +02:00
|
|
|
return connInfo, nil
|
2014-07-15 23:50:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// safeDuration returns either the parsed duration or a default value
|
|
|
|
func safeDuration(dur string, defaultDur time.Duration) time.Duration {
|
|
|
|
d, err := time.ParseDuration(dur)
|
|
|
|
if err != nil {
|
|
|
|
log.Printf("Invalid duration '%s', using default of %s", dur, defaultDur)
|
|
|
|
return defaultDur
|
|
|
|
}
|
|
|
|
return d
|
|
|
|
}
|
2014-07-16 01:51:20 +02:00
|
|
|
|
2015-04-10 20:34:46 +02:00
|
|
|
// prepareSSHConfig is used to turn the *ConnectionInfo provided into a
|
2015-04-09 21:58:00 +02:00
|
|
|
// usable *SSHConfig for client initialization.
|
2015-04-10 20:34:46 +02:00
|
|
|
func prepareSSHConfig(connInfo *connectionInfo) (*sshConfig, error) {
|
2015-03-21 02:18:35 +01:00
|
|
|
var conn net.Conn
|
|
|
|
var err error
|
|
|
|
|
2014-07-16 01:51:20 +02:00
|
|
|
sshConf := &ssh.ClientConfig{
|
2015-04-09 21:58:00 +02:00
|
|
|
User: connInfo.User,
|
2014-07-16 01:51:20 +02:00
|
|
|
}
|
2015-04-09 21:58:00 +02:00
|
|
|
if connInfo.Agent {
|
2015-03-16 00:12:25 +01:00
|
|
|
sshAuthSock := os.Getenv("SSH_AUTH_SOCK")
|
|
|
|
|
|
|
|
if sshAuthSock == "" {
|
|
|
|
return nil, fmt.Errorf("SSH Requested but SSH_AUTH_SOCK not-specified")
|
|
|
|
}
|
|
|
|
|
2015-03-21 02:18:35 +01:00
|
|
|
conn, err = net.Dial("unix", sshAuthSock)
|
2015-03-16 00:12:25 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("Error connecting to SSH_AUTH_SOCK: %v", err)
|
|
|
|
}
|
|
|
|
// I need to close this but, later after all connections have been made
|
|
|
|
// defer conn.Close()
|
|
|
|
signers, err := agent.NewClient(conn).Signers()
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("Error getting keys from ssh agent: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
sshConf.Auth = append(sshConf.Auth, ssh.PublicKeys(signers...))
|
|
|
|
}
|
2015-04-09 21:58:00 +02:00
|
|
|
if connInfo.KeyFile != "" {
|
|
|
|
fullPath, err := homedir.Expand(connInfo.KeyFile)
|
2014-08-11 20:39:29 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("Failed to expand home directory: %v", err)
|
|
|
|
}
|
|
|
|
key, err := ioutil.ReadFile(fullPath)
|
2014-07-16 01:51:20 +02:00
|
|
|
if err != nil {
|
2015-04-09 21:58:00 +02:00
|
|
|
return nil, fmt.Errorf("Failed to read key file '%s': %v", connInfo.KeyFile, err)
|
2014-07-16 01:51:20 +02:00
|
|
|
}
|
2014-08-05 18:53:02 +02:00
|
|
|
|
|
|
|
// We parse the private key on our own first so that we can
|
|
|
|
// show a nicer error if the private key has a password.
|
|
|
|
block, _ := pem.Decode(key)
|
|
|
|
if block == nil {
|
|
|
|
return nil, fmt.Errorf(
|
2015-04-09 21:58:00 +02:00
|
|
|
"Failed to read key '%s': no key found", connInfo.KeyFile)
|
2014-08-05 18:53:02 +02:00
|
|
|
}
|
|
|
|
if block.Headers["Proc-Type"] == "4,ENCRYPTED" {
|
|
|
|
return nil, fmt.Errorf(
|
|
|
|
"Failed to read key '%s': password protected keys are\n"+
|
2015-04-09 21:58:00 +02:00
|
|
|
"not supported. Please decrypt the key prior to use.", connInfo.KeyFile)
|
2014-08-05 18:53:02 +02:00
|
|
|
}
|
|
|
|
|
2014-07-16 01:51:20 +02:00
|
|
|
signer, err := ssh.ParsePrivateKey(key)
|
|
|
|
if err != nil {
|
2015-04-09 21:58:00 +02:00
|
|
|
return nil, fmt.Errorf("Failed to parse key file '%s': %v", connInfo.KeyFile, err)
|
2014-07-16 01:51:20 +02:00
|
|
|
}
|
2014-08-05 18:53:02 +02:00
|
|
|
|
2014-07-16 01:51:20 +02:00
|
|
|
sshConf.Auth = append(sshConf.Auth, ssh.PublicKeys(signer))
|
|
|
|
}
|
2015-04-09 21:58:00 +02:00
|
|
|
if connInfo.Password != "" {
|
2014-07-16 01:51:20 +02:00
|
|
|
sshConf.Auth = append(sshConf.Auth,
|
2015-04-09 21:58:00 +02:00
|
|
|
ssh.Password(connInfo.Password))
|
2014-07-16 01:51:20 +02:00
|
|
|
sshConf.Auth = append(sshConf.Auth,
|
2015-04-09 21:58:00 +02:00
|
|
|
ssh.KeyboardInteractive(PasswordKeyboardInteractive(connInfo.Password)))
|
2014-07-16 01:51:20 +02:00
|
|
|
}
|
2015-04-09 21:58:00 +02:00
|
|
|
host := fmt.Sprintf("%s:%d", connInfo.Host, connInfo.Port)
|
2015-04-10 20:34:46 +02:00
|
|
|
config := &sshConfig{
|
|
|
|
config: sshConf,
|
|
|
|
connection: ConnectFunc("tcp", host),
|
|
|
|
sshAgentConn: conn,
|
2014-07-16 01:51:20 +02:00
|
|
|
}
|
|
|
|
return config, nil
|
|
|
|
}
|