Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
packer
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kristopher Ruzic
packer
Commits
35d0b90f
Commit
35d0b90f
authored
Aug 27, 2013
by
Mitchell Hashimoto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
communicator/ssh: heartbeat the SSH connection to detect drops [GH-200]
parent
747f2606
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
56 additions
and
0 deletions
+56
-0
CHANGELOG.md
CHANGELOG.md
+2
-0
communicator/ssh/communicator.go
communicator/ssh/communicator.go
+54
-0
No files found.
CHANGELOG.md
View file @
35d0b90f
...
...
@@ -28,6 +28,8 @@ BUG FIXES:
*
core: Fixed a couple cases where a double ctrl-C could panic.
*
core: Template validation fails if an override is specified for a
non-existent builder. [GH-336]
*
core: The SSH connection is heartbeated so that drops can be
detected. [GH-200]
*
builder/amazon/instance: Remove check for ec2-ami-tools because it
didn't allow absolute paths to work properly. [GH-330]
*
builder/digitalocean: Send a soft shutdown request so that files
...
...
communicator/ssh/communicator.go
View file @
35d0b90f
...
...
@@ -12,6 +12,8 @@ import (
"net"
"os"
"path/filepath"
"sync"
"time"
)
type
comm
struct
{
...
...
@@ -80,10 +82,16 @@ func (c *comm) Start(cmd *packer.RemoteCmd) (err error) {
return
}
// A channel to keep track of our done state
doneCh
:=
make
(
chan
struct
{})
sessionLock
:=
new
(
sync
.
Mutex
)
timedOut
:=
false
// 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
{
...
...
@@ -93,8 +101,54 @@ func (c *comm) Start(cmd *packer.RemoteCmd) (err error) {
}
}
sessionLock
.
Lock
()
defer
sessionLock
.
Unlock
()
if
timedOut
{
// We timed out, so set the exit status to -1
exitStatus
=
-
1
}
log
.
Printf
(
"remote command exited with '%d': %s"
,
exitStatus
,
cmd
.
Command
)
cmd
.
SetExited
(
exitStatus
)
close
(
doneCh
)
}()
go
func
()
{
failures
:=
0
for
{
dummy
,
err
:=
c
.
config
.
Connection
()
if
err
==
nil
{
dummy
.
Close
()
}
select
{
case
<-
doneCh
:
return
default
:
}
if
err
!=
nil
{
log
.
Printf
(
"background SSH connection checker failure: %s"
,
err
)
failures
+=
1
}
if
failures
<
5
{
time
.
Sleep
(
5
*
time
.
Second
)
continue
}
// Acquire a lock in order to modify session state
sessionLock
.
Lock
()
defer
sessionLock
.
Unlock
()
// Kill the connection and mark that we timed out.
log
.
Printf
(
"Too many SSH connection failures. Killing it!"
)
c
.
conn
.
Close
()
timedOut
=
true
return
}
}()
return
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment