packer-cn/builder/scaleway/step_create_ssh_key.go

108 lines
2.7 KiB
Go
Raw Normal View History

2017-04-06 05:19:17 -04:00
package scaleway
import (
2018-08-27 09:58:00 -04:00
"bytes"
2018-02-05 19:50:32 -05:00
"context"
2017-04-06 05:19:17 -04:00
"crypto/rand"
"crypto/rsa"
"crypto/x509"
"encoding/pem"
"fmt"
"io/ioutil"
2017-04-06 05:19:17 -04:00
"log"
"os"
"runtime"
2018-08-28 11:48:37 -04:00
"github.com/hashicorp/packer/helper/communicator"
2018-02-05 19:50:32 -05:00
"github.com/hashicorp/packer/helper/multistep"
2017-04-06 05:19:17 -04:00
"github.com/hashicorp/packer/packer"
"golang.org/x/crypto/ssh"
)
type stepCreateSSHKey struct {
2018-08-28 11:48:37 -04:00
Debug bool
Comm *communicator.Config
DebugKeyPath string
2017-04-06 05:19:17 -04:00
}
2018-02-05 19:50:32 -05:00
func (s *stepCreateSSHKey) Run(_ context.Context, state multistep.StateBag) multistep.StepAction {
2017-04-06 05:19:17 -04:00
ui := state.Get("ui").(packer.Ui)
2018-08-28 11:48:37 -04:00
if s.Comm.SSHPrivateKeyFile != "" {
ui.Say("Using existing SSH private key")
2018-08-28 11:48:37 -04:00
privateKeyBytes, err := ioutil.ReadFile(s.Comm.SSHPrivateKeyFile)
if err != nil {
state.Put("error", fmt.Errorf(
"Error loading configured private key file: %s", err))
return multistep.ActionHalt
}
s.Comm.SSHPrivateKey = privateKeyBytes
s.Comm.SSHPublicKey = nil
return multistep.ActionContinue
}
2017-04-06 05:19:17 -04:00
ui.Say("Creating temporary ssh key for server...")
priv, err := rsa.GenerateKey(rand.Reader, 2014)
if err != nil {
err := fmt.Errorf("Error creating temporary SSH key: %s", err)
state.Put("error", err)
ui.Error(err.Error())
return multistep.ActionHalt
}
// ASN.1 DER encoded form
priv_der := x509.MarshalPKCS1PrivateKey(priv)
priv_blk := pem.Block{
Type: "RSA PRIVATE KEY",
Headers: nil,
Bytes: priv_der,
}
2018-08-27 09:58:00 -04:00
// Set the private key in the config for later
s.Comm.SSHPrivateKey = pem.EncodeToMemory(&priv_blk)
2017-04-06 05:19:17 -04:00
pub, _ := ssh.NewPublicKey(&priv.PublicKey)
2018-08-27 09:58:00 -04:00
pub_sshformat := ssh.MarshalAuthorizedKey(pub)
pub_sshformat = bytes.Replace(pub_sshformat, []byte(" "), []byte("_"), -1)
2017-04-06 05:19:17 -04:00
log.Printf("temporary ssh key created")
// Remember some state for the future
s.Comm.SSHPublicKey = pub_sshformat
2017-04-06 05:19:17 -04: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
if _, err := f.Write(pem.EncodeToMemory(&priv_blk)); err != nil {
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
}
}
}
return multistep.ActionContinue
}
func (s *stepCreateSSHKey) Cleanup(state multistep.StateBag) {
// SSH key is passed via tag. Nothing to do here.
return
}