mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_limits: Handle fractional outstanding balance values (caused by e3f7b6fa46ba)
Fractional values were passed to string.sub() when doing buffer manipulations, and caused random bytes to be skipped in the stream.
This commit is contained in:
parent
86ee041be8
commit
14304764d8
1 changed files with 2 additions and 0 deletions
|
@ -4,6 +4,7 @@ module:set_global();
|
|||
local filters = require "util.filters";
|
||||
local throttle = require "util.throttle";
|
||||
local timer = require "util.timer";
|
||||
local ceil = math.ceil;
|
||||
|
||||
local limits_cfg = module:get_option("limits", {});
|
||||
local limits_resolution = module:get_option_number("limits_resolution", 1);
|
||||
|
@ -55,6 +56,7 @@ function default_filter_set.bytes_in(bytes, session)
|
|||
local ok, balance, outstanding = throttle:poll(#bytes, true);
|
||||
if not ok then
|
||||
session.log("debug", "Session over rate limit (%d) with %d (by %d), pausing", throttle.max, #bytes, outstanding);
|
||||
outstanding = ceil(outstanding);
|
||||
session.conn:pause(); -- Read no more data from the connection until there is no outstanding data
|
||||
local outstanding_data = bytes:sub(-outstanding);
|
||||
bytes = bytes:sub(1, #bytes-outstanding);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue