2020-03-10 16:39:19 -04:00
|
|
|
package common
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"fmt"
|
2020-09-25 04:19:19 -04:00
|
|
|
"time"
|
2020-03-10 16:39:19 -04:00
|
|
|
|
|
|
|
"github.com/aws/aws-sdk-go/aws"
|
|
|
|
"github.com/aws/aws-sdk-go/aws/session"
|
2020-03-12 22:26:38 -04:00
|
|
|
"github.com/aws/aws-sdk-go/service/ec2"
|
2020-03-10 16:39:19 -04:00
|
|
|
"github.com/aws/aws-sdk-go/service/ssm"
|
2020-10-29 06:48:43 -04:00
|
|
|
pssm "github.com/hashicorp/packer/builder/amazon/common/ssm"
|
2020-03-10 16:39:19 -04:00
|
|
|
"github.com/hashicorp/packer/packer"
|
2020-11-17 19:31:03 -05:00
|
|
|
"github.com/hashicorp/packer/packer-plugin-sdk/multistep"
|
2020-11-12 17:44:02 -05:00
|
|
|
"github.com/hashicorp/packer/packer-plugin-sdk/net"
|
2020-03-10 16:39:19 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
type StepCreateSSMTunnel struct {
|
2020-04-29 14:58:36 -04:00
|
|
|
AWSSession *session.Session
|
|
|
|
Region string
|
|
|
|
LocalPortNumber int
|
|
|
|
RemotePortNumber int
|
|
|
|
SSMAgentEnabled bool
|
2020-09-25 04:19:19 -04:00
|
|
|
PauseBeforeSSM time.Duration
|
2020-10-29 06:48:43 -04:00
|
|
|
stopSSMCommand func()
|
2020-03-10 16:39:19 -04:00
|
|
|
}
|
|
|
|
|
2020-04-29 14:58:36 -04:00
|
|
|
// Run executes the Packer build step that creates a session tunnel.
|
2020-03-10 16:39:19 -04:00
|
|
|
func (s *StepCreateSSMTunnel) Run(ctx context.Context, state multistep.StateBag) multistep.StepAction {
|
2020-05-13 10:10:55 -04:00
|
|
|
ui := state.Get("ui").(packer.Ui)
|
|
|
|
|
2020-04-01 17:33:44 -04:00
|
|
|
if !s.SSMAgentEnabled {
|
|
|
|
return multistep.ActionContinue
|
|
|
|
}
|
|
|
|
|
2020-09-25 04:19:19 -04:00
|
|
|
// Wait for the remote port to become available
|
|
|
|
if s.PauseBeforeSSM > 0 {
|
2020-10-29 07:31:01 -04:00
|
|
|
ui.Say(fmt.Sprintf("Waiting %s before establishing the SSM session...", s.PauseBeforeSSM))
|
2020-09-25 04:19:19 -04:00
|
|
|
select {
|
|
|
|
case <-time.After(s.PauseBeforeSSM):
|
|
|
|
break
|
|
|
|
case <-ctx.Done():
|
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-13 10:10:55 -04:00
|
|
|
// Configure local port number
|
2020-04-29 14:58:36 -04:00
|
|
|
if err := s.ConfigureLocalHostPort(ctx); err != nil {
|
2020-03-30 07:47:31 -04:00
|
|
|
err := fmt.Errorf("error finding an available port to initiate a session tunnel: %s", err)
|
|
|
|
state.Put("error", err)
|
|
|
|
ui.Error(err.Error())
|
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
|
|
|
|
2020-05-13 10:10:55 -04:00
|
|
|
// Get instance information
|
2020-03-12 22:26:38 -04:00
|
|
|
instance, ok := state.Get("instance").(*ec2.Instance)
|
|
|
|
if !ok {
|
2020-04-29 14:58:36 -04:00
|
|
|
err := fmt.Errorf("error encountered in obtaining target instance id for session tunnel")
|
2020-03-12 22:26:38 -04:00
|
|
|
ui.Error(err.Error())
|
|
|
|
state.Put("error", err)
|
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
2020-03-30 07:47:31 -04:00
|
|
|
|
2020-10-29 06:48:43 -04:00
|
|
|
state.Put("sessionPort", s.LocalPortNumber)
|
2020-03-12 22:26:38 -04:00
|
|
|
|
2020-10-29 06:48:43 -04:00
|
|
|
ssmCtx, ssmCancel := context.WithCancel(ctx)
|
|
|
|
s.stopSSMCommand = ssmCancel
|
|
|
|
|
|
|
|
go func() {
|
2020-10-29 07:18:41 -04:00
|
|
|
ssmconn := ssm.New(s.AWSSession)
|
2020-10-29 06:48:43 -04:00
|
|
|
err := pssm.Session{
|
2020-10-29 08:11:07 -04:00
|
|
|
SvcClient: ssmconn,
|
|
|
|
InstanceID: aws.StringValue(instance.InstanceId),
|
|
|
|
RemotePort: s.RemotePortNumber,
|
|
|
|
LocalPort: s.LocalPortNumber,
|
|
|
|
Region: s.Region,
|
2020-10-29 06:48:43 -04:00
|
|
|
}.Start(ssmCtx, ui)
|
|
|
|
|
|
|
|
if err != nil {
|
2020-10-29 07:18:41 -04:00
|
|
|
ui.Error(fmt.Sprintf("ssm error: %s", err))
|
2020-10-29 06:48:43 -04:00
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
2020-03-10 16:39:19 -04:00
|
|
|
return multistep.ActionContinue
|
|
|
|
}
|
|
|
|
|
2020-04-29 14:58:36 -04:00
|
|
|
// Cleanup terminates an active session on AWS, which in turn terminates the associated tunnel process running on the local machine.
|
2020-03-10 16:39:19 -04:00
|
|
|
func (s *StepCreateSSMTunnel) Cleanup(state multistep.StateBag) {
|
2020-05-13 10:10:55 -04:00
|
|
|
if !s.SSMAgentEnabled {
|
builder/amazon Fix invalid pointer issue for non SSMAgengtEnabled builds
Tests before change
```
panic: runtime error: invalid memory address or nil pointer dereference
[signal SIGSEGV: segmentation violation code=0x1 addr=0x0 pc=0x1392ca2]
goroutine 299 [running]:
github.com/hashicorp/packer/builder/amazon/common.(*StepCreateSSMTunnel).Cleanup(0xc0003dc460, 0x4d1a4c0, 0xc0006e9800)
/home/wilken/Development/packer/builder/amazon/common/step_create_ssm_tunnel.go:95 +0xf2
github.com/hashicorp/packer/helper/multistep.(*BasicRunner).Run(0xc0006e98f0, 0x4d408c0, 0xc00065fcc0, 0x4d1a4c0, 0xc0006e9800)
/home/wilken/Development/packer/helper/multistep/basic_runner.go:79 +0x2c6
github.com/hashicorp/packer/builder/amazon/ebs.(*Builder).Run(0xc000726800, 0x4d408c0, 0xc00065fcc0, 0x4d5e300, 0xc0006e8d80, 0x4cc7220, 0xc000434120, 0x0, 0x0, 0x0, ...)
/home/wilken/Development/packer/builder/amazon/ebs/builder.go:330 +0x17e2
github.com/hashicorp/packer/packer.(*CoreBuild).Run(0xc000720500, 0x4d408c0, 0xc00065fcc0, 0x4d5e180, 0xc0006fe510, 0x0, 0x0, 0x0, 0x0, 0x0)
/home/wilken/Development/packer/packer/build.go:287 +0x7ef
github.com/hashicorp/packer/command.(*BuildCommand).RunContext.func1(0xc0004d14d0, 0xc0003dc3c0, 0xc000441500, 0xa, 0x4d5e1e0, 0xc000720500, 0x4d408c0, 0xc00065fcc0, 0x4d5e180, 0xc0006fe510, ...)
/home/wilken/Development/packer/command/build.go:290 +0x189
created by github.com/hashicorp/packer/command.(*BuildCommand).RunContext
/home/wilken/Development/packer/command/build.go:284 +0xd5a
FAIL github.com/hashicorp/packer/provisioner/shell 188.335s
FAIL
```
Test After change
```
--- PASS: TestShellProvisioner (212.39s)
--- PASS: TestShellProvisioner/testing_amazon-ebs_builder_against_shell_provisioner (212.39s)
PASS
```
2020-05-11 11:11:55 -04:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-10-29 06:48:43 -04:00
|
|
|
if s.stopSSMCommand != nil {
|
|
|
|
s.stopSSMCommand()
|
2020-03-10 16:39:19 -04:00
|
|
|
}
|
|
|
|
}
|
2020-04-29 14:58:36 -04:00
|
|
|
|
|
|
|
// ConfigureLocalHostPort finds an available port on the localhost that can be used for the remote tunnel.
|
|
|
|
// Defaults to using s.LocalPortNumber if it is set.
|
|
|
|
func (s *StepCreateSSMTunnel) ConfigureLocalHostPort(ctx context.Context) error {
|
2020-04-30 06:20:48 -04:00
|
|
|
minPortNumber, maxPortNumber := 8000, 9000
|
|
|
|
|
2020-04-29 14:58:36 -04:00
|
|
|
if s.LocalPortNumber != 0 {
|
2020-04-30 06:20:48 -04:00
|
|
|
minPortNumber = s.LocalPortNumber
|
|
|
|
maxPortNumber = minPortNumber
|
2020-04-29 14:58:36 -04:00
|
|
|
}
|
2020-04-30 06:20:48 -04:00
|
|
|
|
2020-04-29 14:58:36 -04:00
|
|
|
// Find an available TCP port for our HTTP server
|
|
|
|
l, err := net.ListenRangeConfig{
|
2020-04-30 06:20:48 -04:00
|
|
|
Min: minPortNumber,
|
|
|
|
Max: maxPortNumber,
|
2020-04-29 14:58:36 -04:00
|
|
|
Addr: "0.0.0.0",
|
|
|
|
Network: "tcp",
|
|
|
|
}.Listen(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
s.LocalPortNumber = l.Port
|
|
|
|
// Stop listening on selected port so that the AWS session-manager-plugin can use it.
|
|
|
|
// The port is closed right before we start the session to avoid two Packer builds from getting the same port - fingers-crossed
|
|
|
|
l.Close()
|
|
|
|
|
|
|
|
return nil
|
|
|
|
|
|
|
|
}
|