2014-07-10 23:52:43 +02:00
|
|
|
package ssh
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bufio"
|
|
|
|
"bytes"
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
"io"
|
|
|
|
"io/ioutil"
|
|
|
|
"log"
|
2015-04-30 18:02:33 +02:00
|
|
|
"math/rand"
|
2014-07-10 23:52:43 +02:00
|
|
|
"net"
|
|
|
|
"os"
|
|
|
|
"path/filepath"
|
2015-04-30 18:02:33 +02:00
|
|
|
"strconv"
|
|
|
|
"strings"
|
2014-07-15 02:23:33 +02:00
|
|
|
"time"
|
2014-10-13 21:47:55 +02:00
|
|
|
|
2015-04-09 21:58:00 +02:00
|
|
|
"github.com/hashicorp/terraform/communicator/remote"
|
|
|
|
"github.com/hashicorp/terraform/terraform"
|
2015-03-11 21:48:47 +01:00
|
|
|
"golang.org/x/crypto/ssh"
|
2015-06-22 18:34:02 +02:00
|
|
|
"golang.org/x/crypto/ssh/agent"
|
2014-07-10 23:52:43 +02:00
|
|
|
)
|
|
|
|
|
2015-04-09 21:58:00 +02:00
|
|
|
const (
|
|
|
|
// DefaultShebang is added at the top of a SSH script file
|
|
|
|
DefaultShebang = "#!/bin/sh\n"
|
|
|
|
)
|
2014-07-10 23:52:43 +02:00
|
|
|
|
2015-04-10 20:34:46 +02:00
|
|
|
// Communicator represents the SSH communicator
|
|
|
|
type Communicator struct {
|
|
|
|
connInfo *connectionInfo
|
2015-04-09 21:58:00 +02:00
|
|
|
client *ssh.Client
|
2015-04-10 20:34:46 +02:00
|
|
|
config *sshConfig
|
2015-04-09 21:58:00 +02:00
|
|
|
conn net.Conn
|
|
|
|
address string
|
2014-07-10 23:52:43 +02:00
|
|
|
}
|
|
|
|
|
2015-04-10 20:34:46 +02:00
|
|
|
type sshConfig struct {
|
2014-07-10 23:52:43 +02:00
|
|
|
// The configuration of the Go SSH connection
|
2015-04-10 20:34:46 +02:00
|
|
|
config *ssh.ClientConfig
|
2014-07-10 23:52:43 +02:00
|
|
|
|
2015-04-10 20:34:46 +02:00
|
|
|
// connection returns a new connection. The current connection
|
2014-07-10 23:52:43 +02:00
|
|
|
// in use will be closed as part of the Close method, or in the
|
|
|
|
// case an error occurs.
|
2015-04-10 20:34:46 +02:00
|
|
|
connection func() (net.Conn, error)
|
2014-07-10 23:52:43 +02:00
|
|
|
|
2015-04-10 20:34:46 +02:00
|
|
|
// noPty, if true, will not request a pty from the remote end.
|
|
|
|
noPty bool
|
2015-03-21 02:18:35 +01:00
|
|
|
|
2015-06-22 18:34:02 +02:00
|
|
|
// sshAgent is a struct surrounding the agent.Agent client and the net.Conn
|
|
|
|
// to the SSH Agent. It is nil if no SSH agent is configured
|
|
|
|
sshAgent *sshAgent
|
2014-07-10 23:52:43 +02:00
|
|
|
}
|
|
|
|
|
2015-04-10 20:34:46 +02:00
|
|
|
// New creates a new communicator implementation over SSH.
|
|
|
|
func New(s *terraform.InstanceState) (*Communicator, error) {
|
|
|
|
connInfo, err := parseConnectionInfo(s)
|
2015-04-09 21:58:00 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2015-04-10 20:34:46 +02:00
|
|
|
config, err := prepareSSHConfig(connInfo)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
comm := &Communicator{
|
|
|
|
connInfo: connInfo,
|
|
|
|
config: config,
|
|
|
|
}
|
2015-04-09 21:58:00 +02:00
|
|
|
|
|
|
|
return comm, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Connect implementation of communicator.Communicator interface
|
2015-04-10 20:34:46 +02:00
|
|
|
func (c *Communicator) Connect(o terraform.UIOutput) (err error) {
|
2015-04-09 21:58:00 +02:00
|
|
|
if c.conn != nil {
|
|
|
|
c.conn.Close()
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set the conn and client to nil since we'll recreate it
|
|
|
|
c.conn = nil
|
|
|
|
c.client = nil
|
|
|
|
|
|
|
|
if o != nil {
|
|
|
|
o.Output(fmt.Sprintf(
|
|
|
|
"Connecting to remote host via SSH...\n"+
|
|
|
|
" Host: %s\n"+
|
|
|
|
" User: %s\n"+
|
2015-04-10 20:34:46 +02:00
|
|
|
" Password: %t\n"+
|
|
|
|
" Private key: %t\n"+
|
|
|
|
" SSH Agent: %t",
|
2015-04-09 21:58:00 +02:00
|
|
|
c.connInfo.Host, c.connInfo.User,
|
|
|
|
c.connInfo.Password != "",
|
|
|
|
c.connInfo.KeyFile != "",
|
|
|
|
c.connInfo.Agent,
|
|
|
|
))
|
2015-07-10 20:53:06 +02:00
|
|
|
|
|
|
|
if c.connInfo.BastionHost != "" {
|
|
|
|
o.Output(fmt.Sprintf(
|
2015-07-16 19:16:39 +02:00
|
|
|
"Using configured bastion host...\n"+
|
2015-07-10 20:53:06 +02:00
|
|
|
" Host: %s\n"+
|
|
|
|
" User: %s\n"+
|
|
|
|
" Password: %t\n"+
|
|
|
|
" Private key: %t\n"+
|
|
|
|
" SSH Agent: %t",
|
|
|
|
c.connInfo.BastionHost, c.connInfo.BastionUser,
|
|
|
|
c.connInfo.BastionPassword != "",
|
|
|
|
c.connInfo.BastionKeyFile != "",
|
|
|
|
c.connInfo.Agent,
|
|
|
|
))
|
|
|
|
}
|
2014-07-10 23:52:43 +02:00
|
|
|
}
|
|
|
|
|
2015-04-09 21:58:00 +02:00
|
|
|
log.Printf("connecting to TCP connection for SSH")
|
2015-04-10 20:34:46 +02:00
|
|
|
c.conn, err = c.config.connection()
|
2015-04-09 21:58:00 +02:00
|
|
|
if err != nil {
|
|
|
|
// Explicitly set this to the REAL nil. Connection() can return
|
|
|
|
// a nil implementation of net.Conn which will make the
|
|
|
|
// "if c.conn == nil" check fail above. Read here for more information
|
|
|
|
// on this psychotic language feature:
|
|
|
|
//
|
|
|
|
// http://golang.org/doc/faq#nil_error
|
|
|
|
c.conn = nil
|
|
|
|
|
|
|
|
log.Printf("connection error: %s", err)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Printf("handshaking with SSH")
|
|
|
|
host := fmt.Sprintf("%s:%d", c.connInfo.Host, c.connInfo.Port)
|
2015-04-10 20:34:46 +02:00
|
|
|
sshConn, sshChan, req, err := ssh.NewClientConn(c.conn, host, c.config.config)
|
2015-04-09 21:58:00 +02:00
|
|
|
if err != nil {
|
|
|
|
log.Printf("handshake error: %s", err)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
c.client = ssh.NewClient(sshConn, sshChan, req)
|
|
|
|
|
2015-06-22 18:34:02 +02:00
|
|
|
if c.config.sshAgent != nil {
|
2015-09-11 20:56:20 +02:00
|
|
|
log.Printf("[DEBUG] Telling SSH config to forward to agent")
|
2015-06-22 18:34:02 +02:00
|
|
|
if err := c.config.sshAgent.ForwardToAgent(c.client); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Printf("[DEBUG] Setting up a session to request agent forwarding")
|
|
|
|
session, err := c.newSession()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer session.Close()
|
|
|
|
|
2015-07-10 20:51:45 +02:00
|
|
|
err = agent.RequestAgentForwarding(session)
|
2015-06-22 18:34:02 +02:00
|
|
|
|
2015-07-10 20:51:45 +02:00
|
|
|
if err == nil {
|
|
|
|
log.Printf("[INFO] agent forwarding enabled")
|
|
|
|
} else {
|
|
|
|
log.Printf("[WARN] error forwarding agent: %s", err)
|
|
|
|
}
|
2015-06-22 18:34:02 +02:00
|
|
|
}
|
|
|
|
|
2015-04-09 21:58:00 +02:00
|
|
|
if o != nil {
|
|
|
|
o.Output("Connected!")
|
|
|
|
}
|
|
|
|
|
|
|
|
return err
|
2014-07-10 23:52:43 +02:00
|
|
|
}
|
|
|
|
|
2015-04-09 21:58:00 +02:00
|
|
|
// Disconnect implementation of communicator.Communicator interface
|
2015-04-10 20:34:46 +02:00
|
|
|
func (c *Communicator) Disconnect() error {
|
2015-06-22 18:34:02 +02:00
|
|
|
if c.config.sshAgent != nil {
|
|
|
|
return c.config.sshAgent.Close()
|
2015-04-09 21:58:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Timeout implementation of communicator.Communicator interface
|
2015-04-10 20:34:46 +02:00
|
|
|
func (c *Communicator) Timeout() time.Duration {
|
2015-04-09 21:58:00 +02:00
|
|
|
return c.connInfo.TimeoutVal
|
|
|
|
}
|
|
|
|
|
2015-04-10 20:34:46 +02:00
|
|
|
// ScriptPath implementation of communicator.Communicator interface
|
|
|
|
func (c *Communicator) ScriptPath() string {
|
2015-04-30 18:02:33 +02:00
|
|
|
return strings.Replace(
|
|
|
|
c.connInfo.ScriptPath, "%RAND%",
|
|
|
|
strconv.FormatInt(int64(rand.Int31()), 10), -1)
|
2015-04-09 21:58:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Start implementation of communicator.Communicator interface
|
2015-04-10 20:34:46 +02:00
|
|
|
func (c *Communicator) Start(cmd *remote.Cmd) error {
|
2014-07-10 23:52:43 +02:00
|
|
|
session, err := c.newSession()
|
|
|
|
if err != nil {
|
2015-04-09 21:58:00 +02:00
|
|
|
return err
|
2014-07-10 23:52:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Setup our session
|
|
|
|
session.Stdin = cmd.Stdin
|
|
|
|
session.Stdout = cmd.Stdout
|
|
|
|
session.Stderr = cmd.Stderr
|
|
|
|
|
2015-04-10 20:34:46 +02:00
|
|
|
if !c.config.noPty {
|
2014-07-10 23:52:43 +02:00
|
|
|
// Request a PTY
|
|
|
|
termModes := ssh.TerminalModes{
|
|
|
|
ssh.ECHO: 0, // do not echo
|
|
|
|
ssh.TTY_OP_ISPEED: 14400, // input speed = 14.4kbaud
|
|
|
|
ssh.TTY_OP_OSPEED: 14400, // output speed = 14.4kbaud
|
|
|
|
}
|
|
|
|
|
2015-04-09 21:58:00 +02:00
|
|
|
if err := session.RequestPty("xterm", 80, 40, termModes); err != nil {
|
|
|
|
return err
|
2014-07-10 23:52:43 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Printf("starting remote command: %s", cmd.Command)
|
|
|
|
err = session.Start(cmd.Command + "\n")
|
|
|
|
if err != nil {
|
2015-04-09 21:58:00 +02:00
|
|
|
return err
|
2014-07-10 23:52:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Start a goroutine to wait for the session to end and set the
|
|
|
|
// exit boolean and status.
|
|
|
|
go func() {
|
|
|
|
defer session.Close()
|
|
|
|
|
|
|
|
err := session.Wait()
|
|
|
|
exitStatus := 0
|
|
|
|
if err != nil {
|
|
|
|
exitErr, ok := err.(*ssh.ExitError)
|
|
|
|
if ok {
|
|
|
|
exitStatus = exitErr.ExitStatus()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Printf("remote command exited with '%d': %s", exitStatus, cmd.Command)
|
|
|
|
cmd.SetExited(exitStatus)
|
|
|
|
}()
|
|
|
|
|
2015-04-09 21:58:00 +02:00
|
|
|
return nil
|
2014-07-10 23:52:43 +02:00
|
|
|
}
|
|
|
|
|
2015-04-09 21:58:00 +02:00
|
|
|
// Upload implementation of communicator.Communicator interface
|
2015-04-10 20:34:46 +02:00
|
|
|
func (c *Communicator) Upload(path string, input io.Reader) error {
|
2014-07-10 23:52:43 +02:00
|
|
|
// The target directory and file for talking the SCP protocol
|
2014-08-07 20:19:08 +02:00
|
|
|
targetDir := filepath.Dir(path)
|
2014-08-07 19:53:18 +02:00
|
|
|
targetFile := filepath.Base(path)
|
2014-07-10 23:52:43 +02:00
|
|
|
|
2014-08-07 09:19:56 +02:00
|
|
|
// On windows, filepath.Dir uses backslash separators (ie. "\tmp").
|
2014-07-10 23:52:43 +02:00
|
|
|
// This does not work when the target host is unix. Switch to forward slash
|
|
|
|
// which works for unix and windows
|
2014-08-07 20:19:08 +02:00
|
|
|
targetDir = filepath.ToSlash(targetDir)
|
2014-07-10 23:52:43 +02:00
|
|
|
|
|
|
|
scpFunc := func(w io.Writer, stdoutR *bufio.Reader) error {
|
2014-08-07 19:53:18 +02:00
|
|
|
return scpUploadFile(targetFile, input, w, stdoutR)
|
2014-07-10 23:52:43 +02:00
|
|
|
}
|
|
|
|
|
2014-08-07 20:19:08 +02:00
|
|
|
return c.scpSession("scp -vt "+targetDir, scpFunc)
|
2014-07-10 23:52:43 +02:00
|
|
|
}
|
|
|
|
|
2015-04-09 21:58:00 +02:00
|
|
|
// UploadScript implementation of communicator.Communicator interface
|
2015-04-10 20:34:46 +02:00
|
|
|
func (c *Communicator) UploadScript(path string, input io.Reader) error {
|
2015-05-21 23:36:54 +02:00
|
|
|
reader := bufio.NewReader(input)
|
|
|
|
prefix, err := reader.Peek(2)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("Error reading script: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
var script bytes.Buffer
|
|
|
|
if string(prefix) != "#!" {
|
|
|
|
script.WriteString(DefaultShebang)
|
|
|
|
}
|
2015-04-09 21:58:00 +02:00
|
|
|
|
2015-05-21 23:36:54 +02:00
|
|
|
script.ReadFrom(reader)
|
|
|
|
if err := c.Upload(path, &script); err != nil {
|
2015-04-09 21:58:00 +02:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-05-05 21:26:28 +02:00
|
|
|
var stdout, stderr bytes.Buffer
|
2015-04-09 21:58:00 +02:00
|
|
|
cmd := &remote.Cmd{
|
2015-05-04 22:44:44 +02:00
|
|
|
Command: fmt.Sprintf("chmod 0777 %s", path),
|
2015-05-05 21:26:28 +02:00
|
|
|
Stdout: &stdout,
|
|
|
|
Stderr: &stderr,
|
2015-04-09 21:58:00 +02:00
|
|
|
}
|
|
|
|
if err := c.Start(cmd); err != nil {
|
|
|
|
return fmt.Errorf(
|
|
|
|
"Error chmodding script file to 0777 in remote "+
|
|
|
|
"machine: %s", err)
|
|
|
|
}
|
|
|
|
cmd.Wait()
|
2015-05-04 22:43:38 +02:00
|
|
|
if cmd.ExitStatus != 0 {
|
|
|
|
return fmt.Errorf(
|
|
|
|
"Error chmodding script file to 0777 in remote "+
|
2015-05-05 21:56:20 +02:00
|
|
|
"machine %d: %s %s", cmd.ExitStatus, stdout.String(), stderr.String())
|
2015-05-04 22:43:38 +02:00
|
|
|
}
|
2015-04-09 21:58:00 +02:00
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// UploadDir implementation of communicator.Communicator interface
|
2015-04-10 20:34:46 +02:00
|
|
|
func (c *Communicator) UploadDir(dst string, src string) error {
|
2015-05-11 15:18:32 +02:00
|
|
|
log.Printf("Uploading dir '%s' to '%s'", src, dst)
|
2014-07-10 23:52:43 +02:00
|
|
|
scpFunc := func(w io.Writer, r *bufio.Reader) error {
|
|
|
|
uploadEntries := func() error {
|
|
|
|
f, err := os.Open(src)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer f.Close()
|
|
|
|
|
|
|
|
entries, err := f.Readdir(-1)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return scpUploadDir(src, entries, w, r)
|
|
|
|
}
|
|
|
|
|
|
|
|
if src[len(src)-1] != '/' {
|
|
|
|
log.Printf("No trailing slash, creating the source directory name")
|
|
|
|
return scpUploadDirProtocol(filepath.Base(src), w, r, uploadEntries)
|
2014-08-21 07:24:35 +02:00
|
|
|
}
|
2014-08-07 20:29:02 +02:00
|
|
|
// Trailing slash, so only upload the contents
|
|
|
|
return uploadEntries()
|
2014-07-10 23:52:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return c.scpSession("scp -rvt "+dst, scpFunc)
|
|
|
|
}
|
|
|
|
|
2015-04-10 20:34:46 +02:00
|
|
|
func (c *Communicator) newSession() (session *ssh.Session, err error) {
|
2014-07-10 23:52:43 +02:00
|
|
|
log.Println("opening new ssh session")
|
|
|
|
if c.client == nil {
|
|
|
|
err = errors.New("client not available")
|
|
|
|
} else {
|
|
|
|
session, err = c.client.NewSession()
|
|
|
|
}
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
log.Printf("ssh session open error: '%s', attempting reconnect", err)
|
2015-04-09 21:58:00 +02:00
|
|
|
if err := c.Connect(nil); err != nil {
|
2014-07-10 23:52:43 +02:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return c.client.NewSession()
|
|
|
|
}
|
|
|
|
|
|
|
|
return session, nil
|
|
|
|
}
|
|
|
|
|
2015-04-10 20:34:46 +02:00
|
|
|
func (c *Communicator) scpSession(scpCommand string, f func(io.Writer, *bufio.Reader) error) error {
|
2014-07-10 23:52:43 +02:00
|
|
|
session, err := c.newSession()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer session.Close()
|
|
|
|
|
|
|
|
// Get a pipe to stdin so that we can send data down
|
|
|
|
stdinW, err := session.StdinPipe()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// We only want to close once, so we nil w after we close it,
|
|
|
|
// and only close in the defer if it hasn't been closed already.
|
|
|
|
defer func() {
|
|
|
|
if stdinW != nil {
|
|
|
|
stdinW.Close()
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
// Get a pipe to stdout so that we can get responses back
|
|
|
|
stdoutPipe, err := session.StdoutPipe()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
stdoutR := bufio.NewReader(stdoutPipe)
|
|
|
|
|
|
|
|
// Set stderr to a bytes buffer
|
|
|
|
stderr := new(bytes.Buffer)
|
|
|
|
session.Stderr = stderr
|
|
|
|
|
|
|
|
// Start the sink mode on the other side
|
|
|
|
// TODO(mitchellh): There are probably issues with shell escaping the path
|
|
|
|
log.Println("Starting remote scp process: ", scpCommand)
|
|
|
|
if err := session.Start(scpCommand); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Call our callback that executes in the context of SCP. We ignore
|
|
|
|
// EOF errors if they occur because it usually means that SCP prematurely
|
|
|
|
// ended on the other side.
|
|
|
|
log.Println("Started SCP session, beginning transfers...")
|
|
|
|
if err := f(stdinW, stdoutR); err != nil && err != io.EOF {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Close the stdin, which sends an EOF, and then set w to nil so that
|
|
|
|
// our defer func doesn't close it again since that is unsafe with
|
|
|
|
// the Go SSH package.
|
|
|
|
log.Println("SCP session complete, closing stdin pipe.")
|
|
|
|
stdinW.Close()
|
|
|
|
stdinW = nil
|
|
|
|
|
|
|
|
// Wait for the SCP connection to close, meaning it has consumed all
|
|
|
|
// our data and has completed. Or has errored.
|
|
|
|
log.Println("Waiting for SSH session to complete.")
|
|
|
|
err = session.Wait()
|
|
|
|
if err != nil {
|
|
|
|
if exitErr, ok := err.(*ssh.ExitError); ok {
|
|
|
|
// Otherwise, we have an ExitErorr, meaning we can just read
|
|
|
|
// the exit status
|
|
|
|
log.Printf("non-zero exit status: %d", exitErr.ExitStatus())
|
|
|
|
|
|
|
|
// If we exited with status 127, it means SCP isn't available.
|
|
|
|
// Return a more descriptive error for that.
|
|
|
|
if exitErr.ExitStatus() == 127 {
|
|
|
|
return errors.New(
|
|
|
|
"SCP failed to start. This usually means that SCP is not\n" +
|
|
|
|
"properly installed on the remote system.")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Printf("scp stderr (length %d): %s", stderr.Len(), stderr.String())
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// checkSCPStatus checks that a prior command sent to SCP completed
|
|
|
|
// successfully. If it did not complete successfully, an error will
|
|
|
|
// be returned.
|
|
|
|
func checkSCPStatus(r *bufio.Reader) error {
|
|
|
|
code, err := r.ReadByte()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if code != 0 {
|
|
|
|
// Treat any non-zero (really 1 and 2) as fatal errors
|
|
|
|
message, _, err := r.ReadLine()
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("Error reading error message: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return errors.New(string(message))
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func scpUploadFile(dst string, src io.Reader, w io.Writer, r *bufio.Reader) error {
|
|
|
|
// Create a temporary file where we can copy the contents of the src
|
|
|
|
// so that we can determine the length, since SCP is length-prefixed.
|
2015-04-09 21:58:00 +02:00
|
|
|
tf, err := ioutil.TempFile("", "terraform-upload")
|
2014-07-10 23:52:43 +02:00
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("Error creating temporary file for upload: %s", err)
|
|
|
|
}
|
|
|
|
defer os.Remove(tf.Name())
|
|
|
|
defer tf.Close()
|
|
|
|
|
|
|
|
log.Println("Copying input data into temporary file so we can read the length")
|
|
|
|
if _, err := io.Copy(tf, src); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Sync the file so that the contents are definitely on disk, then
|
|
|
|
// read the length of it.
|
|
|
|
if err := tf.Sync(); err != nil {
|
|
|
|
return fmt.Errorf("Error creating temporary file for upload: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Seek the file to the beginning so we can re-read all of it
|
|
|
|
if _, err := tf.Seek(0, 0); err != nil {
|
|
|
|
return fmt.Errorf("Error creating temporary file for upload: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
fi, err := tf.Stat()
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("Error creating temporary file for upload: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Start the protocol
|
|
|
|
log.Println("Beginning file upload...")
|
|
|
|
fmt.Fprintln(w, "C0644", fi.Size(), dst)
|
|
|
|
if err := checkSCPStatus(r); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if _, err := io.Copy(w, tf); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
fmt.Fprint(w, "\x00")
|
|
|
|
if err := checkSCPStatus(r); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func scpUploadDirProtocol(name string, w io.Writer, r *bufio.Reader, f func() error) error {
|
|
|
|
log.Printf("SCP: starting directory upload: %s", name)
|
|
|
|
fmt.Fprintln(w, "D0755 0", name)
|
|
|
|
err := checkSCPStatus(r)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := f(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
fmt.Fprintln(w, "E")
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func scpUploadDir(root string, fs []os.FileInfo, w io.Writer, r *bufio.Reader) error {
|
|
|
|
for _, fi := range fs {
|
|
|
|
realPath := filepath.Join(root, fi.Name())
|
|
|
|
|
|
|
|
// Track if this is actually a symlink to a directory. If it is
|
|
|
|
// a symlink to a file we don't do any special behavior because uploading
|
|
|
|
// a file just works. If it is a directory, we need to know so we
|
|
|
|
// treat it as such.
|
|
|
|
isSymlinkToDir := false
|
|
|
|
if fi.Mode()&os.ModeSymlink == os.ModeSymlink {
|
|
|
|
symPath, err := filepath.EvalSymlinks(realPath)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
symFi, err := os.Lstat(symPath)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
isSymlinkToDir = symFi.IsDir()
|
|
|
|
}
|
|
|
|
|
|
|
|
if !fi.IsDir() && !isSymlinkToDir {
|
|
|
|
// It is a regular file (or symlink to a file), just upload it
|
|
|
|
f, err := os.Open(realPath)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
err = func() error {
|
|
|
|
defer f.Close()
|
|
|
|
return scpUploadFile(fi.Name(), f, w, r)
|
|
|
|
}()
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
// It is a directory, recursively upload
|
|
|
|
err := scpUploadDirProtocol(fi.Name(), w, r, func() error {
|
|
|
|
f, err := os.Open(realPath)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer f.Close()
|
|
|
|
|
|
|
|
entries, err := f.Readdir(-1)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return scpUploadDir(realPath, entries, w, r)
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
2014-07-15 02:23:33 +02:00
|
|
|
|
|
|
|
// ConnectFunc is a convenience method for returning a function
|
|
|
|
// that just uses net.Dial to communicate with the remote end that
|
|
|
|
// is suitable for use with the SSH communicator configuration.
|
|
|
|
func ConnectFunc(network, addr string) func() (net.Conn, error) {
|
|
|
|
return func() (net.Conn, error) {
|
|
|
|
c, err := net.DialTimeout(network, addr, 15*time.Second)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if tcpConn, ok := c.(*net.TCPConn); ok {
|
|
|
|
tcpConn.SetKeepAlive(true)
|
|
|
|
}
|
|
|
|
|
|
|
|
return c, nil
|
|
|
|
}
|
|
|
|
}
|
2015-06-22 18:34:02 +02:00
|
|
|
|
|
|
|
// BastionConnectFunc is a convenience method for returning a function
|
|
|
|
// that connects to a host over a bastion connection.
|
|
|
|
func BastionConnectFunc(
|
|
|
|
bProto string,
|
|
|
|
bAddr string,
|
|
|
|
bConf *ssh.ClientConfig,
|
|
|
|
proto string,
|
|
|
|
addr string) func() (net.Conn, error) {
|
|
|
|
return func() (net.Conn, error) {
|
|
|
|
log.Printf("[DEBUG] Connecting to bastion: %s", bAddr)
|
|
|
|
bastion, err := ssh.Dial(bProto, bAddr, bConf)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("Error connecting to bastion: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Printf("[DEBUG] Connecting via bastion (%s) to host: %s", bAddr, addr)
|
|
|
|
conn, err := bastion.Dial(proto, addr)
|
|
|
|
if err != nil {
|
|
|
|
bastion.Close()
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Wrap it up so we close both things properly
|
|
|
|
return &bastionConn{
|
|
|
|
Conn: conn,
|
|
|
|
Bastion: bastion,
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
type bastionConn struct {
|
|
|
|
net.Conn
|
|
|
|
Bastion *ssh.Client
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *bastionConn) Close() error {
|
|
|
|
c.Conn.Close()
|
|
|
|
return c.Bastion.Close()
|
|
|
|
}
|