2014-10-15 12:09:04 -04:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
2016-01-06 23:26:29 -05:00
|
|
|
# Copyright 2014-2016 OpenMarket Ltd
|
2014-10-15 12:09:04 -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.
|
|
|
|
|
|
|
|
|
2018-07-09 02:09:20 -04:00
|
|
|
import hashlib
|
|
|
|
import logging
|
2015-08-24 11:17:38 -04:00
|
|
|
|
|
|
|
from canonicaljson import encode_canonical_json
|
|
|
|
from signedjson.sign import sign_json
|
2018-07-09 02:09:20 -04:00
|
|
|
from unpaddedbase64 import decode_base64, encode_base64
|
2014-10-15 12:09:04 -04:00
|
|
|
|
2018-07-09 02:09:20 -04:00
|
|
|
from synapse.api.errors import Codes, SynapseError
|
2019-01-28 11:42:10 -05:00
|
|
|
from synapse.events.utils import prune_event, prune_event_dict
|
2014-10-17 14:41:32 -04:00
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
2014-10-15 12:09:04 -04:00
|
|
|
|
|
|
|
|
2014-11-03 12:51:42 -05:00
|
|
|
def check_event_content_hash(event, hash_algorithm=hashlib.sha256):
|
2014-10-15 12:09:04 -04:00
|
|
|
"""Check whether the hash for this PDU matches the contents"""
|
2019-01-28 11:42:10 -05:00
|
|
|
name, expected_hash = compute_content_hash(event.get_pdu_json(), hash_algorithm)
|
2019-06-05 05:35:40 -04:00
|
|
|
logger.debug(
|
|
|
|
"Verifying content hash on %s (expecting: %s)",
|
|
|
|
event.event_id,
|
|
|
|
encode_base64(expected_hash),
|
|
|
|
)
|
2017-11-28 09:06:12 -05:00
|
|
|
|
|
|
|
# some malformed events lack a 'hashes'. Protect against it being missing
|
|
|
|
# or a weird type by basically treating it the same as an unhashed event.
|
|
|
|
hashes = event.get("hashes")
|
|
|
|
if not isinstance(hashes, dict):
|
|
|
|
raise SynapseError(400, "Malformed 'hashes'", Codes.UNAUTHORIZED)
|
|
|
|
|
|
|
|
if name not in hashes:
|
2014-11-14 11:45:39 -05:00
|
|
|
raise SynapseError(
|
|
|
|
400,
|
2019-06-20 05:32:02 -04:00
|
|
|
"Algorithm %s not in hashes %s" % (name, list(hashes)),
|
2014-11-14 11:45:39 -05:00
|
|
|
Codes.UNAUTHORIZED,
|
|
|
|
)
|
2017-11-28 09:06:12 -05:00
|
|
|
message_hash_base64 = hashes[name]
|
2014-10-15 12:09:04 -04:00
|
|
|
try:
|
|
|
|
message_hash_bytes = decode_base64(message_hash_base64)
|
2017-10-23 10:52:32 -04:00
|
|
|
except Exception:
|
2014-11-14 11:45:39 -05:00
|
|
|
raise SynapseError(
|
2019-06-20 05:32:02 -04:00
|
|
|
400, "Invalid base64: %s" % (message_hash_base64,), Codes.UNAUTHORIZED
|
2014-11-14 11:45:39 -05:00
|
|
|
)
|
2014-12-03 11:07:21 -05:00
|
|
|
return message_hash_bytes == expected_hash
|
2014-10-15 12:09:04 -04:00
|
|
|
|
|
|
|
|
2019-01-28 11:42:10 -05:00
|
|
|
def compute_content_hash(event_dict, hash_algorithm):
|
|
|
|
"""Compute the content hash of an event, which is the hash of the
|
|
|
|
unredacted event.
|
2014-12-03 11:07:21 -05:00
|
|
|
|
2019-01-28 11:42:10 -05:00
|
|
|
Args:
|
|
|
|
event_dict (dict): The unredacted event as a dict
|
|
|
|
hash_algorithm: A hasher from `hashlib`, e.g. hashlib.sha256, to use
|
|
|
|
to hash the event
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
tuple[str, bytes]: A tuple of the name of hash and the hash as raw
|
|
|
|
bytes.
|
|
|
|
"""
|
|
|
|
event_dict = dict(event_dict)
|
|
|
|
event_dict.pop("age_ts", None)
|
|
|
|
event_dict.pop("unsigned", None)
|
|
|
|
event_dict.pop("signatures", None)
|
|
|
|
event_dict.pop("hashes", None)
|
|
|
|
event_dict.pop("outlier", None)
|
|
|
|
event_dict.pop("destinations", None)
|
|
|
|
|
|
|
|
event_json_bytes = encode_canonical_json(event_dict)
|
2014-12-03 11:07:21 -05:00
|
|
|
|
|
|
|
hashed = hash_algorithm(event_json_bytes)
|
2019-08-30 11:28:26 -04:00
|
|
|
return hashed.name, hashed.digest()
|
2014-10-17 06:40:35 -04:00
|
|
|
|
|
|
|
|
2014-10-31 11:35:39 -04:00
|
|
|
def compute_event_reference_hash(event, hash_algorithm=hashlib.sha256):
|
2019-01-28 11:42:10 -05:00
|
|
|
"""Computes the event reference hash. This is the hash of the redacted
|
|
|
|
event.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
event (FrozenEvent)
|
|
|
|
hash_algorithm: A hasher from `hashlib`, e.g. hashlib.sha256, to use
|
|
|
|
to hash the event
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
tuple[str, bytes]: A tuple of the name of hash and the hash as raw
|
|
|
|
bytes.
|
|
|
|
"""
|
2014-11-10 05:21:32 -05:00
|
|
|
tmp_event = prune_event(event)
|
2019-01-28 11:42:10 -05:00
|
|
|
event_dict = tmp_event.get_pdu_json()
|
|
|
|
event_dict.pop("signatures", None)
|
|
|
|
event_dict.pop("age_ts", None)
|
|
|
|
event_dict.pop("unsigned", None)
|
|
|
|
event_json_bytes = encode_canonical_json(event_dict)
|
2014-10-31 11:35:39 -04:00
|
|
|
hashed = hash_algorithm(event_json_bytes)
|
2019-08-30 11:28:26 -04:00
|
|
|
return hashed.name, hashed.digest()
|
2014-10-31 11:35:39 -04:00
|
|
|
|
|
|
|
|
2019-01-28 11:42:10 -05:00
|
|
|
def compute_event_signature(event_dict, signature_name, signing_key):
|
|
|
|
"""Compute the signature of the event for the given name and key.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
event_dict (dict): The event as a dict
|
|
|
|
signature_name (str): The name of the entity signing the event
|
|
|
|
(typically the server's hostname).
|
|
|
|
signing_key (syutil.crypto.SigningKey): The key to sign with
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
dict[str, dict[str, str]]: Returns a dictionary in the same format of
|
|
|
|
an event's signatures field.
|
|
|
|
"""
|
|
|
|
redact_json = prune_event_dict(event_dict)
|
2014-11-03 12:51:42 -05:00
|
|
|
redact_json.pop("age_ts", None)
|
|
|
|
redact_json.pop("unsigned", None)
|
2014-12-10 05:06:12 -05:00
|
|
|
logger.debug("Signing event: %s", encode_canonical_json(redact_json))
|
2014-10-31 13:08:52 -04:00
|
|
|
redact_json = sign_json(redact_json, signature_name, signing_key)
|
2014-12-10 05:06:12 -05:00
|
|
|
logger.debug("Signed event: %s", encode_canonical_json(redact_json))
|
2014-11-03 12:51:42 -05:00
|
|
|
return redact_json["signatures"]
|
|
|
|
|
|
|
|
|
2019-06-20 05:32:02 -04:00
|
|
|
def add_hashes_and_signatures(
|
|
|
|
event_dict, signature_name, signing_key, hash_algorithm=hashlib.sha256
|
|
|
|
):
|
2019-01-28 11:42:10 -05:00
|
|
|
"""Add content hash and sign the event
|
|
|
|
|
|
|
|
Args:
|
2019-01-25 12:17:38 -05:00
|
|
|
event_dict (dict): The event to add hashes to and sign
|
2019-01-28 11:42:10 -05:00
|
|
|
signature_name (str): The name of the entity signing the event
|
|
|
|
(typically the server's hostname).
|
|
|
|
signing_key (syutil.crypto.SigningKey): The key to sign with
|
|
|
|
hash_algorithm: A hasher from `hashlib`, e.g. hashlib.sha256, to use
|
|
|
|
to hash the event
|
|
|
|
"""
|
|
|
|
|
2019-01-25 12:17:38 -05:00
|
|
|
name, digest = compute_content_hash(event_dict, hash_algorithm=hash_algorithm)
|
2014-10-31 13:08:52 -04:00
|
|
|
|
2019-01-25 12:17:38 -05:00
|
|
|
event_dict.setdefault("hashes", {})[name] = encode_base64(digest)
|
2014-11-03 12:51:42 -05:00
|
|
|
|
2019-01-25 12:17:38 -05:00
|
|
|
event_dict["signatures"] = compute_event_signature(
|
2019-06-20 05:32:02 -04:00
|
|
|
event_dict, signature_name=signature_name, signing_key=signing_key
|
2014-11-03 12:51:42 -05:00
|
|
|
)
|