2017-11-16 00:43:27 +01:00
|
|
|
import logging
|
|
|
|
import time
|
2016-06-04 16:52:18 +02:00
|
|
|
from typing import Any, Callable, Optional
|
|
|
|
|
2013-05-31 19:47:09 +02:00
|
|
|
from django.conf import settings
|
2019-05-03 23:20:39 +02:00
|
|
|
from django.core.management.base import BaseCommand, CommandParser, CommandError
|
2013-05-31 19:47:09 +02:00
|
|
|
|
2017-11-16 00:43:27 +01:00
|
|
|
from zerver.lib.rate_limiter import RateLimitedUser, \
|
|
|
|
client, max_api_calls, max_api_window
|
|
|
|
from zerver.models import get_user_profile_by_id
|
2013-05-31 19:47:09 +02:00
|
|
|
|
|
|
|
class Command(BaseCommand):
|
2017-11-09 11:45:56 +01:00
|
|
|
help = """Checks redis to make sure our rate limiting system hasn't grown a bug
|
|
|
|
and left redis with a bunch of data
|
2013-05-31 19:47:09 +02:00
|
|
|
|
|
|
|
Usage: ./manage.py [--trim] check_redis"""
|
|
|
|
|
2017-10-26 11:35:57 +02:00
|
|
|
def add_arguments(self, parser: CommandParser) -> None:
|
2016-11-03 10:22:19 +01:00
|
|
|
parser.add_argument('-t', '--trim',
|
|
|
|
dest='trim',
|
|
|
|
default=False,
|
|
|
|
action='store_true',
|
|
|
|
help="Actually trim excess")
|
2013-05-31 19:47:09 +02:00
|
|
|
|
2017-10-26 11:35:57 +02:00
|
|
|
def _check_within_range(self, key: str, count_func: Callable[[], int],
|
|
|
|
trim_func: Optional[Callable[[str, int], None]]=None) -> None:
|
2013-05-31 19:47:09 +02:00
|
|
|
user_id = int(key.split(':')[1])
|
2018-05-17 22:12:23 +02:00
|
|
|
user = get_user_profile_by_id(user_id)
|
2017-07-31 08:00:57 +02:00
|
|
|
entity = RateLimitedUser(user)
|
2017-07-31 08:08:47 +02:00
|
|
|
max_calls = max_api_calls(entity)
|
2013-05-31 19:47:09 +02:00
|
|
|
|
2013-06-05 22:56:25 +02:00
|
|
|
age = int(client.ttl(key))
|
|
|
|
if age < 0:
|
|
|
|
logging.error("Found key with age of %s, will never expire: %s" % (age, key,))
|
2013-06-05 22:44:22 +02:00
|
|
|
|
2013-05-31 19:47:09 +02:00
|
|
|
count = count_func()
|
|
|
|
if count > max_calls:
|
|
|
|
logging.error("Redis health check found key with more elements \
|
|
|
|
than max_api_calls! (trying to trim) %s %s" % (key, count))
|
2016-01-27 22:43:44 +01:00
|
|
|
if trim_func is not None:
|
2017-07-31 08:00:57 +02:00
|
|
|
client.expire(key, max_api_window(entity))
|
2013-05-31 19:47:09 +02:00
|
|
|
trim_func(key, max_calls)
|
|
|
|
|
2017-10-26 11:35:57 +02:00
|
|
|
def handle(self, *args: Any, **options: Any) -> None:
|
2013-05-31 19:47:09 +02:00
|
|
|
if not settings.RATE_LIMITING:
|
2019-05-03 23:20:39 +02:00
|
|
|
raise CommandError("This machine is not using redis or rate limiting, aborting")
|
2013-05-31 19:47:09 +02:00
|
|
|
|
|
|
|
# Find all keys, and make sure they're all within size constraints
|
|
|
|
wildcard_list = "ratelimit:*:*:list"
|
|
|
|
wildcard_zset = "ratelimit:*:*:zset"
|
|
|
|
|
2017-07-10 05:19:54 +02:00
|
|
|
trim_func = lambda key, max_calls: client.ltrim(key, 0, max_calls - 1) # type: Optional[Callable[[str, int], None]]
|
2016-01-27 22:43:44 +01:00
|
|
|
if not options['trim']:
|
|
|
|
trim_func = None
|
2013-05-31 19:47:09 +02:00
|
|
|
|
|
|
|
lists = client.keys(wildcard_list)
|
|
|
|
for list_name in lists:
|
|
|
|
self._check_within_range(list_name,
|
|
|
|
lambda: client.llen(list_name),
|
2016-01-27 22:43:44 +01:00
|
|
|
trim_func)
|
2013-05-31 19:47:09 +02:00
|
|
|
|
|
|
|
zsets = client.keys(wildcard_zset)
|
|
|
|
for zset in zsets:
|
|
|
|
now = time.time()
|
|
|
|
# We can warn on our zset being too large, but we don't know what
|
|
|
|
# elements to trim. We'd have to go through every list item and take
|
|
|
|
# the intersection. The best we can do is expire it
|
|
|
|
self._check_within_range(zset,
|
2017-01-24 06:21:14 +01:00
|
|
|
lambda: client.zcount(zset, 0, now),
|
|
|
|
lambda key, max_calls: None)
|