This commit is contained in:
wiaamm
2025-12-03 00:29:51 +02:00
parent e8e6c52115
commit 77d1b56294
2 changed files with 173 additions and 260 deletions

View File

@@ -8,18 +8,14 @@ local NanoHandler = {}
NanoHandler.PRIORITY = 3000 NanoHandler.PRIORITY = 3000
NanoHandler.VERSION = "1.0.0" NanoHandler.VERSION = "1.0.0"
NanoHandler.sessions = {}
NanoHandler.processed_requests = {}
function NanoHandler.init_worker() function NanoHandler.init_worker()
nano.init_attachment() nano.init_attachment()
end end
function NanoHandler.access(conf) function NanoHandler.access(conf)
kong.log.err("1-111111111 ACCESS PHASE START -------------------------------------------------------------------------------------------------------------------------------------------------") kong.log.err("1-ACCESS PHASE START ========================================")
local route = kong.router.get_route() if not kong.router.get_route() then
if not route then
kong.log.err("ACCESS SKIPPED: no route matched") kong.log.err("ACCESS SKIPPED: no route matched")
return return
end end
@@ -49,11 +45,6 @@ function NanoHandler.access(conf)
local session_id = nano.generate_session_id() local session_id = nano.generate_session_id()
kong.service.request.set_header("x-session-id", tostring(session_id)) kong.service.request.set_header("x-session-id", tostring(session_id))
if NanoHandler.processed_requests[session_id] then
kong.ctx.plugin.blocked = true
return
end
local session_data = nano.init_session(session_id) local session_data = nano.init_session(session_id)
if not session_data then if not session_data then
kong.log.err("Failed to initialize session - failing open (no session created)") kong.log.err("Failed to initialize session - failing open (no session created)")
@@ -106,6 +97,9 @@ function NanoHandler.access(conf)
kong.ctx.plugin.session_data = nil kong.ctx.plugin.session_data = nil
return result return result
end end
-- Free body from memory after sending
body = nil
collectgarbage("step", 100)
else else
kong.log.err("Request body not in memory, attempting to read from buffer/file") kong.log.err("Request body not in memory, attempting to read from buffer/file")
@@ -123,6 +117,9 @@ function NanoHandler.access(conf)
kong.ctx.plugin.session_data = nil kong.ctx.plugin.session_data = nil
return result return result
end end
-- Free body_data from memory
body_data = nil
collectgarbage("step", 100)
else else
local body_file = ngx.var.request_body_file local body_file = ngx.var.request_body_file
if body_file then if body_file then
@@ -144,6 +141,10 @@ function NanoHandler.access(conf)
kong.ctx.plugin.session_id = nil kong.ctx.plugin.session_id = nil
kong.ctx.plugin.session_data = nil kong.ctx.plugin.session_data = nil
return result return result
end
-- Free entire_body from memory
entire_body = nil
collectgarbage("step", 100)
else else
kong.log.err("Empty body file") kong.log.err("Empty body file")
end end
@@ -153,7 +154,9 @@ function NanoHandler.access(conf)
end end
end end
end end
end
-- End request inspection
local ok, verdict, response = pcall(function() local ok, verdict, response = pcall(function()
return nano.end_inspection(session_id, session_data, nano.HttpChunkType.HTTP_REQUEST_END) return nano.end_inspection(session_id, session_data, nano.HttpChunkType.HTTP_REQUEST_END)
end) end)
@@ -163,6 +166,7 @@ function NanoHandler.access(conf)
kong.ctx.plugin.inspection_complete = true kong.ctx.plugin.inspection_complete = true
nano.fini_session(session_data) nano.fini_session(session_data)
nano.cleanup_all() nano.cleanup_all()
collectgarbage("collect")
kong.ctx.plugin.session_id = nil kong.ctx.plugin.session_id = nil
kong.ctx.plugin.session_data = nil kong.ctx.plugin.session_data = nil
return return
@@ -179,181 +183,98 @@ function NanoHandler.access(conf)
return result return result
end end
end end
else
local ok, verdict, response = pcall(function()
return nano.end_inspection(session_id, session_data, nano.HttpChunkType.HTTP_REQUEST_END)
end)
if not ok then
kong.log.err("Error ending request inspection (no body): ", verdict, " - failing open")
kong.ctx.plugin.inspection_complete = true
nano.fini_session(session_data)
nano.cleanup_all()
kong.ctx.plugin.session_id = nil
kong.ctx.plugin.session_data = nil
return
end
if verdict == nano.AttachmentVerdict.DROP then
kong.ctx.plugin.blocked = true
kong.ctx.plugin.inspection_complete = true
local result = nano.handle_custom_response(session_data, response)
nano.fini_session(session_data)
nano.cleanup_all()
kong.ctx.plugin.session_id = nil
kong.ctx.plugin.session_data = nil
return result
end
end
end
function NanoHandler.header_filter(conf) function NanoHandler.header_filter(conf)
kong.log.err("2-222222222 HEADER_FILTER PHASE START -------------------------------------------------------------------------------------------------------------------------------------------------") kong.log.err("2-HEADER_FILTER PHASE START")
local ctx = kong.ctx.plugin local ctx = kong.ctx.plugin
if ctx.blocked then if ctx.blocked or ctx.inspection_complete then
return return
end end
if ctx.inspection_complete then if not ctx.session_id or not ctx.session_data then
kong.log.err("Inspection already completed, skipping header_filter") kong.log.err("No session data in header_filter")
return
end
local session_id = ctx.session_id
local session_data = ctx.session_data
if not session_id or not session_data then
kong.log.err("No session data found in header_filter")
return return
end end
local headers = kong.response.get_headers() local headers = kong.response.get_headers()
local header_data = nano.handleHeaders(headers)
local status_code = kong.response.get_status() local status_code = kong.response.get_status()
local content_length = tonumber(headers["content-length"]) or 0 local content_length = tonumber(headers["content-length"]) or 0
kong.log.err("2-BEFORE send_response_headers call - session_id=", session_id, " status=", status_code, " content_length=", content_length)
local ok, verdict, response = pcall(function() local ok, verdict, response = pcall(function()
return nano.send_response_headers(session_id, session_data, header_data, status_code, content_length) return nano.send_response_headers(ctx.session_id, ctx.session_data, nano.handleHeaders(headers), status_code, content_length)
end) end)
if not ok then if not ok then
kong.log.err("2-ERROR in send_response_headers: ", tostring(verdict), " - failing open, skipping response inspection") kong.log.err("send_response_headers failed: ", tostring(verdict))
ctx.inspection_complete = true ctx.inspection_complete = true
nano.fini_session(session_data) nano.fini_session(ctx.session_data)
nano.cleanup_all() nano.cleanup_all()
collectgarbage("collect")
ctx.session_id = nil ctx.session_id = nil
ctx.session_data = nil ctx.session_data = nil
return return
end end
kong.log.err("2-Response headers verdict: ", verdict, " (INSPECT=", nano.AttachmentVerdict.INSPECT, ", ACCEPT=", nano.AttachmentVerdict.ACCEPT, ", DROP=", nano.AttachmentVerdict.DROP, ")")
if verdict == nano.AttachmentVerdict.DROP then if verdict == nano.AttachmentVerdict.DROP then
kong.ctx.plugin.blocked = true ctx.blocked = true
ctx.inspection_complete = true ctx.inspection_complete = true
local custom_result = nano.handle_custom_response(session_data, response) local custom_result = nano.handle_custom_response(ctx.session_data, response)
nano.fini_session(session_data) nano.fini_session(ctx.session_data)
nano.cleanup_all() nano.cleanup_all()
ctx.session_id = nil ctx.session_id = nil
ctx.session_data = nil ctx.session_data = nil
return custom_result return custom_result
end end
kong.log.err("2-Response headers verdict: ", verdict, " - continuing to body_filter (will inspect body chunks)")
end end
function NanoHandler.body_filter(conf) function NanoHandler.body_filter(conf)
local ctx = kong.ctx.plugin local ctx = kong.ctx.plugin
local eof = ngx.arg[2] -- Read EOF flag first (no memory impact) local eof = ngx.arg[2]
-- CRITICAL: Check blocked/complete status BEFORE reading chunk into Lua memory -- Log first chunk only
if ctx.blocked then if not ctx.body_filter_start_time then
if eof and ctx.session_data and not ctx.session_cleaned then kong.log.err("3-BODY_FILTER PHASE START")
kong.log.err("3-BLOCKED + EOF: cleaning up session to prevent memory leak") end
-- Fast path: skip if already blocked or inspection complete
if ctx.blocked or ctx.inspection_complete then
ngx.arg[1] = nil -- Discard chunk
collectgarbage("step", 100)
return
end
if not ctx.session_id or not ctx.session_data then
ngx.arg[1] = nil
collectgarbage("step", 100)
return
end
-- Initialize timeout tracking on first chunk
if not ctx.body_filter_start_time then
ctx.body_filter_start_time = ngx.now() * 1000
end
-- Check timeout (10 seconds)
local elapsed = (ngx.now() * 1000) - ctx.body_filter_start_time
if elapsed > 10000 then
kong.log.err("Timeout after ", elapsed, "ms - cleaning up session")
ngx.arg[1] = nil -- Discard chunk first
ctx.inspection_complete = true
nano.fini_session(ctx.session_data) nano.fini_session(ctx.session_data)
nano.cleanup_all() nano.cleanup_all()
collectgarbage("collect")
ctx.session_id = nil ctx.session_id = nil
ctx.session_data = nil ctx.session_data = nil
ctx.session_cleaned = true return
end
return -- Exit without reading chunk
end end
if ctx.inspection_complete then -- Read chunk for active inspection
-- Only log on EOF to reduce spam
if eof then
kong.log.err("3-INSPECTION_COMPLETE: EOF received, passing through")
end
return -- Exit without reading chunk - PREVENTS MEMORY LEAK
end
local session_id = ctx.session_id
local session_data = ctx.session_data
if not session_id or not session_data then
-- Only log on EOF to reduce spam
if eof then
kong.log.err("3-NO_SESSION: EOF received, passing through")
end
return -- Exit without reading chunk - PREVENTS MEMORY LEAK
end
-- Initialize tracking on first chunk
if not ctx.body_buffer_chunk then
ctx.body_buffer_chunk = 0
ctx.body_filter_start_time = ngx.now() * 1000
ctx.total_body_size = 0
end
-- CRITICAL: Check timeout BEFORE reading chunk into memory
local current_time = ngx.now() * 1000
local elapsed = current_time - ctx.body_filter_start_time
if elapsed > 150000 then
kong.log.err("Body filter timeout exceeded (", elapsed, "ms) - finalizing session and entering passthrough mode")
kong.log.err("------------------------------------------------------------------------")
kong.log.err("SETTING inspection_complete=true in body_filter (TIMEOUT)")
kong.log.err("------------------------------------------------------------------------")
ctx.inspection_complete = true
ctx.session_cleaned = true
nano.fini_session(session_data)
nano.cleanup_all()
ctx.session_id = nil
ctx.session_data = nil
-- CRITICAL: Force garbage collection to reclaim all chunk memory immediately
kong.log.err("Forcing garbage collection after timeout cleanup")
collectgarbage("collect") -- Full GC to reclaim ~1000 chunks worth of memory
local mem_after = collectgarbage("count")
kong.log.err("Memory after timeout GC: ", string.format("%.2f", mem_after), " KB (", string.format("%.2f", mem_after/1024), " MB)")
return -- Exit WITHOUT reading chunk - prevents memory accumulation
end
-- NOW read chunk into Lua memory (only when actively inspecting and not timed out)
local chunk = ngx.arg[1] local chunk = ngx.arg[1]
local chunk_size = chunk and #chunk or 0
-- Track total body size
ctx.total_body_size = ctx.total_body_size + chunk_size
-- Log chunk processing
kong.log.err("3-BODY_FILTER: chunk_size=" .. chunk_size .. " eof=" .. tostring(eof) .. " total=" .. ctx.total_body_size)
-- Aggressive GC for large responses (every 10MB)
if ctx.total_body_size > 0 and ctx.total_body_size % 10485760 < chunk_size then
kong.log.err("Large response streaming (", ctx.total_body_size, " bytes total), running GC")
collectgarbage("step", 1000)
end
if chunk and #chunk > 0 then if chunk and #chunk > 0 then
ctx.body_seen = true
-- Only send to nano if inspection not yet complete
if not ctx.inspection_complete then
local ok, result = pcall(function() local ok, result = pcall(function()
return {nano.send_body(session_id, session_data, chunk, nano.HttpChunkType.HTTP_RESPONSE_BODY)} return {nano.send_body(ctx.session_id, ctx.session_data, chunk, nano.HttpChunkType.HTTP_RESPONSE_BODY)}
end) end)
if ok then if ok then
@@ -361,139 +282,107 @@ function NanoHandler.body_filter(conf)
local response = result[2] local response = result[2]
local modifications = result[3] local modifications = result[3]
kong.log.err("CHUNK #", ctx.body_buffer_chunk, " VERDICT: ", verdict, " (INSPECT=", nano.AttachmentVerdict.INSPECT, ", ACCEPT=", nano.AttachmentVerdict.ACCEPT, ", DROP=", nano.AttachmentVerdict.DROP, ")")
if modifications then if modifications then
chunk = nano.handle_body_modifications(chunk, modifications, ctx.body_buffer_chunk) chunk = nano.handle_body_modifications(chunk, modifications, 0)
ngx.arg[1] = chunk ngx.arg[1] = chunk
end end
ctx.body_buffer_chunk = ctx.body_buffer_chunk + 1
if verdict == nano.AttachmentVerdict.DROP then if verdict == nano.AttachmentVerdict.DROP then
ctx.plugin.blocked = true ctx.blocked = true
ctx.inspection_complete = true ctx.inspection_complete = true
ctx.session_cleaned = true local custom_result = nano.handle_custom_response(ctx.session_data, response)
local custom_result = nano.handle_custom_response(session_data, response) nano.fini_session(ctx.session_data)
nano.fini_session(session_data)
nano.cleanup_all() nano.cleanup_all()
collectgarbage("collect")
ctx.session_id = nil ctx.session_id = nil
ctx.session_data = nil ctx.session_data = nil
-- Force GC after DROP to reclaim memory before returning custom response
collectgarbage("collect")
return custom_result return custom_result
end end
else else
kong.log.err("nano.send_body failed, failing open: ", tostring(result)) kong.log.err("nano.send_body failed: ", tostring(result), " - cleaning up session")
end ctx.inspection_complete = true
else nano.fini_session(ctx.session_data)
-- Inspection already complete - just count the chunk and pass through nano.cleanup_all()
kong.log.err("CHUNK #", ctx.body_buffer_chunk, " - skipping nano.send_body (inspection complete)") collectgarbage("collect")
ctx.body_buffer_chunk = ctx.body_buffer_chunk + 1 ctx.session_id = nil
ctx.session_data = nil
return
end end
end end
-- Only process EOF if inspection is not yet complete (session still active) -- Process EOF
if not ctx.inspection_complete and (eof or (ctx.expect_body == false and not ctx.body_seen)) then if eof then
local ok, result = pcall(function() local ok, result = pcall(function()
return {nano.end_inspection(session_id, session_data, nano.HttpChunkType.HTTP_RESPONSE_END)} return {nano.end_inspection(ctx.session_id, ctx.session_data, nano.HttpChunkType.HTTP_RESPONSE_END)}
end) end)
if ok then if ok then
local verdict = result[1] local verdict = result[1]
local response = result[2] local response = result[2]
kong.log.err("3-Response END verdict: " .. tostring(verdict))
if verdict == nano.AttachmentVerdict.DROP then if verdict == nano.AttachmentVerdict.DROP then
ctx.plugin.blocked = true ctx.blocked = true
ctx.inspection_complete = true ctx.inspection_complete = true
ctx.session_cleaned = true local custom_result = nano.handle_custom_response(ctx.session_data, response)
local custom_result = nano.handle_custom_response(session_data, response) nano.fini_session(ctx.session_data)
nano.fini_session(session_data)
nano.cleanup_all() nano.cleanup_all()
collectgarbage("collect")
ctx.session_id = nil ctx.session_id = nil
ctx.session_data = nil ctx.session_data = nil
return custom_result return custom_result
else else
-- Normal case: ACCEPT or INSPECT verdict ngx.arg[1] = nil -- Discard chunk
kong.log.err("------------------------------------------------------------------------")
kong.log.err("SETTING inspection_complete=true in body_filter (EOF processing complete)")
kong.log.err("------------------------------------------------------------------------")
ctx.inspection_complete = true ctx.inspection_complete = true
ctx.session_cleaned = true nano.fini_session(ctx.session_data)
kong.log.err("EOF reached - finalizing session in body_filter")
nano.fini_session(session_data)
nano.cleanup_all() nano.cleanup_all()
collectgarbage("collect")
ctx.session_id = nil ctx.session_id = nil
ctx.session_data = nil ctx.session_data = nil
-- Force GC to reclaim chunk memory immediately after session cleanup
if ctx.total_body_size and ctx.total_body_size > 1048576 then -- If processed > 1MB
collectgarbage("collect")
kong.log.debug("Ran GC after processing ", ctx.total_body_size, " bytes")
end
end end
else else
kong.log.err("nano.end_inspection failed, failing open: ", tostring(result)) kong.log.err("nano.end_inspection failed: ", tostring(result), " - cleaning up session")
ctx.inspection_complete = true ctx.inspection_complete = true
nano.fini_session(ctx.session_data)
nano.cleanup_all()
collectgarbage("collect")
ctx.session_id = nil
ctx.session_data = nil
return
end end
end end
end end
function NanoHandler.log(conf) function NanoHandler.log(conf)
kong.log.err("4-44444444444444444444-------------------------------------------------------------------------------------------------------------------------------------------------") kong.log.err("4-LOG PHASE START")
local ctx = kong.ctx.plugin local ctx = kong.ctx.plugin
-- CRITICAL: Force garbage collection in log phase to prevent OOM -- Force GC if memory is high
-- This is the last chance to reclaim memory before request completes
local mem_before = collectgarbage("count") local mem_before = collectgarbage("count")
if mem_before > 10240 then -- If memory > 10 MB, force full GC if mem_before > 10240 then
kong.log.err("High memory detected in log phase: ", string.format("%.2f", mem_before), " KB - forcing full GC") kong.log.err("High memory: ", string.format("%.2f", mem_before), " KB - forcing GC")
collectgarbage("collect") collectgarbage("collect")
local mem_after = collectgarbage("count") local mem_after = collectgarbage("count")
kong.log.err("Memory after log phase GC: ", string.format("%.2f", mem_after), " KB (freed ", string.format("%.2f", mem_before - mem_after), " KB)") kong.log.err("Memory after GC: ", string.format("%.2f", mem_after), " KB (freed ", string.format("%.2f", mem_before - mem_after), " KB)")
end end
-- Log memory usage periodically (every 100th request) -- Log memory periodically
if ngx.worker.id() == 0 then if ngx.worker.id() == 0 then
local request_count = ngx.shared.kong_cache and ngx.shared.kong_cache:incr("request_count", 1, 0) or 0 local request_count = ngx.shared.kong_cache and ngx.shared.kong_cache:incr("request_count", 1, 0) or 0
if request_count % 100 == 0 then if request_count % 100 == 0 then
local mem_kb = collectgarbage("count") local mem_kb = collectgarbage("count")
kong.log.err("MEMORY: Lua memory usage: ", string.format("%.2f", mem_kb), " KB (", string.format("%.2f", mem_kb/1024), " MB)") kong.log.err("Lua memory: ", string.format("%.2f", mem_kb), " KB")
end end
end end
if ctx.session_id and ctx.session_data then -- Emergency cleanup if body_filter never completed
-- If inspection already complete, it was cleaned up in body_filter - skip if ctx.session_id and ctx.session_data and not ctx.inspection_complete then
if ctx.inspection_complete then kong.log.err("Emergency cleanup for session ", ctx.session_id)
kong.log.err("Log phase: inspection already complete, session already finalized in body_filter") nano.fini_session(ctx.session_data)
return
end
-- If we reach here, body_filter never completed (connection closed/timeout/etc)
-- We MUST clean up here to prevent memory leak
kong.log.err("Log phase: body_filter never completed - finalizing session now to prevent memory leak")
local session_data = ctx.session_data
local session_id = ctx.session_id
kong.log.err("Log phase: finalizing session ", session_id)
nano.fini_session(session_data)
nano.cleanup_all() nano.cleanup_all()
collectgarbage("collect")
ctx.inspection_complete = true
ctx.session_id = nil ctx.session_id = nil
ctx.session_data = nil ctx.session_data = nil
ctx.inspection_complete = true
kong.log.err("Session ", session_id, " finalized in log phase due to incomplete body_filter processing")
else
kong.log.err("Log phase: no session data to finalize")
end end
end end

View File

@@ -363,6 +363,7 @@ static int lua_send_body(lua_State *L) {
return lua_error(L); return lua_error(L);
} }
if (body_len <= 8 * 1024) {
HttpBody http_chunks; HttpBody http_chunks;
http_chunks.bodies_count = 1; http_chunks.bodies_count = 1;
@@ -392,6 +393,54 @@ static int lua_send_body(lua_State *L) {
return 3; return 3;
} }
const size_t CHUNK_SIZE = 8 * 1024;
size_t num_chunks = ((body_len - 1) / CHUNK_SIZE) + 1;
if (num_chunks > 10000) {
num_chunks = 10000;
}
HttpBody http_chunks;
http_chunks.bodies_count = num_chunks;
http_chunks.data = (nano_str_t*)malloc(num_chunks * sizeof(nano_str_t));
if (!http_chunks.data) {
lua_pushstring(L, "Error: Failed to allocate memory for chunks");
return lua_error(L);
}
for (size_t i = 0; i < num_chunks; i++) {
nano_str_t* chunk_ptr = (nano_str_t*)((char*)http_chunks.data + (i * sizeof(nano_str_t)));
size_t chunk_start = i * CHUNK_SIZE;
size_t chunk_len = (i == num_chunks - 1) ? (body_len - chunk_start) : CHUNK_SIZE;
chunk_ptr->data = (unsigned char*)(body_chunk + chunk_start);
chunk_ptr->len = chunk_len;
}
AttachmentData attachment_data;
attachment_data.session_id = session_id;
attachment_data.session_data = session_data;
attachment_data.chunk_type = chunk_type;
attachment_data.data = &http_chunks;
AttachmentVerdictResponse* res_ptr = malloc(sizeof(AttachmentVerdictResponse));
*res_ptr = SendDataNanoAttachment(attachment, &attachment_data);
free(http_chunks.data);
lua_pushinteger(L, res_ptr->verdict);
lua_pushlightuserdata(L, res_ptr);
if (res_ptr->modifications) {
lua_pushlightuserdata(L, res_ptr->modifications);
} else {
lua_pushnil(L);
}
return 3;
}
static int lua_end_inspection(lua_State *L) { static int lua_end_inspection(lua_State *L) {
NanoAttachment* attachment = (NanoAttachment*) lua_touserdata(L, 1); NanoAttachment* attachment = (NanoAttachment*) lua_touserdata(L, 1);
SessionID session_id = luaL_checkinteger(L, 2); SessionID session_id = luaL_checkinteger(L, 2);
@@ -449,30 +498,6 @@ static int lua_send_response_headers(lua_State *L) {
return 2; return 2;
} }
static int lua_send_content_length(lua_State *L) {
NanoAttachment* attachment = (NanoAttachment*) lua_touserdata(L, 1);
SessionID session_id = luaL_checkinteger(L, 2);
HttpSessionData *session_data = (HttpSessionData*) lua_touserdata(L, 3);
uint64_t content_length = luaL_checkinteger(L, 4);
if (!attachment || !session_data) {
lua_pushstring(L, "Error: Invalid attachment or session_data");
return lua_error(L);
}
AttachmentData attachment_data;
attachment_data.session_id = session_id;
attachment_data.session_data = session_data;
attachment_data.chunk_type = CONTENT_LENGTH;
attachment_data.data = &content_length;
AttachmentVerdictResponse* res_ptr = malloc(sizeof(AttachmentVerdictResponse));
*res_ptr = SendDataNanoAttachment(attachment, &attachment_data);
lua_pushinteger(L, res_ptr->verdict);
lua_pushlightuserdata(L, res_ptr);
return 2;
}
static int lua_free_verdict_response(lua_State *L) { static int lua_free_verdict_response(lua_State *L) {
AttachmentVerdictResponse *response = (AttachmentVerdictResponse *)lua_touserdata(L, 1); AttachmentVerdictResponse *response = (AttachmentVerdictResponse *)lua_touserdata(L, 1);
if (!response) return 0; if (!response) return 0;
@@ -493,7 +518,6 @@ static const struct luaL_Reg nano_attachment_lib[] = {
{"setHeaderElement", lua_setHeaderElement}, {"setHeaderElement", lua_setHeaderElement},
{"send_data", lua_send_data}, {"send_data", lua_send_data},
{"send_response_headers", lua_send_response_headers}, {"send_response_headers", lua_send_response_headers},
{"send_content_length", lua_send_content_length},
{"fini_session", lua_fini_session}, {"fini_session", lua_fini_session},
{"is_session_finalized", lua_is_session_finalized}, {"is_session_finalized", lua_is_session_finalized},
{"init_session", lua_init_session}, {"init_session", lua_init_session},