Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Matrix
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Container Registry
Model registry
Operate
Environments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TeDomum
Matrix
Commits
0fd5b3b5
Commit
0fd5b3b5
authored
6 years ago
by
Richard van der Hoff
Browse files
Options
Downloads
Patches
Plain Diff
Handle IP literals explicitly
We don't want to be doing .well-known lookups on these guys.
parent
51958df7
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
synapse/http/federation/matrix_federation_agent.py
+19
-0
19 additions, 0 deletions
synapse/http/federation/matrix_federation_agent.py
tests/http/federation/test_matrix_federation_agent.py
+2
-17
2 additions, 17 deletions
tests/http/federation/test_matrix_federation_agent.py
with
21 additions
and
17 deletions
synapse/http/federation/matrix_federation_agent.py
+
19
−
0
View file @
0fd5b3b5
...
...
@@ -15,6 +15,7 @@
import
logging
import
attr
from
netaddr
import
IPAddress
from
zope.interface
import
implementer
from
twisted.internet
import
defer
...
...
@@ -137,6 +138,24 @@ class MatrixFederationAgent(object):
Returns:
Deferred[_RoutingResult]
"""
# check for an IP literal
try
:
ip_address
=
IPAddress
(
parsed_uri
.
host
.
decode
(
"
ascii
"
))
except
Exception
:
# not an IP address
ip_address
=
None
if
ip_address
:
port
=
parsed_uri
.
port
if
port
==
-
1
:
port
=
8448
defer
.
returnValue
(
_RoutingResult
(
host_header
=
parsed_uri
.
netloc
,
tls_server_name
=
parsed_uri
.
host
,
target_host
=
parsed_uri
.
host
,
target_port
=
port
,
))
if
parsed_uri
.
port
!=
-
1
:
# there is an explicit port
defer
.
returnValue
(
_RoutingResult
(
...
...
This diff is collapsed.
Click to expand it.
tests/http/federation/test_matrix_federation_agent.py
+
2
−
17
View file @
0fd5b3b5
...
...
@@ -166,11 +166,7 @@ class MatrixFederationAgentTests(TestCase):
"""
Test the behaviour when the server name contains an explicit IP (with no port)
"""
# the SRV lookup will return an empty list (XXX: why do we even do an SRV lookup?)
self
.
mock_resolver
.
resolve_service
.
side_effect
=
lambda
_
:
[]
# then there will be a getaddrinfo on the IP
# there will be a getaddrinfo on the IP
self
.
reactor
.
lookups
[
"
1.2.3.4
"
]
=
"
1.2.3.4
"
test_d
=
self
.
_make_get_request
(
b
"
matrix://1.2.3.4/foo/bar
"
)
...
...
@@ -178,10 +174,6 @@ class MatrixFederationAgentTests(TestCase):
# Nothing happened yet
self
.
assertNoResult
(
test_d
)
self
.
mock_resolver
.
resolve_service
.
assert_called_once_with
(
b
"
_matrix._tcp.1.2.3.4
"
,
)
# Make sure treq is trying to connect
clients
=
self
.
reactor
.
tcpClients
self
.
assertEqual
(
len
(
clients
),
1
)
...
...
@@ -215,10 +207,7 @@ class MatrixFederationAgentTests(TestCase):
(with no port)
"""
# the SRV lookup will return an empty list (XXX: why do we even do an SRV lookup?)
self
.
mock_resolver
.
resolve_service
.
side_effect
=
lambda
_
:
[]
# then there will be a getaddrinfo on the IP
# there will be a getaddrinfo on the IP
self
.
reactor
.
lookups
[
"
::1
"
]
=
"
::1
"
test_d
=
self
.
_make_get_request
(
b
"
matrix://[::1]/foo/bar
"
)
...
...
@@ -226,10 +215,6 @@ class MatrixFederationAgentTests(TestCase):
# Nothing happened yet
self
.
assertNoResult
(
test_d
)
self
.
mock_resolver
.
resolve_service
.
assert_called_once_with
(
b
"
_matrix._tcp.::1
"
,
)
# Make sure treq is trying to connect
clients
=
self
.
reactor
.
tcpClients
self
.
assertEqual
(
len
(
clients
),
1
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment