MatrixSynapse/synapse/rest/key/v2/local_key_resource.py

121 lines
4.2 KiB
Python
Raw Normal View History

2015-04-14 17:04:52 +02:00
# -*- coding: utf-8 -*-
2016-01-07 05:26:29 +01:00
# Copyright 2014-2016 OpenMarket Ltd
2015-04-14 17:04:52 +02: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.
from twisted.web.resource import Resource
from synapse.http.server import respond_with_json_bytes
from signedjson.sign import sign_json
from unpaddedbase64 import encode_base64
from canonicaljson import encode_canonical_json
2015-04-14 17:04:52 +02:00
import logging
logger = logging.getLogger(__name__)
class LocalKey(Resource):
"""HTTP resource containing encoding the TLS X.509 certificate and NACL
signature verification keys for this server::
2015-04-22 15:21:08 +02:00
GET /_matrix/key/v2/server/a.key.id HTTP/1.1
2015-04-14 17:04:52 +02:00
HTTP/1.1 200 OK
Content-Type: application/json
{
"valid_until_ts": # integer posix timestamp when this result expires.
2015-04-14 17:04:52 +02:00
"server_name": "this.server.example.com"
"verify_keys": {
"algorithm:version": {
"key": # base64 encoded NACL verification key.
}
2015-04-14 17:04:52 +02:00
},
"old_verify_keys": {
"algorithm:version": {
"expired_ts": # integer posix timestamp when the key expired.
2015-04-14 17:04:52 +02:00
"key": # base64 encoded NACL verification key.
}
2016-10-12 15:45:13 +02:00
},
"tls_fingerprints": [ # Fingerprints of the TLS certs this server uses.
{
"sha256": # base64 encoded sha256 fingerprint of the X509 cert
},
],
2015-04-14 17:04:52 +02:00
"signatures": {
"this.server.example.com": {
"algorithm:version": # NACL signature for this server
}
}
}
"""
2015-04-22 15:21:08 +02:00
isLeaf = True
2015-04-14 17:04:52 +02:00
def __init__(self, hs):
self.version_string = hs.version_string
self.config = hs.config
self.clock = hs.clock
self.update_response_body(self.clock.time_msec())
Resource.__init__(self)
def update_response_body(self, time_now_msec):
refresh_interval = self.config.key_refresh_interval
self.valid_until_ts = int(time_now_msec + refresh_interval)
2015-04-14 17:04:52 +02:00
self.response_body = encode_canonical_json(self.response_json_object())
def response_json_object(self):
verify_keys = {}
for key in self.config.signing_key:
verify_key_bytes = key.verify_key.encode()
key_id = "%s:%s" % (key.alg, key.version)
2015-04-20 17:23:47 +02:00
verify_keys[key_id] = {
u"key": encode_base64(verify_key_bytes)
}
2015-04-14 17:04:52 +02:00
old_verify_keys = {}
for key in self.config.old_signing_keys:
key_id = "%s:%s" % (key.alg, key.version)
verify_key_bytes = key.encode()
old_verify_keys[key_id] = {
u"key": encode_base64(verify_key_bytes),
u"expired_ts": key.expired,
2015-04-14 17:04:52 +02:00
}
tls_fingerprints = self.config.tls_fingerprints
2015-04-14 17:04:52 +02:00
json_object = {
u"valid_until_ts": self.valid_until_ts,
2015-04-14 17:04:52 +02:00
u"server_name": self.config.server_name,
u"verify_keys": verify_keys,
u"old_verify_keys": old_verify_keys,
u"tls_fingerprints": tls_fingerprints,
2015-04-14 17:04:52 +02:00
}
for key in self.config.signing_key:
json_object = sign_json(
json_object,
self.config.server_name,
key,
)
return json_object
def render_GET(self, request):
time_now = self.clock.time_msec()
# Update the expiry time if less than half the interval remains.
if time_now + self.config.key_refresh_interval / 2 > self.valid_until_ts:
self.update_response_body(time_now)
2015-04-14 17:04:52 +02:00
return respond_with_json_bytes(
request, 200, self.response_body,
version_string=self.version_string
)