mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00

When a file handle is needed and the last event in the queue is also a get_file_handle event with the same arguments, instead of queueing a new event, just remember to cache/re-use the resulting handle from the previous event. This depends on get_file_handle handlers not changing global state that is also used to derive the file handle string.
36 lines
1 KiB
Text
36 lines
1 KiB
Text
@load ./main
|
|
@load ./utils
|
|
@load base/utils/conn-ids
|
|
@load base/frameworks/file-analysis/main
|
|
|
|
module HTTP;
|
|
|
|
export {
|
|
## Determines whether the default :bro:see:`get_file_handle` handler
|
|
## is used to return file handles to the file analysis framework.
|
|
## Redefine to true in order to provide a custom handler which overrides
|
|
## the default HTTP.
|
|
const disable_default_file_handle_provider: bool = F &redef;
|
|
|
|
## Default file handle provider for HTTP.
|
|
function get_file_handle(c: connection, is_orig: bool): string
|
|
{
|
|
if ( ! c?$http ) return "";
|
|
|
|
if ( c$http$range_request )
|
|
return cat(ANALYZER_HTTP, " ", is_orig, " ", c$id$orig_h,
|
|
" ", build_url(c$http));
|
|
|
|
return cat(ANALYZER_HTTP, " ", c$start_time, " ", is_orig,
|
|
" ", c$http$trans_depth, " ", id_string(c$id));
|
|
}
|
|
}
|
|
|
|
module GLOBAL;
|
|
|
|
event get_file_handle(tag: AnalyzerTag, c: connection, is_orig: bool)
|
|
{
|
|
if ( tag != ANALYZER_HTTP ) return;
|
|
if ( HTTP::disable_default_file_handle_provider ) return;
|
|
return_file_handle(HTTP::get_file_handle(c, is_orig));
|
|
}
|