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-tcp-transport
Commits
36e45e19
Unverified
Commit
36e45e19
authored
Apr 02, 2020
by
Steven Allen
Committed by
GitHub
Apr 02, 2020
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #61 from libp2p/fix/no-dns
fix: don't allow dialing DNS addresses
parents
e74d5f34
3ddabafa
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
1 deletion
+24
-1
tcp.go
tcp.go
+3
-1
tcp_test.go
tcp_test.go
+21
-0
No files found.
tcp.go
View file @
36e45e19
...
...
@@ -70,10 +70,12 @@ func NewTCPTransport(upgrader *tptu.Upgrader) *TcpTransport {
return
&
TcpTransport
{
Upgrader
:
upgrader
,
ConnectTimeout
:
DefaultConnectTimeout
}
}
var
dialMatcher
=
mafmt
.
And
(
mafmt
.
IP
,
mafmt
.
Base
(
ma
.
P_TCP
))
// CanDial returns true if this transport believes it can dial the given
// multiaddr.
func
(
t
*
TcpTransport
)
CanDial
(
addr
ma
.
Multiaddr
)
bool
{
return
mafmt
.
TCP
.
Matches
(
addr
)
return
dialMatcher
.
Matches
(
addr
)
}
func
(
t
*
TcpTransport
)
maDial
(
ctx
context
.
Context
,
raddr
ma
.
Multiaddr
)
(
manet
.
Conn
,
error
)
{
...
...
tcp_test.go
View file @
36e45e19
...
...
@@ -36,6 +36,27 @@ func TestTcpTransport(t *testing.T) {
envReuseportVal
=
true
}
func
TestTcpTransportCantDialDNS
(
t
*
testing
.
T
)
{
for
i
:=
0
;
i
<
2
;
i
++
{
dnsa
,
err
:=
ma
.
NewMultiaddr
(
"/dns4/example.com/tcp/1234"
)
if
err
!=
nil
{
t
.
Fatal
(
err
)
}
tpt
:=
NewTCPTransport
(
&
tptu
.
Upgrader
{
Secure
:
makeInsecureTransport
(
t
),
Muxer
:
new
(
mplex
.
Transport
),
})
if
tpt
.
CanDial
(
dnsa
)
{
t
.
Fatal
(
"shouldn't be able to dial dns"
)
}
envReuseportVal
=
false
}
envReuseportVal
=
true
}
func
TestTcpTransportCantListenUtp
(
t
*
testing
.
T
)
{
for
i
:=
0
;
i
<
2
;
i
++
{
utpa
,
err
:=
ma
.
NewMultiaddr
(
"/ip4/127.0.0.1/udp/0/utp"
)
...
...
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