2015-07-06 13:47:57 -04:00
|
|
|
# -*- coding: utf-8 -*-
|
2016-01-06 23:26:29 -05:00
|
|
|
# Copyright 2015, 2016 OpenMarket Ltd
|
2015-07-06 13:47:57 -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.
|
|
|
|
|
2016-07-26 11:46:53 -04:00
|
|
|
import logging
|
|
|
|
|
2015-07-06 13:47:57 -04:00
|
|
|
from twisted.internet import defer
|
|
|
|
|
2016-09-13 06:35:35 -04:00
|
|
|
from synapse.api.errors import SynapseError
|
2016-09-12 13:17:09 -04:00
|
|
|
from synapse.http.servlet import (
|
2018-07-09 02:09:20 -04:00
|
|
|
RestServlet,
|
|
|
|
parse_integer,
|
|
|
|
parse_json_object_from_request,
|
|
|
|
parse_string,
|
2016-09-12 13:17:09 -04:00
|
|
|
)
|
2019-09-03 05:21:30 -04:00
|
|
|
from synapse.logging.opentracing import log_kv, set_tag, trace
|
2017-02-01 05:30:03 -05:00
|
|
|
from synapse.types import StreamToken
|
2018-07-09 02:09:20 -04:00
|
|
|
|
2019-06-03 07:28:59 -04:00
|
|
|
from ._base import client_patterns
|
2015-07-06 13:47:57 -04:00
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
|
|
|
class KeyUploadServlet(RestServlet):
|
|
|
|
"""
|
2016-07-26 18:38:12 -04:00
|
|
|
POST /keys/upload HTTP/1.1
|
2015-07-06 13:47:57 -04:00
|
|
|
Content-Type: application/json
|
|
|
|
|
|
|
|
{
|
|
|
|
"device_keys": {
|
|
|
|
"user_id": "<user_id>",
|
|
|
|
"device_id": "<device_id>",
|
|
|
|
"valid_until_ts": <millisecond_timestamp>,
|
|
|
|
"algorithms": [
|
|
|
|
"m.olm.curve25519-aes-sha256",
|
|
|
|
]
|
|
|
|
"keys": {
|
2015-07-10 08:26:18 -04:00
|
|
|
"<algorithm>:<device_id>": "<key_base64>",
|
2015-07-06 13:47:57 -04:00
|
|
|
},
|
|
|
|
"signatures:" {
|
2015-07-10 08:26:18 -04:00
|
|
|
"<user_id>" {
|
|
|
|
"<algorithm>:<device_id>": "<signature_base64>"
|
2015-07-06 13:47:57 -04:00
|
|
|
} } },
|
|
|
|
"one_time_keys": {
|
|
|
|
"<algorithm>:<key_id>": "<key_base64>"
|
|
|
|
},
|
|
|
|
}
|
|
|
|
"""
|
2019-06-20 05:32:02 -04:00
|
|
|
|
2019-06-03 07:28:59 -04:00
|
|
|
PATTERNS = client_patterns("/keys/upload(/(?P<device_id>[^/]+))?$")
|
2015-07-06 13:47:57 -04:00
|
|
|
|
|
|
|
def __init__(self, hs):
|
2016-07-26 18:38:12 -04:00
|
|
|
"""
|
|
|
|
Args:
|
|
|
|
hs (synapse.server.HomeServer): server
|
|
|
|
"""
|
2015-07-06 13:47:57 -04:00
|
|
|
super(KeyUploadServlet, self).__init__()
|
|
|
|
self.auth = hs.get_auth()
|
2016-09-13 06:35:35 -04:00
|
|
|
self.e2e_keys_handler = hs.get_e2e_keys_handler()
|
2015-07-06 13:47:57 -04:00
|
|
|
|
2019-09-03 05:21:30 -04:00
|
|
|
@trace(opname="upload_keys")
|
2015-07-06 13:47:57 -04:00
|
|
|
@defer.inlineCallbacks
|
|
|
|
def on_POST(self, request, device_id):
|
2016-11-25 10:26:34 -05:00
|
|
|
requester = yield self.auth.get_user_by_req(request, allow_guest=True)
|
2016-01-11 10:29:57 -05:00
|
|
|
user_id = requester.user.to_string()
|
2016-03-11 11:41:03 -05:00
|
|
|
body = parse_json_object_from_request(request)
|
|
|
|
|
2016-07-26 18:38:12 -04:00
|
|
|
if device_id is not None:
|
|
|
|
# passing the device_id here is deprecated; however, we allow it
|
2016-07-27 11:41:06 -04:00
|
|
|
# for now for compatibility with older clients.
|
2019-06-20 05:32:02 -04:00
|
|
|
if requester.device_id is not None and device_id != requester.device_id:
|
2019-08-22 06:28:12 -04:00
|
|
|
set_tag("error", True)
|
|
|
|
log_kv(
|
|
|
|
{
|
|
|
|
"message": "Client uploading keys for a different device",
|
|
|
|
"logged_in_id": requester.device_id,
|
|
|
|
"key_being_uploaded": device_id,
|
|
|
|
}
|
|
|
|
)
|
2019-06-20 05:32:02 -04:00
|
|
|
logger.warning(
|
|
|
|
"Client uploading keys for a different device "
|
|
|
|
"(logged in as %s, uploading for %s)",
|
|
|
|
requester.device_id,
|
|
|
|
device_id,
|
|
|
|
)
|
2016-07-26 18:38:12 -04:00
|
|
|
else:
|
|
|
|
device_id = requester.device_id
|
|
|
|
|
|
|
|
if device_id is None:
|
2016-09-12 13:17:09 -04:00
|
|
|
raise SynapseError(
|
2019-06-20 05:32:02 -04:00
|
|
|
400, "To upload keys, you must pass device_id when authenticating"
|
2016-07-26 18:38:12 -04:00
|
|
|
)
|
|
|
|
|
2016-09-13 06:35:35 -04:00
|
|
|
result = yield self.e2e_keys_handler.upload_keys_for_user(
|
|
|
|
user_id, device_id, body
|
|
|
|
)
|
2019-08-30 11:28:26 -04:00
|
|
|
return 200, result
|
2015-07-06 13:47:57 -04:00
|
|
|
|
|
|
|
|
|
|
|
class KeyQueryServlet(RestServlet):
|
|
|
|
"""
|
|
|
|
POST /keys/query HTTP/1.1
|
|
|
|
Content-Type: application/json
|
|
|
|
{
|
|
|
|
"device_keys": {
|
|
|
|
"<user_id>": ["<device_id>"]
|
|
|
|
} }
|
|
|
|
|
|
|
|
HTTP/1.1 200 OK
|
|
|
|
{
|
|
|
|
"device_keys": {
|
|
|
|
"<user_id>": {
|
|
|
|
"<device_id>": {
|
|
|
|
"user_id": "<user_id>", // Duplicated to be signed
|
|
|
|
"device_id": "<device_id>", // Duplicated to be signed
|
|
|
|
"valid_until_ts": <millisecond_timestamp>,
|
|
|
|
"algorithms": [ // List of supported algorithms
|
|
|
|
"m.olm.curve25519-aes-sha256",
|
|
|
|
],
|
|
|
|
"keys": { // Must include a ed25519 signing key
|
|
|
|
"<algorithm>:<key_id>": "<key_base64>",
|
|
|
|
},
|
|
|
|
"signatures:" {
|
|
|
|
// Must be signed with device's ed25519 key
|
|
|
|
"<user_id>/<device_id>": {
|
|
|
|
"<algorithm>:<key_id>": "<signature_base64>"
|
|
|
|
}
|
|
|
|
// Must be signed by this server.
|
|
|
|
"<server_name>": {
|
|
|
|
"<algorithm>:<key_id>": "<signature_base64>"
|
|
|
|
} } } } } }
|
|
|
|
"""
|
|
|
|
|
2019-06-03 07:28:59 -04:00
|
|
|
PATTERNS = client_patterns("/keys/query$")
|
2015-07-06 13:47:57 -04:00
|
|
|
|
|
|
|
def __init__(self, hs):
|
2016-08-01 13:02:07 -04:00
|
|
|
"""
|
|
|
|
Args:
|
|
|
|
hs (synapse.server.HomeServer):
|
|
|
|
"""
|
2015-07-06 13:47:57 -04:00
|
|
|
super(KeyQueryServlet, self).__init__()
|
|
|
|
self.auth = hs.get_auth()
|
2016-08-01 13:02:07 -04:00
|
|
|
self.e2e_keys_handler = hs.get_e2e_keys_handler()
|
2015-07-06 13:47:57 -04:00
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
2016-12-12 04:41:23 -05:00
|
|
|
def on_POST(self, request):
|
2016-11-25 10:26:34 -05:00
|
|
|
yield self.auth.get_user_by_req(request, allow_guest=True)
|
2016-09-12 13:17:09 -04:00
|
|
|
timeout = parse_integer(request, "timeout", 10 * 1000)
|
2016-03-11 11:41:03 -05:00
|
|
|
body = parse_json_object_from_request(request)
|
2016-09-12 13:17:09 -04:00
|
|
|
result = yield self.e2e_keys_handler.query_devices(body, timeout)
|
2019-08-30 11:28:26 -04:00
|
|
|
return 200, result
|
2015-07-06 13:47:57 -04:00
|
|
|
|
|
|
|
|
2017-02-01 05:30:03 -05:00
|
|
|
class KeyChangesServlet(RestServlet):
|
2017-02-01 05:32:49 -05:00
|
|
|
"""Returns the list of changes of keys between two stream tokens (may return
|
2017-02-01 08:17:17 -05:00
|
|
|
spurious extra results, since we currently ignore the `to` param).
|
2017-02-01 05:32:49 -05:00
|
|
|
|
|
|
|
GET /keys/changes?from=...&to=...
|
|
|
|
|
|
|
|
200 OK
|
|
|
|
{ "changed": ["@foo:example.com"] }
|
|
|
|
"""
|
2019-06-20 05:32:02 -04:00
|
|
|
|
2019-06-03 07:28:59 -04:00
|
|
|
PATTERNS = client_patterns("/keys/changes$")
|
2017-02-01 05:30:03 -05:00
|
|
|
|
|
|
|
def __init__(self, hs):
|
|
|
|
"""
|
|
|
|
Args:
|
|
|
|
hs (synapse.server.HomeServer):
|
|
|
|
"""
|
|
|
|
super(KeyChangesServlet, self).__init__()
|
|
|
|
self.auth = hs.get_auth()
|
|
|
|
self.device_handler = hs.get_device_handler()
|
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
|
|
|
def on_GET(self, request):
|
|
|
|
requester = yield self.auth.get_user_by_req(request, allow_guest=True)
|
|
|
|
|
|
|
|
from_token_string = parse_string(request, "from")
|
2019-08-22 06:28:12 -04:00
|
|
|
set_tag("from", from_token_string)
|
2017-02-01 05:32:49 -05:00
|
|
|
|
|
|
|
# We want to enforce they do pass us one, but we ignore it and return
|
|
|
|
# changes after the "to" as well as before.
|
2019-08-22 06:28:12 -04:00
|
|
|
set_tag("to", parse_string(request, "to"))
|
2017-02-01 05:30:03 -05:00
|
|
|
|
|
|
|
from_token = StreamToken.from_string(from_token_string)
|
|
|
|
|
|
|
|
user_id = requester.user.to_string()
|
|
|
|
|
2019-06-20 05:32:02 -04:00
|
|
|
results = yield self.device_handler.get_user_ids_changed(user_id, from_token)
|
2017-02-01 05:30:03 -05:00
|
|
|
|
2019-08-30 11:28:26 -04:00
|
|
|
return 200, results
|
2017-02-01 05:30:03 -05:00
|
|
|
|
|
|
|
|
2015-07-06 13:47:57 -04:00
|
|
|
class OneTimeKeyServlet(RestServlet):
|
|
|
|
"""
|
2015-07-14 08:08:33 -04:00
|
|
|
POST /keys/claim HTTP/1.1
|
2015-07-06 13:47:57 -04:00
|
|
|
{
|
|
|
|
"one_time_keys": {
|
|
|
|
"<user_id>": {
|
|
|
|
"<device_id>": "<algorithm>"
|
|
|
|
} } }
|
|
|
|
|
|
|
|
HTTP/1.1 200 OK
|
|
|
|
{
|
|
|
|
"one_time_keys": {
|
|
|
|
"<user_id>": {
|
|
|
|
"<device_id>": {
|
|
|
|
"<algorithm>:<key_id>": "<key_base64>"
|
|
|
|
} } } }
|
|
|
|
|
|
|
|
"""
|
2019-06-20 05:32:02 -04:00
|
|
|
|
2019-06-03 07:28:59 -04:00
|
|
|
PATTERNS = client_patterns("/keys/claim$")
|
2015-07-06 13:47:57 -04:00
|
|
|
|
|
|
|
def __init__(self, hs):
|
|
|
|
super(OneTimeKeyServlet, self).__init__()
|
|
|
|
self.auth = hs.get_auth()
|
2016-09-13 06:35:35 -04:00
|
|
|
self.e2e_keys_handler = hs.get_e2e_keys_handler()
|
2015-07-06 13:47:57 -04:00
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
2016-12-12 04:41:23 -05:00
|
|
|
def on_POST(self, request):
|
2016-11-25 10:26:34 -05:00
|
|
|
yield self.auth.get_user_by_req(request, allow_guest=True)
|
2016-09-12 13:17:09 -04:00
|
|
|
timeout = parse_integer(request, "timeout", 10 * 1000)
|
2016-03-11 11:41:03 -05:00
|
|
|
body = parse_json_object_from_request(request)
|
2019-06-20 05:32:02 -04:00
|
|
|
result = yield self.e2e_keys_handler.claim_one_time_keys(body, timeout)
|
2019-08-30 11:28:26 -04:00
|
|
|
return 200, result
|
2015-07-06 13:47:57 -04:00
|
|
|
|
|
|
|
|
|
|
|
def register_servlets(hs, http_server):
|
|
|
|
KeyUploadServlet(hs).register(http_server)
|
|
|
|
KeyQueryServlet(hs).register(http_server)
|
2017-02-01 05:30:03 -05:00
|
|
|
KeyChangesServlet(hs).register(http_server)
|
2015-07-06 13:47:57 -04:00
|
|
|
OneTimeKeyServlet(hs).register(http_server)
|