2018-02-05 12:22:16 -05:00
|
|
|
# Copyright 2018 New Vector Ltd
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
2018-07-09 02:09:20 -04:00
|
|
|
import logging
|
2022-02-08 07:44:39 -05:00
|
|
|
from typing import TYPE_CHECKING, List, Tuple
|
|
|
|
|
|
|
|
from twisted.web.server import Request
|
2018-07-09 02:09:20 -04:00
|
|
|
|
2020-03-05 10:46:44 -05:00
|
|
|
from synapse.api.room_versions import KNOWN_ROOM_VERSIONS
|
2022-02-08 07:44:39 -05:00
|
|
|
from synapse.events import EventBase, make_event_from_dict
|
2018-02-05 12:22:16 -05:00
|
|
|
from synapse.events.snapshot import EventContext
|
2022-02-08 07:44:39 -05:00
|
|
|
from synapse.http.server import HttpServer
|
2018-07-31 08:53:54 -04:00
|
|
|
from synapse.http.servlet import parse_json_object_from_request
|
|
|
|
from synapse.replication.http._base import ReplicationEndpoint
|
2022-02-08 07:44:39 -05:00
|
|
|
from synapse.types import JsonDict, Requester, UserID
|
2018-02-05 12:22:16 -05:00
|
|
|
from synapse.util.metrics import Measure
|
|
|
|
|
2021-10-22 13:15:41 -04:00
|
|
|
if TYPE_CHECKING:
|
|
|
|
from synapse.server import HomeServer
|
2022-02-08 07:44:39 -05:00
|
|
|
from synapse.storage.databases.main import DataStore
|
2021-10-22 13:15:41 -04:00
|
|
|
|
2018-02-05 12:22:16 -05:00
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
2018-07-31 08:53:54 -04:00
|
|
|
class ReplicationSendEventRestServlet(ReplicationEndpoint):
|
2018-02-05 12:22:16 -05:00
|
|
|
"""Handles events newly created on workers, including persisting and
|
|
|
|
notifying.
|
|
|
|
|
|
|
|
The API looks like:
|
|
|
|
|
2018-07-31 08:53:54 -04:00
|
|
|
POST /_synapse/replication/send_event/:event_id/:txn_id
|
2018-02-05 12:22:16 -05:00
|
|
|
|
|
|
|
{
|
|
|
|
"event": { .. serialized event .. },
|
2020-03-05 10:46:44 -05:00
|
|
|
"room_version": .., // "1", "2", "3", etc: the version of the room
|
|
|
|
// containing the event
|
|
|
|
"event_format_version": .., // 1,2,3 etc: the event format version
|
2018-02-05 12:22:16 -05:00
|
|
|
"internal_metadata": { .. serialized internal_metadata .. },
|
2021-03-17 08:33:18 -04:00
|
|
|
"outlier": true|false,
|
2018-02-05 12:22:16 -05:00
|
|
|
"rejected_reason": .., // The event.rejected_reason field
|
|
|
|
"context": { .. serialized event context .. },
|
|
|
|
"requester": { .. serialized requester .. },
|
2018-03-01 05:08:28 -05:00
|
|
|
"ratelimit": true,
|
|
|
|
"extra_users": [],
|
2018-02-05 12:22:16 -05:00
|
|
|
}
|
2020-10-13 07:07:56 -04:00
|
|
|
|
|
|
|
200 OK
|
|
|
|
|
|
|
|
{ "stream_id": 12345, "event_id": "$abcdef..." }
|
|
|
|
|
Handle race between persisting an event and un-partial stating a room (#13100)
Whenever we want to persist an event, we first compute an event context,
which includes the state at the event and a flag indicating whether the
state is partial. After a lot of processing, we finally try to store the
event in the database, which can fail for partial state events when the
containing room has been un-partial stated in the meantime.
We detect the race as a foreign key constraint failure in the data store
layer and turn it into a special `PartialStateConflictError` exception,
which makes its way up to the method in which we computed the event
context.
To make things difficult, the exception needs to cross a replication
request: `/fed_send_events` for events coming over federation and
`/send_event` for events from clients. We transport the
`PartialStateConflictError` as a `409 Conflict` over replication and
turn `409`s back into `PartialStateConflictError`s on the worker making
the request.
All client events go through
`EventCreationHandler.handle_new_client_event`, which is called in
*a lot* of places. Instead of trying to update all the code which
creates client events, we turn the `PartialStateConflictError` into a
`429 Too Many Requests` in
`EventCreationHandler.handle_new_client_event` and hope that clients
take it as a hint to retry their request.
On the federation event side, there are 7 places which compute event
contexts. 4 of them use outlier event contexts:
`FederationEventHandler._auth_and_persist_outliers_inner`,
`FederationHandler.do_knock`, `FederationHandler.on_invite_request` and
`FederationHandler.do_remotely_reject_invite`. These events won't have
the partial state flag, so we do not need to do anything for then.
The remaining 3 paths which create events are
`FederationEventHandler.process_remote_join`,
`FederationEventHandler.on_send_membership_event` and
`FederationEventHandler._process_received_pdu`.
We can't experience the race in `process_remote_join`, unless we're
handling an additional join into a partial state room, which currently
blocks, so we make no attempt to handle it correctly.
`on_send_membership_event` is only called by
`FederationServer._on_send_membership_event`, so we catch the
`PartialStateConflictError` there and retry just once.
`_process_received_pdu` is called by `on_receive_pdu` for incoming
events and `_process_pulled_event` for backfill. The latter should never
try to persist partial state events, so we ignore it. We catch the
`PartialStateConflictError` in `on_receive_pdu` and retry just once.
Refering to the graph of code paths in
https://github.com/matrix-org/synapse/issues/12988#issuecomment-1156857648
may make the above make more sense.
Signed-off-by: Sean Quah <seanq@matrix.org>
2022-07-05 11:12:52 -04:00
|
|
|
Responds with a 409 when a `PartialStateConflictError` is raised due to an event
|
|
|
|
context that needs to be recomputed due to the un-partial stating of a room.
|
|
|
|
|
2020-10-13 07:07:56 -04:00
|
|
|
The returned event ID may not match the sent event if it was deduplicated.
|
2018-02-05 12:22:16 -05:00
|
|
|
"""
|
2019-06-20 05:32:02 -04:00
|
|
|
|
2018-07-31 08:53:54 -04:00
|
|
|
NAME = "send_event"
|
|
|
|
PATH_ARGS = ("event_id",)
|
2018-02-05 12:22:16 -05:00
|
|
|
|
2021-10-22 13:15:41 -04:00
|
|
|
def __init__(self, hs: "HomeServer"):
|
2020-09-18 09:56:44 -04:00
|
|
|
super().__init__(hs)
|
2018-02-05 12:22:16 -05:00
|
|
|
|
|
|
|
self.event_creation_handler = hs.get_event_creation_handler()
|
2022-02-23 06:04:02 -05:00
|
|
|
self.store = hs.get_datastores().main
|
2022-05-31 08:17:50 -04:00
|
|
|
self._storage_controllers = hs.get_storage_controllers()
|
2018-02-05 12:22:16 -05:00
|
|
|
self.clock = hs.get_clock()
|
|
|
|
|
2018-07-31 08:53:54 -04:00
|
|
|
@staticmethod
|
2022-02-08 07:44:39 -05:00
|
|
|
async def _serialize_payload( # type: ignore[override]
|
|
|
|
event_id: str,
|
|
|
|
store: "DataStore",
|
|
|
|
event: EventBase,
|
|
|
|
context: EventContext,
|
|
|
|
requester: Requester,
|
|
|
|
ratelimit: bool,
|
|
|
|
extra_users: List[UserID],
|
|
|
|
) -> JsonDict:
|
2018-07-31 08:53:54 -04:00
|
|
|
"""
|
|
|
|
Args:
|
2022-02-08 07:44:39 -05:00
|
|
|
event_id
|
|
|
|
store
|
|
|
|
requester
|
|
|
|
event
|
|
|
|
context
|
|
|
|
ratelimit
|
|
|
|
extra_users: Any extra users to notify about event
|
2018-07-31 08:53:54 -04:00
|
|
|
"""
|
2020-08-03 07:12:55 -04:00
|
|
|
serialized_context = await context.serialize(event, store)
|
2018-07-31 08:53:54 -04:00
|
|
|
|
|
|
|
payload = {
|
|
|
|
"event": event.get_pdu_json(),
|
2020-03-05 10:46:44 -05:00
|
|
|
"room_version": event.room_version.identifier,
|
2019-01-24 06:14:07 -05:00
|
|
|
"event_format_version": event.format_version,
|
2018-07-31 08:53:54 -04:00
|
|
|
"internal_metadata": event.internal_metadata.get_dict(),
|
2021-03-17 08:33:18 -04:00
|
|
|
"outlier": event.internal_metadata.is_outlier(),
|
2018-07-31 08:53:54 -04:00
|
|
|
"rejected_reason": event.rejected_reason,
|
|
|
|
"context": serialized_context,
|
|
|
|
"requester": requester.serialize(),
|
|
|
|
"ratelimit": ratelimit,
|
|
|
|
"extra_users": [u.to_string() for u in extra_users],
|
|
|
|
}
|
2018-03-01 06:20:34 -05:00
|
|
|
|
2019-07-23 09:00:55 -04:00
|
|
|
return payload
|
2018-04-12 07:08:59 -04:00
|
|
|
|
2022-02-08 07:44:39 -05:00
|
|
|
async def _handle_request( # type: ignore[override]
|
|
|
|
self, request: Request, event_id: str
|
|
|
|
) -> Tuple[int, JsonDict]:
|
2018-02-05 12:22:16 -05:00
|
|
|
with Measure(self.clock, "repl_send_event_parse"):
|
|
|
|
content = parse_json_object_from_request(request)
|
|
|
|
|
|
|
|
event_dict = content["event"]
|
2020-03-05 10:46:44 -05:00
|
|
|
room_ver = KNOWN_ROOM_VERSIONS[content["room_version"]]
|
2018-02-05 12:22:16 -05:00
|
|
|
internal_metadata = content["internal_metadata"]
|
|
|
|
rejected_reason = content["rejected_reason"]
|
2019-01-24 06:14:07 -05:00
|
|
|
|
2020-03-05 10:46:44 -05:00
|
|
|
event = make_event_from_dict(
|
|
|
|
event_dict, room_ver, internal_metadata, rejected_reason
|
|
|
|
)
|
2021-03-17 08:33:18 -04:00
|
|
|
event.internal_metadata.outlier = content["outlier"]
|
2018-02-05 12:22:16 -05:00
|
|
|
|
|
|
|
requester = Requester.deserialize(self.store, content["requester"])
|
2022-05-31 08:17:50 -04:00
|
|
|
context = EventContext.deserialize(
|
|
|
|
self._storage_controllers, content["context"]
|
|
|
|
)
|
2018-02-05 12:22:16 -05:00
|
|
|
|
2018-03-01 05:08:28 -05:00
|
|
|
ratelimit = content["ratelimit"]
|
2018-03-01 12:39:58 -05:00
|
|
|
extra_users = [UserID.from_string(u) for u in content["extra_users"]]
|
2018-03-01 05:08:28 -05:00
|
|
|
|
2018-02-05 12:22:16 -05:00
|
|
|
logger.info(
|
|
|
|
"Got event to send with ID: %s into room: %s", event.event_id, event.room_id
|
|
|
|
)
|
|
|
|
|
2022-09-28 06:11:48 -04:00
|
|
|
event = await self.event_creation_handler.persist_and_notify_client_events(
|
|
|
|
requester, [(event, context)], ratelimit=ratelimit, extra_users=extra_users
|
2018-02-05 12:22:16 -05:00
|
|
|
)
|
|
|
|
|
2020-10-13 07:07:56 -04:00
|
|
|
return (
|
|
|
|
200,
|
|
|
|
{
|
|
|
|
"stream_id": event.internal_metadata.stream_ordering,
|
|
|
|
"event_id": event.event_id,
|
|
|
|
},
|
|
|
|
)
|
2018-02-05 12:22:16 -05:00
|
|
|
|
|
|
|
|
2022-02-08 07:44:39 -05:00
|
|
|
def register_servlets(hs: "HomeServer", http_server: HttpServer) -> None:
|
2018-02-05 12:22:16 -05:00
|
|
|
ReplicationSendEventRestServlet(hs).register(http_server)
|