2014-08-12 10:10:52 -04:00
|
|
|
# -*- coding: utf-8 -*-
|
2016-01-06 23:26:29 -05:00
|
|
|
# Copyright 2014-2016 OpenMarket Ltd
|
2014-08-12 10:10:52 -04:00
|
|
|
#
|
|
|
|
# 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.
|
2014-08-12 22:14:34 -04:00
|
|
|
|
2018-07-09 02:09:20 -04:00
|
|
|
import logging
|
|
|
|
from collections import namedtuple
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2018-05-29 11:42:43 -04:00
|
|
|
import six
|
2016-05-06 06:20:18 -04:00
|
|
|
|
2018-08-30 10:19:58 -04:00
|
|
|
from canonicaljson import encode_canonical_json
|
2016-05-06 06:20:18 -04:00
|
|
|
|
2018-07-09 02:09:20 -04:00
|
|
|
from twisted.internet import defer
|
2016-05-06 06:20:18 -04:00
|
|
|
|
2018-07-25 04:41:12 -04:00
|
|
|
from synapse.metrics.background_process_metrics import run_as_background_process
|
2018-09-21 09:55:47 -04:00
|
|
|
from synapse.util.caches.expiringcache import ExpiringCache
|
2018-07-09 02:09:20 -04:00
|
|
|
|
2018-08-30 10:19:58 -04:00
|
|
|
from ._base import SQLBaseStore, db_to_json
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2018-05-29 11:42:43 -04:00
|
|
|
# py2 sqlite has buffer hardcoded as only binary type, so we must use it,
|
|
|
|
# despite being deprecated and removed in favor of memoryview
|
|
|
|
if six.PY2:
|
|
|
|
db_binary_type = buffer
|
|
|
|
else:
|
|
|
|
db_binary_type = memoryview
|
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
2016-05-06 06:20:18 -04:00
|
|
|
_TransactionRow = namedtuple(
|
|
|
|
"_TransactionRow", (
|
|
|
|
"id", "transaction_id", "destination", "ts", "response_code",
|
|
|
|
"response_json",
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
_UpdateTransactionRow = namedtuple(
|
|
|
|
"_TransactionRow", (
|
|
|
|
"response_code", "response_json",
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
2018-09-21 09:55:47 -04:00
|
|
|
SENTINEL = object()
|
|
|
|
|
2016-05-06 06:20:18 -04:00
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
class TransactionStore(SQLBaseStore):
|
|
|
|
"""A collection of queries for handling PDUs.
|
|
|
|
"""
|
2014-12-10 05:16:09 -05:00
|
|
|
|
2017-11-09 13:51:27 -05:00
|
|
|
def __init__(self, db_conn, hs):
|
|
|
|
super(TransactionStore, self).__init__(db_conn, hs)
|
2016-11-01 07:42:08 -04:00
|
|
|
|
2018-07-25 04:41:12 -04:00
|
|
|
self._clock.looping_call(self._start_cleanup_transactions, 30 * 60 * 1000)
|
2016-11-01 07:42:08 -04:00
|
|
|
|
2018-09-21 09:55:47 -04:00
|
|
|
self._destination_retry_cache = ExpiringCache(
|
|
|
|
cache_name="get_destination_retry_timings",
|
|
|
|
clock=self._clock,
|
|
|
|
expiry_ms=5 * 60 * 1000,
|
|
|
|
)
|
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
def get_received_txn_response(self, transaction_id, origin):
|
|
|
|
"""For an incoming transaction from a given origin, check if we have
|
|
|
|
already responded to it. If so, return the response code and response
|
|
|
|
body (as a dict).
|
|
|
|
|
|
|
|
Args:
|
|
|
|
transaction_id (str)
|
|
|
|
origin(str)
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
tuple: None if we have not previously responded to
|
|
|
|
this transaction or a 2-tuple of (int, dict)
|
|
|
|
"""
|
|
|
|
|
2014-09-12 08:57:24 -04:00
|
|
|
return self.runInteraction(
|
2014-10-28 07:18:04 -04:00
|
|
|
"get_received_txn_response",
|
2014-08-12 10:10:52 -04:00
|
|
|
self._get_received_txn_response, transaction_id, origin
|
|
|
|
)
|
|
|
|
|
|
|
|
def _get_received_txn_response(self, txn, transaction_id, origin):
|
2015-03-20 11:05:44 -04:00
|
|
|
result = self._simple_select_one_txn(
|
|
|
|
txn,
|
2016-01-13 06:15:20 -05:00
|
|
|
table="received_transactions",
|
2015-03-20 11:05:44 -04:00
|
|
|
keyvalues={
|
|
|
|
"transaction_id": transaction_id,
|
|
|
|
"origin": origin,
|
|
|
|
},
|
2016-01-13 06:15:20 -05:00
|
|
|
retcols=(
|
|
|
|
"transaction_id", "origin", "ts", "response_code", "response_json",
|
|
|
|
"has_been_referenced",
|
|
|
|
),
|
2015-03-20 11:05:44 -04:00
|
|
|
allow_none=True,
|
|
|
|
)
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2015-11-12 09:06:31 -05:00
|
|
|
if result and result["response_code"]:
|
2018-08-30 10:19:58 -04:00
|
|
|
return result["response_code"], db_to_json(result["response_json"])
|
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
else:
|
|
|
|
return None
|
|
|
|
|
|
|
|
def set_received_txn_response(self, transaction_id, origin, code,
|
|
|
|
response_dict):
|
|
|
|
"""Persist the response we returened for an incoming transaction, and
|
|
|
|
should return for subsequent transactions with the same transaction_id
|
|
|
|
and origin.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
txn
|
|
|
|
transaction_id (str)
|
|
|
|
origin (str)
|
|
|
|
code (int)
|
|
|
|
response_json (str)
|
|
|
|
"""
|
|
|
|
|
2015-04-27 08:22:30 -04:00
|
|
|
return self._simple_insert(
|
2016-01-13 06:15:20 -05:00
|
|
|
table="received_transactions",
|
2015-04-27 08:22:30 -04:00
|
|
|
values={
|
2015-03-23 09:43:21 -04:00
|
|
|
"transaction_id": transaction_id,
|
|
|
|
"origin": origin,
|
|
|
|
"response_code": code,
|
2018-05-29 11:42:43 -04:00
|
|
|
"response_json": db_binary_type(encode_canonical_json(response_dict)),
|
2016-08-22 11:29:46 -04:00
|
|
|
"ts": self._clock.time_msec(),
|
2015-04-27 08:22:30 -04:00
|
|
|
},
|
|
|
|
or_ignore=True,
|
|
|
|
desc="set_received_txn_response",
|
2015-03-23 09:43:21 -04:00
|
|
|
)
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2014-10-17 12:31:48 -04:00
|
|
|
def prep_send_transaction(self, transaction_id, destination,
|
2014-11-03 06:35:19 -05:00
|
|
|
origin_server_ts):
|
2014-08-12 10:10:52 -04:00
|
|
|
"""Persists an outgoing transaction and calculates the values for the
|
|
|
|
previous transaction id list.
|
|
|
|
|
|
|
|
This should be called before sending the transaction so that it has the
|
|
|
|
correct value for the `prev_ids` key.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
transaction_id (str)
|
|
|
|
destination (str)
|
2014-10-17 12:12:25 -04:00
|
|
|
origin_server_ts (int)
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
Returns:
|
|
|
|
list: A list of previous transaction ids.
|
|
|
|
"""
|
2016-10-31 13:08:41 -04:00
|
|
|
return defer.succeed([])
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
def delivered_txn(self, transaction_id, destination, code, response_dict):
|
|
|
|
"""Persists the response for an outgoing transaction.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
transaction_id (str)
|
|
|
|
destination (str)
|
|
|
|
code (int)
|
|
|
|
response_json (str)
|
|
|
|
"""
|
2016-10-31 13:08:41 -04:00
|
|
|
pass
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2018-09-21 09:55:47 -04:00
|
|
|
@defer.inlineCallbacks
|
2014-12-06 21:26:07 -05:00
|
|
|
def get_destination_retry_timings(self, destination):
|
|
|
|
"""Gets the current retry timings (if any) for a given destination.
|
2014-12-10 05:16:09 -05:00
|
|
|
|
2014-12-06 21:26:07 -05:00
|
|
|
Args:
|
|
|
|
destination (str)
|
2014-12-10 05:16:09 -05:00
|
|
|
|
2014-12-06 21:26:07 -05:00
|
|
|
Returns:
|
|
|
|
None if not retrying
|
2015-03-23 09:43:21 -04:00
|
|
|
Otherwise a dict for the retry scheme
|
2014-12-06 21:26:07 -05:00
|
|
|
"""
|
2018-09-21 09:55:47 -04:00
|
|
|
|
|
|
|
result = self._destination_retry_cache.get(destination, SENTINEL)
|
|
|
|
if result is not SENTINEL:
|
|
|
|
defer.returnValue(result)
|
|
|
|
|
|
|
|
result = yield self.runInteraction(
|
2014-12-06 21:26:07 -05:00
|
|
|
"get_destination_retry_timings",
|
|
|
|
self._get_destination_retry_timings, destination)
|
2014-12-10 05:16:09 -05:00
|
|
|
|
2018-09-21 09:55:47 -04:00
|
|
|
# We don't hugely care about race conditions between getting and
|
|
|
|
# invalidating the cache, since we time out fairly quickly anyway.
|
|
|
|
self._destination_retry_cache[destination] = result
|
|
|
|
defer.returnValue(result)
|
|
|
|
|
2015-03-23 09:43:21 -04:00
|
|
|
def _get_destination_retry_timings(self, txn, destination):
|
|
|
|
result = self._simple_select_one_txn(
|
|
|
|
txn,
|
2016-01-13 06:15:20 -05:00
|
|
|
table="destinations",
|
2015-03-23 09:43:21 -04:00
|
|
|
keyvalues={
|
|
|
|
"destination": destination,
|
|
|
|
},
|
2016-01-13 06:15:20 -05:00
|
|
|
retcols=("destination", "retry_last_ts", "retry_interval"),
|
2015-03-23 09:43:21 -04:00
|
|
|
allow_none=True,
|
|
|
|
)
|
|
|
|
|
2015-03-24 12:20:05 -04:00
|
|
|
if result and result["retry_last_ts"] > 0:
|
2015-03-23 09:43:21 -04:00
|
|
|
return result
|
|
|
|
else:
|
|
|
|
return None
|
2014-12-10 05:16:09 -05:00
|
|
|
|
2014-12-09 19:03:55 -05:00
|
|
|
def set_destination_retry_timings(self, destination,
|
|
|
|
retry_last_ts, retry_interval):
|
2014-12-06 21:26:07 -05:00
|
|
|
"""Sets the current retry timings for a given destination.
|
|
|
|
Both timings should be zero if retrying is no longer occuring.
|
2014-12-10 05:16:09 -05:00
|
|
|
|
2014-12-06 21:26:07 -05:00
|
|
|
Args:
|
|
|
|
destination (str)
|
|
|
|
retry_last_ts (int) - time of last retry attempt in unix epoch ms
|
|
|
|
retry_interval (int) - how long until next retry in ms
|
|
|
|
"""
|
2014-12-10 05:16:09 -05:00
|
|
|
|
2018-10-02 10:47:57 -04:00
|
|
|
self._destination_retry_cache.pop(destination, None)
|
2014-12-06 21:26:07 -05:00
|
|
|
return self.runInteraction(
|
|
|
|
"set_destination_retry_timings",
|
2014-12-10 05:16:09 -05:00
|
|
|
self._set_destination_retry_timings,
|
|
|
|
destination,
|
|
|
|
retry_last_ts,
|
|
|
|
retry_interval,
|
|
|
|
)
|
|
|
|
|
2015-03-23 10:02:34 -04:00
|
|
|
def _set_destination_retry_timings(self, txn, destination,
|
2014-12-09 19:03:55 -05:00
|
|
|
retry_last_ts, retry_interval):
|
2016-11-22 12:45:44 -05:00
|
|
|
self.database_engine.lock_table(txn, "destinations")
|
2014-12-06 21:26:07 -05:00
|
|
|
|
2016-11-22 12:45:44 -05:00
|
|
|
# We need to be careful here as the data may have changed from under us
|
|
|
|
# due to a worker setting the timings.
|
|
|
|
|
|
|
|
prev_row = self._simple_select_one_txn(
|
2015-11-03 11:23:35 -05:00
|
|
|
txn,
|
2016-11-22 12:45:44 -05:00
|
|
|
table="destinations",
|
2015-11-03 11:23:35 -05:00
|
|
|
keyvalues={
|
|
|
|
"destination": destination,
|
|
|
|
},
|
2016-11-22 12:45:44 -05:00
|
|
|
retcols=("retry_last_ts", "retry_interval"),
|
|
|
|
allow_none=True,
|
2015-03-23 09:43:21 -04:00
|
|
|
)
|
2014-12-06 21:26:07 -05:00
|
|
|
|
2016-11-22 12:45:44 -05:00
|
|
|
if not prev_row:
|
|
|
|
self._simple_insert_txn(
|
|
|
|
txn,
|
|
|
|
table="destinations",
|
|
|
|
values={
|
|
|
|
"destination": destination,
|
|
|
|
"retry_last_ts": retry_last_ts,
|
|
|
|
"retry_interval": retry_interval,
|
|
|
|
}
|
|
|
|
)
|
|
|
|
elif retry_interval == 0 or prev_row["retry_interval"] < retry_interval:
|
|
|
|
self._simple_update_one_txn(
|
|
|
|
txn,
|
|
|
|
"destinations",
|
|
|
|
keyvalues={
|
|
|
|
"destination": destination,
|
|
|
|
},
|
|
|
|
updatevalues={
|
|
|
|
"retry_last_ts": retry_last_ts,
|
|
|
|
"retry_interval": retry_interval,
|
|
|
|
},
|
|
|
|
)
|
|
|
|
|
2014-12-06 21:26:07 -05:00
|
|
|
def get_destinations_needing_retry(self):
|
|
|
|
"""Get all destinations which are due a retry for sending a transaction.
|
2014-12-10 05:16:09 -05:00
|
|
|
|
2014-12-06 21:26:07 -05:00
|
|
|
Returns:
|
2015-03-23 09:43:21 -04:00
|
|
|
list: A list of dicts
|
2014-12-06 21:26:07 -05:00
|
|
|
"""
|
2014-12-10 05:16:09 -05:00
|
|
|
|
2014-12-06 21:26:07 -05:00
|
|
|
return self.runInteraction(
|
|
|
|
"get_destinations_needing_retry",
|
|
|
|
self._get_destinations_needing_retry
|
|
|
|
)
|
2014-12-10 05:16:09 -05:00
|
|
|
|
2015-03-23 09:43:21 -04:00
|
|
|
def _get_destinations_needing_retry(self, txn):
|
|
|
|
query = (
|
|
|
|
"SELECT * FROM destinations"
|
|
|
|
" WHERE retry_last_ts > 0 and retry_next_ts < ?"
|
|
|
|
)
|
|
|
|
|
|
|
|
txn.execute(query, (self._clock.time_msec(),))
|
|
|
|
return self.cursor_to_dict(txn)
|
2016-11-01 07:42:08 -04:00
|
|
|
|
2018-07-25 04:41:12 -04:00
|
|
|
def _start_cleanup_transactions(self):
|
2018-07-26 06:44:26 -04:00
|
|
|
return run_as_background_process(
|
|
|
|
"cleanup_transactions", self._cleanup_transactions,
|
|
|
|
)
|
2018-07-25 04:41:12 -04:00
|
|
|
|
2016-11-01 07:42:08 -04:00
|
|
|
def _cleanup_transactions(self):
|
|
|
|
now = self._clock.time_msec()
|
|
|
|
month_ago = now - 30 * 24 * 60 * 60 * 1000
|
|
|
|
|
|
|
|
def _cleanup_transactions_txn(txn):
|
|
|
|
txn.execute("DELETE FROM received_transactions WHERE ts < ?", (month_ago,))
|
|
|
|
|
|
|
|
return self.runInteraction("_cleanup_transactions", _cleanup_transactions_txn)
|