mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00

This adds a "policy" hook into the logging framework's streams and filters to replace the existing log filter predicates. The hook signature is as follows: hook(rec: any, id: Log::ID, filter: Log::Filter); The logging manager invokes hooks on each log record. Hooks can veto log records via a break, and modify them if necessary. Log filters inherit the stream-level hook, but can override or remove the hook as needed. The distribution's existing log streams now come with pre-defined hooks that users can add handlers to. Their name is standardized as "log_policy" by convention, with additional suffixes when a module provides multiple streams. The following adds a handler to the Conn module's default log policy hook: hook Conn::log_policy(rec: Conn::Info, id: Log::ID, filter: Log::Filter) { if ( some_veto_reason(rec) ) break; } By default, this handler will get invoked for any log filter associated with the Conn::LOG stream. The existing predicates are deprecated for removal in 4.1 but continue to work.
85 lines
2.1 KiB
Text
85 lines
2.1 KiB
Text
##! A very basic DNP3 analysis script that just logs requests and replies.
|
|
|
|
@load ./consts
|
|
@load base/protocols/conn/removal-hooks
|
|
|
|
module DNP3;
|
|
|
|
export {
|
|
redef enum Log::ID += { LOG };
|
|
|
|
global log_policy: Log::PolicyHook;
|
|
|
|
type Info: record {
|
|
## Time of the request.
|
|
ts: time &log;
|
|
## Unique identifier for the connection.
|
|
uid: string &log;
|
|
## Identifier for the connection.
|
|
id: conn_id &log;
|
|
## The name of the function message in the request.
|
|
fc_request: string &log &optional;
|
|
## The name of the function message in the reply.
|
|
fc_reply: string &log &optional;
|
|
## The response's "internal indication number".
|
|
iin: count &log &optional;
|
|
};
|
|
|
|
## Event that can be handled to access the DNP3 record as it is sent on
|
|
## to the logging framework.
|
|
global log_dnp3: event(rec: Info);
|
|
|
|
## DNP3 finalization hook. Remaining DNP3 info may get logged when it's called.
|
|
global finalize_dnp3: Conn::RemovalHook;
|
|
}
|
|
|
|
redef record connection += {
|
|
dnp3: Info &optional;
|
|
};
|
|
|
|
const ports = { 20000/tcp , 20000/udp };
|
|
redef likely_server_ports += { ports };
|
|
|
|
event zeek_init() &priority=5
|
|
{
|
|
Log::create_stream(DNP3::LOG, [$columns=Info, $ev=log_dnp3, $path="dnp3", $policy=log_policy]);
|
|
Analyzer::register_for_ports(Analyzer::ANALYZER_DNP3_TCP, ports);
|
|
}
|
|
|
|
event dnp3_application_request_header(c: connection, is_orig: bool, application_control: count, fc: count)
|
|
{
|
|
if ( ! c?$dnp3 )
|
|
{
|
|
c$dnp3 = [$ts=network_time(), $uid=c$uid, $id=c$id];
|
|
Conn::register_removal_hook(c, finalize_dnp3);
|
|
}
|
|
|
|
c$dnp3$ts = network_time();
|
|
c$dnp3$fc_request = function_codes[fc];
|
|
}
|
|
|
|
event dnp3_application_response_header(c: connection, is_orig: bool, application_control: count, fc: count, iin: count)
|
|
{
|
|
if ( ! c?$dnp3 )
|
|
{
|
|
c$dnp3 = [$ts=network_time(), $uid=c$uid, $id=c$id];
|
|
Conn::register_removal_hook(c, finalize_dnp3);
|
|
}
|
|
|
|
c$dnp3$ts = network_time();
|
|
c$dnp3$fc_reply = function_codes[fc];
|
|
c$dnp3$iin = iin;
|
|
|
|
Log::write(LOG, c$dnp3);
|
|
|
|
delete c$dnp3;
|
|
}
|
|
|
|
hook finalize_dnp3(c: connection)
|
|
{
|
|
if ( ! c?$dnp3 )
|
|
return;
|
|
|
|
Log::write(LOG, c$dnp3);
|
|
delete c$dnp3;
|
|
}
|