Go to the documentation of this file.
64 #define FLOW_DEFAULT_EMERGENCY_RECOVERY 30
67 #define FLOW_DEFAULT_HASHSIZE 65536
69 #define FLOW_DEFAULT_MEMCAP (32 * 1024 * 1024)
71 #define FLOW_DEFAULT_PREALLOC 10000
141 if (f == NULL || f->
proto == 0)
205 static inline void FlowSwapFlags(
Flow *f)
218 static inline void FlowSwapFileFlags(
Flow *f)
227 static inline void TcpStreamFlowSwap(
Flow *f)
253 FlowSwapFileFlags(f);
257 if (f->
proto == IPPROTO_TCP) {
258 TcpStreamFlowSwap(f);
304 }
else if (
p->
proto == IPPROTO_ICMP ||
p->
proto == IPPROTO_ICMPV6) {
324 static inline int FlowUpdateSeenFlag(
const Packet *
p)
326 if (PacketIsICMPv4(
p)) {
335 static inline void FlowUpdateTtlTS(
Flow *f, uint8_t ttl)
345 static inline void FlowUpdateTtlTC(
Flow *f, uint8_t ttl)
355 static inline void FlowUpdateFlowRate(
369 SCLogDebug(
"Flow rate for flow %p exceeds the configured values, marking it as an "
394 static inline void FlowUpdateEthernet(
398 const EthernetHdr *ethh = PacketGetEthernet(
p);
428 #ifdef CAPTURE_OFFLOAD
431 if (state != FLOW_STATE_CAPTURE_BYPASSED) {
437 #ifdef CAPTURE_OFFLOAD
443 SCLogDebug(
"Downgrading flow to local bypass");
462 if (FlowUpdateSeenFlag(
p)) {
473 FlowUpdateEthernet(
tv,
dtv, f,
p,
true);
475 if (PacketIsIPv4(
p)) {
476 const IPV4Hdr *ip4h = PacketGetIPv4(
p);
478 }
else if (PacketIsIPv6(
p)) {
479 const IPV6Hdr *ip6h = PacketGetIPv6(
p);
488 if (FlowUpdateSeenFlag(
p)) {
499 FlowUpdateEthernet(
tv,
dtv, f,
p,
false);
501 if (PacketIsIPv4(
p)) {
502 const IPV4Hdr *ip4h = PacketGetIPv4(
p);
504 }
else if (PacketIsIPv6(
p)) {
505 const IPV6Hdr *ip6h = PacketGetIPv6(
p);
517 }
else if (f->
proto == IPPROTO_TCP) {
528 #ifdef CAPTURE_OFFLOAD
529 (f->
flow_state != FLOW_STATE_CAPTURE_BYPASSED) &&
547 SCLogDebug(
"setting FLOW_NOPAYLOAD_INSPECTION flag on flow %p", f);
548 DecodeSetNoPayloadInspectionFlag(
p);
596 if (
SCConfGetInt(
"flow.emergency-recovery", &val) == 1) {
597 if (val <= 100 && val >= 1) {
600 SCLogError(
"flow.emergency-recovery must be in the range of "
601 "1 and 100 (as percentage)");
605 SCLogDebug(
"flow.emergency-recovery, using default value");
610 const char *conf_val;
611 uint32_t configval = 0;
614 uint64_t flow_memcap_copy = 0;
615 if ((
SCConfGet(
"flow.memcap", &conf_val)) == 1) {
616 if (conf_val == NULL) {
617 FatalError(
"Invalid value for flow.memcap: NULL");
622 "from conf file - %s. Killing engine",
629 if ((
SCConfGet(
"flow.hash-size", &conf_val)) == 1) {
630 if (conf_val == NULL) {
631 FatalError(
"Invalid value for flow.hash-size: NULL");
634 if (
StringParseUint32(&configval, 10, strlen(conf_val), conf_val) && configval != 0) {
637 FatalError(
"Invalid value for flow.hash-size. Must be a numeric value in the range "
641 if ((
SCConfGet(
"flow.prealloc", &conf_val)) == 1) {
642 if (conf_val == NULL) {
643 FatalError(
"Invalid value for flow.prealloc: NULL");
654 SCLogDebug(
"Flow config from suricata.yaml: memcap: %"PRIu64
", hash-size: "
662 "max flow memcap is smaller than projected hash size. "
663 "Memcap: %" PRIu64
", Hash table size %" PRIu64
". Calculate "
664 "total hash size by multiplying \"flow.hash-size\" with %" PRIuMAX
", "
665 "which is the hash bucket size.",
671 FatalError(
"Fatal error encountered in FlowInitConfig. Exiting...");
683 SCLogConfig(
"allocated %"PRIu64
" bytes of memory for the flow hash... "
684 "%" PRIu32
" buckets of size %" PRIuMAX
"",
686 (uintmax_t)
sizeof(FlowBucket));
690 SCLogConfig(
"flow memory usage: %"PRIu64
" bytes, maximum: %"PRIu64,
697 SCLogConfig(
"flow size %u, memcap allows for %" PRIu64
" flows. Per hash row in perfect "
698 "conditions %" PRIu64,
768 #define SET_DEFAULTS(p, n, e, c, b, ne, ee, ce, be) \
769 flow_timeouts_normal[(p)].new_timeout = (n); \
770 flow_timeouts_normal[(p)].est_timeout = (e); \
771 flow_timeouts_normal[(p)].closed_timeout = (c); \
772 flow_timeouts_normal[(p)].bypassed_timeout = (b); \
773 flow_timeouts_emerg[(p)].new_timeout = (ne); \
774 flow_timeouts_emerg[(p)].est_timeout = (ee); \
775 flow_timeouts_emerg[(p)].closed_timeout = (ce); \
776 flow_timeouts_emerg[(p)].bypassed_timeout = (be); \
805 const char *
new = NULL;
806 const char *established = NULL;
807 const char *closed = NULL;
808 const char *bypassed = NULL;
809 const char *emergency_new = NULL;
810 const char *emergency_established = NULL;
811 const char *emergency_closed = NULL;
812 const char *emergency_bypassed = NULL;
815 if (flow_timeouts != NULL) {
817 uint32_t configval = 0;
836 if (established != NULL &&
842 if (closed != NULL &&
848 if (bypassed != NULL &&
855 if (emergency_new != NULL &&
857 emergency_new) > 0) {
861 if (emergency_established != NULL &&
863 strlen(emergency_established),
864 emergency_established) > 0) {
868 if (emergency_closed != NULL &&
870 strlen(emergency_closed),
871 emergency_closed) > 0) {
875 if (emergency_bypassed != NULL &&
877 strlen(emergency_bypassed),
878 emergency_bypassed) > 0) {
901 if (established != NULL &&
907 if (closed != NULL &&
913 if (bypassed != NULL &&
920 if (emergency_new != NULL &&
922 emergency_new) > 0) {
926 if (emergency_established != NULL &&
928 strlen(emergency_established),
929 emergency_established) > 0) {
933 if (emergency_closed != NULL &&
935 strlen(emergency_closed),
936 emergency_closed) > 0) {
940 if (emergency_bypassed != NULL &&
942 strlen(emergency_bypassed),
943 emergency_bypassed) > 0) {
964 if (established != NULL &&
970 if (bypassed != NULL &&
977 if (emergency_new != NULL &&
979 emergency_new) > 0) {
983 if (emergency_established != NULL &&
985 strlen(emergency_established),
986 emergency_established) > 0) {
990 if (emergency_bypassed != NULL &&
992 strlen(emergency_bypassed),
993 emergency_bypassed) > 0) {
1001 if (
proto != NULL) {
1014 if (established != NULL &&
1020 if (bypassed != NULL &&
1027 if (emergency_new != NULL &&
1029 emergency_new) > 0) {
1033 if (emergency_established != NULL &&
1035 strlen(emergency_established),
1036 emergency_established) > 0) {
1040 if (emergency_bypassed != NULL &&
1042 strlen(emergency_bypassed),
1043 emergency_bypassed) > 0) {
1056 SCLogWarning(
"emergency timeout value %u for \'established\' "
1057 "must be below regular value %u",
1063 SCLogWarning(
"emergency timeout value %u for \'new\' must be "
1064 "below regular value %u",
1070 SCLogWarning(
"emergency timeout value %u for \'closed\' must "
1071 "be below regular value %u",
1077 SCLogWarning(
"emergency timeout value %u for \'bypassed\' "
1078 "must be below regular value %u",
1090 SCLogWarning(
"emergency timeout value for \'established\' must be below normal value");
1096 SCLogWarning(
"emergency timeout value for \'new\' must be below normal value");
1102 SCLogWarning(
"emergency timeout value for \'closed\' must be below normal value");
1108 SCLogWarning(
"emergency timeout value for \'bypassed\' must be below normal value");
1113 SCLogDebug(
"deltas: new: -%u est: -%u closed: -%u bypassed: -%u",
1172 if (f->
proto != IPPROTO_TCP) {
1179 uint8_t newflags =
flags;
1184 newflags |= STREAM_DEPTH;
1188 newflags |= STREAM_ASYNC;
1204 const uint32_t timeout_policy = FlowGetTimeoutPolicy(f);
1210 if (f->
fb != NULL) {
1332 static int FlowTest01 (
void)
1366 static void test(
void *f) {}
1375 static int FlowTest02 (
void)
1397 static int FlowTest07 (
void)
1443 static int FlowTest08 (
void)
1490 static int FlowTest09 (
void)
1537 UtRegisterTest(
"FlowTest01 -- Protocol Specific Timeouts", FlowTest01);
1538 UtRegisterTest(
"FlowTest02 -- Setting Protocol Specific Free Function",
1540 UtRegisterTest(
"FlowTest07 -- Test flow Allocations when it reach memcap",
1542 UtRegisterTest(
"FlowTest08 -- Test flow Allocations when it reach memcap",
1544 UtRegisterTest(
"FlowTest09 -- Test flow Allocations when it reach memcap",
#define FLOWFILE_NO_MD5_TS
void FlowUnsetChangeProtoFlag(Flow *f)
Unset flag to indicate to change proto for the flow.
#define FLOWFILE_NO_MD5_TC
#define FBLOCK_DESTROY(fb)
#define FLOW_DEFAULT_NEW_TIMEOUT
void MacSetAddWithCtr(MacSet *ms, const uint8_t *src_addr, const uint8_t *dst_addr, ThreadVars *tv, StatsCounterMaxId ctr_src, StatsCounterMaxId ctr_dst)
#define FLOW_DEFAULT_EMERG_BYPASSED_TIMEOUT
#define FLOW_HAS_EXPECTATION
void FlowSetHasAlertsFlag(Flow *f)
Set flag to indicate that flow has alerts.
#define FLOW_ACTION_BY_FIREWALL
void FlowCleanupAppLayer(Flow *f)
void FlowSetChangeProtoFlag(Flow *f)
Set flag to indicate to change proto for the flow.
const uint8_t * SCFlowGetDestinationAddressAsRawPtr(const Flow *flow)
Returns a borrowed raw pointer to the flow destination address.
@ PKT_DROP_REASON_FW_FLOW_DROP
#define IPV6_GET_RAW_HLIM(ip6h)
uint32_t FlowSpareGetPoolSize(void)
int FlowGetPacketDirection(const Flow *f, const Packet *p)
determine the direction of the packet compared to the flow
#define SC_ATOMIC_INIT(name)
wrapper for initializing an atomic variable.
uint32_t SCFlowGetToClientPacketCount(const Flow *flow)
Get the number of packets seen toclient.
#define FLOW_DEFAULT_HASHSIZE
SC_ATOMIC_DECLARE(FlowProtoTimeoutPtr, flow_timeouts)
uint32_t emergency_recovery
#define FLOW_DEFAULT_PREALLOC
#define SC_ATOMIC_SET(name, val)
Set the value for the atomic variable.
void UtRegisterTest(const char *name, int(*TestFn)(void))
Register unit test.
void * SCFlowGetStorageById(const Flow *f, SCFlowStorageId id)
uint64_t PcapPacketCntGet(const Packet *p)
#define FLOW_IS_ELEPHANT_TOCLIENT
void FlowRegisterTests(void)
Function to register the Flow Unitests.
#define FLOW_IPPROTO_UDP_EMERG_NEW_TIMEOUT
#define FLOW_SGH_TOCLIENT
int ParseSizeStringU64(const char *size, uint64_t *res)
#define FLOWFILE_NO_MAGIC_TS
unsigned int SCFlowStorageSize(void)
#define SC_ATOMIC_ADD(name, val)
add a value to our atomic variable
int SCConfGet(const char *name, const char **vptr)
Retrieve the value of a configuration node.
#define FLOW_NOPAYLOAD_INSPECTION
#define FLOW_TS_PM_ALPROTO_DETECT_DONE
#define FLOW_DEFAULT_EMERG_NEW_TIMEOUT
#define FLOW_IPPROTO_TCP_EMERG_NEW_TIMEOUT
void BypassedFlowUpdate(Flow *f, Packet *p)
uint32_t bypassed_timeout
#define FLOW_DEFAULT_EST_TIMEOUT
SCFlowStorageId FlowRateGetStorageID(void)
#define FLOW_PKT_TOSERVER
uint64_t FlowGetMemuse(void)
uint64_t FlowGetMemcap(void)
Return memcap value.
void FlowQueueDestroy(FlowQueue *q)
Destroy a flow queue.
void FlowHandlePacket(ThreadVars *tv, FlowLookupStruct *fls, Packet *p)
Entry point for packet flow handling.
void SCFlowRunUpdateCallbacks(ThreadVars *tv, Flow *f, Packet *p)
#define FLOW_TOSERVER_DROP_LOGGED
const char * SCConfNodeLookupChildValue(const SCConfNode *node, const char *name)
Lookup the value of a child configuration node by name.
#define FLOW_TC_PE_ALPROTO_DETECT_DONE
#define FLOW_DEFAULT_BYPASSED_TIMEOUT
enum ExceptionPolicy ExceptionPolicyParse(const char *option, bool support_flow)
#define FLOW_IPPROTO_UDP_BYPASSED_TIMEOUT
#define STREAMTCP_STREAM_FLAG_DEPTH_REACHED
#define FLOW_IPPROTO_TCP_EMERG_CLOSED_TIMEOUT
#define FLOW_IPPROTO_ICMP_EST_TIMEOUT
uint32_t UTHBuildPacketOfFlows(uint32_t start, uint32_t end, uint8_t dir)
void AppLayerExpectationClean(Flow *f)
#define PKT_PROTO_DETECT_TS_DONE
struct Packet_::@32::@39 icmp_s
const struct SigGroupHead_ * sgh_toserver
#define FLOW_CHECK_MEMCAP(size)
check if a memory alloc would fit in the memcap
#define FLOW_RECYCLE(f)
macro to recycle a flow before it goes into the spare queue for reuse.
AppLayerParserState * alparser
void FlowRateStoreUpdate(FlowRateStore *frs, SCTime_t p_ts, uint32_t pkt_len, int direction)
StatsCounterId counter_flow_elephant
#define FLOWFILE_NO_SHA1_TC
#define FLOW_IPPROTO_ICMP_EMERG_EST_TIMEOUT
void FlowInitConfig(bool quiet)
initialize the configuration
#define FLOW_IPPROTO_UDP_EST_TIMEOUT
@ FLOW_STATE_LOCAL_BYPASSED
#define PASS
Pass the test.
#define STREAMTCP_FLAG_ASYNC
#define FLOW_IPPROTO_TCP_CLOSED_TIMEOUT
void FlowHandlePacketUpdate(Flow *f, Packet *p, ThreadVars *tv, DecodeThreadVars *dtv)
Update Packet and Flow.
int SCConfGetInt(const char *name, intmax_t *val)
Retrieve a configuration value as an integer.
#define FLOW_CHANGE_PROTO
Per thread variable structure.
#define FLOWFILE_NO_SHA256_TS
#define FLOW_PKT_TOCLIENT_FIRST
void StatsCounterIncr(StatsThreadContext *stats, StatsCounterId id)
Increments the local counter.
FlowQueue * FlowQueueInit(FlowQueue *q)
int StringParseUint32(uint32_t *res, int base, size_t len, const char *str)
#define SCLogWarning(...)
Macro used to log WARNING messages.
void AppLayerParserStateCleanup(const Flow *f, void *alstate, AppLayerParserState *pstate)
#define FLOW_PROTO_DETECT_TC_DONE
#define FLOW_TC_PP_ALPROTO_DETECT_DONE
const struct SigGroupHead_ * sgh_toclient
bool MacSetFlowStorageEnabled(void)
#define SC_ATOMIC_SUB(name, val)
sub a value from our atomic variable
void TimeSetIncrementTime(uint32_t tv_sec)
increment the time in the engine
uint8_t FlowGetProtoMapping(uint8_t proto)
Function to map the protocol to the defined FLOW_PROTO_* enumeration.
#define IPV4_GET_RAW_IPTTL(ip4h)
#define FLOW_DEFAULT_MEMCAP
void SCFlowFreeStorage(Flow *f)
#define FLOW_IPPROTO_TCP_NEW_TIMEOUT
int FlowClearMemory(Flow *f, uint8_t proto_map)
Function clear the flow memory before queueing it to spare flow queue.
FlowProtoTimeout flow_timeouts_delta[FLOW_PROTO_MAX]
void SCFlowGetLastTimeAsParts(const Flow *flow, uint64_t *secs, uint64_t *usecs)
Get flow last time as individual values.
uint32_t probing_parser_toclient_alproto_masks
#define FLOW_PKT_TOCLIENT
uint16_t SCFlowGetDestinationPort(const Flow *flow)
Get flow destination port.
@ PKT_DROP_REASON_EP_FLOW_DROP
void FlowUpdateState(Flow *f, const enum FlowState s)
StatsCounterMaxId counter_max_mac_addrs_dst
uint32_t probing_parser_toserver_alproto_masks
#define FLOWFILE_NO_SHA256_TC
StatsCounterMaxId counter_max_mac_addrs_src
SCConfNode * SCConfNodeLookupChild(const SCConfNode *node, const char *name)
Lookup a child configuration node by name.
Flow * FlowDequeue(FlowQueue *q)
remove a flow from the queue
#define FLOW_TS_PE_ALPROTO_DETECT_DONE
#define FLOW_IPPROTO_UDP_NEW_TIMEOUT
int FlowSetProtoFreeFunc(uint8_t, void(*Free)(void *))
Function to set the function to get protocol specific flow state.
#define FLOW_IPPROTO_ICMP_NEW_TIMEOUT
#define FAIL_IF(expr)
Fail a test if expression evaluates to true.
FlowProtoTimeout flow_timeouts_normal[FLOW_PROTO_MAX]
unsigned short FlowStateType
#define FLOWFILE_NO_MAGIC_TC
enum ExceptionPolicy FlowGetMemcapExceptionPolicy(void)
uint64_t SCFlowGetFlags(const Flow *flow)
Get flow flags.
void FlowFree(Flow *f)
cleanup & free the memory of a flow
#define FLOW_IPPROTO_TCP_BYPASSED_TIMEOUT
uint16_t SCFlowGetSourcePort(const Flow *flow)
Get flow source port.
void FlowShutdown(void)
shutdown the flow engine
void FlowSparePoolDestroy(void)
#define SCMallocAligned(size, align)
#define SWAP_VARS(type, a, b)
void FlowTimeoutsInit(void)
#define FLOW_PROTO_DETECT_TS_DONE
bool FlowRateIsExceeding(FlowRateStore *frs, int direction)
void SCRegisterFlowStorageTests(void)
#define FLOW_TS_PP_ALPROTO_DETECT_DONE
#define PKT_PROTO_DETECT_TC_DONE
Flow * FlowGetFlowFromHash(ThreadVars *tv, FlowLookupStruct *fls, Packet *p, Flow **dest)
Get Flow for packet.
uint32_t SCFlowGetToServerPacketCount(const Flow *flow)
Get the number of packets seen toserver.
#define FLOW_IPPROTO_TCP_EMERG_EST_TIMEOUT
void FlowSwap(Flow *f)
swap the flow's direction
enum ExceptionPolicy memcap_policy
void MacSetSwap(MacSet *ms)
struct SCLogConfig_ SCLogConfig
Holds the config state used by the logging api.
void FlowInitFlowProto(void)
Function to set the default timeout, free function and flow state function for all supported flow_pro...
#define SCTIME_CMP_GT(a, b)
uint8_t address_un_data8[16]
#define FLOWFILE_NO_SHA1_TS
SCConfNode * SCConfGetNode(const char *name)
Get a SCConfNode by name.
#define SCLogError(...)
Macro used to log ERROR messages.
#define SWAP_FLAGS(flags, a, b)
#define FLOW_SGH_TOSERVER
Structure to hold thread specific data for all decode modules.
FlowProtoFreeFunc flow_freefuncs[FLOW_PROTO_MAX]
bool SCFlowIsIPv4(const Flow *flow)
Return true if the flow is IPv4.
FlowProtoTimeout flow_timeouts_emerg[FLOW_PROTO_MAX]
AppProto SCFlowGetAppProtocol(const Flow *f)
#define FLOW_IPPROTO_UDP_EMERG_EST_TIMEOUT
const uint8_t * SCFlowGetSourceAddressAsRawPtr(const Flow *flow)
Returns a borrowed raw pointer to the flow source address.
#define FLOW_IPPROTO_ICMP_EMERG_NEW_TIMEOUT
#define FLOW_TOCLIENT_DROP_LOGGED
#define FLOW_PKT_ESTABLISHED
bool FlowRateStorageEnabled(void)
void PacketDrop(Packet *p, const uint8_t action, enum PacketDropReason r)
issue drop action
int EngineModeIsIPS(void)
@ SIGNATURE_HOOK_PKT_FLOW_START
#define FLOW_TC_PM_ALPROTO_DETECT_DONE
#define FLOW_DEFAULT_EMERGENCY_RECOVERY
int FlowHasAlerts(const Flow *f)
Check if flow has alerts.
void FlowSparePoolInit(void)
#define FLOW_DEFAULT_EMERG_EST_TIMEOUT
#define FLOW_ACTION_BY_EXCEPTION_POLICY
#define FLOW_IPPROTO_ICMP_BYPASSED_TIMEOUT
uint8_t SCFlowGetIPProtocol(const Flow *flow)
Get flow IP protocol.
int FlowChangeProto(Flow *f)
Check if change proto flag is set for flow.
#define SC_ATOMIC_GET(name)
Get the value from the atomic variable.
StatsCounterId counter_flow_elephant_toclient
StatsCounterId counter_flow_elephant_toserver
uint8_t FlowGetDisruptionFlags(const Flow *f, uint8_t flags)
get 'disruption' flags: GAP/DEPTH/PASS
int8_t data_first_seen_dir
AppProto alproto
application level protocol
#define FLOW_DIR_REVERSED
#define ICMPV4_IS_ERROR_MSG(type)
#define FLOW_IPPROTO_TCP_EST_TIMEOUT
#define SET_DEFAULTS(p, n, e, c, b, ne, ee, ce, be)
union FlowAddress_::@121 address
#define FLOW_PKT_TOSERVER_FIRST
#define DEBUG_VALIDATE_BUG_ON(exp)
@ PKT_DROP_REASON_FLOW_DROP
#define FLOW_IS_ELEPHANT_TOSERVER
bool SCFlowIsIPv6(const Flow *flow)
Return true if the flow is IPv6.
FlowThreadId thread_id[2]
int FlowSetMemcap(uint64_t size)
Update memcap value.
SCFlowStorageId MacSetGetFlowStorageID(void)