mirror of
https://github.com/zeek/zeek.git
synced 2025-10-04 07:38:19 +00:00

This is mostly to avoid per-packet violations for packet analyzers that have sessions attached to them.
257 lines
7.3 KiB
C++
257 lines
7.3 KiB
C++
// See the file "COPYING" in the main distribution directory for copyright.
|
|
|
|
#include "zeek/packet_analysis/Analyzer.h"
|
|
|
|
#include "zeek/DebugLogger.h"
|
|
#include "zeek/Event.h"
|
|
#include "zeek/RunState.h"
|
|
#include "zeek/session/Manager.h"
|
|
#include "zeek/util.h"
|
|
|
|
namespace zeek::packet_analysis
|
|
{
|
|
|
|
Analyzer::Analyzer(std::string name, bool report_unknown_protocols)
|
|
: report_unknown_protocols(report_unknown_protocols)
|
|
{
|
|
Tag t = packet_mgr->GetComponentTag(name);
|
|
|
|
if ( ! t )
|
|
reporter->InternalError("unknown packet_analysis name %s", name.c_str());
|
|
|
|
Init(t);
|
|
}
|
|
|
|
Analyzer::Analyzer(const Tag& tag)
|
|
{
|
|
Init(tag);
|
|
}
|
|
|
|
void Analyzer::Init(const Tag& _tag)
|
|
{
|
|
tag = _tag;
|
|
}
|
|
|
|
void Analyzer::Initialize()
|
|
{
|
|
default_analyzer = LoadAnalyzer("default_analyzer");
|
|
}
|
|
|
|
zeek::packet_analysis::AnalyzerPtr Analyzer::LoadAnalyzer(const std::string& name)
|
|
{
|
|
auto& analyzer = zeek::id::find(GetModuleName() + name);
|
|
if ( ! analyzer )
|
|
return nullptr;
|
|
|
|
auto& analyzer_val = analyzer->GetVal();
|
|
if ( ! analyzer_val )
|
|
return nullptr;
|
|
|
|
return packet_mgr->GetAnalyzer(analyzer_val->AsEnumVal());
|
|
}
|
|
|
|
const Tag Analyzer::GetAnalyzerTag() const
|
|
{
|
|
assert(tag);
|
|
return tag;
|
|
}
|
|
|
|
const char* Analyzer::GetAnalyzerName() const
|
|
{
|
|
assert(tag);
|
|
return packet_mgr->GetComponentName(tag).c_str();
|
|
}
|
|
|
|
bool Analyzer::IsAnalyzer(const char* name)
|
|
{
|
|
assert(tag);
|
|
return packet_mgr->GetComponentName(tag) == name;
|
|
}
|
|
|
|
AnalyzerPtr Analyzer::Lookup(uint32_t identifier) const
|
|
{
|
|
return dispatcher.Lookup(identifier);
|
|
}
|
|
|
|
bool Analyzer::ForwardPacket(size_t len, const uint8_t* data, Packet* packet,
|
|
uint32_t identifier) const
|
|
{
|
|
auto inner_analyzer = Lookup(identifier);
|
|
if ( ! inner_analyzer )
|
|
{
|
|
for ( const auto& child : analyzers_to_detect )
|
|
{
|
|
if ( child->DetectProtocol(len, data, packet) )
|
|
{
|
|
DBG_LOG(DBG_PACKET_ANALYSIS,
|
|
"Protocol detection in %s succeeded, next layer analyzer is %s",
|
|
GetAnalyzerName(), child->GetAnalyzerName());
|
|
inner_analyzer = child;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
if ( ! inner_analyzer )
|
|
inner_analyzer = default_analyzer;
|
|
|
|
if ( ! inner_analyzer )
|
|
{
|
|
DBG_LOG(DBG_PACKET_ANALYSIS,
|
|
"Analysis in %s failed, could not find analyzer for identifier %#x.",
|
|
GetAnalyzerName(), identifier);
|
|
|
|
if ( report_unknown_protocols )
|
|
packet_mgr->ReportUnknownProtocol(GetAnalyzerName(), identifier, data, len);
|
|
|
|
return false;
|
|
}
|
|
|
|
DBG_LOG(DBG_PACKET_ANALYSIS, "Analysis in %s succeeded, next layer identifier is %#x.",
|
|
GetAnalyzerName(), identifier);
|
|
return inner_analyzer->AnalyzePacket(len, data, packet);
|
|
}
|
|
|
|
bool Analyzer::ForwardPacket(size_t len, const uint8_t* data, Packet* packet) const
|
|
{
|
|
AnalyzerPtr inner_analyzer = nullptr;
|
|
|
|
for ( const auto& child : analyzers_to_detect )
|
|
{
|
|
if ( child->DetectProtocol(len, data, packet) )
|
|
{
|
|
DBG_LOG(DBG_PACKET_ANALYSIS,
|
|
"Protocol detection in %s succeeded, next layer analyzer is %s",
|
|
GetAnalyzerName(), child->GetAnalyzerName());
|
|
inner_analyzer = child;
|
|
break;
|
|
}
|
|
}
|
|
|
|
if ( ! inner_analyzer )
|
|
inner_analyzer = default_analyzer;
|
|
|
|
if ( ! inner_analyzer )
|
|
{
|
|
DBG_LOG(DBG_PACKET_ANALYSIS, "Analysis in %s stopped, no default analyzer available.",
|
|
GetAnalyzerName());
|
|
|
|
if ( report_unknown_protocols )
|
|
Weird("no_suitable_analyzer_found", packet);
|
|
|
|
return false;
|
|
}
|
|
|
|
return inner_analyzer->AnalyzePacket(len, data, packet);
|
|
}
|
|
|
|
void Analyzer::DumpDebug() const
|
|
{
|
|
#ifdef DEBUG
|
|
DBG_LOG(DBG_PACKET_ANALYSIS, "Dispatcher for %s", this->GetAnalyzerName());
|
|
dispatcher.DumpDebug();
|
|
#endif
|
|
}
|
|
|
|
void Analyzer::RegisterProtocol(uint32_t identifier, AnalyzerPtr child)
|
|
{
|
|
if ( run_state::detail::zeek_init_done )
|
|
reporter->FatalError("Packet protocols cannot be registered after zeek_init has finished.");
|
|
|
|
dispatcher.Register(identifier, std::move(child));
|
|
}
|
|
|
|
void Analyzer::Weird(const char* name, Packet* packet, const char* addl) const
|
|
{
|
|
session_mgr->Weird(name, packet, addl, GetAnalyzerName());
|
|
}
|
|
|
|
void Analyzer::EnqueueAnalyzerConfirmationInfo(session::Session* session, const zeek::Tag& arg_tag)
|
|
{
|
|
static auto info_type = zeek::id::find_type<RecordType>("AnalyzerConfirmationInfo");
|
|
static auto info_c_idx = info_type->FieldOffset("c");
|
|
|
|
auto info = make_intrusive<RecordVal>(info_type);
|
|
info->Assign(info_c_idx, session->GetVal());
|
|
|
|
event_mgr.Enqueue(analyzer_confirmation_info, arg_tag.AsVal(), info);
|
|
}
|
|
|
|
void Analyzer::EnqueueAnalyzerConfirmation(session::Session* session, const zeek::Tag& arg_tag)
|
|
{
|
|
event_mgr.Enqueue(analyzer_confirmation, session->GetVal(), arg_tag.AsVal(), val_mgr->Count(0));
|
|
}
|
|
|
|
void Analyzer::AnalyzerConfirmation(session::Session* session, zeek::Tag arg_tag)
|
|
{
|
|
const auto& effective_tag = arg_tag ? arg_tag : GetAnalyzerTag();
|
|
|
|
if ( session->AnalyzerState(effective_tag) == session::AnalyzerConfirmationState::CONFIRMED )
|
|
return;
|
|
|
|
// If this session violated previously, we don't allow through a confirmation.
|
|
if ( session->AnalyzerState(effective_tag) == session::AnalyzerConfirmationState::VIOLATED )
|
|
return;
|
|
|
|
session->SetAnalyzerState(effective_tag, session::AnalyzerConfirmationState::CONFIRMED);
|
|
|
|
if ( analyzer_confirmation_info )
|
|
EnqueueAnalyzerConfirmationInfo(session, effective_tag);
|
|
|
|
if ( analyzer_confirmation )
|
|
EnqueueAnalyzerConfirmation(session, effective_tag);
|
|
}
|
|
|
|
void Analyzer::EnqueueAnalyzerViolationInfo(session::Session* session, const char* reason,
|
|
const char* data, int len, const zeek::Tag& arg_tag)
|
|
{
|
|
static auto info_type = zeek::id::find_type<RecordType>("AnalyzerViolationInfo");
|
|
static auto info_reason_idx = info_type->FieldOffset("reason");
|
|
static auto info_c_idx = info_type->FieldOffset("c");
|
|
static auto info_data_idx = info_type->FieldOffset("data");
|
|
|
|
auto info = zeek::make_intrusive<RecordVal>(info_type);
|
|
info->Assign(info_reason_idx, make_intrusive<StringVal>(reason));
|
|
info->Assign(info_c_idx, session->GetVal());
|
|
if ( data && len )
|
|
info->Assign(info_data_idx, make_intrusive<StringVal>(len, data));
|
|
|
|
event_mgr.Enqueue(analyzer_violation_info, arg_tag.AsVal(), info);
|
|
}
|
|
|
|
void Analyzer::EnqueueAnalyzerViolation(session::Session* session, const char* reason,
|
|
const char* data, int len, const zeek::Tag& arg_tag)
|
|
{
|
|
StringValPtr r;
|
|
if ( data && len )
|
|
{
|
|
const char* tmp = util::copy_string(reason);
|
|
r = make_intrusive<StringVal>(util::fmt(
|
|
"%s [%s%s]", tmp, util::fmt_bytes(data, std::min(40, len)), len > 40 ? "..." : ""));
|
|
delete[] tmp;
|
|
}
|
|
else
|
|
r = make_intrusive<StringVal>(reason);
|
|
|
|
event_mgr.Enqueue(analyzer_violation, session->GetVal(), arg_tag.AsVal(), val_mgr->Count(0),
|
|
std::move(r));
|
|
}
|
|
|
|
void Analyzer::AnalyzerViolation(const char* reason, session::Session* session, const char* data,
|
|
int len, zeek::Tag arg_tag)
|
|
{
|
|
const auto& effective_tag = arg_tag ? arg_tag : GetAnalyzerTag();
|
|
|
|
if ( session->AnalyzerState(effective_tag) == session::AnalyzerConfirmationState::VIOLATED )
|
|
return;
|
|
|
|
session->SetAnalyzerState(effective_tag, session::AnalyzerConfirmationState::VIOLATED);
|
|
|
|
if ( analyzer_violation_info )
|
|
EnqueueAnalyzerViolationInfo(session, reason, data, len, effective_tag);
|
|
|
|
if ( analyzer_violation )
|
|
EnqueueAnalyzerViolation(session, reason, data, len, effective_tag);
|
|
}
|
|
|
|
} // namespace zeek::packet_analysis
|