2015-03-10 00:11:57 -04:00
|
|
|
package ansible
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bufio"
|
|
|
|
"bytes"
|
2016-02-04 21:40:17 -05:00
|
|
|
"crypto/rand"
|
|
|
|
"crypto/rsa"
|
|
|
|
"crypto/x509"
|
|
|
|
"encoding/pem"
|
2015-03-10 00:11:57 -04:00
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
"io"
|
|
|
|
"io/ioutil"
|
|
|
|
"log"
|
|
|
|
"net"
|
|
|
|
"os"
|
|
|
|
"os/exec"
|
2018-01-03 02:33:32 -05:00
|
|
|
"os/user"
|
2015-03-10 00:11:57 -04:00
|
|
|
"path/filepath"
|
2016-03-01 13:35:48 -05:00
|
|
|
"regexp"
|
2015-03-10 00:11:57 -04:00
|
|
|
"strconv"
|
|
|
|
"strings"
|
|
|
|
"sync"
|
2016-02-27 01:20:54 -05:00
|
|
|
"unicode"
|
2015-03-10 00:11:57 -04:00
|
|
|
|
|
|
|
"golang.org/x/crypto/ssh"
|
|
|
|
|
2017-04-04 16:39:01 -04:00
|
|
|
"github.com/hashicorp/packer/common"
|
2018-09-10 19:48:42 -04:00
|
|
|
commonhelper "github.com/hashicorp/packer/helper/common"
|
2017-04-04 16:39:01 -04:00
|
|
|
"github.com/hashicorp/packer/helper/config"
|
|
|
|
"github.com/hashicorp/packer/packer"
|
|
|
|
"github.com/hashicorp/packer/template/interpolate"
|
2015-03-10 00:11:57 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
type Config struct {
|
|
|
|
common.PackerConfig `mapstructure:",squash"`
|
|
|
|
ctx interpolate.Context
|
|
|
|
|
|
|
|
// The command to run ansible
|
|
|
|
Command string
|
|
|
|
|
|
|
|
// Extra options to pass to the ansible command
|
|
|
|
ExtraArguments []string `mapstructure:"extra_arguments"`
|
|
|
|
|
2016-02-14 19:07:02 -05:00
|
|
|
AnsibleEnvVars []string `mapstructure:"ansible_env_vars"`
|
|
|
|
|
2015-03-10 00:11:57 -04:00
|
|
|
// The main playbook file to execute.
|
2016-02-11 01:24:12 -05:00
|
|
|
PlaybookFile string `mapstructure:"playbook_file"`
|
|
|
|
Groups []string `mapstructure:"groups"`
|
2016-02-19 17:43:29 -05:00
|
|
|
EmptyGroups []string `mapstructure:"empty_groups"`
|
2016-02-11 01:24:12 -05:00
|
|
|
HostAlias string `mapstructure:"host_alias"`
|
2016-02-26 15:50:50 -05:00
|
|
|
User string `mapstructure:"user"`
|
2016-02-11 01:24:12 -05:00
|
|
|
LocalPort string `mapstructure:"local_port"`
|
|
|
|
SSHHostKeyFile string `mapstructure:"ssh_host_key_file"`
|
|
|
|
SSHAuthorizedKeyFile string `mapstructure:"ssh_authorized_key_file"`
|
|
|
|
SFTPCmd string `mapstructure:"sftp_command"`
|
2017-06-07 14:12:07 -04:00
|
|
|
SkipVersionCheck bool `mapstructure:"skip_version_check"`
|
2016-09-12 02:29:24 -04:00
|
|
|
UseSFTP bool `mapstructure:"use_sftp"`
|
2017-04-04 17:43:46 -04:00
|
|
|
InventoryDirectory string `mapstructure:"inventory_directory"`
|
2018-04-05 05:56:07 -04:00
|
|
|
InventoryFile string `mapstructure:"inventory_file"`
|
2015-03-10 00:11:57 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
type Provisioner struct {
|
2016-03-01 13:35:48 -05:00
|
|
|
config Config
|
|
|
|
adapter *adapter
|
|
|
|
done chan struct{}
|
|
|
|
ansibleVersion string
|
|
|
|
ansibleMajVersion uint
|
2015-03-10 00:11:57 -04:00
|
|
|
}
|
|
|
|
|
2018-07-17 15:52:32 -04:00
|
|
|
type PassthroughTemplate struct {
|
|
|
|
WinRMPassword string
|
|
|
|
}
|
|
|
|
|
2015-03-10 00:11:57 -04:00
|
|
|
func (p *Provisioner) Prepare(raws ...interface{}) error {
|
|
|
|
p.done = make(chan struct{})
|
|
|
|
|
2018-09-10 19:48:42 -04:00
|
|
|
// Create passthrough for winrm password so we can fill it in once we know
|
|
|
|
// it
|
2018-07-17 15:52:32 -04:00
|
|
|
p.config.ctx.Data = &PassthroughTemplate{
|
|
|
|
WinRMPassword: `{{.WinRMPassword}}`,
|
|
|
|
}
|
2018-09-10 19:48:42 -04:00
|
|
|
|
2015-03-10 00:11:57 -04:00
|
|
|
err := config.Decode(&p.config, &config.DecodeOpts{
|
|
|
|
Interpolate: true,
|
|
|
|
InterpolateContext: &p.config.ctx,
|
|
|
|
InterpolateFilter: &interpolate.RenderFilter{
|
|
|
|
Exclude: []string{},
|
|
|
|
},
|
|
|
|
}, raws...)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Defaults
|
|
|
|
if p.config.Command == "" {
|
|
|
|
p.config.Command = "ansible-playbook"
|
|
|
|
}
|
|
|
|
|
2016-02-11 01:24:12 -05:00
|
|
|
if p.config.HostAlias == "" {
|
|
|
|
p.config.HostAlias = "default"
|
|
|
|
}
|
|
|
|
|
2015-03-10 00:11:57 -04:00
|
|
|
var errs *packer.MultiError
|
|
|
|
err = validateFileConfig(p.config.PlaybookFile, "playbook_file", true)
|
|
|
|
if err != nil {
|
|
|
|
errs = packer.MultiErrorAppend(errs, err)
|
|
|
|
}
|
|
|
|
|
2016-02-06 21:09:15 -05:00
|
|
|
// Check that the authorized key file exists
|
2016-02-04 21:40:17 -05:00
|
|
|
if len(p.config.SSHAuthorizedKeyFile) > 0 {
|
|
|
|
err = validateFileConfig(p.config.SSHAuthorizedKeyFile, "ssh_authorized_key_file", true)
|
|
|
|
if err != nil {
|
|
|
|
log.Println(p.config.SSHAuthorizedKeyFile, "does not exist")
|
|
|
|
errs = packer.MultiErrorAppend(errs, err)
|
|
|
|
}
|
2015-03-10 00:11:57 -04:00
|
|
|
}
|
|
|
|
if len(p.config.SSHHostKeyFile) > 0 {
|
|
|
|
err = validateFileConfig(p.config.SSHHostKeyFile, "ssh_host_key_file", true)
|
|
|
|
if err != nil {
|
|
|
|
log.Println(p.config.SSHHostKeyFile, "does not exist")
|
|
|
|
errs = packer.MultiErrorAppend(errs, err)
|
|
|
|
}
|
2016-09-12 02:29:24 -04:00
|
|
|
} else {
|
|
|
|
p.config.AnsibleEnvVars = append(p.config.AnsibleEnvVars, "ANSIBLE_HOST_KEY_CHECKING=False")
|
|
|
|
}
|
|
|
|
|
|
|
|
if !p.config.UseSFTP {
|
|
|
|
p.config.AnsibleEnvVars = append(p.config.AnsibleEnvVars, "ANSIBLE_SCP_IF_SSH=True")
|
2015-03-10 00:11:57 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if len(p.config.LocalPort) > 0 {
|
|
|
|
if _, err := strconv.ParseUint(p.config.LocalPort, 10, 16); err != nil {
|
|
|
|
errs = packer.MultiErrorAppend(errs, fmt.Errorf("local_port: %s must be a valid port", p.config.LocalPort))
|
|
|
|
}
|
2016-01-29 01:22:12 -05:00
|
|
|
} else {
|
|
|
|
p.config.LocalPort = "0"
|
2015-03-10 00:11:57 -04:00
|
|
|
}
|
|
|
|
|
2017-04-04 23:49:24 -04:00
|
|
|
if len(p.config.InventoryDirectory) > 0 {
|
2017-04-06 15:50:02 -04:00
|
|
|
err = validateInventoryDirectoryConfig(p.config.InventoryDirectory)
|
2017-04-04 23:49:24 -04:00
|
|
|
if err != nil {
|
|
|
|
log.Println(p.config.InventoryDirectory, "does not exist")
|
|
|
|
errs = packer.MultiErrorAppend(errs, err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-07 14:12:07 -04:00
|
|
|
if !p.config.SkipVersionCheck {
|
|
|
|
err = p.getVersion()
|
|
|
|
if err != nil {
|
|
|
|
errs = packer.MultiErrorAppend(errs, err)
|
|
|
|
}
|
2016-03-01 13:35:48 -05:00
|
|
|
}
|
|
|
|
|
2016-02-26 15:50:50 -05:00
|
|
|
if p.config.User == "" {
|
2018-01-03 02:33:32 -05:00
|
|
|
usr, err := user.Current()
|
|
|
|
if err != nil {
|
|
|
|
errs = packer.MultiErrorAppend(errs, err)
|
|
|
|
} else {
|
|
|
|
p.config.User = usr.Username
|
|
|
|
}
|
2016-02-26 16:16:22 -05:00
|
|
|
}
|
|
|
|
if p.config.User == "" {
|
|
|
|
errs = packer.MultiErrorAppend(errs, fmt.Errorf("user: could not determine current user from environment."))
|
2016-02-26 15:50:50 -05:00
|
|
|
}
|
|
|
|
|
2015-03-10 00:11:57 -04:00
|
|
|
if errs != nil && len(errs.Errors) > 0 {
|
|
|
|
return errs
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-03-01 13:35:48 -05:00
|
|
|
func (p *Provisioner) getVersion() error {
|
|
|
|
out, err := exec.Command(p.config.Command, "--version").Output()
|
|
|
|
if err != nil {
|
2017-03-21 23:26:41 -04:00
|
|
|
return fmt.Errorf(
|
|
|
|
"Error running \"%s --version\": %s", p.config.Command, err.Error())
|
2016-03-01 13:35:48 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
versionRe := regexp.MustCompile(`\w (\d+\.\d+[.\d+]*)`)
|
|
|
|
matches := versionRe.FindStringSubmatch(string(out))
|
|
|
|
if matches == nil {
|
|
|
|
return fmt.Errorf(
|
|
|
|
"Could not find %s version in output:\n%s", p.config.Command, string(out))
|
|
|
|
}
|
|
|
|
|
|
|
|
version := matches[1]
|
|
|
|
log.Printf("%s version: %s", p.config.Command, version)
|
|
|
|
p.ansibleVersion = version
|
|
|
|
|
|
|
|
majVer, err := strconv.ParseUint(strings.Split(version, ".")[0], 10, 0)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("Could not parse major version from \"%s\".", version)
|
|
|
|
}
|
|
|
|
p.ansibleMajVersion = uint(majVer)
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-03-10 00:11:57 -04:00
|
|
|
func (p *Provisioner) Provision(ui packer.Ui, comm packer.Communicator) error {
|
|
|
|
ui.Say("Provisioning with Ansible...")
|
2018-07-17 15:52:32 -04:00
|
|
|
// Interpolate env vars to check for .WinRMPassword
|
|
|
|
p.config.ctx.Data = &PassthroughTemplate{
|
2018-09-10 19:48:42 -04:00
|
|
|
WinRMPassword: getWinRMPassword(p.config.PackerBuildName),
|
2018-07-17 15:52:32 -04:00
|
|
|
}
|
|
|
|
for i, envVar := range p.config.AnsibleEnvVars {
|
|
|
|
envVar, err := interpolate.Render(envVar, &p.config.ctx)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("Could not interpolate ansible env vars: %s", err)
|
|
|
|
}
|
|
|
|
p.config.AnsibleEnvVars[i] = envVar
|
|
|
|
}
|
|
|
|
// Interpolate extra vars to check for .WinRMPassword
|
|
|
|
for i, arg := range p.config.ExtraArguments {
|
|
|
|
arg, err := interpolate.Render(arg, &p.config.ctx)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("Could not interpolate ansible env vars: %s", err)
|
|
|
|
}
|
|
|
|
p.config.ExtraArguments[i] = arg
|
2018-07-02 20:42:21 -04:00
|
|
|
}
|
|
|
|
|
2016-02-06 21:09:15 -05:00
|
|
|
k, err := newUserKey(p.config.SSHAuthorizedKeyFile)
|
2015-03-10 00:11:57 -04:00
|
|
|
if err != nil {
|
2016-02-04 21:40:17 -05:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2016-02-06 21:09:15 -05:00
|
|
|
hostSigner, err := newSigner(p.config.SSHHostKeyFile)
|
2016-02-04 21:40:17 -05:00
|
|
|
// Remove the private key file
|
2016-02-06 21:09:15 -05:00
|
|
|
if len(k.privKeyFile) > 0 {
|
|
|
|
defer os.Remove(k.privKeyFile)
|
2015-03-10 00:11:57 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
keyChecker := ssh.CertChecker{
|
|
|
|
UserKeyFallback: func(conn ssh.ConnMetadata, pubKey ssh.PublicKey) (*ssh.Permissions, error) {
|
2016-02-26 15:50:50 -05:00
|
|
|
if user := conn.User(); user != p.config.User {
|
2016-11-05 09:25:45 -04:00
|
|
|
return nil, errors.New(fmt.Sprintf("authentication failed: %s is not a valid user", user))
|
2015-03-10 00:11:57 -04:00
|
|
|
}
|
|
|
|
|
2016-02-06 21:09:15 -05:00
|
|
|
if !bytes.Equal(k.Marshal(), pubKey.Marshal()) {
|
2016-11-05 09:25:45 -04:00
|
|
|
return nil, errors.New("authentication failed: unauthorized key")
|
2015-03-10 00:11:57 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil, nil
|
|
|
|
},
|
|
|
|
}
|
2016-02-08 20:34:06 -05:00
|
|
|
|
2015-03-10 00:11:57 -04:00
|
|
|
config := &ssh.ServerConfig{
|
|
|
|
AuthLogCallback: func(conn ssh.ConnMetadata, method string, err error) {
|
2016-11-05 09:25:45 -04:00
|
|
|
log.Printf("authentication attempt from %s to %s as %s using %s", conn.RemoteAddr(), conn.LocalAddr(), conn.User(), method)
|
2015-03-10 00:11:57 -04:00
|
|
|
},
|
|
|
|
PublicKeyCallback: keyChecker.Authenticate,
|
|
|
|
//NoClientAuth: true,
|
|
|
|
}
|
|
|
|
|
2016-02-06 21:09:15 -05:00
|
|
|
config.AddHostKey(hostSigner)
|
2015-03-10 00:11:57 -04:00
|
|
|
|
|
|
|
localListener, err := func() (net.Listener, error) {
|
2016-01-29 01:22:12 -05:00
|
|
|
port, err := strconv.ParseUint(p.config.LocalPort, 10, 16)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
2015-03-10 00:11:57 -04:00
|
|
|
}
|
2016-01-29 01:22:12 -05:00
|
|
|
|
|
|
|
tries := 1
|
|
|
|
if port != 0 {
|
|
|
|
tries = 10
|
|
|
|
}
|
|
|
|
for i := 0; i < tries; i++ {
|
2015-03-10 00:11:57 -04:00
|
|
|
l, err := net.Listen("tcp", fmt.Sprintf("127.0.0.1:%d", port))
|
2016-01-29 01:22:12 -05:00
|
|
|
port++
|
|
|
|
if err != nil {
|
|
|
|
ui.Say(err.Error())
|
|
|
|
continue
|
2015-03-10 00:11:57 -04:00
|
|
|
}
|
2016-01-29 01:22:12 -05:00
|
|
|
_, p.config.LocalPort, err = net.SplitHostPort(l.Addr().String())
|
|
|
|
if err != nil {
|
|
|
|
ui.Say(err.Error())
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
return l, nil
|
2015-03-10 00:11:57 -04:00
|
|
|
}
|
|
|
|
return nil, errors.New("Error setting up SSH proxy connection")
|
|
|
|
}()
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-12-19 16:05:59 -05:00
|
|
|
ui = newUi(ui)
|
2015-03-10 00:11:57 -04:00
|
|
|
p.adapter = newAdapter(p.done, localListener, config, p.config.SFTPCmd, ui, comm)
|
|
|
|
|
|
|
|
defer func() {
|
2016-11-05 09:25:45 -04:00
|
|
|
log.Print("shutting down the SSH proxy")
|
2015-03-10 00:11:57 -04:00
|
|
|
close(p.done)
|
|
|
|
p.adapter.Shutdown()
|
|
|
|
}()
|
|
|
|
|
|
|
|
go p.adapter.Serve()
|
|
|
|
|
2018-04-05 05:56:07 -04:00
|
|
|
if len(p.config.InventoryFile) == 0 {
|
2017-04-04 17:43:46 -04:00
|
|
|
tf, err := ioutil.TempFile(p.config.InventoryDirectory, "packer-provisioner-ansible")
|
2015-03-10 00:11:57 -04:00
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("Error preparing inventory file: %s", err)
|
|
|
|
}
|
|
|
|
defer os.Remove(tf.Name())
|
2016-02-11 01:24:12 -05:00
|
|
|
|
2016-02-26 15:50:50 -05:00
|
|
|
host := fmt.Sprintf("%s ansible_host=127.0.0.1 ansible_user=%s ansible_port=%s\n",
|
|
|
|
p.config.HostAlias, p.config.User, p.config.LocalPort)
|
2016-03-01 13:35:48 -05:00
|
|
|
if p.ansibleMajVersion < 2 {
|
2016-02-26 15:50:50 -05:00
|
|
|
host = fmt.Sprintf("%s ansible_ssh_host=127.0.0.1 ansible_ssh_user=%s ansible_ssh_port=%s\n",
|
|
|
|
p.config.HostAlias, p.config.User, p.config.LocalPort)
|
2016-03-01 13:35:48 -05:00
|
|
|
}
|
2016-02-11 01:24:12 -05:00
|
|
|
|
|
|
|
w := bufio.NewWriter(tf)
|
|
|
|
w.WriteString(host)
|
|
|
|
for _, group := range p.config.Groups {
|
|
|
|
fmt.Fprintf(w, "[%s]\n%s", group, host)
|
|
|
|
}
|
|
|
|
|
2016-02-19 17:43:29 -05:00
|
|
|
for _, group := range p.config.EmptyGroups {
|
|
|
|
fmt.Fprintf(w, "[%s]\n", group)
|
|
|
|
}
|
|
|
|
|
2016-02-11 01:24:12 -05:00
|
|
|
if err := w.Flush(); err != nil {
|
2015-03-10 00:11:57 -04:00
|
|
|
tf.Close()
|
|
|
|
return fmt.Errorf("Error preparing inventory file: %s", err)
|
|
|
|
}
|
|
|
|
tf.Close()
|
2018-04-05 05:56:07 -04:00
|
|
|
p.config.InventoryFile = tf.Name()
|
2015-03-10 00:11:57 -04:00
|
|
|
defer func() {
|
2018-04-05 05:56:07 -04:00
|
|
|
p.config.InventoryFile = ""
|
2015-03-10 00:11:57 -04:00
|
|
|
}()
|
|
|
|
}
|
|
|
|
|
2016-09-12 02:29:24 -04:00
|
|
|
if err := p.executeAnsible(ui, comm, k.privKeyFile); err != nil {
|
2015-03-10 00:11:57 -04:00
|
|
|
return fmt.Errorf("Error executing Ansible: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *Provisioner) Cancel() {
|
|
|
|
if p.done != nil {
|
|
|
|
close(p.done)
|
|
|
|
}
|
|
|
|
if p.adapter != nil {
|
|
|
|
p.adapter.Shutdown()
|
|
|
|
}
|
|
|
|
os.Exit(0)
|
|
|
|
}
|
|
|
|
|
2016-09-12 02:29:24 -04:00
|
|
|
func (p *Provisioner) executeAnsible(ui packer.Ui, comm packer.Communicator, privKeyFile string) error {
|
2015-03-10 00:11:57 -04:00
|
|
|
playbook, _ := filepath.Abs(p.config.PlaybookFile)
|
2018-04-05 05:56:07 -04:00
|
|
|
inventory := p.config.InventoryFile
|
2018-03-26 12:24:58 -04:00
|
|
|
if len(p.config.InventoryDirectory) > 0 {
|
|
|
|
inventory = p.config.InventoryDirectory
|
|
|
|
}
|
2016-02-14 19:07:02 -05:00
|
|
|
var envvars []string
|
2015-03-10 00:11:57 -04:00
|
|
|
|
2017-04-22 11:24:37 -04:00
|
|
|
args := []string{"--extra-vars", fmt.Sprintf("packer_build_name=%s packer_builder_type=%s",
|
|
|
|
p.config.PackerBuildName, p.config.PackerBuilderType),
|
|
|
|
"-i", inventory, playbook}
|
2016-02-06 21:09:15 -05:00
|
|
|
if len(privKeyFile) > 0 {
|
2018-02-07 22:47:01 -05:00
|
|
|
// Changed this from using --private-key to supplying -e ansible_ssh_private_key_file as the latter
|
2018-02-07 22:41:01 -05:00
|
|
|
// is treated as a highest priority variable, and thus prevents overriding by dynamic variables
|
|
|
|
// as seen in #5852
|
|
|
|
// args = append(args, "--private-key", privKeyFile)
|
|
|
|
args = append(args, "-e", fmt.Sprintf("ansible_ssh_private_key_file=%s", privKeyFile))
|
2016-02-04 21:40:17 -05:00
|
|
|
}
|
2018-07-17 10:03:05 -04:00
|
|
|
|
|
|
|
// expose packer_http_addr extra variable
|
|
|
|
httpAddr := common.GetHTTPAddr()
|
|
|
|
if httpAddr != "" {
|
|
|
|
args = append(args, "--extra-vars", fmt.Sprintf("packer_http_addr=%s", httpAddr))
|
|
|
|
}
|
|
|
|
|
2015-03-10 00:11:57 -04:00
|
|
|
args = append(args, p.config.ExtraArguments...)
|
2016-02-14 19:07:02 -05:00
|
|
|
if len(p.config.AnsibleEnvVars) > 0 {
|
|
|
|
envvars = append(envvars, p.config.AnsibleEnvVars...)
|
|
|
|
}
|
2016-02-08 20:34:06 -05:00
|
|
|
|
2015-03-10 00:11:57 -04:00
|
|
|
cmd := exec.Command(p.config.Command, args...)
|
|
|
|
|
2016-02-26 14:49:37 -05:00
|
|
|
cmd.Env = os.Environ()
|
2016-02-14 19:07:02 -05:00
|
|
|
if len(envvars) > 0 {
|
|
|
|
cmd.Env = append(cmd.Env, envvars...)
|
2016-05-24 18:34:51 -04:00
|
|
|
}
|
|
|
|
|
2015-03-10 00:11:57 -04:00
|
|
|
stdout, err := cmd.StdoutPipe()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
stderr, err := cmd.StderrPipe()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
wg := sync.WaitGroup{}
|
|
|
|
repeat := func(r io.ReadCloser) {
|
2016-02-27 01:20:54 -05:00
|
|
|
reader := bufio.NewReader(r)
|
|
|
|
for {
|
|
|
|
line, err := reader.ReadString('\n')
|
|
|
|
if line != "" {
|
|
|
|
line = strings.TrimRightFunc(line, unicode.IsSpace)
|
|
|
|
ui.Message(line)
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
if err == io.EOF {
|
|
|
|
break
|
|
|
|
} else {
|
|
|
|
ui.Error(err.Error())
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
2015-03-10 00:11:57 -04:00
|
|
|
}
|
|
|
|
wg.Done()
|
|
|
|
}
|
|
|
|
wg.Add(2)
|
|
|
|
go repeat(stdout)
|
|
|
|
go repeat(stderr)
|
|
|
|
|
2018-07-17 15:52:32 -04:00
|
|
|
// remove winrm password from command, if it's been added
|
|
|
|
flattenedCmd := strings.Join(cmd.Args, " ")
|
2018-09-10 19:48:42 -04:00
|
|
|
sanitized := flattenedCmd
|
|
|
|
if len(getWinRMPassword(p.config.PackerBuildName)) > 0 {
|
|
|
|
sanitized = strings.Replace(sanitized,
|
|
|
|
getWinRMPassword(p.config.PackerBuildName), "*****", -1)
|
|
|
|
}
|
|
|
|
ui.Say(fmt.Sprintf("Executing Ansible: %s", sanitized))
|
2018-07-17 15:52:32 -04:00
|
|
|
|
2017-03-29 16:38:31 -04:00
|
|
|
if err := cmd.Start(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2015-03-10 00:11:57 -04:00
|
|
|
wg.Wait()
|
|
|
|
err = cmd.Wait()
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("Non-zero exit status: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func validateFileConfig(name string, config string, req bool) error {
|
|
|
|
if req {
|
|
|
|
if name == "" {
|
|
|
|
return fmt.Errorf("%s must be specified.", config)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
info, err := os.Stat(name)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("%s: %s is invalid: %s", config, name, err)
|
|
|
|
} else if info.IsDir() {
|
|
|
|
return fmt.Errorf("%s: %s must point to a file", config, name)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2015-12-19 16:05:59 -05:00
|
|
|
|
2017-04-06 15:50:02 -04:00
|
|
|
func validateInventoryDirectoryConfig(name string) error {
|
2017-04-04 23:49:24 -04:00
|
|
|
info, err := os.Stat(name)
|
|
|
|
if err != nil {
|
2017-04-06 15:50:02 -04:00
|
|
|
return fmt.Errorf("inventory_directory: %s is invalid: %s", name, err)
|
2017-04-04 23:49:24 -04:00
|
|
|
} else if !info.IsDir() {
|
2017-04-06 15:50:02 -04:00
|
|
|
return fmt.Errorf("inventory_directory: %s must point to a directory", name)
|
2017-04-04 23:49:24 -04:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-02-06 21:09:15 -05:00
|
|
|
type userKey struct {
|
|
|
|
ssh.PublicKey
|
|
|
|
privKeyFile string
|
|
|
|
}
|
|
|
|
|
|
|
|
func newUserKey(pubKeyFile string) (*userKey, error) {
|
|
|
|
userKey := new(userKey)
|
|
|
|
if len(pubKeyFile) > 0 {
|
|
|
|
pubKeyBytes, err := ioutil.ReadFile(pubKeyFile)
|
|
|
|
if err != nil {
|
|
|
|
return nil, errors.New("Failed to read public key")
|
|
|
|
}
|
|
|
|
userKey.PublicKey, _, _, _, err = ssh.ParseAuthorizedKey(pubKeyBytes)
|
|
|
|
if err != nil {
|
|
|
|
return nil, errors.New("Failed to parse authorized key")
|
|
|
|
}
|
|
|
|
|
|
|
|
return userKey, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
key, err := rsa.GenerateKey(rand.Reader, 2048)
|
|
|
|
if err != nil {
|
|
|
|
return nil, errors.New("Failed to generate key pair")
|
|
|
|
}
|
|
|
|
userKey.PublicKey, err = ssh.NewPublicKey(key.Public())
|
|
|
|
if err != nil {
|
|
|
|
return nil, errors.New("Failed to extract public key from generated key pair")
|
|
|
|
}
|
|
|
|
|
|
|
|
// To support Ansible calling back to us we need to write
|
|
|
|
// this file down
|
|
|
|
privateKeyDer := x509.MarshalPKCS1PrivateKey(key)
|
|
|
|
privateKeyBlock := pem.Block{
|
|
|
|
Type: "RSA PRIVATE KEY",
|
|
|
|
Headers: nil,
|
|
|
|
Bytes: privateKeyDer,
|
|
|
|
}
|
|
|
|
tf, err := ioutil.TempFile("", "ansible-key")
|
|
|
|
if err != nil {
|
|
|
|
return nil, errors.New("failed to create temp file for generated key")
|
|
|
|
}
|
|
|
|
_, err = tf.Write(pem.EncodeToMemory(&privateKeyBlock))
|
|
|
|
if err != nil {
|
|
|
|
return nil, errors.New("failed to write private key to temp file")
|
|
|
|
}
|
|
|
|
|
|
|
|
err = tf.Close()
|
|
|
|
if err != nil {
|
|
|
|
return nil, errors.New("failed to close private key temp file")
|
|
|
|
}
|
|
|
|
userKey.privKeyFile = tf.Name()
|
|
|
|
|
|
|
|
return userKey, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type signer struct {
|
|
|
|
ssh.Signer
|
|
|
|
}
|
|
|
|
|
|
|
|
func newSigner(privKeyFile string) (*signer, error) {
|
|
|
|
signer := new(signer)
|
|
|
|
|
|
|
|
if len(privKeyFile) > 0 {
|
|
|
|
privateBytes, err := ioutil.ReadFile(privKeyFile)
|
|
|
|
if err != nil {
|
|
|
|
return nil, errors.New("Failed to load private host key")
|
|
|
|
}
|
|
|
|
|
|
|
|
signer.Signer, err = ssh.ParsePrivateKey(privateBytes)
|
|
|
|
if err != nil {
|
|
|
|
return nil, errors.New("Failed to parse private host key")
|
|
|
|
}
|
|
|
|
|
|
|
|
return signer, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
key, err := rsa.GenerateKey(rand.Reader, 2048)
|
|
|
|
if err != nil {
|
|
|
|
return nil, errors.New("Failed to generate server key pair")
|
|
|
|
}
|
|
|
|
|
|
|
|
signer.Signer, err = ssh.NewSignerFromKey(key)
|
|
|
|
if err != nil {
|
|
|
|
return nil, errors.New("Failed to extract private key from generated key pair")
|
|
|
|
}
|
|
|
|
|
|
|
|
return signer, nil
|
|
|
|
}
|
|
|
|
|
2018-09-10 19:48:42 -04:00
|
|
|
func getWinRMPassword(buildName string) string {
|
|
|
|
winRMPass, _ := commonhelper.RetrieveSharedState("winrm_password", buildName)
|
|
|
|
packer.LogSecretFilter.Set(winRMPass)
|
|
|
|
return winRMPass
|
|
|
|
}
|
|
|
|
|
2015-12-19 16:05:59 -05:00
|
|
|
// Ui provides concurrency-safe access to packer.Ui.
|
|
|
|
type Ui struct {
|
|
|
|
sem chan int
|
|
|
|
ui packer.Ui
|
|
|
|
}
|
|
|
|
|
|
|
|
func newUi(ui packer.Ui) packer.Ui {
|
|
|
|
return &Ui{sem: make(chan int, 1), ui: ui}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (ui *Ui) Ask(s string) (string, error) {
|
|
|
|
ui.sem <- 1
|
|
|
|
ret, err := ui.ui.Ask(s)
|
|
|
|
<-ui.sem
|
|
|
|
|
|
|
|
return ret, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (ui *Ui) Say(s string) {
|
|
|
|
ui.sem <- 1
|
|
|
|
ui.ui.Say(s)
|
|
|
|
<-ui.sem
|
|
|
|
}
|
|
|
|
|
|
|
|
func (ui *Ui) Message(s string) {
|
|
|
|
ui.sem <- 1
|
|
|
|
ui.ui.Message(s)
|
|
|
|
<-ui.sem
|
|
|
|
}
|
|
|
|
|
|
|
|
func (ui *Ui) Error(s string) {
|
|
|
|
ui.sem <- 1
|
|
|
|
ui.ui.Error(s)
|
|
|
|
<-ui.sem
|
|
|
|
}
|
|
|
|
|
|
|
|
func (ui *Ui) Machine(t string, args ...string) {
|
|
|
|
ui.sem <- 1
|
|
|
|
ui.ui.Machine(t, args...)
|
|
|
|
<-ui.sem
|
|
|
|
}
|
2018-09-04 11:57:21 -04:00
|
|
|
|
|
|
|
func (ui *Ui) ProgressBar() packer.ProgressBar {
|
2018-09-05 08:02:09 -04:00
|
|
|
return new(packer.NoopProgressBar)
|
2018-09-04 11:57:21 -04:00
|
|
|
}
|