summaryrefslogtreecommitdiffstats
path: root/lualib/redis_scripts/ratelimit_cleanup_pending.lua
diff options
context:
space:
mode:
authorVsevolod Stakhov <vsevolod@rspamd.com>2023-06-17 13:06:52 +0100
committerVsevolod Stakhov <vsevolod@rspamd.com>2023-06-17 13:06:52 +0100
commitaa85bba8674500de387accfab57b6ea9a98652dc (patch)
tree31a5f46e3d3676050662721b986fd2e45d473b46 /lualib/redis_scripts/ratelimit_cleanup_pending.lua
parent5ebb6c909fd0ceda2b9377aed04faf3b4014dd84 (diff)
downloadrspamd-aa85bba8674500de387accfab57b6ea9a98652dc.tar.gz
rspamd-aa85bba8674500de387accfab57b6ea9a98652dc.zip
[Fix] Try harder to clean pending bucket
Issue: #4467
Diffstat (limited to 'lualib/redis_scripts/ratelimit_cleanup_pending.lua')
-rw-r--r--lualib/redis_scripts/ratelimit_cleanup_pending.lua29
1 files changed, 29 insertions, 0 deletions
diff --git a/lualib/redis_scripts/ratelimit_cleanup_pending.lua b/lualib/redis_scripts/ratelimit_cleanup_pending.lua
new file mode 100644
index 000000000..f51599b09
--- /dev/null
+++ b/lualib/redis_scripts/ratelimit_cleanup_pending.lua
@@ -0,0 +1,29 @@
+-- This script cleans up the pending requests in Redis.
+
+-- KEYS: Input parameters
+-- KEYS[1] - prefix: The Redis key prefix used to store the bucket information.
+-- KEYS[2] - now: The current time in milliseconds.
+-- KEYS[3] - expire: The expiration time for the Redis key storing the bucket information, in seconds.
+-- KEYS[4] - number_of_recipients: The number of requests to be allowed (or the increase rate).
+
+-- 1. Retrieve the last hit time and initialize variables
+local prefix = KEYS[1]
+local last = redis.call('HGET', prefix, 'l')
+local nrcpt = tonumber(KEYS[4])
+if not last then
+ -- No bucket, no cleanup
+ return 0
+end
+
+
+-- 2. Update the pending values based on the number of recipients (requests)
+local pending = redis.call('HGET', prefix, 'p')
+pending = tonumber(pending or '0')
+if pending < nrcpt then pending = 0 else pending = pending - nrcpt end
+
+-- 3. Set the updated values back to Redis and update the expiration time for the bucket
+redis.call('HMSET', prefix, tostring(pending), 'l', KEYS[2])
+redis.call('EXPIRE', prefix, KEYS[3])
+
+-- 4. Return the updated pending value
+return pending \ No newline at end of file