Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
p2p
go-p2p-tls
Commits
fa2f7eea
Commit
fa2f7eea
authored
Nov 29, 2018
by
Marten Seemann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
return the context cancelation error
parent
653fbe64
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
25 additions
and
25 deletions
+25
-25
transport.go
transport.go
+23
-21
transport_test.go
transport_test.go
+2
-4
No files found.
transport.go
View file @
fa2f7eea
...
...
@@ -43,30 +43,23 @@ var _ cs.Transport = &Transport{}
// SecureInbound runs the TLS handshake as a server.
func
(
t
*
Transport
)
SecureInbound
(
ctx
context
.
Context
,
insecure
net
.
Conn
)
(
cs
.
Conn
,
error
)
{
serv
:=
tls
.
Server
(
insecure
,
t
.
identity
.
Config
)
// There's no way to pass a context to tls.Conn.Handshake().
// See https://github.com/golang/go/issues/18482.
// Close the connection instead.
done
:=
make
(
chan
struct
{})
defer
close
(
done
)
go
func
()
{
select
{
case
<-
done
:
case
<-
ctx
.
Done
()
:
insecure
.
Close
()
}
}()
if
err
:=
serv
.
Handshake
();
err
!=
nil
{
return
nil
,
err
}
return
t
.
setupConn
(
serv
)
return
t
.
handshake
(
ctx
,
insecure
,
serv
)
}
// SecureOutbound runs the TLS handshake as a client.
func
(
t
*
Transport
)
SecureOutbound
(
ctx
context
.
Context
,
insecure
net
.
Conn
,
p
peer
.
ID
)
(
cs
.
Conn
,
error
)
{
cl
:=
tls
.
Client
(
insecure
,
t
.
identity
.
ConfigForPeer
(
p
))
return
t
.
handshake
(
ctx
,
insecure
,
cl
)
}
func
(
t
*
Transport
)
handshake
(
ctx
context
.
Context
,
// in Go 1.10, we need to close the underlying net.Conn
// in Go 1.11 this was fixed, and tls.Conn.Close() works as well
insecure
net
.
Conn
,
tlsConn
*
tls
.
Conn
,
)
(
cs
.
Conn
,
error
)
{
errChan
:=
make
(
chan
error
,
2
)
// There's no way to pass a context to tls.Conn.Handshake().
// See https://github.com/golang/go/issues/18482.
// Close the connection instead.
...
...
@@ -76,14 +69,23 @@ func (t *Transport) SecureOutbound(ctx context.Context, insecure net.Conn, p pee
select
{
case
<-
done
:
case
<-
ctx
.
Done
()
:
errChan
<-
ctx
.
Err
()
insecure
.
Close
()
}
}()
if
err
:=
cl
.
Handshake
();
err
!=
nil
{
return
nil
,
err
if
err
:=
tlsConn
.
Handshake
();
err
!=
nil
{
// if the context was canceled, return the context error
errChan
<-
err
return
nil
,
<-
errChan
}
conn
,
err
:=
t
.
setupConn
(
tlsConn
)
if
err
!=
nil
{
// if the context was canceled, return the context error
errChan
<-
err
return
nil
,
<-
errChan
}
return
t
.
setupConn
(
cl
)
return
conn
,
nil
}
func
(
t
*
Transport
)
setupConn
(
tlsConn
*
tls
.
Conn
)
(
cs
.
Conn
,
error
)
{
...
...
transport_test.go
View file @
fa2f7eea
...
...
@@ -112,8 +112,7 @@ var _ = Describe("Transport", func() {
ctx
,
cancel
:=
context
.
WithCancel
(
context
.
Background
())
cancel
()
_
,
err
=
clientTransport
.
SecureOutbound
(
ctx
,
clientInsecureConn
,
serverID
)
Expect
(
err
)
.
To
(
HaveOccurred
())
Expect
(
err
.
Error
())
.
To
(
ContainSubstring
(
"use of closed network connection"
))
Expect
(
err
)
.
To
(
MatchError
(
context
.
Canceled
))
})
It
(
"fails when the context of the incoming connection is canceled"
,
func
()
{
...
...
@@ -129,8 +128,7 @@ var _ = Describe("Transport", func() {
ctx
,
cancel
:=
context
.
WithCancel
(
context
.
Background
())
cancel
()
_
,
err
:=
serverTransport
.
SecureInbound
(
ctx
,
serverInsecureConn
)
Expect
(
err
)
.
To
(
HaveOccurred
())
Expect
(
err
.
Error
())
.
To
(
ContainSubstring
(
"use of closed network connection"
))
Expect
(
err
)
.
To
(
MatchError
(
context
.
Canceled
))
}()
_
,
err
=
clientTransport
.
SecureOutbound
(
context
.
Background
(),
clientInsecureConn
,
serverID
)
Expect
(
err
)
.
To
(
HaveOccurred
())
...
...
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