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

This largely copies over Spicy's `.clang-format` configuration file. The one place where we deviate is header include order since Zeek depends on headers being included in a certain order.
143 lines
3.8 KiB
C++
143 lines
3.8 KiB
C++
// See the file "COPYING" in the main distribution directory for copyright.
|
|
|
|
#include "zeek/Discard.h"
|
|
|
|
#include "zeek/zeek-config.h"
|
|
|
|
#include <algorithm>
|
|
|
|
#include "zeek/Func.h"
|
|
#include "zeek/IP.h"
|
|
#include "zeek/Reporter.h" // for InterpreterException
|
|
#include "zeek/RunState.h"
|
|
#include "zeek/Val.h"
|
|
#include "zeek/Var.h"
|
|
#include "zeek/ZeekString.h"
|
|
|
|
namespace zeek::detail {
|
|
|
|
Discarder::Discarder() {
|
|
check_ip = id::find_func("discarder_check_ip");
|
|
check_tcp = id::find_func("discarder_check_tcp");
|
|
check_udp = id::find_func("discarder_check_udp");
|
|
check_icmp = id::find_func("discarder_check_icmp");
|
|
|
|
discarder_maxlen = static_cast<int>(id::find_val("discarder_maxlen")->AsCount());
|
|
}
|
|
|
|
bool Discarder::IsActive() { return check_ip || check_tcp || check_udp || check_icmp; }
|
|
|
|
bool Discarder::NextPacket(const std::shared_ptr<IP_Hdr>& ip, int len, int caplen) {
|
|
bool discard_packet = false;
|
|
|
|
if ( check_ip ) {
|
|
zeek::Args args{ip->ToPktHdrVal()};
|
|
|
|
try {
|
|
discard_packet = check_ip->Invoke(&args)->AsBool();
|
|
}
|
|
|
|
catch ( InterpreterException& e ) {
|
|
discard_packet = false;
|
|
}
|
|
|
|
if ( discard_packet )
|
|
return discard_packet;
|
|
}
|
|
|
|
int proto = ip->NextProto();
|
|
if ( proto != IPPROTO_TCP && proto != IPPROTO_UDP && proto != IPPROTO_ICMP )
|
|
// This is not a protocol we understand.
|
|
return false;
|
|
|
|
// XXX shall we only check the first packet???
|
|
if ( ip->IsFragment() )
|
|
// Never check any fragment.
|
|
return false;
|
|
|
|
int ip_hdr_len = ip->HdrLen();
|
|
len -= ip_hdr_len; // remove IP header
|
|
caplen -= ip_hdr_len;
|
|
|
|
bool is_tcp = (proto == IPPROTO_TCP);
|
|
bool is_udp = (proto == IPPROTO_UDP);
|
|
int min_hdr_len = is_tcp ? sizeof(struct tcphdr) : (is_udp ? sizeof(struct udphdr) : sizeof(struct icmp));
|
|
|
|
if ( len < min_hdr_len || caplen < min_hdr_len )
|
|
// we don't have a complete protocol header
|
|
return false;
|
|
|
|
// Where the data starts - if this is a protocol we know about,
|
|
// this gets advanced past the transport header.
|
|
const u_char* data = ip->Payload();
|
|
|
|
if ( is_tcp ) {
|
|
if ( check_tcp ) {
|
|
const struct tcphdr* tp = (const struct tcphdr*)data;
|
|
int th_len = tp->th_off * 4;
|
|
|
|
zeek::Args args{
|
|
ip->ToPktHdrVal(),
|
|
{AdoptRef{}, BuildData(data, th_len, len, caplen)},
|
|
};
|
|
|
|
try {
|
|
discard_packet = check_tcp->Invoke(&args)->AsBool();
|
|
}
|
|
|
|
catch ( InterpreterException& e ) {
|
|
discard_packet = false;
|
|
}
|
|
}
|
|
}
|
|
|
|
else if ( is_udp ) {
|
|
if ( check_udp ) {
|
|
const struct udphdr* up = (const struct udphdr*)data;
|
|
int uh_len = sizeof(struct udphdr);
|
|
|
|
zeek::Args args{
|
|
ip->ToPktHdrVal(),
|
|
{AdoptRef{}, BuildData(data, uh_len, len, caplen)},
|
|
};
|
|
|
|
try {
|
|
discard_packet = check_udp->Invoke(&args)->AsBool();
|
|
}
|
|
|
|
catch ( InterpreterException& e ) {
|
|
discard_packet = false;
|
|
}
|
|
}
|
|
}
|
|
|
|
else {
|
|
if ( check_icmp ) {
|
|
const struct icmp* ih = (const struct icmp*)data;
|
|
|
|
zeek::Args args{ip->ToPktHdrVal()};
|
|
|
|
try {
|
|
discard_packet = check_icmp->Invoke(&args)->AsBool();
|
|
}
|
|
|
|
catch ( InterpreterException& e ) {
|
|
discard_packet = false;
|
|
}
|
|
}
|
|
}
|
|
|
|
return discard_packet;
|
|
}
|
|
|
|
Val* Discarder::BuildData(const u_char* data, int hdrlen, int len, int caplen) {
|
|
len -= hdrlen;
|
|
caplen -= hdrlen;
|
|
data += hdrlen;
|
|
|
|
len = std::max(std::min(std::min(len, caplen), discarder_maxlen), 0);
|
|
|
|
return new StringVal(new String(data, len, true));
|
|
}
|
|
|
|
} // namespace zeek::detail
|