2014-08-12 10:10:52 -04:00
|
|
|
# -*- coding: utf-8 -*-
|
2016-01-05 13:01:18 -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
|
|
|
|
2016-07-26 11:46:53 -04:00
|
|
|
import logging
|
|
|
|
|
|
|
|
import pymacaroons
|
2015-10-22 06:44:31 -04:00
|
|
|
from canonicaljson import encode_canonical_json
|
2015-10-16 12:45:48 -04:00
|
|
|
from signedjson.key import decode_verify_key_bytes
|
|
|
|
from signedjson.sign import verify_signed_json, SignatureVerifyException
|
2014-08-12 10:10:52 -04:00
|
|
|
from twisted.internet import defer
|
2016-07-26 11:46:53 -04:00
|
|
|
from unpaddedbase64 import decode_base64
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2016-07-26 11:46:53 -04:00
|
|
|
import synapse.types
|
2014-12-12 11:31:50 -05:00
|
|
|
from synapse.api.constants import EventTypes, Membership, JoinRules
|
2015-10-22 06:44:31 -04:00
|
|
|
from synapse.api.errors import AuthError, Codes, SynapseError, EventSizeError
|
2016-07-26 11:46:53 -04:00
|
|
|
from synapse.types import UserID, get_domain_from_id
|
2016-02-04 05:22:44 -05:00
|
|
|
from synapse.util.logcontext import preserve_context_over_fn
|
2016-07-26 11:46:53 -04:00
|
|
|
from synapse.util.logutils import log_function
|
2016-04-13 06:15:59 -04:00
|
|
|
from synapse.util.metrics import Measure
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
2015-03-15 20:18:08 -04:00
|
|
|
AuthEventTypes = (
|
|
|
|
EventTypes.Create, EventTypes.Member, EventTypes.PowerLevels,
|
2015-07-03 05:31:17 -04:00
|
|
|
EventTypes.JoinRules, EventTypes.RoomHistoryVisibility,
|
2015-10-01 12:49:52 -04:00
|
|
|
EventTypes.ThirdPartyInvite,
|
2015-03-15 20:18:08 -04:00
|
|
|
)
|
|
|
|
|
2016-11-25 10:25:30 -05:00
|
|
|
# guests always get this device id.
|
|
|
|
GUEST_DEVICE_ID = "guest_device"
|
|
|
|
|
2015-03-15 20:18:08 -04:00
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
class Auth(object):
|
2016-06-01 12:40:52 -04:00
|
|
|
"""
|
|
|
|
FIXME: This class contains a mix of functions for authenticating users
|
|
|
|
of our client-server API and authenticating events added to room graphs.
|
|
|
|
"""
|
2014-08-12 10:10:52 -04:00
|
|
|
def __init__(self, hs):
|
|
|
|
self.hs = hs
|
2016-04-13 06:15:59 -04:00
|
|
|
self.clock = hs.get_clock()
|
2014-08-12 10:10:52 -04:00
|
|
|
self.store = hs.get_datastore()
|
2014-11-12 06:22:51 -05:00
|
|
|
self.state = hs.get_state_handler()
|
2015-03-24 13:24:15 -04:00
|
|
|
self.TOKEN_NOT_FOUND_HTTP_STATUS = 401
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2016-08-25 12:32:22 -04:00
|
|
|
@defer.inlineCallbacks
|
|
|
|
def check_from_context(self, event, context, do_sig_check=True):
|
|
|
|
auth_events_ids = yield self.compute_auth_events(
|
2016-08-31 08:55:02 -04:00
|
|
|
event, context.prev_state_ids, for_verification=True,
|
2016-08-25 12:32:22 -04:00
|
|
|
)
|
|
|
|
auth_events = yield self.store.get_events(auth_events_ids)
|
|
|
|
auth_events = {
|
|
|
|
(e.type, e.state_key): e for e in auth_events.values()
|
|
|
|
}
|
2016-09-22 05:56:53 -04:00
|
|
|
self.check(event, auth_events=auth_events, do_sig_check=do_sig_check)
|
2016-08-25 12:32:22 -04:00
|
|
|
|
2016-07-14 11:49:37 -04:00
|
|
|
def check(self, event, auth_events, do_sig_check=True):
|
2014-08-12 10:10:52 -04:00
|
|
|
""" Checks if this event is correctly authed.
|
|
|
|
|
2015-08-11 11:35:28 -04:00
|
|
|
Args:
|
|
|
|
event: the event being checked.
|
|
|
|
auth_events (dict: event-key -> event): the existing room state.
|
|
|
|
|
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
Returns:
|
|
|
|
True if the auth checks pass.
|
|
|
|
"""
|
2016-04-13 06:15:59 -04:00
|
|
|
with Measure(self.clock, "auth.check"):
|
|
|
|
self.check_size_limits(event)
|
2016-04-13 06:11:46 -04:00
|
|
|
|
2016-04-13 06:15:59 -04:00
|
|
|
if not hasattr(event, "room_id"):
|
|
|
|
raise AuthError(500, "Event has no room_id: %s" % event)
|
2016-07-14 11:49:37 -04:00
|
|
|
|
2016-09-22 06:08:12 -04:00
|
|
|
if do_sig_check:
|
|
|
|
sender_domain = get_domain_from_id(event.sender)
|
|
|
|
event_id_domain = get_domain_from_id(event.event_id)
|
|
|
|
|
|
|
|
is_invite_via_3pid = (
|
|
|
|
event.type == EventTypes.Member
|
|
|
|
and event.membership == Membership.INVITE
|
|
|
|
and "third_party_invite" in event.content
|
|
|
|
)
|
|
|
|
|
|
|
|
# Check the sender's domain has signed the event
|
|
|
|
if not event.signatures.get(sender_domain):
|
2016-09-22 07:54:22 -04:00
|
|
|
# We allow invites via 3pid to have a sender from a different
|
2016-09-22 06:59:46 -04:00
|
|
|
# HS, as the sender must match the sender of the original
|
2016-09-22 07:54:22 -04:00
|
|
|
# 3pid invite. This is checked further down with the
|
|
|
|
# other dedicated membership checks.
|
2016-09-22 06:08:12 -04:00
|
|
|
if not is_invite_via_3pid:
|
|
|
|
raise AuthError(403, "Event not signed by sender's server")
|
|
|
|
|
|
|
|
# Check the event_id's domain has signed the event
|
|
|
|
if not event.signatures.get(event_id_domain):
|
|
|
|
raise AuthError(403, "Event not signed by sending server")
|
2016-07-14 11:49:37 -04:00
|
|
|
|
2016-04-13 06:15:59 -04:00
|
|
|
if auth_events is None:
|
|
|
|
# Oh, we don't know what the state of the room was, so we
|
|
|
|
# are trusting that this is allowed (at least for now)
|
|
|
|
logger.warn("Trusting event: %s", event.event_id)
|
|
|
|
return True
|
|
|
|
|
|
|
|
if event.type == EventTypes.Create:
|
2016-07-13 08:07:19 -04:00
|
|
|
room_id_domain = get_domain_from_id(event.room_id)
|
|
|
|
if room_id_domain != sender_domain:
|
|
|
|
raise AuthError(
|
|
|
|
403,
|
|
|
|
"Creation event's room_id domain does not match sender's"
|
|
|
|
)
|
2016-04-13 06:15:59 -04:00
|
|
|
# FIXME
|
|
|
|
return True
|
2015-09-01 10:15:19 -04:00
|
|
|
|
2016-04-13 06:15:59 -04:00
|
|
|
creation_event = auth_events.get((EventTypes.Create, ""), None)
|
2014-12-12 05:42:27 -05:00
|
|
|
|
2016-04-13 06:15:59 -04:00
|
|
|
if not creation_event:
|
|
|
|
raise SynapseError(
|
|
|
|
403,
|
|
|
|
"Room %r does not exist" % (event.room_id,)
|
|
|
|
)
|
2016-04-13 06:11:46 -04:00
|
|
|
|
2016-05-16 14:17:03 -04:00
|
|
|
creating_domain = get_domain_from_id(event.room_id)
|
|
|
|
originating_domain = get_domain_from_id(event.sender)
|
2016-04-13 06:15:59 -04:00
|
|
|
if creating_domain != originating_domain:
|
|
|
|
if not self.can_federate(event, auth_events):
|
|
|
|
raise AuthError(
|
|
|
|
403,
|
|
|
|
"This room has been marked as unfederatable."
|
|
|
|
)
|
|
|
|
|
|
|
|
# FIXME: Temp hack
|
|
|
|
if event.type == EventTypes.Aliases:
|
2016-07-15 13:58:25 -04:00
|
|
|
if not event.is_state():
|
|
|
|
raise AuthError(
|
|
|
|
403,
|
|
|
|
"Alias event must be a state event",
|
|
|
|
)
|
2016-07-13 08:12:25 -04:00
|
|
|
if not event.state_key:
|
|
|
|
raise AuthError(
|
|
|
|
403,
|
|
|
|
"Alias event must have non-empty state_key"
|
|
|
|
)
|
|
|
|
sender_domain = get_domain_from_id(event.sender)
|
|
|
|
if event.state_key != sender_domain:
|
|
|
|
raise AuthError(
|
|
|
|
403,
|
|
|
|
"Alias event's state_key does not match sender's domain"
|
|
|
|
)
|
2016-04-13 06:15:59 -04:00
|
|
|
return True
|
|
|
|
|
|
|
|
logger.debug(
|
|
|
|
"Auth events: %s",
|
|
|
|
[a.event_id for a in auth_events.values()]
|
2014-11-10 13:24:43 -05:00
|
|
|
)
|
2016-04-13 06:11:46 -04:00
|
|
|
|
2016-04-13 06:15:59 -04:00
|
|
|
if event.type == EventTypes.Member:
|
|
|
|
allowed = self.is_membership_change_allowed(
|
|
|
|
event, auth_events
|
|
|
|
)
|
|
|
|
if allowed:
|
|
|
|
logger.debug("Allowing! %s", event)
|
|
|
|
else:
|
|
|
|
logger.debug("Denying! %s", event)
|
|
|
|
return allowed
|
|
|
|
|
|
|
|
self.check_event_sender_in_room(event, auth_events)
|
2016-06-01 17:13:47 -04:00
|
|
|
|
|
|
|
# Special case to allow m.room.third_party_invite events wherever
|
|
|
|
# a user is allowed to issue invites. Fixes
|
|
|
|
# https://github.com/vector-im/vector-web/issues/1208 hopefully
|
|
|
|
if event.type == EventTypes.ThirdPartyInvite:
|
|
|
|
user_level = self._get_user_power_level(event.user_id, auth_events)
|
|
|
|
invite_level = self._get_named_level(auth_events, "invite", 0)
|
|
|
|
|
|
|
|
if user_level < invite_level:
|
|
|
|
raise AuthError(
|
|
|
|
403, (
|
|
|
|
"You cannot issue a third party invite for %s." %
|
|
|
|
(event.content.display_name,)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
return True
|
|
|
|
|
2016-04-13 06:15:59 -04:00
|
|
|
self._can_send_event(event, auth_events)
|
2016-04-13 06:11:46 -04:00
|
|
|
|
2016-04-13 06:15:59 -04:00
|
|
|
if event.type == EventTypes.PowerLevels:
|
|
|
|
self._check_power_levels(event, auth_events)
|
2016-04-13 06:11:46 -04:00
|
|
|
|
2016-04-13 06:15:59 -04:00
|
|
|
if event.type == EventTypes.Redaction:
|
|
|
|
self.check_redaction(event, auth_events)
|
2016-04-13 06:11:46 -04:00
|
|
|
|
2016-04-13 06:15:59 -04:00
|
|
|
logger.debug("Allowing! %s", event)
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2015-10-22 06:44:31 -04:00
|
|
|
def check_size_limits(self, event):
|
|
|
|
def too_big(field):
|
|
|
|
raise EventSizeError("%s too large" % (field,))
|
|
|
|
|
|
|
|
if len(event.user_id) > 255:
|
|
|
|
too_big("user_id")
|
|
|
|
if len(event.room_id) > 255:
|
|
|
|
too_big("room_id")
|
|
|
|
if event.is_state() and len(event.state_key) > 255:
|
|
|
|
too_big("state_key")
|
|
|
|
if len(event.type) > 255:
|
|
|
|
too_big("type")
|
|
|
|
if len(event.event_id) > 255:
|
|
|
|
too_big("event_id")
|
|
|
|
if len(encode_canonical_json(event.get_pdu_json())) > 65536:
|
|
|
|
too_big("event")
|
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
@defer.inlineCallbacks
|
2015-02-09 12:41:29 -05:00
|
|
|
def check_joined_room(self, room_id, user_id, current_state=None):
|
2015-09-09 08:25:22 -04:00
|
|
|
"""Check if the user is currently joined in the room
|
|
|
|
Args:
|
|
|
|
room_id(str): The room to check.
|
|
|
|
user_id(str): The user to check.
|
|
|
|
current_state(dict): Optional map of the current state of the room.
|
|
|
|
If provided then that map is used to check whether they are a
|
|
|
|
member of the room. Otherwise the current membership is
|
|
|
|
loaded from the database.
|
|
|
|
Raises:
|
|
|
|
AuthError if the user is not in the room.
|
|
|
|
Returns:
|
|
|
|
A deferred membership event for the user if the user is in
|
|
|
|
the room.
|
|
|
|
"""
|
2015-02-09 12:41:29 -05:00
|
|
|
if current_state:
|
|
|
|
member = current_state.get(
|
|
|
|
(EventTypes.Member, user_id),
|
|
|
|
None
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
member = yield self.state.get_current_state(
|
|
|
|
room_id=room_id,
|
|
|
|
event_type=EventTypes.Member,
|
|
|
|
state_key=user_id
|
|
|
|
)
|
|
|
|
|
2014-11-25 06:31:18 -05:00
|
|
|
self._check_joined_room(member, user_id, room_id)
|
|
|
|
defer.returnValue(member)
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2015-09-09 08:25:22 -04:00
|
|
|
@defer.inlineCallbacks
|
2015-11-04 12:29:07 -05:00
|
|
|
def check_user_was_in_room(self, room_id, user_id):
|
2015-09-09 08:25:22 -04:00
|
|
|
"""Check if the user was in the room at some point.
|
|
|
|
Args:
|
|
|
|
room_id(str): The room to check.
|
|
|
|
user_id(str): The user to check.
|
|
|
|
Raises:
|
|
|
|
AuthError if the user was never in the room.
|
|
|
|
Returns:
|
2015-09-21 08:47:44 -04:00
|
|
|
A deferred membership event for the user if the user was in the
|
|
|
|
room. This will be the join event if they are currently joined to
|
|
|
|
the room. This will be the leave event if they have left the room.
|
2015-09-09 08:25:22 -04:00
|
|
|
"""
|
2015-11-04 12:29:07 -05:00
|
|
|
member = yield self.state.get_current_state(
|
|
|
|
room_id=room_id,
|
|
|
|
event_type=EventTypes.Member,
|
|
|
|
state_key=user_id
|
|
|
|
)
|
2015-09-09 09:12:24 -04:00
|
|
|
membership = member.membership if member else None
|
2015-09-09 08:25:22 -04:00
|
|
|
|
2015-09-09 09:12:24 -04:00
|
|
|
if membership not in (Membership.JOIN, Membership.LEAVE):
|
2015-09-09 08:25:22 -04:00
|
|
|
raise AuthError(403, "User %s not in room %s" % (
|
|
|
|
user_id, room_id
|
|
|
|
))
|
|
|
|
|
2015-11-17 17:17:30 -05:00
|
|
|
if membership == Membership.LEAVE:
|
|
|
|
forgot = yield self.store.did_forget(user_id, room_id)
|
|
|
|
if forgot:
|
|
|
|
raise AuthError(403, "User %s not in room %s" % (
|
|
|
|
user_id, room_id
|
|
|
|
))
|
|
|
|
|
2015-09-09 08:25:22 -04:00
|
|
|
defer.returnValue(member)
|
|
|
|
|
2014-11-10 06:59:51 -05:00
|
|
|
@defer.inlineCallbacks
|
2015-01-07 11:09:00 -05:00
|
|
|
def check_host_in_room(self, room_id, host):
|
2016-08-26 05:47:00 -04:00
|
|
|
with Measure(self.clock, "check_host_in_room"):
|
2016-08-26 05:59:40 -04:00
|
|
|
latest_event_ids = yield self.store.get_latest_event_ids_in_room(room_id)
|
|
|
|
|
2016-08-31 10:53:19 -04:00
|
|
|
entry = yield self.state.resolve_state_groups(
|
2016-08-26 05:59:40 -04:00
|
|
|
room_id, latest_event_ids
|
|
|
|
)
|
|
|
|
|
2016-08-31 10:53:19 -04:00
|
|
|
ret = yield self.store.is_host_joined(
|
|
|
|
room_id, host, entry.state_group, entry.state
|
|
|
|
)
|
2016-08-26 05:59:40 -04:00
|
|
|
defer.returnValue(ret)
|
2014-11-10 06:59:51 -05:00
|
|
|
|
2014-11-25 06:31:18 -05:00
|
|
|
def check_event_sender_in_room(self, event, auth_events):
|
2014-12-12 11:31:50 -05:00
|
|
|
key = (EventTypes.Member, event.user_id, )
|
2014-11-25 06:31:18 -05:00
|
|
|
member_event = auth_events.get(key)
|
2014-10-15 11:06:59 -04:00
|
|
|
|
|
|
|
return self._check_joined_room(
|
|
|
|
member_event,
|
|
|
|
event.user_id,
|
|
|
|
event.room_id
|
|
|
|
)
|
|
|
|
|
2014-08-22 12:00:10 -04:00
|
|
|
def _check_joined_room(self, member, user_id, room_id):
|
|
|
|
if not member or member.membership != Membership.JOIN:
|
2014-08-27 10:31:04 -04:00
|
|
|
raise AuthError(403, "User %s not in room %s (%s)" % (
|
|
|
|
user_id, room_id, repr(member)
|
|
|
|
))
|
2014-08-22 12:00:10 -04:00
|
|
|
|
2015-09-01 10:09:23 -04:00
|
|
|
def can_federate(self, event, auth_events):
|
|
|
|
creation_event = auth_events.get((EventTypes.Create, ""))
|
|
|
|
|
|
|
|
return creation_event.content.get("m.federate", True) is True
|
|
|
|
|
2014-10-17 14:37:41 -04:00
|
|
|
@log_function
|
2014-11-25 06:31:18 -05:00
|
|
|
def is_membership_change_allowed(self, event, auth_events):
|
2014-11-18 10:36:36 -05:00
|
|
|
membership = event.content["membership"]
|
|
|
|
|
|
|
|
# Check if this is the room creator joining:
|
|
|
|
if len(event.prev_events) == 1 and Membership.JOIN == membership:
|
|
|
|
# Get room creation event:
|
2014-12-12 11:31:50 -05:00
|
|
|
key = (EventTypes.Create, "", )
|
2014-11-25 06:31:18 -05:00
|
|
|
create = auth_events.get(key)
|
2014-11-24 08:47:58 -05:00
|
|
|
if create and event.prev_events[0][0] == create.event_id:
|
2014-11-18 10:36:36 -05:00
|
|
|
if create.content["creator"] == event.state_key:
|
|
|
|
return True
|
|
|
|
|
2014-08-26 04:26:07 -04:00
|
|
|
target_user_id = event.state_key
|
|
|
|
|
2016-05-16 14:17:03 -04:00
|
|
|
creating_domain = get_domain_from_id(event.room_id)
|
|
|
|
target_domain = get_domain_from_id(target_user_id)
|
2015-09-01 11:17:25 -04:00
|
|
|
if creating_domain != target_domain:
|
|
|
|
if not self.can_federate(event, auth_events):
|
|
|
|
raise AuthError(
|
|
|
|
403,
|
|
|
|
"This room has been marked as unfederatable."
|
|
|
|
)
|
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
# get info about the caller
|
2014-12-12 11:31:50 -05:00
|
|
|
key = (EventTypes.Member, event.user_id, )
|
2014-11-25 06:31:18 -05:00
|
|
|
caller = auth_events.get(key)
|
2014-10-15 11:06:59 -04:00
|
|
|
|
2014-11-10 05:35:43 -05:00
|
|
|
caller_in_room = caller and caller.membership == Membership.JOIN
|
|
|
|
caller_invited = caller and caller.membership == Membership.INVITE
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
# get info about the target
|
2014-12-12 11:31:50 -05:00
|
|
|
key = (EventTypes.Member, target_user_id, )
|
2014-11-25 06:31:18 -05:00
|
|
|
target = auth_events.get(key)
|
2014-10-15 11:06:59 -04:00
|
|
|
|
2014-11-10 05:35:43 -05:00
|
|
|
target_in_room = target and target.membership == Membership.JOIN
|
2015-03-15 20:17:25 -04:00
|
|
|
target_banned = target and target.membership == Membership.BAN
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2014-12-12 11:31:50 -05:00
|
|
|
key = (EventTypes.JoinRules, "", )
|
2014-11-25 06:31:18 -05:00
|
|
|
join_rule_event = auth_events.get(key)
|
2014-10-15 11:06:59 -04:00
|
|
|
if join_rule_event:
|
|
|
|
join_rule = join_rule_event.content.get(
|
|
|
|
"join_rule", JoinRules.INVITE
|
|
|
|
)
|
|
|
|
else:
|
2014-09-01 08:44:19 -04:00
|
|
|
join_rule = JoinRules.INVITE
|
|
|
|
|
2015-04-22 09:20:04 -04:00
|
|
|
user_level = self._get_user_power_level(event.user_id, auth_events)
|
2015-07-10 08:21:31 -04:00
|
|
|
target_level = self._get_user_power_level(
|
|
|
|
target_user_id, auth_events
|
|
|
|
)
|
2015-04-21 15:18:29 -04:00
|
|
|
|
2015-04-21 15:53:23 -04:00
|
|
|
# FIXME (erikj): What should we do here as the default?
|
|
|
|
ban_level = self._get_named_level(auth_events, "ban", 50)
|
2014-10-15 11:06:59 -04:00
|
|
|
|
2014-10-17 14:37:41 -04:00
|
|
|
logger.debug(
|
|
|
|
"is_membership_change_allowed: %s",
|
|
|
|
{
|
|
|
|
"caller_in_room": caller_in_room,
|
2014-11-10 05:35:43 -05:00
|
|
|
"caller_invited": caller_invited,
|
2015-03-15 20:17:25 -04:00
|
|
|
"target_banned": target_banned,
|
2014-10-17 14:37:41 -04:00
|
|
|
"target_in_room": target_in_room,
|
|
|
|
"membership": membership,
|
|
|
|
"join_rule": join_rule,
|
|
|
|
"target_user_id": target_user_id,
|
|
|
|
"event.user_id": event.user_id,
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
2015-11-05 11:43:19 -05:00
|
|
|
if Membership.INVITE == membership and "third_party_invite" in event.content:
|
|
|
|
if not self._verify_third_party_invite(event, auth_events):
|
|
|
|
raise AuthError(403, "You are not invited to this room.")
|
2016-07-26 11:39:14 -04:00
|
|
|
if target_banned:
|
|
|
|
raise AuthError(
|
|
|
|
403, "%s is banned from the room" % (target_user_id,)
|
|
|
|
)
|
2015-11-05 11:43:19 -05:00
|
|
|
return True
|
|
|
|
|
2015-04-15 13:40:23 -04:00
|
|
|
if Membership.JOIN != membership:
|
2015-10-20 06:58:58 -04:00
|
|
|
if (caller_invited
|
|
|
|
and Membership.LEAVE == membership
|
|
|
|
and target_user_id == event.user_id):
|
|
|
|
return True
|
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
if not caller_in_room: # caller isn't joined
|
2014-11-27 11:02:26 -05:00
|
|
|
raise AuthError(
|
|
|
|
403,
|
|
|
|
"%s not in room %s." % (event.user_id, event.room_id,)
|
|
|
|
)
|
2015-04-15 13:40:23 -04:00
|
|
|
|
|
|
|
if Membership.INVITE == membership:
|
|
|
|
# TODO (erikj): We should probably handle this more intelligently
|
|
|
|
# PRIVATE join rules.
|
|
|
|
|
|
|
|
# Invites are valid iff caller is in the room and target isn't.
|
|
|
|
if target_banned:
|
2015-03-15 20:17:25 -04:00
|
|
|
raise AuthError(
|
|
|
|
403, "%s is banned from the room" % (target_user_id,)
|
|
|
|
)
|
2014-08-12 10:10:52 -04:00
|
|
|
elif target_in_room: # the target is already in the room.
|
|
|
|
raise AuthError(403, "%s is already in the room." %
|
2014-08-26 04:26:07 -04:00
|
|
|
target_user_id)
|
2015-04-21 15:56:08 -04:00
|
|
|
else:
|
|
|
|
invite_level = self._get_named_level(auth_events, "invite", 0)
|
|
|
|
|
|
|
|
if user_level < invite_level:
|
|
|
|
raise AuthError(
|
|
|
|
403, "You cannot invite user %s." % target_user_id
|
|
|
|
)
|
2014-08-12 10:10:52 -04:00
|
|
|
elif Membership.JOIN == membership:
|
|
|
|
# Joins are valid iff caller == target and they were:
|
|
|
|
# invited: They are accepting the invitation
|
|
|
|
# joined: It's a NOOP
|
2014-08-26 04:26:07 -04:00
|
|
|
if event.user_id != target_user_id:
|
2014-08-12 10:10:52 -04:00
|
|
|
raise AuthError(403, "Cannot force another user to join.")
|
2015-03-15 20:17:25 -04:00
|
|
|
elif target_banned:
|
|
|
|
raise AuthError(403, "You are banned from this room")
|
2014-10-16 11:56:51 -04:00
|
|
|
elif join_rule == JoinRules.PUBLIC:
|
2014-09-01 08:44:19 -04:00
|
|
|
pass
|
|
|
|
elif join_rule == JoinRules.INVITE:
|
2014-11-10 05:35:43 -05:00
|
|
|
if not caller_in_room and not caller_invited:
|
2015-11-05 11:43:19 -05:00
|
|
|
raise AuthError(403, "You are not invited to this room.")
|
2014-09-01 08:44:19 -04:00
|
|
|
else:
|
|
|
|
# TODO (erikj): may_join list
|
|
|
|
# TODO (erikj): private rooms
|
|
|
|
raise AuthError(403, "You are not allowed to join this room")
|
2014-08-12 10:10:52 -04:00
|
|
|
elif Membership.LEAVE == membership:
|
2014-09-01 11:15:34 -04:00
|
|
|
# TODO (erikj): Implement kicks.
|
2015-04-15 13:40:23 -04:00
|
|
|
if target_banned and user_level < ban_level:
|
2015-03-15 20:17:25 -04:00
|
|
|
raise AuthError(
|
|
|
|
403, "You cannot unban user &s." % (target_user_id,)
|
|
|
|
)
|
2014-08-26 04:26:07 -04:00
|
|
|
elif target_user_id != event.user_id:
|
2015-04-21 15:53:23 -04:00
|
|
|
kick_level = self._get_named_level(auth_events, "kick", 50)
|
2014-09-02 07:11:52 -04:00
|
|
|
|
2015-07-10 08:42:24 -04:00
|
|
|
if user_level < kick_level or user_level <= target_level:
|
2014-09-02 05:52:49 -04:00
|
|
|
raise AuthError(
|
|
|
|
403, "You cannot kick user %s." % target_user_id
|
|
|
|
)
|
2014-09-01 11:15:34 -04:00
|
|
|
elif Membership.BAN == membership:
|
2015-07-10 08:42:24 -04:00
|
|
|
if user_level < ban_level or user_level <= target_level:
|
2014-09-01 11:15:34 -04:00
|
|
|
raise AuthError(403, "You don't have permission to ban")
|
2014-08-12 10:10:52 -04:00
|
|
|
else:
|
|
|
|
raise AuthError(500, "Unknown membership %s" % membership)
|
|
|
|
|
2014-10-17 14:37:41 -04:00
|
|
|
return True
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2015-10-01 12:49:52 -04:00
|
|
|
def _verify_third_party_invite(self, event, auth_events):
|
2015-10-13 12:18:24 -04:00
|
|
|
"""
|
2015-11-05 11:43:19 -05:00
|
|
|
Validates that the invite event is authorized by a previous third-party invite.
|
2015-10-13 12:18:24 -04:00
|
|
|
|
2015-11-05 11:43:19 -05:00
|
|
|
Checks that the public key, and keyserver, match those in the third party invite,
|
|
|
|
and that the invite event has a signature issued using that public key.
|
2015-10-13 12:18:24 -04:00
|
|
|
|
|
|
|
Args:
|
|
|
|
event: The m.room.member join event being validated.
|
|
|
|
auth_events: All relevant previous context events which may be used
|
|
|
|
for authorization decisions.
|
|
|
|
|
|
|
|
Return:
|
|
|
|
True if the event fulfills the expectations of a previous third party
|
|
|
|
invite event.
|
|
|
|
"""
|
2015-11-05 11:43:19 -05:00
|
|
|
if "third_party_invite" not in event.content:
|
|
|
|
return False
|
|
|
|
if "signed" not in event.content["third_party_invite"]:
|
2015-10-13 10:48:12 -04:00
|
|
|
return False
|
2015-11-05 11:43:19 -05:00
|
|
|
signed = event.content["third_party_invite"]["signed"]
|
|
|
|
for key in {"mxid", "token"}:
|
|
|
|
if key not in signed:
|
|
|
|
return False
|
|
|
|
|
|
|
|
token = signed["token"]
|
|
|
|
|
2015-10-01 12:49:52 -04:00
|
|
|
invite_event = auth_events.get(
|
|
|
|
(EventTypes.ThirdPartyInvite, token,)
|
|
|
|
)
|
|
|
|
if not invite_event:
|
2015-11-05 11:43:19 -05:00
|
|
|
return False
|
|
|
|
|
2016-09-22 05:56:53 -04:00
|
|
|
if invite_event.sender != event.sender:
|
|
|
|
return False
|
|
|
|
|
2015-11-05 11:43:19 -05:00
|
|
|
if event.user_id != invite_event.user_id:
|
2015-10-01 12:49:52 -04:00
|
|
|
return False
|
2015-11-05 11:43:19 -05:00
|
|
|
|
2016-02-23 10:11:25 -05:00
|
|
|
if signed["mxid"] != event.state_key:
|
2015-10-16 10:07:56 -04:00
|
|
|
return False
|
2016-02-23 10:11:25 -05:00
|
|
|
if signed["token"] != token:
|
2015-10-01 12:49:52 -04:00
|
|
|
return False
|
|
|
|
|
2016-02-23 10:11:25 -05:00
|
|
|
for public_key_object in self.get_public_keys(invite_event):
|
|
|
|
public_key = public_key_object["public_key"]
|
|
|
|
try:
|
|
|
|
for server, signature_block in signed["signatures"].items():
|
|
|
|
for key_name, encoded_signature in signature_block.items():
|
|
|
|
if not key_name.startswith("ed25519:"):
|
|
|
|
continue
|
|
|
|
verify_key = decode_verify_key_bytes(
|
|
|
|
key_name,
|
|
|
|
decode_base64(public_key)
|
|
|
|
)
|
|
|
|
verify_signed_json(signed, server, verify_key)
|
|
|
|
|
|
|
|
# We got the public key from the invite, so we know that the
|
|
|
|
# correct server signed the signed bundle.
|
|
|
|
# The caller is responsible for checking that the signing
|
|
|
|
# server has not revoked that public key.
|
|
|
|
return True
|
|
|
|
except (KeyError, SignatureVerifyException,):
|
|
|
|
continue
|
|
|
|
return False
|
|
|
|
|
|
|
|
def get_public_keys(self, invite_event):
|
|
|
|
public_keys = []
|
|
|
|
if "public_key" in invite_event.content:
|
|
|
|
o = {
|
|
|
|
"public_key": invite_event.content["public_key"],
|
|
|
|
}
|
|
|
|
if "key_validity_url" in invite_event.content:
|
|
|
|
o["key_validity_url"] = invite_event.content["key_validity_url"]
|
|
|
|
public_keys.append(o)
|
|
|
|
public_keys.extend(invite_event.content.get("public_keys", []))
|
|
|
|
return public_keys
|
|
|
|
|
2015-04-21 15:53:23 -04:00
|
|
|
def _get_power_level_event(self, auth_events):
|
2014-12-12 11:31:50 -05:00
|
|
|
key = (EventTypes.PowerLevels, "", )
|
2015-04-21 15:53:23 -04:00
|
|
|
return auth_events.get(key)
|
|
|
|
|
2015-04-22 09:20:04 -04:00
|
|
|
def _get_user_power_level(self, user_id, auth_events):
|
2015-04-21 15:53:23 -04:00
|
|
|
power_level_event = self._get_power_level_event(auth_events)
|
|
|
|
|
2014-10-15 11:06:59 -04:00
|
|
|
if power_level_event:
|
2014-11-06 11:59:13 -05:00
|
|
|
level = power_level_event.content.get("users", {}).get(user_id)
|
2014-10-15 11:06:59 -04:00
|
|
|
if not level:
|
2014-11-06 11:59:13 -05:00
|
|
|
level = power_level_event.content.get("users_default", 0)
|
2015-04-22 09:20:04 -04:00
|
|
|
|
|
|
|
if level is None:
|
|
|
|
return 0
|
|
|
|
else:
|
|
|
|
return int(level)
|
2014-11-18 10:36:36 -05:00
|
|
|
else:
|
2014-12-12 11:31:50 -05:00
|
|
|
key = (EventTypes.Create, "", )
|
2014-11-25 06:31:18 -05:00
|
|
|
create_event = auth_events.get(key)
|
2014-11-18 10:43:17 -05:00
|
|
|
if (create_event is not None and
|
2014-11-20 12:26:36 -05:00
|
|
|
create_event.content["creator"] == user_id):
|
2014-11-18 10:36:36 -05:00
|
|
|
return 100
|
2015-04-22 09:20:04 -04:00
|
|
|
else:
|
|
|
|
return 0
|
2014-10-15 11:06:59 -04:00
|
|
|
|
2015-04-21 15:53:23 -04:00
|
|
|
def _get_named_level(self, auth_events, name, default):
|
|
|
|
power_level_event = self._get_power_level_event(auth_events)
|
|
|
|
|
|
|
|
if not power_level_event:
|
|
|
|
return default
|
|
|
|
|
|
|
|
level = power_level_event.content.get(name, None)
|
|
|
|
if level is not None:
|
|
|
|
return int(level)
|
|
|
|
else:
|
|
|
|
return default
|
2014-10-15 11:06:59 -04:00
|
|
|
|
2014-09-26 11:36:24 -04:00
|
|
|
@defer.inlineCallbacks
|
2016-06-01 12:40:52 -04:00
|
|
|
def get_user_by_req(self, request, allow_guest=False, rights="access"):
|
2014-08-12 10:10:52 -04:00
|
|
|
""" Get a registered user's ID.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
request - An HTTP request with an access_token query parameter.
|
|
|
|
Returns:
|
2016-07-26 11:46:53 -04:00
|
|
|
defer.Deferred: resolves to a ``synapse.types.Requester`` object
|
2014-08-12 10:10:52 -04:00
|
|
|
Raises:
|
|
|
|
AuthError if no user by that token exists or the token is invalid.
|
|
|
|
"""
|
|
|
|
# Can optionally look elsewhere in the request (e.g. headers)
|
|
|
|
try:
|
2016-10-20 07:04:54 -04:00
|
|
|
user_id, app_service = yield self._get_appservice_user_id(request)
|
2016-01-18 11:32:33 -05:00
|
|
|
if user_id:
|
2015-08-18 10:16:28 -04:00
|
|
|
request.authenticated_entity = user_id
|
2016-10-20 06:52:46 -04:00
|
|
|
defer.returnValue(
|
2016-10-20 07:04:54 -04:00
|
|
|
synapse.types.create_requester(user_id, app_service=app_service)
|
2016-10-20 06:52:46 -04:00
|
|
|
)
|
2015-02-05 10:00:33 -05:00
|
|
|
|
2016-09-09 11:29:10 -04:00
|
|
|
access_token = get_access_token_from_request(
|
|
|
|
request, self.TOKEN_NOT_FOUND_HTTP_STATUS
|
|
|
|
)
|
|
|
|
|
2016-06-01 12:40:52 -04:00
|
|
|
user_info = yield self.get_user_by_access_token(access_token, rights)
|
2014-09-29 09:59:52 -04:00
|
|
|
user = user_info["user"]
|
2015-01-28 11:58:23 -05:00
|
|
|
token_id = user_info["token_id"]
|
2015-11-04 12:29:07 -05:00
|
|
|
is_guest = user_info["is_guest"]
|
2014-09-26 11:36:24 -04:00
|
|
|
|
2016-07-20 10:25:40 -04:00
|
|
|
# device_id may not be present if get_user_by_access_token has been
|
|
|
|
# stubbed out.
|
|
|
|
device_id = user_info.get("device_id")
|
|
|
|
|
2014-09-26 11:36:24 -04:00
|
|
|
ip_addr = self.hs.get_ip_from_request(request)
|
2014-09-29 08:35:15 -04:00
|
|
|
user_agent = request.requestHeaders.getRawHeaders(
|
|
|
|
"User-Agent",
|
|
|
|
default=[""]
|
|
|
|
)[0]
|
2014-09-26 11:36:24 -04:00
|
|
|
if user and access_token and ip_addr:
|
2016-02-04 05:22:44 -05:00
|
|
|
preserve_context_over_fn(
|
|
|
|
self.store.insert_client_ip,
|
2014-09-29 09:59:52 -04:00
|
|
|
user=user,
|
|
|
|
access_token=access_token,
|
|
|
|
ip=ip_addr,
|
2016-07-20 10:25:40 -04:00
|
|
|
user_agent=user_agent,
|
|
|
|
device_id=device_id,
|
2014-09-29 08:35:15 -04:00
|
|
|
)
|
2014-09-26 11:36:24 -04:00
|
|
|
|
2015-11-04 12:29:07 -05:00
|
|
|
if is_guest and not allow_guest:
|
|
|
|
raise AuthError(
|
|
|
|
403, "Guest access not allowed", errcode=Codes.GUEST_ACCESS_FORBIDDEN
|
|
|
|
)
|
|
|
|
|
2015-06-15 12:11:44 -04:00
|
|
|
request.authenticated_entity = user.to_string()
|
|
|
|
|
2016-07-26 11:46:53 -04:00
|
|
|
defer.returnValue(synapse.types.create_requester(
|
2016-10-20 07:07:16 -04:00
|
|
|
user, token_id, is_guest, device_id, app_service=app_service)
|
|
|
|
)
|
2014-08-12 10:10:52 -04:00
|
|
|
except KeyError:
|
2015-03-24 13:24:15 -04:00
|
|
|
raise AuthError(
|
2015-04-23 08:23:44 -04:00
|
|
|
self.TOKEN_NOT_FOUND_HTTP_STATUS, "Missing access token.",
|
|
|
|
errcode=Codes.MISSING_TOKEN
|
2015-03-24 13:24:15 -04:00
|
|
|
)
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2016-01-18 11:32:33 -05:00
|
|
|
@defer.inlineCallbacks
|
2016-09-09 11:29:10 -04:00
|
|
|
def _get_appservice_user_id(self, request):
|
2016-10-06 04:43:32 -04:00
|
|
|
app_service = self.store.get_app_service_by_token(
|
2016-09-09 11:29:10 -04:00
|
|
|
get_access_token_from_request(
|
|
|
|
request, self.TOKEN_NOT_FOUND_HTTP_STATUS
|
|
|
|
)
|
2016-01-18 11:32:33 -05:00
|
|
|
)
|
|
|
|
if app_service is None:
|
2016-10-20 06:43:05 -04:00
|
|
|
defer.returnValue((None, None))
|
2016-01-18 11:32:33 -05:00
|
|
|
|
2016-09-09 11:29:10 -04:00
|
|
|
if "user_id" not in request.args:
|
2016-10-20 06:43:05 -04:00
|
|
|
defer.returnValue((app_service.sender, app_service))
|
2016-01-18 11:32:33 -05:00
|
|
|
|
2016-09-09 11:29:10 -04:00
|
|
|
user_id = request.args["user_id"][0]
|
2016-01-18 11:33:05 -05:00
|
|
|
if app_service.sender == user_id:
|
2016-10-20 06:43:05 -04:00
|
|
|
defer.returnValue((app_service.sender, app_service))
|
2016-01-18 11:32:33 -05:00
|
|
|
|
|
|
|
if not app_service.is_interested_in_user(user_id):
|
|
|
|
raise AuthError(
|
|
|
|
403,
|
|
|
|
"Application service cannot masquerade as this user."
|
|
|
|
)
|
|
|
|
if not (yield self.store.get_user_by_id(user_id)):
|
|
|
|
raise AuthError(
|
|
|
|
403,
|
|
|
|
"Application service has not registered this user"
|
2016-02-02 12:18:50 -05:00
|
|
|
)
|
2016-10-20 06:43:05 -04:00
|
|
|
defer.returnValue((user_id, app_service))
|
2016-01-18 11:32:33 -05:00
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
@defer.inlineCallbacks
|
2016-06-01 12:40:52 -04:00
|
|
|
def get_user_by_access_token(self, token, rights="access"):
|
2016-12-06 10:31:37 -05:00
|
|
|
""" Validate access token and get user_id from it
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
Args:
|
2014-09-29 10:35:54 -04:00
|
|
|
token (str): The access token to get the user by.
|
2016-12-06 10:31:37 -05:00
|
|
|
rights (str): The operation being performed; the access token must
|
|
|
|
allow this.
|
2014-08-12 10:10:52 -04:00
|
|
|
Returns:
|
2015-08-25 11:29:39 -04:00
|
|
|
dict : dict that includes the user and the ID of their access token.
|
2014-08-12 10:10:52 -04:00
|
|
|
Raises:
|
|
|
|
AuthError if no user by that token exists or the token is invalid.
|
|
|
|
"""
|
2015-08-26 08:22:23 -04:00
|
|
|
try:
|
2016-12-06 10:31:37 -05:00
|
|
|
macaroon = pymacaroons.Macaroon.deserialize(token)
|
|
|
|
except Exception: # deserialize can throw more-or-less anything
|
|
|
|
# doesn't look like a macaroon: treat it as an opaque token which
|
|
|
|
# must be in the database.
|
|
|
|
# TODO: it would be nice to get rid of this, but apparently some
|
|
|
|
# people use access tokens which aren't macaroons
|
|
|
|
r = yield self._look_up_user_by_access_token(token)
|
|
|
|
defer.returnValue(r)
|
2015-08-26 08:22:23 -04:00
|
|
|
|
|
|
|
try:
|
2016-08-08 11:34:07 -04:00
|
|
|
user_id = self.get_user_id_from_macaroon(macaroon)
|
|
|
|
user = UserID.from_string(user_id)
|
2015-11-04 12:29:07 -05:00
|
|
|
|
2016-07-07 11:11:37 -04:00
|
|
|
self.validate_macaroon(
|
|
|
|
macaroon, rights, self.hs.config.expire_access_token,
|
|
|
|
user_id=user_id,
|
|
|
|
)
|
|
|
|
|
2016-08-08 11:34:07 -04:00
|
|
|
guest = False
|
|
|
|
for caveat in macaroon.caveats:
|
|
|
|
if caveat.caveat_id == "guest = true":
|
|
|
|
guest = True
|
2015-11-04 12:29:07 -05:00
|
|
|
|
|
|
|
if guest:
|
2016-12-06 10:31:37 -05:00
|
|
|
# Guest access tokens are not stored in the database (there can
|
|
|
|
# only be one access token per guest, anyway).
|
|
|
|
#
|
|
|
|
# In order to prevent guest access tokens being used as regular
|
|
|
|
# user access tokens (and hence getting around the invalidation
|
|
|
|
# process), we look up the user id and check that it is indeed
|
|
|
|
# a guest user.
|
|
|
|
#
|
|
|
|
# It would of course be much easier to store guest access
|
|
|
|
# tokens in the database as well, but that would break existing
|
|
|
|
# guest tokens.
|
|
|
|
stored_user = yield self.store.get_user_by_id(user_id)
|
|
|
|
if not stored_user:
|
|
|
|
raise AuthError(
|
|
|
|
self.TOKEN_NOT_FOUND_HTTP_STATUS,
|
|
|
|
"Unknown user_id %s" % user_id,
|
|
|
|
errcode=Codes.UNKNOWN_TOKEN
|
|
|
|
)
|
|
|
|
if not stored_user["is_guest"]:
|
|
|
|
raise AuthError(
|
|
|
|
self.TOKEN_NOT_FOUND_HTTP_STATUS,
|
|
|
|
"Guest access token used for regular user",
|
|
|
|
errcode=Codes.UNKNOWN_TOKEN
|
|
|
|
)
|
2015-11-04 12:29:07 -05:00
|
|
|
ret = {
|
|
|
|
"user": user,
|
|
|
|
"is_guest": True,
|
|
|
|
"token_id": None,
|
2016-11-25 10:25:30 -05:00
|
|
|
# all guests get the same device id
|
|
|
|
"device_id": GUEST_DEVICE_ID,
|
2015-11-04 12:29:07 -05:00
|
|
|
}
|
2016-06-02 12:21:31 -04:00
|
|
|
elif rights == "delete_pusher":
|
|
|
|
# We don't store these tokens in the database
|
|
|
|
ret = {
|
|
|
|
"user": user,
|
|
|
|
"is_guest": False,
|
|
|
|
"token_id": None,
|
2016-07-20 10:25:40 -04:00
|
|
|
"device_id": None,
|
2016-06-02 12:21:31 -04:00
|
|
|
}
|
2015-11-04 12:29:07 -05:00
|
|
|
else:
|
2016-07-20 10:25:40 -04:00
|
|
|
# This codepath exists for several reasons:
|
|
|
|
# * so that we can actually return a token ID, which is used
|
|
|
|
# in some parts of the schema (where we probably ought to
|
|
|
|
# use device IDs instead)
|
|
|
|
# * the only way we currently have to invalidate an
|
|
|
|
# access_token is by removing it from the database, so we
|
|
|
|
# have to check here that it is still in the db
|
|
|
|
# * some attributes (notably device_id) aren't stored in the
|
|
|
|
# macaroon. They probably should be.
|
|
|
|
# TODO: build the dictionary from the macaroon once the
|
|
|
|
# above are fixed
|
2016-12-06 10:31:37 -05:00
|
|
|
ret = yield self._look_up_user_by_access_token(token)
|
2015-11-04 12:29:07 -05:00
|
|
|
if ret["user"] != user:
|
|
|
|
logger.error(
|
|
|
|
"Macaroon user (%s) != DB user (%s)",
|
|
|
|
user,
|
|
|
|
ret["user"]
|
|
|
|
)
|
|
|
|
raise AuthError(
|
|
|
|
self.TOKEN_NOT_FOUND_HTTP_STATUS,
|
|
|
|
"User mismatch in macaroon",
|
|
|
|
errcode=Codes.UNKNOWN_TOKEN
|
|
|
|
)
|
|
|
|
defer.returnValue(ret)
|
2015-08-26 08:22:23 -04:00
|
|
|
except (pymacaroons.exceptions.MacaroonException, TypeError, ValueError):
|
|
|
|
raise AuthError(
|
|
|
|
self.TOKEN_NOT_FOUND_HTTP_STATUS, "Invalid macaroon passed.",
|
|
|
|
errcode=Codes.UNKNOWN_TOKEN
|
|
|
|
)
|
|
|
|
|
2016-08-08 11:34:07 -04:00
|
|
|
def get_user_id_from_macaroon(self, macaroon):
|
|
|
|
"""Retrieve the user_id given by the caveats on the macaroon.
|
|
|
|
|
|
|
|
Does *not* validate the macaroon.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
macaroon (pymacaroons.Macaroon): The macaroon to validate
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
(str) user id
|
|
|
|
|
|
|
|
Raises:
|
|
|
|
AuthError if there is no user_id caveat in the macaroon
|
|
|
|
"""
|
|
|
|
user_prefix = "user_id = "
|
|
|
|
for caveat in macaroon.caveats:
|
|
|
|
if caveat.caveat_id.startswith(user_prefix):
|
|
|
|
return caveat.caveat_id[len(user_prefix):]
|
|
|
|
raise AuthError(
|
|
|
|
self.TOKEN_NOT_FOUND_HTTP_STATUS, "No user caveat in macaroon",
|
|
|
|
errcode=Codes.UNKNOWN_TOKEN
|
|
|
|
)
|
|
|
|
|
2016-07-07 11:11:37 -04:00
|
|
|
def validate_macaroon(self, macaroon, type_string, verify_expiry, user_id):
|
2015-11-19 10:16:25 -05:00
|
|
|
"""
|
|
|
|
validate that a Macaroon is understood by and was signed by this server.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
macaroon(pymacaroons.Macaroon): The macaroon to validate
|
2016-11-30 12:40:18 -05:00
|
|
|
type_string(str): The kind of token required (e.g. "access",
|
2016-06-01 12:40:52 -04:00
|
|
|
"delete_pusher")
|
2015-11-19 10:16:25 -05:00
|
|
|
verify_expiry(bool): Whether to verify whether the macaroon has expired.
|
2016-08-08 11:34:07 -04:00
|
|
|
user_id (str): The user_id required
|
2015-11-19 10:16:25 -05:00
|
|
|
"""
|
2015-08-26 08:22:23 -04:00
|
|
|
v = pymacaroons.Verifier()
|
2016-11-24 07:38:17 -05:00
|
|
|
|
|
|
|
# the verifier runs a test for every caveat on the macaroon, to check
|
|
|
|
# that it is met for the current request. Each caveat must match at
|
|
|
|
# least one of the predicates specified by satisfy_exact or
|
|
|
|
# specify_general.
|
2015-08-26 08:22:23 -04:00
|
|
|
v.satisfy_exact("gen = 1")
|
2015-11-11 06:12:35 -05:00
|
|
|
v.satisfy_exact("type = " + type_string)
|
2016-07-07 11:11:37 -04:00
|
|
|
v.satisfy_exact("user_id = %s" % user_id)
|
2015-11-17 05:58:05 -05:00
|
|
|
v.satisfy_exact("guest = true")
|
2016-11-30 02:36:32 -05:00
|
|
|
|
|
|
|
# verify_expiry should really always be True, but there exist access
|
|
|
|
# tokens in the wild which expire when they should not, so we can't
|
|
|
|
# enforce expiry yet (so we have to allow any caveat starting with
|
|
|
|
# 'time < ' in access tokens).
|
|
|
|
#
|
|
|
|
# On the other hand, short-term login tokens (as used by CAS login, for
|
|
|
|
# example) have an expiry time which we do want to enforce.
|
|
|
|
|
2015-11-19 10:16:25 -05:00
|
|
|
if verify_expiry:
|
|
|
|
v.satisfy_general(self._verify_expiry)
|
|
|
|
else:
|
|
|
|
v.satisfy_general(lambda c: c.startswith("time < "))
|
2015-11-11 06:12:35 -05:00
|
|
|
|
2016-11-30 12:40:18 -05:00
|
|
|
# access_tokens include a nonce for uniqueness: any value is acceptable
|
2016-11-28 04:55:21 -05:00
|
|
|
v.satisfy_general(lambda c: c.startswith("nonce = "))
|
|
|
|
|
2015-08-26 08:22:23 -04:00
|
|
|
v.verify(macaroon, self.hs.config.macaroon_secret_key)
|
|
|
|
|
2015-11-19 10:16:25 -05:00
|
|
|
def _verify_expiry(self, caveat):
|
2015-08-26 08:22:23 -04:00
|
|
|
prefix = "time < "
|
|
|
|
if not caveat.startswith(prefix):
|
|
|
|
return False
|
|
|
|
expiry = int(caveat[len(prefix):])
|
|
|
|
now = self.hs.get_clock().time_msec()
|
|
|
|
return now < expiry
|
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
|
|
|
def _look_up_user_by_access_token(self, token):
|
2015-08-20 11:01:29 -04:00
|
|
|
ret = yield self.store.get_user_by_access_token(token)
|
2015-03-24 13:24:15 -04:00
|
|
|
if not ret:
|
2016-02-02 14:21:49 -05:00
|
|
|
logger.warn("Unrecognised access token - not in store: %s" % (token,))
|
2015-03-24 13:24:15 -04:00
|
|
|
raise AuthError(
|
|
|
|
self.TOKEN_NOT_FOUND_HTTP_STATUS, "Unrecognised access token.",
|
|
|
|
errcode=Codes.UNKNOWN_TOKEN
|
|
|
|
)
|
2016-07-20 10:25:40 -04:00
|
|
|
# we use ret.get() below because *lots* of unit tests stub out
|
|
|
|
# get_user_by_access_token in a way where it only returns a couple of
|
|
|
|
# the fields.
|
2015-03-24 13:24:15 -04:00
|
|
|
user_info = {
|
|
|
|
"user": UserID.from_string(ret.get("name")),
|
|
|
|
"token_id": ret.get("token_id", None),
|
2015-11-04 12:29:07 -05:00
|
|
|
"is_guest": False,
|
2016-07-20 10:25:40 -04:00
|
|
|
"device_id": ret.get("device_id"),
|
2015-03-24 13:24:15 -04:00
|
|
|
}
|
|
|
|
defer.returnValue(user_info)
|
2014-09-01 08:44:19 -04:00
|
|
|
|
2015-02-06 05:57:14 -05:00
|
|
|
def get_appservice_by_req(self, request):
|
|
|
|
try:
|
2016-09-09 11:29:10 -04:00
|
|
|
token = get_access_token_from_request(
|
|
|
|
request, self.TOKEN_NOT_FOUND_HTTP_STATUS
|
|
|
|
)
|
2016-10-06 04:43:32 -04:00
|
|
|
service = self.store.get_app_service_by_token(token)
|
2015-02-06 05:57:14 -05:00
|
|
|
if not service:
|
2016-02-02 14:21:49 -05:00
|
|
|
logger.warn("Unrecognised appservice access token: %s" % (token,))
|
2015-03-24 13:24:15 -04:00
|
|
|
raise AuthError(
|
|
|
|
self.TOKEN_NOT_FOUND_HTTP_STATUS,
|
|
|
|
"Unrecognised access token.",
|
|
|
|
errcode=Codes.UNKNOWN_TOKEN
|
|
|
|
)
|
2015-08-18 10:16:28 -04:00
|
|
|
request.authenticated_entity = service.sender
|
2016-10-06 04:43:32 -04:00
|
|
|
return defer.succeed(service)
|
2015-02-06 05:57:14 -05:00
|
|
|
except KeyError:
|
2015-03-24 13:24:15 -04:00
|
|
|
raise AuthError(
|
|
|
|
self.TOKEN_NOT_FOUND_HTTP_STATUS, "Missing access token."
|
|
|
|
)
|
2015-02-06 05:57:14 -05:00
|
|
|
|
2014-09-29 08:35:38 -04:00
|
|
|
def is_server_admin(self, user):
|
|
|
|
return self.store.is_server_admin(user)
|
|
|
|
|
2014-11-07 05:42:44 -05:00
|
|
|
@defer.inlineCallbacks
|
2014-12-05 11:20:48 -05:00
|
|
|
def add_auth_events(self, builder, context):
|
2016-08-31 08:55:02 -04:00
|
|
|
auth_ids = yield self.compute_auth_events(builder, context.prev_state_ids)
|
2015-01-28 11:16:53 -05:00
|
|
|
|
|
|
|
auth_events_entries = yield self.store.add_event_hashes(
|
|
|
|
auth_ids
|
|
|
|
)
|
|
|
|
|
|
|
|
builder.auth_events = auth_events_entries
|
|
|
|
|
2016-08-25 12:32:22 -04:00
|
|
|
@defer.inlineCallbacks
|
|
|
|
def compute_auth_events(self, event, current_state_ids, for_verification=False):
|
2015-01-28 11:16:53 -05:00
|
|
|
if event.type == EventTypes.Create:
|
2016-08-25 12:32:22 -04:00
|
|
|
defer.returnValue([])
|
2014-11-07 05:42:44 -05:00
|
|
|
|
2014-12-08 04:08:26 -05:00
|
|
|
auth_ids = []
|
2014-11-07 05:42:44 -05:00
|
|
|
|
2014-12-12 11:31:50 -05:00
|
|
|
key = (EventTypes.PowerLevels, "", )
|
2016-08-25 12:32:22 -04:00
|
|
|
power_level_event_id = current_state_ids.get(key)
|
2014-11-07 05:42:44 -05:00
|
|
|
|
2016-08-25 12:32:22 -04:00
|
|
|
if power_level_event_id:
|
|
|
|
auth_ids.append(power_level_event_id)
|
2014-11-07 05:42:44 -05:00
|
|
|
|
2014-12-12 11:31:50 -05:00
|
|
|
key = (EventTypes.JoinRules, "", )
|
2016-08-25 12:32:22 -04:00
|
|
|
join_rule_event_id = current_state_ids.get(key)
|
2014-11-07 05:42:44 -05:00
|
|
|
|
2015-01-28 11:16:53 -05:00
|
|
|
key = (EventTypes.Member, event.user_id, )
|
2016-08-25 12:32:22 -04:00
|
|
|
member_event_id = current_state_ids.get(key)
|
2014-11-07 05:42:44 -05:00
|
|
|
|
2014-12-12 11:31:50 -05:00
|
|
|
key = (EventTypes.Create, "", )
|
2016-08-25 12:32:22 -04:00
|
|
|
create_event_id = current_state_ids.get(key)
|
|
|
|
if create_event_id:
|
|
|
|
auth_ids.append(create_event_id)
|
2014-11-25 06:31:18 -05:00
|
|
|
|
2016-08-25 12:32:22 -04:00
|
|
|
if join_rule_event_id:
|
|
|
|
join_rule_event = yield self.store.get_event(join_rule_event_id)
|
2014-11-07 05:42:44 -05:00
|
|
|
join_rule = join_rule_event.content.get("join_rule")
|
|
|
|
is_public = join_rule == JoinRules.PUBLIC if join_rule else False
|
2014-11-10 06:15:02 -05:00
|
|
|
else:
|
|
|
|
is_public = False
|
2014-11-07 05:42:44 -05:00
|
|
|
|
2015-01-28 11:16:53 -05:00
|
|
|
if event.type == EventTypes.Member:
|
|
|
|
e_type = event.content["membership"]
|
2014-11-10 06:15:02 -05:00
|
|
|
if e_type in [Membership.JOIN, Membership.INVITE]:
|
2016-08-25 12:32:22 -04:00
|
|
|
if join_rule_event_id:
|
|
|
|
auth_ids.append(join_rule_event_id)
|
2014-11-07 05:42:44 -05:00
|
|
|
|
2014-12-12 05:42:27 -05:00
|
|
|
if e_type == Membership.JOIN:
|
2016-08-25 12:32:22 -04:00
|
|
|
if member_event_id and not is_public:
|
|
|
|
auth_ids.append(member_event_id)
|
2015-11-05 11:43:19 -05:00
|
|
|
else:
|
2016-08-25 12:32:22 -04:00
|
|
|
if member_event_id:
|
|
|
|
auth_ids.append(member_event_id)
|
|
|
|
|
|
|
|
if for_verification:
|
|
|
|
key = (EventTypes.Member, event.state_key, )
|
|
|
|
existing_event_id = current_state_ids.get(key)
|
|
|
|
if existing_event_id:
|
|
|
|
auth_ids.append(existing_event_id)
|
2015-11-05 11:43:19 -05:00
|
|
|
|
|
|
|
if e_type == Membership.INVITE:
|
|
|
|
if "third_party_invite" in event.content:
|
2015-10-13 10:48:12 -04:00
|
|
|
key = (
|
|
|
|
EventTypes.ThirdPartyInvite,
|
2015-12-17 12:09:51 -05:00
|
|
|
event.content["third_party_invite"]["signed"]["token"]
|
2015-10-13 10:48:12 -04:00
|
|
|
)
|
2016-08-25 12:32:22 -04:00
|
|
|
third_party_invite_id = current_state_ids.get(key)
|
|
|
|
if third_party_invite_id:
|
|
|
|
auth_ids.append(third_party_invite_id)
|
|
|
|
elif member_event_id:
|
|
|
|
member_event = yield self.store.get_event(member_event_id)
|
2014-11-07 05:42:44 -05:00
|
|
|
if member_event.content["membership"] == Membership.JOIN:
|
2014-12-08 04:08:26 -05:00
|
|
|
auth_ids.append(member_event.event_id)
|
2014-11-07 05:42:44 -05:00
|
|
|
|
2016-08-25 12:32:22 -04:00
|
|
|
defer.returnValue(auth_ids)
|
2014-11-07 05:42:44 -05:00
|
|
|
|
2016-03-21 10:03:20 -04:00
|
|
|
def _get_send_level(self, etype, state_key, auth_events):
|
2014-12-12 11:31:50 -05:00
|
|
|
key = (EventTypes.PowerLevels, "", )
|
2014-11-25 06:31:18 -05:00
|
|
|
send_level_event = auth_events.get(key)
|
2014-11-05 06:07:54 -05:00
|
|
|
send_level = None
|
|
|
|
if send_level_event:
|
2014-11-06 11:59:13 -05:00
|
|
|
send_level = send_level_event.content.get("events", {}).get(
|
2016-03-21 10:03:20 -04:00
|
|
|
etype
|
2014-11-06 11:59:13 -05:00
|
|
|
)
|
2015-04-07 10:48:20 -04:00
|
|
|
if send_level is None:
|
2016-03-21 10:03:20 -04:00
|
|
|
if state_key is not None:
|
2014-11-06 11:59:13 -05:00
|
|
|
send_level = send_level_event.content.get(
|
|
|
|
"state_default", 50
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
send_level = send_level_event.content.get(
|
|
|
|
"events_default", 0
|
|
|
|
)
|
2014-09-01 08:44:19 -04:00
|
|
|
|
|
|
|
if send_level:
|
|
|
|
send_level = int(send_level)
|
|
|
|
else:
|
|
|
|
send_level = 0
|
|
|
|
|
2016-03-21 10:03:20 -04:00
|
|
|
return send_level
|
|
|
|
|
|
|
|
@log_function
|
|
|
|
def _can_send_event(self, event, auth_events):
|
|
|
|
send_level = self._get_send_level(
|
|
|
|
event.type, event.get("state_key", None), auth_events
|
|
|
|
)
|
2015-04-22 09:20:04 -04:00
|
|
|
user_level = self._get_user_power_level(event.user_id, auth_events)
|
2014-09-01 08:44:19 -04:00
|
|
|
|
|
|
|
if user_level < send_level:
|
|
|
|
raise AuthError(
|
2014-11-10 13:24:43 -05:00
|
|
|
403,
|
|
|
|
"You don't have permission to post that to the room. " +
|
|
|
|
"user_level (%d) < send_level (%d)" % (user_level, send_level)
|
2014-09-01 08:44:19 -04:00
|
|
|
)
|
|
|
|
|
2014-11-19 12:21:40 -05:00
|
|
|
# Check state_key
|
|
|
|
if hasattr(event, "state_key"):
|
2015-08-11 11:34:17 -04:00
|
|
|
if event.state_key.startswith("@"):
|
|
|
|
if event.state_key != event.user_id:
|
|
|
|
raise AuthError(
|
|
|
|
403,
|
|
|
|
"You are not allowed to set others state"
|
|
|
|
)
|
2014-11-19 12:21:40 -05:00
|
|
|
|
2014-11-05 06:07:54 -05:00
|
|
|
return True
|
2014-09-01 13:24:56 -04:00
|
|
|
|
2015-08-28 10:31:49 -04:00
|
|
|
def check_redaction(self, event, auth_events):
|
|
|
|
"""Check whether the event sender is allowed to redact the target event.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
True if the the sender is allowed to redact the target event if the
|
|
|
|
target event was created by them.
|
|
|
|
False if the sender is allowed to redact the target event with no
|
|
|
|
further checks.
|
|
|
|
|
|
|
|
Raises:
|
|
|
|
AuthError if the event sender is definitely not allowed to redact
|
|
|
|
the target event.
|
|
|
|
"""
|
2015-04-22 09:20:04 -04:00
|
|
|
user_level = self._get_user_power_level(event.user_id, auth_events)
|
2014-09-23 12:36:17 -04:00
|
|
|
|
2015-04-21 15:53:23 -04:00
|
|
|
redact_level = self._get_named_level(auth_events, "redact", 50)
|
2014-09-23 12:36:17 -04:00
|
|
|
|
2015-11-26 06:17:57 -05:00
|
|
|
if user_level >= redact_level:
|
2015-08-28 10:31:49 -04:00
|
|
|
return False
|
|
|
|
|
2016-05-16 14:17:03 -04:00
|
|
|
redacter_domain = get_domain_from_id(event.event_id)
|
|
|
|
redactee_domain = get_domain_from_id(event.redacts)
|
2015-09-01 06:53:31 -04:00
|
|
|
if redacter_domain == redactee_domain:
|
2015-08-28 10:31:49 -04:00
|
|
|
return True
|
|
|
|
|
|
|
|
raise AuthError(
|
|
|
|
403,
|
|
|
|
"You don't have permission to redact events"
|
|
|
|
)
|
2014-09-23 12:36:17 -04:00
|
|
|
|
2014-11-25 06:31:18 -05:00
|
|
|
def _check_power_levels(self, event, auth_events):
|
2014-11-06 11:59:13 -05:00
|
|
|
user_list = event.content.get("users", {})
|
|
|
|
# Validate users
|
|
|
|
for k, v in user_list.items():
|
2014-09-05 16:54:16 -04:00
|
|
|
try:
|
2015-01-23 06:47:15 -05:00
|
|
|
UserID.from_string(k)
|
2014-09-05 16:54:16 -04:00
|
|
|
except:
|
|
|
|
raise SynapseError(400, "Not a valid user_id: %s" % (k,))
|
|
|
|
|
|
|
|
try:
|
|
|
|
int(v)
|
|
|
|
except:
|
|
|
|
raise SynapseError(400, "Not a valid power level: %s" % (v,))
|
|
|
|
|
2014-10-17 14:37:41 -04:00
|
|
|
key = (event.type, event.state_key, )
|
2014-11-25 06:31:18 -05:00
|
|
|
current_state = auth_events.get(key)
|
2014-09-04 11:40:23 -04:00
|
|
|
|
2014-09-05 16:35:56 -04:00
|
|
|
if not current_state:
|
|
|
|
return
|
|
|
|
|
2015-04-22 09:20:04 -04:00
|
|
|
user_level = self._get_user_power_level(event.user_id, auth_events)
|
2014-09-04 11:40:23 -04:00
|
|
|
|
2014-11-10 08:46:44 -05:00
|
|
|
# Check other levels:
|
2014-11-06 11:59:13 -05:00
|
|
|
levels_to_check = [
|
2015-07-10 08:42:24 -04:00
|
|
|
("users_default", None),
|
|
|
|
("events_default", None),
|
2015-07-13 08:48:13 -04:00
|
|
|
("state_default", None),
|
2015-07-10 08:42:24 -04:00
|
|
|
("ban", None),
|
|
|
|
("redact", None),
|
|
|
|
("kick", None),
|
|
|
|
("invite", None),
|
2014-11-06 11:59:13 -05:00
|
|
|
]
|
|
|
|
|
|
|
|
old_list = current_state.content.get("users")
|
|
|
|
for user in set(old_list.keys() + user_list.keys()):
|
|
|
|
levels_to_check.append(
|
2015-07-10 08:42:24 -04:00
|
|
|
(user, "users")
|
2014-11-06 11:59:13 -05:00
|
|
|
)
|
2014-09-04 11:40:23 -04:00
|
|
|
|
2014-11-06 11:59:13 -05:00
|
|
|
old_list = current_state.content.get("events")
|
|
|
|
new_list = event.content.get("events")
|
|
|
|
for ev_id in set(old_list.keys() + new_list.keys()):
|
|
|
|
levels_to_check.append(
|
2015-07-10 08:42:24 -04:00
|
|
|
(ev_id, "events")
|
2014-11-06 11:59:13 -05:00
|
|
|
)
|
2014-09-04 11:40:23 -04:00
|
|
|
|
2014-11-06 11:59:13 -05:00
|
|
|
old_state = current_state.content
|
|
|
|
new_state = event.content
|
2014-09-04 11:40:23 -04:00
|
|
|
|
2014-11-06 11:59:13 -05:00
|
|
|
for level_to_check, dir in levels_to_check:
|
|
|
|
old_loc = old_state
|
|
|
|
new_loc = new_state
|
2015-07-10 08:42:24 -04:00
|
|
|
if dir:
|
|
|
|
old_loc = old_loc.get(dir, {})
|
|
|
|
new_loc = new_loc.get(dir, {})
|
2014-09-04 11:40:23 -04:00
|
|
|
|
2014-11-06 11:59:13 -05:00
|
|
|
if level_to_check in old_loc:
|
|
|
|
old_level = int(old_loc[level_to_check])
|
|
|
|
else:
|
|
|
|
old_level = None
|
2014-09-04 11:40:23 -04:00
|
|
|
|
2014-11-06 11:59:13 -05:00
|
|
|
if level_to_check in new_loc:
|
|
|
|
new_level = int(new_loc[level_to_check])
|
|
|
|
else:
|
|
|
|
new_level = None
|
2014-09-04 11:40:23 -04:00
|
|
|
|
2014-11-06 11:59:13 -05:00
|
|
|
if new_level is not None and old_level is not None:
|
|
|
|
if new_level == old_level:
|
|
|
|
continue
|
2014-09-04 11:40:23 -04:00
|
|
|
|
2015-07-10 08:42:24 -04:00
|
|
|
if dir == "users" and level_to_check != event.user_id:
|
|
|
|
if old_level == user_level:
|
|
|
|
raise AuthError(
|
|
|
|
403,
|
|
|
|
"You don't have permission to remove ops level equal "
|
|
|
|
"to your own"
|
|
|
|
)
|
|
|
|
|
2014-11-06 11:59:13 -05:00
|
|
|
if old_level > user_level or new_level > user_level:
|
2014-09-04 11:40:23 -04:00
|
|
|
raise AuthError(
|
|
|
|
403,
|
2014-11-06 11:59:13 -05:00
|
|
|
"You don't have permission to add ops level greater "
|
|
|
|
"than your own"
|
2014-09-04 11:40:23 -04:00
|
|
|
)
|
2016-03-21 10:03:20 -04:00
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
|
|
|
def check_can_change_room_list(self, room_id, user):
|
|
|
|
"""Check if the user is allowed to edit the room's entry in the
|
|
|
|
published room list.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
room_id (str)
|
|
|
|
user (UserID)
|
|
|
|
"""
|
|
|
|
|
|
|
|
is_admin = yield self.is_server_admin(user)
|
|
|
|
if is_admin:
|
|
|
|
defer.returnValue(True)
|
|
|
|
|
|
|
|
user_id = user.to_string()
|
|
|
|
yield self.check_joined_room(room_id, user_id)
|
|
|
|
|
|
|
|
# We currently require the user is a "moderator" in the room. We do this
|
|
|
|
# by checking if they would (theoretically) be able to change the
|
|
|
|
# m.room.aliases events
|
|
|
|
power_level_event = yield self.state.get_current_state(
|
|
|
|
room_id, EventTypes.PowerLevels, ""
|
|
|
|
)
|
|
|
|
|
|
|
|
auth_events = {}
|
|
|
|
if power_level_event:
|
|
|
|
auth_events[(EventTypes.PowerLevels, "")] = power_level_event
|
|
|
|
|
|
|
|
send_level = self._get_send_level(
|
|
|
|
EventTypes.Aliases, "", auth_events
|
|
|
|
)
|
|
|
|
user_level = self._get_user_power_level(user_id, auth_events)
|
|
|
|
|
|
|
|
if user_level < send_level:
|
|
|
|
raise AuthError(
|
|
|
|
403,
|
|
|
|
"This server requires you to be a moderator in the room to"
|
|
|
|
" edit its room list entry"
|
|
|
|
)
|
2016-09-09 11:29:10 -04:00
|
|
|
|
|
|
|
|
|
|
|
def has_access_token(request):
|
|
|
|
"""Checks if the request has an access_token.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
bool: False if no access_token was given, True otherwise.
|
|
|
|
"""
|
|
|
|
query_params = request.args.get("access_token")
|
2016-09-09 13:17:42 -04:00
|
|
|
auth_headers = request.requestHeaders.getRawHeaders("Authorization")
|
|
|
|
return bool(query_params) or bool(auth_headers)
|
2016-09-09 11:29:10 -04:00
|
|
|
|
|
|
|
|
|
|
|
def get_access_token_from_request(request, token_not_found_http_status=401):
|
|
|
|
"""Extracts the access_token from the request.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
request: The http request.
|
|
|
|
token_not_found_http_status(int): The HTTP status code to set in the
|
|
|
|
AuthError if the token isn't found. This is used in some of the
|
|
|
|
legacy APIs to change the status code to 403 from the default of
|
|
|
|
401 since some of the old clients depended on auth errors returning
|
|
|
|
403.
|
|
|
|
Returns:
|
|
|
|
str: The access_token
|
|
|
|
Raises:
|
|
|
|
AuthError: If there isn't an access_token in the request.
|
|
|
|
"""
|
2016-09-09 13:17:42 -04:00
|
|
|
|
|
|
|
auth_headers = request.requestHeaders.getRawHeaders("Authorization")
|
2016-09-09 11:29:10 -04:00
|
|
|
query_params = request.args.get("access_token")
|
2016-09-12 05:46:02 -04:00
|
|
|
if auth_headers:
|
2016-09-09 13:17:42 -04:00
|
|
|
# Try the get the access_token from a "Authorization: Bearer"
|
|
|
|
# header
|
|
|
|
if query_params is not None:
|
|
|
|
raise AuthError(
|
|
|
|
token_not_found_http_status,
|
|
|
|
"Mixing Authorization headers and access_token query parameters.",
|
|
|
|
errcode=Codes.MISSING_TOKEN,
|
|
|
|
)
|
|
|
|
if len(auth_headers) > 1:
|
|
|
|
raise AuthError(
|
|
|
|
token_not_found_http_status,
|
|
|
|
"Too many Authorization headers.",
|
|
|
|
errcode=Codes.MISSING_TOKEN,
|
|
|
|
)
|
|
|
|
parts = auth_headers[0].split(" ")
|
|
|
|
if parts[0] == "Bearer" and len(parts) == 2:
|
|
|
|
return parts[1]
|
|
|
|
else:
|
|
|
|
raise AuthError(
|
|
|
|
token_not_found_http_status,
|
|
|
|
"Invalid Authorization header.",
|
|
|
|
errcode=Codes.MISSING_TOKEN,
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
# Try to get the access_token from the query params.
|
|
|
|
if not query_params:
|
|
|
|
raise AuthError(
|
|
|
|
token_not_found_http_status,
|
|
|
|
"Missing access token.",
|
|
|
|
errcode=Codes.MISSING_TOKEN
|
|
|
|
)
|
2016-09-09 11:29:10 -04:00
|
|
|
|
2016-09-09 13:17:42 -04:00
|
|
|
return query_params[0]
|