mod_websocket: Switch partial frame buffering to util.dbuffer

This improves performance and enforces stanza size limits earlier
in the pipeline.
This commit is contained in:
Matthew Wild 2020-09-17 13:04:46 +01:00
parent 3989ff2ddc
commit 5a1c206ece
2 changed files with 10 additions and 5 deletions

View file

@ -20,8 +20,8 @@ local unpack = table.unpack or unpack; -- luacheck: ignore 113
local t_concat = table.concat; local t_concat = table.concat;
local s_char= string.char; local s_char= string.char;
local s_pack = string.pack; local s_pack = string.pack; -- luacheck: ignore 143
local s_unpack = string.unpack; local s_unpack = string.unpack; -- luacheck: ignore 143
if not s_pack and softreq"struct" then if not s_pack and softreq"struct" then
s_pack = softreq"struct".pack; s_pack = softreq"struct".pack;

View file

@ -18,6 +18,7 @@ local contains_token = require "util.http".contains_token;
local portmanager = require "core.portmanager"; local portmanager = require "core.portmanager";
local sm_destroy_session = require"core.sessionmanager".destroy_session; local sm_destroy_session = require"core.sessionmanager".destroy_session;
local log = module._log; local log = module._log;
local dbuffer = require "util.dbuffer";
local websocket_frames = require"net.websocket.frames"; local websocket_frames = require"net.websocket.frames";
local parse_frame = websocket_frames.parse; local parse_frame = websocket_frames.parse;
@ -27,6 +28,8 @@ local parse_close = websocket_frames.parse_close;
local t_concat = table.concat; local t_concat = table.concat;
local stanza_size_limit = module:get_option_number("c2s_stanza_size_limit", 10 * 1024 * 1024);
local frame_fragment_limit = module:get_option_number("websocket_frame_fragment_limit", 8);
local stream_close_timeout = module:get_option_number("c2s_close_timeout", 5); local stream_close_timeout = module:get_option_number("c2s_close_timeout", 5);
local consider_websocket_secure = module:get_option_boolean("consider_websocket_secure"); local consider_websocket_secure = module:get_option_boolean("consider_websocket_secure");
local cross_domain = module:get_option_set("cross_domain_websocket", {}); local cross_domain = module:get_option_set("cross_domain_websocket", {});
@ -269,14 +272,16 @@ function handle_request(event)
session.open_stream = session_open_stream; session.open_stream = session_open_stream;
session.close = session_close; session.close = session_close;
local frameBuffer = ""; -- max frame header is 22 bytes
local frameBuffer = dbuffer.new(stanza_size_limit + 22, frame_fragment_limit);
add_filter(session, "bytes/in", function(data) add_filter(session, "bytes/in", function(data)
frameBuffer:write(data);
local cache = {}; local cache = {};
frameBuffer = frameBuffer .. data;
local frame, length = parse_frame(frameBuffer); local frame, length = parse_frame(frameBuffer);
while frame do while frame do
frameBuffer = frameBuffer:sub(length + 1); frameBuffer:discard(length);
local result = handle_frame(frame); local result = handle_frame(frame);
if not result then return; end if not result then return; end
cache[#cache+1] = filter_open_close(result); cache[#cache+1] = filter_open_close(result);