Merge pull request #694 from milosgajdos83/tunnel-loopback-sleep

Lock when setting loopback flag and receiving keepalives
This commit is contained in:
Asim Aslam 2019-08-22 17:35:03 +01:00 committed by GitHub
commit a133e61c2d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 14 additions and 1 deletions

View File

@ -73,6 +73,8 @@ func newTunnel(opts ...Option) *tun {
// Init initializes tunnel options // Init initializes tunnel options
func (t *tun) Init(opts ...Option) error { func (t *tun) Init(opts ...Option) error {
t.Lock()
defer t.Unlock()
for _, o := range opts { for _, o := range opts {
o(&t.options) o(&t.options)
} }
@ -230,7 +232,9 @@ func (t *tun) listen(link *link) {
// are we connecting to ourselves? // are we connecting to ourselves?
if token == t.token { if token == t.token {
t.Lock()
link.loopback = true link.loopback = true
t.Unlock()
} }
// nothing more to do // nothing more to do
@ -242,7 +246,9 @@ func (t *tun) listen(link *link) {
continue continue
case "keepalive": case "keepalive":
log.Debugf("Tunnel link %s received keepalive", link.Remote()) log.Debugf("Tunnel link %s received keepalive", link.Remote())
t.Lock()
link.lastKeepAlive = time.Now() link.lastKeepAlive = time.Now()
t.Unlock()
continue continue
case "message": case "message":
// process message // process message

View File

@ -10,6 +10,8 @@ import (
// testAccept will accept connections on the transport, create a new link and tunnel on top // testAccept will accept connections on the transport, create a new link and tunnel on top
func testAccept(t *testing.T, tun Tunnel, wait chan bool, wg *sync.WaitGroup) { func testAccept(t *testing.T, tun Tunnel, wait chan bool, wg *sync.WaitGroup) {
defer wg.Done()
// listen on some virtual address // listen on some virtual address
tl, err := tun.Listen("test-tunnel") tl, err := tun.Listen("test-tunnel")
if err != nil { if err != nil {
@ -43,7 +45,8 @@ func testAccept(t *testing.T, tun Tunnel, wait chan bool, wg *sync.WaitGroup) {
t.Fatal(err) t.Fatal(err)
} }
wg.Done() wait <- true
return return
} }
} }
@ -79,6 +82,8 @@ func testSend(t *testing.T, tun Tunnel, wait chan bool, wg *sync.WaitGroup) {
t.Fatal(err) t.Fatal(err)
} }
<-wait
if v := mr.Header["test"]; v != "accept" { if v := mr.Header["test"]; v != "accept" {
t.Fatalf("Message not received from accepted side. Received: %s", v) t.Fatalf("Message not received from accepted side. Received: %s", v)
} }
@ -140,6 +145,8 @@ func TestLoopbackTunnel(t *testing.T) {
} }
defer tun.Close() defer tun.Close()
time.Sleep(500 * time.Millisecond)
wait := make(chan bool) wait := make(chan bool)
var wg sync.WaitGroup var wg sync.WaitGroup