2015-08-18 09:22:02 -04:00
|
|
|
# -*- coding: utf-8 -*-
|
2016-01-06 23:26:29 -05:00
|
|
|
# Copyright 2015, 2016 OpenMarket Ltd
|
2015-08-18 09:22:02 -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-30 10:55:57 -04:00
|
|
|
from mock import Mock
|
2018-07-31 08:16:20 -04:00
|
|
|
|
2015-08-18 09:22:02 -04:00
|
|
|
import pymacaroons
|
2018-07-09 02:09:20 -04:00
|
|
|
|
2016-08-08 11:34:07 -04:00
|
|
|
from twisted.internet import defer
|
2015-08-18 09:22:02 -04:00
|
|
|
|
2016-08-08 11:34:07 -04:00
|
|
|
import synapse
|
|
|
|
import synapse.api.errors
|
2018-08-16 13:02:02 -04:00
|
|
|
from synapse.api.errors import ResourceLimitError
|
2015-08-20 06:35:56 -04:00
|
|
|
from synapse.handlers.auth import AuthHandler
|
2018-07-09 02:09:20 -04:00
|
|
|
|
2015-08-18 09:22:02 -04:00
|
|
|
from tests import unittest
|
|
|
|
from tests.utils import setup_test_homeserver
|
|
|
|
|
2016-08-08 12:20:38 -04:00
|
|
|
|
2015-08-20 06:35:56 -04:00
|
|
|
class AuthHandlers(object):
|
2015-08-18 09:22:02 -04:00
|
|
|
def __init__(self, hs):
|
2015-08-20 06:35:56 -04:00
|
|
|
self.auth_handler = AuthHandler(hs)
|
2015-08-18 09:22:02 -04:00
|
|
|
|
|
|
|
|
2015-08-20 06:35:56 -04:00
|
|
|
class AuthTestCase(unittest.TestCase):
|
2015-08-18 09:22:02 -04:00
|
|
|
@defer.inlineCallbacks
|
|
|
|
def setUp(self):
|
2018-08-13 02:47:46 -04:00
|
|
|
self.hs = yield setup_test_homeserver(self.addCleanup, handlers=None)
|
2015-08-20 06:35:56 -04:00
|
|
|
self.hs.handlers = AuthHandlers(self.hs)
|
2016-08-08 11:34:07 -04:00
|
|
|
self.auth_handler = self.hs.handlers.auth_handler
|
2017-02-02 05:53:36 -05:00
|
|
|
self.macaroon_generator = self.hs.get_macaroon_generator()
|
2018-07-30 10:55:57 -04:00
|
|
|
# MAU tests
|
|
|
|
self.hs.config.max_mau_value = 50
|
|
|
|
self.small_number_of_users = 1
|
|
|
|
self.large_number_of_users = 100
|
2015-08-18 09:22:02 -04:00
|
|
|
|
|
|
|
def test_token_is_a_macaroon(self):
|
2017-02-02 05:53:36 -05:00
|
|
|
token = self.macaroon_generator.generate_access_token("some_user")
|
2015-08-18 09:22:02 -04:00
|
|
|
# Check that we can parse the thing with pymacaroons
|
|
|
|
macaroon = pymacaroons.Macaroon.deserialize(token)
|
|
|
|
# The most basic of sanity checks
|
|
|
|
if "some_user" not in macaroon.inspect():
|
|
|
|
self.fail("some_user was not in %s" % macaroon.inspect())
|
|
|
|
|
|
|
|
def test_macaroon_caveats(self):
|
|
|
|
self.hs.clock.now = 5000
|
|
|
|
|
2017-02-02 05:53:36 -05:00
|
|
|
token = self.macaroon_generator.generate_access_token("a_user")
|
2015-08-18 09:22:02 -04:00
|
|
|
macaroon = pymacaroons.Macaroon.deserialize(token)
|
|
|
|
|
|
|
|
def verify_gen(caveat):
|
2015-08-19 09:30:31 -04:00
|
|
|
return caveat == "gen = 1"
|
2015-08-18 09:22:02 -04:00
|
|
|
|
|
|
|
def verify_user(caveat):
|
2015-08-19 09:30:31 -04:00
|
|
|
return caveat == "user_id = a_user"
|
2015-08-18 09:22:02 -04:00
|
|
|
|
|
|
|
def verify_type(caveat):
|
2015-08-19 09:30:31 -04:00
|
|
|
return caveat == "type = access"
|
2015-08-18 09:22:02 -04:00
|
|
|
|
2016-11-28 04:55:21 -05:00
|
|
|
def verify_nonce(caveat):
|
|
|
|
return caveat.startswith("nonce =")
|
2015-08-18 09:22:02 -04:00
|
|
|
|
|
|
|
v = pymacaroons.Verifier()
|
|
|
|
v.satisfy_general(verify_gen)
|
|
|
|
v.satisfy_general(verify_user)
|
|
|
|
v.satisfy_general(verify_type)
|
2016-11-28 04:55:21 -05:00
|
|
|
v.satisfy_general(verify_nonce)
|
2015-08-18 10:18:50 -04:00
|
|
|
v.verify(macaroon, self.hs.config.macaroon_secret_key)
|
2016-08-08 11:34:07 -04:00
|
|
|
|
2018-08-01 05:21:56 -04:00
|
|
|
@defer.inlineCallbacks
|
2016-08-08 11:34:07 -04:00
|
|
|
def test_short_term_login_token_gives_user_id(self):
|
|
|
|
self.hs.clock.now = 1000
|
|
|
|
|
2018-08-10 09:54:09 -04:00
|
|
|
token = self.macaroon_generator.generate_short_term_login_token("a_user", 5000)
|
2018-08-01 05:21:56 -04:00
|
|
|
user_id = yield self.auth_handler.validate_short_term_login_token_and_get_user_id(
|
|
|
|
token
|
2016-08-08 11:34:07 -04:00
|
|
|
)
|
2018-08-01 05:21:56 -04:00
|
|
|
self.assertEqual("a_user", user_id)
|
2016-08-08 11:34:07 -04:00
|
|
|
|
|
|
|
# when we advance the clock, the token should be rejected
|
|
|
|
self.hs.clock.now = 6000
|
|
|
|
with self.assertRaises(synapse.api.errors.AuthError):
|
2018-08-01 05:21:56 -04:00
|
|
|
yield self.auth_handler.validate_short_term_login_token_and_get_user_id(
|
2016-08-08 11:34:07 -04:00
|
|
|
token
|
|
|
|
)
|
|
|
|
|
2018-08-01 05:21:56 -04:00
|
|
|
@defer.inlineCallbacks
|
2016-08-08 11:34:07 -04:00
|
|
|
def test_short_term_login_token_cannot_replace_user_id(self):
|
2018-08-10 09:54:09 -04:00
|
|
|
token = self.macaroon_generator.generate_short_term_login_token("a_user", 5000)
|
2016-08-08 11:34:07 -04:00
|
|
|
macaroon = pymacaroons.Macaroon.deserialize(token)
|
|
|
|
|
2018-08-01 05:21:56 -04:00
|
|
|
user_id = yield self.auth_handler.validate_short_term_login_token_and_get_user_id(
|
|
|
|
macaroon.serialize()
|
|
|
|
)
|
2018-08-10 09:54:09 -04:00
|
|
|
self.assertEqual("a_user", user_id)
|
2016-08-08 11:34:07 -04:00
|
|
|
|
|
|
|
# add another "user_id" caveat, which might allow us to override the
|
|
|
|
# user_id.
|
|
|
|
macaroon.add_first_party_caveat("user_id = b_user")
|
|
|
|
|
|
|
|
with self.assertRaises(synapse.api.errors.AuthError):
|
2018-08-01 05:21:56 -04:00
|
|
|
yield self.auth_handler.validate_short_term_login_token_and_get_user_id(
|
2016-08-08 11:34:07 -04:00
|
|
|
macaroon.serialize()
|
|
|
|
)
|
2018-07-30 10:55:57 -04:00
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
|
|
|
def test_mau_limits_disabled(self):
|
|
|
|
self.hs.config.limit_usage_by_mau = False
|
|
|
|
# Ensure does not throw exception
|
2019-07-12 12:26:02 -04:00
|
|
|
yield self.auth_handler.get_access_token_for_user_id(
|
|
|
|
"user_a", device_id=None, valid_until_ms=None
|
|
|
|
)
|
2018-07-30 10:55:57 -04:00
|
|
|
|
2018-08-01 05:21:56 -04:00
|
|
|
yield self.auth_handler.validate_short_term_login_token_and_get_user_id(
|
2018-07-30 10:55:57 -04:00
|
|
|
self._get_macaroon().serialize()
|
|
|
|
)
|
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
2018-08-14 10:04:48 -04:00
|
|
|
def test_mau_limits_exceeded_large(self):
|
2018-07-30 10:55:57 -04:00
|
|
|
self.hs.config.limit_usage_by_mau = True
|
2018-08-02 11:57:35 -04:00
|
|
|
self.hs.get_datastore().get_monthly_active_count = Mock(
|
2018-08-01 05:21:56 -04:00
|
|
|
return_value=defer.succeed(self.large_number_of_users)
|
2018-07-30 10:55:57 -04:00
|
|
|
)
|
2018-08-01 05:21:56 -04:00
|
|
|
|
2018-08-16 13:02:02 -04:00
|
|
|
with self.assertRaises(ResourceLimitError):
|
2019-07-12 12:26:02 -04:00
|
|
|
yield self.auth_handler.get_access_token_for_user_id(
|
|
|
|
"user_a", device_id=None, valid_until_ms=None
|
|
|
|
)
|
2018-08-01 05:21:56 -04:00
|
|
|
|
2018-08-02 11:57:35 -04:00
|
|
|
self.hs.get_datastore().get_monthly_active_count = Mock(
|
2018-08-01 05:21:56 -04:00
|
|
|
return_value=defer.succeed(self.large_number_of_users)
|
|
|
|
)
|
2018-08-16 13:02:02 -04:00
|
|
|
with self.assertRaises(ResourceLimitError):
|
2018-08-01 05:21:56 -04:00
|
|
|
yield self.auth_handler.validate_short_term_login_token_and_get_user_id(
|
2018-07-30 10:55:57 -04:00
|
|
|
self._get_macaroon().serialize()
|
|
|
|
)
|
|
|
|
|
2018-08-14 10:04:48 -04:00
|
|
|
@defer.inlineCallbacks
|
|
|
|
def test_mau_limits_parity(self):
|
|
|
|
self.hs.config.limit_usage_by_mau = True
|
|
|
|
|
|
|
|
# If not in monthly active cohort
|
|
|
|
self.hs.get_datastore().get_monthly_active_count = Mock(
|
|
|
|
return_value=defer.succeed(self.hs.config.max_mau_value)
|
|
|
|
)
|
2018-08-16 13:02:02 -04:00
|
|
|
with self.assertRaises(ResourceLimitError):
|
2019-07-12 12:26:02 -04:00
|
|
|
yield self.auth_handler.get_access_token_for_user_id(
|
|
|
|
"user_a", device_id=None, valid_until_ms=None
|
|
|
|
)
|
2018-08-14 10:04:48 -04:00
|
|
|
|
|
|
|
self.hs.get_datastore().get_monthly_active_count = Mock(
|
|
|
|
return_value=defer.succeed(self.hs.config.max_mau_value)
|
|
|
|
)
|
2018-08-16 13:02:02 -04:00
|
|
|
with self.assertRaises(ResourceLimitError):
|
2018-08-14 10:04:48 -04:00
|
|
|
yield self.auth_handler.validate_short_term_login_token_and_get_user_id(
|
|
|
|
self._get_macaroon().serialize()
|
|
|
|
)
|
|
|
|
# If in monthly active cohort
|
|
|
|
self.hs.get_datastore().user_last_seen_monthly_active = Mock(
|
|
|
|
return_value=defer.succeed(self.hs.get_clock().time_msec())
|
|
|
|
)
|
|
|
|
self.hs.get_datastore().get_monthly_active_count = Mock(
|
|
|
|
return_value=defer.succeed(self.hs.config.max_mau_value)
|
|
|
|
)
|
2019-07-12 12:26:02 -04:00
|
|
|
yield self.auth_handler.get_access_token_for_user_id(
|
|
|
|
"user_a", device_id=None, valid_until_ms=None
|
|
|
|
)
|
2018-08-14 10:04:48 -04:00
|
|
|
self.hs.get_datastore().user_last_seen_monthly_active = Mock(
|
|
|
|
return_value=defer.succeed(self.hs.get_clock().time_msec())
|
|
|
|
)
|
|
|
|
self.hs.get_datastore().get_monthly_active_count = Mock(
|
|
|
|
return_value=defer.succeed(self.hs.config.max_mau_value)
|
|
|
|
)
|
|
|
|
yield self.auth_handler.validate_short_term_login_token_and_get_user_id(
|
|
|
|
self._get_macaroon().serialize()
|
|
|
|
)
|
|
|
|
|
2018-07-30 10:55:57 -04:00
|
|
|
@defer.inlineCallbacks
|
|
|
|
def test_mau_limits_not_exceeded(self):
|
|
|
|
self.hs.config.limit_usage_by_mau = True
|
2018-08-01 05:21:56 -04:00
|
|
|
|
2018-08-02 11:57:35 -04:00
|
|
|
self.hs.get_datastore().get_monthly_active_count = Mock(
|
2018-08-01 05:21:56 -04:00
|
|
|
return_value=defer.succeed(self.small_number_of_users)
|
2018-07-30 10:55:57 -04:00
|
|
|
)
|
|
|
|
# Ensure does not raise exception
|
2019-07-12 12:26:02 -04:00
|
|
|
yield self.auth_handler.get_access_token_for_user_id(
|
|
|
|
"user_a", device_id=None, valid_until_ms=None
|
|
|
|
)
|
2018-08-01 09:02:10 -04:00
|
|
|
|
2018-08-02 11:57:35 -04:00
|
|
|
self.hs.get_datastore().get_monthly_active_count = Mock(
|
2018-08-01 09:02:10 -04:00
|
|
|
return_value=defer.succeed(self.small_number_of_users)
|
|
|
|
)
|
2018-08-01 05:21:56 -04:00
|
|
|
yield self.auth_handler.validate_short_term_login_token_and_get_user_id(
|
2018-07-30 10:55:57 -04:00
|
|
|
self._get_macaroon().serialize()
|
|
|
|
)
|
|
|
|
|
|
|
|
def _get_macaroon(self):
|
2018-08-10 09:54:09 -04:00
|
|
|
token = self.macaroon_generator.generate_short_term_login_token("user_a", 5000)
|
2018-07-30 10:55:57 -04:00
|
|
|
return pymacaroons.Macaroon.deserialize(token)
|