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 (
|
|
|
|
RestServlet, parse_json_object_from_request, parse_integer
|
|
|
|
)
|
2015-12-01 12:34:32 -05:00
|
|
|
from ._base import client_v2_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>"
|
|
|
|
},
|
|
|
|
}
|
|
|
|
"""
|
2016-07-26 18:38:12 -04:00
|
|
|
PATTERNS = client_v2_patterns("/keys/upload(/(?P<device_id>[^/]+))?$",
|
2016-07-27 11:41:06 -04:00
|
|
|
releases=())
|
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
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
|
|
|
def on_POST(self, request, device_id):
|
2016-01-11 10:29:57 -05:00
|
|
|
requester = yield self.auth.get_user_by_req(request)
|
|
|
|
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.
|
2016-07-26 18:38:12 -04:00
|
|
|
if (requester.device_id is not None and
|
|
|
|
device_id != requester.device_id):
|
2016-07-27 11:41:06 -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(
|
2016-07-26 18:38:12 -04:00
|
|
|
400,
|
|
|
|
"To upload keys, you must pass device_id when authenticating"
|
|
|
|
)
|
|
|
|
|
2016-09-13 06:35:35 -04:00
|
|
|
result = yield self.e2e_keys_handler.upload_keys_for_user(
|
|
|
|
user_id, device_id, body
|
|
|
|
)
|
|
|
|
defer.returnValue((200, result))
|
2015-07-06 13:47:57 -04:00
|
|
|
|
|
|
|
|
|
|
|
class KeyQueryServlet(RestServlet):
|
|
|
|
"""
|
|
|
|
GET /keys/query/<user_id> HTTP/1.1
|
|
|
|
|
|
|
|
GET /keys/query/<user_id>/<device_id> HTTP/1.1
|
|
|
|
|
|
|
|
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>"
|
|
|
|
} } } } } }
|
|
|
|
"""
|
|
|
|
|
2015-12-01 12:34:32 -05:00
|
|
|
PATTERNS = client_v2_patterns(
|
2015-07-06 13:47:57 -04:00
|
|
|
"/keys/query(?:"
|
|
|
|
"/(?P<user_id>[^/]*)(?:"
|
|
|
|
"/(?P<device_id>[^/]*)"
|
|
|
|
")?"
|
2015-12-01 12:34:32 -05:00
|
|
|
")?",
|
|
|
|
releases=()
|
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
|
|
|
|
def on_POST(self, request, user_id, device_id):
|
|
|
|
yield self.auth.get_user_by_req(request)
|
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)
|
2016-09-13 06:35:35 -04:00
|
|
|
defer.returnValue((200, result))
|
2015-07-06 13:47:57 -04:00
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
|
|
|
def on_GET(self, request, user_id, device_id):
|
2016-01-11 10:29:57 -05:00
|
|
|
requester = yield self.auth.get_user_by_req(request)
|
2016-09-12 13:17:09 -04:00
|
|
|
timeout = parse_integer(request, "timeout", 10 * 1000)
|
2016-01-11 10:29:57 -05:00
|
|
|
auth_user_id = requester.user.to_string()
|
2015-07-23 11:03:38 -04:00
|
|
|
user_id = user_id if user_id else auth_user_id
|
|
|
|
device_ids = [device_id] if device_id else []
|
2016-08-01 13:02:07 -04:00
|
|
|
result = yield self.e2e_keys_handler.query_devices(
|
2016-09-12 13:17:09 -04:00
|
|
|
{"device_keys": {user_id: device_ids}},
|
|
|
|
timeout,
|
2015-07-23 11:03:38 -04:00
|
|
|
)
|
2016-09-13 06:35:35 -04:00
|
|
|
defer.returnValue((200, result))
|
2015-07-23 11:03:38 -04:00
|
|
|
|
2015-07-06 13:47:57 -04:00
|
|
|
|
|
|
|
class OneTimeKeyServlet(RestServlet):
|
|
|
|
"""
|
2015-07-14 08:08:33 -04:00
|
|
|
GET /keys/claim/<user-id>/<device-id>/<algorithm> HTTP/1.1
|
2015-07-06 13:47:57 -04:00
|
|
|
|
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>"
|
|
|
|
} } } }
|
|
|
|
|
|
|
|
"""
|
2015-12-01 12:34:32 -05:00
|
|
|
PATTERNS = client_v2_patterns(
|
2015-07-14 08:08:33 -04:00
|
|
|
"/keys/claim(?:/?|(?:/"
|
2015-07-06 13:47:57 -04:00
|
|
|
"(?P<user_id>[^/]*)/(?P<device_id>[^/]*)/(?P<algorithm>[^/]*)"
|
2015-12-01 12:34:32 -05:00
|
|
|
")?)",
|
|
|
|
releases=()
|
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
|
|
|
|
def on_GET(self, request, user_id, device_id, algorithm):
|
|
|
|
yield self.auth.get_user_by_req(request)
|
2016-09-12 13:17:09 -04:00
|
|
|
timeout = parse_integer(request, "timeout", 10 * 1000)
|
2016-09-13 06:35:35 -04:00
|
|
|
result = yield self.e2e_keys_handler.claim_one_time_keys(
|
2016-09-12 13:17:09 -04:00
|
|
|
{"one_time_keys": {user_id: {device_id: algorithm}}},
|
|
|
|
timeout,
|
2015-07-06 13:47:57 -04:00
|
|
|
)
|
2016-09-13 06:35:35 -04:00
|
|
|
defer.returnValue((200, result))
|
2015-07-06 13:47:57 -04:00
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
|
|
|
def on_POST(self, request, user_id, device_id, algorithm):
|
|
|
|
yield self.auth.get_user_by_req(request)
|
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-13 06:35:35 -04:00
|
|
|
result = yield self.e2e_keys_handler.claim_one_time_keys(
|
|
|
|
body,
|
|
|
|
timeout,
|
|
|
|
)
|
|
|
|
defer.returnValue((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)
|
|
|
|
OneTimeKeyServlet(hs).register(http_server)
|