_base.py 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574
  1. # Copyright 2019 New Vector Ltd
  2. #
  3. # Licensed under the Apache License, Version 2.0 (the "License");
  4. # you may not use this file except in compliance with the License.
  5. # You may obtain a copy of the License at
  6. #
  7. # http://www.apache.org/licenses/LICENSE-2.0
  8. #
  9. # Unless required by applicable law or agreed to in writing, software
  10. # distributed under the License is distributed on an "AS IS" BASIS,
  11. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. # See the License for the specific language governing permissions and
  13. # limitations under the License.
  14. import logging
  15. from typing import Any, Callable, Dict, List, Optional, Tuple
  16. from twisted.internet.protocol import Protocol
  17. from twisted.web.resource import Resource
  18. from synapse.app.generic_worker import GenericWorkerServer
  19. from synapse.http.server import JsonResource
  20. from synapse.http.site import SynapseRequest, SynapseSite
  21. from synapse.replication.http import ReplicationRestResource
  22. from synapse.replication.tcp.client import ReplicationDataHandler
  23. from synapse.replication.tcp.handler import ReplicationCommandHandler
  24. from synapse.replication.tcp.protocol import ClientReplicationStreamProtocol
  25. from synapse.replication.tcp.resource import (
  26. ReplicationStreamProtocolFactory,
  27. ServerReplicationStreamProtocol,
  28. )
  29. from synapse.server import HomeServer
  30. from tests import unittest
  31. from tests.server import FakeTransport
  32. try:
  33. import hiredis
  34. except ImportError:
  35. hiredis = None # type: ignore
  36. logger = logging.getLogger(__name__)
  37. class BaseStreamTestCase(unittest.HomeserverTestCase):
  38. """Base class for tests of the replication streams"""
  39. # hiredis is an optional dependency so we don't want to require it for running
  40. # the tests.
  41. if not hiredis:
  42. skip = "Requires hiredis"
  43. def prepare(self, reactor, clock, hs):
  44. # build a replication server
  45. server_factory = ReplicationStreamProtocolFactory(hs)
  46. self.streamer = hs.get_replication_streamer()
  47. self.server: ServerReplicationStreamProtocol = server_factory.buildProtocol(
  48. None
  49. )
  50. # Make a new HomeServer object for the worker
  51. self.reactor.lookups["testserv"] = "1.2.3.4"
  52. self.worker_hs = self.setup_test_homeserver(
  53. federation_http_client=None,
  54. homeserver_to_use=GenericWorkerServer,
  55. config=self._get_worker_hs_config(),
  56. reactor=self.reactor,
  57. )
  58. # Since we use sqlite in memory databases we need to make sure the
  59. # databases objects are the same.
  60. self.worker_hs.get_datastore().db_pool = hs.get_datastore().db_pool
  61. # Normally we'd pass in the handler to `setup_test_homeserver`, which would
  62. # eventually hit "Install @cache_in_self attributes" in tests/utils.py.
  63. # Unfortunately our handler wants a reference to the homeserver. That leaves
  64. # us with a chicken-and-egg problem.
  65. # We can workaround this: create the homeserver first, create the handler
  66. # and bodge it in after the fact. The bodging requires us to know the
  67. # dirty details of how `cache_in_self` works. We politely ask mypy to
  68. # ignore our dirty dealings.
  69. self.test_handler = self._build_replication_data_handler()
  70. self.worker_hs._replication_data_handler = self.test_handler # type: ignore[attr-defined]
  71. repl_handler = ReplicationCommandHandler(self.worker_hs)
  72. self.client = ClientReplicationStreamProtocol(
  73. self.worker_hs,
  74. "client",
  75. "test",
  76. clock,
  77. repl_handler,
  78. )
  79. self._client_transport = None
  80. self._server_transport = None
  81. def create_resource_dict(self) -> Dict[str, Resource]:
  82. d = super().create_resource_dict()
  83. d["/_synapse/replication"] = ReplicationRestResource(self.hs)
  84. return d
  85. def _get_worker_hs_config(self) -> dict:
  86. config = self.default_config()
  87. config["worker_app"] = "synapse.app.generic_worker"
  88. config["worker_replication_host"] = "testserv"
  89. config["worker_replication_http_port"] = "8765"
  90. return config
  91. def _build_replication_data_handler(self):
  92. return TestReplicationDataHandler(self.worker_hs)
  93. def reconnect(self):
  94. if self._client_transport:
  95. self.client.close()
  96. if self._server_transport:
  97. self.server.close()
  98. self._client_transport = FakeTransport(self.server, self.reactor)
  99. self.client.makeConnection(self._client_transport)
  100. self._server_transport = FakeTransport(self.client, self.reactor)
  101. self.server.makeConnection(self._server_transport)
  102. def disconnect(self):
  103. if self._client_transport:
  104. self._client_transport = None
  105. self.client.close()
  106. if self._server_transport:
  107. self._server_transport = None
  108. self.server.close()
  109. def replicate(self):
  110. """Tell the master side of replication that something has happened, and then
  111. wait for the replication to occur.
  112. """
  113. self.streamer.on_notifier_poke()
  114. self.pump(0.1)
  115. def handle_http_replication_attempt(self) -> SynapseRequest:
  116. """Asserts that a connection attempt was made to the master HS on the
  117. HTTP replication port, then proxies it to the master HS object to be
  118. handled.
  119. Returns:
  120. The request object received by master HS.
  121. """
  122. # We should have an outbound connection attempt.
  123. clients = self.reactor.tcpClients
  124. self.assertEqual(len(clients), 1)
  125. (host, port, client_factory, _timeout, _bindAddress) = clients.pop(0)
  126. self.assertEqual(host, "1.2.3.4")
  127. self.assertEqual(port, 8765)
  128. # Set up client side protocol
  129. client_protocol = client_factory.buildProtocol(None)
  130. # Set up the server side protocol
  131. channel = self.site.buildProtocol(None)
  132. # hook into the channel's request factory so that we can keep a record
  133. # of the requests
  134. requests: List[SynapseRequest] = []
  135. real_request_factory = channel.requestFactory
  136. def request_factory(*args, **kwargs):
  137. request = real_request_factory(*args, **kwargs)
  138. requests.append(request)
  139. return request
  140. channel.requestFactory = request_factory
  141. # Connect client to server and vice versa.
  142. client_to_server_transport = FakeTransport(
  143. channel, self.reactor, client_protocol
  144. )
  145. client_protocol.makeConnection(client_to_server_transport)
  146. server_to_client_transport = FakeTransport(
  147. client_protocol, self.reactor, channel
  148. )
  149. channel.makeConnection(server_to_client_transport)
  150. # The request will now be processed by `self.site` and the response
  151. # streamed back.
  152. self.reactor.advance(0)
  153. # We tear down the connection so it doesn't get reused without our
  154. # knowledge.
  155. server_to_client_transport.loseConnection()
  156. client_to_server_transport.loseConnection()
  157. # there should have been exactly one request
  158. self.assertEqual(len(requests), 1)
  159. return requests[0]
  160. def assert_request_is_get_repl_stream_updates(
  161. self, request: SynapseRequest, stream_name: str
  162. ):
  163. """Asserts that the given request is a HTTP replication request for
  164. fetching updates for given stream.
  165. """
  166. path: bytes = request.path # type: ignore
  167. self.assertRegex(
  168. path,
  169. br"^/_synapse/replication/get_repl_stream_updates/%s/[^/]+$"
  170. % (stream_name.encode("ascii"),),
  171. )
  172. self.assertEqual(request.method, b"GET")
  173. class BaseMultiWorkerStreamTestCase(unittest.HomeserverTestCase):
  174. """Base class for tests running multiple workers.
  175. Automatically handle HTTP replication requests from workers to master,
  176. unlike `BaseStreamTestCase`.
  177. """
  178. servlets: List[Callable[[HomeServer, JsonResource], None]] = []
  179. def setUp(self):
  180. super().setUp()
  181. # build a replication server
  182. self.server_factory = ReplicationStreamProtocolFactory(self.hs)
  183. self.streamer = self.hs.get_replication_streamer()
  184. # Fake in memory Redis server that servers can connect to.
  185. self._redis_server = FakeRedisPubSubServer()
  186. # We may have an attempt to connect to redis for the external cache already.
  187. self.connect_any_redis_attempts()
  188. store = self.hs.get_datastore()
  189. self.database_pool = store.db_pool
  190. self.reactor.lookups["testserv"] = "1.2.3.4"
  191. self.reactor.lookups["localhost"] = "127.0.0.1"
  192. # A map from a HS instance to the associated HTTP Site to use for
  193. # handling inbound HTTP requests to that instance.
  194. self._hs_to_site = {self.hs: self.site}
  195. if self.hs.config.redis.redis_enabled:
  196. # Handle attempts to connect to fake redis server.
  197. self.reactor.add_tcp_client_callback(
  198. "localhost",
  199. 6379,
  200. self.connect_any_redis_attempts,
  201. )
  202. self.hs.get_tcp_replication().start_replication(self.hs)
  203. # When we see a connection attempt to the master replication listener we
  204. # automatically set up the connection. This is so that tests don't
  205. # manually have to go and explicitly set it up each time (plus sometimes
  206. # it is impossible to write the handling explicitly in the tests).
  207. #
  208. # Register the master replication listener:
  209. self.reactor.add_tcp_client_callback(
  210. "1.2.3.4",
  211. 8765,
  212. lambda: self._handle_http_replication_attempt(self.hs, 8765),
  213. )
  214. def create_test_resource(self):
  215. """Overrides `HomeserverTestCase.create_test_resource`."""
  216. # We override this so that it automatically registers all the HTTP
  217. # replication servlets, without having to explicitly do that in all
  218. # subclassses.
  219. resource = ReplicationRestResource(self.hs)
  220. for servlet in self.servlets:
  221. servlet(self.hs, resource)
  222. return resource
  223. def make_worker_hs(
  224. self, worker_app: str, extra_config: Optional[dict] = None, **kwargs
  225. ) -> HomeServer:
  226. """Make a new worker HS instance, correctly connecting replcation
  227. stream to the master HS.
  228. Args:
  229. worker_app: Type of worker, e.g. `synapse.app.federation_sender`.
  230. extra_config: Any extra config to use for this instances.
  231. **kwargs: Options that get passed to `self.setup_test_homeserver`,
  232. useful to e.g. pass some mocks for things like `federation_http_client`
  233. Returns:
  234. The new worker HomeServer instance.
  235. """
  236. config = self._get_worker_hs_config()
  237. config["worker_app"] = worker_app
  238. config.update(extra_config or {})
  239. worker_hs = self.setup_test_homeserver(
  240. homeserver_to_use=GenericWorkerServer,
  241. config=config,
  242. reactor=self.reactor,
  243. **kwargs,
  244. )
  245. # If the instance is in the `instance_map` config then workers may try
  246. # and send HTTP requests to it, so we register it with
  247. # `_handle_http_replication_attempt` like we do with the master HS.
  248. instance_name = worker_hs.get_instance_name()
  249. instance_loc = worker_hs.config.worker.instance_map.get(instance_name)
  250. if instance_loc:
  251. # Ensure the host is one that has a fake DNS entry.
  252. if instance_loc.host not in self.reactor.lookups:
  253. raise Exception(
  254. "Host does not have an IP for instance_map[%r].host = %r"
  255. % (
  256. instance_name,
  257. instance_loc.host,
  258. )
  259. )
  260. # Copy the port into a new, non-Optional variable so mypy knows we're
  261. # not going to reset `instance_loc` to `None` under its feet. See
  262. # https://mypy.readthedocs.io/en/latest/common_issues.html#narrowing-and-inner-functions
  263. port = instance_loc.port
  264. self.reactor.add_tcp_client_callback(
  265. self.reactor.lookups[instance_loc.host],
  266. instance_loc.port,
  267. lambda: self._handle_http_replication_attempt(worker_hs, port),
  268. )
  269. store = worker_hs.get_datastore()
  270. store.db_pool._db_pool = self.database_pool._db_pool
  271. # Set up TCP replication between master and the new worker if we don't
  272. # have Redis support enabled.
  273. if not worker_hs.config.redis.redis_enabled:
  274. repl_handler = ReplicationCommandHandler(worker_hs)
  275. client = ClientReplicationStreamProtocol(
  276. worker_hs,
  277. "client",
  278. "test",
  279. self.clock,
  280. repl_handler,
  281. )
  282. server = self.server_factory.buildProtocol(None)
  283. client_transport = FakeTransport(server, self.reactor)
  284. client.makeConnection(client_transport)
  285. server_transport = FakeTransport(client, self.reactor)
  286. server.makeConnection(server_transport)
  287. # Set up a resource for the worker
  288. resource = ReplicationRestResource(worker_hs)
  289. for servlet in self.servlets:
  290. servlet(worker_hs, resource)
  291. self._hs_to_site[worker_hs] = SynapseSite(
  292. logger_name="synapse.access.http.fake",
  293. site_tag="{}-{}".format(
  294. worker_hs.config.server.server_name, worker_hs.get_instance_name()
  295. ),
  296. config=worker_hs.config.server.listeners[0],
  297. resource=resource,
  298. server_version_string="1",
  299. max_request_body_size=4096,
  300. reactor=self.reactor,
  301. )
  302. if worker_hs.config.redis.redis_enabled:
  303. worker_hs.get_tcp_replication().start_replication(worker_hs)
  304. return worker_hs
  305. def _get_worker_hs_config(self) -> dict:
  306. config = self.default_config()
  307. config["worker_replication_host"] = "testserv"
  308. config["worker_replication_http_port"] = "8765"
  309. return config
  310. def replicate(self):
  311. """Tell the master side of replication that something has happened, and then
  312. wait for the replication to occur.
  313. """
  314. self.streamer.on_notifier_poke()
  315. self.pump()
  316. def _handle_http_replication_attempt(self, hs, repl_port):
  317. """Handles a connection attempt to the given HS replication HTTP
  318. listener on the given port.
  319. """
  320. # We should have at least one outbound connection attempt, where the
  321. # last is one to the HTTP repication IP/port.
  322. clients = self.reactor.tcpClients
  323. self.assertGreaterEqual(len(clients), 1)
  324. (host, port, client_factory, _timeout, _bindAddress) = clients.pop()
  325. self.assertEqual(host, "1.2.3.4")
  326. self.assertEqual(port, repl_port)
  327. # Set up client side protocol
  328. client_protocol = client_factory.buildProtocol(None)
  329. # Set up the server side protocol
  330. channel = self._hs_to_site[hs].buildProtocol(None)
  331. # Connect client to server and vice versa.
  332. client_to_server_transport = FakeTransport(
  333. channel, self.reactor, client_protocol
  334. )
  335. client_protocol.makeConnection(client_to_server_transport)
  336. server_to_client_transport = FakeTransport(
  337. client_protocol, self.reactor, channel
  338. )
  339. channel.makeConnection(server_to_client_transport)
  340. # Note: at this point we've wired everything up, but we need to return
  341. # before the data starts flowing over the connections as this is called
  342. # inside `connecTCP` before the connection has been passed back to the
  343. # code that requested the TCP connection.
  344. def connect_any_redis_attempts(self):
  345. """If redis is enabled we need to deal with workers connecting to a
  346. redis server. We don't want to use a real Redis server so we use a
  347. fake one.
  348. """
  349. clients = self.reactor.tcpClients
  350. while clients:
  351. (host, port, client_factory, _timeout, _bindAddress) = clients.pop(0)
  352. self.assertEqual(host, "localhost")
  353. self.assertEqual(port, 6379)
  354. client_protocol = client_factory.buildProtocol(None)
  355. server_protocol = self._redis_server.buildProtocol(None)
  356. client_to_server_transport = FakeTransport(
  357. server_protocol, self.reactor, client_protocol
  358. )
  359. client_protocol.makeConnection(client_to_server_transport)
  360. server_to_client_transport = FakeTransport(
  361. client_protocol, self.reactor, server_protocol
  362. )
  363. server_protocol.makeConnection(server_to_client_transport)
  364. class TestReplicationDataHandler(ReplicationDataHandler):
  365. """Drop-in for ReplicationDataHandler which just collects RDATA rows"""
  366. def __init__(self, hs: HomeServer):
  367. super().__init__(hs)
  368. # list of received (stream_name, token, row) tuples
  369. self.received_rdata_rows: List[Tuple[str, int, Any]] = []
  370. async def on_rdata(self, stream_name, instance_name, token, rows):
  371. await super().on_rdata(stream_name, instance_name, token, rows)
  372. for r in rows:
  373. self.received_rdata_rows.append((stream_name, token, r))
  374. class FakeRedisPubSubServer:
  375. """A fake Redis server for pub/sub."""
  376. def __init__(self):
  377. self._subscribers = set()
  378. def add_subscriber(self, conn):
  379. """A connection has called SUBSCRIBE"""
  380. self._subscribers.add(conn)
  381. def remove_subscriber(self, conn):
  382. """A connection has called UNSUBSCRIBE"""
  383. self._subscribers.discard(conn)
  384. def publish(self, conn, channel, msg) -> int:
  385. """A connection want to publish a message to subscribers."""
  386. for sub in self._subscribers:
  387. sub.send(["message", channel, msg])
  388. return len(self._subscribers)
  389. def buildProtocol(self, addr):
  390. return FakeRedisPubSubProtocol(self)
  391. class FakeRedisPubSubProtocol(Protocol):
  392. """A connection from a client talking to the fake Redis server."""
  393. transport: Optional[FakeTransport] = None
  394. def __init__(self, server: FakeRedisPubSubServer):
  395. self._server = server
  396. self._reader = hiredis.Reader()
  397. def dataReceived(self, data):
  398. self._reader.feed(data)
  399. # We might get multiple messages in one packet.
  400. while True:
  401. msg = self._reader.gets()
  402. if msg is False:
  403. # No more messages.
  404. return
  405. if not isinstance(msg, list):
  406. # Inbound commands should always be a list
  407. raise Exception("Expected redis list")
  408. self.handle_command(msg[0], *msg[1:])
  409. def handle_command(self, command, *args):
  410. """Received a Redis command from the client."""
  411. # We currently only support pub/sub.
  412. if command == b"PUBLISH":
  413. channel, message = args
  414. num_subscribers = self._server.publish(self, channel, message)
  415. self.send(num_subscribers)
  416. elif command == b"SUBSCRIBE":
  417. (channel,) = args
  418. self._server.add_subscriber(self)
  419. self.send(["subscribe", channel, 1])
  420. # Since we use SET/GET to cache things we can safely no-op them.
  421. elif command == b"SET":
  422. self.send("OK")
  423. elif command == b"GET":
  424. self.send(None)
  425. else:
  426. raise Exception("Unknown command")
  427. def send(self, msg):
  428. """Send a message back to the client."""
  429. assert self.transport is not None
  430. raw = self.encode(msg).encode("utf-8")
  431. self.transport.write(raw)
  432. self.transport.flush()
  433. def encode(self, obj):
  434. """Encode an object to its Redis format.
  435. Supports: strings/bytes, integers and list/tuples.
  436. """
  437. if isinstance(obj, bytes):
  438. # We assume bytes are just unicode strings.
  439. obj = obj.decode("utf-8")
  440. if obj is None:
  441. return "$-1\r\n"
  442. if isinstance(obj, str):
  443. return f"${len(obj)}\r\n{obj}\r\n"
  444. if isinstance(obj, int):
  445. return f":{obj}\r\n"
  446. if isinstance(obj, (list, tuple)):
  447. items = "".join(self.encode(a) for a in obj)
  448. return f"*{len(obj)}\r\n{items}"
  449. raise Exception("Unrecognized type for encoding redis: %r: %r", type(obj), obj)
  450. def connectionLost(self, reason):
  451. self._server.remove_subscriber(self)