2013-08-27 00:57:23 -04:00
|
|
|
package openstack
|
|
|
|
|
|
|
|
import (
|
2018-01-22 18:32:33 -05:00
|
|
|
"context"
|
2013-08-27 00:57:23 -04:00
|
|
|
"fmt"
|
2015-07-27 18:05:51 -04:00
|
|
|
"io/ioutil"
|
2016-01-31 14:03:59 -05:00
|
|
|
"log"
|
2013-12-26 19:20:13 -05:00
|
|
|
"os"
|
2016-01-31 14:03:59 -05:00
|
|
|
"os/exec"
|
2013-12-26 19:20:13 -05:00
|
|
|
"runtime"
|
2014-10-27 19:40:49 -04:00
|
|
|
|
2016-11-27 19:59:26 -05:00
|
|
|
"github.com/gophercloud/gophercloud/openstack/compute/v2/extensions/keypairs"
|
2018-08-28 11:48:01 -04:00
|
|
|
"github.com/hashicorp/packer/helper/communicator"
|
2018-01-19 19:18:44 -05:00
|
|
|
"github.com/hashicorp/packer/helper/multistep"
|
2017-04-04 16:39:01 -04:00
|
|
|
"github.com/hashicorp/packer/packer"
|
2018-12-12 09:45:00 -05:00
|
|
|
"github.com/hashicorp/packer/packer/tmp"
|
2016-01-31 14:03:59 -05:00
|
|
|
"golang.org/x/crypto/ssh"
|
2013-08-27 00:57:23 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
type StepKeyPair struct {
|
2018-08-28 11:48:01 -04:00
|
|
|
Debug bool
|
|
|
|
Comm *communicator.Config
|
|
|
|
DebugKeyPath string
|
2015-07-27 18:05:51 -04:00
|
|
|
|
2017-04-30 17:24:22 -04:00
|
|
|
doCleanup bool
|
2013-08-27 00:57:23 -04:00
|
|
|
}
|
|
|
|
|
2018-01-22 18:31:41 -05:00
|
|
|
func (s *StepKeyPair) Run(_ context.Context, state multistep.StateBag) multistep.StepAction {
|
2017-03-13 02:29:59 -04:00
|
|
|
ui := state.Get("ui").(packer.Ui)
|
|
|
|
|
2018-08-28 11:48:01 -04:00
|
|
|
if s.Comm.SSHPrivateKeyFile != "" {
|
2018-11-06 14:03:33 -05:00
|
|
|
ui.Say("Using existing SSH private key")
|
|
|
|
privateKeyBytes, err := s.Comm.ReadSSHPrivateKeyFile()
|
2015-07-27 18:05:51 -04:00
|
|
|
if err != nil {
|
2018-11-06 14:03:33 -05:00
|
|
|
state.Put("error", err)
|
2015-07-27 18:05:51 -04:00
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
|
|
|
|
2018-08-30 11:52:11 -04:00
|
|
|
s.Comm.SSHPrivateKey = privateKeyBytes
|
2015-07-27 18:05:51 -04:00
|
|
|
|
|
|
|
return multistep.ActionContinue
|
|
|
|
}
|
|
|
|
|
2018-08-30 11:52:11 -04:00
|
|
|
if s.Comm.SSHAgentAuth && s.Comm.SSHKeyPairName == "" {
|
2017-03-13 02:29:59 -04:00
|
|
|
ui.Say("Using SSH Agent with key pair in Source image")
|
|
|
|
return multistep.ActionContinue
|
|
|
|
}
|
2013-08-27 00:57:23 -04:00
|
|
|
|
2018-08-30 11:52:11 -04:00
|
|
|
if s.Comm.SSHAgentAuth && s.Comm.SSHKeyPairName != "" {
|
|
|
|
ui.Say(fmt.Sprintf("Using SSH Agent for existing key pair %s", s.Comm.SSHKeyPairName))
|
|
|
|
s.Comm.SSHKeyPairName = ""
|
2016-10-08 17:18:19 -04:00
|
|
|
return multistep.ActionContinue
|
|
|
|
}
|
|
|
|
|
2018-08-28 11:48:01 -04:00
|
|
|
if s.Comm.SSHTemporaryKeyPairName == "" {
|
2017-03-13 02:29:59 -04:00
|
|
|
ui.Say("Not using temporary keypair")
|
2018-08-30 11:52:11 -04:00
|
|
|
s.Comm.SSHKeyPairName = ""
|
2017-03-13 02:29:59 -04:00
|
|
|
return multistep.ActionContinue
|
|
|
|
}
|
|
|
|
|
2018-09-18 10:05:49 -04:00
|
|
|
config := state.Get("config").(*Config)
|
2018-08-30 11:52:11 -04:00
|
|
|
|
2015-06-12 00:16:43 -04:00
|
|
|
// We need the v2 compute client
|
|
|
|
computeClient, err := config.computeV2Client()
|
|
|
|
if err != nil {
|
|
|
|
err = fmt.Errorf("Error initializing compute client: %s", err)
|
|
|
|
state.Put("error", err)
|
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
|
|
|
|
2018-08-28 11:48:01 -04:00
|
|
|
ui.Say(fmt.Sprintf("Creating temporary keypair: %s ...", s.Comm.SSHTemporaryKeyPairName))
|
2015-06-12 00:16:43 -04:00
|
|
|
keypair, err := keypairs.Create(computeClient, keypairs.CreateOpts{
|
2018-08-28 11:48:01 -04:00
|
|
|
Name: s.Comm.SSHTemporaryKeyPairName,
|
2015-06-12 00:16:43 -04:00
|
|
|
}).Extract()
|
2013-08-27 00:57:23 -04:00
|
|
|
if err != nil {
|
2013-08-31 15:37:07 -04:00
|
|
|
state.Put("error", fmt.Errorf("Error creating temporary keypair: %s", err))
|
2013-08-27 00:57:23 -04:00
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
2015-06-12 00:16:43 -04:00
|
|
|
|
2018-08-27 09:58:00 -04:00
|
|
|
if len(keypair.PrivateKey) == 0 {
|
2014-08-12 11:29:00 -04:00
|
|
|
state.Put("error", fmt.Errorf("The temporary keypair returned was blank"))
|
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
2013-08-27 00:57:23 -04:00
|
|
|
|
2018-08-28 11:48:01 -04:00
|
|
|
ui.Say(fmt.Sprintf("Created temporary keypair: %s", s.Comm.SSHTemporaryKeyPairName))
|
2015-12-17 14:12:52 -05:00
|
|
|
|
2018-08-27 09:58:00 -04:00
|
|
|
keypair.PrivateKey = string(berToDer([]byte(keypair.PrivateKey), ui))
|
2016-01-31 14:03:59 -05:00
|
|
|
|
2013-12-22 23:30:13 -05:00
|
|
|
// If we're in debug mode, output the private key to the working
|
|
|
|
// directory.
|
|
|
|
if s.Debug {
|
|
|
|
ui.Message(fmt.Sprintf("Saving key for debug purposes: %s", s.DebugKeyPath))
|
|
|
|
f, err := os.Create(s.DebugKeyPath)
|
|
|
|
if err != nil {
|
|
|
|
state.Put("error", fmt.Errorf("Error saving debug key: %s", err))
|
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
|
|
|
defer f.Close()
|
|
|
|
|
|
|
|
// Write the key out
|
2015-06-12 00:16:43 -04:00
|
|
|
if _, err := f.Write([]byte(keypair.PrivateKey)); err != nil {
|
2013-12-22 23:30:13 -05:00
|
|
|
state.Put("error", fmt.Errorf("Error saving debug key: %s", err))
|
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
|
|
|
|
|
|
|
// Chmod it so that it is SSH ready
|
|
|
|
if runtime.GOOS != "windows" {
|
|
|
|
if err := f.Chmod(0600); err != nil {
|
|
|
|
state.Put("error", fmt.Errorf("Error setting permissions of debug key: %s", err))
|
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-01 13:17:21 -04:00
|
|
|
// we created a temporary key, so remember to clean it up
|
|
|
|
s.doCleanup = true
|
2013-08-27 00:57:23 -04:00
|
|
|
|
|
|
|
// Set some state data for use in future steps
|
2018-08-30 11:52:11 -04:00
|
|
|
s.Comm.SSHKeyPairName = s.Comm.SSHTemporaryKeyPairName
|
|
|
|
s.Comm.SSHPrivateKey = []byte(keypair.PrivateKey)
|
2013-08-27 00:57:23 -04:00
|
|
|
|
|
|
|
return multistep.ActionContinue
|
|
|
|
}
|
|
|
|
|
2017-04-04 16:39:01 -04:00
|
|
|
// Work around for https://github.com/hashicorp/packer/issues/2526
|
2018-08-27 09:58:00 -04:00
|
|
|
func berToDer(ber []byte, ui packer.Ui) []byte {
|
2016-01-31 14:03:59 -05:00
|
|
|
// Check if x/crypto/ssh can parse the key
|
2018-08-27 09:58:00 -04:00
|
|
|
_, err := ssh.ParsePrivateKey(ber)
|
2016-01-31 14:03:59 -05:00
|
|
|
if err == nil {
|
|
|
|
return ber
|
|
|
|
}
|
|
|
|
// Can't parse the key, maybe it's BER encoded. Try to convert it with OpenSSL.
|
|
|
|
log.Println("Couldn't parse SSH key, trying work around for [GH-2526].")
|
|
|
|
|
|
|
|
openSslPath, err := exec.LookPath("openssl")
|
|
|
|
if err != nil {
|
|
|
|
log.Println("Couldn't find OpenSSL, aborting work around.")
|
|
|
|
return ber
|
|
|
|
}
|
|
|
|
|
2018-12-12 09:45:00 -05:00
|
|
|
berKey, err := tmp.File("packer-ber-privatekey-")
|
2016-01-31 14:03:59 -05:00
|
|
|
defer os.Remove(berKey.Name())
|
|
|
|
if err != nil {
|
|
|
|
return ber
|
|
|
|
}
|
2018-08-27 09:58:00 -04:00
|
|
|
ioutil.WriteFile(berKey.Name(), ber, os.ModeAppend)
|
2018-12-12 09:45:00 -05:00
|
|
|
derKey, err := tmp.File("packer-der-privatekey-")
|
2016-01-31 14:03:59 -05:00
|
|
|
defer os.Remove(derKey.Name())
|
|
|
|
if err != nil {
|
|
|
|
return ber
|
|
|
|
}
|
|
|
|
|
|
|
|
args := []string{"rsa", "-in", berKey.Name(), "-out", derKey.Name()}
|
|
|
|
log.Printf("Executing: %s %v", openSslPath, args)
|
|
|
|
if err := exec.Command(openSslPath, args...).Run(); err != nil {
|
|
|
|
log.Printf("OpenSSL failed with error: %s", err)
|
|
|
|
return ber
|
|
|
|
}
|
|
|
|
|
|
|
|
der, err := ioutil.ReadFile(derKey.Name())
|
|
|
|
if err != nil {
|
|
|
|
return ber
|
|
|
|
}
|
|
|
|
ui.Say("Successfully converted BER encoded SSH key to DER encoding.")
|
2018-08-27 09:58:00 -04:00
|
|
|
return der
|
2016-01-31 14:03:59 -05:00
|
|
|
}
|
|
|
|
|
2013-08-31 15:37:07 -04:00
|
|
|
func (s *StepKeyPair) Cleanup(state multistep.StateBag) {
|
2017-04-30 17:24:22 -04:00
|
|
|
if !s.doCleanup {
|
2013-08-27 00:57:23 -04:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-09-18 10:05:49 -04:00
|
|
|
config := state.Get("config").(*Config)
|
2013-08-31 15:37:07 -04:00
|
|
|
ui := state.Get("ui").(packer.Ui)
|
2013-08-27 00:57:23 -04:00
|
|
|
|
2015-06-12 00:16:43 -04:00
|
|
|
// We need the v2 compute client
|
|
|
|
computeClient, err := config.computeV2Client()
|
|
|
|
if err != nil {
|
|
|
|
ui.Error(fmt.Sprintf(
|
2018-08-28 11:48:01 -04:00
|
|
|
"Error cleaning up keypair. Please delete the key manually: %s", s.Comm.SSHTemporaryKeyPairName))
|
2015-06-12 00:16:43 -04:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-08-28 11:48:01 -04:00
|
|
|
ui.Say(fmt.Sprintf("Deleting temporary keypair: %s ...", s.Comm.SSHTemporaryKeyPairName))
|
|
|
|
err = keypairs.Delete(computeClient, s.Comm.SSHTemporaryKeyPairName).ExtractErr()
|
2013-08-27 00:57:23 -04:00
|
|
|
if err != nil {
|
|
|
|
ui.Error(fmt.Sprintf(
|
2018-08-28 11:48:01 -04:00
|
|
|
"Error cleaning up keypair. Please delete the key manually: %s", s.Comm.SSHTemporaryKeyPairName))
|
2013-08-27 00:57:23 -04:00
|
|
|
}
|
|
|
|
}
|